From fe5ed71ead469271bd1504e9e708cdc28885cf0b Mon Sep 17 00:00:00 2001 From: Tanya Madaan Date: Mon, 11 Dec 2023 17:36:15 +0530 Subject: [PATCH] Validations added --- .../log-verification-utility/README.md | 21 +- .../schema/B2B_json_schema/confirm.js | 8 +- .../schema/B2B_json_schema/init.js | 65 ++-- .../B2B_json_schema/keywords/confirm.js | 14 + .../schema/B2B_json_schema/keywords/init.js | 7 + .../schema/B2B_json_schema/keywords/onInit.js | 12 + .../schema/B2B_json_schema/keywords/search.js | 7 + .../schema/B2B_json_schema/on_confirm.js | 7 +- .../schema/B2B_json_schema/on_init.js | 11 +- .../schema/B2B_json_schema/on_search.js | 16 +- .../schema/B2B_json_schema/on_select.js | 3 + .../schema/B2B_json_schema/on_status.js | 129 +++---- .../schema/B2B_json_schema/on_update.js | 4 + .../schema/B2B_json_schema/schemaValidator.js | 18 +- .../SchemaValidator.js | 2 +- .../v1.1/initSchema.js | 6 +- .../v1.1/onConfirmSchema.js | 15 +- .../v1.1/onInitSchema.js | 15 + .../v1.1/onSearchSchema.js | 75 ++-- .../v1.1/onStatusSchema.js | 46 ++- .../v1.1/onUpdateSchema.js | 23 +- .../v1.1/searchSchema.js | 3 +- .../v1.2/common/commonSchema.js | 7 +- .../v1.2/confirmSchema.js | 53 ++- .../v1.2/initSchema.js | 2 +- .../v1.2/keywords/confirm.js | 6 +- .../v1.2/keywords/onInit.js | 1 + .../v1.2/onCancelSchema.js | 78 +++-- .../v1.2/onConfirmSchema.js | 88 ++++- .../v1.2/onInitSchema.js | 7 + .../v1.2/onSearchSchema.js | 21 +- .../v1.2/onStatusSchema.js | 44 ++- .../v1.2/onTrackSchema.js | 15 +- .../v1.2/onUpdateSchema.js | 144 +++++--- .../v1.2/searchSchema.js | 2 - .../v1.2/updateSchema.js | 125 +++++-- .../server/routes/routes.js | 201 ++++++++++- .../utils/ContextVal.js | 25 +- .../utils/b2b/b2bInit.js | 32 +- .../utils/b2b/b2bOnSearch.js | 34 +- .../utils/b2b/b2bOnStatus.js | 327 +++++++++--------- .../utils/b2b/b2bSearch.js | 47 ++- .../utils/b2b/msgValidator.js | 12 +- .../utils/b2b/pinToStd.json | 1 + .../utils/constants.js | 4 +- .../utils/logistics/logConfirm.js | 20 +- .../utils/logistics/logInit.js | 1 + .../utils/logistics/logOnCancel.js | 51 ++- .../utils/logistics/logOnConfirm.js | 18 +- .../utils/logistics/logOnInit.js | 35 +- .../utils/logistics/logOnSearch.js | 123 ++++--- .../utils/logistics/logOnStatus.js | 43 ++- .../utils/logistics/logOnTrack.js | 27 ++ .../utils/logistics/logOnUpdate.js | 4 + .../utils/logistics/logSearch.js | 2 +- .../utils/logistics/pinToStd.json | 2 +- .../utils/testSchemaValidation.js | 5 + .../log-verification-utility/utils/utils.js | 32 ++ .../utils/validateLogUtil.js | 1 - 59 files changed, 1486 insertions(+), 661 deletions(-) create mode 100644 utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/confirm.js create mode 100644 utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/init.js create mode 100644 utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/onInit.js create mode 100644 utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/search.js create mode 100644 utilities/logistics-b2b/log-verification-utility/utils/b2b/pinToStd.json create mode 100644 utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnTrack.js create mode 100644 utilities/logistics-b2b/log-verification-utility/utils/testSchemaValidation.js diff --git a/utilities/logistics-b2b/log-verification-utility/README.md b/utilities/logistics-b2b/log-verification-utility/README.md index cab5c99..0fe8c7f 100644 --- a/utilities/logistics-b2b/log-verification-utility/README.md +++ b/utilities/logistics-b2b/log-verification-utility/README.md @@ -4,8 +4,7 @@ The tool is a NODE.js based server to check the conformance and compliance of the API logs for [logistics](https://docs.google.com/document/d/10GpEuKZE2g96DFJT3HKq6wIEMhPC-kkMZhXNn2jHHXc/edit?pli=1) and [B2B](https://github.com/ONDC-Official/ONDC-RET-Specifications) based on the examples in the API Contract. -The Log Verification Server is a tool designed to validate log files. It offers an endpoint `/validate/` that allows users to send a directory path containing log files for verification. The directory can have single log file or all the log files for the complete flow. In case of single log files, if sent in sequence will validate the complete flow for same transaction id. -The server responds with a log report, indicating any errors found in the log files. +The Log Verification Server is a tool designed to validate log files for the [logistics](https://docs.google.com/document/d/10GpEuKZE2g96DFJT3HKq6wIEMhPC-kkMZhXNn2jHHXc/edit?pli=1) and [B2B](https://github.com/ONDC-Official/ONDC-RET-Specifications) domains. It offers an endpoint that allows users to submit a directory path containing log files for verification. The server then responds with a log report, indicating any errors found in the log files. ### Tech @@ -27,11 +26,10 @@ cd log-verification-utility npm i ``` -2. Set up the .env file in root directory with the following configuration: +2. Set up the .env file with the following configuration: ```code MAPPLS_API_KEY= -PORT= ``` To get the api_key, refer to this link: https://developer.mappls.com/mapping/reverse-geocoding-api @@ -48,26 +46,11 @@ The server will be up and running at `http://localhost:3000` http://localhost:3000/validate/ ``` -Example endpoint for Logistics - -**`` -http://localhost:3000/validate/logistics -``** - -Example endpoint for B2B - -**`` -http://localhost:3000/validate/b2b -``** - 5. Send a POST request to the endpoint with the following parameters: - ```code logPath: ``` - 6. Example using Postman: - ``` Url: http://localhost:3000/validate/logistics Request body json: { diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/confirm.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/confirm.js index 935ca04..7406994 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/confirm.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/confirm.js @@ -119,11 +119,13 @@ module.exports = { locations: { type: "array", const: { $data: "/init/0/message/order/provider/locations" }, + errorMessage:"mismatch from /init", items: { type: "object", properties: { id: { type: "string", + }, }, required: ["id"], @@ -274,7 +276,7 @@ module.exports = { const: { $data: "/init/0/message/order/billing/phone" }, }, }, - additionalProperties: false, + required: ["name", "address", "state", "city", "tax_id", "phone"], }, fulfillments: { @@ -361,7 +363,7 @@ module.exports = { type: "string", }, }, - required: ["phone", "email"], + required: ["phone"], }, customer: { type: "object", @@ -499,7 +501,7 @@ module.exports = { }, "@ondc/org/title_type": { type: "string", - enum: ["item", "Discount", "Packing charges", "delivery ", "tax", "misc"] + enum: ["item", "discount", "packing", "delivery", "tax", "misc"] }, price: { type: "object", diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/init.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/init.js index 6e28291..36e4048 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/init.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/init.js @@ -58,8 +58,7 @@ module.exports = { type: "string", const: { $data: "/select/0/context/transaction_id" }, errorMessage: - "Transaction ID should be same across the transaction: ${/search/0/context/transaction_id}", - + "Transaction ID should be same across the transaction: ${/search/0/context/transaction_id}", }, message_id: { type: "string", @@ -71,7 +70,7 @@ module.exports = { errorMessage: "Message ID should not be equal to transaction_id: ${1/transaction_id}", }, - ] + ], }, timestamp: { type: "string", @@ -80,7 +79,8 @@ module.exports = { ttl: { type: "string", const: { $data: "2/message/order/provider/ttl" }, - errorMessage:"should match provider ttl - ${2/message/order/provider/ttl}" + errorMessage: + "should match provider ttl - ${2/message/order/provider/ttl}", }, }, required: [ @@ -118,7 +118,10 @@ module.exports = { properties: { id: { type: "string", - const: { $data: "/select/0/message/order/provider/locations/0/id"} + const: { + $data: + "/select/0/message/order/provider/locations/0/id", + }, }, }, required: ["id"], @@ -126,7 +129,7 @@ module.exports = { }, ttl: { type: "string", - format: "duration" + format: "duration", }, }, required: ["id", "locations", "ttl"], @@ -182,7 +185,7 @@ module.exports = { properties: { code: { type: "string", - enum:["BUYER_TERMS"] + enum: ["BUYER_TERMS"], }, }, required: ["code"], @@ -197,7 +200,7 @@ module.exports = { properties: { code: { type: "string", - enum:["ITEM_REQ","PACKAGING_REQ"] + enum: ["ITEM_REQ", "PACKAGING_REQ"], }, }, required: ["code"], @@ -254,6 +257,12 @@ module.exports = { phone: { type: "string", }, + created_at: { + type: "string", + }, + updated_at: { + type: "string", + }, }, additionalProperties: false, required: ["name", "address", "state", "city", "tax_id", "phone"], @@ -282,7 +291,8 @@ module.exports = { properties: { gps: { type: "string", - pattern: "^(-?[0-9]{1,3}(?:.[0-9]{6,15})?),( )*?(-?[0-9]{1,3}(?:.[0-9]{6,15})?)$", + pattern: + "^(-?[0-9]{1,3}(?:.[0-9]{6,15})?),( )*?(-?[0-9]{1,3}(?:.[0-9]{6,15})?)$", errorMessage: "Incorrect gps value", }, address: { @@ -384,7 +394,7 @@ module.exports = { }, }, required: ["person"], - }, + }, tags: { type: "array", items: { @@ -410,7 +420,10 @@ module.exports = { properties: { code: { type: "string", - enum: ["INCOTERMS", "NAMED_PLACE_OF_DELIVERY"], + enum: [ + "INCOTERMS", + "NAMED_PLACE_OF_DELIVERY", + ], }, }, required: ["code"], @@ -453,22 +466,20 @@ module.exports = { }, payments: { type: "array", - items: - { - type: "object", - properties: { - type: { - type: "string", - enum: [ - "PRE-FULFILLMENT", - "ON-FULFILLMENT", - "POST-FULFILLMENT", - ], - }, + items: { + type: "object", + properties: { + type: { + type: "string", + enum: [ + "PRE-FULFILLMENT", + "ON-FULFILLMENT", + "POST-FULFILLMENT", + ], }, - required: ["type"], }, - + required: ["type"], + }, }, tags: { type: "array", @@ -508,7 +519,7 @@ module.exports = { }, }, }, - additionalProperties:false, + additionalProperties: false, required: [ "provider", "items", @@ -523,4 +534,4 @@ module.exports = { }, }, required: ["context", "message"], -}; \ No newline at end of file +}; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/confirm.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/confirm.js new file mode 100644 index 0000000..239d106 --- /dev/null +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/confirm.js @@ -0,0 +1,14 @@ +module.exports = { + isFutureDated: (data) => { + const contextTime = data?.context?.timestamp; + const created_at = data?.message?.order?.created_at; + const updated_at = data?.message?.order?.updated_at; + console.log(contextTime,updated_at); + if ( + (created_at && created_at > contextTime) || + (updated_at && updated_at > contextTime) + ) + return false; + return true; + }, +}; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/init.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/init.js new file mode 100644 index 0000000..18a4db3 --- /dev/null +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/init.js @@ -0,0 +1,7 @@ +module.exports = { + isLengthValid: (data) => { + if (data.name.length + data.building.length + data.locality.length > 190) + return false; + else return true; + }, +}; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/onInit.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/onInit.js new file mode 100644 index 0000000..d9a2b1d --- /dev/null +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/onInit.js @@ -0,0 +1,12 @@ +module.exports = { + isQuoteMatching: (data) => { + const quotePrice = parseFloat(data?.price?.value); + const breakupArr = data.breakup; + let totalBreakup = 0; + breakupArr.forEach((breakup) => { + totalBreakup += parseFloat(breakup?.price?.value); + }); + if (quotePrice != totalBreakup) return false; + else return true; + }, +}; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/search.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/search.js new file mode 100644 index 0000000..6588a9e --- /dev/null +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/keywords/search.js @@ -0,0 +1,7 @@ +module.exports = { + isEndTimeGreater: (data) => { + const startTime = parseInt(data.start); + const endTime = parseInt(data.end); + return startTime < endTime; + }, +}; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_confirm.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_confirm.js index 2c5efa0..201216f 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_confirm.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_confirm.js @@ -282,7 +282,7 @@ module.exports = { const: { $data: "/init/0/message/order/billing/phone" }, }, }, - additionalProperties: false, + required: ["name", "address", "state", "city", "tax_id", "phone"], }, fulfillments: { @@ -421,7 +421,7 @@ module.exports = { type: "string", }, }, - required: ["phone", "email"], + required: ["phone"], }, }, required: ["type", "location", "time", "contact"], @@ -627,6 +627,9 @@ module.exports = { type: "string", }, }, + isQuoteMatching: true, + errorMessage: + "price is not matching with the total breakup price", required: ["price", "breakup", "ttl"], }, payments: { diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_init.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_init.js index cf70261..5de61bb 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_init.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_init.js @@ -269,7 +269,7 @@ module.exports = { const: { $data: "/init/0/message/order/billing/phone" }, }, }, - additionalProperties: false, + required: ["name", "address", "state", "city", "tax_id", "phone"], }, fulfillments: { @@ -473,11 +473,7 @@ module.exports = { }, "@ondc/org/title_type": { type: "string", - enum: ["item", "delivery", - "packing", - "tax", - "discount", - "misc"] + enum: ["item", "discount", "packing", "delivery", "tax", "misc"] }, price: { type: "object", @@ -552,6 +548,9 @@ module.exports = { type: "string", }, }, + isQuoteMatching: true, + errorMessage: + "price is not matching with the total breakup price", required: ["price", "breakup", "ttl"], }, payments: { diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_search.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_search.js index c9b2f76..461cb7c 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_search.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_search.js @@ -58,7 +58,7 @@ module.exports = { type: "string", const: { $data: "/search/0/context/transaction_id" }, errorMessage: - "Transaction ID should be same across the transaction: ${/search/0/context/transaction_id}", + "Transaction ID should be same across the transaction: ${/search/0/context/transaction_id}", }, message_id: { type: "string", @@ -75,14 +75,14 @@ module.exports = { errorMessage: "Message ID should not be equal to transaction_id: ${1/transaction_id}", }, - ] + ], }, timestamp: { type: "string", format: "date-time", }, ttl: { - type: "string" + type: "string", }, }, required: [ @@ -116,7 +116,7 @@ module.exports = { }, type: { type: "string", - enum: ["Delivery", "Self-Pickup"] + enum: ["Delivery", "Self-Pickup"], }, }, required: ["id", "type"], @@ -224,7 +224,7 @@ module.exports = { }, ttl: { type: "string", - format: "duration" + format: "duration", }, locations: { type: "array", @@ -248,7 +248,6 @@ module.exports = { properties: { code: { type: "string", - pattern: "^(std:?[0-9]{2,3})$" }, name: { type: "string", @@ -261,7 +260,6 @@ module.exports = { properties: { code: { type: "string", - pattern: "^(std:?[0-9]{2,3})$" }, }, required: ["code"], @@ -279,7 +277,7 @@ module.exports = { type: "string", }, }, - additionalProperties:false, + additionalProperties: false, required: [ "id", "gps", @@ -951,7 +949,7 @@ module.exports = { }, }, }, - additionalProperties:false, + additionalProperties: false, required: ["fulfillments", "payments", "descriptor", "providers"], }, }, diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_select.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_select.js index c0be4d1..3a97ae2 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_select.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_select.js @@ -320,6 +320,9 @@ module.exports = { format: "duration" }, }, + isQuoteMatching: true, + errorMessage: + "price is not matching with the total breakup price", required: ["price", "breakup", "ttl"], }, }, diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_status.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_status.js index d9a732c..c687d03 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_status.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_status.js @@ -58,7 +58,7 @@ module.exports = { type: "string", const: { $data: "/select/0/context/transaction_id" }, errorMessage: - "Transaction ID should be same across the transaction: ${/select/0/context/transaction_id}", + "Transaction ID should be same across the transaction: ${/select/0/context/transaction_id}", }, message_id: { type: "string", @@ -155,6 +155,7 @@ module.exports = { required: ["count"], }, }, + additionalProperties: false, required: ["selected"], }, }, @@ -279,7 +280,8 @@ module.exports = { }, gps: { type: "string", - pattern: "^(-?[0-9]{1,3}(?:.[0-9]{6,15})?),( )*?(-?[0-9]{1,3}(?:.[0-9]{6,15})?)$", + pattern: + "^(-?[0-9]{1,3}(?:.[0-9]{6,15})?),( )*?(-?[0-9]{1,3}(?:.[0-9]{6,15})?)$", errorMessage: "Incorrect gps value", }, address: { @@ -325,15 +327,21 @@ module.exports = { properties: { start: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["start", "end"], }, timestamp: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["range"], @@ -428,23 +436,23 @@ module.exports = { { properties: { state: { - const: "Order-picked-up" + const: "Order-picked-up", }, stops: { type: "array", items: { properties: { type: { - const: "start" + const: "start", }, time: { - required: ["range", "timestamp"] - } - } - } - } - } - } + required: ["range", "timestamp"], + }, + }, + }, + }, + }, + }, ], }, }, @@ -559,6 +567,9 @@ module.exports = { type: "string", }, }, + isQuoteMatching: true, + errorMessage: + "price is not matching with the total breakup price", required: ["price", "breakup", "ttl"], }, payments: { @@ -587,6 +598,9 @@ module.exports = { }, type: { type: "string", + const: { + $data: "/on_confirm/0/message/order/payments/0/type", + }, enum: [ "PRE-FULFILLMENT", "ON-FULFILLMENT", @@ -595,6 +609,10 @@ module.exports = { }, collected_by: { type: "string", + const: { + $data: + "/on_confirm/0/message/order/payments/0/collected_by", + }, enum: ["BAP", "BPP"], }, "@ondc/org/buyer_app_finder_fee_type": { @@ -692,20 +710,18 @@ module.exports = { documents: { type: "array", - items: - { - type: "object", - properties: { - url: { - type: "string", - }, - label: { - type: "string", - }, + items: { + type: "object", + properties: { + url: { + type: "string", + }, + label: { + type: "string", }, - required: ["url", "label"], }, - + required: ["url", "label"], + }, }, created_at: { type: "string", @@ -737,72 +753,7 @@ module.exports = { }, required: ["order"], }, - search: { - type: "array", - items: { - $ref: "searchSchema#", - }, - }, - on_search: { - type: "array", - items: { - $ref: "onSearchSchema#", - }, - }, - select: { - type: "array", - items: { - $ref: "selectSchema#", - }, - }, - on_select: { - type: "array", - items: { - $ref: "onSelectSchema#", - }, - }, - init: { - type: "array", - items: { - $ref: "initSchema#", - }, - }, - on_init: { - type: "array", - items: { - $ref: "onInitSchema#", - }, - }, - confirm: { - type: "array", - items: { - $ref: "confirmSchema#", - }, - }, - on_confirm: { - type: "array", - items: { - $ref: "onConfirmSchema#", - }, - }, - update: { - type: "array", - items: { - $ref: "updateSchema#", - }, - }, - on_update: { - type: "array", - items: { - $ref: "onUpdateSchema#", - }, - }, - status: { - type: "array", - items: { - $ref: "statusSchema#", - }, - }, }, + required: ["context", "message"], }; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_update.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_update.js index ed5e80a..d87b56d 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_update.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/on_update.js @@ -375,9 +375,13 @@ module.exports = { properties: { start: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["start", "end"], diff --git a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/schemaValidator.js b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/schemaValidator.js index 33d77c1..43fb234 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/schemaValidator.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/B2B_json_schema/schemaValidator.js @@ -11,6 +11,10 @@ const confirmSchema = require("./confirm"); const statusSchema = require("./status"); const updateSchema = require("./update"); const onStatusSchema = require("./on_status"); +const { isLengthValid } = require("./keywords/init"); +const { isQuoteMatching } = require("./keywords/onInit"); +const { isFutureDated } = require("./keywords/confirm"); +const { isEndTimeGreater } = require("./keywords/search"); const fs = require("fs"); //const async = require("async"); @@ -65,7 +69,19 @@ const validate_schema = (data, schema) => { .addSchema(updateSchema) .addSchema(onUpdateSchema) .addSchema(statusSchema) - .addSchema(onStatusSchema); + .addSchema(onStatusSchema) + .addKeyword("isEndTimeGreater", { + validate: (schema, data) => isEndTimeGreater(data), + }) + .addKeyword("isQuoteMatching", { + validate: (schema, data) => isQuoteMatching(data), + }) + .addKeyword("isFutureDated", { + validate: (schema, data) => isFutureDated(data), + }) + .addKeyword("isLengthValid", { + validate: (schema, data) => isLengthValid(data), + }); validate = validate.compile(schema); diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/SchemaValidator.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/SchemaValidator.js index 2ad474a..b080a31 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/SchemaValidator.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/SchemaValidator.js @@ -77,7 +77,7 @@ const validate_schema = (data, schema, version) => { addFormats(ajv); require("ajv-errors")(ajv); - require('ajv-merge-patch')(ajv); + require("ajv-merge-patch")(ajv); let error_list = []; try { validate = ajv diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/initSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/initSchema.js index 1419fff..51e46f8 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/initSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/initSchema.js @@ -243,8 +243,6 @@ module.exports = { building: { type: "string", minLength: 3, - not: { const: { $data: "1/locality" } }, - errorMessage: "cannot be equal to locality", }, locality: { type: "string", @@ -336,6 +334,8 @@ module.exports = { }, }, additionalProperties: false, + isLengthValid:true, + errorMessage:"name + building + locality < 190 chars", required: [ "name", "building", @@ -348,6 +348,8 @@ module.exports = { }, tax_number: { type: "string", + pattern: "^[0-9]{2}[A-Z]{5}[0-9]{4}[0-9A-Z]{4}$", + errorMessage: "should be valid", }, phone: { type: "string", diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onConfirmSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onConfirmSchema.js index fe562dd..a217f6b 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onConfirmSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onConfirmSchema.js @@ -161,8 +161,6 @@ module.exports = { }, quote: { type: "object", - const: { $data: "/confirm/0/message/order/quote" }, - errorMessage: "object mismatches in /confirm and /on_confirm.", properties: { price: { type: "object", @@ -267,9 +265,13 @@ module.exports = { properties: { start: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["start", "end"], @@ -278,7 +280,7 @@ module.exports = { required: ["range"], }, }, - //required: ["time"], + }, end: { type: "object", @@ -291,9 +293,13 @@ module.exports = { properties: { start: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["start", "end"], @@ -302,7 +308,7 @@ module.exports = { required: ["range"], }, }, - //required: ["time"], + }, agent: { type: "object", @@ -344,6 +350,7 @@ module.exports = { }, }, + additionalProperties:false, required: ["id", "type", "state", "tracking"], }, }, diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onInitSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onInitSchema.js index 9ffb1c5..1a244ca 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onInitSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onInitSchema.js @@ -236,6 +236,21 @@ module.exports = { }, }, }, + if: { + properties: { + type: { enum: ["ON-ORDER", "POST-FULFILLMENT"] }, + }, + }, + then: { + properties: { + collected_by: { const: "BAP" }, + }, + }, + else: { + properties: { + collected_by: { const: "BPP" }, + }, + }, required: ["type", "collected_by"], }, }, diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onSearchSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onSearchSchema.js index 8d63e64..8187249 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onSearchSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onSearchSchema.js @@ -40,8 +40,7 @@ module.exports = { type: "string", const: { $data: "/search/0/context/transaction_id" }, errorMessage: - "Transaction ID should be same across the transaction: ${/search/0/context/transaction_id}", - + "Transaction ID should be same across the transaction: ${/search/0/context/transaction_id}", }, message_id: { type: "string", @@ -58,7 +57,7 @@ module.exports = { errorMessage: "Message ID should not be equal to transaction_id: ${1/transaction_id}", }, - ] + ], }, timestamp: { type: "string", @@ -283,6 +282,9 @@ module.exports = { }, value: { type: "string", + pattern: "^[0-9]+(\\.[0-9]{1,2})?$", + errorMessage: + "precision for all prices in quote can be maximum of 2 decimal digits", }, }, required: ["currency", "value"], @@ -297,11 +299,11 @@ module.exports = { duration: { type: "string", format: "duration", - errorMessage: "${2/time/duration}", }, timestamp: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["label", "duration", "timestamp"], @@ -317,45 +319,44 @@ module.exports = { }, }, }, - if: - { - properties: { - categories: { - type: "array", - items: { - type: "object", - properties: { - id: { const: "Immediate Delivery" }, - }, + if: { + properties: { + categories: { + type: "array", + items: { + type: "object", + properties: { + id: { const: "Immediate Delivery" }, }, }, }, - not: { - required: ["locations"], - }, }, - // { - // not: { - // properties: { - // categories: { - // type: "array", - // items: { - // type: "object", - // properties: { - // id: { const: "Immediate Delivery" }, - // }, - // }, - // }, - // }, - // }, - // }, - else:{ - required: ["id", "descriptor", "categories", "items"], - } + not: { + required: ["locations"], + }, + }, + // { + // not: { + // properties: { + // categories: { + // type: "array", + // items: { + // type: "object", + // properties: { + // id: { const: "Immediate Delivery" }, + // }, + // }, + // }, + // }, + // }, + // }, + else: { + required: ["id", "descriptor", "categories", "items"], + }, }, }, }, - additionalProperties:false, + additionalProperties: false, required: ["bpp/fulfillments", "bpp/descriptor", "bpp/providers"], }, }, diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onStatusSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onStatusSchema.js index 2f32512..fb38da1 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onStatusSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onStatusSchema.js @@ -163,6 +163,9 @@ module.exports = { }, value: { type: "string", + pattern: "^[0-9]+(\\.[0-9]{1,2})?$", + errorMessage: + "precision for all prices in quote can be maximum of 2 decimal digits", }, }, required: ["currency", "value"], @@ -186,19 +189,21 @@ module.exports = { }, value: { type: "string", + pattern: "^[0-9]+(\\.[0-9]{1,2})?$", + errorMessage: + "precision for all prices in quote can be maximum of 2 decimal digits", }, }, required: ["currency", "value"], }, }, - required: [ - "@ondc/org/item_id", - "@ondc/org/title_type", - "price", - ], + required: ["@ondc/org/title_type", "price"], }, }, }, + isQuoteMatching: true, + errorMessage: + "price is not matching with the total breakup price", required: ["price", "breakup"], }, fulfillments: { @@ -253,9 +258,17 @@ module.exports = { properties: { start: { type: "string", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, end: { type: "string", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, required: ["start", "end"], @@ -301,9 +314,17 @@ module.exports = { properties: { start: { type: "string", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, end: { type: "string", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, required: ["start", "end"], @@ -455,12 +476,19 @@ module.exports = { }, }, }, - if: { properties: { type: { const: "ON-FULFILLMENT" } } }, + if: { + properties: { + type: { enum: ["ON-ORDER", "POST-FULFILLMENT"] }, + }, + }, then: { properties: { - collected_by: { - const: "BPP", - }, + collected_by: { const: "BAP" }, + }, + }, + else: { + properties: { + collected_by: { const: "BPP" }, }, }, required: ["type", "collected_by"], diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onUpdateSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onUpdateSchema.js index 02e9fa3..c0722c7 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onUpdateSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/onUpdateSchema.js @@ -45,11 +45,6 @@ module.exports = { message_id: { type: "string", allOf: [ - { - const: { $data: "/update/0/context/message_id" }, - errorMessage: - "Message ID should be same as /update: ${/update/0/context/message_id}", - }, { not: { const: { $data: "1/transaction_id" }, @@ -100,15 +95,23 @@ module.exports = { properties: { id: { type: "string", + const: { $data: "/init/0/message/order/items/0/id" }, }, category_id: { type: "string", + const: { + $data: "/init/0/message/order/items/0/category_id", + }, }, descriptor: { type: "object", properties: { code: { type: "string", + const: { + $data: + "/init/0/message/order/items/0/descriptor/code", + }, }, }, }, @@ -144,11 +147,13 @@ module.exports = { properties: { start: { type: "string", - minimum: { $data: "7/context/timestamp" }, - errorMessage: "${7/context/timestamp}", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["start", "end"], @@ -183,9 +188,13 @@ module.exports = { properties: { start: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["start", "end"], diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/searchSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/searchSchema.js index ba45573..fd47ce2 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/searchSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.1/searchSchema.js @@ -46,7 +46,7 @@ module.exports = { }, timestamp: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$" }, ttl: { type: "string", @@ -344,7 +344,6 @@ module.exports = { }, required: [ "category", - "provider", "fulfillment", "@ondc/org/payload_details", ], diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/common/commonSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/common/commonSchema.js index 5986621..9a9ed5a 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/common/commonSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/common/commonSchema.js @@ -80,7 +80,12 @@ module.exports = { type: "object", properties: { currency: { type: "string" }, - value: { type: "string" }, + value: { + type: "string", + pattern: "^[0-9]+(\\.[0-9]{1,2})?$", + errorMessage: + "precision for all prices in quote can be maximum of 2 decimal digits", + }, }, required: ["currency", "value"], }, diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/confirmSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/confirmSchema.js index 5939573..5f77fae 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/confirmSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/confirmSchema.js @@ -270,6 +270,7 @@ module.exports = { }, }, }, + additionalProperties: false, required: ["price", "breakup"], }, fulfillments: { @@ -302,7 +303,7 @@ module.exports = { }, duration: { type: "string", - format: "duration", + format: "duration" }, location: { type: "object", @@ -407,7 +408,7 @@ module.exports = { properties: { short_desc: { maxLength: 6, - pattern: "^[0-9]{1,6}$", + pattern: "^[a-zA-Z0-9]{1,6}$", errorMessage: "should not be an empty string or have more than 6 digits", }, @@ -513,7 +514,7 @@ module.exports = { enum: constants.DCC_CODE, }, }, - required: ["code", "short_desc"], + required: ["code"], allOf: [ { if: { properties: { code: { const: "3" } } }, @@ -534,11 +535,12 @@ module.exports = { properties: { short_desc: { maxLength: 6, - pattern: "^[0-9]{1,6}$", + pattern: "^[a-zA-Z0-9]{1,6}$", errorMessage: "should not be an empty string or have more than 6 digits", }, }, + required: ["short_desc"], }, }, ], @@ -793,14 +795,39 @@ module.exports = { }, }, }, - if: { properties: { type: { const: "ON-FULFILLMENT" } } }, - then: { - properties: { - collected_by: { - const: "BPP", + allOf: [ + { + if: { + properties: { type: { const: "ON-FULFILLMENT" } }, + }, + then: { + required: ["@ondc/org/collection_amount"], }, }, - }, + { + if: { + properties: { + type: { enum: ["ON-ORDER", "POST-FULFILLMENT"] }, + }, + }, + then: { + not: { required: ["@ondc/org/collection_amount"] }, + errorMessage: + "@ondc/org/collection_amount is required only for payment/type 'ON-FULFILLMENT'", + }, + }, + { + if: { properties: { type: { const: "ON-FULFILLMENT" } } }, + then: { + properties: { + collected_by: { + const: "BPP", + }, + }, + }, + }, + ], + required: ["collected_by", "type"], }, "@ondc/org/linked_order": { @@ -1014,8 +1041,8 @@ module.exports = { required: ["order"], }, }, - isFutureDated: true, - errorMessage: - "order/created_at or order/updated_at cannot be future dated w.r.t context/timestamp", + // isFutureDated: true, + // errorMessage: + // "order/created_at or order/updated_at cannot be future dated w.r.t context/timestamp", required: ["context", "message"], }; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/initSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/initSchema.js index 96c01da..7ac6ff0 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/initSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/initSchema.js @@ -464,7 +464,7 @@ module.exports = { }, }, additionalProperties: false, - required: ["provider", "items", "fulfillments", "billing"], + required: ["provider", "items", "fulfillments", "billing","payment"], }, }, required: ["order"], diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/keywords/confirm.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/keywords/confirm.js index 239d106..1ccc7d0 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/keywords/confirm.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/keywords/confirm.js @@ -3,12 +3,14 @@ module.exports = { const contextTime = data?.context?.timestamp; const created_at = data?.message?.order?.created_at; const updated_at = data?.message?.order?.updated_at; - console.log(contextTime,updated_at); + if ( (created_at && created_at > contextTime) || (updated_at && updated_at > contextTime) - ) + ) { return false; + } + return true; }, }; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/keywords/onInit.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/keywords/onInit.js index d9a2b1d..172c10e 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/keywords/onInit.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/keywords/onInit.js @@ -6,6 +6,7 @@ module.exports = { breakupArr.forEach((breakup) => { totalBreakup += parseFloat(breakup?.price?.value); }); + // console.log(quotePrice,totalBreakup); if (quotePrice != totalBreakup) return false; else return true; }, diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onCancelSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onCancelSchema.js index 7b6cee0..860fa2d 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onCancelSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onCancelSchema.js @@ -194,6 +194,9 @@ module.exports = { }, }, required: ["price", "breakup"], + isQuoteMatching: true, + errorMessage: + "price is not matching with the total breakup price", }, fulfillments: { @@ -206,7 +209,7 @@ module.exports = { }, type: { type: "string", - enum: constants.FULFILLMENT_TYPE + enum: constants.FULFILLMENT_TYPE, }, state: { type: "object", @@ -216,7 +219,10 @@ module.exports = { properties: { code: { type: "string", - enum: ["Cancelled", "RTO-Initiated","RTO-Disposed"], + enum: [ + "Cancelled", + "RTO-Initiated" + ], }, }, required: ["code"], @@ -233,10 +239,6 @@ module.exports = { }, tracking: { type: "boolean", - const: { - $data: - "/on_confirm/0/message/order/fulfillments/0/tracking", - }, }, start: { type: "object", @@ -249,18 +251,21 @@ module.exports = { properties: { start: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, - required: ["start", "end"], + required: ["start"], }, timestamp: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, }, @@ -368,18 +373,21 @@ module.exports = { properties: { start: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, - required: ["start", "end"], + required: ["start"], }, timestamp: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, }, @@ -543,17 +551,7 @@ module.exports = { required: ["time", "person", "location", "contact"], }, }, - required: [ - "id", - "type", - "state", - "start", - "end", - "tracking", - "agent", - "vehicle", - "tags", - ], + required: ["id", "type", "state", "start", "end", "tracking"], }, else: { properties: { @@ -677,6 +675,31 @@ module.exports = { }, }, additionalProperties: false, + + // if: { + // properties: { + // cancellation: { + // properties: { + // reason: { + // properties: { + // id: { + // enum: ["011", "012", "013", "014", "015"], + // }, + // }, + // }, + // }, + // }, + // }, + // }, + // then: { + // properties: { + // fulfillments: { + // required: ["tags"], + // errorMessage: "tags required when RTO is triggered", + // }, + // }, + // }, + required: [ "id", "state", @@ -692,9 +715,8 @@ module.exports = { }, required: ["order"], }, - }, - isFutureDated: true, - errorMessage: "created_at/updated_at must not be future dated", + // isFutureDated: true, + // errorMessage: "order/created_at or order/updated_at cannot be future dated w.r.t context/timestamp", required: ["context", "message"], }; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onConfirmSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onConfirmSchema.js index 67e8adf..ad3d244 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onConfirmSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onConfirmSchema.js @@ -255,6 +255,7 @@ module.exports = { }, }, }, + additionalProperties: false, required: ["price", "breakup"], }, fulfillments: { @@ -415,6 +416,36 @@ module.exports = { }, }, required: ["code", "short_desc"], + allOf: [ + { + if: { properties: { code: { const: "1" } } }, + then: { + properties: { + short_desc: { + minLength: 10, + maxLength: 10, + pattern: "^[0-9]{10}$", + errorMessage: "should be a 10 digit number", + }, + }, + }, + }, + { + if: { + properties: { code: { enum: ["2", "3", "4"] } }, + }, + then: { + properties: { + short_desc: { + maxLength: 6, + pattern: "^[a-zA-Z0-9]{1,6}$", + errorMessage: + "should not be an empty string or have more than 6 digits", + }, + }, + }, + }, + ], }, time: { type: "object", @@ -424,11 +455,17 @@ module.exports = { properties: { start: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, end: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, required: ["start", "end"], @@ -436,7 +473,7 @@ module.exports = { }, }, }, - required: ["person", "location", "contact", "time"], + required: ["person", "location", "contact"], }, end: { @@ -548,10 +585,39 @@ module.exports = { }, code: { type: "string", - enum: constants.PCC_CODE, + enum: constants.DCC_CODE, }, }, - required: ["code", "short_desc"], + required: ["code"], + allOf: [ + { + if: { properties: { code: { const: "3" } } }, + then: { + properties: { + short_desc: { + maxLength: 0, + errorMessage: "is not required", + }, + }, + }, + }, + { + if: { + properties: { code: { enum: ["1", "2"] } }, + }, + then: { + properties: { + short_desc: { + maxLength: 6, + pattern: "^[a-zA-Z0-9]{1,6}$", + errorMessage: + "should not be an empty string or have more than 6 digits", + }, + }, + required: ["short_desc"], + }, + }, + ], }, time: { type: "object", @@ -561,11 +627,17 @@ module.exports = { properties: { start: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, end: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, required: ["start", "end"], @@ -633,6 +705,7 @@ module.exports = { ], }, }, + billing: { type: "object", properties: { @@ -804,6 +877,7 @@ module.exports = { errorMessage: "does not match context/timestamp - ${3/context/timestamp}", }, + }, required: [ "id", diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onInitSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onInitSchema.js index 256c54c..a372264 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onInitSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onInitSchema.js @@ -138,6 +138,9 @@ module.exports = { }, value: { type: "string", + pattern: "^[0-9]+(\\.[0-9]{1,2})?$", + errorMessage: + "precision for all prices in quote can be maximum of 2 decimal digits", }, }, required: ["currency", "value"], @@ -162,6 +165,9 @@ module.exports = { }, value: { type: "string", + pattern: "^[0-9]+(\\.[0-9]{1,2})?$", + errorMessage: + "precision for all prices in quote can be maximum of 2 decimal digits", }, }, required: ["currency", "value"], @@ -179,6 +185,7 @@ module.exports = { format: "duration", }, }, + required: ["price", "breakup", "ttl"], isQuoteMatching: true, errorMessage: "price is not matching with the total breakup price", diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onSearchSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onSearchSchema.js index 7fa3dfe..203bb8c 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onSearchSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onSearchSchema.js @@ -127,7 +127,7 @@ module.exports = { properties: { id: { type: "string", - enum:constants.CATEGORY_ID + enum: constants.CATEGORY_ID, }, time: { type: "object", @@ -140,12 +140,12 @@ module.exports = { type: "string", format: "duration", }, - timestamp:{ - type:"string", - format:"date" - } + timestamp: { + type: "string", + format: "date", + }, }, - required: ["label", "duration","timestamp"], + required: ["label", "duration", "timestamp"], }, }, required: ["id"], @@ -235,7 +235,7 @@ module.exports = { }, category_id: { type: "string", - enum:constants.CATEGORY_ID + enum: constants.CATEGORY_ID, }, fulfillment_id: { type: "string", @@ -245,7 +245,7 @@ module.exports = { properties: { code: { type: "string", - enum: constants.SHIPMENT_TYPE + enum: constants.SHIPMENT_TYPE, }, name: { type: "string", @@ -275,6 +275,9 @@ module.exports = { }, value: { type: "string", + pattern: "^[0-9]+(\\.[0-9]{1,2})?$", + errorMessage: + "precision for all prices in quote can be maximum of 2 decimal digits", }, }, required: ["currency", "value"], @@ -288,7 +291,7 @@ module.exports = { }, duration: { type: "string", - format: "duration" + format: "duration", }, timestamp: { type: "string", diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onStatusSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onStatusSchema.js index c51b0f2..348df28 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onStatusSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onStatusSchema.js @@ -198,6 +198,9 @@ module.exports = { }, }, required: ["price", "breakup"], + isQuoteMatching: true, + errorMessage: + "price is not matching with the total breakup price", }, fulfillments: { type: "array", @@ -242,18 +245,27 @@ module.exports = { properties: { start: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, end: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, required: ["start", "end"], }, timestamp: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, }, @@ -360,18 +372,27 @@ module.exports = { properties: { start: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, end: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, required: ["start", "end"], }, timestamp: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, }, @@ -543,6 +564,10 @@ module.exports = { $data: "/on_confirm/0/message/order/payment/type", }, }, + status: { + type: "string", + enum: ["PAID", "NOT-PAID"], + }, collected_by: { type: "string", const: { @@ -554,7 +579,10 @@ module.exports = { properties: { timestamp: { type: "string", - format: "date-time", + pattern: + "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage: + "should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format", }, }, }, @@ -600,7 +628,7 @@ module.exports = { }, }, }, - required: ["type", "collected_by"], + required: ["type", "collected_by","status"], }, billing: { type: "object", diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onTrackSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onTrackSchema.js index 43c055f..5b6ba08 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onTrackSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onTrackSchema.js @@ -23,7 +23,7 @@ module.exports = { }, core_version: { type: "string", - const:"1.2.0" + const: "1.2.0", }, bap_id: { type: "string", @@ -106,19 +106,23 @@ module.exports = { properties: { timestamp: { type: "string", + format: "date-time", }, }, required: ["timestamp"], }, updated_at: { type: "string", + format: "date-time", }, }, + required: ["gps", "time", "updated_at"], }, status: { type: "string", - enum: constants.TRACKING_STATUS, + enum: ["active"], + errorMessage: `should be 'active' if tracking is enabled` }, tags: { type: "array", @@ -127,7 +131,7 @@ module.exports = { properties: { code: { type: "string", - enum: ["path"], + enum: constants.TRACK_TAGS_CODE, }, list: { type: "array", @@ -136,7 +140,7 @@ module.exports = { properties: { code: { type: "string", - enum: ["lat_lng", "sequence"], + enum: constants.TRACK_TAGS_LIST_CODE, }, value: { type: "string", @@ -156,5 +160,8 @@ module.exports = { required: ["tracking"], }, }, + // isTrackingFutureDated: true, + // errorMessage: + // "time/timestamp or updated_at in /location cannot be future dated w.r.t context/timestamp", required: ["context", "message"], }; diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onUpdateSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onUpdateSchema.js index 3858485..aad1d92 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onUpdateSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/onUpdateSchema.js @@ -1,3 +1,4 @@ +const constants = require("../../../utils/constants"); const { ORDER_STATE, TITLE_TYPE, @@ -54,13 +55,6 @@ module.exports = { message_id: { type: "string", allOf: [ - { - const: { - $data: "/update/0/context/message_id", - }, - errorMessage: - "Message ID should be same as /update: ${/update/0/context/message_id}", - }, { not: { const: { $data: "1/transaction_id" }, @@ -129,6 +123,7 @@ module.exports = { properties: { id: { type: "string", + const: { $data: "/init/0/message/order/items/0/id" }, }, fulfillment_id: { type: "string", @@ -138,12 +133,19 @@ module.exports = { }, category_id: { type: "string", + const: { + $data: "/init/0/message/order/items/0/category_id", + }, }, descriptor: { type: "object", properties: { code: { type: "string", + const: { + $data: + "/init/0/message/order/items/0/descriptor/code", + }, }, }, }, @@ -221,11 +223,13 @@ module.exports = { properties: { start: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["start", "end"], @@ -238,28 +242,55 @@ module.exports = { required: ["range"], }, instructions: { + type: "object", + properties: { + code: { + type: "string", + enum: constants.PCC_CODE, + }, + name: { + type: "string", + }, + short_desc: { + type: "string", + }, + long_desc: { + type: "string", + }, + }, + + required: ["code", "short_desc"], allOf: [ { - type: "object", - properties: { - code: { type: "string" }, - short_desc: { - type: "string", - }, - long_desc: { - type: "string", - }, - images: { - type: "array", - items: { - type: "string", + if: { properties: { code: { const: "1" } } }, + then: { + properties: { + short_desc: { + minLength: 10, + maxLength: 10, + pattern: "^[0-9]{10}$", + errorMessage: + "should be a 10 digit number", }, }, }, }, { - $data: - "/update/0/message/order/fulfillments/0/start/instructions", + if: { + properties: { + code: { enum: ["2", "3", "4"] }, + }, + }, + then: { + properties: { + short_desc: { + maxLength: 6, + pattern: "^[a-zA-Z0-9]{1,6}$", + errorMessage: + "should not be an empty string or have more than 6 digits", + }, + }, + }, }, ], }, @@ -284,46 +315,70 @@ module.exports = { properties: { start: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, end: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, - }, + }, required: ["start", "end"], }, timestamp: { type: "string", - format: "date-time", + pattern: "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z$", + errorMessage:"should be in RFC 3339 (YYYY-MM-DDTHH:MN:SS.MSSZ) Format" }, }, required: ["range"], }, instructions: { + type: "object", + properties: { + code: { + type: "string", + enum: constants.DCC_CODE, + }, + name: { + type: "string", + }, + short_desc: { + type: "string", + }, + long_desc: { + type: "string", + }, + }, + required: ["code"], allOf: [ { - type: "object", - properties: { - code: { type: "string" }, - short_desc: { - type: "string", - }, - long_desc: { - type: "string", - }, - images: { - type: "array", - items: { - type: "string", + if: { properties: { code: { const: "3" } } }, + then: { + properties: { + short_desc: { + maxLength: 0, + errorMessage: "is not required", }, }, }, - required: ["code", "short_desc"], }, { - $data: - "/update/0/message/order/fulfillments/0/end/instructions", + if: { + properties: { code: { enum: ["1", "2"] } }, + }, + then: { + properties: { + short_desc: { + maxLength: 6, + pattern: "^[a-zA-Z0-9]{1,6}$", + errorMessage: + "should not be an empty string or have more than 6 digits", + }, + }, + required: ["short_desc"], + }, }, ], }, @@ -404,6 +459,7 @@ module.exports = { }, updated_at: { type: "string", + format:"date-time" }, }, additionalProperties: false, diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/searchSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/searchSchema.js index f8649d8..3c7def9 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/searchSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/searchSchema.js @@ -127,7 +127,6 @@ module.exports = { required: ["start", "end"], }, }, - required: ["days", "schedule", "range"], }, }, }, @@ -336,7 +335,6 @@ module.exports = { }, required: [ "category", - "provider", "fulfillment", "@ondc/org/payload_details", "payment", diff --git a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/updateSchema.js b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/updateSchema.js index ba71a39..34098a6 100644 --- a/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/updateSchema.js +++ b/utilities/logistics-b2b/log-verification-utility/schema/logistics_api_json_schema/v1.2/updateSchema.js @@ -146,6 +146,9 @@ module.exports = { properties: { id: { type: "string", + const: { + $data: "/init/0/message/order/items/0/fulfillment_id", + }, }, type: { type: "string", @@ -173,40 +176,38 @@ module.exports = { type: "string", }, }, - if: { - properties: { - code: { - const: "1", - }, - }, - }, - then: { - properties: { - short_desc: { - type: "string", - minLength: 10, - maxLength: 10, - }, - }, - }, - else: { - if: { - properties: { - code: { - const: "2", + + required: ["code", "short_desc"], + allOf: [ + { + if: { properties: { code: { const: "1" } } }, + then: { + properties: { + short_desc: { + minLength: 10, + maxLength: 10, + pattern: "^[0-9]{10}$", + errorMessage: "should be a 10 digit number", + }, }, }, }, - then: { - properties: { - short_desc: { - type: "string", - maxLength: 6, + { + if: { + properties: { code: { enum: ["2", "3", "4"] } }, + }, + then: { + properties: { + short_desc: { + maxLength: 6, + pattern: "^[a-zA-Z0-9]{1,6}$", + errorMessage: + "should not be an empty string or have more than 6 digits", + }, }, }, }, - }, - required: ["code", "short_desc"], + ], }, }, additionalProperties: false, @@ -227,24 +228,76 @@ module.exports = { }, short_desc: { type: "string", - maxLength: 6, }, long_desc: { type: "string", }, }, - required: ["code", "short_desc"], + required: ["code"], + allOf: [ + { + if: { properties: { code: { const: "3" } } }, + then: { + properties: { + short_desc: { + maxLength: 0, + errorMessage: "is not required", + }, + }, + }, + }, + { + if: { + properties: { code: { enum: ["1", "2"] } }, + }, + then: { + properties: { + short_desc: { + maxLength: 6, + pattern: "^[a-zA-Z0-9]{1,6}$", + errorMessage: + "should not be an empty string or have more than 6 digits", + }, + }, + required: ["short_desc"], + }, + }, + ], }, }, additionalProperties: false, // required: ["instructions"], }, tags: { - allOf: [ - { - $ref: "confirmSchema#/properties/message/properties/order/properties/fulfillments/items/properties/tags", + type: "array", + items: { + type: "object", + properties: { + code: { + type: "string", + enum: ["state"] + }, + list: { + type: "array", + items: { + type: "object", + properties: { + code: { + type: "string", + enum: ["ready_to_ship"] + }, + value: { + type: "string", + enum: ["yes","no"] + }, + }, + required: ["code", "value"], + }, + }, }, - ], + + required: ["code", "list"], + }, }, }, additionalProperties: false, @@ -273,13 +326,13 @@ module.exports = { format: "date-time", }, }, - isFutureDated: true, - errorMessage: "updated_at must not be future dated", + required: ["id", "items", "fulfillments", "updated_at"], }, }, required: ["update_target", "order"], }, }, + required: ["context", "message"], }; diff --git a/utilities/logistics-b2b/log-verification-utility/server/routes/routes.js b/utilities/logistics-b2b/log-verification-utility/server/routes/routes.js index 2ba5383..1f4780e 100644 --- a/utilities/logistics-b2b/log-verification-utility/server/routes/routes.js +++ b/utilities/logistics-b2b/log-verification-utility/server/routes/routes.js @@ -11,12 +11,76 @@ const { const validate_schema_for_domain_json = require("../../schema/main"); const { validateLogs } = require("../../utils/validateLogUtil"); const readLogFiles = require("../../utils/logistics/readLogFiles"); +// const { logsUpload, logUpload } = require("../utils/fileHandler"); router.get("/", (req, res) => { res.json({ msg: "Head over to /validate for route validation" }); }); -// Route defined to validate logs +// /validate/flow/:domain + +// router.post("/validate/local/single", async (req, res) => { +// const { domain, path: filePath } = req.body; +// if (!domain || !filePath) +// return res +// .status(400) +// .json({ msg: 'Req Body needs to have "domain" and "path"' }); + +// if (!Object.keys(SUPPORTED_DOMAINS_SORTED_INDEX).includes(domain)) +// return res.status(404).json({ msg: `Domain ${domain} not supported yet!` }); +// try { +// const file = fs.readFileSync(path.join(filePath)); + +// const fileData = JSON.parse(file.toString()); + +// const action = fileData.context.action; + +// const individualSchemaErrors = validate_schema_for_domain_json(domain, { +// [action]: [fileData], +// }); +// const destination = path.join( +// __dirname, +// "../../", +// SERVER_LOG_DEST, +// domain, +// fileData.context.transaction_id, +// "logs" +// ); +// const dirExists = fs.existsSync(destination); +// try { +// fs.mkdirSync(destination, { recursive: true }); + +// fs.writeFileSync( +// path.join(destination, action + ".json"), +// JSON.stringify(fileData) +// ); +// } catch (error) { +// console.log(error); +// return res.status(500).json({ msg: "Error occurred while storing file" }); +// } + +// if (dirExists) { +// var fullLogReport = {}; +// validateLogs(domain, destination, path.join(destination, "..")).then( +// () => { +// fullLogReport = JSON.parse( +// fs +// .readFileSync(path.join(destination, "../log_report.json")) +// .toString() +// ); +// return res.json({ individualSchemaErrors, fullLogReport }); +// } +// ); +// } else { +// return res.json({ individualSchemaErrors }); +// } +// } catch (error) { +// console.log("Error:", error); +// if (error.code === "ENOENT") +// return res.status(400).json({ msg: "File/Path does not exist" }); +// return res.status(500).json({ msg: "Error occurred" }); +// } +// }); router.post("/validate/:domain", async (req, res) => { try { @@ -45,4 +109,137 @@ router.post("/validate/:domain", async (req, res) => { } }); -module.exports = router; \ No newline at end of file +// router.post("/validate/single/:domain", logUpload, async (req, res) => { +// if (!req.file) +// return res.status(403).json({ msg: "Invalid or no file sent" }); +// const domain = req.params.domain; +// if (!Object.keys(SUPPORTED_DOMAINS_SORTED_INDEX).includes(domain)) +// return res.status(404).json({ msg: `Domain ${domain} not supported yet!` }); + +// const fileData = JSON.parse(req.file.buffer.toString()); + +// const destination = path.join( +// __dirname, +// "../../", +// SERVER_LOG_DEST, +// domain, +// fileData.context.transaction_id, +// "logs" +// ); +// const dirExists = fs.existsSync(destination); +// const action = fileData.context.action; +// try { +// fs.mkdirSync(destination, { recursive: true }); + +// fs.writeFileSync( +// path.join(destination, action + ".json"), +// JSON.stringify(fileData) +// ); +// } catch (error) { +// console.log(error); +// return res.status(500).json({ msg: "Error occurred while storing file" }); +// } + +// const individualSchemaErrors = validate_schema_for_domain_json(domain, { +// [action]: [fileData], +// }); + +// if (dirExists) { +// var logReport = {}; +// validateLogs(domain, destination, path.join(destination, "..")).then(() => { +// logReport = JSON.parse( +// fs.readFileSync(path.join(destination, "../log_report.json")).toString() +// ); +// return res.json({ individualSchemaErrors, logReport }); +// }); +// } else { +// return res.json({ individualSchemaErrors }); +// } +// }); + +// router.post("/validate/multiple/:domain", logsUpload, async (req, res) => { +// if (!req.files || req.files.length === 0) +// return res.status(400).json({ msg: "No files sent" }); +// const domain = req.params.domain; +// if (!Object.keys(SUPPORTED_DOMAINS_SORTED_INDEX).includes(domain)) +// return res.status(404).json({ msg: `Domain ${domain} not supported yet!` }); + +// const domainSortedIndex = constants[SUPPORTED_DOMAINS_SORTED_INDEX[domain]]; +// // Check if all compulsory files are present & no extra files are sent +// if ( +// !domainSortedIndex.every((logName) => +// Object.keys(req.files).includes(logName) +// ) +// ) +// return res.status(400).json({ msg: "All files not detected" }); + +// const firstFileData = JSON.parse( +// req.files[Object.keys(req.files)[0]][0].buffer.toString() +// ); +// const destination = path.join( +// __dirname, +// "../../", +// SERVER_LOG_DEST, +// domain, +// firstFileData.context.transaction_id, +// "logs" +// ); +// if (fs.existsSync(destination)) +// fs.rmdirSync(destination, { recursive: true }); +// // return res.status(403).json({msg: "Log Report for that Transaction ID already recorded."}) + +// fs.mkdirSync(destination, { recursive: true }); + +// for (file of Object.values(req.files)) { +// const fileData = JSON.parse(file[0].buffer.toString()); +// const action = fileData.context.action; +// fs.writeFileSync( +// path.join(destination, action + ".json"), +// JSON.stringify(fileData) +// ); +// } + +// var logReport = {}; +// validateLogs(domain, destination, path.join(destination, "..")) +// .then(() => { +// logReport = JSON.parse( +// fs.readFileSync(path.join(destination, "../log_report.json")).toString() +// ); +// return res.json({ logReport }); +// }) +// .catch((error) => { +// console.log("Error", error); +// return res +// .status(500) +// .json({ msg: "Error Occured during report generation" }); +// }); + +// // const log_generation_success = +// // (await validateLog(domain, destination)) && true; +// // return res.json({ +// // domain, +// // files: Object.keys(req.files), +// // log_generation_success, +// // }); +// }); + +// router.post("/validateSchema/:path", (req, res) => { +// const path = req.params.path; +// const data = req.body; +// const result = service.schemaValidation(domain, data, path); +// res.json(result); +// }); + +// router.post("/CheckContext/:path", (req, res) => { +// const path = req.params.path; +// const data = req.body.context; +// const result = service.checkContext(data, path); +// res.json(result); +// }); + +// router.post("/ValidateLog/:domain", (req, res) => { +// const domain = req.params.domain; +// validateLog(domain); +// }); + +module.exports = router; diff --git a/utilities/logistics-b2b/log-verification-utility/utils/ContextVal.js b/utilities/logistics-b2b/log-verification-utility/utils/ContextVal.js index 4513deb..7d0ceb7 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/ContextVal.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/ContextVal.js @@ -6,7 +6,6 @@ const { error } = require("console"); const checkContextVal = (payload, msgIdSet, i) => { try { - action = payload.context.action; console.log(`Checking context validations for ${action}`); // if (!Obj.hasOwnProperty(action)) { @@ -14,6 +13,21 @@ const checkContextVal = (payload, msgIdSet, i) => { // } let Obj = {}; let data = payload.context; + let domain = payload.context.domain; + let maxTimeDiff = 0; + if (domain === "ONDC:RET10") { + maxTimeDiff = 5000; + if (action === "init") { + maxTimeDiff = utils.iso8601DurationToSeconds(payload.context.ttl); + dao.setValue("maxTimeDiff", maxTimeDiff); + } else if (action === "on_init") { + maxTimeDiff = dao.getValue("maxTimeDiff"); + } + } else if (domain === "nic2004:60232") { + maxTimeDiff = 1000; + } + + console.log("time difference", maxTimeDiff); if (data.timestamp) { let date = data.timestamp; result = utils.timestampCheck(date); @@ -26,10 +40,9 @@ const checkContextVal = (payload, msgIdSet, i) => { } try { console.log(`Comparing Message Id of /${action}`); - if (!action.includes("on_") || action ==="on_status" || action ==="on_update") { + if (action.includes("on_")) { if (msgIdSet.has(payload.context.message_id)) { - Obj.msgIdErr = - "Message Id cannot be same for different sets of APIs"; + Obj.msgIdErr = "Message Id cannot be same for different sets of APIs"; } else { msgIdSet.add(payload.context.message_id); } @@ -84,11 +97,11 @@ const checkContextVal = (payload, msgIdSet, i) => { dao.getValue("tmpstmp") ); //console.log(timeDiff); - if (timeDiff > 1000) { + if (timeDiff > maxTimeDiff) { Obj.tmpstmpErr = `context/timestamp difference between ${action} and ${action.replace( "on_", "" - )} should be smaller than 1 sec`; + )} should be within ${maxTimeDiff / 1000} seconds`; } } } diff --git a/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bInit.js b/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bInit.js index fde9a90..d63e0cb 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bInit.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bInit.js @@ -33,20 +33,23 @@ const checkInit = (data, msgIdSet) => { } else if (init?.provider?.locations) { let providerLocArr = init.provider.locations; let providerLocExists = false; - providerLocArr.forEach((location, i) => { - providerObj[0]?.locations?.forEach((element) => { - console.log(location.id, element.id); - if (location.id === element.id) providerLocExists = true; + if (providerLocArr) { + providerLocArr.forEach((location, i) => { + providerObj[0]?.locations?.forEach((element) => { + console.log(location.id, element.id); + + if (location.id === element.id) providerLocExists = true; + }); + if (!providerLocExists) { + let itemkey = `providerLocErr${i}`; + initObj[ + itemkey + ] = `Provider location with id '${location.id}' does not exist in the catalog provided in /on_search`; + } + providerLocExists = false; }); - if (!providerLocExists) { - let itemkey = `providerLocErr${i}`; - initObj[ - itemkey - ] = `Provider location with id '${location.id}' does not exist in the catalog provided in /on_search`; - } - providerLocExists = false; - }); + } } } } @@ -79,10 +82,7 @@ const checkInit = (data, msgIdSet) => { itemExists = false; }); } catch (error) { - console.log( - `!!Error while checking items array in /on_init API`, - error - ); + console.log(`!!Error while checking items array in /on_init API`, error); } return initObj; diff --git a/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bOnSearch.js b/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bOnSearch.js index 4724e59..a4dd00b 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bOnSearch.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bOnSearch.js @@ -2,15 +2,15 @@ const _ = require("lodash"); const dao = require("../../dao/dao"); const constants = require("../constants"); const utils = require("../utils"); -const checkOnSearch = (data, msgIdSet) => { +const { reverseGeoCodingCheck } = require("../reverseGeoCoding"); + +const checkOnSearch = async (data, msgIdSet) => { const onSrchObj = {}; let onSearch = data; onSearch = onSearch.message.catalog; try { - console.log( - `Saving provider items array in /on_search api` - ); + console.log(`Saving provider items array in /on_search api`); if (onSearch["providers"]) { let providers = onSearch["providers"]; dao.setValue("providersArr", providers); @@ -28,6 +28,30 @@ const checkOnSearch = (data, msgIdSet) => { ); } + if (onSearch.hasOwnProperty("providers")) { + const providers = onSearch["providers"]; + for (let i = 0; i < providers.length; i++) { + const provider = providers[i]; + if (provider.hasOwnProperty("locations")) { + const locations = provider.locations; + for (let j = 0; j < locations.length; j++) { + const { id, gps, area_code } = locations[j]; + try { + const [lat, long] = gps.split(","); + const match = await reverseGeoCodingCheck(lat, long, area_code); + if (!match) { + onSrchObj[ + "bpp/provider:location:" + id + ":RGC" + ] = `Reverse Geocoding for location ID ${id} failed. Area Code ${area_code} not matching with ${lat},${long} Lat-Long pair.`; + } + } catch (error) { + console.log("bpp/providers error: ", error); + } + } + } + } + } + return onSrchObj; }; -module.exports = checkOnSearch; \ No newline at end of file +module.exports = checkOnSearch; diff --git a/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bOnStatus.js b/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bOnStatus.js index 519d755..6facef2 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bOnStatus.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bOnStatus.js @@ -16,178 +16,163 @@ const checkOnStatus = (data, msgIdSet) => { let fulfillments = on_status.fulfillments; let pickupTime, deliveryTime, RtoPickupTime, RtoDeliveredTime; -// try { -// console.log( -// `Checking if message id is unique for different on_status apis` -// ); -// if (msgIdSet.has(messageId)) { -// onStatusObj.msgIdErr = `Message Id should be unique for different /on_status APIs`; -// } else { -// msgIdSet.add(messageId); -// } -// } catch (error) { -// console.log(`Error checking message id in /on_status API`); -// } - -// try { -// if (fulfillments.length > 1) { -// console.log( -// `Checking for a valid 'Cancelled' fulfillment state for type 'Delivery' in case of RTO` -// ); -// fulfillments.forEach((fulfillment) => { -// ffState = fulfillment?.state?.descriptor?.code; -// if (fulfillment.type === "Prepaid" && ffState !== "Cancelled") { -// onStatusObj.flflmntstErr = `In case of RTO, fulfillment with type 'Prepaid' needs to in 'Cancelled' state`; -// } -// }); -// } -// } catch (error) { -// console.log(error); -// } -// try { -// fulfillments.forEach((fulfillment) => { -// ffState = fulfillment?.state?.descriptor?.code; -// console.log( -// `Comparing pickup and delivery timestamps for on_status_${ffState}` -// ); - -// if (fulfillment.type === "Prepaid" || fulfillment.type === "CoD") { -// if (ffState === "Pending" || ffState === "Agent-assigned") { -// if (fulfillment?.start?.time?.timestamp) { -// onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot be provided for fulfillment state - ${ffState}`; -// } -// if (fulfillment?.end?.time?.timestamp) { -// onStatusObj.deliveryTimeErr = `Delivery timestamp (fulfillments/end/time/timestamp) cannot be provided for fulfillment state - ${ffState}`; -// } -// } -// if (ffState === "Order-picked-up") { -// if (orderState !== "In-progress") { -// onStatusObj.ordrStatErr = `Order state should be 'In-progress' for fulfillment state - ${ffState}`; -// } -// pickupTime = fulfillment?.start?.time?.timestamp; -// dao.setValue("pickupTime", pickupTime); -// if (!pickupTime) { -// onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) is required for fulfillment state - ${ffState}`; -// } - -// if (_.gt(pickupTime, contextTime)) { -// onStatusObj.tmstmpErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot be future dated for fulfillment state - ${ffState}`; -// } -// } -// if (ffState === "Out-for-delivery") { -// if (orderState !== "In-progress") { -// onStatusObj.ordrStatErr = `Order state should be 'In-progress' for fulfillment state - ${ffState}`; -// } -// if (!dao.getValue("pickupTime")) { -// onStatusObj.pickupTimeErr = `Missing /on_status response for fulfillment state - 'Order-picked-up'`; -// } else if ( -// !fulfillment?.start?.time?.timestamp || -// fulfillment?.start?.time?.timestamp !== dao.getValue("pickupTime") -// ) { -// onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot change for fulfillment state - ${ffState}`; -// } -// if (fulfillment?.end?.time?.timestamp) { -// onStatusObj.deliveryTimeErr = `Delivery timestamp (fulfillments/end/time/timestamp) cannot be provided for fulfillment state - ${ffState}`; -// } -// } -// if (ffState === "Order-delivered") { -// if (orderState !== "Completed") { -// onStatusObj.ordrStatErr = `Order state should be 'Completed' for fulfillment state - ${ffState}`; -// } -// deliveryTime = fulfillment?.end?.time?.timestamp; -// dao.setValue("deliveryTime", deliveryTime); -// if (!dao.getValue("pickupTime")) { -// onStatusObj.pickupTimeErr = `/on_status call for Fulfillment state - 'Order-picked-up' missing`; -// } else if ( -// !fulfillment?.start?.time?.timestamp || -// fulfillment?.start?.time?.timestamp !== dao.getValue("pickupTime") -// ) { -// onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot change for fulfillment state - ${ffState}`; -// } -// if (!deliveryTime) { -// onStatusObj.deliveryTimeErr = `Delivery timestamp (fulfillments/end/time/timestamp) is required for fulfillment state - ${ffState}`; -// } - -// if (_.gte(pickupTime, deliveryTime)) { -// onStatusObj.tmstmpErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot be greater than or equal to delivery timestamp (fulfillments/end/time/timestamp) for fulfillment state - ${ffState}`; -// } -// } -// if (ffState === "Cancelled") { -// if (orderState !== "Cancelled") { -// onStatusObj.ordrStatErr = `Order state should be 'Cancelled' for fulfillment state - ${ffState}`; -// } -// if (fulfillments.length > 1) { -// if (!dao.getValue("pickupTime")) { -// onStatusObj.msngPickupState = `/on_status call for Fulfillment state - 'Order-picked-up' missing`; -// } else if (!fulfillment.start.time.timestamp) { -// onStatusObj.msngPickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) is missing for fulfillment state - ${ffState}`; -// } -// } - -// if (fulfillment.start.time.timestamp && dao.getValue("pickupTime")) { -// if ( -// !_.isEqual( -// dao.getValue("pickupTime"), -// fulfillment.start.time.timestamp -// ) -// ) { -// onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot change for fulfillment state - ${ffState}`; -// } -// } -// if (fulfillment.end.time.timestamp && dao.getValue("deliveryTime")) { -// if ( -// !_.isEqual( -// dao.getValue("delivryTime"), -// fulfillment.end.time.timestamp -// ) -// ) { -// onStatusObj.deliveryTimeErr = `Delivery timestamp (fulfillments/end/time/timestamp) cannot change for fulfillment state - ${ffState}`; -// } -// } -// } -// } else if (fulfillment.type === "RTO") { -// if (orderState !== "Cancelled") { -// onStatusObj.ordrStatErr = `Order state should be 'Cancelled' for fulfillment state - ${ffState}`; -// } -// if (ffState === "RTO-Initiated") { -// RtoPickupTime = fulfillment?.start?.time?.timestamp; -// if (RtoPickupTime) { -// dao.setValue("RtoPickupTime", RtoPickupTime); -// } else { -// onStatusObj.rtoPickupTimeErr = `RTO Pickup timestamp is missing for fulfillment state - ${ffState}`; -// } -// if (_.gt(RtoPickupTime, contextTime)) { -// onStatusObj.rtoPickupErr = `RTO Pickup (fulfillments/start/time/timestamp) time cannot be future dated for fulfillment state - ${ffState}`; -// } -// } -// if (ffState === "RTO-Delivered" || ffState === "RTO-Disposed") { -// RtoDeliveredTime = fulfillment?.end?.time?.timestamp; -// console.log(dao.getValue("RtoPickupTime")); -// if (!RtoDeliveredTime && ffState === "RTO-Delivered") -// onStatusObj.rtoDlvryTimeErr = `RTO Delivery timestamp (fulfillments/end/time/timestamp) is missing for fulfillment state - ${ffState}`; -// if ( -// fulfillment.start.time.timestamp && -// dao.getValue("RtoPickupTime") -// ) { -// if ( -// !_.isEqual( -// fulfillment.start.time.timestamp, -// dao.getValue("RtoPickupTime") -// ) -// ) { -// onStatusObj.rtoPickupErr = `RTO Pickup time (fulfillments/start/time/timestamp) cannot change for fulfillment state - ${ffState}`; -// } -// } -// if (RtoDeliveredTime && _.gt(RtoDeliveredTime, contextTime)) { -// onStatusObj.rtoDeliveredErr = `RTO Delivery time (fulfillments/end/time/timestamp) cannot be future dated for fulfillment state - ${ffState}`; -// } -// } -// } -// }); -// } catch (error) { -// console.log(`Error checking fulfillments/start in /update`); -// } + // try { + // console.log( + // `Checking if message id is unique for different on_status apis` + // ); + // if (msgIdSet.has(messageId)) { + // onStatusObj.msgIdErr = `Message Id should be unique for different /on_status APIs`; + // } else { + // msgIdSet.add(messageId); + // } + // } catch (error) { + // console.log(`Error checking message id in /on_status API`); + // } + // try { + // if (fulfillments.length > 1) { + // console.log( + // `Checking for a valid 'Cancelled' fulfillment state for type 'Delivery' in case of RTO` + // ); + // fulfillments.forEach((fulfillment) => { + // ffState = fulfillment?.state?.descriptor?.code; + // if (fulfillment.type === "Prepaid" && ffState !== "Cancelled") { + // onStatusObj.flflmntstErr = `In case of RTO, fulfillment with type 'Prepaid' needs to in 'Cancelled' state`; + // } + // }); + // } + // } catch (error) { + // console.log(error); + // } + try { + fulfillments.forEach((fulfillment) => { + ffState = fulfillment?.state?.descriptor?.code; + console.log( + `Comparing pickup and delivery timestamps for on_status_${ffState}` + ); + //Pending,Packed,Agent-assigned + if (fulfillment.type === "Delivery") { + if ( + ffState === "Pending" || + ffState === "Agent-assigned" || + ffState === "Packed" + ) { + fulfillment.stops.forEach((stop) => { + if (stop.type === "start") { + if (stop?.time?.timestamp) { + onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot be provided for fulfillment state - ${ffState}`; + } + } + + if (stop.type === "end") { + if (stop?.time?.timestamp) { + onStatusObj.deliveryTimeErr = `Delivery timestamp (fulfillments/end/time/timestamp) cannot be provided for fulfillment state - ${ffState}`; + } + } + }); + } + //Order-picked-up + + if (ffState === "Order-picked-up") { + if (orderState !== "In-progress") { + onStatusObj.ordrStatErr = `Order state should be 'In-progress' for fulfillment state - ${ffState}`; + } + fulfillment.stops.forEach((stop) => { + if (stop.type === "start") { + pickupTime = stop?.time?.timestamp; + dao.setValue("pickupTime", pickupTime); + if (!pickupTime) { + onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) is required for fulfillment state - ${ffState}`; + } + + if (_.gt(pickupTime, contextTime)) { + onStatusObj.tmstmpErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot be future dated w.r.t context/timestamp for fulfillment state - ${ffState}`; + } + } + + if (stop.type === "end") { + if (stop?.time?.timestamp) { + onStatusObj.deliveryTimeErr = `Delivery timestamp (fulfillments/end/time/timestamp) cannot be provided for fulfillment state - ${ffState}`; + } + } + }); + } + + + //Out-for-delivery + if (ffState === "Out-for-delivery") { + if (orderState !== "In-progress") { + onStatusObj.ordrStatErr = `Order state should be 'In-progress' for fulfillment state - ${ffState}`; + } + fulfillment.stops.forEach((stop) => { + if (stop.type === "start") { + pickupTime = stop?.time?.timestamp; + dao.setValue("pickupTime", pickupTime); + if (!pickupTime) { + onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) is required for fulfillment state - ${ffState}`; + } else if ( + dao.getValue("pickupTime") && + fulfillment?.start?.time?.timestamp !== + dao.getValue("pickupTime") + ) { + onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot change for fulfillment state - ${ffState}`; + } + } + + if (stop.type === "end") { + if (stop?.time?.timestamp) { + onStatusObj.deliveryTimeErr = `Delivery timestamp (fulfillments/end/time/timestamp) cannot be provided for fulfillment state - ${ffState}`; + } + } + }); + } + + //Order-delivered + if (ffState === "Order-delivered") { + if (orderState !== "Completed") { + onStatusObj.ordrStatErr = `Order state should be 'Completed' for fulfillment state - ${ffState}`; + } + fulfillment.stops.forEach((stop) => { + if (stop.type === "start") { + pickupTime = stop?.time?.timestamp; + dao.setValue("pickupTime", pickupTime); + if (!pickupTime) { + onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) is required for fulfillment state - ${ffState}`; + } else if ( + dao.getValue("pickupTime") && + fulfillment?.start?.time?.timestamp !== + dao.getValue("pickupTime") + ) { + onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot change for fulfillment state - ${ffState}`; + } + } + + if (stop.type === "end") { + deliveryTime = stop?.time?.timestamp; + dao.setValue("deliveryTime", deliveryTime); + + if (!deliveryTime) { + onStatusObj.deliveryTimeErr = `Delivery timestamp (fulfillments/end/time/timestamp) is required for fulfillment state - ${ffState}`; + } + if (_.gt(deliveryTime, contextTime)) { + onStatusObj.tmstmpErr = `Delivery timestamp (fulfillments/end/time/timestamp) cannot be future dated w.r.t context/timestamp for fulfillment state - ${ffState}`; + } + if (_.gte(pickupTime, deliveryTime)) { + onStatusObj.tmstmpErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot be greater than or equal to delivery timestamp (fulfillments/end/time/timestamp) for fulfillment state - ${ffState}`; + } + } + }); + } + + + + + } + }); + } catch (error) { + console.log(`Error checking fulfillments/start in /on_status`); + } + console.log(onStatusObj); return onStatusObj; }; diff --git a/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bSearch.js b/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bSearch.js index 71a8357..726d5fa 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bSearch.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/b2b/b2bSearch.js @@ -1,18 +1,59 @@ const _ = require("lodash"); +const fs = require("fs"); +const path = require("path"); const dao = require("../../dao/dao"); const constants = require("../constants"); const utils = require("../utils.js"); +const { reverseGeoCodingCheck } = require("../reverseGeoCoding"); -const checkSearch = (data, msgIdSet) => { +const checkSearch = async (data, msgIdSet) => { let srchObj = {}; let search = data; let contextTime = search.context.timestamp; search = search.message.intent; + const stops = data?.message?.intent?.fulfillment?.stops; + let startLocation, endLocation; + stops.forEach((stop) => { + if (stop.type === "start") { + startLocation = stop.location; + } + if (stop.type === "end") { + endLocation = stop.location; + } + }); - dao.setValue("searchObj", search); + console.log("Checking Reverse Geocoding for `end` location in `fullfilment`"); + try { + const [lat, long] = endLocation.gps.split(","); + const area_code = endLocation.area_code; + const match = await reverseGeoCodingCheck(lat, long, area_code); + if (!match) + srchObj[ + "RGC-end-Err" + ] = `Reverse Geocoding for \`end\` failed. Area Code ${area_code} not matching with ${lat},${long} Lat-Long pair.`; + } catch (error) { + console.log("Error in end location", error); + } + + // check for context cityCode and fulfillment end location + try { + const pinToStd = JSON.parse( + fs.readFileSync(path.join(__dirname, "pinToStd.json"), "utf8") + ); + const stdCode = data.context?.location?.city?.code.split(":")[1]; + const area_code = endLocation?.area_code; + if (pinToStd[area_code] && pinToStd[area_code] != stdCode) { + srchObj[ + "CityCode-Err" + ] = `CityCode ${stdCode} should match the city for the fulfillment end location ${area_code}, ${pinToStd[area_code]}`; + } + } catch (err) { + console.error("Error in city code check: ", err.message); + } + dao.setValue("searchObj", search); return srchObj; }; -module.exports = checkSearch; \ No newline at end of file +module.exports = checkSearch; diff --git a/utilities/logistics-b2b/log-verification-utility/utils/b2b/msgValidator.js b/utilities/logistics-b2b/log-verification-utility/utils/b2b/msgValidator.js index 158c99a..e15deca 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/b2b/msgValidator.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/b2b/msgValidator.js @@ -21,14 +21,14 @@ const b2bVal = (element, action, msgIdSet) => { case "init": return checkInit(element, msgIdSet); - case "on_init": - return checkOnInit(element, msgIdSet); + // case "on_init": + // return checkOnInit(element, msgIdSet); - case "confirm": - return checkConfirm(element, msgIdSet); + // case "confirm": + // return checkConfirm(element, msgIdSet); - case "on_confirm": - return checkOnConfirm(element, msgIdSet); + // case "on_confirm": + // return checkOnConfirm(element, msgIdSet); // case "update": // return checkUpdate(element,msgIdSet); diff --git a/utilities/logistics-b2b/log-verification-utility/utils/b2b/pinToStd.json b/utilities/logistics-b2b/log-verification-utility/utils/b2b/pinToStd.json new file mode 100644 index 0000000..4875211 --- /dev/null +++ b/utilities/logistics-b2b/log-verification-utility/utils/b2b/pinToStd.json @@ -0,0 +1 @@ +{"110001":"011","110002":"011","110003":"011","110004":"011","110005":"011","110006":"011","110007":"011","110008":"011","110009":"011","110010":"011","110011":"011","110012":"011","110013":"011","110014":"011","110015":"011","110016":"011","110017":"011","110018":"011","110019":"011","110020":"011","110021":"011","110022":"011","110023":"011","110024":"011","110025":"011","110026":"011","110027":"011","110028":"011","110029":"011","110030":"011","110031":"011","110032":"011","110033":"011","110034":"011","110035":"011","110036":"011","110037":"011","110038":"011","110039":"011","110040":"011","110041":"011","110042":"011","110043":"011","110044":"011","110045":"011","110046":"011","110047":"011","110048":"011","110049":"011","110051":"011","110052":"011","110053":"011","110054":"011","110055":"011","110056":"011","110057":"011","110058":"011","110059":"011","110060":"011","110061":"011","110062":"011","110063":"011","110064":"011","110065":"011","110066":"011","110067":"011","110068":"011","110069":"011","110070":"011","110071":"011","110072":"011","110073":"011","110074":"011","110075":"011","110076":"011","110077":"011","110078":"011","110080":"011","110081":"011","110082":"011","110083":"011","110084":"011","110085":"011","110086":"011","110087":"011","110088":"011","110089":"011","110090":"011","110091":"011","110092":"011","110093":"011","110094":"011","110095":"011","110096":"011","110097":"011","110099":"011","110110":"011","121001":"0129","121002":"0129","121003":"0129","121004":"01275","121005":"0129","121006":"0129","121007":"0129","121008":"0129","121009":"0129","121010":"0129","121012":"0129","121013":"0129","121014":"0129","121015":"0129","121101":"0129","121102":"01275","121103":"01275","121105":"01275","121106":"01275","121107":"01275","122001":"0124","122002":"0124","122003":"0124","122004":"0124","122005":"0124","122006":"0124","122007":"0124","122008":"0124","122009":"0124","122010":"0124","122011":"0124","122012":"0124","122015":"0124","122016":"0124","122017":"0124","122018":"0124","122051":"0124","122052":"0124","122098":"0124","122101":"0124","122102":"0124","122103":"01267","122104":"01267","122105":"01267","122107":"01267","122108":"01267","122413":"0124","122414":"0124","122502":"01274","122503":"0124","122504":"0124","122505":"0124","122506":"0124","122508":"01267","123001":"01285","123021":"01285","123023":"01285","123024":"01285","123027":"01285","123028":"01285","123029":"01285","123031":"01285","123034":"01285","123035":"01274","123101":"01274","123102":"01274","123103":"01274","123106":"01274","123110":"01274","123301":"01274","123302":"01274","123303":"01274","123401":"01274","123411":"01274","123412":"01274","123501":"01274","124001":"01262","124010":"01262","124021":"01262","124022":"01262","124102":"01251","124103":"01251","124104":"01251","124105":"01251","124106":"01251","124107":"01251","124108":"01251","124109":"01251","124111":"01262","124112":"01262","124113":"01262","124141":"01251","124142":"01251","124146":"01251","124201":"01262","124202":"01262","124303":"01262","124401":"01262","124404":"01262","124406":"01262","124411":"01262","124412":"01262","124501":"01262","124504":"01251","124505":"01251","124506":"01251","124507":"01251","124508":"01251","124513":"01262","124514":"01262","125001":"01662","125004":"01662","125005":"01662","125006":"01662","125007":"01662","125011":"01662","125033":"01662","125037":"01662","125038":"01662","125039":"01662","125042":"01662","125044":"01662","125047":"01662","125048":"01667","125049":"01662","125050":"01662","125051":"01667","125052":"01662","125053":"01667","125054":"05334","125055":"05334","125056":"05334","125058":"05334","125060":"05334","125075":"05334","125076":"05334","125077":"05334","125078":"05334","125101":"05334","125102":"05334","125103":"05334","125104":"05334","125106":"01667","125110":"05334","125111":"01667","125112":"01662","125113":"01662","125120":"01667","125121":"01662","125133":"01667","125201":"05334","126101":"01681","126102":"01681","126110":"01681","126111":"01681","126112":"01681","126113":"01681","126114":"01681","126115":"01681","126116":"01681","126125":"01681","126152":"01681","127021":"01664","127022":"01250","127025":"01250","127026":"01250","127027":"01664","127028":"01664","127029":"01664","127030":"01664","127031":"01664","127032":"01664","127035":"01664","127040":"01664","127041":"01664","127042":"01250","127043":"01664","127045":"01664","127046":"01664","127111":"01664","127114":"01664","127201":"01664","127306":"01250","127307":"01250","127308":"01250","127309":"01664","127310":"01250","127311":"01664","127312":"01250","131001":"0130","131021":"0130","131022":"0130","131023":"0130","131024":"0130","131027":"0130","131028":"0130","131029":"0130","131030":"0130","131039":"0130","131101":"0130","131102":"0130","131103":"0130","131301":"0130","131302":"0130","131304":"0130","131305":"0130","131306":"0130","131402":"0130","131403":"0130","131408":"0130","131409":"0130","132001":"0184","132022":"0184","132023":"0184","132024":"0184","132036":"0184","132037":"0184","132039":"0184","132040":"0184","132041":"0184","132046":"0184","132054":"0184","132101":"0180","132102":"0180","132103":"0180","132104":"0180","132105":"0180","132106":"0180","132107":"0180","132108":"0180","132113":"0180","132114":"0184","132115":"0180","132116":"0184","132117":"0184","132122":"0180","132140":"0180","132145":"0180","132157":"0184","133001":"0171","133004":"0171","133005":"0171","133006":"0171","133008":"0171","133010":"0171","133101":"0171","133102":"0171","133103":"01732","133104":"0171","133201":"0171","133202":"01732","133203":"0171","133204":"01732","133205":"0171","133206":"01732","133207":"0171","133301":"0172","133302":"0172","134003":"0171","134005":"0171","134007":"0171","134008":"0171","134101":"0172","134102":"0172","134103":"0172","134104":"0172","134105":"0172","134107":"0172","134108":"0172","134109":"0172","134112":"0172","134113":"0172","134114":"0172","134116":"0172","134117":"0172","134118":"0172","134201":"0172","134202":"0171","134203":"0171","134204":"0172","134205":"0172","135001":"01732","135002":"01732","135003":"01732","135004":"01732","135021":"01732","135101":"01732","135102":"01732","135103":"01732","135106":"01732","135133":"01732","136020":"01746","136021":"01746","136026":"01746","136027":"01746","136030":"01744","136033":"01746","136034":"01746","136035":"01746","136038":"01744","136042":"01746","136043":"01746","136044":"01746","136117":"01746","136118":"01744","136119":"01744","136128":"01744","136129":"01744","136130":"01744","136131":"01744","136132":"01744","136134":"01744","136135":"01744","136136":"01744","136156":"01744","140001":"01881","140101":"01881","140102":"01881","140103":"0172","140108":"01881","140109":"0172","140110":"0172","140111":"01881","140112":"01881","140113":"01881","140114":"01881","140115":"01881","140116":"01881","140117":"01881","140118":"01881","140119":"01881","140123":"01881","140124":"01881","140125":"01881","140126":"01881","140127":"01881","140128":"01881","140133":"01881","140201":"0172","140301":"0172","140306":"0172","140307":"0172","140308":"0172","140401":"0175","140402":"0175","140405":"01763","140406":"01763","140407":"01763","140408":"01763","140412":"01763","140413":"0172","140417":"0175","140501":"0172","140506":"0172","140507":"0172","140601":"0172","140602":"0175","140603":"0172","140604":"0172","140701":"0175","140702":"0175","140802":"01763","140901":"0172","141001":"0161","141002":"0161","141003":"0161","141004":"0161","141006":"0161","141007":"0161","141008":"0161","141010":"0161","141011":"0161","141012":"0161","141013":"0161","141014":"0161","141015":"0161","141016":"0161","141017":"0161","141101":"0161","141102":"0161","141103":"0161","141104":"0161","141105":"0161","141106":"0161","141107":"0161","141108":"0161","141109":"0161","141110":"0161","141112":"0161","141113":"0161","141114":"0161","141115":"0161","141116":"0161","141117":"0161","141118":"0161","141119":"0161","141120":"0161","141121":"0161","141122":"0161","141123":"0161","141125":"0161","141126":"0161","141127":"0161","141201":"0161","141202":"0161","141203":"0161","141204":"0161","141205":"0161","141206":"0161","141401":"0161","141411":"01763","141412":"0161","141413":"0161","141414":"0161","141415":"0161","141416":"0161","141417":"0161","141418":"0161","141419":"0161","141421":"0161","141422":"0161","141801":"01763","142001":"01636","142002":"01636","142003":"01636","142011":"01636","142021":"0161","142022":"0161","142023":"0161","142024":"0161","142025":"0161","142026":"0161","142027":"0161","142028":"0161","142029":"0161","142030":"0161","142031":"0161","142032":"0161","142033":"0161","142034":"0161","142035":"0161","142036":"0161","142037":"01636","142038":"01636","142039":"01636","142040":"01636","142041":"01636","142042":"01636","142043":"01636","142044":"01632","142045":"01636","142046":"01636","142047":"01632","142048":"01636","142049":"01636","142050":"01632","142052":"01632","142053":"01636","142054":"01636","142055":"01636","142056":"01636","142057":"01636","142058":"01636","142060":"01632","143001":"0183","143002":"0183","143003":"0183","143004":"0183","143005":"0183","143006":"0183","143008":"0183","143009":"0183","143022":"0183","143101":"0183","143102":"0183","143103":"0183","143105":"0183","143107":"01852","143108":"0183","143109":"0183","143111":"0183","143112":"0183","143113":"0183","143114":"0183","143115":"0183","143116":"0183","143117":"01852","143118":"01852","143119":"0183","143149":"0183","143201":"0183","143202":"0183","143203":"0183","143204":"0183","143205":"0183","143301":"01852","143302":"01852","143303":"01852","143304":"01852","143305":"01852","143401":"01852","143402":"01852","143406":"01852","143407":"01852","143408":"01852","143409":"01852","143410":"01852","143411":"01852","143412":"01852","143413":"0183","143414":"01852","143415":"01852","143416":"01852","143419":"01852","143422":"01852","143501":"0183","143502":"0183","143504":"0183","143505":"01874","143506":"01874","143507":"01874","143511":"01874","143512":"01874","143513":"01874","143514":"01874","143515":"01874","143516":"01874","143517":"01874","143518":"01874","143519":"01874","143520":"01874","143521":"01874","143525":"0186","143526":"01874","143527":"01874","143528":"01874","143529":"01874","143530":"01874","143531":"0186","143532":"01874","143533":"0186","143534":"0186","143601":"0183","143602":"01874","143603":"0183","143604":"01874","143605":"01874","143606":"0183","144001":"0181","144002":"0181","144003":"0181","144004":"0181","144005":"0181","144006":"0181","144007":"0181","144008":"0181","144009":"0181","144010":"0181","144011":"0181","144012":"0181","144020":"0181","144021":"0181","144022":"0181","144023":"0181","144024":"0181","144025":"0181","144026":"0181","144027":"0181","144028":"0181","144029":"01823","144030":"0181","144031":"0181","144032":"0181","144033":"0181","144034":"0181","144035":"0181","144036":"0181","144037":"0181","144039":"0181","144040":"0181","144041":"0181","144042":"0181","144043":"0181","144044":"0181","144101":"0181","144102":"0181","144103":"0181","144104":"0181","144105":"01882","144106":"0181","144201":"0181","144202":"01882","144204":"01882","144205":"01882","144206":"01882","144207":"01882","144208":"01882","144209":"01882","144210":"01882","144211":"01882","144212":"01882","144213":"01882","144214":"01882","144216":"01882","144221":"01882","144222":"01882","144223":"01882","144224":"01882","144301":"0181","144302":"0181","144303":"0181","144305":"01882","144306":"01882","144311":"0181","144401":"01822","144402":"01822","144403":"01822","144404":"01882","144405":"01822","144406":"01882","144407":"01822","144408":"01822","144409":"0181","144410":"0181","144411":"01822","144415":"01823","144416":"0181","144417":"01823","144418":"0181","144419":"0181","144421":"01823","144422":"01823","144501":"01823","144502":"01823","144503":"01823","144504":"01823","144505":"01823","144506":"01823","144507":"01823","144508":"01823","144509":"01823","144510":"01823","144511":"01823","144512":"01823","144513":"01823","144514":"01823","144515":"01823","144516":"01823","144517":"01823","144518":"01823","144519":"01882","144520":"01882","144521":"01823","144522":"01823","144523":"01882","144524":"01823","144525":"01823","144526":"01823","144527":"01882","144528":"01882","144529":"01882","144530":"01882","144531":"01882","144532":"01882","144533":"01823","144601":"01822","144602":"01822","144603":"01822","144606":"01822","144620":"01822","144621":"01822","144622":"01822","144623":"01822","144624":"01822","144625":"01822","144626":"01822","144628":"01822","144629":"0181","144630":"0181","144631":"01822","144632":"01823","144633":"0181","144701":"0181","144702":"0181","144703":"0181","144801":"0181","144802":"01822","144803":"0181","144804":"01822","144805":"0181","144806":"0181","144819":"01822","145001":"0186","145022":"0186","145023":"0186","145024":"0186","145025":"0186","145026":"0186","145027":"0186","145029":"0186","145101":"0186","146001":"01882","146021":"01882","146022":"01882","146023":"01882","146024":"01882","146101":"01882","146102":"01882","146103":"01882","146104":"01882","146105":"01882","146106":"01882","146107":"01882","146108":"01882","146109":"01882","146110":"01882","146111":"01882","146112":"01882","146113":"01882","146114":"01882","146115":"01882","146116":"01882","147001":"0175","147002":"0175","147003":"0175","147004":"0175","147005":"0175","147006":"0175","147007":"0175","147008":"0175","147021":"0175","147101":"0175","147102":"0175","147103":"0175","147104":"0175","147105":"0175","147111":"0175","147201":"0175","147202":"0175","147203":"01763","147301":"01763","148001":"01672","148002":"01672","148017":"01672","148018":"01672","148019":"01675","148020":"01672","148021":"01675","148022":"01672","148023":"01672","148024":"01672","148025":"01672","148026":"01672","148027":"01672","148028":"01672","148029":"01672","148030":"01672","148031":"01672","148033":"01672","148034":"01672","148035":"01672","148100":"01679","148101":"01679","148102":"01679","148103":"01679","148104":"01679","148105":"01679","148106":"01672","148107":"01679","148108":"01679","148109":"01679","151001":"0164","151002":"0164","151003":"0164","151004":"0164","151005":"0164","151006":"0164","151101":"0164","151102":"0164","151103":"0164","151104":"0164","151105":"0164","151106":"0164","151108":"0164","151111":"0164","151201":"0164","151202":"01633","151203":"01639","151204":"01639","151205":"01639","151206":"0164","151207":"01636","151208":"01636","151209":"01639","151210":"01633","151211":"01633","151212":"01639","151213":"01639","151214":"01639","151301":"0164","151302":"01652","151401":"0164","151501":"01652","151502":"01652","151503":"01652","151504":"01652","151505":"01652","151506":"01652","151507":"01652","151508":"01652","151509":"01652","151510":"01652","152001":"01632","152002":"01632","152003":"01632","152004":"01632","152005":"01632","152020":"01638","152021":"01632","152022":"01632","152023":"01632","152024":"01638","152025":"01633","152026":"01633","152028":"01636","152031":"01633","152032":"01633","152033":"01638","152101":"01633","152107":"01633","152112":"01633","152113":"01633","152114":"01633","152115":"01633","152116":"01638","152117":"01638","152118":"01638","152121":"01638","152122":"01638","152123":"01638","152124":"01638","152128":"01638","152132":"01638","160001":"0172","160002":"0172","160003":"0172","160004":"0172","160005":"0172","160006":"0172","160009":"0172","160011":"0172","160012":"0172","160014":"0172","160015":"0172","160016":"0172","160017":"0172","160018":"0172","160019":"0172","160020":"0172","160022":"0172","160023":"0172","160025":"0172","160030":"0172","160036":"0172","160043":"0172","160047":"0172","160055":"0172","160059":"0172","160062":"0172","160071":"0172","160101":"0172","160102":"0172","160103":"0172","160104":"0172","171001":"0177","171002":"0177","171003":"0177","171004":"0177","171005":"0177","171006":"0177","171007":"0177","171008":"0177","171009":"0177","171010":"0177","171011":"0177","171012":"0177","171013":"0177","171014":"0177","171015":"0177","171018":"0177","171019":"0177","171102":"01792","171103":"0177","171201":"0177","171202":"0177","171203":"0177","171204":"0177","171205":"0177","171206":"0177","171207":"0177","171208":"0177","171209":"0177","171210":"0177","171211":"0177","171212":"0177","171213":"0177","171214":"0177","171215":"0177","171216":"0177","171217":"0177","171218":"0177","171219":"0177","171220":"0177","171221":"0177","171222":"0177","171223":"0177","171224":"0177","171225":"0177","171226":"01702","171301":"0177","172001":"0177","172002":"01902","172021":"0177","172022":"0177","172023":"01902","172024":"0177","172025":"01902","172026":"01902","172027":"0177","172028":"0177","172029":"0177","172030":"0177","172031":"0177","172032":"01902","172033":"01902","172034":"0177","172101":"0177","172102":"0177","172103":"01786","172104":"01786","172105":"01786","172106":"01786","172107":"01786","172108":"01786","172109":"01786","172110":"01786","172111":"01900","172112":"01786","172113":"01900","172114":"01900","172115":"01786","172116":"01786","172117":"01900","172118":"01786","172201":"0177","173001":"01702","173021":"01702","173022":"01702","173023":"01702","173024":"01702","173025":"01702","173026":"01702","173027":"01702","173029":"01702","173030":"01702","173031":"01702","173032":"01702","173101":"01702","173104":"01702","173201":"01792","173202":"01792","173204":"01792","173205":"01792","173206":"01792","173207":"01792","173208":"01792","173209":"01792","173210":"01792","173211":"01792","173212":"01792","173213":"01792","173214":"01792","173215":"01792","173217":"01792","173218":"01792","173220":"01792","173221":"01792","173222":"01792","173223":"01792","173225":"01792","173229":"01792","173230":"01792","173233":"01792","173234":"01792","173235":"01792","173236":"01792","174001":"07752","174002":"07752","174003":"07752","174004":"07752","174005":"07752","174011":"07752","174012":"07752","174013":"07752","174015":"07752","174017":"07752","174021":"07752","174023":"07752","174024":"07752","174026":"07752","174027":"07752","174028":"07752","174029":"07752","174030":"07752","174031":"07752","174032":"07752","174033":"07752","174034":"07752","174035":"07752","174036":"07752","174101":"01792","174102":"01792","174103":"01792","174201":"07752","174301":"02875","174302":"02875","174303":"02875","174304":"05282","174305":"05282","174306":"02875","174307":"02875","174308":"02875","174309":"05282","174310":"07752","174311":"05282","174312":"05282","174314":"02875","174315":"02875","174316":"02875","174317":"02875","174319":"02875","174320":"02875","174321":"02875","174405":"05282","174503":"02875","174505":"05282","174507":"02875","175001":"01905","175002":"01905","175003":"01905","175004":"01905","175005":"01905","175006":"01905","175007":"01905","175008":"01905","175009":"01905","175010":"01905","175011":"01905","175012":"01905","175013":"01905","175014":"01905","175015":"01905","175016":"01905","175017":"01905","175018":"01905","175019":"01905","175020":"01905","175021":"01905","175023":"01905","175024":"01905","175025":"01905","175026":"01905","175027":"01905","175028":"01905","175029":"01905","175030":"01905","175031":"01905","175032":"01905","175033":"01905","175034":"01905","175035":"01905","175036":"01905","175037":"01905","175038":"01905","175039":"01905","175040":"01905","175042":"01905","175045":"01905","175046":"01905","175047":"01905","175048":"01905","175049":"01905","175050":"01905","175051":"01905","175052":"01905","175075":"01905","175101":"01902","175102":"01902","175103":"01902","175104":"01902","175105":"01902","175106":"01905","175121":"01905","175123":"01905","175124":"01905","175125":"01905","175126":"01902","175128":"01902","175129":"01902","175130":"01902","175131":"01902","175132":"01900","175133":"01900","175134":"01902","175136":"01902","175138":"01902","175139":"01900","175140":"01900","175141":"01905","175142":"01900","175143":"01902","176001":"01892","176002":"01892","176021":"01892","176022":"01892","176023":"01892","176025":"01892","176026":"01892","176027":"01892","176028":"01892","176029":"01892","176030":"01892","176031":"01892","176032":"01892","176033":"01892","176036":"01892","176037":"01892","176038":"01892","176039":"05282","176040":"05282","176041":"05282","176042":"05282","176043":"05282","176044":"05282","176045":"05282","176047":"01892","176048":"05282","176049":"05282","176051":"01892","176052":"01892","176053":"01892","176054":"01892","176055":"01892","176056":"01892","176057":"01892","176058":"01892","176059":"01892","176060":"01892","176061":"01892","176062":"01892","176063":"01892","176064":"01892","176065":"01892","176066":"01892","176067":"01892","176071":"01892","176073":"01892","176075":"01892","176076":"01892","176077":"01892","176081":"01892","176082":"01892","176083":"01892","176084":"01892","176085":"01892","176086":"01892","176087":"01892","176088":"01892","176089":"01892","176090":"01905","176091":"01892","176092":"01892","176093":"01892","176094":"01892","176095":"01892","176096":"01892","176097":"01892","176098":"01892","176101":"01892","176102":"01892","176103":"01892","176107":"01892","176108":"05282","176109":"05282","176110":"05282","176111":"05282","176115":"01892","176125":"01892","176128":"01892","176200":"01892","176201":"01892","176202":"01892","176203":"01892","176204":"01892","176205":"01892","176206":"01892","176207":"01376","176208":"01892","176209":"01892","176210":"01892","176211":"01892","176213":"01892","176214":"01892","176215":"01892","176216":"01892","176217":"01892","176218":"01892","176219":"01892","176225":"01892","176301":"01376","176302":"01376","176303":"01376","176304":"01376","176305":"01376","176306":"01376","176308":"01376","176309":"01376","176310":"01376","176311":"01376","176312":"01376","176313":"01376","176314":"01376","176315":"01376","176316":"01376","176317":"01376","176318":"01376","176319":"01376","176320":"01376","176321":"01376","176323":"01376","176324":"01376","176325":"01376","176326":"01376","176401":"01892","176402":"01892","176403":"01892","176501":"01892","176502":"01892","176601":"02875","177001":"05282","177005":"05282","177006":"05282","177007":"05282","177020":"05282","177021":"05282","177022":"05282","177023":"05282","177024":"05282","177025":"05282","177026":"05282","177027":"05282","177028":"05282","177029":"05282","177031":"02875","177033":"01892","177034":"01892","177038":"02875","177039":"02875","177040":"05282","177041":"05282","177042":"05282","177043":"01892","177044":"05282","177045":"05282","177048":"05282","177101":"01892","177103":"01892","177104":"01892","177105":"01892","177106":"01892","177107":"01892","177108":"01892","177109":"02875","177110":"02875","177111":"01892","177112":"01892","177113":"01892","177114":"01892","177117":"01892","177118":"05282","177119":"05282","177201":"02875","177202":"02875","177203":"02875","177204":"02875","177205":"02875","177206":"02875","177207":"02875","177208":"02875","177209":"02875","177210":"02875","177211":"02875","177212":"02875","177213":"02875","177219":"02875","177220":"02875","177301":"05282","177401":"05282","177501":"05282","177601":"05282","180001":"0191","180002":"0191","180003":"0191","180004":"0191","180005":"0191","180006":"0191","180007":"0191","180009":"0191","180010":"0191","180011":"0191","180012":"01992","180013":"0191","180015":"0191","180016":"0191","180017":"0191","180018":"0191","180019":"0191","180020":"0191","181101":"0191","181102":"0191","181111":"0191","181121":"0191","181122":"0191","181123":"0191","181124":"0191","181131":"0191","181132":"0191","181133":"01923","181141":"01923","181143":"01923","181145":"01923","181152":"0191","181201":"0191","181202":"0191","181203":"0191","181204":"0191","181205":"0191","181206":"0191","181207":"0191","181221":"0191","181224":"0191","182101":"01992","182104":"01992","182121":"01992","182122":"01992","182124":"01992","182125":"01992","182126":"01992","182127":"01992","182128":"01992","182141":"01992","182142":"01992","182143":"01998","182144":"01998","182145":"01998","182146":"01998","182147":"01996","182148":"01998","182161":"01992","182201":"01996","182202":"01996","182203":"01995","182204":"01995","182205":"01995","182206":"01995","182207":"01996","182221":"01996","182222":"01996","182301":"01991","182311":"01991","182312":"01991","182313":"01991","182315":"01991","182320":"01991","184101":"01922","184102":"01922","184104":"01922","184120":"01923","184121":"01992","184141":"01923","184142":"01922","184143":"01922","184144":"01922","184145":"01922","184148":"01922","184151":"01922","184152":"01922","184201":"01922","184202":"01922","184203":"01922","184204":"01922","184205":"01992","184206":"01922","185101":"01965","185102":"01965","185121":"01965","185131":"01962","185132":"01962","185133":"01962","185135":"01962","185151":"01962","185152":"01962","185153":"01962","185154":"01991","185155":"01962","185156":"01962","185201":"01962","185202":"01962","185203":"01991","185211":"01965","185212":"01962","185233":"01962","185234":"01962","190001":"0194","190002":"0194","190003":"0194","190004":"0194","190005":"0194","190006":"0194","190007":"01951","190008":"0194","190009":"0194","190010":"0194","190011":"0194","190012":"0194","190014":"01951","190015":"0194","190017":"0194","190018":"0194","190019":"0194","190020":"0194","190021":"01951","190023":"0194","190024":"0194","190025":"0194","191101":"0194","191102":"01933","191103":"01933","191111":"01951","191112":"01921","191113":"01951","191121":"0194","191131":"0194","191132":"01951","191201":"0194","191202":"0194","192101":"01932","192121":"01933","192122":"01933","192123":"01933","192124":"01921","192125":"01932","192126":"01932","192129":"01932","192201":"01932","192202":"01932","192210":"01932","192211":"01932","192212":"01932","192221":"01932","192231":"01931","192232":"01921","192233":"01931","192301":"01933","192302":"01933","192303":"01921","192304":"01933","192305":"01921","192306":"01921","192401":"01932","193101":"01952","193103":"01952","193108":"01952","193109":"01952","193121":"01952","193122":"01952","193123":"01952","193201":"01952","193221":"01955","193222":"01955","193223":"01955","193224":"01955","193225":"01955","193301":"01952","193302":"01955","193303":"01955","193401":"01951","193402":"01952","193403":"01952","193404":"01951","193411":"01951","193501":"0194","193502":"01957","193503":"01957","193504":"0194","193505":"01957","194101":"01982","194102":"01985","194103":"01985","194104":"01982","194105":"01985","194106":"01982","194107":"01982","194109":"01985","194201":"01982","194202":"01982","194301":"01985","194302":"01985","194303":"01985","194401":"01982","194402":"01982","194404":"01982","201001":"0120","201002":"0120","201003":"0120","201004":"0120","201005":"0120","201006":"0120","201007":"0120","201008":"0120","201009":"0120","201010":"0120","201011":"0120","201012":"0120","201013":"0120","201014":"0120","201015":"0122","201016":"0120","201017":"0120","201018":"0120","201019":"0120","201020":"0120","201021":"0120","201102":"0120","201103":"0120","201201":"0120","201204":"0120","201206":"0120","201301":"0120","201302":"0120","201303":"0120","201304":"0120","201305":"0120","201306":"0120","201307":"0120","201309":"0120","201310":"0120","201311":"0120","201312":"0120","201313":"0120","201314":"0120","201315":"0120","201316":"0120","201317":"0120","201318":"0120","202001":"0571","202002":"0571","202121":"0571","202122":"0571","202123":"0571","202124":"0571","202125":"0571","202126":"0571","202127":"0571","202128":"0571","202129":"0571","202130":"0571","202131":"0571","202132":"0571","202133":"0571","202134":"0571","202135":"0571","202136":"0571","202137":"0571","202138":"0571","202139":"05722","202140":"0571","202141":"0571","202142":"0571","202143":"0571","202145":"0571","202146":"0571","202150":"05722","202155":"0571","202165":"0571","202170":"0571","202280":"0571","202281":"0571","202282":"0571","203001":"05722","203002":"05732","203129":"05732","203131":"05732","203132":"05732","203135":"0120","203141":"0120","203150":"05732","203155":"0120","203201":"0120","203202":"0120","203203":"0120","203205":"05732","203206":"05732","203207":"0120","203209":"0120","203389":"05732","203390":"05732","203391":"05732","203392":"05732","203393":"05732","203394":"05732","203395":"05732","203396":"05732","203397":"05732","203398":"05732","203399":"05732","203401":"05732","203402":"05732","203403":"05732","203405":"05732","203407":"05732","203408":"05732","203409":"05732","203411":"05732","203412":"05732","204101":"05722","204102":"05722","204211":"05722","204212":"05722","204213":"05722","204214":"05722","204215":"05722","204216":"05722","205001":"05672","205119":"05672","205121":"05672","205247":"05672","205261":"05672","205262":"05672","205263":"05672","205264":"05672","205265":"05672","205267":"05672","205268":"05672","205301":"05672","205303":"05672","205304":"05672","206001":"05688","206002":"05688","206003":"05688","206120":"05688","206121":"05688","206122":"05683","206123":"05688","206124":"05688","206125":"05688","206126":"05688","206127":"05688","206128":"05688","206129":"05683","206130":"05688","206131":"05688","206241":"05683","206242":"05688","206243":"05683","206244":"05683","206245":"05688","206246":"05683","206247":"05683","206248":"05683","206249":"05683","206250":"05683","206251":"05683","206252":"05683","206253":"05688","206255":"05683","207001":"05742","207002":"05742","207003":"05742","207120":"05742","207121":"05742","207122":"05742","207123":"05744","207124":"05744","207125":"05742","207241":"05744","207242":"05744","207243":"05744","207244":"05744","207245":"05744","207246":"05744","207247":"05742","207248":"05744","207249":"05742","207250":"05742","207301":"05742","207302":"05742","207401":"05742","207402":"05744","207403":"05744","208001":"0512","208002":"0512","208003":"0512","208004":"0512","208005":"0512","208006":"0512","208007":"0512","208008":"0512","208009":"0512","208010":"0512","208011":"0512","208012":"0512","208013":"0512","208014":"0512","208015":"0512","208016":"0512","208017":"0512","208019":"0512","208020":"0512","208021":"0512","208022":"0512","208023":"0512","208024":"0512","208025":"0512","208026":"0512","208027":"0512","209101":"05113","209111":"05113","209112":"05113","209115":"05113","209121":"0512","209125":"05113","209202":"0512","209203":"0512","209204":"05113","209205":"0512","209206":"0512","209208":"05113","209209":"0512","209210":"0512","209214":"0512","209217":"0512","209301":"05113","209302":"05113","209303":"05113","209304":"0512","209305":"0512","209306":"05113","209307":"0512","209308":"0512","209310":"05113","209311":"0512","209312":"05113","209401":"0512","209402":"0565","209501":"05692","209502":"05692","209503":"05692","209504":"05692","209505":"05692","209601":"05692","209602":"05692","209621":"05692","209622":"05692","209625":"05692","209651":"05692","209652":"05692","209720":"05672","209721":"05694","209722":"05694","209723":"05694","209724":"05694","209725":"05694","209726":"05694","209727":"05694","209728":"05694","209729":"05694","209731":"05694","209732":"05694","209733":"05694","209734":"05694","209735":"05694","209736":"05694","209738":"05694","209739":"05692","209743":"05692","209745":"05692","209747":"05694","209749":"05692","209801":"0515","209821":"0515","209825":"0515","209827":"0515","209831":"0515","209841":"0515","209859":"0515","209860":"0515","209861":"0515","209862":"0515","209863":"0515","209864":"0515","209865":"0515","209866":"0515","209867":"0515","209868":"0515","209869":"0515","209870":"0515","209871":"0515","209881":"0515","210001":"07583","210120":"07583","210121":"07583","210122":"07583","210123":"07583","210125":"07583","210126":"07583","210128":"07583","210129":"07583","210201":"07583","210202":"05191","210203":"07583","210204":"05191","210205":"05191","210206":"05191","210207":"05191","210208":"05191","210209":"05191","210301":"05282","210341":"05282","210421":"05281","210422":"05282","210423":"05281","210424":"05281","210425":"05281","210426":"05281","210427":"05281","210428":"05282","210429":"05281","210430":"05282","210431":"05282","210432":"05282","210433":"05281","210501":"05282","210502":"05282","210504":"05281","210505":"05282","210506":"05282","210507":"05282","211001":"0532","211002":"0532","211003":"0532","211004":"0532","211005":"0532","211006":"0532","211007":"0532","211008":"0532","211010":"0532","211011":"0532","211012":"0532","211013":"0532","211014":"0532","211015":"0532","211016":"0532","211017":"0532","211018":"0532","211019":"0532","211020":"0532","211021":"0532","211022":"0532","211023":"0532","212104":"0532","212105":"0532","212106":"0532","212107":"0532","212108":"0532","212109":"0532","212111":"0532","212201":"05331","212202":"0532","212203":"05331","212204":"05331","212205":"05331","212206":"05331","212207":"05331","212208":"0532","212212":"0532","212213":"05331","212214":"05331","212216":"05331","212217":"05331","212218":"05331","212301":"0532","212302":"0532","212303":"0532","212305":"0532","212306":"0532","212307":"0532","212308":"0532","212401":"0532","212402":"0532","212404":"0532","212405":"0532","212502":"0532","212503":"0532","212507":"0532","212601":"05240","212620":"05240","212621":"05240","212622":"05240","212631":"05240","212635":"05240","212641":"05240","212645":"05240","212650":"05240","212651":"05240","212652":"0120","212653":"05240","212654":"05240","212655":"05240","212656":"05240","212657":"05240","212658":"05240","212659":"05240","212661":"05240","212663":"05240","212664":"05240","212665":"05240","221001":"0542","221002":"0542","221003":"0542","221004":"0542","221005":"0542","221006":"0542","221007":"0542","221008":"0542","221009":"05412","221010":"0542","221011":"0542","221012":"0542","221101":"0542","221103":"0542","221104":"0542","221105":"0542","221106":"0542","221107":"0542","221108":"0542","221109":"0542","221110":"05412","221112":"0542","221115":"05412","221116":"0542","221201":"0542","221202":"0542","221204":"0542","221206":"0542","221207":"0542","221208":"0542","221301":"05414","221302":"0542","221303":"05414","221304":"05414","221305":"0542","221306":"05414","221307":"0542","221308":"05414","221309":"05414","221310":"05414","221311":"0542","221313":"0542","221314":"05414","221401":"05414","221402":"05414","221403":"0542","221404":"05414","221405":"0542","221406":"05414","221407":"0542","221409":"05414","221502":"0532","221503":"0532","221505":"0532","221507":"0532","221508":"0532","221601":"0547","221602":"0547","221603":"0547","221701":"05498","221705":"0547","221706":"0547","221709":"05498","221711":"05498","221712":"05498","221713":"05498","221715":"05498","221716":"05498","221717":"05498","221718":"05498","222001":"05452","222002":"05452","222003":"05452","222105":"05452","222109":"05452","222125":"05452","222126":"05452","222127":"05452","222128":"05452","222129":"05452","222131":"05452","222132":"05452","222133":"05452","222135":"05452","222136":"05452","222137":"05452","222138":"05452","222139":"05452","222141":"05452","222142":"05452","222143":"05452","222144":"05452","222145":"05452","222146":"05452","222148":"05452","222149":"05452","222161":"05452","222162":"05452","222165":"05452","222170":"05452","222175":"05452","222180":"05452","222181":"05452","222201":"05452","222202":"05452","222203":"05452","222204":"05452","222301":"01828","222302":"01828","222303":"01828","223101":"05452","223102":"05452","223103":"05452","223104":"05452","223105":"05452","223221":"05462","223222":"05462","223223":"05462","223224":"05462","223225":"05462","223226":"05462","223227":"05462","224001":"05278","224116":"05278","224117":"05278","224118":"05278","224119":"05278","224120":"05278","224121":"05278","224122":"05271","224123":"05278","224125":"05271","224126":"05278","224127":"05278","224129":"05271","224132":"05271","224133":"05278","224135":"05278","224137":"05271","224139":"05271","224141":"05278","224143":"05271","224145":"05271","224146":"05271","224147":"05271","224149":"05271","224151":"05271","224152":"05271","224153":"05278","224155":"05271","224157":"05271","224158":"05278","224159":"05271","224161":"05278","224164":"05278","224168":"05271","224171":"05278","224172":"05612","224176":"05271","224181":"05271","224182":"05278","224183":"05271","224186":"05271","224188":"05278","224189":"05278","224190":"05271","224195":"05278","224201":"05278","224202":"05278","224203":"05278","224204":"05278","224205":"05278","224206":"05278","224207":"05278","224208":"05278","224209":"05278","224210":"05271","224225":"05278","224227":"05271","224228":"05278","224229":"05278","224230":"05271","224231":"05271","224232":"05271","224234":"05278","224235":"05271","224238":"05271","224284":"05278","225001":"05248","225002":"05248","225003":"05248","225119":"05248","225120":"05248","225121":"05248","225122":"05248","225123":"05248","225124":"05248","225125":"05248","225126":"05248","225201":"05248","225202":"05248","225203":"05248","225204":"05248","225205":"05248","225206":"05248","225207":"05248","225208":"05248","225301":"05248","225302":"05248","225303":"05248","225304":"05248","225305":"05248","225306":"05248","225401":"05248","225403":"05248","225404":"05248","225405":"05248","225409":"05248","225412":"05248","225413":"05248","225414":"05248","225415":"05248","225416":"05248","226001":"0522","226002":"0522","226003":"0522","226004":"0522","226005":"0522","226006":"0522","226007":"0522","226008":"0522","226009":"0522","226010":"0522","226011":"0522","226012":"0522","226013":"0522","226014":"0522","226015":"0522","226016":"0522","226017":"0522","226018":"0522","226019":"0522","226020":"0522","226021":"0522","226022":"0522","226023":"0522","226024":"0522","226025":"0522","226026":"0522","226027":"0522","226028":"0522","226029":"0522","226030":"0522","226031":"0522","226101":"0522","226102":"0522","226103":"0522","226104":"0522","226201":"0522","226202":"0522","226203":"0522","226301":"0522","226302":"0522","226303":"0522","226401":"0522","226501":"0522","227304":"01828","227405":"05368","227406":"05368","227407":"05368","227408":"01828","227409":"05368","227411":"05368","227412":"05368","227413":"05368","227801":"05368","227805":"01828","227806":"01828","227807":"05368","227808":"01828","227809":"05368","227811":"05368","227812":"01828","227813":"01828","227814":"01828","227815":"01828","227816":"01828","227817":"05368","228001":"01828","228118":"01828","228119":"01828","228120":"01828","228121":"01828","228125":"01828","228131":"01828","228132":"01828","228133":"01828","228141":"01828","228142":"01828","228145":"01828","228151":"01828","228155":"01828","228159":"01828","228161":"01828","228171":"01828","228172":"01828","229001":"0535","229010":"0535","229103":"0535","229120":"0535","229121":"0535","229122":"0535","229123":"0535","229124":"0535","229125":"0535","229126":"0535","229127":"0535","229128":"0535","229129":"0535","229130":"0535","229135":"05368","229201":"0535","229202":"0535","229203":"0535","229204":"0535","229205":"0535","229206":"0535","229207":"0535","229208":"0535","229209":"0535","229210":"0535","229211":"0535","229212":"0535","229215":"0535","229216":"0535","229301":"0535","229302":"0535","229303":"0535","229304":"0535","229305":"0535","229306":"0535","229307":"0535","229308":"0535","229309":"05368","229310":"0535","229311":"0535","229316":"0535","229401":"0535","229402":"0535","229404":"0535","229405":"0535","229406":"0535","229408":"05342","229410":"05342","229411":"0532","229412":"0532","229413":"0532","229801":"0535","229802":"0535","230001":"05342","230002":"05342","230121":"05342","230124":"05342","230125":"05342","230126":"05342","230127":"05342","230128":"05342","230129":"05342","230130":"05342","230131":"05342","230132":"05342","230133":"05342","230134":"05342","230135":"05342","230136":"05342","230137":"05342","230138":"05342","230139":"05342","230141":"05342","230142":"05342","230143":"05342","230144":"05342","230201":"05342","230202":"05342","230204":"05342","230301":"05342","230302":"05342","230304":"05342","230306":"05342","230401":"05342","230402":"05342","230403":"05342","230404":"05342","230405":"05342","230501":"05342","230502":"05342","230503":"05342","231001":"05442","231205":"05444","231206":"05444","231207":"05444","231208":"05444","231209":"05444","231210":"05444","231211":"05442","231212":"05444","231213":"05444","231215":"05444","231216":"05444","231217":"05444","231218":"05444","231219":"05444","231220":"05444","231221":"05444","231222":"05444","231223":"05444","231224":"05444","231225":"05444","231226":"05444","231301":"05442","231302":"05442","231303":"05442","231304":"05442","231305":"05442","231306":"05442","231307":"05442","231309":"05442","231311":"05442","231312":"05442","231313":"05442","231314":"05442","231501":"05442","232101":"05412","232102":"05412","232103":"05412","232104":"05412","232105":"05412","232106":"05412","232107":"05412","232108":"05412","232109":"05412","232110":"05412","232111":"05412","232118":"05412","232120":"05412","232325":"0548","232326":"0548","232327":"0548","232328":"0548","232329":"0548","232330":"0548","232331":"0548","232332":"0548","232333":"0548","232336":"0548","232339":"0548","232340":"0548","232341":"0548","233001":"0548","233002":"0548","233221":"0548","233222":"0548","233223":"0548","233224":"0548","233225":"0548","233226":"0548","233227":"0548","233228":"0548","233229":"0548","233230":"0548","233231":"0548","233232":"0548","233233":"0548","233234":"0548","233300":"0548","233301":"0548","233302":"0548","233303":"0548","233304":"0548","233305":"0548","233306":"0548","233307":"0548","233310":"0548","233311":"0548","241001":"0565","241121":"05852","241122":"05852","241123":"05852","241124":"05852","241125":"05852","241126":"05852","241127":"05852","241201":"05852","241202":"05852","241203":"05852","241204":"05852","241301":"05852","241302":"05852","241303":"05852","241304":"05852","241305":"05852","241401":"05852","241402":"05852","241403":"05852","241404":"05852","241405":"05852","241406":"05852","241407":"05852","242001":"05842","242021":"05923","242042":"05842","242127":"05842","242220":"05842","242221":"05842","242223":"05842","242226":"05842","242301":"05842","242303":"05842","242305":"05842","242306":"05842","242307":"05842","242401":"05842","242405":"05842","242406":"05842","242407":"05842","243001":"0581","243002":"0581","243003":"0581","243004":"0581","243005":"0581","243006":"0581","243122":"0581","243123":"0581","243126":"0581","243201":"0581","243202":"0581","243203":"0581","243301":"0581","243302":"0581","243303":"0581","243401":"0581","243402":"0581","243403":"0581","243407":"0581","243501":"0581","243502":"0581","243503":"0581","243504":"0581","243505":"0581","243506":"0581","243601":"05832","243630":"05832","243631":"05832","243632":"05832","243633":"05832","243634":"05832","243635":"05832","243636":"05832","243637":"05832","243638":"05923","243639":"05832","243641":"05832","243720":"05832","243722":"05923","243723":"05923","243724":"05832","243725":"05832","243726":"05832","243727":"05923","243751":"05923","244001":"0591","244102":"05923","244103":"0591","244104":"0591","244105":"0591","244221":"05922","244222":"05922","244223":"05922","244225":"05922","244231":"05922","244235":"05922","244236":"05922","244241":"05922","244242":"05922","244245":"05922","244251":"05922","244255":"05922","244301":"05923","244302":"05923","244303":"05923","244304":"05923","244401":"0591","244402":"0591","244410":"05923","244411":"05923","244412":"05923","244413":"0591","244414":"05923","244415":"0591","244501":"0591","244504":"0591","244601":"0591","244602":"0591","244701":"0595","244712":"05944","244713":"05944","244715":"05942","244716":"05944","244717":"05944","244720":"05944","244901":"0595","244921":"0595","244922":"0595","244923":"05944","244924":"05944","244925":"0595","244926":"0595","244927":"0595","244928":"0595","245101":"0122","245201":"0122","245205":"0122","245206":"0121","245207":"0122","245208":"0122","245301":"0122","245304":"0122","246001":"01368","246113":"01368","246121":"01368","246123":"01368","246124":"01368","246125":"01368","246127":"01368","246128":"01368","246129":"01368","246130":"01368","246131":"01368","246141":"01364","246142":"01368","246144":"01368","246146":"01368","246147":"01368","246148":"01368","246149":"01368","246150":"01368","246155":"01368","246159":"01368","246161":"01368","246162":"01368","246163":"01368","246164":"01368","246165":"01368","246166":"01368","246167":"01368","246169":"01368","246171":"01364","246172":"01368","246173":"01368","246174":"01368","246175":"01368","246176":"01368","246177":"01368","246178":"01368","246179":"01368","246193":"01368","246194":"01368","246275":"01368","246276":"01368","246277":"01368","246278":"01368","246279":"01368","246285":"01368","246401":"01372","246419":"01364","246421":"01364","246422":"01372","246424":"01372","246425":"01364","246426":"01372","246427":"01372","246428":"01372","246429":"01364","246431":"01372","246435":"01372","246439":"01364","246440":"01372","246441":"01372","246442":"01364","246443":"01372","246444":"01372","246445":"01364","246446":"01372","246448":"01364","246449":"01372","246453":"01372","246455":"01372","246469":"01364","246471":"01364","246472":"01372","246473":"01372","246474":"01372","246475":"01364","246481":"01372","246482":"01372","246483":"01372","246486":"01372","246487":"01372","246488":"01372","246495":"01364","246701":"01342","246721":"01342","246722":"01342","246723":"01342","246724":"01342","246725":"01342","246726":"01342","246727":"01342","246728":"01342","246729":"01342","246731":"01342","246732":"01342","246733":"01342","246734":"01342","246735":"01342","246736":"01342","246737":"01342","246745":"01342","246746":"01342","246747":"01342","246749":"01342","246761":"01342","246762":"01342","246763":"01342","246764":"01342","247001":"0132","247002":"0132","247120":"0132","247121":"0132","247122":"0132","247129":"0132","247231":"0132","247232":"0132","247340":"0132","247341":"0132","247342":"0132","247343":"0132","247451":"0132","247452":"0132","247453":"0132","247551":"0132","247554":"0132","247656":"01334","247661":"01334","247662":"0132","247663":"01334","247664":"01334","247665":"01334","247666":"01334","247667":"01334","247668":"01334","247669":"0132","247670":"01334","247671":"01334","247771":"01398","247772":"01398","247773":"01398","247774":"01398","247775":"01398","247776":"01398","247777":"01398","247778":"01398","248001":"0135","248002":"0135","248003":"0135","248005":"0135","248006":"0135","248007":"0135","248008":"01376","248009":"0135","248011":"0135","248012":"0135","248013":"0135","248014":"0135","248015":"0135","248016":"0135","248018":"0135","248019":"0135","248121":"0135","248122":"0135","248123":"0135","248124":"0135","248125":"0135","248140":"0135","248142":"0135","248143":"0135","248145":"0135","248146":"0135","248158":"01376","248159":"0135","248165":"0135","248171":"0135","248179":"01376","248195":"0135","248196":"0135","248197":"0135","248198":"0135","248199":"0135","249001":"01376","249121":"01376","249122":"01376","249123":"01376","249124":"01376","249125":"01376","249126":"01376","249127":"01376","249128":"01374","249130":"01376","249131":"01376","249132":"01376","249135":"01374","249136":"01374","249137":"01376","249141":"01374","249145":"01376","249146":"01376","249151":"01374","249152":"01374","249155":"01376","249161":"01376","249165":"01374","249171":"01374","249175":"01376","249180":"01376","249181":"01376","249185":"01374","249186":"01376","249192":"01376","249193":"01374","249194":"01374","249195":"01374","249196":"01374","249199":"01376","249201":"0135","249202":"0135","249203":"0135","249204":"0135","249205":"0135","249301":"01376","249302":"01368","249304":"01368","249306":"01368","249401":"01334","249402":"01334","249403":"01334","249404":"01334","249405":"01334","249407":"01334","249408":"01334","249410":"01334","249411":"01334","250001":"0121","250002":"0121","250003":"0121","250004":"0121","250005":"0121","250101":"01234","250103":"0121","250104":"0121","250106":"0121","250110":"0121","250205":"0121","250221":"0121","250222":"0121","250223":"0121","250341":"0121","250342":"0121","250344":"0121","250345":"01234","250401":"0121","250402":"0121","250404":"0121","250406":"0121","250501":"0121","250502":"0121","250601":"01234","250606":"01234","250609":"01234","250611":"01234","250615":"01234","250617":"01234","250619":"01234","250620":"01234","250621":"01234","250622":"01234","250623":"01234","250625":"01234","250626":"0121","251001":"0131","251002":"0131","251003":"0131","251201":"0131","251202":"0131","251203":"0131","251301":"01398","251305":"01398","251306":"0131","251307":"0131","251308":"0131","251309":"0131","251310":"0131","251311":"0131","251314":"0131","251315":"0131","251316":"0131","251318":"0131","251319":"01398","251320":"0131","251327":"0131","261001":"07834","261121":"07834","261125":"07834","261131":"07834","261135":"07834","261136":"07834","261141":"07834","261145":"07834","261151":"07834","261201":"07834","261202":"07834","261203":"07834","261204":"07834","261205":"07834","261206":"07834","261207":"07834","261208":"07834","261301":"07834","261302":"07834","261303":"07834","261401":"07834","261402":"07834","261403":"07834","261404":"07834","261405":"07834","261501":"05872","261502":"05872","261505":"07834","261506":"05872","262001":"05882","262121":"05882","262122":"05882","262123":"05882","262124":"05882","262201":"05882","262202":"05882","262203":"05882","262302":"05882","262305":"05882","262308":"05944","262309":"05962","262310":"05962","262311":"05944","262401":"05944","262402":"05942","262405":"05944","262406":"0581","262501":"05964","262502":"05964","262520":"05964","262521":"05964","262522":"05964","262523":"05962","262524":"05962","262525":"05962","262526":"05964","262527":"05962","262528":"05962","262529":"05964","262530":"05964","262531":"05964","262532":"05964","262533":"05964","262534":"05964","262540":"05964","262541":"05964","262542":"05964","262543":"05964","262544":"05964","262545":"05964","262546":"05964","262547":"05964","262550":"05964","262551":"05964","262552":"05964","262553":"05964","262554":"05964","262555":"05964","262561":"05962","262572":"05964","262576":"05964","262580":"05962","262701":"05872","262702":"05872","262721":"07834","262722":"07834","262723":"05872","262724":"05872","262725":"05872","262726":"05872","262727":"05872","262728":"07834","262801":"05872","262802":"05872","262803":"05872","262804":"05872","262805":"05872","262901":"05872","262902":"05872","262903":"05872","262904":"05882","262905":"05872","262906":"05872","262907":"05872","262908":"05872","263001":"05942","263126":"05942","263127":"05942","263128":"05942","263132":"05942","263134":"05942","263135":"05942","263136":"05942","263137":"05942","263138":"05942","263139":"05942","263140":"05942","263142":"05942","263145":"05944","263148":"05944","263149":"05944","263150":"05944","263151":"05944","263152":"05944","263153":"05944","263156":"05942","263157":"05942","263158":"05942","263159":"05942","263160":"05944","263601":"05962","263619":"05963","263620":"05963","263621":"05962","263622":"05962","263623":"05962","263624":"05962","263625":"05962","263626":"05962","263628":"05963","263629":"05962","263630":"05963","263631":"05963","263632":"05963","263633":"05963","263634":"05963","263635":"05963","263636":"05962","263637":"05962","263638":"05962","263639":"05963","263640":"05963","263641":"05963","263642":"05963","263643":"05962","263645":"05962","263646":"05962","263651":"05962","263652":"05962","263653":"05962","263655":"05962","263656":"05962","263658":"05962","263659":"05962","263660":"05962","263661":"05962","263663":"05962","263664":"05962","263665":"05962","263667":"05962","263676":"05962","263678":"05962","263679":"05963","263680":"05962","271001":"05262","271002":"05262","271003":"05262","271122":"05262","271123":"05262","271124":"05262","271125":"05262","271126":"05262","271129":"05262","271201":"05252","271202":"05262","271203":"07831","271204":"05262","271205":"07831","271206":"07831","271207":"07831","271208":"07831","271209":"05262","271210":"07831","271215":"07831","271301":"05262","271302":"05262","271303":"05262","271304":"05262","271305":"05262","271306":"07831","271307":"05262","271308":"05262","271309":"05262","271310":"05262","271311":"05262","271312":"05262","271313":"05262","271319":"05262","271401":"05262","271402":"05262","271403":"05262","271502":"05262","271503":"05262","271504":"05262","271601":"05262","271602":"05262","271603":"05262","271604":"07831","271607":"07831","271609":"07831","271801":"05252","271802":"05252","271803":"05252","271804":"05252","271805":"05252","271806":"05252","271821":"05252","271824":"05252","271825":"05252","271830":"05252","271831":"05252","271835":"05252","271840":"05252","271841":"05252","271845":"05252","271851":"05252","271855":"05252","271861":"07831","271865":"05252","271870":"05252","271871":"05252","271872":"05252","271875":"05252","271881":"05252","271882":"05252","271901":"05252","271902":"05252","271903":"05252","271904":"05252","272001":"05542","272002":"05542","272123":"05542","272124":"05542","272125":"05547","272126":"05547","272127":"05542","272128":"05542","272129":"05542","272130":"05542","272131":"05542","272148":"05544","272150":"05542","272151":"05544","272152":"05544","272153":"05544","272154":"05547","272155":"05542","272161":"05542","272162":"05547","272163":"05542","272164":"05547","272165":"05547","272171":"05542","272172":"05547","272173":"05547","272175":"05547","272176":"05547","272177":"05542","272178":"05544","272181":"05542","272182":"05542","272189":"05544","272190":"05542","272191":"05544","272192":"05544","272193":"05544","272194":"05542","272195":"05544","272199":"05547","272201":"05544","272202":"05544","272203":"05544","272204":"05544","272205":"05544","272206":"05544","272207":"05544","272208":"05544","272270":"05547","272271":"05547","272301":"05542","272302":"05542","273001":"0551","273002":"0551","273003":"0551","273004":"0551","273005":"0551","273006":"0551","273007":"0551","273008":"0551","273009":"0551","273010":"0551","273012":"0551","273013":"0551","273014":"0551","273015":"0551","273016":"0551","273017":"0551","273151":"05523","273152":"0551","273155":"05523","273157":"05523","273158":"0551","273161":"05523","273162":"05523","273163":"05523","273164":"05523","273165":"05523","273201":"0551","273202":"0551","273203":"0551","273207":"05523","273209":"0551","273211":"0551","273212":"0551","273213":"0551","273301":"05523","273302":"05523","273303":"05523","273304":"05523","273305":"05523","273306":"05523","273308":"05523","273309":"05523","273310":"05523","273311":"05523","273401":"0551","273402":"0551","273403":"0551","273404":"0551","273405":"0551","273406":"0551","273407":"0551","273408":"0551","273409":"0551","273411":"0551","273412":"0551","273413":"0551","274001":"05568","274149":"05564","274182":"05568","274201":"05568","274202":"05568","274203":"05564","274204":"05568","274205":"05568","274206":"05564","274207":"05564","274208":"05568","274301":"05564","274302":"05564","274303":"05564","274304":"05564","274305":"05564","274306":"05564","274307":"05564","274308":"0532","274309":"05564","274401":"05564","274402":"05564","274403":"05564","274404":"05568","274405":"05568","274406":"05564","274407":"05564","274408":"05568","274409":"05564","274501":"05568","274502":"05568","274505":"05568","274506":"05568","274508":"05568","274509":"05568","274601":"05568","274602":"05568","274603":"05568","274604":"05568","274701":"05568","274702":"05568","274703":"05568","274704":"05568","274705":"05568","274801":"05564","274802":"05564","274806":"05568","274807":"05568","274808":"05568","275101":"0547","275102":"0547","275103":"0547","275105":"0547","275201":"0548","275202":"0548","275203":"0548","275204":"0548","275205":"0548","275301":"0547","275302":"0547","275303":"0547","275304":"0547","275305":"0547","275306":"0547","275307":"0547","276001":"05462","276121":"05462","276122":"05462","276123":"05462","276124":"05462","276125":"05462","276126":"05462","276127":"05462","276128":"05462","276129":"0547","276131":"05462","276135":"05462","276136":"05462","276137":"05462","276138":"05462","276139":"05462","276140":"05462","276141":"05462","276142":"05462","276143":"05462","276201":"05462","276202":"05462","276203":"05462","276204":"05462","276205":"05462","276206":"05462","276207":"05462","276208":"05462","276288":"05462","276301":"05462","276302":"05462","276303":"05462","276304":"05462","276305":"05462","276306":"0547","276402":"0547","276403":"0547","276404":"05462","276405":"0547","276406":"0547","277001":"05498","277121":"05498","277123":"05498","277124":"05498","277201":"05498","277202":"05498","277203":"05498","277204":"05498","277205":"05498","277207":"05498","277208":"05498","277209":"05498","277210":"05498","277211":"05498","277213":"05498","277214":"05498","277216":"05498","277219":"05498","277301":"05498","277302":"05498","277303":"05498","277304":"05498","277401":"05498","277402":"05498","277403":"05498","277501":"05498","277502":"05498","277503":"05498","277504":"05498","277506":"05498","281001":"0565","281003":"0565","281004":"0565","281005":"0565","281006":"0565","281104":"05722","281121":"0565","281122":"0565","281123":"0565","281201":"0565","281202":"0565","281203":"0565","281204":"0565","281205":"0565","281206":"0565","281301":"0565","281302":"05722","281303":"0565","281305":"0565","281306":"05722","281307":"05722","281308":"0565","281401":"0565","281403":"0565","281404":"0565","281405":"0565","281406":"0565","281501":"0565","281502":"0565","281504":"0565","282001":"0562","282002":"0562","282003":"0562","282004":"0562","282005":"0562","282006":"0562","282007":"0562","282008":"0562","282009":"0562","282010":"0562","283101":"0562","283102":"0562","283103":"05612","283104":"0562","283105":"0562","283110":"0562","283111":"0562","283112":"0562","283113":"0562","283114":"0562","283115":"0562","283119":"0562","283121":"0562","283122":"0562","283123":"0562","283124":"0562","283125":"0562","283126":"0562","283130":"05612","283135":"05612","283136":"05612","283141":"05612","283142":"05612","283145":"05612","283151":"05612","283152":"05612","283201":"0562","283202":"0562","283203":"05612","283204":"05612","283205":"05612","283206":"05612","283207":"05612","284001":"0510","284002":"0510","284003":"0510","284120":"0510","284121":"0510","284122":"05176","284123":"05176","284124":"05176","284125":"05176","284126":"05176","284127":"0510","284128":"0510","284135":"0510","284136":"05176","284201":"0510","284202":"0510","284203":"0510","284204":"0510","284205":"0510","284206":"0510","284301":"0510","284302":"0510","284303":"0510","284304":"0510","284305":"0510","284306":"0510","284401":"0510","284402":"05176","284403":"05176","284404":"05176","284405":"05176","284406":"05176","284419":"0510","284501":"05176","285001":"05168","285121":"05168","285122":"05168","285123":"05168","285124":"05168","285125":"05168","285126":"05168","285127":"05168","285128":"05168","285129":"05168","285130":"05168","285201":"05168","285202":"05168","285203":"05168","285204":"05168","285205":"0510","285206":"05168","285223":"05168","301001":"0144","301002":"0144","301018":"0144","301019":"0144","301020":"0144","301021":"0144","301022":"0144","301023":"0144","301024":"0144","301025":"0144","301026":"0144","301027":"0144","301028":"0144","301030":"0144","301035":"0144","301401":"0144","301402":"0144","301403":"0144","301404":"0144","301405":"0144","301406":"0144","301407":"0144","301408":"0144","301409":"0144","301410":"0144","301411":"0144","301412":"0144","301413":"0144","301414":"0144","301415":"0144","301416":"0144","301427":"0144","301604":"0144","301701":"0144","301702":"0144","301703":"0144","301704":"0144","301705":"0144","301706":"0144","301707":"0144","301708":"0144","301709":"0144","301713":"0144","301714":"0144","302001":"0141","302002":"0141","302003":"0141","302004":"0141","302005":"0141","302006":"0141","302012":"0141","302013":"0141","302015":"0141","302016":"0141","302017":"0141","302018":"0141","302019":"0141","302020":"0141","302021":"0141","302022":"0141","302026":"0141","302027":"0141","302028":"0141","302029":"0141","302031":"0141","302033":"0141","302034":"0141","302036":"0141","302037":"0141","302038":"0141","302039":"0141","302040":"0141","302041":"0141","302042":"0141","302043":"0141","302044":"0141","302045":"0141","302046":"0141","303001":"0141","303002":"0141","303003":"0141","303004":"01427","303005":"0141","303006":"0141","303007":"0141","303008":"0141","303009":"0141","303012":"0141","303102":"0141","303103":"0141","303104":"0141","303105":"0141","303106":"0141","303107":"0141","303108":"0141","303109":"0141","303110":"0141","303119":"0141","303120":"0141","303121":"0141","303122":"0141","303123":"0141","303124":"0141","303301":"0141","303302":"01427","303303":"01427","303304":"01427","303305":"0141","303313":"01427","303315":"01427","303323":"01427","303325":"01427","303326":"01427","303327":"01427","303328":"0141","303329":"0141","303338":"0141","303348":"0141","303501":"01427","303502":"01427","303503":"01427","303504":"01427","303505":"01427","303506":"01427","303507":"01427","303508":"01427","303509":"01427","303510":"01427","303511":"01427","303601":"0141","303602":"0141","303603":"0141","303604":"0141","303701":"0141","303702":"0141","303704":"0141","303706":"0141","303712":"0141","303801":"0141","303803":"0141","303804":"0141","303805":"0141","303806":"0141","303807":"0141","303901":"0141","303903":"0141","303904":"0141","303905":"0141","303908":"0141","304001":"01432","304021":"01432","304022":"01432","304023":"01432","304024":"01432","304025":"01432","304026":"01432","304501":"01432","304502":"01432","304503":"01432","304504":"01432","304505":"01432","304507":"01432","304801":"01432","304802":"01432","304803":"01432","304804":"01432","305001":"0145","305002":"0145","305003":"0145","305004":"0145","305005":"0145","305007":"0145","305009":"0145","305012":"0145","305021":"0145","305022":"0145","305023":"0145","305024":"0145","305025":"0145","305026":"01582","305201":"0145","305202":"0145","305203":"0145","305204":"0145","305205":"0145","305206":"0145","305207":"0145","305401":"0145","305402":"0145","305403":"0145","305404":"0145","305405":"0145","305406":"0145","305407":"0145","305408":"0145","305412":"0145","305415":"0145","305601":"0145","305621":"0145","305622":"0145","305623":"0145","305624":"0145","305625":"01482","305627":"0145","305628":"0145","305629":"0145","305630":"0145","305631":"0145","305801":"0145","305802":"0145","305811":"0145","305812":"0145","305813":"0145","305814":"0145","305815":"0145","305816":"0145","305817":"0145","305819":"0145","305901":"02952","305921":"02952","305922":"02952","305923":"0145","305924":"0145","305925":"02952","305926":"0145","305927":"0145","306001":"07816","306021":"07816","306022":"07816","306023":"07816","306101":"07816","306102":"07816","306103":"07816","306104":"07816","306105":"07816","306114":"07816","306115":"07816","306116":"07816","306119":"07816","306126":"07816","306301":"07816","306302":"07816","306303":"07816","306304":"07816","306305":"07816","306306":"07816","306307":"07816","306308":"07816","306401":"07816","306421":"07816","306422":"07816","306501":"07816","306502":"07816","306503":"07816","306504":"07816","306601":"07816","306602":"07816","306603":"07816","306701":"07816","306702":"07816","306703":"07816","306704":"07816","306705":"07816","306706":"07816","306707":"07816","306708":"07816","306709":"07816","306901":"07816","306902":"07816","306912":"07816","307001":"02972","307019":"02972","307022":"02972","307023":"02972","307024":"02972","307025":"0294","307026":"02972","307027":"02972","307028":"02972","307029":"02973","307030":"02973","307031":"02972","307032":"02972","307043":"02972","307501":"02972","307510":"02972","307511":"02972","307512":"02972","307513":"02972","307514":"02972","307515":"02973","307801":"02972","307802":"02972","307803":"02973","311001":"01482","311011":"01482","311021":"01482","311022":"01482","311023":"01482","311024":"01482","311025":"01482","311026":"01482","311030":"01482","311201":"01482","311202":"01482","311203":"01482","311204":"01482","311301":"01482","311302":"02952","311401":"01482","311402":"01482","311403":"01482","311404":"01482","311407":"01482","311408":"01482","311601":"01482","311602":"01482","311603":"01482","311604":"01482","311605":"01482","311606":"01482","311801":"01482","311802":"01482","311803":"01482","311804":"01482","311805":"01482","311806":"01482","312001":"01472","312021":"01472","312022":"01472","312023":"01472","312024":"01472","312025":"01472","312027":"01472","312201":"01472","312202":"01472","312203":"01472","312204":"01472","312205":"01472","312206":"01472","312207":"01472","312401":"01472","312402":"01472","312403":"01472","312404":"01472","312601":"01472","312602":"01472","312603":"01472","312604":"05342","312605":"05342","312606":"01472","312612":"01472","312613":"01472","312614":"01472","312615":"05342","312616":"05342","312617":"01472","312619":"05342","312620":"01472","312622":"01472","312623":"05342","312624":"05342","312625":"05342","312626":"05342","312627":"01472","312901":"01472","313001":"0294","313002":"0294","313003":"0294","313004":"0294","313011":"0294","313022":"0294","313024":"0294","313026":"0294","313027":"0294","313031":"0294","313038":"0294","313201":"0294","313202":"0294","313203":"0294","313204":"0294","313205":"0294","313206":"0294","313207":"02952","313211":"02952","313301":"02952","313321":"02952","313322":"0294","313323":"02952","313324":"02952","313325":"02952","313327":"02952","313328":"02952","313329":"02952","313330":"02952","313331":"02952","313332":"02952","313333":"02952","313334":"02952","313341":"02952","313342":"02952","313601":"0294","313602":"0294","313603":"0294","313604":"0294","313701":"0294","313702":"0294","313703":"0294","313704":"0294","313705":"0294","313706":"0294","313708":"0294","313801":"0294","313802":"0294","313803":"0294","313804":"0294","313805":"0294","313901":"0294","313902":"0294","313903":"0294","313904":"0294","313905":"0294","313906":"0294","314001":"01582","314011":"02964","314021":"02964","314022":"02964","314023":"02964","314024":"02964","314025":"02964","314026":"02964","314027":"02964","314028":"02964","314029":"02964","314030":"02964","314031":"02964","314032":"02964","314034":"02964","314035":"02964","314036":"02964","314037":"02964","314038":"02964","314401":"02964","314402":"02964","314403":"02964","314404":"02964","314406":"02964","314801":"02964","314804":"02964","321001":"07835","321021":"07835","321022":"07835","321023":"07835","321024":"07835","321025":"07835","321026":"07835","321028":"07835","321201":"07835","321202":"07835","321203":"07835","321204":"07835","321205":"07835","321206":"07835","321301":"07835","321302":"07835","321303":"07835","321401":"07835","321402":"07835","321403":"07835","321404":"07835","321405":"07835","321406":"07835","321407":"07835","321408":"07835","321409":"07835","321410":"07835","321411":"07835","321601":"07835","321602":"07835","321605":"0144","321606":"0144","321607":"0144","321608":"01427","321609":"01427","321610":"07464","321611":"07464","321612":"01427","321613":"01427","321614":"07835","321615":"07835","321633":"0144","321642":"07835","322001":"07462","322021":"07462","322023":"07462","322024":"07462","322025":"07462","322026":"07462","322027":"07462","322028":"07462","322029":"07462","322030":"07462","322033":"07462","322034":"07462","322201":"07462","322202":"07462","322203":"07462","322204":"07462","322205":"07462","322211":"07462","322212":"07462","322213":"07464","322214":"07462","322215":"07462","322216":"07464","322218":"07464","322219":"07462","322220":"07464","322230":"07464","322234":"07464","322236":"07464","322238":"07464","322240":"01427","322241":"07464","322242":"07464","322243":"07464","322249":"07464","322251":"07464","322252":"07464","322254":"07464","322255":"07464","322701":"07462","322702":"07462","322703":"07462","322704":"07462","323001":"0747","323021":"0747","323022":"0747","323023":"0747","323024":"0747","323025":"0747","323026":"0747","323301":"0747","323303":"01472","323304":"01472","323305":"01472","323306":"01472","323307":"01472","323601":"0747","323602":"0747","323603":"0747","323613":"0747","323614":"0747","323615":"0747","323616":"0747","323801":"0747","323802":"0747","323803":"0747","324001":"07753","324002":"07753","324003":"07753","324004":"07753","324005":"07753","324006":"07753","324007":"07753","324008":"07753","324009":"07753","324010":"07753","325001":"07753","325003":"07753","325004":"07753","325009":"07753","325201":"07753","325202":"07453","325203":"07753","325204":"07753","325205":"07453","325206":"07453","325207":"07753","325208":"07753","325209":"07453","325214":"07753","325215":"07453","325216":"07453","325217":"07453","325218":"07453","325219":"07453","325220":"07453","325221":"07453","325222":"07453","325223":"07453","325224":"07453","325601":"07753","325602":"07753","326001":"07432","326021":"07432","326022":"07432","326023":"07432","326033":"07432","326034":"07432","326035":"07432","326036":"07432","326037":"07432","326038":"07432","326039":"07432","326501":"07432","326502":"07432","326512":"07432","326513":"07432","326514":"07432","326515":"07432","326516":"07432","326517":"07753","326518":"07753","326519":"07753","326520":"07753","326529":"07753","326530":"07753","327001":"02962","327021":"02962","327022":"02962","327023":"02962","327024":"02962","327025":"02962","327026":"02962","327027":"02962","327031":"02962","327032":"02962","327034":"02962","327601":"02962","327602":"02962","327603":"02962","327604":"02962","327605":"02962","327606":"02962","327801":"02962","328001":"05642","328021":"05642","328022":"05642","328023":"05642","328024":"05642","328025":"05642","328026":"05642","328027":"05642","328028":"05642","328029":"05642","328030":"05642","328031":"05642","328041":"05642","331001":"01562","331021":"01562","331022":"01562","331023":"01562","331024":"01572","331025":"01592","331026":"01592","331027":"01592","331028":"01592","331029":"01562","331030":"01592","331031":"01562","331301":"01562","331302":"01562","331303":"01562","331304":"01562","331305":"01562","331402":"01562","331403":"01562","331411":"01562","331501":"01562","331502":"01562","331503":"01562","331504":"01562","331505":"01562","331506":"01562","331507":"01562","331517":"01562","331518":"01562","331701":"01562","331801":"0151","331802":"01562","331803":"0151","331811":"0151","332001":"01572","332002":"01572","332021":"01572","332023":"01572","332024":"01572","332025":"01572","332026":"01572","332027":"01572","332028":"01572","332029":"01572","332030":"01572","332031":"01572","332041":"01572","332042":"01572","332301":"01572","332302":"01572","332303":"01572","332304":"01572","332305":"01572","332307":"01572","332311":"01572","332312":"01572","332315":"01572","332316":"01572","332317":"01572","332318":"01572","332401":"01572","332402":"01572","332403":"01572","332404":"01572","332405":"01572","332406":"01572","332411":"01572","332601":"01572","332602":"01572","332603":"01572","332701":"01572","332702":"01572","332703":"01572","332705":"01572","332706":"01572","332707":"01572","332708":"01572","332709":"01572","332710":"01572","332711":"01572","332712":"01572","332713":"01572","332714":"01572","332715":"01572","332716":"01592","332718":"01572","332719":"01572","332721":"01572","332722":"01572","332742":"01572","332746":"01592","333001":"01592","333010":"01592","333011":"01592","333012":"01592","333020":"01592","333021":"01592","333022":"01592","333023":"01592","333024":"01592","333025":"01592","333026":"01592","333027":"01592","333028":"01592","333029":"01592","333030":"01592","333031":"01592","333032":"01592","333033":"01592","333034":"01592","333035":"01592","333036":"01592","333041":"01592","333042":"01592","333053":"01592","333055":"01592","333302":"01592","333303":"01592","333304":"01592","333305":"01592","333307":"01592","333308":"01592","333501":"01592","333502":"01592","333503":"01592","333504":"01592","333514":"01592","333515":"01592","333516":"01592","333517":"01592","333701":"01592","333702":"01592","333704":"01592","333705":"01592","333707":"01592","333801":"01592","334001":"0151","334003":"0151","334004":"0151","334006":"0151","334021":"0151","334022":"0151","334023":"0151","334201":"0151","334202":"0151","334302":"0151","334303":"0151","334305":"0151","334401":"0151","334402":"0151","334403":"0151","334601":"0151","334602":"0151","334603":"0151","334604":"0151","334801":"0151","334802":"0151","334803":"0151","334804":"0151","334808":"0151","335001":"0154","335002":"0154","335021":"0154","335022":"0154","335023":"0154","335024":"0154","335025":"0154","335027":"0154","335037":"0154","335038":"0154","335039":"0154","335040":"0154","335041":"0154","335051":"0154","335061":"0154","335062":"01552","335063":"01552","335064":"01552","335065":"01552","335073":"0154","335501":"01552","335502":"01552","335503":"01552","335504":"01552","335511":"01552","335512":"01552","335513":"01552","335522":"01552","335523":"01552","335524":"01552","335525":"01552","335526":"01552","335701":"0154","335702":"0154","335703":"0154","335704":"0154","335705":"0154","335707":"0154","335708":"0154","335711":"0154","335801":"01552","335802":"01552","335803":"01552","335804":"0154","335805":"0154","335901":"0154","341001":"01582","341020":"01582","341021":"01582","341022":"01582","341023":"01582","341024":"01582","341025":"01582","341026":"01582","341027":"01582","341028":"01582","341029":"01582","341030":"01582","341031":"01582","341301":"01582","341302":"01582","341303":"01582","341304":"01582","341305":"01582","341306":"01582","341316":"01582","341317":"01582","341318":"01582","341319":"01582","341501":"01582","341502":"01582","341503":"01582","341504":"01582","341505":"01582","341506":"01582","341507":"01582","341508":"01582","341509":"01582","341510":"01582","341511":"01582","341512":"01582","341513":"01582","341514":"01582","341515":"01582","341516":"01582","341517":"01582","341518":"01582","341519":"01582","341520":"01582","341533":"01582","341542":"01582","341551":"01582","342001":"0291","342002":"0291","342003":"0291","342005":"0291","342006":"0291","342007":"0291","342008":"0291","342011":"0291","342012":"0291","342013":"0291","342014":"0291","342015":"0291","342021":"0291","342022":"0291","342023":"0291","342024":"0291","342025":"0291","342026":"0291","342027":"0291","342028":"0291","342029":"0291","342030":"0291","342037":"0291","342301":"0291","342302":"0291","342303":"0291","342304":"0291","342305":"0291","342306":"0291","342307":"0291","342308":"0291","342309":"0291","342310":"02992","342311":"0291","342312":"0291","342314":"0291","342601":"0291","342602":"0291","342603":"0291","342604":"0291","342605":"0291","342606":"0291","342801":"0291","342802":"0291","342901":"0291","342902":"01582","343001":"02973","343002":"02973","343021":"02973","343022":"02973","343023":"02973","343024":"02973","343025":"02973","343027":"02973","343028":"02973","343029":"02973","343030":"02973","343032":"02973","343039":"02973","343040":"02973","343041":"02973","343042":"02973","343048":"02973","343049":"02973","344001":"02982","344011":"02982","344012":"02982","344021":"02982","344022":"02982","344024":"02982","344025":"02982","344026":"02982","344027":"02982","344031":"02982","344032":"02982","344033":"02982","344034":"02982","344035":"02982","344037":"02982","344043":"02982","344044":"02982","344501":"02982","344502":"02982","344701":"02982","344702":"02982","344703":"02982","344704":"02982","344705":"02982","344706":"02982","344708":"02982","344801":"02982","345001":"02992","345021":"0291","345022":"02992","345023":"02992","345024":"02992","345025":"02992","345026":"02992","345027":"02992","345028":"02992","345031":"02992","345033":"07432","345034":"02992","360001":"0281","360002":"0281","360003":"0281","360004":"0281","360005":"0281","360006":"0281","360007":"0281","360020":"0281","360021":"0281","360022":"0281","360023":"0281","360024":"0281","360025":"0281","360026":"0281","360028":"0281","360030":"0281","360035":"0281","360040":"0281","360045":"0281","360050":"0281","360055":"0281","360060":"0281","360070":"0281","360110":"0281","360311":"0281","360320":"0281","360325":"0281","360330":"0281","360360":"0281","360370":"0281","360375":"0281","360380":"0281","360405":"0281","360410":"0281","360421":"0281","360430":"0281","360440":"0281","360450":"0281","360452":"0281","360460":"0281","360465":"0281","360470":"0281","360480":"0281","360485":"0281","360490":"0281","360510":"02833","360515":"02833","360520":"0288","360530":"0288","360531":"0288","360540":"0288","360545":"0286","360550":"0286","360570":"0286","360575":"0286","360576":"0286","360577":"0286","360578":"0286","360579":"0286","360590":"0286","361001":"0288","361002":"0288","361003":"0288","361004":"0288","361005":"0288","361006":"0288","361007":"0288","361008":"0288","361009":"0288","361010":"0288","361011":"0288","361012":"0288","361013":"0288","361110":"0288","361120":"0288","361130":"0288","361140":"0288","361142":"0288","361150":"0288","361160":"0288","361162":"0288","361170":"0288","361210":"0288","361220":"0288","361230":"0288","361240":"0288","361250":"0288","361280":"0288","361305":"02833","361306":"02833","361310":"02833","361315":"02833","361320":"02833","361325":"02833","361330":"02833","361335":"02833","361345":"02833","361347":"02833","361350":"02833","362001":"0285","362002":"0285","362011":"0285","362015":"0285","362020":"0285","362030":"0285","362037":"0285","362110":"0285","362120":"0285","362130":"0285","362135":"0285","362140":"02876","362150":"0285","362205":"0285","362215":"0285","362220":"0285","362222":"0285","362225":"0285","362226":"0285","362227":"0285","362230":"0286","362240":"0285","362245":"0285","362250":"0285","362255":"0285","362260":"0285","362263":"0285","362265":"02876","362268":"02876","362275":"02876","362310":"0285","362315":"0285","362510":"02876","362520":"02875","362530":"02876","362540":"02875","362550":"02876","362560":"02876","362565":"02876","362570":"02875","362610":"0285","362620":"0286","362625":"0285","362630":"0285","362640":"0285","362650":"0286","362710":"02876","362715":"02876","362720":"02876","363001":"02752","363002":"02752","363020":"02752","363030":"02752","363035":"02752","363040":"02752","363110":"02752","363115":"02752","363310":"02752","363320":"02752","363330":"02752","363351":"02822","363410":"02752","363421":"02752","363423":"02752","363427":"02752","363430":"02752","363435":"02752","363440":"02752","363510":"02752","363520":"02752","363530":"02752","363621":"02822","363623":"02822","363630":"02822","363641":"02822","363642":"02822","363643":"02822","363650":"0281","363655":"02822","363660":"02822","363670":"02822","363745":"02752","363750":"02752","363755":"02752","363760":"02752","363765":"02752","363775":"02752","363780":"02752","364001":"0278","364002":"0278","364003":"0278","364004":"0278","364005":"0278","364006":"0278","364050":"0278","364060":"0278","364070":"0278","364081":"0278","364110":"0278","364120":"02849","364130":"0278","364135":"0278","364140":"0278","364145":"0278","364150":"0278","364210":"0278","364230":"0278","364240":"0278","364250":"0278","364260":"0278","364265":"0278","364270":"0278","364275":"0278","364280":"0278","364290":"0278","364295":"0278","364310":"0278","364313":"0278","364320":"02849","364330":"0278","364505":"0278","364510":"0278","364515":"02792","364521":"02792","364522":"02792","364525":"0278","364530":"0278","364710":"02849","364720":"02849","364730":"02849","364740":"02849","364750":"02849","364760":"02849","364765":"02849","365220":"02792","365410":"02792","365421":"02792","365430":"02792","365435":"02792","365440":"0285","365450":"02792","365455":"02792","365456":"02792","365460":"02792","365480":"0281","365535":"02792","365540":"02792","365541":"02792","365550":"02792","365555":"02792","365560":"02792","365601":"02792","365610":"02792","365620":"02792","365630":"02792","365635":"02792","365640":"02792","365645":"02792","365650":"02792","365730":"02792","370001":"02832","370015":"02832","370020":"02832","370030":"02832","370040":"02832","370105":"02832","370110":"02832","370115":"02832","370130":"02832","370135":"02832","370140":"02832","370145":"02832","370150":"02832","370155":"02832","370160":"02832","370165":"02832","370201":"02832","370203":"02832","370205":"02832","370210":"02832","370230":"02832","370240":"02832","370405":"02832","370410":"02832","370415":"02832","370421":"02832","370425":"02832","370427":"02832","370430":"02832","370435":"02832","370445":"02832","370450":"02832","370455":"02832","370460":"02832","370465":"02832","370475":"02832","370485":"02832","370490":"02832","370510":"02832","370601":"02832","370605":"02832","370610":"02832","370615":"02832","370620":"02832","370625":"02832","370627":"02832","370630":"02832","370641":"02832","370645":"02832","370650":"02832","370655":"02832","370660":"02832","370665":"02832","370670":"02832","370675":"02832","380001":"079","380002":"079","380003":"079","380004":"079","380005":"079","380006":"079","380007":"079","380008":"079","380009":"079","380013":"079","380014":"079","380015":"079","380016":"079","380018":"079","380019":"079","380021":"079","380022":"079","380023":"079","380024":"079","380026":"079","380027":"079","380028":"079","380049":"079","380050":"079","380051":"079","380052":"079","380054":"079","380055":"079","380058":"079","380059":"079","380060":"079","380061":"079","380063":"079","382006":"079","382007":"079","382010":"079","382016":"079","382021":"079","382024":"079","382028":"079","382030":"079","382041":"079","382042":"079","382045":"079","382110":"079","382115":"02762","382120":"02762","382122":"079","382130":"02752","382140":"079","382145":"079","382150":"079","382170":"02762","382210":"079","382213":"079","382220":"079","382225":"079","382230":"079","382240":"079","382245":"02849","382250":"02849","382255":"02849","382260":"079","382265":"079","382305":"079","382308":"079","382315":"079","382320":"079","382321":"079","382330":"079","382340":"079","382345":"079","382350":"079","382355":"079","382405":"079","382415":"079","382418":"079","382421":"079","382422":"079","382423":"079","382424":"079","382425":"079","382426":"079","382427":"079","382428":"079","382430":"079","382433":"079","382435":"079","382443":"079","382445":"079","382449":"079","382450":"02849","382455":"079","382460":"079","382463":"079","382465":"079","382470":"079","382475":"079","382480":"079","382481":"079","382610":"079","382620":"079","382630":"079","382640":"079","382650":"079","382721":"079","382722":"079","382725":"079","382729":"079","382735":"079","382740":"079","382810":"079","382835":"079","382845":"079","382855":"079","383001":"02772","383002":"02778","383006":"02772","383010":"02772","383030":"02778","383110":"02772","383120":"02772","383205":"02772","383210":"02772","383215":"02772","383220":"02772","383225":"02772","383230":"02772","383235":"02772","383240":"02772","383245":"02774","383246":"02772","383250":"02774","383251":"02774","383255":"02772","383260":"02774","383270":"02772","383275":"02772","383276":"02772","383305":"02772","383307":"02772","383310":"02774","383315":"02774","383316":"02774","383317":"02774","383320":"02774","383325":"02774","383330":"02774","383335":"02774","383340":"02774","383345":"02774","383350":"02774","383355":"02774","383410":"02772","383421":"02772","383422":"02778","383430":"02772","383434":"02772","383440":"02772","383450":"02772","383460":"02772","383462":"02772","384001":"02762","384002":"02762","384003":"02762","384005":"02762","384012":"02762","384110":"07621","384120":"02762","384130":"02762","384135":"02762","384140":"02762","384151":"07621","384160":"02762","384170":"02762","384220":"07621","384221":"07621","384225":"07621","384229":"07621","384230":"07621","384240":"07621","384241":"07621","384245":"07621","384246":"07621","384255":"07621","384260":"07621","384265":"07621","384272":"07621","384275":"07621","384285":"07621","384290":"07621","384305":"02762","384310":"02762","384315":"02762","384320":"02762","384325":"02762","384330":"02762","384335":"02762","384340":"02762","384345":"02762","384355":"02762","384360":"02762","384410":"02762","384412":"02762","384415":"02762","384421":"02762","384430":"02762","384435":"02762","384440":"02762","384441":"02762","384445":"02762","384450":"02762","384455":"02762","384460":"02762","384465":"02762","384470":"02762","384515":"02762","384520":"02762","384530":"02762","384540":"02762","384550":"02762","384560":"02762","384565":"02762","384570":"02762","385001":"02742","385010":"02742","385110":"02742","385120":"02742","385130":"02742","385135":"02742","385210":"02742","385310":"02742","385320":"02742","385330":"02742","385340":"07621","385350":"07621","385360":"07621","385410":"02742","385421":"02742","385505":"02742","385506":"02742","385510":"02742","385515":"02742","385520":"02742","385530":"02742","385535":"02742","385540":"02742","385545":"02742","385550":"02742","385555":"02742","385560":"02742","385565":"02742","385566":"02742","385570":"02742","385575":"02742","387001":"02694","387002":"02694","387003":"02694","387110":"02694","387115":"02694","387120":"02694","387130":"02694","387210":"02694","387220":"02692","387230":"02694","387240":"02692","387305":"02772","387310":"02692","387315":"02694","387320":"02694","387325":"02694","387330":"02694","387335":"02694","387340":"02694","387345":"02694","387350":"02694","387355":"02694","387360":"02694","387365":"02694","387370":"02694","387375":"02694","387380":"02694","387411":"02694","387430":"02694","387510":"02694","387520":"02694","387530":"02694","387540":"02694","387550":"02694","387560":"02694","387570":"02694","387610":"02694","387620":"02694","387630":"02694","387635":"02694","387640":"02694","387650":"02694","387710":"02694","388001":"02692","388110":"02692","388120":"02692","388121":"02692","388130":"02692","388140":"02692","388150":"02692","388160":"02692","388170":"02692","388180":"02694","388205":"02692","388210":"02692","388215":"02694","388220":"02694","388225":"02694","388230":"02694","388235":"02672","388239":"02694","388245":"02694","388250":"02694","388255":"02672","388260":"02672","388265":"02672","388270":"02672","388305":"02692","388306":"02692","388307":"02692","388310":"02692","388315":"02692","388320":"02692","388325":"02692","388330":"02692","388335":"02692","388340":"02692","388345":"02692","388350":"02692","388355":"02692","388360":"02692","388365":"02692","388370":"02692","388410":"02692","388421":"02692","388430":"02692","388440":"02694","388450":"02692","388460":"02692","388465":"02692","388470":"02692","388480":"02692","388510":"02692","388520":"02692","388530":"02692","388540":"02692","388543":"02692","388545":"02692","388550":"02692","388560":"02692","388570":"02692","388580":"02692","388590":"02692","388610":"02692","388620":"02692","388625":"02692","388630":"02692","388640":"02692","388710":"02672","388713":"02672","389001":"02672","389002":"02672","389110":"02672","389115":"02672","389120":"02672","389130":"02673","389140":"02673","389146":"02673","389151":"02673","389152":"02673","389154":"02673","389155":"02673","389160":"02673","389170":"02673","389172":"02672","389175":"02673","389180":"02673","389190":"02672","389210":"02672","389220":"02672","389230":"02672","389232":"02672","389235":"02672","389250":"02672","389260":"02672","389265":"02672","389310":"02672","389320":"02672","389330":"02672","389340":"02672","389341":"02672","389350":"02672","389360":"02672","389365":"02672","389370":"02672","389380":"02672","389382":"02673","389390":"02672","390001":"0265","390002":"0265","390003":"0265","390004":"0265","390006":"0265","390007":"0265","390009":"0265","390010":"0265","390011":"0265","390012":"0265","390013":"0265","390014":"0265","390016":"0265","390017":"0265","390018":"0265","390019":"0265","390020":"0265","390021":"0265","390022":"0265","390023":"0265","390024":"0265","390025":"0265","391101":"0265","391105":"0265","391107":"0265","391110":"0265","391115":"0265","391120":"02649","391125":"02669","391130":"02669","391135":"02669","391140":"02669","391145":"02669","391150":"02669","391152":"02669","391156":"02669","391160":"02669","391165":"02669","391168":"02669","391170":"02669","391210":"0265","391220":"0265","391240":"0265","391243":"0265","391244":"0265","391250":"0265","391310":"0265","391320":"0265","391330":"0265","391340":"0265","391345":"0265","391350":"0265","391410":"0265","391421":"0265","391430":"0265","391440":"0265","391445":"0265","391450":"0265","391510":"0265","391520":"0265","391530":"0265","391740":"0265","391745":"0265","391750":"0265","391760":"0265","391761":"0265","391770":"0265","391774":"0265","391775":"0265","391776":"0265","391780":"0265","391810":"02642","392001":"02642","392011":"02642","392012":"02642","392015":"02642","392020":"02642","392025":"02642","392030":"02642","392035":"02642","392040":"02642","392110":"02642","392130":"02642","392135":"02642","392140":"02642","392150":"02642","392155":"02642","392160":"02642","392165":"02642","392170":"02642","392180":"02642","392210":"02642","392215":"02642","392220":"0265","392230":"02642","392240":"02642","392310":"0265","393001":"02642","393002":"02642","393010":"02642","393017":"02642","393020":"02642","393025":"02649","393030":"02642","393040":"02649","393041":"02649","393050":"02649","393105":"0265","393110":"02642","393115":"02642","393120":"02649","393125":"02642","393130":"02649","393135":"02642","393140":"02649","393145":"02649","393150":"02649","393151":"02649","394101":"0261","394105":"0261","394107":"0261","394110":"0261","394111":"0261","394112":"0261","394115":"02642","394120":"0261","394125":"0261","394130":"0261","394140":"0261","394150":"0261","394155":"0261","394160":"0261","394163":"0261","394170":"0261","394180":"0261","394185":"0261","394190":"0261","394210":"0261","394221":"0261","394230":"0261","394235":"0261","394240":"0261","394245":"0261","394246":"02628","394248":"0261","394250":"02628","394270":"0261","394305":"0261","394310":"0261","394315":"0261","394317":"0261","394320":"0261","394325":"0261","394326":"0261","394327":"0261","394330":"0261","394335":"0261","394340":"02628","394345":"0261","394350":"0261","394352":"0261","394355":"0261","394360":"02628","394365":"02628","394370":"02628","394375":"02628","394380":"02628","394405":"0261","394410":"0261","394421":"0261","394430":"0261","394440":"0261","394445":"0261","394510":"0261","394515":"0261","394516":"0261","394517":"0261","394518":"0261","394520":"0261","394530":"0261","394540":"0261","394541":"0261","394550":"0261","394601":"0261","394620":"02628","394630":"02628","394633":"02628","394635":"02628","394640":"02628","394641":"02628","394650":"02628","394651":"02628","394652":"02628","394655":"02628","394660":"02628","394670":"02628","394680":"02628","394690":"02628","394710":"02631","394715":"02631","394716":"02628","394720":"02631","394730":"02631","394810":"02642","395001":"0261","395002":"0261","395003":"0261","395004":"0261","395005":"0261","395006":"0261","395007":"0261","395008":"0261","395009":"0261","395010":"0261","395011":"0261","395012":"0261","395013":"0261","395017":"0261","395023":"0261","396001":"02632","396002":"02632","396007":"02632","396020":"02632","396030":"02632","396035":"02632","396040":"02637","396045":"02632","396050":"02632","396051":"02632","396055":"02632","396060":"02637","396065":"02632","396067":"02632","396105":"02632","396110":"02637","396115":"02632","396120":"02632","396125":"02632","396126":"02632","396130":"02632","396135":"02632","396140":"02632","396145":"02632","396150":"02632","396155":"02632","396165":"02632","396170":"02632","396171":"02632","396180":"02632","396185":"02632","396191":"02632","396193":"02632","396195":"02632","396210":"0260","396215":"02632","396220":"0260","396230":"02632","396235":"02632","396240":"02632","396310":"02637","396321":"02637","396325":"02637","396350":"02637","396360":"02637","396370":"02637","396375":"02632","396380":"02637","396385":"02632","396403":"02637","396406":"02637","396409":"02637","396412":"02637","396415":"02637","396418":"02637","396421":"02637","396424":"02637","396427":"02637","396430":"02637","396433":"02637","396436":"02637","396439":"02637","396440":"02637","396445":"02637","396450":"02637","396460":"02637","396463":"02637","396466":"02637","396469":"02637","396472":"02637","396475":"02637","396510":"0261","396521":"02637","396530":"02637","396540":"02637","396560":"02637","396570":"02637","396580":"02637","396590":"02637","400001":"022","400002":"022","400003":"022","400004":"022","400005":"022","400006":"022","400007":"022","400008":"022","400009":"022","400010":"022","400011":"022","400012":"022","400013":"022","400014":"022","400015":"022","400016":"022","400017":"022","400018":"022","400019":"022","400020":"022","400021":"022","400022":"022","400024":"022","400025":"022","400026":"022","400027":"022","400028":"022","400029":"022","400030":"022","400031":"022","400032":"022","400033":"022","400034":"022","400035":"022","400037":"022","400042":"022","400043":"022","400049":"022","400050":"022","400051":"022","400052":"022","400053":"022","400054":"022","400055":"022","400056":"022","400057":"022","400058":"022","400059":"022","400060":"022","400061":"022","400063":"022","400064":"022","400065":"022","400066":"022","400067":"022","400068":"022","400069":"022","400070":"022","400071":"022","400072":"022","400074":"022","400075":"022","400076":"022","400077":"022","400078":"022","400079":"022","400080":"022","400081":"022","400082":"022","400083":"022","400084":"022","400085":"022","400086":"022","400087":"022","400088":"022","400089":"022","400091":"022","400092":"022","400093":"022","400094":"022","400095":"022","400096":"022","400097":"022","400098":"022","400099":"022","400101":"022","400102":"022","400103":"022","400104":"022","400601":"022","400602":"022","400603":"022","400604":"022","400605":"022","400606":"022","400607":"022","400608":"022","400610":"022","400612":"022","400614":"022","400615":"022","400701":"022","400702":"02194","400703":"022","400704":"02194","400705":"022","400706":"022","400707":"02194","400708":"022","400709":"022","400710":"022","401101":"022","401102":"02525","401103":"02525","401105":"02525","401106":"022","401107":"022","401201":"02525","401202":"02525","401203":"02525","401204":"022","401206":"022","401207":"02525","401208":"02525","401209":"02525","401301":"02525","401302":"02525","401303":"02525","401304":"02525","401305":"02525","401401":"02525","401402":"02525","401403":"02525","401404":"02525","401405":"02525","401501":"02525","401502":"02525","401503":"02525","401504":"02525","401506":"02525","401601":"02525","401602":"02525","401603":"02525","401604":"02525","401605":"02525","401606":"02525","401607":"02525","401608":"02525","401701":"02525","401702":"02525","401703":"02525","402101":"02194","402102":"02194","402103":"02194","402104":"02194","402105":"02194","402106":"02194","402107":"02194","402108":"02194","402109":"02194","402110":"02194","402111":"02194","402112":"02194","402113":"02194","402114":"02194","402115":"02194","402116":"02194","402117":"02194","402120":"02194","402122":"02194","402125":"02194","402126":"02194","402201":"02194","402202":"02194","402203":"02194","402204":"02194","402207":"02194","402208":"02194","402209":"02194","402301":"02194","402302":"02194","402303":"02194","402304":"02194","402305":"02194","402306":"02194","402307":"02194","402308":"02194","402309":"02194","402401":"02194","402402":"02194","402403":"02194","402404":"02194","403001":"0832","403002":"0832","403004":"0832","403005":"0832","403006":"0832","403101":"0832","403102":"0832","403103":"0832","403104":"0832","403105":"0832","403106":"0832","403107":"0832","403108":"0832","403109":"0832","403110":"0832","403114":"0832","403115":"0832","403201":"0832","403202":"0832","403203":"0832","403204":"0832","403206":"0832","403401":"0832","403402":"0832","403403":"0832","403404":"0832","403406":"0832","403409":"0832","403410":"0832","403501":"0832","403502":"0832","403503":"0832","403504":"0832","403505":"0832","403506":"0832","403507":"0832","403508":"0832","403509":"0832","403510":"0832","403511":"0832","403512":"0832","403513":"0832","403515":"0832","403516":"0832","403517":"0832","403521":"0832","403523":"0832","403524":"0832","403526":"0832","403527":"0832","403529":"0832","403530":"0832","403601":"0832","403602":"0832","403701":"0832","403702":"0832","403703":"0832","403704":"0832","403705":"0832","403706":"0832","403707":"0832","403708":"0832","403709":"0832","403710":"0832","403711":"0832","403712":"0832","403713":"0832","403714":"0832","403715":"0832","403716":"0832","403717":"0832","403718":"0832","403719":"0832","403720":"0832","403721":"0832","403722":"0832","403723":"0832","403724":"0832","403725":"0832","403726":"0832","403728":"0832","403729":"0832","403731":"0832","403801":"0832","403802":"0832","403803":"0832","403804":"0832","403806":"0832","410101":"02194","410102":"02194","410201":"02194","410202":"02194","410203":"02194","410204":"02194","410205":"02194","410206":"02194","410207":"02194","410208":"02194","410209":"02194","410210":"02194","410216":"02194","410218":"02194","410220":"02194","410221":"02194","410222":"02194","410301":"020","410302":"020","410401":"020","410402":"020","410403":"020","410405":"020","410406":"020","410501":"020","410502":"020","410503":"020","410504":"020","410505":"020","410506":"020","410507":"020","410508":"020","410509":"020","410510":"020","410511":"020","410512":"020","410513":"020","410515":"020","410516":"020","411001":"020","411002":"020","411003":"020","411004":"020","411005":"020","411006":"020","411007":"020","411008":"020","411009":"020","411011":"020","411012":"020","411013":"020","411014":"020","411015":"020","411016":"020","411017":"020","411018":"020","411019":"020","411020":"020","411021":"020","411022":"020","411023":"020","411024":"020","411025":"020","411026":"020","411027":"020","411028":"020","411030":"020","411031":"020","411032":"020","411033":"020","411034":"020","411035":"020","411036":"020","411037":"020","411038":"020","411039":"020","411040":"020","411041":"020","411042":"020","411043":"020","411044":"020","411045":"020","411046":"020","411047":"020","411048":"020","411051":"020","411052":"020","411057":"020","411058":"020","411060":"020","411061":"020","411062":"020","411067":"020","411068":"020","411069":"020","412101":"020","412102":"020","412103":"020","412104":"020","412105":"020","412106":"020","412107":"020","412108":"020","412109":"020","412110":"020","412112":"020","412115":"020","412201":"020","412202":"020","412203":"020","412204":"020","412205":"020","412206":"02162","412207":"020","412208":"020","412209":"020","412210":"020","412211":"020","412212":"020","412213":"020","412214":"020","412215":"020","412216":"020","412218":"020","412219":"020","412220":"020","412301":"020","412303":"020","412304":"020","412305":"020","412306":"020","412307":"020","412308":"020","412311":"020","412312":"020","412401":"020","412402":"020","412403":"020","412404":"020","412405":"020","412406":"020","412408":"020","412409":"020","412410":"020","412411":"020","412412":"020","412801":"02162","412802":"02162","412803":"02162","412804":"02162","412805":"02162","412806":"02162","413001":"0217","413002":"0217","413003":"0217","413004":"0217","413005":"0217","413006":"0217","413007":"0217","413008":"0217","413101":"0217","413102":"020","413103":"020","413104":"020","413105":"020","413106":"020","413107":"0217","413108":"0217","413109":"0217","413110":"020","413111":"0217","413112":"0217","413113":"0217","413114":"020","413115":"020","413116":"020","413118":"0217","413120":"020","413130":"020","413132":"020","413133":"020","413201":"0241","413202":"0217","413203":"0217","413204":"0241","413205":"0241","413206":"0217","413207":"02442","413208":"0217","413209":"0217","413210":"0217","413211":"0217","413212":"0217","413213":"0217","413214":"0217","413215":"0217","413216":"0217","413217":"0217","413218":"0217","413219":"0217","413220":"0217","413221":"0217","413222":"0217","413223":"0217","413224":"0217","413226":"0217","413227":"0217","413228":"0217","413229":"02442","413248":"0217","413249":"02442","413250":"0217","413251":"0217","413252":"0217","413253":"0217","413255":"0217","413301":"0217","413302":"0217","413303":"0217","413304":"0217","413305":"0217","413306":"0217","413307":"0217","413308":"0217","413309":"0217","413310":"0217","413314":"0217","413315":"0217","413317":"0217","413319":"0217","413322":"0217","413324":"0217","413401":"0217","413402":"0217","413403":"0217","413404":"0217","413405":"02472","413406":"0217","413409":"0217","413410":"0217","413411":"0217","413412":"0217","413501":"02472","413502":"02472","413503":"02472","413504":"02472","413505":"02472","413506":"02472","413507":"02472","413508":"02472","413509":"02472","413510":"02472","413511":"02382","413512":"02382","413513":"02382","413514":"02382","413515":"02382","413516":"02382","413517":"02382","413518":"02382","413519":"02382","413520":"02382","413521":"02382","413522":"02382","413523":"02382","413524":"02382","413525":"02472","413526":"02472","413527":"02382","413528":"02472","413529":"02382","413530":"02382","413531":"02382","413532":"02382","413534":"02472","413544":"02382","413581":"02382","413582":"02472","413601":"02472","413602":"02472","413603":"02472","413604":"02472","413605":"02472","413606":"02472","413607":"02382","413608":"02472","413623":"02472","413624":"02472","413701":"0241","413702":"0241","413703":"0241","413704":"0241","413705":"0241","413706":"0241","413707":"0241","413708":"0241","413709":"0241","413710":"0241","413711":"0241","413712":"0241","413713":"0241","413714":"0241","413715":"0241","413716":"0241","413717":"0241","413718":"0241","413719":"0241","413720":"0241","413721":"0241","413722":"0241","413723":"0241","413725":"0241","413726":"0241","413728":"0241","413736":"0241","413737":"0241","413738":"0241","413739":"0241","413801":"020","413802":"020","414001":"0241","414002":"0241","414003":"0241","414005":"0241","414006":"0241","414101":"0241","414102":"0241","414103":"0241","414105":"0241","414106":"0241","414110":"0241","414111":"0241","414113":"0241","414201":"0241","414202":"02442","414203":"02442","414204":"02442","414205":"02442","414208":"02442","414301":"0241","414302":"0241","414303":"0241","414304":"0241","414305":"0241","414306":"0241","414401":"0241","414402":"0241","414403":"0241","414501":"0241","414502":"0241","414503":"0241","414504":"0241","414505":"0241","414601":"0241","414602":"0241","414603":"0241","414604":"0241","414605":"0241","414606":"0241","414607":"0241","414609":"0241","414701":"0241","415001":"02162","415002":"02162","415003":"02162","415004":"02162","415010":"02162","415011":"02162","415012":"02162","415013":"02162","415014":"02162","415015":"02162","415019":"02162","415020":"02162","415021":"02162","415022":"02162","415023":"02162","415101":"0231","415102":"02162","415103":"02162","415104":"02162","415105":"02162","415106":"02162","415107":"02162","415108":"02162","415109":"02162","415110":"02162","415111":"02162","415112":"02162","415114":"02162","415115":"02162","415116":"02162","415122":"02162","415124":"02162","415202":"02352","415203":"02352","415205":"02162","415206":"02162","415207":"02162","415208":"02352","415209":"02162","415211":"02162","415212":"02162","415213":"02194","415214":"02352","415301":"0233","415302":"0233","415303":"0233","415304":"0233","415305":"0233","415306":"0233","415307":"0233","415308":"0233","415309":"0233","415310":"0233","415311":"0233","415312":"02162","415313":"0233","415315":"0233","415401":"0233","415402":"0233","415403":"0233","415404":"0233","415405":"0233","415406":"0233","415407":"0233","415408":"0233","415409":"0233","415410":"0233","415411":"0233","415412":"0233","415413":"0233","415414":"0233","415415":"0233","415501":"02162","415502":"02162","415503":"02162","415504":"02162","415505":"02162","415506":"02162","415507":"02162","415508":"02162","415509":"02162","415510":"02162","415511":"02162","415512":"02162","415513":"02162","415514":"02162","415515":"02162","415516":"02162","415517":"02162","415518":"02162","415519":"02162","415520":"02162","415521":"02162","415522":"02162","415523":"02162","415524":"02162","415525":"02162","415526":"02162","415527":"02162","415528":"02162","415530":"02162","415536":"02162","415537":"02162","415538":"02162","415539":"02162","415540":"02162","415601":"02352","415602":"02352","415603":"02352","415604":"02352","415605":"02352","415606":"02352","415607":"02352","415608":"02352","415609":"02352","415610":"02352","415611":"02352","415612":"02352","415613":"02352","415614":"02352","415615":"02352","415616":"02352","415617":"02352","415619":"02352","415620":"02352","415621":"02352","415626":"02352","415628":"02352","415629":"02352","415634":"02352","415637":"02352","415639":"02352","415640":"02352","415641":"02352","415643":"02352","415701":"02352","415702":"02352","415703":"02352","415705":"02352","415706":"02352","415708":"02352","415709":"02352","415710":"02352","415711":"02352","415712":"02352","415713":"02352","415714":"02352","415715":"02352","415716":"02352","415717":"02352","415718":"02352","415719":"02352","415720":"02352","415722":"02352","415724":"02352","415726":"02352","415727":"02352","415728":"02352","415729":"02352","415730":"02352","415801":"02352","415802":"02352","415803":"02352","415804":"02352","415805":"02352","415806":"02352","415807":"02352","416001":"0231","416002":"0231","416003":"0231","416004":"0231","416005":"0231","416006":"0231","416007":"0231","416008":"0231","416010":"0231","416011":"0231","416012":"0231","416013":"0231","416101":"0231","416102":"0231","416103":"0231","416104":"0231","416105":"0231","416106":"0231","416107":"0231","416108":"0231","416109":"0231","416110":"0231","416111":"0231","416112":"0231","416113":"0231","416114":"0231","416115":"0231","416116":"0231","416118":"0231","416119":"0231","416120":"0231","416121":"0231","416122":"0231","416138":"0231","416143":"0231","416144":"0231","416146":"0231","416201":"0231","416202":"0231","416203":"0231","416204":"0231","416205":"0231","416206":"0231","416207":"0231","416208":"0231","416209":"0231","416210":"0231","416211":"0231","416212":"0231","416213":"0231","416214":"0231","416215":"0231","416216":"0231","416218":"0231","416219":"0231","416220":"0231","416221":"0231","416223":"0231","416229":"0231","416230":"0231","416231":"0231","416232":"0231","416234":"0231","416235":"0231","416236":"0231","416301":"0233","416302":"0233","416303":"0233","416304":"0233","416305":"0233","416306":"0233","416307":"0233","416308":"0233","416309":"0233","416310":"0233","416311":"0233","416312":"0233","416313":"0233","416314":"0233","416315":"0233","416316":"0233","416401":"0233","416402":"0233","416403":"0233","416404":"0233","416405":"0233","416406":"0233","416407":"0233","416408":"0233","416409":"0233","416410":"0233","416411":"0233","416412":"0233","416413":"0233","416414":"0233","416415":"0233","416416":"0233","416417":"0233","416418":"0233","416419":"0233","416420":"0233","416436":"0233","416437":"0233","416501":"0231","416502":"0231","416503":"0231","416504":"0231","416505":"0231","416506":"0231","416507":"0231","416508":"0231","416509":"0231","416510":"02362","416511":"02362","416512":"02362","416513":"02362","416514":"02362","416515":"02362","416516":"02362","416517":"02362","416518":"02362","416519":"02362","416520":"02362","416521":"02362","416522":"02362","416523":"02362","416524":"02362","416525":"02362","416526":"0231","416527":"0231","416528":"02362","416529":"02362","416531":"02362","416534":"02362","416549":"02362","416550":"02362","416551":"0231","416552":"0231","416601":"02362","416602":"02362","416603":"02362","416604":"02362","416605":"02362","416606":"02362","416608":"02362","416609":"02362","416610":"02362","416611":"02362","416612":"02362","416613":"02362","416614":"02362","416615":"02362","416616":"02362","416620":"02362","416623":"02362","416626":"02362","416628":"02362","416630":"02362","416632":"02362","416701":"02352","416702":"02352","416703":"02362","416704":"02352","416705":"02352","416707":"02352","416709":"02352","416712":"02352","416713":"02352","416801":"02362","416803":"02362","416804":"02362","416805":"02362","416806":"02362","416807":"02362","416810":"02362","416811":"02362","416812":"02362","416813":"02362","421002":"022","421004":"022","421005":"022","421101":"022","421102":"022","421103":"022","421201":"022","421202":"022","421203":"022","421204":"022","421301":"022","421302":"022","421303":"02525","421305":"022","421306":"022","421308":"022","421311":"022","421312":"02525","421401":"022","421402":"022","421403":"022","421501":"022","421502":"022","421503":"022","421505":"022","421506":"022","421601":"022","421602":"022","421603":"022","421605":"022","422001":"0253","422002":"0253","422003":"0253","422004":"0253","422005":"0253","422006":"0253","422007":"0253","422008":"0253","422009":"0253","422010":"0253","422011":"0253","422012":"0253","422013":"0253","422101":"0253","422102":"0253","422103":"0253","422104":"0253","422105":"0253","422112":"0253","422113":"0253","422201":"0253","422202":"0253","422203":"0253","422204":"0253","422205":"0253","422206":"0253","422207":"0253","422208":"0253","422209":"0253","422210":"0253","422211":"0253","422212":"0253","422213":"0253","422214":"0253","422215":"0253","422221":"0253","422222":"0253","422301":"0253","422302":"0253","422303":"0253","422304":"0253","422305":"0253","422306":"0253","422308":"0253","422401":"0253","422402":"0253","422403":"0253","422501":"0253","422502":"0253","422601":"0241","422602":"0241","422603":"0241","422604":"0241","422605":"0241","422606":"0253","422608":"0241","422610":"0241","422611":"0241","422620":"0241","422622":"0241","423101":"0253","423102":"0253","423104":"0253","423105":"0253","423106":"0253","423107":"0241","423108":"0253","423109":"0241","423110":"0253","423111":"0253","423117":"0253","423201":"0253","423202":"0253","423203":"0253","423204":"0253","423205":"0253","423206":"0253","423208":"0253","423212":"0253","423213":"0253","423301":"0253","423302":"0253","423303":"0253","423401":"0253","423402":"0253","423403":"0253","423501":"0253","423502":"0253","423601":"0241","423602":"0241","423603":"0241","423604":"0241","423605":"0241","423607":"0241","423701":"0240","423702":"0240","423703":"0240","424001":"02562","424002":"02562","424004":"02562","424005":"02562","424006":"02562","424101":"0257","424102":"0257","424103":"0257","424104":"0257","424105":"0257","424106":"0257","424107":"0257","424108":"0257","424109":"0253","424119":"0257","424201":"0257","424202":"0257","424203":"0257","424204":"0257","424205":"0257","424206":"0257","424207":"0257","424208":"0257","424301":"02562","424302":"02562","424303":"02562","424304":"02562","424305":"02562","424306":"02562","424307":"02562","424308":"02562","424309":"02562","424310":"02562","424311":"02562","424318":"02562","425001":"0257","425002":"0257","425003":"0257","425004":"0257","425101":"0257","425102":"0257","425103":"0257","425104":"0257","425105":"0257","425107":"0257","425108":"0257","425109":"0257","425110":"0257","425111":"0257","425112":"0257","425113":"0257","425114":"0257","425115":"0257","425116":"0257","425201":"0257","425203":"0257","425301":"0257","425302":"0257","425303":"0257","425304":"0257","425305":"0257","425306":"0257","425307":"0257","425308":"0257","425309":"0257","425310":"0257","425311":"0257","425327":"0257","425401":"0257","425402":"0257","425403":"02562","425404":"02562","425405":"02562","425406":"02562","425407":"02562","425408":"02564","425409":"02564","425410":"02564","425411":"02564","425412":"02564","425413":"02564","425414":"02564","425415":"02564","425416":"02564","425417":"02564","425418":"02564","425419":"02564","425420":"0257","425421":"02562","425422":"02564","425423":"02564","425424":"02564","425426":"02564","425427":"02562","425428":"02562","425432":"02564","425442":"02564","425444":"02564","425452":"02564","425501":"0257","425502":"0257","425503":"0257","425504":"0257","425505":"0257","425506":"0257","425507":"0257","425508":"0257","425524":"0257","431001":"0240","431002":"0240","431003":"0240","431004":"0240","431005":"0240","431006":"0240","431007":"0240","431008":"0240","431009":"0240","431010":"0240","431011":"0240","431101":"0240","431102":"0240","431103":"0240","431104":"0240","431105":"0240","431107":"0240","431109":"0240","431110":"0240","431111":"0240","431112":"02482","431113":"0240","431114":"02482","431115":"0240","431116":"0240","431117":"0240","431118":"0240","431120":"0240","431121":"02482","431122":"02442","431123":"02442","431124":"02442","431125":"02442","431126":"02442","431127":"02442","431128":"02442","431129":"02442","431130":"02442","431131":"02442","431132":"02482","431133":"0240","431134":"02482","431135":"02482","431136":"0240","431137":"02482","431142":"02442","431143":"02442","431144":"02442","431147":"0240","431148":"0240","431150":"0240","431151":"0240","431152":"0240","431153":"02442","431154":"02482","431202":"02482","431203":"02482","431204":"02482","431205":"02482","431206":"02482","431207":"02482","431208":"02482","431209":"02482","431211":"02482","431212":"02482","431213":"02482","431214":"02482","431215":"02482","431401":"02452","431402":"02452","431501":"02482","431502":"02482","431503":"02452","431504":"02482","431505":"02452","431506":"02452","431507":"02482","431508":"02452","431509":"02452","431510":"02452","431511":"02452","431512":"02456","431513":"02456","431514":"02452","431515":"02442","431516":"02452","431517":"02442","431518":"02442","431519":"02442","431520":"02442","431521":"02452","431522":"02382","431523":"02442","431530":"02442","431536":"02452","431537":"02452","431540":"02452","431541":"02452","431542":"02456","431601":"02462","431602":"02462","431603":"02462","431604":"02462","431605":"02462","431606":"02462","431701":"02456","431702":"02456","431703":"02456","431704":"02462","431705":"02456","431707":"02462","431708":"02462","431709":"02462","431710":"02462","431711":"02462","431712":"02462","431713":"02462","431714":"02462","431715":"02462","431716":"02462","431717":"02462","431718":"02462","431719":"02462","431720":"02452","431721":"02462","431722":"02462","431723":"02462","431731":"02462","431736":"02462","431741":"02462","431742":"02462","431743":"02462","431745":"02462","431746":"02462","431750":"02462","431801":"02462","431802":"02462","431803":"02462","431804":"02462","431805":"02462","431806":"02462","431807":"02462","431808":"02462","431809":"02462","431810":"02462","431811":"02462","440001":"0712","440002":"0712","440003":"0712","440005":"0712","440006":"0712","440007":"0712","440008":"0712","440010":"0712","440012":"0712","440013":"0712","440014":"0712","440015":"0712","440016":"0712","440017":"0712","440018":"0712","440019":"0712","440020":"0712","440021":"0712","440022":"0712","440023":"0712","440024":"0712","440025":"0712","440026":"0712","440027":"0712","440030":"0712","440032":"0712","440033":"0712","440034":"0712","440035":"0712","440036":"0712","440037":"0712","441001":"0712","441101":"0712","441102":"0712","441103":"0712","441104":"0712","441105":"0712","441106":"0712","441107":"0712","441108":"0712","441109":"0712","441110":"0712","441111":"0712","441112":"0712","441113":"0712","441122":"0712","441123":"0712","441201":"0712","441202":"0712","441203":"0712","441204":"0712","441205":"07172","441206":"07172","441207":"07132","441208":"07132","441209":"07132","441210":"0712","441212":"07172","441214":"0712","441215":"07172","441217":"07132","441221":"07172","441222":"07172","441223":"07172","441224":"07172","441225":"07172","441226":"07172","441301":"0712","441302":"0712","441303":"0712","441304":"0712","441305":"0712","441306":"0712","441401":"0712","441404":"0712","441501":"0712","441502":"0712","441601":"07182","441614":"07182","441701":"07182","441702":"07182","441801":"07182","441802":"07184","441803":"07184","441804":"07184","441805":"07184","441806":"07182","441807":"07182","441809":"07184","441901":"07182","441902":"07182","441903":"07184","441904":"07184","441905":"07184","441906":"07184","441907":"07184","441908":"07184","441909":"07184","441910":"07184","441911":"07182","441912":"07184","441913":"07184","441914":"07184","441915":"07184","441916":"07182","441924":"07184","442001":"07152","442003":"07152","442101":"07152","442102":"07152","442104":"07152","442105":"07152","442106":"07152","442107":"07152","442111":"07152","442201":"07152","442202":"07152","442203":"07152","442301":"07152","442302":"07152","442303":"07152","442304":"07152","442305":"07152","442306":"07152","442307":"07152","442401":"07172","442402":"07172","442403":"07172","442404":"07172","442406":"07172","442501":"07172","442502":"07172","442503":"07172","442504":"07132","442505":"07172","442507":"07172","442603":"07132","442604":"07132","442605":"07132","442606":"07132","442701":"07172","442702":"07172","442703":"07132","442704":"07132","442705":"07132","442707":"07132","442709":"07132","442710":"07132","442901":"07172","442902":"07172","442903":"07172","442904":"07172","442905":"07172","442906":"07172","442907":"07172","442908":"07172","442914":"07172","442916":"07172","442917":"07172","442918":"07132","442919":"07132","443001":"07262","443002":"07262","443101":"07262","443102":"07262","443103":"07262","443104":"07262","443106":"07262","443112":"07262","443201":"07262","443202":"07262","443203":"07262","443204":"07262","443206":"07262","443301":"07262","443302":"07262","443303":"07262","443304":"07262","443308":"07262","443401":"07262","443402":"07262","443403":"07262","443404":"07262","444001":"0724","444002":"0724","444003":"0724","444004":"0724","444005":"0724","444006":"0724","444007":"0724","444101":"0724","444102":"0724","444103":"0724","444104":"0724","444105":"07252","444106":"0724","444107":"0724","444108":"0724","444109":"0724","444110":"07252","444111":"0724","444117":"0724","444126":"0724","444201":"07262","444202":"07262","444203":"07262","444204":"07262","444301":"07262","444302":"0724","444303":"07262","444304":"07262","444306":"07262","444311":"0724","444312":"07262","444401":"0724","444402":"07252","444403":"07252","444404":"07252","444405":"0724","444407":"0724","444409":"07252","444501":"0724","444502":"0724","444503":"07252","444504":"07252","444505":"07252","444506":"07252","444507":"07252","444510":"07252","444511":"0724","444601":"0721","444602":"0721","444603":"0721","444604":"0721","444605":"0721","444606":"0721","444607":"0721","444701":"0721","444702":"0721","444704":"0721","444705":"0721","444706":"0721","444707":"0721","444708":"0721","444709":"0721","444710":"0721","444711":"0721","444717":"0721","444719":"0721","444720":"0721","444723":"0721","444801":"0721","444802":"0721","444803":"0721","444804":"0721","444805":"0721","444806":"0721","444807":"0721","444808":"0721","444809":"0721","444810":"0721","444813":"0721","444901":"0721","444902":"0721","444903":"0721","444904":"0721","444905":"0721","444906":"0721","444907":"0721","444908":"0721","444915":"0721","445001":"07232","445002":"07232","445101":"07232","445102":"07232","445103":"07232","445105":"07232","445106":"07232","445109":"07232","445110":"07232","445201":"07232","445202":"07232","445203":"07232","445204":"07232","445205":"07232","445206":"07232","445207":"07232","445209":"07232","445210":"07232","445211":"07232","445215":"07232","445216":"07232","445230":"07232","445301":"07232","445302":"07232","445303":"07232","445304":"07232","445305":"07232","445306":"07232","445307":"07232","445308":"07232","445323":"07232","445324":"07232","445401":"07232","445402":"07232","450221":"07325","450331":"07325","450332":"07325","450445":"07325","450551":"07282","451001":"07282","451111":"07282","451113":"07282","451115":"07282","451220":"07282","451221":"07282","451224":"07282","451225":"07282","451228":"07282","451331":"07282","451332":"07282","451335":"07282","451440":"07282","451441":"07282","451442":"07282","451447":"07290","451449":"07282","451551":"07290","451556":"07290","451660":"07282","451666":"07290","451770":"07290","451881":"07290","452001":"0731","452002":"0731","452003":"0731","452005":"0731","452006":"0731","452007":"0731","452009":"0731","452010":"0731","452011":"0731","452012":"0731","452013":"0731","452014":"0731","452015":"0731","452016":"0731","452018":"0731","452020":"0731","453001":"0731","453111":"0731","453112":"0731","453115":"0731","453220":"0731","453331":"0731","453441":"0731","453446":"0731","453551":"0731","453552":"0731","453555":"0731","453556":"0731","453661":"0731","453771":"0731","454001":"07292","454010":"07292","454111":"07292","454116":"07292","454221":"07292","454331":"07292","454335":"07292","454441":"07292","454446":"07292","454449":"07292","454552":"07292","454660":"07292","454665":"07292","454773":"07292","454774":"07292","454775":"07292","455001":"07272","455111":"07272","455115":"07272","455116":"07272","455118":"07272","455221":"07272","455223":"07272","455227":"07272","455332":"07272","455336":"07272","455339":"07272","455440":"07272","455459":"07272","456001":"0734","456003":"0734","456006":"0734","456010":"0734","456221":"0734","456222":"0734","456224":"0734","456313":"0734","456331":"0734","456335":"0734","456337":"0734","456440":"0734","456441":"0734","456443":"0734","456550":"0734","456661":"0734","456664":"0734","456665":"0734","456668":"0734","456770":"0734","456771":"0734","456776":"0734","457001":"07412","457114":"07412","457118":"07412","457119":"07412","457222":"07412","457226":"07412","457331":"07412","457333":"07412","457336":"07412","457339":"07412","457340":"07412","457441":"07412","457550":"07412","457555":"07412","457661":"07392","457770":"07392","457772":"07392","457773":"07392","457775":"07392","457777":"07392","457779":"07392","457882":"07394","457885":"07394","457887":"07394","457888":"07394","457990":"07394","457993":"07392","458001":"07422","458002":"07422","458110":"07423","458113":"07423","458116":"07423","458118":"07423","458220":"07423","458226":"07423","458228":"07423","458330":"07423","458336":"07423","458339":"07423","458389":"07422","458441":"07423","458468":"07423","458470":"07423","458553":"07423","458556":"07422","458558":"07422","458664":"07422","458667":"07422","458669":"07422","458771":"07422","458775":"07422","458778":"07422","458880":"07422","458883":"07422","458888":"07422","458895":"07422","458990":"07422","460001":"07141","460004":"07141","460110":"07141","460220":"07141","460225":"07141","460330":"07141","460440":"07141","460443":"07141","460447":"07141","460449":"07141","460551":"07141","460553":"07141","460554":"07141","460557":"07141","460661":"07141","460663":"07162","460665":"07141","460666":"07141","460668":"07141","461001":"07792","461005":"07574","461110":"07574","461111":"07574","461114":"07574","461115":"07574","461116":"07574","461122":"07574","461221":"07574","461223":"07574","461228":"07574","461331":"07577","461335":"07577","461441":"07577","461446":"07574","461551":"07574","461661":"07574","461668":"07574","461771":"07574","461775":"07574","461881":"07574","461990":"07574","462001":"0755","462002":"0755","462003":"0755","462004":"0755","462008":"0755","462010":"0755","462011":"0755","462016":"0755","462020":"0755","462022":"0755","462023":"0755","462024":"0755","462026":"0755","462027":"0755","462030":"0755","462031":"0755","462033":"0755","462036":"0755","462037":"0755","462038":"0755","462039":"0755","462040":"0755","462041":"0755","462042":"0755","462043":"0755","462044":"0755","462045":"0755","462046":"07482","462047":"0755","462066":"0755","462100":"0755","462101":"0755","462120":"0755","463106":"0755","463111":"0755","464001":"07592","464111":"07592","464113":"07592","464114":"07592","464220":"07592","464221":"07592","464224":"07592","464226":"07592","464228":"07592","464240":"07592","464258":"07592","464331":"07592","464334":"07592","464337":"07592","464551":"07482","464570":"07482","464573":"07482","464651":"07482","464661":"07482","464665":"07482","464668":"07482","464671":"07482","464672":"07482","464770":"07482","464774":"07482","464776":"07482","464881":"07482","464884":"07482","464886":"07482","464986":"07482","464990":"07482","464993":"07482","465001":"07364","465106":"07364","465110":"07364","465113":"07364","465116":"07364","465118":"07364","465220":"07364","465223":"07364","465226":"07364","465227":"07364","465230":"07362","465333":"07364","465335":"07364","465337":"07364","465339":"07364","465441":"07362","465445":"07362","465447":"07362","465449":"07362","465550":"07362","465661":"07372","465667":"07372","465669":"07372","465674":"07372","465677":"07372","465679":"07372","465680":"07372","465683":"07372","465685":"07372","465687":"07372","465689":"07372","465691":"07372","465693":"07372","465697":"07372","466001":"07562","466111":"07562","466113":"07562","466114":"07562","466115":"07562","466116":"07562","466118":"07562","466120":"07562","466125":"07562","466221":"07562","466331":"07562","466445":"07562","466446":"07562","466448":"07562","466554":"07562","466651":"07562","466661":"07562","466665":"07562","470001":"07582","470002":"07582","470003":"07582","470004":"07582","470021":"07582","470051":"07582","470113":"07582","470115":"07582","470117":"07582","470118":"07582","470119":"07582","470120":"07582","470124":"07582","470125":"07582","470221":"07582","470223":"07582","470226":"07582","470227":"07582","470228":"07582","470229":"07582","470232":"07582","470235":"07582","470335":"07582","470337":"07582","470339":"07582","470340":"07582","470441":"07582","470442":"07582","470661":"07812","470663":"07812","470664":"07812","470666":"07812","470669":"07582","470672":"07812","470673":"07812","470675":"07812","470771":"07812","470772":"07812","470775":"07812","470880":"07812","470881":"07812","471001":"07682","471101":"07682","471105":"07682","471111":"07682","471201":"07682","471301":"07682","471311":"07682","471313":"07682","471315":"07682","471318":"07682","471405":"07682","471408":"07682","471411":"07682","471501":"07682","471510":"07682","471515":"07682","471516":"07682","471525":"07682","471606":"07682","471625":"07682","472001":"07683","472005":"07683","472010":"07683","472101":"07683","472111":"07683","472115":"07683","472118":"07683","472221":"07683","472246":"07680","472331":"07683","472336":"07680","472337":"07680","472339":"07683","472442":"07680","472445":"07680","472447":"07683","473001":"07542","473101":"07542","473105":"07542","473110":"07542","473111":"07542","473112":"07542","473113":"07542","473115":"07542","473118":"07542","473222":"07542","473226":"07542","473249":"07542","473287":"07542","473330":"07543","473331":"07543","473332":"07543","473335":"07543","473440":"07543","473443":"07543","473444":"07543","473445":"07543","473446":"07543","473551":"07492","473585":"07492","473638":"07492","473660":"07492","473662":"07492","473665":"07492","473670":"07492","473770":"07492","473774":"07492","473775":"07492","473781":"07492","473793":"07492","473865":"07492","473880":"07492","473885":"07492","473990":"07492","473995":"07492","474001":"0751","474002":"0751","474003":"0751","474004":"0751","474005":"0751","474006":"0751","474007":"0751","474008":"0751","474009":"0751","474010":"0751","474011":"0751","474012":"0751","474015":"0751","474020":"0751","475001":"0751","475002":"0751","475005":"0751","475110":"0751","475115":"0751","475220":"0751","475330":"0751","475335":"07522","475336":"07522","475661":"07522","475671":"07522","475673":"07522","475675":"07522","475682":"07522","475685":"07522","475686":"07522","476001":"07532","476111":"07532","476115":"07532","476134":"07532","476219":"07532","476221":"07532","476224":"07532","476228":"07532","476229":"07532","476332":"07530","476335":"07530","476337":"07530","476339":"07530","476355":"07530","476444":"07532","476554":"07532","477001":"07534","477105":"07534","477111":"07534","477116":"07534","477117":"07534","477222":"07534","477227":"07534","477331":"07534","477332":"07534","477333":"07534","477335":"07534","477441":"07534","477445":"07534","477446":"07534","477447":"07534","477449":"07534","477450":"07534","477555":"07534","477557":"07534","477566":"07534","477660":"07534","480001":"07162","480003":"07162","480105":"07162","480106":"07162","480107":"07162","480108":"07162","480109":"07162","480110":"07162","480111":"07162","480112":"07162","480115":"07162","480221":"07162","480223":"07162","480224":"07162","480331":"07162","480334":"07162","480337":"07162","480338":"07162","480441":"07162","480447":"07162","480449":"07162","480551":"07162","480555":"07162","480557":"07162","480559":"07162","480661":"07692","480667":"07692","480771":"07692","480880":"07692","480881":"07692","480882":"07692","480884":"07692","480886":"07692","480887":"07692","480888":"07692","480990":"07692","480991":"07692","480994":"07692","480996":"07692","480997":"07692","480999":"07692","481001":"07632","481051":"07632","481102":"07632","481105":"07632","481111":"07632","481115":"07632","481116":"07632","481117":"07632","481222":"07632","481224":"07632","481226":"07632","481331":"07632","481332":"07632","481335":"07632","481337":"07632","481441":"07632","481445":"07632","481449":"07632","481551":"07632","481556":"07632","481661":"07642","481662":"07642","481663":"07642","481664":"07642","481665":"07642","481666":"07642","481668":"07642","481672":"07642","481768":"07642","481771":"07642","481776":"07642","481778":"07644","481879":"07644","481880":"07644","481882":"07644","481883":"07644","481884":"07644","481885":"07642","481990":"07644","481995":"07642","481996":"07642","481998":"07642","482001":"0761","482002":"0761","482003":"0761","482004":"0761","482005":"0761","482008":"0761","482009":"0761","482010":"0761","482011":"0761","482020":"0761","482021":"0761","482051":"0761","482056":"0761","483001":"0761","483053":"0761","483105":"0761","483110":"0761","483113":"0761","483119":"0761","483220":"0761","483222":"0761","483225":"07622","483330":"07622","483331":"07622","483332":"07622","483334":"07622","483336":"0761","483440":"07622","483442":"07622","483501":"07622","483504":"07622","483770":"07622","483773":"07622","483775":"07622","483880":"07622","483990":"07622","484001":"07625","484110":"07652","484113":"07629","484114":"07652","484116":"07652","484117":"07652","484120":"07629","484220":"07629","484224":"07652","484330":"07629","484334":"07629","484336":"07629","484440":"07629","484444":"07629","484446":"07629","484447":"07629","484551":"07625","484555":"07625","484660":"07625","484661":"07625","484664":"07625","484665":"07625","484669":"07652","484770":"07652","484771":"07652","484774":"07652","484776":"07652","484881":"07629","484886":"07629","484887":"07629","485001":"07672","485005":"07672","485111":"07672","485112":"07672","485113":"07672","485114":"07672","485115":"07672","485221":"07672","485226":"07672","485331":"07672","485334":"07672","485441":"07672","485446":"07672","485447":"07672","485551":"07672","485661":"07672","485666":"07672","485771":"07672","485772":"07672","485773":"07672","485774":"07672","485775":"07672","485778":"07672","485881":"07672","486001":"07662","486002":"07662","486003":"07662","486004":"07662","486005":"07662","486006":"07662","486111":"07662","486114":"07662","486115":"07662","486117":"07662","486123":"07662","486220":"07662","486223":"07662","486226":"07662","486331":"07662","486333":"07662","486335":"07662","486338":"07662","486340":"07662","486341":"07662","486440":"07662","486441":"07662","486445":"07672","486446":"07662","486447":"07662","486448":"07662","486450":"07662","486550":"07672","486553":"07662","486556":"07662","486661":"07822","486666":"07822","486669":"07805","486670":"07822","486675":"07822","486771":"07822","486775":"07822","486776":"07822","486881":"07805","486882":"07805","486884":"07805","486885":"07805","486886":"07805","486887":"07805","486888":"07805","486889":"07805","486890":"07805","486892":"07805","487001":"07792","487110":"07792","487114":"07792","487118":"07792","487221":"07792","487225":"07792","487330":"07792","487334":"07792","487337":"07792","487441":"07792","487551":"07792","487555":"07792","487661":"07792","487770":"07792","487881":"07792","488001":"07732","488050":"07732","488059":"07732","488220":"07732","488222":"07732","488333":"07732","488441":"07732","488442":"07732","488443":"07732","488446":"07732","488448":"07732","490001":"0788","490006":"0788","490009":"0788","490011":"0788","490020":"0788","490021":"0788","490022":"0788","490023":"0788","490024":"0788","490025":"0788","490026":"0788","490036":"0788","490042":"0788","491001":"0788","491107":"0788","491111":"0788","491221":"0788","491222":"0788","491223":"0788","491225":"0788","491226":"07749","491227":"07749","491228":"07749","491229":"07744","491230":"07749","491331":"0788","491332":"0788","491335":"07824","491336":"07817","491337":"07824","491338":"07824","491340":"07824","491441":"07744","491444":"07744","491445":"07744","491557":"07744","491558":"07744","491559":"07817","491661":"07744","491665":"07744","491666":"07744","491668":"07744","491771":"07749","491881":"07744","491885":"07744","491888":"07744","491993":"07824","491995":"07817","491996":"07817","492001":"0771","492002":"0771","492003":"0771","492004":"0771","492005":"0771","492008":"0771","492009":"0771","492010":"0771","492012":"0771","492013":"0771","492014":"0771","492015":"0771","492016":"0771","492017":"0771","492018":"0771","492099":"0771","492101":"0771","492109":"07707","492112":"07723","493101":"07826","493111":"0771","493113":"07826","493114":"0771","493116":"0771","493118":"07826","493195":"0771","493196":"07826","493221":"0771","493222":"07826","493225":"0771","493228":"07826","493229":"07826","493331":"07826","493332":"07826","493335":"07826","493338":"07826","493344":"07826","493441":"0771","493445":"07723","493448":"07723","493449":"07723","493526":"07826","493551":"07723","493554":"07723","493555":"07723","493558":"07723","493559":"07826","493661":"0771","493662":"07722","493663":"07722","493770":"07722","493773":"07722","493776":"07722","493778":"07722","493881":"0771","493885":"0771","493887":"07707","493888":"07707","493889":"07707","493890":"07707","493891":"07707","493992":"07707","493996":"07707","494001":"07782","494010":"07782","494111":"07864","494114":"07864","494115":"07864","494122":"07864","494221":"07782","494222":"07782","494223":"07782","494224":"07782","494226":"07786","494228":"07786","494229":"07786","494230":"07786","494237":"07781","494331":"07786","494332":"07868","494333":"07868","494334":"07868","494335":"07868","494336":"07868","494337":"07868","494347":"07786","494441":"07856","494442":"07782","494444":"07853","494446":"07853","494447":"07853","494448":"07853","494449":"07856","494450":"07853","494552":"07856","494553":"07856","494556":"07856","494635":"07868","494661":"07781","494665":"07868","494669":"07868","494670":"07868","494771":"07868","494776":"07868","494777":"07868","495001":"07752","495003":"07752","495004":"07752","495006":"07752","495009":"07752","495112":"07752","495113":"07755","495115":"07755","495116":"07752","495117":"08476","495118":"08476","495119":"07759","495220":"07752","495222":"07752","495224":"07755","495330":"07755","495334":"07755","495335":"07755","495442":"07759","495444":"07759","495445":"07759","495446":"07759","495447":"07759","495448":"07759","495449":"07759","495450":"07759","495452":"07759","495454":"07759","495455":"07759","495550":"07752","495551":"07752","495552":"07817","495553":"07817","495554":"07817","495555":"07752","495556":"07817","495557":"07817","495559":"07817","495660":"07817","495661":"07817","495663":"07817","495668":"07817","495669":"07817","495671":"07759","495674":"07759","495677":"07759","495682":"07759","495683":"07759","495684":"07759","495686":"07817","495687":"07817","495688":"07817","495689":"07817","495690":"07817","495691":"07817","495692":"07817","495695":"07817","496001":"07762","496005":"07762","496100":"07762","496107":"07762","496108":"07762","496109":"07762","496111":"07762","496113":"07762","496115":"07762","496116":"07762","496118":"07762","496220":"07762","496223":"07774","496224":"07763","496225":"07763","496227":"07763","496242":"07763","496245":"07763","496330":"07763","496331":"07763","496334":"07763","496336":"07763","496338":"07763","496440":"07762","496445":"07762","496450":"07762","496551":"07762","496554":"07762","496661":"07762","496665":"07762","497001":"07774","497101":"07774","497111":"07774","497114":"07774","497116":"07774","497117":"07774","497118":"07831","497119":"07831","497220":"07831","497223":"07775","497224":"07831","497225":"07775","497226":"07775","497229":"07775","497231":"07775","497235":"07775","497331":"07836","497333":"07775","497335":"07836","497339":"07836","497442":"07836","497446":"07836","497447":"07836","497448":"07836","497449":"07836","497450":"07836","497451":"07836","497553":"07836","497555":"07836","497557":"07836","497559":"07836","497773":"07836","497778":"07836","500001":"040","500002":"040","500003":"040","500004":"040","500005":"08418","500006":"040","500007":"040","500008":"040","500009":"040","500010":"040","500011":"040","500012":"040","500013":"040","500014":"040","500015":"040","500016":"040","500017":"040","500018":"040","500019":"08414","500020":"040","500022":"040","500023":"040","500024":"040","500025":"040","500026":"040","500027":"040","500028":"040","500029":"040","500030":"08418","500031":"040","500032":"08414","500033":"040","500034":"040","500035":"08414","500036":"040","500037":"040","500038":"040","500039":"040","500040":"040","500041":"040","500042":"040","500043":"040","500044":"040","500045":"040","500046":"08414","500047":"040","500048":"08414","500049":"040","500050":"08414","500051":"040","500052":"08418","500053":"040","500054":"040","500055":"08418","500056":"040","500057":"040","500058":"040","500059":"040","500060":"08414","500061":"040","500062":"040","500063":"040","500064":"040","500065":"040","500066":"040","500067":"040","500068":"040","500069":"08414","500070":"08414","500072":"040","500073":"040","500074":"08414","500075":"08418","500076":"040","500077":"08414","500078":"040","500079":"08418","500080":"040","500081":"040","500082":"040","500083":"040","500084":"040","500085":"040","500086":"08414","500087":"08418","500088":"08418","500089":"08418","500090":"08418","500091":"08414","500092":"040","500093":"040","500094":"040","500095":"040","500096":"040","500097":"08414","500098":"040","500100":"040","500101":"08418","500102":"08414","500103":"040","500104":"08414","500107":"040","500108":"08414","500109":"040","500110":"040","500111":"08414","500112":"040","500113":"08418","500114":"040","500115":"08414","501101":"08416","501102":"08416","501106":"08416","501111":"08416","501121":"08416","501141":"08416","501142":"08416","501143":"08416","501144":"08416","501158":"08416","501202":"08416","501203":"08416","501218":"08418","501301":"08418","501359":"08418","501401":"08418","501501":"08416","501502":"08416","501503":"08418","501504":"08418","501505":"08418","501506":"08418","501508":"08418","501509":"08418","501510":"08418","501511":"08414","501512":"08418","502001":"08455","502032":"08455","502101":"08452","502102":"08457","502103":"08457","502107":"08457","502108":"08457","502109":"08452","502110":"08452","502113":"08452","502114":"08457","502115":"08452","502117":"08452","502125":"08452","502130":"08452","502205":"08455","502210":"08455","502220":"08455","502221":"08455","502228":"08455","502246":"08455","502247":"08457","502248":"08452","502249":"08455","502251":"08455","502255":"08452","502256":"08455","502257":"08455","502267":"08457","502269":"08455","502270":"08455","502271":"08452","502273":"08455","502276":"08457","502277":"08457","502278":"08457","502279":"08457","502280":"08457","502281":"08457","502284":"08455","502285":"08455","502286":"08455","502287":"08455","502290":"08455","502291":"08455","502293":"08455","502294":"08455","502295":"08455","502296":"08455","502300":"08455","502301":"08457","502302":"08452","502303":"08452","502305":"08455","502306":"08455","502307":"08455","502310":"08457","502311":"08457","502312":"08457","502313":"08455","502314":"08455","502316":"08452","502318":"08455","502319":"08455","502321":"08455","502324":"08455","502325":"08455","502329":"08455","502331":"08452","502334":"08457","502335":"08452","502336":"08457","502345":"08416","502371":"08455","502372":"08457","502375":"08457","502381":"08452","503001":"08462","503002":"08462","503003":"08462","503101":"08468","503102":"08468","503108":"08468","503110":"08468","503111":"08468","503112":"08468","503114":"08468","503120":"08468","503122":"08468","503123":"08468","503124":"08468","503125":"08468","503144":"08468","503145":"08922","503164":"08462","503165":"08462","503174":"08462","503175":"08462","503180":"08462","503185":"08462","503186":"08462","503187":"08468","503188":"08922","503201":"08462","503202":"08462","503206":"08462","503207":"08462","503212":"08462","503213":"08462","503217":"08462","503218":"08462","503219":"08462","503223":"08462","503224":"08462","503225":"08922","503230":"08922","503235":"08922","503245":"08462","503246":"08462","503301":"08468","503302":"08468","503305":"08468","503306":"08468","503307":"08462","503308":"08462","503309":"08468","503310":"08468","503311":"08462","503321":"08922","503322":"08462","504001":"08732","504002":"08732","504101":"08734","504102":"08734","504103":"08734","504104":"08734","504105":"08734","504106":"08734","504107":"08734","504109":"08734","504110":"08734","504201":"08736","504202":"08734","504203":"08734","504204":"08736","504205":"08734","504206":"08736","504207":"08736","504208":"08736","504209":"08736","504214":"08736","504215":"08736","504216":"08736","504218":"08736","504219":"08736","504220":"08736","504231":"08736","504251":"08736","504272":"08736","504273":"08736","504292":"08733","504293":"08733","504294":"08738","504295":"08733","504296":"08733","504297":"08733","504299":"08733","504301":"08736","504302":"08736","504303":"08736","504304":"08732","504306":"08734","504307":"08732","504308":"08732","504309":"08732","504310":"08734","504311":"08732","504312":"08732","504313":"08733","504323":"08732","504346":"08592","505001":"0878","505002":"0878","505101":"0870","505102":"0870","505122":"0878","505129":"0878","505152":"08728","505153":"08728","505162":"08728","505172":"08728","505174":"08728","505184":"08728","505185":"08728","505186":"08728","505187":"08922","505188":"08728","505208":"08728","505209":"08728","505210":"08728","505211":"08728","505212":"08728","505214":"08728","505215":"08728","505301":"08723","505302":"08723","505303":"08723","505304":"08723","505305":"08723","505306":"08724","505307":"08723","505325":"08462","505326":"08724","505327":"08724","505330":"08724","505331":"08724","505401":"0878","505402":"08723","505403":"08723","505404":"08723","505405":"08723","505415":"08728","505416":"08728","505425":"08724","505445":"0878","505450":"08724","505451":"0878","505452":"08724","505453":"08724","505454":"08724","505455":"08724","505460":"08724","505462":"08724","505466":"08457","505467":"08457","505468":"0878","505469":"0878","505470":"0878","505471":"0870","505472":"08457","505473":"08457","505474":"0878","505475":"0878","505476":"0870","505480":"0870","505481":"08457","505490":"0878","505497":"0870","505498":"0878","505501":"08724","505502":"0878","505503":"08922","505504":"0870","505505":"0878","505514":"08728","505524":"08723","505525":"08922","505526":"08724","505527":"0878","505528":"08457","505529":"08724","505530":"08457","505531":"0878","505532":"08724","506001":"0870","506002":"0870","506003":"0870","506004":"0870","506005":"0870","506006":"0870","506007":"0870","506008":"0870","506009":"0870","506011":"0870","506013":"0870","506015":"0870","506101":"08719","506102":"08719","506103":"08719","506104":"08719","506105":"08719","506112":"08719","506122":"0870","506132":"0870","506134":"08719","506135":"08719","506142":"0870","506143":"08716","506144":"08716","506145":"08716","506146":"08716","506151":"0870","506163":"08719","506164":"0870","506165":"08715","506166":"0870","506167":"08716","506168":"0870","506169":"0870","506170":"0870","506172":"08715","506175":"08716","506201":"08716","506221":"08716","506222":"08716","506223":"08457","506224":"08457","506244":"08716","506252":"08716","506301":"08716","506302":"08716","506303":"08716","506310":"0870","506313":"0870","506314":"0870","506315":"08719","506316":"08716","506317":"08719","506318":"08719","506319":"0870","506324":"08719","506329":"0870","506330":"0870","506331":"0870","506332":"0870","506333":"0870","506342":"0870","506343":"08715","506344":"08715","506345":"0870","506347":"08715","506348":"0870","506349":"08715","506350":"0870","506352":"08715","506355":"08457","506356":"0870","506365":"0870","506366":"0870","506367":"08457","506368":"08719","506369":"0870","506370":"0870","506371":"0870","506381":"08719","506391":"0870","507001":"08742","507002":"08742","507003":"08742","507101":"08743","507103":"08743","507111":"08743","507114":"08744","507115":"08744","507116":"08744","507117":"08744","507118":"08744","507119":"08743","507120":"08744","507122":"08719","507123":"08742","507124":"08743","507125":"08743","507128":"08744","507133":"08744","507136":"08715","507137":"08744","507138":"08743","507140":"08744","507154":"08743","507157":"08742","507158":"08742","507159":"08742","507160":"08742","507161":"08742","507163":"08742","507164":"08742","507165":"08742","507166":"08743","507167":"08742","507168":"08742","507169":"08742","507170":"08742","507182":"08742","507183":"08742","507201":"08742","507202":"08742","507203":"08742","507204":"08742","507208":"08742","507209":"08742","507210":"08719","507211":"08719","507301":"08743","507302":"08742","507303":"08742","507304":"08742","507305":"08742","507306":"08743","507316":"08742","507318":"08742","508001":"08682","508002":"08682","508004":"08682","508101":"08585","508105":"08585","508111":"08585","508112":"08585","508113":"08585","508114":"08682","508115":"08585","508116":"08685","508117":"08585","508126":"08585","508201":"08684","508202":"08682","508204":"08684","508205":"08682","508206":"08684","508207":"08682","508208":"08682","508210":"08682","508211":"08682","508212":"08684","508213":"08684","508214":"08684","508217":"08682","508218":"08684","508221":"08684","508223":"08684","508224":"08684","508233":"08684","508234":"08684","508238":"08684","508243":"08682","508244":"08682","508245":"08682","508246":"08684","508247":"08682","508248":"08682","508250":"08682","508252":"08585","508253":"08585","508254":"08682","508255":"08682","508256":"08682","508257":"08682","508258":"08682","508266":"08682","508277":"08585","508278":"08682","508279":"08684","508280":"08684","508284":"08585","508285":"08585","508286":"08585","508355":"08684","508373":"08682","508374":"08682","508376":"08684","508377":"08682","509001":"08542","509002":"08542","509102":"08540","509103":"08543","509104":"08543","509105":"08543","509106":"08543","509110":"08543","509120":"08543","509125":"08546","509126":"08546","509127":"08546","509128":"08546","509129":"08546","509130":"08543","509131":"08543","509132":"03472","509133":"08546","509135":"08546","509152":"08546","509153":"08546","509201":"08540","509202":"08542","509203":"08540","509204":"08506","509205":"08506","509206":"08543","509207":"08418","509208":"08506","509209":"08540","509210":"08506","509215":"08540","509216":"08418","509217":"08418","509219":"08542","509228":"08418","509235":"08543","509301":"08542","509302":"08540","509311":"08506","509320":"08455","509321":"08418","509324":"08922","509325":"08418","509326":"08540","509327":"08418","509334":"08542","509335":"08416","509336":"08416","509337":"08542","509338":"08416","509339":"08416","509340":"08416","509349":"08540","509350":"08416","509351":"08506","509352":"08506","509353":"08506","509357":"08542","509358":"08418","509360":"08540","509371":"08506","509375":"08540","509376":"08540","509380":"08543","509381":"08543","509382":"08543","509385":"08540","509401":"08540","509406":"08540","509407":"08506","509408":"08418","509409":"08506","509410":"08418","509411":"08506","509412":"08540","515001":"08554","515002":"08554","515003":"08554","515004":"08554","515005":"08554","515101":"08554","515110":"08554","515122":"08554","515123":"08554","515124":"08554","515133":"08554","515134":"08554","515144":"08554","515154":"08554","515159":"08554","515164":"08554","515201":"08554","515202":"08554","515211":"08554","515212":"08554","515231":"08554","515241":"08554","515261":"08554","515271":"08554","515281":"08554","515286":"08554","515291":"08554","515301":"08554","515303":"08554","515305":"08554","515311":"08554","515321":"08554","515331":"08554","515341":"08554","515401":"08554","515402":"08554","515405":"08554","515408":"08554","515411":"08554","515413":"08554","515414":"08554","515415":"08554","515425":"08554","515435":"08554","515445":"08554","515455":"08554","515465":"08562","515501":"08554","515511":"08554","515521":"08554","515531":"08554","515541":"08554","515551":"08554","515556":"08554","515561":"08554","515571":"08554","515581":"08554","515591":"08554","515601":"08554","515611":"08554","515621":"08554","515631":"08554","515641":"08554","515651":"08554","515661":"08554","515671":"08554","515672":"08554","515701":"08554","515711":"08554","515721":"08554","515722":"08554","515731":"08554","515741":"08554","515751":"08554","515761":"08554","515763":"08554","515765":"08554","515766":"08554","515767":"08554","515774":"08554","515775":"08554","515787":"08554","515801":"08554","515803":"08554","515812":"08554","515822":"08554","515832":"08554","515842":"08554","515863":"08554","515865":"08554","515867":"08554","515870":"08554","515871":"08554","515872":"08554","516001":"08562","516002":"08562","516003":"08562","516004":"08562","516005":"08562","516101":"08562","516104":"08562","516105":"08562","516107":"08562","516108":"08562","516110":"08562","516115":"08562","516126":"08562","516127":"08562","516128":"08562","516129":"08562","516130":"08562","516150":"08562","516151":"08562","516152":"08562","516162":"08562","516163":"08562","516172":"08562","516173":"08562","516175":"08562","516193":"08562","516203":"08562","516213":"08562","516214":"08562","516215":"08562","516216":"08562","516217":"08562","516218":"08562","516227":"08562","516228":"08562","516233":"08562","516237":"08562","516247":"08562","516257":"08562","516259":"08562","516267":"08562","516268":"08562","516269":"08562","516270":"08562","516289":"08562","516293":"08562","516309":"08562","516310":"08562","516311":"08562","516312":"08562","516321":"08562","516329":"08562","516330":"08562","516339":"08562","516349":"08562","516350":"08562","516355":"08562","516356":"08562","516359":"08562","516360":"08562","516361":"08562","516362":"08562","516380":"08562","516390":"08562","516391":"08562","516396":"08562","516401":"08562","516411":"08562","516421":"08562","516431":"08562","516432":"08562","516433":"08562","516434":"08562","516439":"08562","516444":"08562","516454":"08562","516464":"08562","516474":"08562","516484":"08562","516501":"08562","516502":"08562","516503":"08562","516504":"08562","516505":"08562","517001":"08572","517002":"08572","517004":"08572","517101":"08572","517102":"08572","517112":"08572","517113":"08572","517123":"08572","517124":"08572","517125":"08572","517126":"08572","517127":"08572","517128":"08572","517129":"08572","517130":"08572","517131":"08572","517132":"08572","517152":"08572","517167":"08572","517172":"08572","517192":"08572","517193":"08572","517194":"08572","517213":"08572","517214":"08572","517234":"08572","517235":"08572","517236":"08572","517237":"08572","517247":"08572","517257":"08572","517277":"08572","517280":"08572","517291":"08572","517297":"08572","517299":"08572","517305":"08572","517319":"08572","517325":"08572","517326":"08572","517350":"08572","517351":"08572","517352":"08572","517370":"08572","517390":"08572","517391":"08572","517401":"08572","517403":"08572","517408":"08572","517414":"08572","517415":"08572","517416":"08572","517417":"08572","517418":"08572","517419":"08572","517421":"08572","517422":"08572","517423":"08572","517424":"08572","517425":"08572","517426":"08572","517429":"08572","517432":"08572","517501":"08572","517502":"08572","517503":"08572","517504":"08572","517505":"08572","517506":"08572","517507":"08572","517520":"08572","517526":"08572","517536":"08572","517541":"08572","517551":"08572","517561":"08572","517569":"08572","517571":"08572","517581":"08572","517582":"08572","517583":"08572","517584":"08572","517586":"08572","517587":"08572","517588":"08572","517589":"08572","517590":"08572","517591":"08572","517592":"08572","517599":"08572","517619":"08572","517620":"08572","517640":"08572","517641":"08572","517642":"08572","517643":"08572","517644":"08572","517645":"08572","517646":"08572","518001":"08518","518002":"08518","518003":"08518","518004":"08518","518005":"08518","518006":"08518","518007":"08518","518010":"08518","518101":"08518","518102":"08518","518112":"08518","518122":"08518","518123":"08518","518124":"08518","518134":"08518","518135":"08518","518145":"08518","518155":"08518","518165":"08518","518166":"08518","518176":"08518","518186":"08518","518196":"08518","518206":"08518","518216":"08518","518217":"08518","518218":"08518","518220":"08518","518221":"08518","518222":"08518","518225":"08518","518301":"08518","518302":"08518","518308":"08518","518313":"08518","518323":"08518","518333":"08518","518343":"08518","518344":"08518","518345":"08518","518346":"08518","518347":"08518","518348":"08518","518349":"08518","518350":"08518","518360":"08518","518380":"08518","518385":"08518","518390":"08518","518395":"08518","518396":"08518","518401":"08518","518405":"08518","518411":"08518","518412":"08518","518422":"08518","518432":"08518","518442":"08518","518452":"08518","518462":"08518","518463":"08518","518464":"08518","518465":"08518","518466":"08518","518467":"08518","518468":"08518","518501":"08518","518502":"08518","518508":"08518","518510":"08518","518511":"08518","518512":"08518","518513":"08518","518523":"08518","518533":"08518","518543":"08518","518553":"08518","518563":"08518","518573":"08518","518583":"08518","518593":"08518","518594":"08518","518598":"08518","518599":"08518","518674":"08518","520001":"03472","520002":"03472","520003":"03472","520004":"03472","520007":"03472","520008":"03472","520010":"03472","520011":"03472","520012":"03472","520013":"03472","520015":"03472","521001":"03472","521002":"03472","521003":"03472","521004":"03472","521101":"03472","521102":"03472","521104":"03472","521105":"03472","521106":"03472","521107":"03472","521108":"03472","521109":"03472","521110":"03472","521111":"03472","521120":"03472","521121":"03472","521122":"03472","521125":"03472","521126":"03472","521130":"03472","521131":"03472","521132":"03472","521133":"03472","521134":"03472","521135":"03472","521136":"03472","521137":"03472","521138":"03472","521139":"03472","521148":"03472","521149":"03472","521150":"03472","521151":"03472","521153":"03472","521156":"03472","521157":"03472","521158":"03472","521162":"03472","521163":"03472","521164":"03472","521165":"03472","521170":"03472","521175":"03472","521178":"03472","521180":"03472","521181":"03472","521182":"03472","521183":"03472","521184":"03472","521185":"03472","521190":"03472","521201":"03472","521202":"03472","521207":"03472","521211":"03472","521212":"03472","521213":"03472","521214":"03472","521215":"03472","521225":"03472","521226":"03472","521227":"03472","521228":"03472","521229":"03472","521230":"03472","521231":"03472","521235":"03472","521241":"03472","521245":"03472","521246":"03472","521247":"03472","521250":"03472","521256":"03472","521260":"03472","521261":"03472","521263":"03472","521286":"03472","521301":"03472","521311":"03472","521312":"03472","521320":"03472","521321":"03472","521322":"03472","521323":"03472","521324":"03472","521325":"03472","521326":"03472","521327":"03472","521328":"03472","521329":"03472","521330":"03472","521331":"03472","521332":"03472","521333":"03472","521340":"03472","521343":"03472","521344":"03472","521345":"03472","521356":"03472","521366":"03472","521369":"03472","521390":"03472","521401":"03472","521402":"03472","521403":"03472","521456":"03472","521457":"03472","522001":"0863","522002":"0863","522003":"0863","522004":"0863","522005":"0863","522006":"0863","522007":"0863","522009":"0863","522015":"0863","522016":"0863","522017":"0863","522018":"0863","522019":"0863","522020":"0863","522034":"0863","522101":"0863","522102":"0863","522111":"0863","522112":"0863","522113":"0863","522124":"0863","522201":"0863","522202":"0863","522211":"0863","522212":"0863","522213":"0863","522233":"0863","522234":"0863","522235":"0863","522236":"0863","522237":"0863","522238":"0863","522239":"0863","522240":"0863","522256":"0863","522257":"0863","522258":"0863","522259":"0863","522261":"0863","522262":"0863","522264":"0863","522265":"0863","522268":"0863","522301":"0863","522302":"0863","522303":"0863","522304":"0863","522305":"0863","522306":"0863","522307":"0863","522308":"0863","522309":"0863","522310":"0863","522311":"0863","522312":"0863","522313":"0863","522314":"0863","522315":"0863","522316":"0863","522317":"0863","522318":"0863","522324":"0863","522325":"0863","522329":"0863","522330":"0863","522341":"0863","522401":"0863","522402":"0863","522403":"0863","522408":"0863","522409":"0863","522410":"0863","522411":"0863","522412":"0863","522413":"0863","522414":"0863","522415":"0863","522421":"0863","522426":"0863","522435":"0863","522436":"0863","522437":"0863","522438":"0863","522439":"0863","522501":"0863","522502":"0863","522503":"0863","522508":"0863","522509":"0863","522510":"0863","522529":"0863","522549":"0863","522601":"0863","522603":"0863","522611":"0863","522612":"0863","522613":"0863","522614":"0863","522615":"0863","522616":"0863","522617":"0863","522619":"0863","522626":"0863","522646":"0863","522647":"0863","522649":"0863","522657":"0863","522658":"0863","522659":"0863","522660":"0863","522661":"0863","522663":"0863","523001":"08592","523002":"08592","523101":"08592","523104":"08592","523105":"08592","523108":"08592","523109":"08592","523110":"08592","523111":"08592","523112":"08592","523113":"08592","523114":"08592","523115":"08592","523116":"08592","523117":"08592","523135":"08592","523155":"08592","523156":"08592","523157":"08592","523165":"08592","523166":"08592","523167":"08592","523168":"08592","523169":"08592","523170":"08592","523171":"08592","523180":"08592","523181":"08592","523182":"08592","523183":"08592","523184":"08592","523185":"08592","523186":"08592","523187":"08592","523190":"08592","523201":"08592","523211":"08592","523212":"08592","523213":"08592","523214":"08592","523223":"08592","523224":"08592","523225":"08592","523226":"08592","523227":"08592","523228":"08592","523230":"08592","523240":"08592","523241":"08592","523245":"08592","523246":"08592","523247":"08592","523252":"08592","523253":"08592","523254":"08592","523260":"08592","523261":"08592","523262":"08592","523263":"08592","523264":"08592","523265":"08592","523270":"08592","523271":"08592","523272":"08592","523273":"08592","523274":"08592","523279":"08592","523280":"08592","523281":"08592","523286":"08592","523291":"08592","523292":"08592","523301":"08592","523302":"08592","523303":"08592","523304":"08592","523305":"08592","523315":"08592","523316":"08592","523320":"08592","523326":"08592","523327":"08592","523328":"08592","523329":"08592","523330":"08592","523331":"08592","523332":"08592","523333":"08592","523334":"08592","523335":"08592","523336":"08592","523346":"08592","523356":"08592","523357":"08592","523367":"08592","523368":"08592","523369":"08592","523370":"08592","523371":"08592","523372":"08592","523373":"08592","524001":"0861","524002":"0861","524003":"0861","524004":"0861","524005":"0861","524101":"0861","524121":"0861","524123":"0861","524124":"0861","524126":"0861","524127":"0861","524129":"0861","524131":"0861","524132":"0861","524134":"0861","524137":"0861","524142":"0861","524152":"0861","524201":"0861","524203":"0861","524221":"0861","524222":"0861","524223":"0861","524224":"0861","524225":"0861","524226":"0861","524227":"0861","524228":"0861","524230":"0861","524234":"0861","524236":"0861","524239":"0861","524240":"0861","524300":"0861","524302":"0861","524303":"0861","524304":"0861","524305":"0861","524306":"0861","524307":"0861","524308":"0861","524309":"0861","524310":"0861","524311":"0861","524312":"0861","524313":"0861","524314":"0861","524315":"0861","524316":"0861","524317":"0861","524318":"0861","524319":"0861","524320":"0861","524321":"0861","524322":"0861","524323":"0861","524324":"0861","524341":"0861","524342":"0861","524343":"0861","524344":"0861","524345":"0861","524346":"0861","524347":"0861","524366":"0861","524401":"0861","524402":"0861","524403":"0861","524404":"0861","524405":"0861","524406":"0861","524407":"0861","524408":"0861","524409":"0861","524410":"0861","524411":"0861","524412":"0861","524413":"0861","524414":"0861","524415":"0861","524421":"0861","530001":"0891","530002":"0891","530003":"0891","530004":"0891","530005":"0891","530007":"0891","530008":"0891","530009":"0891","530011":"0891","530012":"0891","530013":"0891","530014":"0891","530015":"0891","530016":"0891","530017":"0891","530018":"0891","530020":"0891","530022":"0891","530024":"0891","530026":"0891","530027":"0891","530028":"0891","530029":"0891","530031":"0891","530032":"0891","530040":"0891","530041":"0891","530043":"0891","530044":"0891","530045":"0891","530046":"0891","530047":"0891","530048":"0891","530049":"0891","530051":"0891","530052":"0891","530053":"0891","531001":"0891","531002":"0891","531011":"0891","531019":"0891","531020":"0891","531021":"0891","531022":"0891","531023":"0891","531024":"0891","531025":"0891","531026":"0891","531027":"0891","531028":"0891","531029":"0891","531030":"0891","531031":"0891","531032":"0891","531033":"0891","531034":"0891","531035":"0891","531036":"0891","531040":"0891","531055":"0891","531060":"0891","531061":"0891","531075":"0891","531077":"0891","531081":"0891","531082":"0891","531083":"0891","531084":"0891","531085":"0891","531087":"0891","531105":"0891","531111":"0891","531113":"0891","531114":"0891","531115":"0891","531116":"0891","531117":"0891","531118":"0891","531126":"0891","531127":"0891","531133":"0891","531149":"0891","531151":"08922","531162":"08922","531163":"0891","531173":"08922","531219":"0891","532001":"08942","532005":"08942","532122":"08922","532123":"08942","532127":"08922","532148":"08942","532168":"08942","532185":"08942","532186":"08942","532187":"08942","532190":"08942","532195":"08942","532201":"08942","532203":"08942","532211":"08942","532212":"08942","532213":"08942","532214":"08942","532215":"08942","532216":"08942","532218":"08942","532219":"08942","532220":"08942","532221":"08942","532222":"08942","532242":"08942","532243":"08942","532263":"08942","532264":"08942","532284":"08942","532290":"08942","532291":"08942","532292":"08942","532312":"08942","532322":"08942","532401":"08942","532402":"08942","532403":"08942","532404":"08942","532405":"08942","532406":"08942","532407":"08922","532408":"08942","532409":"08942","532410":"08942","532421":"08942","532425":"08942","532426":"08942","532427":"08942","532428":"08942","532429":"08942","532430":"08942","532432":"08942","532440":"08942","532443":"08942","532445":"08942","532455":"08942","532456":"08942","532457":"08942","532458":"08942","532459":"08942","532460":"08942","532461":"08942","532462":"08942","532474":"08942","532484":"08942","533001":"0884","533002":"0884","533003":"0884","533004":"0884","533005":"0884","533006":"0884","533007":"0884","533016":"0884","533101":"0884","533102":"0884","533103":"0884","533104":"0884","533105":"0884","533106":"0884","533107":"0884","533124":"0884","533125":"0884","533126":"0884","533201":"0884","533210":"0884","533211":"0884","533212":"0884","533213":"0884","533214":"0884","533215":"0884","533216":"0884","533217":"0884","533218":"0884","533220":"0884","533221":"0884","533222":"0884","533223":"0884","533228":"0884","533229":"0884","533232":"0884","533233":"0884","533234":"0884","533235":"0884","533236":"0884","533237":"0884","533238":"0884","533239":"0884","533240":"0884","533241":"0884","533242":"0884","533244":"0884","533247":"0884","533248":"0884","533249":"0884","533250":"0884","533251":"0884","533252":"0884","533253":"0884","533254":"0884","533255":"0884","533256":"0884","533260":"0884","533261":"0884","533262":"0884","533263":"0884","533264":"0884","533274":"0884","533284":"0884","533285":"0884","533286":"0884","533287":"0884","533288":"0884","533289":"0884","533290":"0884","533291":"0884","533292":"0884","533293":"0884","533294":"0884","533295":"0884","533296":"0884","533297":"0884","533305":"0884","533306":"0884","533307":"0884","533308":"0884","533309":"0884","533339":"0884","533340":"0884","533341":"0884","533342":"0884","533343":"0884","533344":"0884","533345":"0884","533346":"0884","533347":"0884","533348":"0884","533349":"0884","533350":"0884","533351":"0884","533352":"0884","533353":"0884","533354":"0884","533355":"0884","533401":"0891","533406":"0884","533407":"0884","533408":"0884","533428":"0884","533429":"0884","533430":"0884","533431":"0884","533432":"0884","533433":"0884","533434":"0884","533435":"0884","533436":"0884","533437":"0884","533440":"0884","533444":"0884","533445":"0884","533446":"0884","533447":"0884","533448":"0884","533449":"0884","533450":"0884","533451":"0884","533461":"0884","533462":"0884","533463":"0884","533464":"0884","533468":"0884","533483":"0884","533577":"0884","534001":"08812","534002":"08812","534003":"08812","534004":"08812","534005":"08812","534006":"08812","534007":"08812","534101":"08812","534102":"08812","534111":"08812","534112":"08812","534122":"08812","534123":"08812","534124":"08812","534126":"08812","534134":"08812","534145":"08812","534146":"08812","534156":"08812","534165":"08812","534166":"08812","534176":"08812","534186":"08812","534195":"08812","534196":"08812","534197":"08812","534198":"08812","534199":"08812","534201":"08812","534202":"08812","534204":"08812","534206":"08812","534207":"08812","534208":"08812","534209":"08812","534210":"08812","534211":"08812","534215":"08812","534216":"08812","534217":"08812","534218":"08812","534222":"08812","534225":"08812","534227":"08812","534230":"08812","534235":"08812","534236":"08812","534237":"08812","534238":"08812","534239":"08812","534240":"08812","534243":"08812","534244":"08812","534245":"08812","534247":"08812","534250":"08812","534260":"08812","534265":"08812","534266":"08812","534267":"08812","534268":"08812","534269":"08812","534275":"08812","534280":"08812","534281":"08812","534301":"08812","534302":"08812","534305":"08812","534311":"08812","534312":"08812","534313":"08812","534315":"08812","534316":"08812","534318":"08812","534320":"08812","534324":"08812","534326":"08812","534327":"08812","534328":"08812","534329":"08812","534330":"08812","534331":"08812","534338":"08812","534340":"08812","534341":"08812","534342":"08812","534350":"08812","534401":"08812","534406":"08812","534411":"08812","534416":"08812","534425":"08812","534426":"08812","534427":"08812","534432":"08812","534435":"08812","534437":"08812","534442":"08812","534444":"08812","534447":"08812","534448":"08812","534449":"08812","534450":"08812","534451":"08812","534452":"08812","534455":"08812","534456":"08812","534460":"08812","534461":"08812","534462":"08812","534467":"08812","534475":"08812","535001":"08922","535002":"08922","535003":"08922","535004":"08922","535005":"08922","535006":"08922","535101":"08922","535102":"08922","535124":"08922","535125":"08922","535126":"08922","535128":"08922","535145":"08922","535148":"08922","535160":"08922","535161":"08922","535183":"08922","535204":"08922","535213":"08922","535214":"08922","535215":"08922","535216":"08922","535217":"08922","535218":"08922","535220":"08922","535221":"08922","535240":"08922","535250":"08922","535260":"08922","535270":"08922","535273":"08922","535280":"08922","535281":"08922","535463":"08922","535501":"08922","535502":"08922","535521":"08922","535522":"08922","535523":"08922","535524":"08922","535525":"08922","535526":"08922","535527":"08922","535534":"08922","535546":"08922","535547":"08922","535557":"08922","535558":"08922","535559":"08922","535568":"08922","535573":"08922","535578":"08922","535579":"08922","535580":"08922","535581":"08922","535582":"08922","535591":"08922","535592":"08922","535593":"08922","535594":"08922","560001":"080","560002":"080","560003":"080","560004":"080","560005":"080","560006":"080","560007":"080","560008":"080","560009":"080","560010":"080","560011":"080","560012":"080","560013":"080","560015":"080","560016":"080","560017":"080","560018":"080","560020":"080","560021":"080","560022":"080","560023":"080","560024":"080","560025":"080","560026":"080","560027":"080","560029":"080","560030":"080","560032":"080","560033":"080","560034":"080","560035":"080","560036":"080","560037":"080","560038":"080","560040":"080","560041":"080","560042":"080","560043":"080","560045":"080","560046":"080","560047":"080","560048":"080","560049":"080","560050":"080","560051":"080","560053":"080","560054":"080","560055":"080","560056":"080","560057":"080","560058":"080","560059":"080","560060":"080","560061":"080","560062":"080","560063":"080","560064":"080","560065":"080","560066":"080","560067":"080","560068":"080","560070":"080","560071":"080","560072":"080","560073":"080","560074":"080","560075":"080","560076":"080","560077":"080","560078":"080","560079":"080","560080":"080","560081":"080","560082":"080","560083":"080","560084":"080","560085":"080","560086":"080","560087":"080","560088":"080","560089":"080","560090":"080","560091":"080","560092":"080","560093":"080","560094":"080","560095":"080","560096":"080","560097":"080","560098":"080","560099":"080","560100":"080","560102":"080","560103":"080","560104":"080","560105":"080","560107":"080","560108":"080","560109":"080","560110":"080","560111":"080","560112":"080","560113":"080","560114":"080","560115":"080","560116":"080","560117":"080","560300":"080","560500":"080","561101":"080","561201":"080","561202":"0816","561203":"080","561204":"080","561205":"080","561206":"08156","561207":"08156","561208":"08156","561209":"08156","561210":"08156","561211":"08156","561212":"08156","561213":"08156","561228":"08156","562101":"08156","562102":"08156","562103":"08156","562104":"08156","562105":"08156","562106":"080","562107":"080","562108":"080","562109":"080","562110":"080","562111":"080","562112":"080","562114":"080","562117":"080","562119":"080","562120":"080","562121":"080","562122":"080","562123":"080","562125":"080","562126":"080","562127":"080","562128":"080","562129":"080","562130":"080","562131":"080","562132":"080","562135":"080","562138":"080","562149":"080","562157":"080","562159":"080","562160":"080","562161":"080","562162":"080","562163":"080","562164":"080","562165":"080","563101":"08152","563103":"08152","563113":"08152","563114":"08152","563115":"08152","563116":"08152","563117":"08152","563118":"08152","563119":"08152","563120":"08152","563121":"08152","563122":"08152","563123":"08156","563124":"08156","563125":"08152","563126":"08152","563127":"08152","563128":"08156","563129":"08152","563130":"08152","563131":"08152","563132":"08152","563133":"08152","563134":"08152","563135":"08152","563136":"08152","563137":"08152","563138":"08152","563139":"08152","563146":"08156","563147":"08152","563157":"08152","563159":"08156","563160":"08152","563161":"08152","563162":"08152","563163":"08152","570001":"0821","570002":"0821","570003":"0821","570004":"0821","570005":"0821","570006":"0821","570007":"0821","570008":"0821","570009":"0821","570010":"0821","570011":"0821","570012":"0821","570014":"0821","570015":"0821","570016":"0821","570017":"0821","570018":"0821","570019":"0821","570020":"0821","570022":"0821","570023":"0821","570025":"0821","570026":"0821","570027":"0821","570028":"0821","570029":"0821","570030":"0821","570031":"0821","570032":"0821","570033":"0821","570034":"0821","571101":"0821","571102":"0821","571103":"0821","571104":"0821","571105":"0821","571106":"0821","571107":"0821","571108":"0821","571109":"08226","571110":"0821","571111":"08226","571114":"0821","571115":"08226","571116":"0821","571117":"08226","571118":"0821","571119":"0821","571120":"0821","571121":"0821","571122":"0821","571123":"08226","571124":"0821","571125":"0821","571126":"08226","571127":"08226","571128":"08226","571129":"0821","571130":"0821","571134":"0821","571187":"0821","571189":"0821","571201":"08272","571211":"08272","571212":"08272","571213":"08272","571214":"08272","571215":"08272","571216":"08272","571217":"08272","571218":"08272","571219":"08272","571231":"08272","571232":"08272","571234":"08272","571235":"08272","571236":"08272","571237":"08272","571247":"08272","571248":"08272","571249":"08272","571250":"08272","571251":"08272","571252":"08272","571253":"08272","571254":"08272","571301":"0821","571302":"0821","571311":"0821","571312":"0821","571313":"08226","571314":"0821","571315":"0821","571316":"0821","571320":"08226","571342":"08226","571401":"08232","571402":"08232","571403":"08232","571404":"08232","571405":"08232","571415":"08232","571416":"08232","571417":"08232","571418":"08232","571419":"08232","571421":"08232","571422":"08232","571423":"08232","571424":"08232","571425":"08232","571426":"08232","571427":"08232","571428":"08232","571429":"08232","571430":"08232","571431":"08232","571432":"08232","571433":"08232","571434":"08232","571435":"08232","571436":"08232","571438":"08232","571439":"08226","571440":"08226","571441":"08226","571442":"0821","571443":"08226","571444":"08226","571445":"08232","571446":"08232","571448":"08232","571450":"08232","571455":"08232","571457":"08226","571463":"08232","571475":"08232","571476":"08232","571477":"08232","571478":"08232","571490":"08226","571601":"0821","571602":"0821","571603":"0821","571604":"0821","571605":"08232","571606":"08232","571607":"08232","571610":"0821","571617":"0821","571802":"08232","571807":"08232","571811":"08232","571812":"08232","572101":"0816","572102":"0816","572103":"0816","572104":"0816","572105":"0816","572106":"0816","572107":"0816","572111":"0816","572112":"0816","572113":"0816","572114":"0816","572115":"0816","572116":"0816","572117":"0816","572118":"0816","572119":"0816","572120":"0816","572121":"0816","572122":"0816","572123":"0816","572124":"0816","572125":"0816","572126":"0816","572127":"0816","572128":"0816","572129":"0816","572130":"0816","572132":"0816","572133":"0816","572134":"0816","572135":"0816","572136":"0816","572137":"0816","572138":"0816","572139":"0816","572140":"0816","572141":"0816","572142":"0816","572168":"0816","572175":"0816","572201":"0816","572211":"0816","572212":"0816","572213":"0816","572214":"0816","572215":"0816","572216":"0816","572217":"0816","572218":"0816","572219":"0816","572220":"0816","572221":"0816","572222":"0816","572223":"0816","572224":"0816","572225":"0816","572226":"0816","572227":"0816","572228":"0816","573101":"08172","573102":"08172","573103":"08172","573111":"08172","573112":"08172","573113":"08172","573115":"08172","573116":"08172","573117":"08172","573118":"08172","573119":"08172","573120":"08172","573121":"08172","573122":"08172","573123":"08172","573124":"08172","573125":"08172","573126":"08172","573127":"08172","573128":"08172","573129":"08172","573130":"08172","573131":"08172","573133":"08172","573134":"08172","573135":"08172","573136":"08172","573137":"08172","573141":"08172","573142":"08172","573144":"08172","573162":"08172","573164":"08172","573165":"08172","573201":"08172","573202":"08172","573210":"08172","573211":"08172","573212":"08172","573213":"08172","573214":"08172","573215":"08172","573216":"08172","573217":"08172","573218":"08172","573219":"08172","573220":"08172","573225":"08172","573226":"08172","574101":"0820","574102":"0820","574103":"0820","574104":"0820","574105":"0820","574106":"0820","574107":"0820","574108":"0820","574109":"0820","574110":"0820","574111":"0820","574112":"0820","574113":"0820","574114":"0820","574115":"0820","574116":"0820","574117":"0820","574118":"0820","574119":"0820","574122":"0820","574129":"0820","574141":"0824","574142":"0824","574143":"0824","574144":"0824","574145":"0824","574146":"0824","574148":"0824","574150":"0824","574151":"0824","574153":"0824","574154":"0824","574197":"0824","574198":"0824","574199":"0824","574201":"0824","574202":"0824","574203":"0824","574210":"0824","574211":"0824","574212":"0824","574213":"0824","574214":"0824","574216":"0824","574217":"0824","574218":"0824","574219":"0824","574220":"0824","574221":"0824","574222":"0824","574223":"0824","574224":"0824","574225":"0824","574226":"0824","574227":"0824","574228":"0824","574229":"0824","574230":"0824","574231":"0824","574232":"0824","574233":"0824","574234":"08272","574235":"0824","574236":"0824","574237":"0824","574238":"0824","574239":"0824","574240":"0824","574241":"0824","574242":"0824","574243":"0824","574244":"0820","574248":"0824","574253":"0824","574259":"0824","574260":"0824","574265":"0824","574267":"0824","574274":"0824","574279":"0824","574285":"0824","574313":"0824","574314":"08272","574323":"0824","574324":"0824","574325":"0824","574326":"0824","574327":"0824","574328":"0824","574509":"0824","575001":"0824","575002":"0824","575003":"0824","575004":"0824","575005":"0824","575006":"0824","575007":"0824","575008":"0824","575009":"0824","575010":"0824","575011":"0824","575013":"0824","575014":"0824","575015":"0824","575016":"0824","575017":"0824","575018":"0824","575019":"0824","575020":"0824","575022":"0824","575023":"0824","575025":"0824","575028":"0824","575029":"0824","575030":"0824","576101":"0820","576102":"0820","576103":"0820","576104":"0820","576105":"0820","576106":"0820","576107":"0820","576108":"0820","576111":"0820","576112":"0820","576113":"0820","576114":"0820","576115":"0820","576117":"0820","576120":"0820","576121":"0820","576122":"0820","576124":"0820","576201":"0820","576210":"0820","576211":"0820","576212":"0820","576213":"0820","576214":"0820","576215":"0820","576216":"0820","576217":"0820","576218":"0820","576219":"0820","576220":"0820","576221":"0820","576222":"0820","576223":"0820","576224":"0820","576225":"0820","576226":"0820","576227":"0820","576228":"0820","576229":"0820","576230":"0820","576231":"0820","576232":"0820","576233":"0820","576234":"0820","576235":"0820","576247":"0820","576257":"0820","576282":"0820","576283":"0820","577001":"08192","577002":"08192","577003":"08192","577004":"08192","577005":"08192","577006":"08192","577007":"08192","577101":"08262","577102":"08262","577111":"08262","577112":"08262","577113":"08262","577114":"08262","577115":"08182","577116":"08262","577117":"08262","577120":"08262","577121":"08262","577122":"08262","577123":"08262","577124":"08262","577125":"08262","577126":"08262","577127":"08262","577128":"08262","577129":"08262","577130":"08262","577131":"08262","577132":"08262","577133":"08262","577134":"08262","577135":"08262","577136":"08262","577137":"08262","577138":"08262","577139":"08262","577140":"08262","577144":"08262","577145":"08262","577146":"08262","577160":"08262","577168":"08262","577175":"08262","577179":"08262","577180":"08262","577181":"08262","577182":"08262","577201":"08182","577202":"08182","577203":"08182","577204":"08182","577205":"08182","577211":"08182","577213":"08192","577214":"08182","577215":"08192","577216":"08182","577217":"08192","577218":"08192","577219":"08192","577220":"08182","577221":"08192","577222":"08182","577223":"08192","577224":"08192","577225":"08182","577226":"08182","577227":"08182","577228":"08262","577229":"08182","577230":"08192","577231":"08192","577232":"08182","577233":"08182","577243":"08182","577245":"08182","577301":"08182","577302":"08182","577401":"08182","577411":"08182","577412":"08182","577413":"08182","577414":"08182","577415":"08182","577416":"08182","577417":"08182","577418":"08182","577419":"08182","577421":"08182","577422":"08182","577423":"08182","577424":"08182","577425":"08182","577426":"08182","577427":"08182","577428":"08182","577429":"08182","577430":"08182","577431":"08182","577432":"08182","577433":"08182","577434":"08182","577435":"08182","577436":"08182","577451":"08182","577452":"08182","577453":"08182","577501":"08194","577502":"08194","577511":"08194","577512":"08192","577513":"08192","577514":"08192","577515":"08194","577516":"08192","577517":"08194","577518":"08194","577519":"08194","577520":"08194","577521":"08192","577522":"08194","577523":"08194","577524":"08194","577525":"08192","577526":"08194","577527":"08194","577528":"08192","577529":"08194","577530":"08192","577531":"08194","577532":"08194","577533":"08194","577534":"08192","577535":"08194","577536":"08194","577537":"08194","577538":"08194","577539":"08194","577540":"08194","577541":"08194","577542":"08194","577543":"08194","577544":"08192","577545":"08194","577546":"08194","577547":"08262","577548":"08262","577549":"08262","577550":"08262","577551":"08192","577552":"08192","577553":"08192","577554":"08194","577555":"08194","577556":"08192","577557":"08194","577558":"08194","577566":"08192","577589":"08192","577596":"08194","577597":"08194","577598":"08194","577599":"08194","577601":"08192","580001":"0836","580002":"0836","580003":"0836","580004":"0836","580005":"0836","580006":"0836","580007":"0836","580008":"0836","580009":"0836","580011":"0836","580020":"0836","580021":"0836","580023":"0836","580024":"0836","580025":"0836","580026":"0836","580027":"0836","580028":"0836","580029":"0836","580030":"0836","580031":"0836","580032":"0836","580112":"0836","580114":"0836","580118":"0836","581101":"08375","581102":"08375","581103":"0836","581104":"08375","581105":"0836","581106":"08375","581107":"0836","581108":"08375","581109":"08375","581110":"08375","581111":"08375","581112":"08375","581113":"0836","581115":"08375","581116":"08375","581117":"0836","581118":"08375","581119":"08375","581120":"08375","581121":"08382","581123":"08375","581126":"08375","581128":"08375","581129":"08382","581145":"08375","581148":"08375","581186":"08382","581187":"08382","581193":"08375","581195":"0836","581196":"0836","581198":"08375","581199":"08375","581201":"0836","581202":"08375","581203":"08375","581204":"0836","581205":"08375","581206":"0836","581207":"0836","581208":"08375","581209":"0836","581210":"08375","581211":"08375","581212":"08375","581213":"08375","581237":"08375","581301":"08382","581302":"08382","581303":"08382","581304":"08382","581306":"08382","581307":"08382","581308":"08382","581314":"08382","581315":"08382","581316":"08382","581317":"08382","581318":"08382","581319":"08382","581320":"08382","581321":"08382","581322":"08382","581323":"08382","581324":"08382","581325":"08382","581326":"08382","581327":"08382","581328":"08382","581329":"08382","581330":"08382","581331":"08382","581332":"08382","581333":"08382","581334":"08382","581335":"08382","581336":"08382","581337":"08382","581338":"08382","581339":"08382","581340":"08382","581341":"08382","581342":"08382","581343":"08382","581344":"08382","581345":"08382","581346":"08382","581347":"08382","581348":"08382","581349":"08382","581350":"08382","581351":"08382","581352":"08382","581353":"08382","581354":"08382","581355":"08382","581356":"08382","581357":"08382","581358":"08382","581359":"08382","581360":"08382","581361":"08382","581362":"08382","581363":"08382","581365":"08382","581384":"08382","581396":"08382","581400":"08382","581401":"08382","581402":"08382","581403":"08382","581411":"08382","581412":"08382","581421":"08382","581423":"08382","581440":"08382","581450":"08382","581453":"08382","582101":"08372","582102":"08372","582103":"08372","582111":"08372","582112":"08372","582113":"08372","582114":"08372","582115":"08372","582116":"08372","582117":"08372","582118":"08372","582119":"08372","582120":"08372","582201":"0836","582202":"08372","582203":"08372","582204":"08372","582205":"08372","582206":"08372","582207":"08372","582208":"0836","582209":"08372","582210":"08372","582211":"08372","583101":"08392","583102":"08392","583103":"08392","583104":"08392","583105":"08392","583111":"08392","583112":"08392","583113":"08392","583114":"08392","583115":"08392","583116":"08392","583117":"08392","583118":"08392","583119":"08392","583120":"08392","583121":"08392","583122":"08392","583123":"08392","583124":"08392","583125":"08392","583126":"08392","583127":"08392","583128":"08392","583129":"08392","583130":"08392","583131":"08392","583132":"08392","583134":"08392","583135":"08392","583136":"08392","583137":"08392","583152":"08392","583153":"08392","583154":"08392","583155":"08392","583201":"08392","583203":"08392","583211":"08392","583212":"08392","583213":"08392","583214":"08392","583215":"08392","583216":"08392","583217":"08392","583218":"08392","583219":"08392","583220":"08392","583221":"08392","583222":"08392","583223":"08392","583224":"08392","583225":"08392","583226":"08539","583227":"08539","583228":"08539","583229":"08539","583230":"08539","583231":"08539","583232":"08539","583233":"08539","583234":"08539","583235":"08539","583236":"08539","583237":"08539","583238":"08539","583239":"08392","583268":"08539","583275":"08392","583276":"08392","583277":"08539","583278":"08539","583279":"08539","583280":"08539","583281":"08539","583282":"08539","583283":"08539","583284":"08539","583285":"08539","583287":"08539","584101":"08532","584102":"08532","584103":"08532","584104":"08532","584111":"08532","584113":"08532","584115":"08532","584116":"08532","584118":"08532","584120":"08532","584122":"08532","584123":"08532","584124":"08532","584125":"08532","584126":"08532","584127":"08532","584128":"08532","584129":"08532","584132":"08532","584133":"08532","584134":"08532","584135":"08532","584136":"08532","584138":"08532","584139":"08532","584140":"08532","584143":"08532","584167":"08532","584170":"08532","584202":"08532","584203":"08532","585101":"08472","585102":"08472","585103":"08472","585104":"08472","585105":"08472","585106":"08472","585107":"08472","585201":"08473","585202":"08473","585210":"08472","585211":"08472","585212":"08472","585213":"08472","585214":"08473","585215":"08473","585216":"08473","585217":"08472","585218":"08472","585219":"08473","585220":"08473","585221":"08473","585222":"08472","585223":"08473","585224":"08473","585225":"08472","585226":"08482","585227":"08482","585228":"08472","585229":"08472","585236":"08472","585237":"08473","585265":"08472","585287":"08473","585290":"08473","585291":"08473","585292":"08472","585301":"08472","585302":"08472","585303":"08472","585304":"08473","585305":"08472","585306":"08472","585307":"08472","585308":"08472","585309":"08473","585310":"08472","585311":"08472","585312":"08472","585313":"08472","585314":"08472","585315":"08473","585316":"08472","585317":"08472","585318":"08472","585319":"08473","585320":"08472","585321":"08473","585322":"08472","585323":"08473","585324":"08472","585325":"08472","585326":"08482","585327":"08482","585328":"08482","585329":"08482","585330":"08482","585331":"08482","585353":"08482","585355":"08473","585367":"08472","585401":"08482","585402":"08482","585403":"08482","585404":"08482","585411":"08482","585412":"08482","585413":"08482","585414":"08482","585415":"08482","585416":"08482","585417":"08482","585418":"08482","585419":"08482","585421":"08482","585436":"08482","585437":"08482","585443":"08482","585444":"08482","585445":"08482","585447":"08482","586101":"08352","586103":"08352","586104":"08352","586108":"08352","586109":"08352","586111":"08352","586112":"08352","586113":"08352","586114":"08352","586115":"08352","586116":"08352","586117":"08352","586118":"08352","586119":"08352","586120":"08352","586121":"08352","586122":"08352","586123":"08352","586124":"08352","586125":"08352","586127":"08352","586128":"08352","586129":"08352","586130":"08352","586201":"08352","586202":"08352","586203":"08352","586204":"08352","586205":"08352","586206":"08352","586207":"08352","586208":"08352","586209":"08352","586210":"08352","586211":"08352","586212":"08352","586213":"08352","586214":"08352","586215":"08352","586216":"08352","586217":"08352","587101":"08354","587102":"08354","587103":"08354","587104":"08354","587111":"08354","587112":"08354","587113":"08354","587114":"08354","587115":"08354","587116":"08354","587117":"08354","587118":"08354","587119":"08354","587120":"08354","587121":"08354","587122":"08354","587124":"08354","587125":"08354","587154":"08354","587155":"08354","587156":"08354","587201":"08354","587202":"08354","587203":"08354","587204":"08354","587205":"08354","587206":"08354","587207":"08354","587301":"08354","587311":"08354","587312":"08354","587313":"08354","587314":"08354","587315":"08354","587316":"08354","587330":"08354","587331":"08354","590001":"0831","590003":"0831","590005":"0831","590006":"0831","590008":"0831","590009":"0831","590010":"0831","590011":"0831","590014":"0831","590015":"0831","590016":"0831","590017":"0831","590018":"0831","590019":"0831","590020":"0831","591101":"0831","591102":"0831","591103":"0831","591104":"0831","591106":"0831","591107":"0831","591108":"0831","591109":"0831","591110":"0831","591111":"0831","591112":"0831","591113":"0831","591114":"0831","591115":"0831","591117":"0831","591118":"0831","591119":"0831","591120":"0831","591121":"0831","591122":"0831","591123":"0831","591124":"0831","591125":"0831","591126":"0831","591127":"0831","591128":"0831","591129":"0831","591130":"0831","591131":"0831","591136":"0831","591143":"0831","591147":"0831","591153":"0831","591156":"0831","591173":"0831","591201":"0831","591211":"0831","591212":"0831","591213":"0831","591214":"0831","591215":"0831","591216":"0831","591217":"0831","591218":"0831","591219":"0831","591220":"0831","591221":"0831","591222":"0831","591223":"0831","591224":"0831","591225":"0831","591226":"0831","591227":"0831","591228":"0831","591229":"0831","591230":"0831","591231":"0831","591232":"0831","591233":"0831","591234":"0831","591235":"0831","591236":"0831","591237":"0831","591238":"0831","591239":"0831","591240":"0831","591241":"0831","591242":"0831","591243":"0831","591244":"0831","591246":"0831","591247":"0831","591248":"0831","591254":"0831","591263":"0831","591265":"0831","591287":"0831","591301":"0831","591302":"0831","591303":"0831","591304":"0831","591305":"0831","591306":"0831","591307":"0831","591308":"0831","591309":"0831","591310":"0831","591311":"0831","591312":"0831","591313":"0831","591314":"0831","591315":"0831","591316":"0831","591317":"0831","591340":"0831","591344":"0831","591345":"0831","591346":"0831","600001":"044","600002":"044","600003":"044","600004":"044","600005":"044","600006":"044","600007":"044","600008":"044","600009":"044","600010":"044","600011":"044","600012":"044","600013":"044","600014":"044","600015":"044","600016":"044","600017":"044","600018":"044","600019":"044","600020":"044","600021":"044","600022":"044","600023":"044","600024":"044","600025":"044","600026":"044","600028":"044","600030":"044","600031":"044","600032":"044","600033":"044","600034":"044","600035":"044","600036":"044","600037":"044","600038":"044","600039":"044","600040":"044","600041":"044","600042":"044","600043":"04114","600044":"04114","600045":"04114","600046":"04114","600047":"04114","600048":"04114","600049":"044","600050":"044","600051":"044","600052":"044","600053":"044","600054":"044","600055":"044","600056":"044","600057":"044","600058":"044","600059":"04114","600060":"044","600061":"044","600062":"044","600063":"04114","600064":"04114","600066":"044","600067":"044","600068":"044","600069":"04112","600070":"04114","600071":"044","600072":"044","600073":"04114","600074":"04114","600075":"04114","600076":"044","600077":"044","600078":"044","600081":"044","600082":"044","600083":"044","600084":"044","600085":"044","600086":"044","600087":"044","600088":"044","600089":"04112","600090":"044","600091":"044","600092":"044","600093":"044","600094":"044","600095":"044","600096":"044","600097":"044","600099":"044","600100":"04114","600101":"044","600102":"044","600103":"044","600104":"044","600106":"044","600107":"044","600110":"044","600113":"044","600115":"044","600116":"044","600117":"04114","600118":"044","600119":"044","600120":"044","600122":"04112","600123":"044","600124":"044","600125":"044","600126":"04114","600127":"04114","600128":"04112","600129":"04114","600130":"04114","600131":"04114","600132":"04112","601101":"044","601102":"044","601103":"044","601201":"044","601202":"044","601203":"044","601204":"044","601205":"044","601206":"044","601301":"04112","602001":"044","602002":"044","602003":"044","602021":"044","602023":"044","602024":"044","602025":"044","602026":"044","602105":"044","602106":"04112","602108":"044","602117":"04112","603001":"04114","603002":"04114","603003":"04114","603004":"04114","603101":"04114","603102":"04114","603103":"04114","603104":"04114","603105":"04114","603106":"04112","603107":"04112","603108":"04114","603109":"04114","603110":"04114","603111":"04114","603112":"04114","603127":"04114","603201":"04114","603202":"04112","603203":"04112","603204":"04112","603209":"04114","603210":"04114","603211":"04114","603301":"04114","603302":"04114","603303":"04114","603304":"04114","603305":"04114","603306":"04114","603307":"04114","603308":"04114","603309":"04114","603310":"04114","603311":"04114","603312":"04114","603313":"04114","603314":"04112","603319":"04114","603401":"04114","603402":"04112","603403":"04112","603405":"04114","603406":"04112","604001":"04146","604101":"04146","604102":"04146","604151":"04146","604152":"04146","604153":"04146","604154":"04146","604201":"04146","604202":"04146","604203":"04146","604204":"04146","604205":"04146","604206":"04146","604207":"04146","604208":"04146","604210":"04146","604301":"04146","604302":"04146","604303":"04146","604304":"04146","604305":"04146","604306":"04146","604307":"04146","604401":"04175","604402":"04175","604403":"04175","604404":"04175","604405":"04175","604406":"04175","604407":"04175","604408":"04175","604409":"04175","604410":"04175","604501":"04175","604502":"04175","604503":"04175","604504":"04175","604505":"04175","604601":"04175","605001":"0413","605002":"0413","605003":"0413","605004":"0413","605005":"0413","605006":"0413","605007":"0413","605008":"0413","605009":"0413","605010":"0413","605011":"0413","605013":"0413","605014":"04146","605101":"04146","605102":"04146","605103":"04146","605104":"04146","605105":"04146","605106":"04146","605107":"04146","605108":"04146","605109":"04146","605110":"0413","605111":"04146","605201":"04146","605202":"04146","605203":"04146","605301":"04146","605302":"04146","605401":"04146","605402":"04146","605403":"04146","605501":"04146","605502":"04146","605601":"04146","605602":"04146","605651":"04146","605652":"04146","605701":"04146","605702":"04151","605751":"04151","605752":"04146","605754":"04151","605755":"04146","605756":"04146","605757":"04151","605758":"04146","605759":"04151","605766":"04151","605801":"04151","605802":"04151","605803":"04146","606001":"04142","606003":"04142","606102":"04151","606103":"04142","606104":"04142","606105":"04142","606106":"04142","606107":"04151","606108":"04142","606109":"04142","606110":"04142","606111":"04142","606115":"04151","606201":"04151","606202":"04151","606203":"04151","606204":"04151","606205":"04151","606206":"04151","606207":"04151","606208":"04151","606209":"04151","606213":"04151","606301":"04151","606302":"04142","606303":"04142","606304":"04142","606305":"04151","606401":"04151","606402":"04151","606601":"04175","606603":"04175","606604":"04175","606611":"04175","606701":"04175","606702":"04175","606703":"04175","606704":"04175","606705":"04175","606706":"04175","606707":"04175","606708":"04175","606709":"04175","606710":"04175","606751":"04175","606752":"04175","606753":"04175","606754":"04146","606755":"04175","606801":"04175","606802":"04175","606803":"04175","606804":"04175","606805":"04175","606806":"04175","606807":"04175","606808":"04175","606811":"04175","606901":"04175","606902":"04175","606903":"04175","606904":"04175","606905":"04175","606906":"04175","606907":"04175","606908":"04175","607001":"04142","607002":"04142","607003":"04142","607004":"04142","607005":"04142","607006":"04142","607101":"04146","607102":"04142","607103":"04142","607104":"04142","607105":"04142","607106":"04142","607107":"04146","607108":"04142","607109":"04142","607112":"04142","607201":"04151","607202":"04151","607203":"04146","607204":"04151","607205":"04142","607209":"04146","607301":"04142","607302":"04142","607303":"04142","607308":"04142","607401":"04142","607402":"0413","607403":"0413","607801":"04142","607802":"04142","607803":"04142","607804":"04142","607805":"04142","607807":"04142","608001":"04142","608002":"04365","608102":"04142","608201":"04142","608301":"04142","608302":"04142","608303":"04142","608304":"04142","608305":"04142","608306":"04142","608401":"04142","608501":"04142","608502":"04142","608601":"04142","608602":"04142","608701":"04142","608702":"04142","608703":"04142","608704":"04142","608801":"04142","608901":"04329","609001":"04364","609003":"04364","609101":"04364","609102":"04364","609103":"04364","609104":"04364","609105":"04364","609106":"04364","609107":"04364","609108":"04364","609109":"04364","609110":"04364","609111":"04364","609112":"04364","609113":"04364","609114":"04364","609115":"04364","609116":"04364","609117":"04364","609118":"04364","609201":"04364","609202":"04364","609203":"04364","609204":"04362","609205":"04364","609301":"04364","609302":"04364","609303":"04364","609304":"04364","609305":"04364","609306":"04364","609307":"04364","609308":"04364","609309":"04364","609310":"04364","609311":"04364","609312":"04364","609313":"04364","609314":"04364","609401":"04364","609402":"04364","609403":"04366","609404":"04364","609405":"04366","609501":"04366","609502":"04366","609503":"04366","609504":"04366","609601":"04368","609602":"04368","609603":"04366","609604":"04365","609605":"04368","609606":"04368","609607":"04368","609608":"04366","609609":"04368","609701":"04365","609702":"04365","609703":"04365","609704":"04365","609801":"04364","609802":"04362","609803":"04364","609804":"04362","609805":"04364","609806":"04364","609807":"04362","609808":"04364","609810":"04364","609811":"04364","610001":"04366","610003":"04366","610004":"04366","610005":"04366","610101":"04366","610102":"04366","610103":"04366","610104":"04366","610105":"04366","610106":"04366","610107":"04366","610109":"04366","610201":"04366","610202":"04366","610203":"04366","610204":"04365","610205":"04366","610206":"04366","610207":"04365","611001":"04365","611002":"04365","611003":"04365","611101":"04366","611102":"04365","611103":"04365","611104":"04365","611105":"04365","611106":"04365","611108":"04365","611109":"04365","611110":"04365","611111":"04365","611112":"04365","612001":"04362","612002":"04362","612101":"04362","612102":"04362","612103":"04362","612104":"04362","612105":"04362","612106":"04362","612201":"04366","612202":"04362","612203":"04366","612204":"04362","612301":"04362","612302":"04362","612303":"04362","612401":"04362","612402":"04362","612501":"04362","612502":"04362","612503":"04362","612504":"04362","612601":"04366","612602":"04362","612603":"04366","612604":"04366","612605":"04366","612610":"04366","612701":"04366","612702":"04362","612703":"04362","612801":"04366","612802":"04366","612803":"04366","612804":"04366","612901":"04329","612902":"04329","612903":"04329","612904":"04329","612905":"04329","613001":"04362","613002":"04362","613003":"04362","613004":"04362","613005":"04362","613006":"04362","613007":"04362","613008":"04362","613009":"04362","613010":"04362","613101":"04362","613102":"04362","613103":"04362","613104":"04362","613105":"04362","613201":"04362","613202":"04362","613203":"04362","613204":"04362","613205":"04362","613301":"04322","613303":"04362","613401":"04362","613402":"04362","613403":"04362","613501":"04362","613502":"04362","613503":"04362","613504":"04362","613601":"04362","613602":"04362","613701":"04366","613702":"04366","613703":"04366","613704":"04366","613705":"04366","614001":"04366","614013":"04366","614014":"04366","614015":"04366","614016":"04366","614017":"04366","614018":"04366","614019":"04366","614020":"04366","614101":"04366","614102":"04366","614103":"04366","614201":"04362","614202":"04362","614203":"04362","614204":"04362","614205":"04362","614206":"04362","614207":"04362","614208":"04366","614210":"04362","614211":"04362","614301":"04362","614302":"04366","614303":"04362","614401":"04362","614402":"04362","614403":"04366","614404":"04366","614601":"04362","614602":"04362","614612":"04362","614613":"04362","614614":"04362","614615":"04362","614616":"04322","614617":"04322","614618":"04322","614619":"04322","614620":"04322","614621":"04322","614622":"04322","614623":"04362","614624":"04322","614625":"04362","614626":"04362","614628":"04362","614629":"04322","614630":"04322","614701":"04362","614702":"04366","614703":"04366","614704":"04366","614705":"04366","614706":"04366","614707":"04365","614708":"04366","614710":"04366","614711":"04366","614712":"04365","614713":"04366","614714":"04365","614715":"04366","614716":"04366","614717":"04366","614723":"04362","614738":"04366","614801":"04322","614802":"04362","614803":"04362","614804":"04362","614805":"04322","614806":"04365","614807":"04365","614808":"04365","614809":"04365","614810":"04365","614901":"04362","614902":"04362","614903":"04366","614904":"04362","614905":"04362","614906":"04362","620001":"0431","620002":"0431","620003":"0431","620004":"0431","620005":"0431","620006":"0431","620007":"0431","620008":"0431","620009":"0431","620010":"0431","620011":"0431","620012":"0431","620013":"0431","620014":"0431","620015":"0431","620016":"0431","620017":"0431","620018":"0431","620019":"0431","620020":"0431","620021":"0431","620022":"0431","620023":"0431","620024":"0431","620025":"0431","620026":"0431","620027":"0431","620101":"0431","620102":"0431","621001":"0431","621002":"0431","621003":"0431","621004":"0431","621005":"0431","621006":"0431","621007":"0431","621008":"0431","621009":"0431","621010":"0431","621011":"0431","621012":"0431","621014":"0431","621101":"04328","621102":"04328","621103":"04328","621104":"0431","621105":"0431","621106":"0431","621107":"04328","621108":"04328","621109":"0431","621110":"0427","621111":"0431","621112":"0431","621113":"04328","621114":"04328","621115":"04328","621116":"04328","621117":"04328","621118":"04328","621133":"04328","621202":"0431","621203":"0431","621204":"0431","621205":"0431","621206":"0431","621207":"0431","621208":"0431","621209":"0431","621210":"0431","621211":"0431","621212":"04328","621213":"0431","621214":"0431","621215":"0431","621216":"0431","621217":"0431","621218":"0431","621219":"04328","621220":"0431","621301":"04324","621302":"0431","621305":"0431","621306":"0431","621307":"0431","621308":"0431","621310":"0431","621311":"0431","621312":"0431","621313":"04324","621314":"0431","621315":"0431","621316":"04322","621601":"0431","621651":"0431","621652":"0431","621653":"0431","621701":"04329","621702":"0431","621703":"0431","621704":"04329","621705":"04329","621706":"0431","621707":"04329","621708":"04328","621709":"04329","621710":"04329","621711":"0431","621712":"0431","621713":"04328","621714":"04329","621715":"04329","621716":"04328","621717":"04328","621718":"04329","621719":"04329","621722":"0431","621729":"04329","621730":"04329","621731":"04329","621801":"04329","621802":"04329","621803":"04329","621804":"04329","621805":"04329","621806":"04329","621851":"04329","622001":"04322","622002":"04322","622003":"04322","622004":"04322","622005":"04322","622101":"04322","622102":"0431","622103":"04322","622104":"04322","622201":"04322","622202":"04322","622203":"04322","622204":"04322","622209":"04322","622301":"04322","622302":"04322","622303":"04322","622304":"04322","622401":"04322","622402":"04322","622403":"04575","622404":"04322","622407":"04322","622409":"04322","622411":"04322","622412":"04322","622422":"04322","622501":"04322","622502":"04322","622503":"04322","622504":"04322","622505":"04322","622506":"04322","622507":"04322","622515":"04322","623115":"04567","623120":"04567","623135":"04567","623308":"04567","623315":"04567","623401":"04567","623402":"04567","623403":"04567","623404":"04567","623406":"04567","623407":"04567","623409":"04567","623501":"04567","623502":"04567","623503":"04567","623504":"04567","623512":"04567","623513":"04567","623514":"04567","623515":"04567","623516":"04567","623517":"04567","623518":"04567","623519":"04567","623520":"04567","623521":"04567","623522":"04567","623523":"04567","623524":"04567","623525":"04567","623526":"04567","623527":"04567","623528":"04567","623529":"04567","623530":"04567","623531":"04567","623532":"04567","623533":"04567","623534":"04567","623536":"04567","623537":"04567","623538":"04567","623566":"04567","623601":"04567","623603":"04567","623604":"04567","623605":"04567","623608":"04567","623701":"04567","623703":"04567","623704":"04567","623705":"04567","623706":"04567","623707":"04567","623708":"04567","623711":"04567","623712":"04567","623806":"04567","624001":"0451","624002":"0451","624003":"0451","624004":"0451","624005":"0451","624101":"0451","624103":"0451","624201":"0451","624202":"0451","624204":"0451","624206":"0451","624208":"0451","624210":"0451","624211":"0451","624212":"0451","624215":"0451","624216":"0451","624219":"0451","624220":"0451","624301":"0451","624302":"0451","624303":"0451","624304":"0451","624306":"0451","624307":"0451","624308":"0451","624401":"0451","624402":"0451","624403":"0451","624601":"0451","624610":"0451","624612":"0451","624613":"0451","624614":"0451","624615":"0451","624616":"0451","624617":"0451","624618":"0451","624619":"0451","624620":"0451","624621":"0451","624622":"0451","624701":"0451","624702":"0451","624703":"0451","624704":"0451","624705":"0451","624706":"0451","624707":"0451","624708":"0451","624709":"0451","624710":"0451","624711":"0451","624712":"0451","624801":"0451","624802":"0451","625001":"0452","625002":"0452","625003":"0452","625004":"0452","625005":"0452","625006":"0452","625007":"0452","625008":"0452","625009":"0452","625011":"0452","625012":"0452","625014":"0452","625015":"0452","625016":"0452","625017":"0452","625018":"0452","625019":"0452","625020":"0452","625021":"0452","625022":"0452","625023":"0452","625101":"0452","625102":"04575","625103":"0452","625104":"0452","625105":"0452","625106":"0452","625107":"0452","625108":"0452","625109":"0452","625110":"0452","625122":"0452","625201":"0452","625203":"04546","625205":"0452","625207":"0452","625214":"0452","625218":"0452","625221":"0452","625234":"0452","625301":"0452","625402":"0452","625501":"0452","625503":"0452","625512":"04546","625513":"04546","625514":"0452","625515":"04546","625516":"04546","625517":"04546","625518":"04546","625519":"04546","625520":"04546","625521":"04546","625522":"04546","625523":"04546","625524":"04546","625525":"04546","625526":"04546","625527":"0452","625528":"04546","625529":"0452","625530":"04546","625531":"04546","625532":"0452","625533":"04546","625534":"04546","625535":"0452","625536":"04546","625537":"0452","625540":"04546","625556":"04546","625562":"04546","625579":"04546","625582":"04546","625601":"04546","625602":"04546","625603":"04546","625604":"04546","625605":"04546","625701":"0452","625702":"0452","625703":"0452","625704":"0452","625705":"0452","625706":"0452","625707":"0452","625708":"0452","626001":"04562","626002":"04562","626003":"04562","626004":"04562","626005":"04562","626101":"04562","626102":"04562","626103":"04562","626104":"04562","626105":"04562","626106":"04562","626107":"04562","626108":"04562","626109":"04562","626110":"04562","626111":"04562","626112":"04562","626113":"04562","626114":"04562","626115":"04562","626116":"04562","626117":"04562","626118":"04562","626119":"04562","626121":"04562","626122":"04562","626123":"04562","626124":"04562","626125":"04562","626126":"04562","626127":"04562","626128":"04562","626129":"04562","626130":"04562","626131":"04562","626132":"04562","626133":"04562","626134":"04562","626135":"04562","626136":"04562","626137":"04562","626138":"04562","626139":"04562","626140":"04562","626141":"04562","626142":"04562","626149":"04562","626161":"04562","626188":"04562","626189":"04562","626201":"04562","626202":"04562","626203":"04562","626204":"04562","626205":"04562","626607":"04562","626612":"04562","627001":"0462","627002":"0462","627003":"0462","627004":"0462","627005":"0462","627006":"0462","627007":"0462","627008":"0462","627009":"0462","627010":"0462","627011":"0462","627012":"0462","627101":"0462","627102":"0462","627103":"0462","627104":"0462","627105":"0462","627106":"0462","627107":"0462","627108":"0462","627109":"0462","627110":"0462","627111":"0462","627112":"0462","627113":"0462","627114":"0462","627115":"0462","627116":"0462","627117":"0462","627118":"0462","627119":"0462","627120":"0462","627127":"0462","627133":"0462","627151":"0462","627152":"0462","627201":"0462","627202":"0462","627351":"0462","627352":"0461","627353":"0462","627354":"0462","627355":"0462","627356":"0462","627357":"0462","627358":"0462","627359":"0462","627401":"0462","627412":"04633","627413":"0462","627414":"0462","627415":"04633","627416":"0462","627417":"0462","627418":"0462","627420":"0462","627421":"0462","627422":"0462","627423":"04633","627424":"04633","627425":"0462","627426":"0462","627427":"0462","627428":"0462","627451":"0462","627452":"0462","627453":"0462","627501":"0462","627502":"0462","627601":"0462","627602":"0462","627603":"0462","627604":"0462","627651":"0462","627652":"0462","627654":"0462","627657":"0462","627713":"04562","627719":"04633","627751":"04633","627753":"04633","627754":"04633","627755":"04633","627756":"04633","627757":"04633","627758":"04633","627759":"04633","627760":"04633","627761":"04633","627764":"04633","627802":"04633","627803":"04633","627804":"04633","627805":"04633","627806":"04633","627807":"04633","627808":"04633","627809":"04633","627811":"04633","627812":"04633","627813":"04633","627814":"04633","627818":"04633","627851":"0462","627852":"04633","627853":"04633","627854":"04633","627855":"04633","627856":"04633","627857":"04633","627858":"04633","627859":"04633","627860":"04633","627861":"04633","627862":"04633","627951":"0462","627953":"0462","628001":"0461","628002":"0461","628003":"0461","628004":"0461","628005":"0461","628006":"0461","628007":"0461","628008":"0461","628101":"0461","628102":"0461","628103":"0461","628104":"0461","628105":"0461","628151":"0461","628152":"0461","628201":"0461","628202":"0461","628203":"0461","628204":"0461","628205":"0461","628206":"0461","628207":"0461","628208":"0461","628209":"0461","628210":"0461","628211":"0461","628212":"0461","628213":"0461","628215":"0461","628216":"0461","628217":"0461","628218":"0461","628219":"0461","628229":"0461","628251":"0461","628252":"0461","628301":"0461","628302":"0461","628303":"0461","628304":"0461","628401":"0461","628402":"0461","628501":"0461","628502":"0461","628503":"0461","628552":"0461","628601":"0461","628612":"0461","628613":"0461","628614":"0461","628615":"0461","628616":"0461","628617":"0461","628618":"0461","628619":"0461","628620":"0461","628621":"0461","628622":"0461","628623":"0461","628653":"0461","628656":"0461","628701":"0461","628702":"0461","628703":"0461","628704":"0461","628712":"0461","628714":"0461","628716":"0461","628718":"0461","628720":"0461","628721":"0461","628722":"0461","628751":"0461","628752":"0461","628753":"0461","628801":"0461","628802":"0461","628809":"0461","628851":"0461","628901":"0461","628902":"0461","628903":"0461","628904":"0461","628905":"0461","628906":"0461","628907":"0461","628908":"0461","628952":"0461","629001":"04652","629002":"04652","629003":"04652","629004":"04652","629101":"04652","629102":"04652","629151":"04652","629152":"04652","629153":"04652","629154":"04652","629155":"04652","629156":"04652","629157":"04652","629158":"04652","629159":"04652","629160":"04652","629161":"04652","629162":"04652","629163":"04652","629164":"04652","629165":"04652","629166":"04652","629167":"04652","629168":"04652","629169":"04652","629170":"04652","629171":"04652","629172":"04652","629173":"04652","629174":"04652","629175":"04652","629176":"04652","629177":"04652","629178":"04652","629179":"04652","629180":"04652","629193":"04652","629201":"04652","629202":"04652","629203":"04652","629204":"04652","629251":"04652","629252":"04652","629301":"04652","629302":"04652","629401":"04652","629402":"04652","629403":"04652","629501":"04652","629502":"04652","629601":"04652","629602":"04652","629701":"04652","629702":"04652","629703":"04652","629704":"04652","629801":"04652","629802":"04652","629803":"04652","629804":"04652","629809":"04652","629810":"04652","629851":"04652","629852":"04652","629901":"04652","630001":"04575","630002":"04575","630003":"04575","630005":"04575","630101":"04575","630102":"04575","630103":"04575","630104":"04575","630105":"04575","630106":"04575","630107":"04575","630108":"04575","630201":"04575","630202":"04575","630203":"04575","630204":"04575","630205":"04575","630206":"04575","630207":"04575","630208":"04575","630210":"04575","630211":"04575","630212":"04575","630301":"04575","630302":"04575","630303":"04575","630305":"04575","630306":"04575","630307":"04575","630309":"04575","630311":"04575","630312":"04575","630313":"04575","630314":"04575","630321":"04575","630405":"04575","630408":"04575","630410":"04575","630411":"04575","630501":"04575","630502":"04575","630551":"04575","630552":"04575","630553":"04575","630554":"04575","630555":"04575","630556":"04575","630557":"04575","630558":"04575","630559":"04575","630561":"04575","630562":"04575","630566":"04575","630602":"04575","630606":"04575","630609":"04575","630610":"04562","630611":"04562","630612":"04575","630702":"04575","630709":"04575","630710":"04575","630713":"04575","631001":"04172","631002":"04172","631003":"04172","631004":"04172","631005":"04172","631006":"04172","631051":"04172","631052":"04172","631101":"04172","631102":"04172","631151":"04172","631152":"04172","631201":"044","631202":"044","631203":"044","631204":"044","631205":"044","631206":"044","631207":"044","631208":"044","631209":"044","631210":"044","631211":"044","631212":"044","631213":"044","631301":"044","631302":"044","631303":"044","631304":"044","631402":"044","631501":"04112","631502":"04112","631551":"04112","631552":"04112","631553":"04112","631561":"04112","631601":"04112","631603":"04112","631604":"04112","631605":"04112","631606":"04112","631701":"04175","631702":"04175","632001":"0416","632002":"0416","632004":"0416","632006":"0416","632007":"0416","632008":"0416","632009":"0416","632010":"0416","632011":"0416","632012":"0416","632013":"0416","632014":"0416","632055":"0416","632057":"0416","632058":"0416","632059":"0416","632101":"0416","632102":"0416","632103":"0416","632104":"0416","632105":"0416","632106":"0416","632107":"0416","632113":"0416","632114":"0416","632115":"0416","632201":"0416","632202":"0416","632203":"0416","632204":"0416","632209":"0416","632301":"04175","632311":"04175","632312":"0416","632313":"04175","632314":"04175","632315":"04175","632316":"04175","632317":"04175","632318":"04172","632319":"0416","632326":"04175","632401":"04172","632403":"04172","632404":"04172","632405":"04172","632406":"04172","632501":"04172","632502":"04172","632503":"04172","632504":"04172","632505":"04172","632506":"0416","632507":"04175","632508":"04172","632509":"04172","632510":"04172","632511":"04175","632512":"04175","632513":"04172","632514":"0416","632515":"0416","632516":"0416","632517":"04172","632518":"04175","632519":"0416","632520":"0416","632521":"04172","632531":"04172","632601":"0416","632602":"0416","632603":"0416","632604":"0416","635001":"04343","635002":"04343","635101":"04343","635102":"04343","635103":"04343","635104":"04343","635105":"04343","635106":"04343","635107":"04343","635108":"04343","635109":"04343","635110":"04343","635111":"04342","635112":"04343","635113":"04343","635114":"04343","635115":"04343","635116":"04343","635117":"04343","635118":"04343","635119":"04343","635120":"04343","635121":"04343","635122":"04343","635123":"04343","635124":"04343","635126":"04343","635130":"04343","635201":"04343","635202":"04342","635203":"04343","635204":"04343","635205":"04342","635206":"04343","635207":"04343","635301":"04342","635302":"04342","635303":"04342","635304":"04343","635305":"04342","635306":"04343","635307":"04343","635601":"04577","635602":"04577","635651":"04577","635652":"04577","635653":"04577","635654":"04577","635655":"04577","635701":"04577","635702":"04577","635703":"04175","635710":"04577","635751":"04577","635752":"04577","635754":"04577","635801":"04577","635802":"04577","635803":"0416","635804":"0416","635805":"0416","635806":"0416","635807":"04577","635808":"0416","635809":"0416","635810":"0416","635811":"04577","635812":"04577","635813":"0416","635814":"04577","635815":"04577","635851":"04577","635852":"04577","635853":"04577","635854":"04577","635901":"04577","636001":"0427","636002":"0427","636003":"0427","636004":"0427","636005":"0427","636006":"0427","636007":"0427","636008":"0427","636009":"0427","636010":"0427","636011":"0427","636012":"0427","636013":"0427","636014":"0427","636015":"0427","636016":"0427","636017":"0427","636030":"0427","636101":"0427","636102":"0427","636103":"0427","636104":"0427","636105":"0427","636106":"0427","636107":"0427","636108":"0427","636109":"0427","636110":"0427","636111":"0427","636112":"0427","636113":"0427","636114":"0427","636115":"0427","636116":"0427","636117":"0427","636118":"0427","636119":"0427","636121":"0427","636122":"0427","636138":"0427","636139":"0427","636140":"0427","636141":"0427","636142":"04286","636201":"0427","636202":"04286","636203":"0427","636204":"0427","636301":"04286","636302":"0427","636303":"0427","636304":"0427","636305":"0427","636306":"0427","636307":"0427","636308":"0427","636309":"0427","636351":"0427","636352":"04342","636354":"0427","636401":"0427","636402":"0427","636403":"0427","636404":"0427","636406":"0427","636451":"0427","636452":"0427","636453":"0427","636454":"0427","636455":"0427","636456":"0427","636457":"0427","636458":"0427","636501":"0427","636502":"0427","636503":"0427","636601":"0427","636602":"0427","636701":"04342","636704":"04342","636705":"04342","636803":"04342","636804":"04342","636805":"04342","636806":"04343","636807":"04342","636808":"04342","636809":"04342","636810":"04342","636811":"04342","636812":"04343","636813":"04342","636902":"04343","636903":"04342","636904":"04342","636905":"04342","636906":"04342","637001":"04286","637002":"04286","637003":"04286","637013":"04286","637014":"04286","637015":"04286","637017":"04286","637018":"04286","637019":"04286","637020":"04286","637021":"04286","637101":"0427","637102":"0427","637103":"0427","637104":"0427","637105":"0427","637107":"0427","637201":"04286","637202":"04286","637203":"04286","637204":"04286","637205":"04286","637206":"04286","637207":"04286","637208":"04286","637209":"04286","637210":"04286","637211":"04286","637212":"04286","637213":"04286","637214":"04286","637215":"04286","637301":"0427","637302":"0427","637303":"0427","637304":"0427","637401":"04286","637402":"04286","637403":"04286","637404":"04286","637405":"04286","637406":"04286","637407":"04286","637408":"04286","637409":"04286","637410":"04286","637411":"04286","637412":"04286","637415":"04286","637501":"0427","637502":"0427","637503":"04286","637504":"0427","637505":"04286","638001":"0424","638002":"0424","638003":"0424","638004":"0424","638005":"0424","638006":"04286","638007":"04286","638008":"04286","638009":"0424","638010":"04286","638011":"0424","638012":"0424","638051":"0421","638052":"0424","638053":"0424","638054":"0424","638055":"0424","638056":"0421","638057":"0424","638060":"0424","638101":"0424","638102":"0424","638103":"0421","638104":"0424","638105":"0421","638106":"0421","638107":"0424","638108":"0421","638109":"0424","638110":"0421","638111":"0421","638112":"0424","638115":"0424","638116":"0424","638151":"04324","638152":"0424","638153":"0424","638154":"0424","638181":"04286","638182":"04286","638183":"0427","638301":"0424","638311":"0424","638312":"0424","638313":"0424","638314":"0424","638315":"0424","638316":"0424","638401":"0424","638402":"0424","638451":"0423","638452":"0424","638453":"0424","638454":"0424","638455":"0424","638456":"0424","638457":"0424","638458":"0421","638459":"0421","638460":"0421","638461":"0424","638462":"0421","638476":"0424","638501":"0424","638502":"0424","638503":"0424","638504":"0424","638505":"0424","638506":"0424","638656":"0421","638657":"0421","638660":"0421","638661":"0421","638672":"0421","638673":"0421","638701":"0421","638702":"0421","638703":"0421","638706":"0421","638751":"0421","638752":"0421","638812":"0421","639001":"04324","639002":"04324","639003":"04324","639004":"04324","639005":"04324","639006":"04324","639007":"04324","639008":"04324","639101":"0431","639102":"04324","639103":"0431","639104":"04324","639105":"04324","639107":"04324","639108":"04324","639109":"04324","639110":"04324","639111":"04324","639112":"0431","639113":"04324","639114":"04324","639115":"0431","639116":"04324","639117":"04324","639118":"04324","639119":"04324","639120":"04324","639136":"04324","639201":"0421","639202":"0421","639203":"04324","639205":"04324","639206":"04324","639207":"04324","641001":"0422","641002":"0422","641003":"0422","641004":"0422","641005":"0422","641006":"0422","641007":"0422","641008":"0422","641009":"0422","641010":"0422","641011":"0422","641012":"0422","641013":"0422","641014":"0422","641015":"0422","641016":"0422","641017":"0422","641018":"0422","641019":"0422","641020":"0422","641021":"0422","641022":"0422","641023":"0422","641024":"0422","641025":"0422","641026":"0422","641027":"0422","641028":"0422","641029":"0422","641030":"0422","641031":"0422","641032":"0422","641033":"0422","641034":"0422","641035":"0422","641036":"0422","641037":"0422","641038":"0422","641039":"0422","641040":"0422","641041":"0422","641042":"0422","641043":"0422","641044":"0422","641045":"0422","641046":"0422","641047":"0422","641048":"0422","641049":"0422","641050":"0422","641062":"0422","641101":"0422","641103":"0422","641104":"0422","641105":"0422","641107":"0422","641108":"0422","641109":"0422","641110":"0422","641111":"0422","641112":"0422","641113":"0422","641114":"0422","641201":"0422","641202":"0422","641301":"0422","641302":"0424","641305":"0422","641401":"0421","641402":"0422","641407":"0422","641601":"0421","641602":"0421","641603":"0421","641604":"0421","641605":"0421","641606":"0421","641607":"0421","641652":"0421","641653":"0422","641654":"0421","641655":"0421","641658":"0421","641659":"0422","641662":"0421","641663":"0421","641664":"0421","641665":"0421","641666":"0421","641667":"0421","641668":"0422","641669":"0422","641670":"0421","641671":"0421","641687":"0421","641697":"0422","642001":"0422","642002":"0422","642003":"0422","642004":"0422","642005":"0422","642006":"0422","642007":"0422","642101":"0422","642102":"0421","642103":"0422","642104":"0422","642105":"0422","642106":"0422","642107":"0422","642108":"0422","642109":"0422","642110":"0422","642111":"0421","642112":"0421","642113":"0421","642114":"0422","642117":"0422","642120":"0421","642122":"0421","642123":"0422","642125":"0422","642126":"0421","642127":"0422","642128":"0421","642129":"0422","642130":"0422","642132":"0421","642133":"0422","642134":"0422","642154":"0421","642201":"0421","642202":"0421","642203":"0421","642204":"0421","642205":"0421","642206":"0421","642207":"0421","643001":"0423","643002":"0423","643003":"0423","643004":"0423","643005":"0423","643006":"0423","643007":"0423","643101":"0423","643102":"0423","643103":"0423","643105":"0423","643201":"0423","643202":"0423","643203":"0423","643204":"0423","643205":"0423","643206":"0423","643207":"0423","643209":"0423","643211":"0423","643212":"0423","643213":"0423","643214":"0423","643215":"0423","643216":"0423","643217":"0423","643218":"0423","643219":"0423","643220":"0423","643221":"0423","643223":"0423","643224":"0423","643225":"0423","643226":"0423","643231":"0423","643233":"0423","643236":"0423","643237":"0423","643238":"0423","643239":"0423","643240":"0423","643241":"0423","643242":"0423","643243":"0423","643253":"0423","643270":"0423","670001":"0497","670002":"0497","670003":"0497","670004":"0497","670005":"0497","670006":"0497","670007":"0497","670008":"0497","670009":"0497","670010":"0497","670011":"0497","670012":"0497","670013":"0497","670014":"0497","670017":"0497","670018":"0497","670051":"0497","670101":"0497","670102":"0497","670103":"0497","670104":"0497","670105":"0497","670106":"0497","670107":"0497","670141":"0497","670142":"0497","670143":"0497","670301":"0497","670302":"0497","670303":"0497","670304":"0497","670305":"0497","670306":"0497","670307":"0494","670308":"0497","670309":"0497","670310":"0497","670325":"0497","670327":"0497","670331":"0497","670334":"0497","670353":"0497","670358":"0497","670501":"0497","670502":"0497","670503":"0497","670504":"0497","670511":"04994","670521":"0497","670561":"0497","670562":"0497","670563":"0497","670567":"0497","670571":"0497","670581":"0497","670582":"0497","670591":"0497","670592":"0497","670593":"0497","670594":"0497","670595":"0497","670601":"0497","670602":"0497","670604":"0497","670611":"0497","670612":"0494","670613":"0497","670621":"0497","670622":"0497","670631":"0497","670632":"0497","670633":"0497","670641":"0497","670642":"0497","670643":"0497","670644":"04935","670645":"04935","670646":"04935","670649":"0497","670650":"0497","670651":"0497","670661":"0497","670662":"0497","670663":"0497","670671":"0497","670672":"0497","670673":"0497","670674":"0497","670675":"0497","670676":"0497","670691":"0497","670692":"0497","670693":"0497","670694":"0497","670701":"0497","670702":"0497","670703":"0497","670704":"0497","670705":"0497","670706":"0497","670708":"0497","670721":"04935","670731":"04935","670741":"0497","671121":"04994","671122":"04994","671123":"04994","671124":"04994","671310":"04994","671311":"04994","671312":"04994","671313":"04994","671314":"04994","671315":"04994","671316":"04994","671317":"04994","671318":"04994","671319":"04994","671320":"04994","671321":"04994","671322":"04994","671323":"04994","671324":"04994","671326":"04994","671348":"04994","671351":"04994","671531":"04994","671532":"04994","671533":"04994","671534":"04994","671541":"04994","671542":"04994","671543":"04994","671551":"04994","671552":"04994","673001":"0495","673002":"0495","673003":"0495","673004":"0495","673005":"0495","673006":"0495","673007":"0495","673008":"0495","673009":"0495","673010":"0495","673011":"0495","673012":"0495","673014":"0495","673015":"0495","673016":"0495","673017":"0495","673018":"0495","673019":"0495","673020":"0495","673021":"0495","673027":"0495","673028":"0495","673029":"0495","673032":"0495","673051":"0495","673101":"0495","673102":"0495","673103":"0495","673104":"0495","673105":"0495","673106":"0495","673121":"04935","673122":"04935","673123":"04935","673124":"04935","673301":"0495","673302":"0495","673303":"0495","673304":"0495","673305":"0495","673306":"0495","673307":"0495","673308":"0495","673309":"0495","673310":"0490","673311":"0497","673312":"0497","673313":"0497","673314":"0494","673315":"0495","673316":"0497","673317":"0495","673323":"0495","673328":"0495","673501":"0495","673502":"0495","673503":"0495","673504":"0495","673505":"0495","673506":"0495","673507":"0495","673508":"0495","673509":"0495","673513":"0495","673517":"0495","673521":"0495","673522":"0495","673523":"0495","673524":"0495","673525":"0495","673526":"0495","673527":"0495","673528":"0495","673529":"0495","673541":"0495","673542":"0495","673570":"0495","673571":"0495","673572":"0494","673573":"0495","673574":"0495","673575":"04935","673576":"04935","673577":"04935","673579":"04935","673580":"0495","673581":"04935","673582":"0495","673585":"0495","673586":"0495","673591":"04935","673592":"04935","673593":"04935","673595":"04935","673596":"04935","673601":"0495","673602":"0495","673603":"0495","673604":"0495","673611":"0495","673612":"0495","673613":"0495","673614":"0495","673616":"0495","673620":"0495","673631":"0495","673632":"0494","673633":"0494","673634":"0494","673635":"0494","673636":"0494","673637":"0494","673638":"0494","673639":"0494","673640":"0494","673641":"0494","673642":"0494","673645":"0494","673647":"0494","673655":"0495","673661":"0495","676101":"0494","676102":"0494","676103":"0494","676104":"0494","676105":"0494","676106":"0494","676107":"0494","676108":"0494","676109":"0494","676121":"0494","676122":"0494","676123":"0494","676301":"0494","676302":"0494","676303":"0494","676304":"0494","676305":"0494","676306":"0494","676307":"0494","676309":"0494","676311":"0494","676312":"0494","676317":"0494","676319":"0494","676320":"0494","676501":"0494","676502":"0494","676503":"0494","676504":"0494","676505":"0494","676506":"0494","676507":"0494","676508":"0494","676509":"0494","676510":"0494","676517":"0494","676519":"0494","676521":"0494","676522":"0494","676523":"0494","676525":"0494","676528":"0494","676541":"0494","676542":"0494","676551":"0494","676552":"0494","676553":"0494","676561":"0494","676562":"0494","678001":"0491","678002":"0491","678003":"0491","678004":"0491","678005":"0491","678006":"0491","678007":"0491","678008":"0491","678009":"0491","678010":"0491","678011":"0491","678012":"0491","678013":"0491","678014":"0491","678051":"0491","678101":"0491","678102":"0491","678103":"0491","678104":"0491","678501":"0491","678502":"0491","678503":"0491","678504":"0491","678505":"0491","678506":"0491","678507":"0491","678508":"0491","678510":"0491","678512":"0491","678531":"0491","678532":"0491","678533":"0491","678534":"0491","678541":"0491","678542":"0491","678543":"0491","678544":"0491","678545":"0491","678546":"0491","678551":"0491","678552":"0491","678553":"0491","678554":"0491","678555":"0491","678556":"0491","678557":"0491","678571":"0491","678572":"0491","678573":"0491","678574":"0491","678581":"0491","678582":"0491","678583":"0491","678591":"0491","678592":"0491","678593":"0491","678594":"0491","678595":"0491","678596":"0491","678597":"0491","678598":"0491","678601":"0491","678611":"0491","678612":"0491","678613":"0491","678621":"0491","678622":"0491","678623":"0491","678624":"0491","678631":"0491","678632":"0491","678633":"0491","678641":"0491","678642":"0491","678651":"0491","678661":"0491","678671":"0491","678681":"0491","678682":"0491","678683":"0491","678684":"0491","678685":"0491","678686":"0491","678687":"0491","678688":"0491","678701":"0491","678702":"0491","678703":"0491","678704":"0491","678705":"0491","678706":"0491","678721":"0491","678722":"0491","678731":"0491","678732":"0491","678762":"0491","679101":"0491","679102":"0491","679103":"0491","679104":"0491","679105":"0487","679106":"0487","679121":"0491","679122":"0491","679123":"0491","679301":"0491","679302":"0491","679303":"0491","679304":"0491","679305":"0491","679306":"0491","679307":"0491","679308":"0491","679309":"0491","679313":"0491","679321":"0494","679322":"0494","679323":"0494","679324":"0494","679325":"0494","679326":"0494","679327":"0494","679328":"0494","679329":"0494","679330":"0494","679331":"0494","679332":"0494","679333":"0494","679334":"0494","679335":"0491","679336":"0491","679337":"0491","679338":"0494","679339":"0494","679340":"0494","679341":"0494","679357":"0494","679501":"0491","679502":"0491","679503":"0491","679504":"0491","679505":"0491","679506":"0491","679511":"0491","679512":"0491","679513":"0491","679514":"0491","679515":"0491","679516":"0491","679521":"0491","679522":"0491","679523":"0491","679531":"0487","679532":"0487","679533":"0491","679534":"0491","679535":"0491","679536":"0491","679551":"0491","679552":"0491","679553":"0491","679554":"0491","679561":"0487","679562":"0487","679563":"0487","679564":"0487","679571":"0494","679572":"0494","679573":"0494","679574":"0494","679575":"0494","679576":"0494","679577":"0494","679578":"0494","679579":"0494","679580":"0494","679581":"0494","679582":"0494","679583":"0494","679584":"0494","679585":"0494","679586":"0494","679587":"0494","679591":"0494","680001":"0487","680002":"0487","680003":"0487","680004":"0487","680005":"0487","680006":"0487","680007":"0487","680008":"0487","680009":"0487","680010":"0487","680011":"0487","680012":"0487","680013":"0487","680014":"0487","680020":"0487","680021":"0487","680022":"0487","680026":"0487","680027":"0487","680028":"0487","680101":"0487","680102":"0487","680103":"0487","680104":"0487","680121":"0487","680122":"0487","680123":"0487","680125":"0487","680301":"0487","680302":"0487","680303":"0487","680304":"0487","680305":"0487","680306":"0487","680307":"0487","680308":"0487","680309":"0487","680310":"0487","680311":"0487","680312":"0487","680317":"0487","680501":"0487","680502":"0487","680503":"0487","680504":"0487","680505":"0487","680506":"0487","680507":"0487","680508":"0487","680509":"0487","680510":"0487","680511":"0487","680512":"0487","680513":"0487","680514":"0487","680515":"0487","680516":"0487","680517":"0487","680518":"0487","680519":"0487","680520":"0487","680521":"0487","680522":"0487","680523":"0487","680524":"0487","680541":"0487","680542":"0487","680543":"0487","680544":"0487","680545":"0487","680546":"0487","680551":"0487","680552":"0487","680553":"0487","680555":"0487","680561":"0487","680562":"0487","680563":"0487","680564":"0487","680565":"0487","680566":"0487","680567":"0487","680568":"0487","680569":"0487","680570":"0487","680571":"0487","680581":"0487","680582":"0487","680583":"0487","680584":"0487","680585":"0487","680586":"0487","680587":"0487","680588":"0487","680589":"0487","680590":"0487","680591":"0487","680594":"0487","680596":"0487","680601":"0487","680602":"0487","680604":"0487","680611":"0487","680612":"0487","680613":"0487","680614":"0487","680615":"0487","680616":"0487","680617":"0487","680618":"0487","680619":"0487","680620":"0487","680623":"0487","680631":"0487","680641":"0487","680642":"0487","680651":"0487","680652":"0487","680653":"0487","680654":"0487","680655":"0487","680656":"0487","680661":"0487","680662":"0487","680663":"0487","680664":"0487","680665":"0487","680666":"0487","680667":"0487","680668":"0487","680669":"0487","680670":"0487","680671":"0487","680681":"0487","680682":"0487","680683":"0487","680684":"0487","680685":"0487","680686":"0487","680687":"0487","680688":"0487","680689":"0487","680691":"0487","680697":"0487","680699":"0487","680701":"0487","680702":"0487","680703":"0487","680711":"0487","680712":"0487","680721":"0487","680722":"0487","680724":"0487","680731":"0487","680732":"0487","680733":"0487","680734":"0487","680741":"0487","680751":"0487","682001":"0484","682002":"0484","682003":"0484","682004":"0484","682005":"0484","682006":"0484","682007":"0484","682008":"0484","682009":"0484","682010":"0484","682011":"0484","682012":"0484","682013":"0484","682015":"0484","682016":"0484","682017":"0484","682018":"0484","682019":"0484","682020":"0484","682021":"0484","682022":"0484","682023":"0484","682024":"0484","682025":"0484","682026":"0484","682027":"0484","682028":"0484","682029":"0484","682030":"0484","682031":"0484","682032":"0484","682033":"0484","682034":"0484","682035":"0484","682036":"0484","682037":"0484","682038":"0484","682039":"0484","682040":"0484","682041":"0484","682042":"0484","682050":"0484","682051":"0484","682052":"0484","682301":"0484","682302":"0484","682303":"0484","682304":"0484","682305":"0484","682306":"0484","682307":"0484","682308":"0484","682309":"0484","682310":"0484","682311":"0484","682312":"0484","682313":"0484","682314":"0484","682315":"0484","682316":"0484","682317":"0484","682501":"0484","682502":"0484","682503":"0484","682504":"0484","682505":"0484","682506":"0484","682507":"0484","682508":"0484","682509":"0484","682511":"0484","682551":"04896","682552":"04896","682553":"04896","682554":"04896","682555":"04896","682556":"04896","682557":"04896","682558":"04896","682559":"04896","683101":"0484","683102":"0484","683104":"0484","683105":"0484","683106":"0484","683108":"0484","683110":"0484","683111":"0484","683112":"0484","683501":"0484","683502":"0484","683503":"0484","683511":"0484","683512":"0484","683513":"0484","683514":"0484","683515":"0484","683516":"0484","683517":"0484","683518":"0484","683519":"0484","683520":"0484","683521":"0484","683522":"0484","683541":"0484","683542":"0484","683543":"0484","683544":"0484","683545":"0484","683546":"0484","683547":"0484","683548":"0484","683549":"0484","683550":"0484","683556":"0484","683561":"0484","683562":"0484","683563":"0484","683565":"0484","683571":"0484","683572":"0484","683573":"0484","683574":"0484","683575":"0484","683576":"0484","683577":"0484","683578":"0484","683579":"0484","683580":"0484","683581":"0484","683585":"0484","683587":"0484","683589":"0484","683594":"0484","685501":"04868","685503":"04868","685505":"04868","685507":"04868","685508":"04868","685509":"04868","685511":"04868","685512":"04868","685514":"04868","685515":"04868","685531":"04868","685532":"04868","685533":"0468","685535":"04868","685551":"04868","685552":"04868","685553":"04868","685554":"04868","685561":"04868","685562":"04868","685563":"04868","685565":"04868","685566":"04868","685571":"04868","685581":"04868","685582":"04868","685583":"04868","685584":"04868","685585":"04868","685586":"04868","685587":"04868","685588":"04868","685589":"04868","685590":"04868","685591":"04868","685595":"04868","685601":"04868","685602":"04868","685603":"04868","685604":"04868","685605":"04868","685606":"04868","685607":"04868","685608":"04868","685609":"04868","685612":"04868","685613":"04868","685614":"04868","685615":"04868","685616":"04868","685618":"04868","685619":"04868","685620":"04868","686001":"0481","686002":"0481","686003":"0481","686004":"0481","686005":"0481","686006":"0481","686007":"0481","686008":"0481","686009":"0481","686010":"0481","686011":"0481","686012":"0481","686013":"0481","686014":"0481","686015":"0481","686016":"0481","686017":"0481","686018":"0481","686019":"0481","686020":"0481","686021":"0481","686022":"0481","686041":"0481","686101":"0481","686102":"0481","686103":"0481","686104":"0481","686105":"0481","686106":"0481","686121":"0481","686122":"0481","686123":"0481","686141":"0481","686143":"0481","686144":"0481","686146":"0481","686501":"0481","686502":"0481","686503":"0481","686504":"0481","686505":"0481","686506":"0481","686507":"0481","686508":"0481","686509":"0481","686510":"0468","686511":"0468","686512":"0481","686513":"0481","686514":"0481","686515":"0481","686516":"0481","686517":"0481","686518":"0481","686519":"0481","686520":"0481","686521":"0481","686522":"0481","686531":"0481","686532":"0481","686533":"0481","686534":"0477","686535":"0481","686536":"0481","686537":"0481","686538":"0481","686539":"0481","686540":"0481","686541":"0481","686542":"0481","686543":"0481","686544":"0481","686545":"0481","686546":"0481","686547":"0468","686548":"0481","686555":"0481","686560":"0481","686561":"0481","686562":"0481","686563":"0481","686564":"0481","686571":"0481","686572":"0481","686573":"0481","686574":"0481","686575":"0481","686576":"0481","686577":"0481","686578":"0481","686579":"0481","686580":"0481","686581":"0481","686582":"0481","686583":"0481","686584":"0481","686585":"0481","686586":"0481","686587":"0481","686601":"0481","686602":"0481","686603":"0481","686604":"0481","686605":"0481","686606":"0481","686607":"0481","686608":"0481","686609":"0481","686610":"0481","686611":"0481","686612":"0481","686613":"0481","686616":"0481","686630":"0481","686631":"0481","686632":"0481","686633":"0481","686634":"0481","686635":"0481","686636":"0481","686637":"0481","686651":"0481","686652":"0481","686653":"0481","686661":"0484","686662":"0484","686663":"0484","686664":"0484","686665":"0484","686666":"0484","686667":"0484","686668":"0484","686669":"0484","686670":"0484","686671":"0484","686672":"0484","686673":"0484","686681":"0484","686691":"0484","686692":"0484","686693":"0484","688001":"0477","688002":"0477","688003":"0477","688004":"0477","688005":"0477","688006":"0477","688007":"0477","688008":"0477","688009":"0477","688011":"0477","688012":"0477","688013":"0477","688014":"0477","688501":"0477","688502":"0477","688503":"0477","688504":"0477","688505":"0477","688506":"0477","688521":"0477","688522":"0477","688523":"0477","688524":"0477","688525":"0477","688526":"0477","688527":"0477","688528":"0477","688529":"0477","688530":"0477","688531":"0477","688532":"0477","688533":"0477","688534":"0477","688535":"0477","688536":"0477","688537":"0477","688538":"0477","688539":"0477","688540":"0477","688541":"0477","688555":"0477","688561":"0477","688562":"0477","688570":"0477","688582":"0477","689101":"0468","689102":"0468","689103":"0468","689104":"0468","689105":"0468","689106":"0468","689107":"0468","689108":"0468","689109":"0477","689110":"0468","689111":"0468","689112":"0468","689113":"0468","689115":"0468","689121":"0477","689122":"0468","689123":"0468","689124":"0477","689126":"0477","689501":"0468","689502":"0468","689503":"0468","689504":"0477","689505":"0477","689506":"0477","689507":"0468","689508":"0477","689509":"0477","689510":"0477","689511":"0477","689512":"0477","689513":"0468","689514":"0468","689515":"0468","689520":"0477","689521":"0477","689531":"0468","689532":"0468","689533":"0468","689541":"0468","689542":"0468","689543":"0468","689544":"0468","689545":"0468","689546":"0468","689547":"0468","689548":"0468","689549":"0468","689550":"0468","689551":"0468","689571":"0477","689572":"0477","689573":"0477","689574":"0477","689581":"0468","689582":"0468","689583":"0468","689584":"0468","689585":"0468","689586":"0468","689587":"0468","689588":"0468","689589":"0468","689590":"0477","689591":"0468","689592":"0468","689594":"0468","689595":"0477","689597":"0468","689602":"0468","689611":"0468","689612":"0468","689613":"0468","689614":"0468","689615":"0468","689621":"0468","689622":"0477","689623":"0477","689624":"0477","689625":"0468","689626":"0468","689627":"0477","689641":"0468","689642":"0468","689643":"0468","689644":"0468","689645":"0468","689646":"0468","689647":"0468","689648":"0468","689649":"0468","689650":"0468","689652":"0468","689653":"0468","689654":"0468","689656":"0468","689661":"0468","689662":"0468","689663":"0468","689664":"0468","689666":"0468","689667":"0468","689668":"0468","689671":"0468","689672":"0468","689673":"0468","689674":"0468","689675":"0468","689676":"0468","689677":"0468","689678":"0468","689691":"0468","689692":"0468","689693":"0468","689694":"0468","689695":"0474","689696":"0474","689698":"0468","689699":"0468","689711":"0468","689713":"0468","690101":"0477","690102":"0477","690103":"0477","690104":"0477","690105":"0477","690106":"0477","690107":"0477","690108":"0477","690110":"0477","690501":"0477","690502":"0477","690503":"0477","690504":"0468","690505":"0477","690506":"0477","690507":"0477","690508":"0477","690509":"0477","690510":"0477","690511":"0477","690512":"0477","690513":"0477","690514":"0477","690515":"0477","690516":"0477","690517":"0477","690518":"0474","690519":"0474","690520":"0474","690521":"0474","690522":"0468","690523":"0474","690524":"0474","690525":"0474","690526":"0474","690527":"0477","690528":"0474","690529":"0477","690530":"0477","690531":"0477","690532":"0477","690533":"0477","690534":"0477","690535":"0477","690536":"0474","690537":"0477","690538":"0474","690539":"0474","690540":"0474","690542":"0474","690544":"0474","690546":"0474","690547":"0474","690548":"0477","690558":"0477","690559":"0477","690561":"0474","690571":"0477","690572":"0477","690573":"0474","690574":"0474","691001":"0474","691002":"0474","691003":"0474","691004":"0474","691005":"0474","691006":"0474","691007":"0474","691008":"0474","691009":"0474","691010":"0474","691011":"0474","691012":"0474","691013":"0474","691014":"0474","691015":"0474","691016":"0474","691019":"0474","691020":"0474","691021":"0474","691301":"0474","691302":"0474","691303":"0474","691304":"0474","691305":"0474","691306":"0474","691307":"0474","691308":"0474","691309":"0474","691310":"0474","691311":"0474","691312":"0474","691319":"0474","691322":"0474","691331":"0474","691332":"0474","691333":"0474","691334":"0474","691500":"0474","691501":"0474","691502":"0474","691503":"0474","691504":"0474","691505":"0474","691506":"0474","691507":"0474","691508":"0474","691509":"0474","691510":"0474","691511":"0474","691512":"0474","691515":"0474","691516":"0474","691520":"0474","691521":"0474","691522":"0474","691523":"0468","691524":"0468","691525":"0468","691526":"0468","691527":"0474","691530":"0468","691531":"0474","691532":"0474","691533":"0474","691534":"0474","691535":"0474","691536":"0474","691537":"0474","691538":"0474","691540":"0474","691541":"0474","691543":"0474","691551":"0468","691552":"0468","691553":"0468","691554":"0468","691555":"0468","691556":"0468","691557":"0474","691559":"0474","691560":"0474","691566":"0474","691571":"0474","691572":"0474","691573":"0474","691574":"0474","691576":"0474","691577":"0474","691578":"0474","691579":"0474","691581":"0474","691582":"0474","691583":"0474","691584":"0474","691585":"0474","691589":"0474","691590":"0474","691601":"0474","691602":"0474","695001":"0471","695002":"0471","695003":"0471","695004":"0471","695005":"0471","695006":"0471","695007":"0471","695008":"0471","695009":"0471","695010":"0471","695011":"0471","695012":"0471","695013":"0471","695014":"0471","695015":"0471","695016":"0471","695017":"0471","695018":"0471","695019":"0471","695020":"0471","695021":"0471","695022":"0471","695023":"0471","695024":"0471","695025":"0471","695026":"0471","695027":"0471","695028":"0471","695029":"0471","695030":"0471","695032":"0471","695033":"0471","695034":"0471","695035":"0471","695036":"0471","695038":"0471","695040":"0471","695042":"0471","695043":"0471","695051":"0471","695099":"0471","695101":"0471","695102":"0471","695103":"0471","695104":"0471","695121":"0471","695122":"0471","695123":"0471","695124":"0471","695125":"0471","695126":"0471","695132":"0471","695133":"0471","695134":"0471","695141":"0471","695142":"0471","695143":"0471","695144":"0471","695145":"0471","695146":"0471","695301":"0471","695302":"0471","695303":"0471","695304":"0471","695305":"0471","695306":"0471","695307":"0471","695308":"0471","695309":"0471","695310":"0471","695311":"0471","695312":"0471","695313":"0471","695316":"0471","695317":"0471","695318":"0471","695501":"0471","695502":"0471","695503":"0471","695504":"0471","695505":"0471","695506":"0471","695507":"0471","695508":"0471","695512":"0471","695513":"0471","695521":"0471","695522":"0471","695523":"0471","695524":"0471","695525":"0471","695526":"0471","695527":"0471","695528":"0471","695541":"0471","695542":"0471","695543":"0471","695547":"0471","695551":"0471","695561":"0471","695562":"0471","695563":"0471","695564":"0471","695568":"0471","695570":"0471","695571":"0471","695572":"0471","695573":"0471","695574":"0471","695575":"0471","695581":"0471","695582":"0471","695583":"0471","695584":"0471","695585":"0471","695586":"0471","695587":"0471","695588":"0471","695589":"0471","695601":"0471","695602":"0471","695603":"0471","695604":"0471","695605":"0471","695606":"0471","695607":"0471","695608":"0471","695609":"0471","695610":"0471","695611":"0471","695612":"0471","695614":"0471","695615":"0471","700001":"033","700002":"033","700003":"033","700004":"033","700005":"033","700006":"033","700007":"033","700008":"033","700009":"033","700010":"033","700011":"033","700012":"033","700013":"033","700014":"033","700015":"033","700016":"033","700017":"033","700018":"033","700019":"033","700020":"033","700021":"033","700022":"033","700023":"033","700024":"033","700025":"033","700026":"033","700027":"033","700028":"033","700029":"033","700030":"033","700031":"033","700032":"033","700033":"033","700034":"033","700035":"033","700036":"033","700037":"033","700038":"033","700039":"033","700040":"033","700041":"033","700042":"033","700043":"033","700044":"033","700045":"033","700046":"033","700047":"033","700048":"033","700049":"033","700050":"033","700051":"033","700052":"033","700053":"033","700054":"033","700055":"033","700056":"033","700057":"033","700058":"033","700059":"033","700060":"033","700061":"033","700062":"033","700063":"033","700064":"033","700065":"033","700066":"033","700067":"033","700068":"033","700069":"033","700070":"033","700071":"033","700072":"033","700073":"033","700074":"033","700075":"033","700076":"033","700077":"033","700078":"033","700079":"033","700080":"033","700081":"033","700082":"033","700083":"033","700084":"033","700085":"033","700086":"033","700087":"033","700088":"033","700089":"033","700090":"033","700091":"033","700092":"033","700093":"033","700094":"033","700095":"033","700096":"033","700097":"033","700099":"033","700100":"033","700101":"033","700102":"033","700103":"033","700104":"033","700105":"033","700106":"033","700107":"033","700108":"033","700109":"033","700110":"033","700111":"033","700112":"033","700113":"033","700114":"033","700115":"033","700116":"033","700117":"033","700118":"033","700119":"033","700120":"033","700121":"033","700122":"033","700123":"033","700124":"033","700125":"033","700126":"033","700127":"033","700128":"033","700129":"033","700130":"033","700131":"033","700132":"033","700133":"033","700134":"033","700135":"033","700136":"033","700137":"033","700138":"033","700139":"033","700140":"033","700141":"033","700142":"033","700143":"033","700144":"033","700145":"033","700146":"033","700147":"033","700148":"033","700149":"033","700150":"033","700151":"033","700152":"033","700153":"033","700154":"033","700155":"033","700156":"033","700157":"033","700158":"033","700159":"033","700160":"033","700161":"033","700162":"033","700163":"033","711101":"033","711102":"033","711103":"033","711104":"033","711105":"033","711106":"033","711107":"033","711108":"033","711109":"033","711110":"033","711111":"033","711112":"033","711113":"033","711114":"033","711115":"033","711201":"033","711202":"033","711203":"033","711204":"033","711205":"033","711206":"033","711225":"033","711226":"033","711227":"033","711301":"033","711302":"033","711303":"033","711304":"033","711305":"033","711306":"033","711307":"033","711308":"033","711309":"033","711310":"033","711312":"033","711313":"033","711314":"033","711315":"033","711316":"033","711317":"033","711322":"033","711331":"033","711401":"033","711403":"033","711404":"033","711405":"033","711408":"033","711409":"033","711410":"033","711411":"033","711412":"033","711413":"033","711414":"033","712101":"033","712102":"033","712103":"033","712104":"033","712105":"033","712121":"033","712122":"03222","712123":"033","712124":"033","712125":"033","712134":"0342","712135":"033","712136":"033","712137":"033","712138":"033","712139":"033","712146":"0342","712147":"033","712148":"033","712149":"033","712152":"033","712201":"033","712202":"033","712203":"033","712204":"033","712221":"033","712222":"033","712223":"033","712232":"033","712233":"033","712234":"033","712235":"033","712245":"033","712246":"033","712248":"033","712249":"033","712250":"033","712258":"033","712301":"033","712302":"033","712303":"033","712304":"033","712305":"033","712306":"033","712308":"0342","712310":"033","712311":"033","712401":"033","712402":"0342","712403":"033","712404":"033","712405":"033","712406":"033","712407":"033","712408":"033","712409":"033","712410":"0342","712412":"033","712413":"0342","712414":"033","712415":"033","712416":"033","712417":"033","712501":"033","712502":"033","712503":"033","712504":"033","712512":"0342","712513":"033","712514":"033","712515":"033","712601":"033","712602":"033","712611":"033","712612":"033","712613":"033","712614":"033","712615":"033","712616":"033","712617":"033","712701":"033","712702":"033","712706":"033","713101":"0342","713102":"0342","713103":"0342","713104":"0342","713121":"0342","713122":"0342","713123":"0342","713124":"0342","713125":"0342","713126":"0342","713127":"0342","713128":"0342","713129":"0342","713130":"0342","713131":"0342","713132":"0342","713140":"0342","713141":"0342","713142":"0342","713143":"0342","713144":"0342","713145":"0342","713146":"0342","713147":"0342","713148":"0342","713149":"0342","713150":"0342","713151":"0342","713152":"0342","713153":"0342","713154":"0342","713166":"0342","713201":"0341","713202":"0341","713203":"0341","713204":"0341","713205":"0341","713206":"0341","713207":"0341","713208":"0341","713209":"0341","713210":"0341","713211":"0341","713212":"0341","713213":"0341","713214":"0341","713215":"0341","713216":"0341","713217":"0341","713301":"0341","713302":"0341","713303":"0341","713304":"0341","713305":"0341","713315":"0341","713321":"0341","713322":"0341","713323":"0341","713324":"0341","713325":"0341","713326":"0341","713330":"0341","713331":"0341","713332":"0341","713333":"0341","713334":"0341","713335":"0341","713336":"0341","713337":"0341","713338":"0341","713339":"0341","713340":"0341","713341":"0341","713342":"0341","713343":"0341","713344":"0341","713346":"0341","713347":"0341","713357":"0341","713358":"0341","713359":"0341","713360":"0341","713361":"0341","713362":"0341","713363":"0341","713365":"0341","713369":"0341","713370":"0341","713371":"0341","713372":"0341","713373":"0341","713376":"0341","713378":"0341","713381":"0341","713384":"0341","713385":"0341","713386":"0341","713401":"0342","713403":"0342","713404":"0342","713405":"0342","713406":"0342","713407":"0342","713408":"0342","713409":"0342","713420":"0342","713421":"0342","713422":"0342","713423":"0342","713424":"0342","713426":"0342","713427":"0342","713428":"0342","713502":"0342","713512":"0342","713513":"0342","713514":"0342","713515":"0342","713519":"0342","713520":"0342","721101":"03222","721102":"03222","721121":"03222","721122":"03222","721124":"03222","721125":"03221","721126":"03222","721127":"03222","721128":"03222","721129":"03222","721130":"03222","721131":"03222","721132":"03222","721133":"03222","721134":"03228","721135":"03222","721136":"03222","721137":"03228","721139":"03222","721140":"03222","721143":"03221","721144":"03222","721145":"03222","721146":"03222","721147":"03222","721148":"03222","721149":"03222","721150":"03222","721151":"03228","721152":"03222","721153":"03222","721154":"03222","721155":"03222","721156":"03222","721157":"03222","721158":"03228","721159":"03221","721160":"03222","721161":"03222","721166":"03222","721171":"03228","721172":"03228","721201":"03222","721211":"03222","721212":"03222","721222":"03222","721232":"03222","721242":"03222","721253":"03222","721260":"03222","721301":"03222","721302":"03222","721303":"03222","721304":"03222","721305":"03222","721306":"03222","721401":"03228","721402":"03228","721403":"03228","721404":"03228","721405":"03228","721406":"03228","721420":"03222","721422":"03228","721423":"03228","721424":"03222","721425":"03228","721426":"03222","721427":"03228","721428":"03228","721429":"03228","721430":"03228","721431":"03228","721432":"03228","721433":"03228","721434":"03228","721435":"03222","721436":"03222","721437":"03222","721438":"03228","721439":"03228","721440":"03228","721441":"03228","721442":"03228","721443":"03222","721444":"03228","721445":"03222","721446":"03228","721447":"03228","721448":"03228","721449":"03228","721450":"03228","721451":"03222","721452":"03228","721453":"03228","721454":"03228","721455":"03228","721456":"03228","721457":"03222","721458":"03228","721463":"03228","721467":"03222","721501":"03221","721503":"03221","721504":"03221","721505":"03221","721506":"03221","721507":"03221","721513":"03222","721514":"03221","721515":"03221","721516":"03222","721517":"03221","721601":"03228","721602":"03228","721603":"03228","721604":"03228","721606":"03228","721607":"03228","721624":"03228","721625":"03228","721626":"03228","721627":"03228","721628":"03228","721629":"03228","721631":"03228","721632":"03228","721633":"03228","721634":"03228","721635":"03228","721636":"03228","721637":"03228","721641":"03222","721642":"03228","721643":"03228","721644":"03228","721645":"03228","721646":"03228","721647":"03228","721648":"03228","721649":"03228","721650":"03228","721651":"03228","721652":"03228","721653":"03228","721654":"03228","721655":"03228","721656":"03228","721657":"03228","721658":"03228","721659":"03228","722101":"03242","722102":"03242","722121":"03242","722122":"03242","722132":"03242","722133":"03242","722134":"03242","722135":"03242","722136":"03242","722137":"03242","722138":"03242","722139":"03242","722140":"03242","722141":"03242","722142":"03242","722143":"03242","722144":"03242","722146":"03242","722147":"03242","722148":"03242","722149":"03242","722150":"03242","722151":"03242","722152":"03242","722153":"03242","722154":"03242","722155":"03242","722156":"03242","722157":"03242","722158":"03242","722160":"03242","722161":"03242","722162":"03242","722164":"03242","722173":"03242","722183":"03242","722201":"03242","722202":"03242","722203":"03242","722204":"03242","722205":"03242","722206":"03242","722207":"03242","722208":"03242","723101":"03252","723102":"03252","723103":"03252","723104":"03252","723121":"03252","723126":"03252","723127":"03252","723128":"03252","723129":"03252","723130":"03252","723131":"03252","723132":"03252","723133":"03252","723142":"03252","723143":"03252","723145":"03252","723146":"03252","723147":"03252","723148":"03252","723149":"03252","723151":"03252","723152":"03252","723153":"03252","723154":"03252","723155":"03252","723156":"03252","723201":"03252","723202":"03252","723212":"03252","723213":"03252","723215":"03252","731101":"03462","731102":"03462","731103":"03462","731104":"03462","731121":"03462","731123":"03462","731124":"03462","731125":"03462","731126":"03462","731127":"03462","731129":"03462","731130":"03462","731132":"03462","731133":"03462","731201":"03462","731202":"03462","731204":"03462","731214":"0342","731215":"0342","731216":"03462","731218":"03462","731219":"03483","731220":"03462","731221":"03483","731222":"03483","731223":"03462","731224":"03462","731233":"03462","731234":"03462","731235":"03462","731236":"03462","731237":"03462","731238":"03462","731240":"03462","731241":"03483","731242":"03462","731243":"03462","731244":"03483","731245":"03462","731301":"03462","731302":"03462","731303":"03462","731304":"03462","732101":"03512","732102":"03512","732103":"03512","732121":"03512","732122":"03512","732123":"03512","732124":"03512","732125":"03512","732126":"03512","732127":"03512","732128":"03512","732138":"03512","732139":"03512","732140":"03512","732141":"03512","732142":"03512","732144":"03512","732201":"03512","732202":"03512","732203":"03512","732204":"03512","732205":"03512","732206":"03512","732207":"03512","732208":"03512","732209":"03512","732210":"03512","732215":"03512","732216":"03512","733101":"03522","733102":"03522","733103":"03522","733121":"03522","733123":"03523","733124":"03512","733125":"03523","733126":"03522","733127":"03522","733128":"03523","733129":"03523","733130":"03523","733132":"03523","733133":"03522","733134":"03523","733140":"03522","733141":"03522","733142":"03512","733143":"03523","733145":"03522","733156":"03523","733158":"03523","733201":"03523","733202":"03523","733207":"03523","733208":"03523","733209":"03523","733210":"03523","733215":"03523","734001":"03561","734002":"0354","734003":"0354","734004":"03561","734005":"0354","734006":"03561","734007":"03561","734008":"03552","734009":"0354","734010":"0354","734011":"0354","734012":"0354","734013":"0354","734014":"0354","734015":"03561","734101":"0354","734102":"0354","734103":"0354","734104":"0354","734105":"0354","734201":"0354","734203":"0354","734204":"0354","734209":"0354","734213":"0354","734214":"0354","734215":"0354","734216":"0354","734217":"0354","734218":"0354","734220":"0354","734221":"0354","734222":"0354","734223":"0354","734224":"0354","734226":"0354","734301":"03552","734311":"03552","734312":"03552","734313":"0354","734314":"03552","734315":"03552","734316":"03552","734421":"0354","734423":"0354","734424":"0354","734425":"0354","734426":"0354","734427":"0354","734429":"0354","734434":"0354","734501":"03561","734503":"03552","735101":"03561","735102":"03561","735121":"03561","735122":"03561","735132":"03561","735133":"03561","735134":"03561","735135":"03561","735202":"03561","735203":"03561","735204":"03564","735205":"03561","735206":"03552","735207":"03561","735208":"03564","735209":"03561","735210":"03561","735211":"03582","735212":"03561","735213":"03564","735214":"03564","735215":"03564","735216":"03561","735217":"03564","735218":"03561","735219":"03561","735220":"03564","735221":"03561","735222":"03561","735223":"03552","735224":"03561","735225":"03561","735226":"03564","735227":"03564","735228":"03561","735229":"03561","735230":"03561","735231":"03552","735232":"03561","735233":"03561","735234":"03561","735301":"03582","735302":"03561","735303":"03582","735304":"03582","735305":"03561","736101":"03582","736121":"03582","736122":"03564","736123":"03564","736131":"03582","736133":"03582","736134":"03582","736135":"03582","736145":"03582","736146":"03582","736156":"03582","736157":"03582","736158":"03582","736159":"03582","736160":"03582","736165":"03582","736167":"03582","736168":"03582","736169":"03582","736170":"03582","736171":"03582","736172":"03582","736176":"03582","736179":"03582","736182":"03564","736201":"03564","736202":"03564","736203":"03564","736204":"03564","736205":"03564","736206":"03564","736207":"03582","736208":"03564","737101":"03592","737102":"03592","737103":"03592","737106":"03592","737107":"03592","737111":"03595","737113":"03595","737116":"03592","737120":"03592","737121":"03595","737126":"011","737128":"011","737131":"03592","737132":"011","737133":"03592","737134":"011","737135":"03592","737136":"03592","737139":"011","741101":"03472","741102":"03472","741103":"03472","741121":"03472","741122":"03472","741123":"03474","741124":"03472","741125":"03472","741126":"03472","741127":"03472","741137":"03472","741138":"03472","741139":"03472","741140":"03472","741150":"03472","741151":"03472","741152":"03472","741153":"03472","741154":"03472","741155":"03472","741156":"03472","741157":"03472","741158":"03472","741159":"03472","741160":"03472","741161":"03472","741162":"03472","741163":"03472","741164":"03472","741165":"03472","741166":"03472","741167":"03472","741181":"03472","741201":"03472","741202":"03472","741221":"03472","741222":"03472","741223":"03472","741232":"03472","741234":"03472","741235":"03472","741238":"03472","741245":"03472","741246":"03472","741247":"03472","741248":"03472","741249":"03472","741250":"03472","741251":"03472","741252":"03472","741253":"03472","741254":"03472","741255":"03472","741256":"03472","741257":"03472","741301":"03472","741302":"03472","741313":"03472","741315":"03472","741316":"0342","741317":"03472","741319":"0342","741401":"03472","741402":"03472","741404":"03472","741501":"03472","741502":"03472","741503":"03472","741504":"03472","741505":"03472","741506":"03472","741507":"03472","741508":"03472","741509":"03472","742101":"03483","742102":"03483","742103":"03483","742104":"03483","742113":"03483","742121":"03472","742122":"03483","742123":"03483","742132":"03483","742133":"03483","742134":"03483","742135":"03483","742136":"03483","742137":"03483","742138":"03483","742140":"03483","742147":"03483","742148":"03483","742149":"03483","742151":"03483","742159":"03483","742160":"03483","742161":"03483","742163":"03483","742164":"03483","742165":"03483","742166":"03483","742168":"03483","742174":"03483","742175":"03483","742184":"03483","742187":"03483","742189":"03483","742201":"03483","742202":"03483","742212":"03483","742213":"03483","742223":"03483","742224":"03483","742225":"03483","742226":"03483","742227":"03483","742235":"03483","742236":"03483","742237":"03483","742238":"03483","742301":"03483","742302":"03483","742303":"03483","742304":"03483","742305":"03483","742306":"03483","742308":"03483","742401":"03483","742402":"03483","742404":"03483","742405":"03483","742406":"03483","742407":"03483","742408":"03483","742409":"03483","742410":"03483","743122":"033","743123":"033","743124":"033","743125":"033","743126":"033","743127":"033","743128":"033","743129":"033","743130":"033","743133":"033","743134":"033","743135":"033","743136":"033","743144":"033","743145":"033","743165":"033","743166":"033","743193":"033","743194":"033","743221":"033","743222":"033","743223":"033","743232":"033","743233":"033","743234":"033","743235":"033","743245":"033","743247":"033","743248":"033","743249":"033","743251":"033","743252":"033","743262":"033","743263":"033","743268":"033","743270":"033","743271":"033","743272":"033","743273":"033","743286":"033","743287":"033","743289":"033","743290":"033","743291":"033","743292":"033","743293":"033","743294":"033","743297":"033","743312":"033","743318":"033","743329":"033","743330":"033","743331":"033","743332":"033","743336":"033","743337":"033","743338":"033","743345":"033","743347":"033","743348":"033","743349":"033","743351":"033","743354":"033","743355":"033","743356":"033","743357":"033","743363":"033","743368":"033","743370":"033","743371":"033","743372":"033","743373":"033","743374":"033","743375":"033","743376":"033","743377":"033","743378":"033","743383":"033","743387":"033","743395":"033","743399":"033","743401":"033","743405":"033","743411":"033","743412":"033","743422":"033","743423":"033","743424":"033","743425":"033","743426":"033","743427":"033","743428":"033","743429":"033","743435":"033","743437":"033","743438":"033","743439":"033","743442":"033","743445":"033","743446":"033","743456":"033","743502":"033","743503":"033","743504":"033","743513":"033","743609":"033","743610":"033","743611":"033","743613":"033","743701":"033","743702":"033","743704":"033","743710":"033","743711":"033","744101":"03192","744102":"03192","744103":"03192","744104":"03192","744105":"03192","744106":"03192","744107":"03192","744112":"03192","744201":"03192","744202":"03192","744203":"03192","744204":"03192","744205":"03192","744206":"03192","744207":"03192","744209":"03192","744210":"03192","744211":"03192","744301":"03193","744302":"03193","744303":"03193","744304":"03193","751001":"06755","751002":"06755","751003":"06755","751004":"06755","751005":"06755","751006":"06755","751007":"06755","751008":"06755","751009":"06755","751010":"06755","751011":"06755","751012":"06755","751013":"06755","751014":"06755","751015":"06755","751016":"06755","751017":"06755","751018":"06755","751019":"06755","751020":"06755","751021":"06755","751022":"06755","751023":"06755","751024":"06755","751025":"06755","751026":"06755","751027":"06755","751028":"06755","751029":"06755","751030":"06755","751031":"06755","751032":"06755","751033":"06755","751034":"06755","752001":"06752","752002":"06752","752003":"06752","752004":"06752","752010":"06752","752011":"06752","752012":"06752","752013":"06752","752014":"06752","752015":"06752","752016":"06752","752017":"06752","752018":"06755","752019":"06752","752020":"06755","752021":"06755","752022":"06755","752023":"06755","752024":"03223","752025":"03223","752026":"03223","752027":"06755","752030":"06752","752031":"06755","752032":"06752","752034":"06755","752035":"06755","752037":"06755","752038":"06755","752045":"06752","752046":"06752","752050":"06752","752054":"06755","752055":"06755","752056":"06755","752057":"06755","752060":"06755","752061":"06755","752062":"06755","752063":"03223","752064":"06755","752065":"03223","752066":"06755","752068":"03223","752069":"03223","752070":"03223","752077":"03223","752078":"03223","752079":"03223","752080":"03223","752081":"03223","752082":"03223","752083":"03223","752084":"03223","752085":"03223","752089":"03223","752090":"03223","752091":"03223","752092":"03223","752093":"03223","752094":"03223","752100":"06752","752101":"06755","752102":"06755","752103":"06755","752104":"06752","752105":"06752","752106":"06752","752107":"06752","752108":"06752","752109":"06752","752110":"06752","752111":"06752","752113":"06752","752114":"06752","752115":"06755","752116":"06752","752118":"06752","752119":"06752","752120":"06752","752121":"06752","753001":"0671","753002":"0671","753003":"0671","753004":"0671","753006":"0671","753007":"0671","753008":"0671","753009":"0671","753010":"0671","753011":"0671","753012":"0671","753013":"0671","753014":"0671","753015":"0671","753016":"0671","754001":"06755","754002":"0671","754003":"0671","754004":"06752","754005":"06755","754006":"0671","754007":"0671","754008":"0671","754009":"0671","754010":"0671","754011":"0671","754012":"06755","754013":"0671","754018":"0671","754021":"0671","754022":"0671","754023":"06726","754024":"06726","754025":"0671","754026":"0671","754027":"0671","754028":"0671","754029":"0671","754030":"0671","754031":"0671","754032":"0671","754034":"0671","754035":"0671","754037":"0671","754071":"0671","754082":"06726","754100":"0671","754102":"06724","754103":"06724","754104":"06724","754105":"0671","754106":"06724","754107":"06724","754108":"06724","754109":"06724","754110":"06724","754111":"06724","754112":"0671","754113":"06724","754114":"06724","754119":"06724","754120":"06724","754130":"0671","754131":"0671","754132":"06724","754133":"06724","754134":"06727","754135":"06727","754136":"06724","754137":"06724","754138":"06724","754139":"06724","754140":"06727","754141":"06727","754142":"06727","754143":"06724","754145":"06724","754153":"06727","754160":"06724","754162":"06727","754200":"0671","754201":"0671","754202":"0671","754203":"0671","754204":"0671","754205":"06726","754206":"0671","754207":"06727","754208":"06727","754209":"0671","754210":"06727","754211":"06727","754212":"06727","754213":"06727","754214":"06727","754215":"06727","754216":"06727","754217":"06622","754218":"06727","754219":"06727","754220":"06727","754221":"0671","754222":"06727","754223":"06727","754224":"06727","754225":"06727","754227":"06727","754228":"06727","754231":"06727","754239":"06727","754240":"06727","754244":"06727","754245":"06727","754246":"06727","754248":"06727","754250":"06727","754253":"06727","754289":"06727","754290":"0671","754292":"06727","754293":"0671","754294":"06724","754295":"0671","754296":"06726","754297":"0671","754298":"0671","755001":"06726","755003":"06726","755004":"06727","755005":"06726","755006":"06726","755007":"06726","755008":"06726","755009":"06726","755010":"06726","755011":"06726","755012":"06726","755013":"06726","755014":"06726","755015":"06726","755016":"06727","755017":"06726","755018":"06726","755019":"06728","755020":"06726","755022":"06726","755023":"06726","755024":"06726","755025":"06726","755026":"06726","755027":"06726","755028":"06726","755036":"06726","755043":"06726","755044":"06726","755049":"06726","755050":"06726","755051":"06726","755061":"06727","755062":"06726","756001":"06782","756002":"06782","756003":"06782","756019":"06782","756020":"06782","756021":"06782","756022":"06782","756023":"06782","756024":"06782","756025":"06782","756026":"06782","756027":"06782","756028":"06792","756029":"06782","756030":"06792","756032":"06782","756033":"06782","756034":"06782","756035":"06782","756036":"06782","756037":"06782","756038":"06782","756039":"06782","756040":"06782","756041":"06782","756042":"06782","756043":"06782","756044":"06782","756045":"06782","756046":"06784","756047":"06782","756048":"06782","756049":"06782","756051":"06782","756055":"06782","756056":"06782","756058":"06782","756059":"06782","756060":"06782","756079":"06782","756080":"06782","756081":"06782","756083":"06782","756084":"06782","756085":"06782","756086":"06782","756087":"06782","756088":"06782","756089":"06782","756100":"06784","756101":"06784","756111":"06784","756112":"06784","756113":"06784","756114":"06784","756115":"06784","756116":"06784","756117":"06784","756118":"06784","756119":"06784","756120":"06784","756121":"06766","756122":"06784","756123":"06784","756124":"06784","756125":"06784","756126":"06782","756127":"06784","756128":"06784","756129":"06784","756130":"06784","756131":"06784","756132":"06784","756133":"06784","756134":"06782","756135":"06784","756137":"06784","756138":"06784","756139":"06784","756144":"06784","756162":"06784","756163":"06784","756164":"06784","756165":"06784","756166":"06782","756167":"06784","756168":"06784","756171":"06784","756181":"06784","756182":"06782","757001":"06792","757002":"06792","757003":"06792","757014":"06792","757016":"06792","757017":"06792","757018":"06792","757019":"06792","757020":"06792","757021":"06792","757022":"06792","757023":"06792","757024":"06792","757025":"06792","757026":"06792","757027":"06792","757028":"06792","757029":"06792","757030":"06792","757031":"06792","757032":"06792","757033":"06792","757034":"06792","757035":"06792","757036":"06792","757037":"06792","757038":"06792","757039":"06792","757040":"06792","757041":"06792","757042":"06792","757043":"06792","757045":"06792","757046":"06792","757047":"06792","757048":"06792","757049":"06792","757050":"06792","757051":"06792","757052":"06792","757053":"06792","757054":"06792","757055":"06792","757073":"06792","757074":"06792","757075":"06792","757077":"06792","757079":"06792","757081":"06792","757082":"06792","757083":"06792","757084":"06792","757085":"06792","757086":"06792","757087":"06792","757091":"06792","757092":"06792","757093":"06792","757100":"06792","757101":"06792","757102":"06792","757103":"06792","757104":"06792","757105":"06792","757106":"06792","757107":"06792","758001":"06766","758002":"06766","758013":"06766","758014":"06766","758015":"06766","758016":"06766","758017":"06766","758018":"06766","758019":"06766","758020":"06766","758021":"06766","758022":"06766","758023":"06766","758025":"06766","758026":"06766","758027":"06766","758028":"06766","758029":"06766","758030":"06766","758031":"06766","758032":"06766","758034":"06766","758035":"06766","758036":"06766","758037":"06766","758038":"06766","758040":"06766","758041":"06766","758043":"06766","758044":"06766","758045":"06766","758046":"06766","758047":"06766","758076":"06766","758078":"06766","758079":"06766","758080":"06766","758081":"06766","758082":"06766","758083":"06766","758084":"06766","758085":"06766","758086":"06766","758087":"06766","759001":"06762","759013":"06762","759014":"06762","759015":"06762","759016":"06762","759017":"06762","759018":"06762","759019":"06762","759020":"06762","759021":"06762","759022":"06762","759023":"06762","759024":"06762","759025":"06762","759026":"06762","759027":"06762","759028":"06762","759029":"06762","759037":"06764","759039":"06762","759040":"06764","759100":"06764","759101":"06764","759102":"06764","759103":"06764","759104":"06764","759105":"06764","759106":"06764","759107":"06764","759111":"06764","759116":"06764","759117":"06764","759118":"06764","759119":"06764","759120":"06762","759121":"06762","759122":"06762","759123":"06764","759124":"06764","759125":"06764","759126":"06764","759127":"06764","759128":"06762","759129":"06764","759130":"06764","759132":"06764","759141":"06764","759143":"06764","759145":"06764","759146":"06762","759147":"06764","759148":"06764","759149":"06764","759151":"06762","760001":"06811","760002":"06811","760003":"06811","760004":"06811","760005":"06811","760006":"06811","760007":"06811","760008":"06811","760009":"06811","760010":"06811","760011":"06811","761001":"06811","761002":"06811","761003":"06811","761004":"06811","761005":"06811","761006":"06811","761007":"06811","761008":"06811","761009":"06811","761010":"06811","761011":"06811","761012":"06811","761013":"06811","761014":"06811","761015":"06815","761016":"06815","761017":"06815","761018":"06811","761019":"06811","761020":"06811","761025":"06811","761026":"06811","761027":"06811","761028":"06811","761029":"06811","761030":"06811","761031":"06811","761032":"06811","761035":"06811","761037":"06811","761041":"06811","761042":"06811","761043":"06811","761045":"06811","761052":"06811","761054":"06811","761055":"06811","761100":"06811","761101":"06811","761102":"06811","761103":"06811","761104":"06811","761105":"06811","761106":"06811","761107":"06811","761108":"06842","761109":"06811","761110":"06811","761111":"06811","761114":"06811","761115":"06811","761116":"06811","761117":"06811","761118":"06811","761119":"06811","761120":"06811","761121":"06811","761122":"06811","761123":"06811","761124":"06811","761125":"06842","761126":"06811","761131":"06811","761132":"06811","761133":"06811","761140":"06811","761141":"06811","761143":"06811","761144":"06811","761146":"06811","761151":"06842","761200":"06815","761201":"06815","761206":"06815","761207":"06815","761208":"06815","761209":"06811","761210":"06815","761211":"06815","761212":"06815","761213":"06815","761214":"06815","761215":"06815","761217":"06815","762001":"06842","762002":"06842","762010":"06842","762011":"06842","762012":"06842","762013":"06841","762014":"06841","762015":"06841","762016":"06841","762017":"06841","762018":"06841","762019":"06842","762020":"06841","762021":"06842","762022":"06842","762023":"06841","762024":"06841","762026":"06841","762027":"06842","762028":"06842","762029":"06842","762030":"06841","762100":"06842","762101":"06842","762102":"06842","762103":"06842","762104":"06842","762105":"06842","762106":"06842","762107":"06842","762109":"06842","762110":"06842","762112":"06842","763001":"06852","763002":"06852","763003":"06852","763004":"06852","763008":"06852","764001":"06852","764002":"06858","764003":"06852","764004":"06852","764005":"06852","764006":"06852","764011":"06852","764014":"06852","764020":"06852","764021":"06852","764027":"06852","764028":"06852","764036":"06852","764037":"06852","764038":"06852","764039":"06852","764040":"06852","764041":"06852","764042":"06852","764043":"06852","764044":"06861","764045":"06861","764046":"06861","764047":"06861","764048":"06861","764049":"06858","764051":"06861","764052":"06861","764055":"06852","764056":"06852","764057":"06852","764058":"06852","764059":"06858","764061":"06858","764062":"06856","764063":"06858","764070":"06858","764071":"06858","764072":"06858","764073":"06858","764074":"06858","764075":"06858","764076":"06858","764077":"06858","764078":"06858","764081":"06852","764085":"06858","764086":"06861","764087":"06861","764088":"06858","765001":"06856","765002":"06856","765013":"06852","765015":"06856","765016":"06856","765017":"06856","765018":"06856","765019":"06856","765020":"06856","765021":"06856","765022":"06856","765023":"06856","765024":"06856","765025":"06856","765026":"06856","765029":"06856","765033":"06856","765034":"06856","766001":"06670","766002":"06670","766003":"06670","766011":"06670","766012":"06670","766013":"06670","766014":"06670","766015":"06670","766016":"06670","766017":"06670","766018":"06670","766019":"06670","766020":"06670","766023":"06670","766026":"06670","766027":"06670","766028":"06670","766029":"06670","766031":"06670","766032":"06670","766036":"06670","766037":"06670","766100":"06670","766101":"06670","766102":"06670","766103":"06670","766104":"06678","766105":"06678","766106":"06678","766107":"06678","766108":"06678","766110":"06670","766111":"06678","766118":"06678","767001":"06652","767002":"06652","767016":"06158","767017":"06158","767018":"06158","767019":"06158","767020":"06158","767021":"06652","767022":"06652","767023":"06158","767024":"06652","767025":"06652","767026":"06652","767027":"06652","767028":"06652","767029":"06652","767030":"06652","767032":"06652","767033":"06652","767035":"06652","767037":"06652","767038":"06652","767039":"06652","767040":"06752","767041":"06652","767042":"06652","767045":"06158","767046":"06652","767048":"06652","767060":"06652","767061":"06652","767062":"06158","767065":"06652","767066":"06652","767067":"06652","767068":"06158","767070":"06652","767071":"06652","768001":"0663","768002":"0663","768003":"0663","768004":"0663","768005":"0663","768006":"0663","768016":"0663","768017":"0663","768018":"0663","768019":"0663","768020":"0663","768025":"0663","768027":"06646","768028":"06646","768029":"06646","768030":"06646","768031":"06646","768032":"06646","768033":"06646","768034":"06646","768035":"06646","768036":"06646","768037":"06646","768038":"06646","768039":"06646","768040":"06646","768042":"06646","768045":"06646","768048":"06646","768049":"06646","768050":"06646","768052":"06646","768053":"06646","768102":"06646","768103":"06646","768104":"06646","768105":"0663","768106":"0663","768107":"0663","768108":"02904","768109":"0663","768110":"02904","768111":"06646","768112":"0663","768113":"0663","768115":"06646","768118":"0663","768119":"02904","768121":"02904","768200":"0663","768201":"06645","768202":"06645","768203":"06645","768204":"06645","768210":"0663","768211":"06645","768212":"0663","768213":"06645","768214":"0663","768215":"06645","768216":"06645","768217":"06645","768218":"06645","768219":"06645","768220":"06645","768221":"0663","768222":"0663","768224":"0663","768225":"06645","768226":"06645","768227":"0663","768228":"06622","768233":"06645","768234":"06645","769001":"06622","769002":"06622","769003":"06622","769004":"06622","769005":"06622","769006":"06622","769007":"06622","769008":"06622","769009":"06622","769010":"06622","769011":"06622","769012":"06622","769013":"06622","769014":"06622","769015":"06622","769016":"06622","769042":"06622","769043":"06622","770001":"06622","770002":"06622","770011":"06622","770012":"06622","770013":"06622","770014":"06622","770015":"06622","770016":"06622","770017":"06622","770018":"06622","770019":"06622","770020":"06622","770021":"06622","770022":"06622","770023":"06622","770024":"06622","770025":"06622","770031":"06622","770032":"06622","770033":"06622","770034":"06622","770035":"06622","770036":"06622","770037":"06622","770038":"06622","770039":"06622","770040":"06622","770041":"06622","770042":"06622","770043":"06622","770044":"06622","770046":"06622","770048":"06622","770051":"06622","770052":"06622","770070":"06622","770072":"06622","770073":"06622","770074":"06622","770075":"06622","770076":"06622","781001":"0361","781002":"0361","781003":"0361","781004":"0361","781005":"0361","781006":"0361","781007":"0361","781008":"0361","781009":"0361","781010":"0361","781011":"0361","781012":"0361","781013":"0361","781014":"0361","781015":"0361","781016":"0361","781017":"0361","781018":"0361","781019":"0361","781020":"0361","781021":"0361","781022":"0361","781023":"0361","781024":"0361","781025":"0361","781026":"0361","781027":"0361","781028":"0361","781029":"03622","781030":"0361","781031":"0361","781032":"0361","781034":"0361","781035":"0361","781036":"0361","781037":"0361","781038":"0361","781039":"0361","781040":"0361","781101":"0361","781102":"0361","781103":"0361","781104":"0361","781120":"0361","781121":"0361","781122":"0361","781123":"0361","781124":"0361","781125":"0361","781126":"03624","781127":"0361","781128":"0361","781129":"0361","781131":"03622","781132":"0361","781133":"0361","781134":"0361","781135":"0361","781136":"0361","781137":"0361","781138":"03624","781141":"0361","781150":"0361","781171":"0361","781301":"03666","781302":"03666","781303":"03624","781304":"03624","781305":"03666","781306":"03624","781307":"03666","781308":"03666","781309":"03666","781310":"03624","781311":"03666","781312":"03624","781313":"03666","781314":"03666","781315":"03666","781316":"03666","781317":"03666","781318":"03666","781319":"03666","781320":"03623","781321":"03666","781325":"03666","781326":"03666","781327":"03624","781328":"03666","781329":"03666","781330":"03624","781333":"03624","781334":"03624","781335":"03624","781337":"03624","781338":"03624","781339":"03624","781340":"03624","781341":"03624","781343":"03624","781344":"03624","781346":"03624","781347":"03624","781348":"03624","781349":"03624","781350":"03624","781351":"03624","781352":"03666","781353":"03624","781354":"0361","781355":"03624","781360":"03624","781364":"03624","781365":"0361","781366":"03624","781367":"03624","781368":"03624","781369":"03624","781370":"03624","781371":"03624","781372":"03624","781373":"03624","781374":"03624","781375":"03666","781376":"0361","781377":"03624","781378":"03624","781380":"0361","781381":"0361","781382":"0361","782001":"03672","782002":"03672","782003":"03672","782101":"03672","782102":"03672","782103":"03672","782104":"03670","782105":"03670","782106":"03672","782120":"03672","782121":"03670","782122":"03672","782123":"03672","782124":"03672","782125":"03672","782126":"03672","782127":"03670","782128":"03672","782135":"03672","782136":"03672","782137":"03672","782138":"03672","782139":"03672","782140":"03672","782141":"03672","782142":"03672","782143":"03672","782144":"03672","782401":"0361","782402":"0361","782403":"0361","782410":"03622","782411":"03670","782412":"03670","782413":"03675","782425":"03672","782426":"03672","782427":"03672","782428":"03674","782429":"03674","782435":"03675","782439":"03674","782440":"03674","782441":"03675","782442":"03674","782445":"03674","782446":"03674","782447":"03675","782448":"03675","782450":"03675","782460":"03675","782461":"03675","782462":"03675","782470":"03675","782480":"03675","782481":"03675","782482":"03675","782485":"03675","782486":"03675","782490":"03675","783101":"03663","783120":"03663","783122":"03663","783123":"03663","783124":"03663","783125":"03663","783126":"03663","783127":"03662","783128":"03662","783129":"03663","783130":"03663","783131":"03662","783132":"03663","783133":"03663","783134":"03663","783135":"03662","783301":"03662","783323":"03662","783324":"03662","783325":"03662","783330":"03662","783331":"03661","783332":"03661","783333":"03661","783334":"03662","783335":"03662","783336":"03661","783337":"03662","783339":"03662","783345":"03661","783346":"03661","783347":"03661","783348":"03662","783349":"03661","783350":"03661","783354":"03661","783360":"03661","783361":"03661","783369":"03661","783370":"03661","783371":"03662","783372":"03664","783373":"03661","783375":"03664","783376":"03661","783380":"03664","783381":"03664","783382":"03664","783383":"03664","783384":"03664","783385":"03664","783388":"03664","783389":"03664","783390":"03664","783391":"03664","783392":"03664","783393":"03664","783394":"03664","784001":"03712","784010":"03712","784025":"03712","784026":"03712","784027":"03712","784028":"03712","784101":"03712","784102":"03712","784103":"03712","784104":"03712","784105":"03712","784110":"03712","784111":"03712","784112":"03712","784113":"03711","784114":"03711","784115":"03713","784116":"03713","784117":"03712","784125":"03713","784144":"03713","784145":"03713","784146":"03713","784147":"03713","784148":"03713","784149":"03712","784150":"03712","784153":"03712","784154":"03712","784160":"05872","784161":"05872","784163":"05872","784164":"05872","784165":"05872","784166":"03715","784167":"03715","784168":"03715","784169":"03715","784170":"03715","784171":"03715","784172":"03715","784173":"03715","784174":"03715","784175":"03715","784176":"03715","784177":"03715","784178":"03715","784179":"03715","784180":"03712","784182":"03712","784184":"03715","784189":"03715","784190":"03711","784501":"03712","784502":"03712","784504":"03712","784505":"03712","784506":"03712","784507":"03711","784508":"03711","784509":"03711","784510":"03711","784513":"03711","784514":"03711","784521":"03711","784522":"03711","784523":"03711","784524":"03711","784525":"03711","784526":"03711","784527":"03711","784528":"03711","784529":"03713","785001":"0376","785004":"0376","785006":"0376","785007":"0376","785008":"0376","785009":"0376","785010":"0376","785013":"0376","785014":"0376","785015":"0376","785101":"0376","785102":"03775","785104":"03775","785105":"03775","785106":"03775","785107":"0376","785108":"0376","785110":"03775","785111":"0376","785112":"0376","785601":"03774","785602":"03774","785603":"03774","785609":"03774","785610":"03774","785611":"03774","785612":"03774","785613":"03774","785614":"03775","785615":"03774","785616":"0376","785618":"03774","785619":"03774","785621":"03774","785622":"03774","785625":"03774","785626":"03774","785630":"0376","785631":"0376","785632":"0376","785633":"0376","785634":"0376","785635":"0376","785636":"0376","785640":"03772","785661":"03772","785662":"03772","785663":"03772","785664":"03772","785665":"03772","785666":"03772","785667":"03772","785669":"03772","785670":"03842","785671":"03772","785672":"03772","785673":"03842","785674":"03772","785675":"0373","785676":"0373","785680":"03772","785681":"03772","785682":"03772","785683":"03772","785684":"03772","785685":"03772","785686":"03772","785687":"03772","785688":"03842","785689":"03842","785690":"03842","785691":"03842","785692":"03842","785693":"03842","785696":"03772","785697":"03772","785698":"03842","785699":"03774","785700":"0376","785701":"03772","785702":"03774","785703":"0376","785704":"0376","785705":"03774","786001":"0373","786002":"0373","786003":"0373","786004":"0373","786005":"0373","786006":"0373","786007":"0373","786008":"0373","786010":"0373","786012":"0373","786101":"0373","786102":"0373","786103":"0373","786125":"0374","786126":"0374","786145":"0374","786146":"0374","786147":"0374","786148":"0374","786150":"0374","786151":"0374","786152":"0374","786153":"0374","786154":"0374","786155":"0374","786156":"0374","786157":"0374","786158":"0374","786159":"0374","786160":"0374","786170":"0374","786171":"0374","786173":"0374","786174":"0374","786179":"0374","786181":"0374","786182":"0374","786183":"0374","786184":"0373","786187":"0374","786188":"0374","786189":"0374","786190":"0374","786191":"0373","786192":"0374","786601":"0374","786602":"0373","786610":"0373","786611":"0373","786612":"0373","786613":"0373","786614":"0373","786621":"0373","786622":"0373","786623":"0373","786692":"0373","787001":"05872","787023":"05872","787026":"03753","787031":"05872","787032":"05872","787033":"05872","787034":"03753","787035":"03753","787051":"05872","787052":"03775","787053":"05872","787054":"05872","787055":"05872","787056":"05872","787057":"03753","787058":"05872","787059":"03753","787060":"03753","787061":"03753","787110":"03753","788001":"03842","788002":"03842","788003":"03842","788004":"03842","788005":"03842","788006":"03842","788007":"03842","788009":"03842","788010":"03842","788011":"03842","788013":"03842","788014":"03842","788015":"03842","788025":"03842","788026":"03842","788030":"03842","788031":"03842","788098":"03842","788099":"03842","788101":"03842","788102":"03842","788103":"03842","788104":"03842","788106":"03842","788107":"03673","788108":"03673","788109":"03842","788110":"03842","788111":"03842","788112":"03842","788113":"03842","788114":"03842","788115":"03842","788116":"03842","788117":"03842","788118":"03842","788119":"03842","788120":"03842","788121":"03842","788123":"03842","788126":"03842","788127":"03842","788150":"03844","788151":"03844","788152":"03843","788155":"03844","788156":"03843","788160":"03844","788161":"03844","788162":"03844","788163":"03844","788164":"03844","788165":"03844","788166":"03843","788168":"03844","788701":"03843","788709":"03843","788710":"03843","788711":"03843","788712":"03843","788713":"03843","788719":"03843","788720":"03843","788722":"03843","788723":"03843","788724":"03843","788725":"03843","788726":"03843","788727":"03843","788728":"03843","788733":"03843","788734":"03843","788735":"03843","788736":"03843","788737":"03843","788738":"03844","788781":"03843","788801":"03844","788802":"03844","788803":"03843","788804":"03842","788805":"03842","788806":"03843","788815":"03842","788816":"03842","788817":"03842","788818":"03673","788819":"03673","788820":"03673","788830":"03673","788831":"03673","788832":"03673","788931":"03673","790001":"03782","790002":"03782","790003":"03782","790101":"03780","790102":"03778","790103":"03778","790104":"03794","790105":"03794","790106":"03794","790114":"03782","790116":"03780","791001":"03783","791002":"03777","791003":"03796","791101":"03783","791102":"0360","791103":"03777","791104":"0368","791105":"03777","791109":"0360","791110":"0360","791111":"0360","791112":"0360","791113":"0360","791114":"0360","791118":"03788","791119":"0360","791120":"03788","791121":"0360","791122":"03792","791123":"0360","791125":"0360","792001":"03806","792055":"03808","792056":"03808","792101":"03803","792102":"03806","792103":"03806","792104":"03804","792105":"03806","792110":"03803","792111":"03806","792120":"03808","792121":"03808","792122":"03808","792123":"03808","792129":"03786","792130":"03786","792131":"03786","793001":"0364","793002":"0364","793003":"0364","793004":"0364","793005":"0364","793006":"0364","793007":"0364","793008":"0364","793009":"0364","793010":"0364","793011":"0364","793012":"0364","793014":"0364","793015":"0364","793016":"0364","793017":"0364","793018":"0364","793019":"0364","793021":"0364","793022":"0364","793101":"03622","793102":"03622","793103":"03622","793104":"03622","793105":"03622","793106":"03655","793107":"0364","793108":"0364","793109":"03651","793110":"0364","793111":"0364","793112":"0364","793113":"0364","793114":"03655","793115":"0364","793116":"03622","793119":"03656","793120":"03656","793121":"0364","793122":"03622","793123":"03622","793126":"03656","793150":"03651","793151":"03651","793160":"03651","793161":"03651","793200":"03651","793210":"03651","794001":"03651","794002":"03651","794003":"03651","794005":"03651","794101":"03651","794102":"03651","794103":"03651","794104":"03651","794105":"03651","794106":"03651","794107":"03651","794108":"03651","794109":"03651","794110":"03651","794111":"03651","794112":"03651","794114":"03651","794115":"03651","795001":"0385","795002":"03880","795003":"0385","795004":"0385","795005":"0385","795006":"03878","795007":"03878","795008":"0385","795009":"0385","795010":"03880","795011":"03874","795101":"03848","795102":"03872","795103":"03848","795104":"03878","795105":"03878","795106":"03878","795107":"03880","795112":"03880","795113":"03880","795114":"03880","795115":"03877","795116":"03874","795117":"03874","795118":"03880","795122":"03880","795124":"03874","795125":"03877","795126":"0377","795127":"03872","795128":"03874","795129":"03880","795130":"03848","795131":"03872","795132":"03848","795133":"03874","795134":"03880","795135":"03872","795136":"03880","795138":"03848","795139":"03874","795140":"0385","795141":"03877","795142":"03845","795144":"03845","795145":"03845","795146":"03877","795147":"0377","795148":"03848","795149":"03848","795150":"03878","795159":"0377","796001":"0389","796004":"0389","796005":"0389","796007":"0389","796008":"0389","796009":"0389","796012":"0389","796014":"0389","796015":"03837","796017":"0389","796036":"0389","796070":"03837","796075":"03837","796081":"0389","796091":"03837","796101":"03837","796111":"0389","796161":"03838","796181":"03838","796184":"03838","796186":"03838","796190":"0389","796230":"0389","796261":"03838","796290":"0389","796310":"03838","796320":"03831","796321":"03831","796370":"03838","796410":"0389","796421":"0389","796431":"0389","796441":"0389","796470":"0389","796471":"0389","796501":"0389","796571":"0372","796581":"0372","796691":"0372","796701":"0372","796710":"0372","796751":"0372","796770":"0372","796772":"03835","796810":"03835","796891":"03835","796901":"03835","797001":"0370","797002":"03870","797003":"0370","797004":"0370","797006":"0370","797099":"03860","797101":"03870","797103":"03870","797104":"03867","797105":"03867","797106":"03870","797107":"03865","797108":"03865","797109":"03867","797110":"03870","797111":"03860","797112":"03860","797113":"03862","797114":"03865","797115":"03862","797116":"03862","797117":"03862","797118":"03862","797120":"0370","797121":"0370","798601":"03867","798602":"03869","798603":"03869","798604":"0369","798607":"0369","798611":"03863","798612":"03861","798613":"0369","798614":"0369","798615":"0369","798616":"03861","798618":"0369","798620":"03867","798621":"03869","798622":"03869","798623":"0369","798625":"03869","798627":"03867","799001":"0381","799002":"0381","799003":"0381","799004":"0381","799005":"0381","799006":"0381","799007":"0381","799008":"0381","799009":"0381","799010":"0381","799011":"0381","799012":"0381","799013":"03821","799014":"0381","799015":"0381","799022":"0381","799035":"0381","799045":"0381","799046":"0381","799101":"03821","799102":"0381","799103":"0381","799104":"03821","799105":"0381","799113":"03821","799114":"03821","799115":"0381","799120":"03821","799125":"03823","799130":"0381","799131":"0381","799132":"0381","799141":"03823","799142":"03823","799143":"03823","799144":"03823","799145":"03823","799150":"03823","799153":"03823","799155":"03823","799156":"03823","799157":"03823","799201":"03825","799202":"03825","799203":"03825","799204":"03826","799205":"03825","799207":"03825","799210":"0381","799211":"0381","799212":"0381","799250":"03822","799251":"03822","799253":"03822","799254":"03822","799256":"03822","799260":"03822","799261":"03822","799262":"03822","799263":"03824","799264":"03824","799266":"03826","799269":"03822","799270":"03824","799271":"03822","799273":"03826","799275":"03826","799277":"03824","799278":"03826","799279":"03824","799280":"03824","799281":"03824","799282":"03824","799284":"03826","799285":"03826","799286":"03826","799287":"03826","799288":"03824","799289":"03826","799290":"03824","800001":"0612","800002":"0612","800003":"0612","800004":"0612","800005":"0612","800006":"0612","800007":"0612","800008":"0612","800009":"0612","800010":"0612","800011":"0612","800012":"0612","800013":"0612","800014":"0612","800015":"0612","800016":"0612","800017":"0612","800018":"0612","800019":"0612","800020":"0612","800021":"0612","800022":"0612","800023":"0612","800024":"0612","800025":"0612","800026":"0612","800027":"0612","800028":"0612","800030":"0612","801102":"0612","801103":"0612","801104":"0612","801105":"0612","801106":"0612","801108":"0612","801109":"0612","801110":"0612","801111":"0612","801112":"0612","801113":"0612","801301":"06112","801302":"06324","801303":"06112","801304":"0612","801305":"0612","801306":"06112","801307":"06112","801503":"0612","801505":"0612","801506":"0612","801507":"0612","802101":"06183","802102":"06183","802103":"06183","802111":"06183","802112":"06183","802113":"06183","802114":"06183","802115":"06183","802116":"06183","802117":"06183","802118":"06183","802119":"06183","802120":"06183","802122":"06183","802123":"06183","802125":"06183","802126":"06183","802127":"06183","802128":"06183","802129":"06183","802130":"06183","802131":"06183","802132":"06189","802133":"06183","802134":"06183","802135":"06183","802136":"06183","802152":"06182","802154":"06182","802155":"06182","802156":"06182","802157":"06182","802158":"06182","802159":"06182","802160":"0612","802161":"06182","802162":"06182","802163":"06182","802164":"06182","802165":"06182","802166":"06182","802183":"06182","802201":"06182","802202":"06182","802203":"06182","802204":"06188","802205":"06188","802206":"06182","802207":"06182","802208":"06182","802209":"06182","802210":"06182","802211":"06188","802212":"06188","802213":"06188","802214":"06188","802215":"06188","802216":"06188","802217":"06188","802218":"06188","802219":"06188","802220":"06188","802221":"06188","802222":"06182","802223":"06182","802226":"06188","802301":"06182","802302":"06182","802311":"06182","802312":"06182","802313":"06182","802314":"06182","802316":"06182","802351":"06182","802352":"06182","803101":"06112","803107":"06112","803108":"06112","803109":"06112","803110":"0612","803111":"06112","803113":"06112","803114":"06112","803115":"06112","803116":"06112","803117":"06112","803118":"06112","803119":"06112","803120":"06112","803121":"06112","803201":"0612","803202":"0612","803203":"0612","803211":"0612","803212":"0612","803213":"0612","803214":"0612","803215":"0612","803216":"06112","803221":"0612","803301":"0612","803302":"0612","803303":"0612","803306":"0612","803307":"0612","804401":"0612","804402":"06337","804403":"06114","804404":"0631","804405":"06114","804406":"06114","804407":"06114","804408":"06114","804417":"06114","804418":"06114","804419":"06337","804420":"06114","804421":"06114","804422":"06114","804423":"06114","804424":"06114","804425":"06114","804426":"06337","804427":"06114","804428":"06337","804429":"06114","804432":"06114","804435":"0631","804451":"0612","804452":"0612","804453":"0612","804454":"0612","805101":"06324","805102":"06324","805103":"06324","805104":"06324","805105":"06112","805106":"06324","805107":"06324","805108":"06324","805109":"06324","805110":"06324","805111":"06324","805112":"06324","805113":"06324","805114":"06324","805121":"06324","805122":"06324","805123":"06324","805124":"06324","805125":"06324","805126":"06324","805127":"06324","805128":"0631","805129":"06324","805130":"06324","805131":"0631","805132":"06324","811101":"06341","811102":"06341","811103":"06341","811104":"0612","811105":"06341","811106":"06346","811107":"06341","811112":"06346","811201":"06344","811202":"06344","811211":"06344","811212":"06344","811213":"06344","811214":"06344","811301":"06345","811302":"06346","811303":"06345","811304":"06341","811305":"06345","811307":"06345","811308":"06345","811309":"06346","811310":"06346","811311":"06346","811312":"06345","811313":"06345","811314":"06345","811315":"06341","811316":"06345","811317":"06345","812001":"0641","812002":"0641","812003":"0641","812004":"0641","812005":"0641","812006":"0641","812007":"0641","813101":"0641","813102":"06473","813103":"06424","813104":"06424","813105":"0641","813106":"06424","813107":"06424","813108":"0641","813109":"06424","813110":"06424","813201":"06344","813202":"06424","813203":"0641","813204":"0641","813205":"0641","813206":"06422","813207":"06424","813208":"06436","813209":"06452","813210":"0641","813211":"06424","813212":"06344","813213":"06344","813214":"0641","813221":"06344","813222":"0641","814101":"06434","814102":"06434","814103":"06434","814110":"06434","814111":"06435","814112":"06432","814113":"06432","814114":"06432","814115":"06432","814116":"06432","814118":"06434","814119":"06434","814120":"06434","814131":"06424","814133":"06422","814141":"06434","814142":"06432","814143":"06432","814144":"06434","814145":"06434","814146":"06434","814147":"06422","814148":"06434","814149":"06432","814150":"06432","814151":"06434","814152":"06432","814153":"06422","814154":"06422","814155":"06422","814156":"06422","814157":"06432","814158":"06434","814160":"06422","814165":"06422","814166":"06433","814167":"06434","815301":"06532","815302":"06532","815311":"06532","815312":"06532","815313":"06532","815314":"06532","815315":"06532","815316":"06532","815317":"06532","815318":"06532","815351":"06433","815352":"06433","815353":"06432","815354":"06433","815355":"06433","815357":"06432","815359":"06433","816101":"06436","816102":"06436","816103":"06435","816104":"06436","816105":"06436","816106":"06435","816107":"06435","816108":"06436","816109":"06436","816110":"06436","816115":"06436","816116":"06436","816117":"06435","816118":"06434","816120":"06436","816129":"06436","821101":"06189","821102":"06189","821103":"06189","821104":"06188","821105":"06189","821106":"06189","821107":"06188","821108":"06189","821109":"06189","821110":"06189","821111":"06188","821112":"06188","821113":"06188","821115":"06188","821301":"06188","821302":"06188","821303":"06188","821304":"06188","821305":"06188","821306":"06188","821307":"06188","821308":"06188","821309":"06188","821310":"06188","821311":"06188","821312":"06188","822101":"06562","822102":"06562","822110":"06562","822111":"06565","822112":"06565","822113":"06562","822114":"06561","822115":"06562","822116":"06562","822117":"06562","822118":"06562","822119":"06565","822120":"06562","822121":"06561","822122":"06562","822123":"06562","822124":"06562","822125":"06561","822126":"06562","822128":"06561","822129":"06561","822131":"06562","822132":"06562","822133":"06562","822134":"06561","823001":"0631","823002":"0631","823003":"0631","823004":"0631","823005":"0631","823311":"0631","824101":"0240","824102":"0240","824103":"0240","824111":"0240","824112":"0240","824113":"0240","824114":"0240","824115":"0240","824116":"0631","824118":"0631","824120":"0240","824121":"0240","824122":"0240","824123":"0240","824124":"0240","824125":"0240","824127":"0240","824129":"0240","824143":"0240","824201":"0631","824202":"0240","824203":"0240","824205":"0631","824206":"0631","824207":"0631","824208":"0240","824209":"0631","824210":"0631","824211":"0631","824217":"0631","824219":"0631","824220":"0631","824221":"0631","824231":"0631","824232":"0631","824233":"06114","824234":"0631","824235":"0631","824236":"0631","824237":"0631","824301":"0240","824302":"0240","824303":"0240","824304":"0240","825101":"06553","825102":"06542","825103":"06541","825106":"06532","825108":"06532","825109":"06534","825132":"06534","825167":"06532","825301":"06546","825302":"06546","825303":"06546","825311":"06546","825312":"06546","825313":"06546","825314":"06553","825315":"06546","825316":"06553","825317":"06546","825318":"06534","825319":"06546","825320":"06532","825321":"06541","825322":"06546","825323":"06546","825324":"06532","825325":"06553","825326":"06553","825329":"06532","825330":"06553","825336":"06546","825401":"06541","825402":"06546","825403":"06541","825404":"06541","825405":"06546","825406":"06546","825407":"06534","825408":"06541","825409":"06534","825410":"06534","825411":"06553","825412":"06532","825413":"06534","825414":"06541","825415":"06541","825418":"06534","825421":"06534","826001":"0326","826003":"0326","826004":"0326","826005":"0326","826006":"0326","826007":"0326","826008":"0326","826009":"0326","826010":"0326","826011":"0326","827001":"06542","827003":"06542","827004":"06542","827006":"06542","827009":"06542","827010":"06542","827012":"06542","827013":"06542","827014":"06542","827015":"06542","827016":"06542","827302":"06542","828101":"0326","828103":"0326","828104":"0326","828105":"0326","828106":"0326","828107":"0326","828108":"0326","828109":"0326","828110":"0326","828111":"0326","828112":"0326","828113":"0326","828114":"0326","828115":"0326","828116":"0326","828117":"0326","828119":"0326","828120":"0326","828121":"0326","828122":"0326","828123":"0326","828124":"0326","828125":"0326","828126":"0326","828127":"0326","828128":"0326","828129":"0326","828130":"0326","828131":"0326","828132":"0326","828133":"0326","828134":"06542","828135":"0326","828142":"0326","828201":"0326","828202":"0326","828203":"0326","828204":"0326","828205":"0326","828206":"0326","828207":"0326","828301":"0326","828302":"0326","828303":"06542","828304":"0326","828305":"0326","828306":"0326","828307":"0326","828309":"0326","828401":"0326","828402":"0326","828403":"06542","828404":"06542","829101":"06553","829102":"06553","829103":"06553","829104":"06542","829105":"06553","829106":"06553","829107":"06542","829108":"06553","829109":"06553","829110":"06553","829111":"06542","829112":"06542","829113":"06542","829114":"06542","829116":"06542","829117":"06553","829118":"06553","829119":"06553","829121":"06542","829122":"06553","829123":"06542","829125":"06553","829126":"06553","829127":"06542","829128":"06542","829129":"06553","829130":"06553","829131":"06553","829132":"06542","829133":"06553","829134":"06553","829135":"06553","829143":"06553","829144":"06542","829149":"06542","829150":"06553","829201":"06541","829202":"06565","829203":"06565","829204":"06565","829205":"0651","829206":"06565","829207":"06565","829208":"0651","829209":"0651","829210":"0651","829301":"06542","831001":"0657","831002":"06597","831003":"0657","831004":"0657","831005":"0657","831006":"0657","831007":"0657","831009":"0657","831011":"0657","831012":"06597","831013":"06597","831014":"06597","831015":"0657","831016":"0657","831017":"0657","831019":"0657","831020":"0657","831021":"0657","832101":"0657","832102":"0657","832103":"0657","832104":"0657","832105":"0657","832106":"0657","832107":"06597","832108":"06597","832109":"06597","832111":"0657","832112":"0657","832113":"0657","832301":"0657","832302":"06582","832303":"0657","832304":"0657","832401":"06597","832402":"06597","832403":"06597","832404":"06597","833101":"06597","833102":"06582","833103":"06582","833104":"06582","833105":"06582","833106":"06582","833201":"06582","833202":"06582","833203":"06582","833204":"06582","833212":"06582","833213":"06582","833214":"06582","833215":"06582","833216":"06597","833217":"06582","833218":"06582","833219":"06597","833220":"06597","833221":"06582","833222":"06582","833223":"06582","834001":"0651","834002":"0651","834003":"0651","834004":"0651","834005":"0651","834006":"0651","834007":"0651","834008":"0651","834009":"0651","834010":"0651","834011":"0651","834012":"0651","834013":"0651","834014":"0651","835101":"0651","835102":"0651","835103":"0651","835201":"06525","835202":"0651","835203":"0651","835204":"0651","835205":"0651","835206":"06524","835207":"06524","835208":"06524","835209":"06528","835210":"06528","835211":"06525","835212":"06525","835213":"0651","835214":"0651","835215":"0651","835216":"06582","835217":"0651","835218":"06565","835219":"0651","835220":"06524","835221":"0651","835222":"0651","835223":"06525","835224":"06524","835225":"0651","835226":"06525","835227":"06582","835228":"06525","835229":"06524","835230":"06524","835231":"06526","835232":"06524","835233":"06524","835234":"0651","835235":"06525","835301":"0651","835302":"06526","835303":"0651","835325":"0651","841101":"06152","841201":"06152","841202":"06152","841203":"06154","841204":"06152","841205":"06152","841206":"06152","841207":"06152","841208":"06152","841209":"06152","841210":"06154","841211":"06152","841212":"06152","841213":"06152","841214":"06152","841215":"06152","841216":"06152","841217":"06152","841218":"06152","841219":"06152","841220":"06152","841221":"06152","841222":"06152","841223":"06154","841224":"06152","841225":"06152","841226":"06154","841227":"06154","841231":"06154","841232":"06154","841233":"06154","841234":"06154","841235":"06154","841236":"06154","841237":"06154","841238":"06154","841239":"06154","841240":"06154","841241":"06154","841242":"06154","841243":"06154","841244":"06154","841245":"06154","841286":"06154","841287":"06154","841301":"06152","841302":"06152","841305":"06152","841311":"06152","841312":"06152","841313":"06152","841316":"06152","841401":"06152","841402":"06152","841403":"06152","841404":"06154","841405":"07695","841406":"06154","841407":"07695","841408":"06154","841409":"07695","841410":"06152","841411":"06152","841412":"06152","841413":"06154","841414":"06152","841415":"06152","841416":"06154","841417":"06154","841418":"06152","841419":"06152","841420":"07695","841421":"06152","841422":"06152","841423":"07695","841424":"06152","841425":"07695","841426":"07695","841427":"07695","841428":"07695","841434":"06154","841435":"06154","841436":"06154","841437":"07695","841438":"07695","841439":"06154","841440":"07695","841441":"07695","841442":"06152","841443":"06152","841446":"06154","841447":"06154","841460":"06152","841501":"07695","841502":"06154","841503":"07695","841504":"06154","841505":"07695","841506":"06154","841507":"06154","841508":"07695","841509":"06154","842001":"0621","842002":"0621","842003":"0621","842004":"0621","842005":"0621","842006":"0621","843101":"0621","843102":"0621","843103":"0621","843104":"06224","843105":"0621","843106":"0621","843107":"0621","843108":"0621","843109":"0621","843110":"06224","843111":"0621","843112":"0621","843113":"0621","843114":"06224","843115":"0621","843116":"06226","843117":"06226","843118":"0621","843119":"0621","843120":"0621","843121":"0621","843122":"0621","843123":"0621","843124":"0621","843125":"0621","843126":"0621","843127":"0621","843128":"06222","843129":"0621","843130":"0621","843131":"06222","843301":"06226","843302":"06226","843311":"06226","843312":"0621","843313":"06226","843314":"06226","843315":"06226","843316":"06226","843317":"06226","843318":"06226","843319":"06226","843320":"06226","843321":"0621","843322":"06226","843323":"06226","843324":"06226","843325":"06226","843326":"06226","843327":"06226","843328":"06226","843329":"06222","843330":"06226","843331":"06226","843332":"06226","843333":"06226","843334":"06222","843335":"06222","843360":"0621","844101":"06224","844102":"06224","844103":"06224","844111":"06224","844112":"06224","844113":"06224","844114":"06224","844115":"06224","844116":"06224","844117":"06224","844118":"06224","844119":"06224","844120":"0621","844121":"06224","844122":"06224","844123":"06224","844124":"06224","844125":"06224","844126":"06224","844127":"0621","844128":"06224","844501":"06224","844502":"06224","844503":"06224","844504":"06224","844505":"06224","844506":"06224","844507":"06224","844508":"06224","844509":"06224","845101":"06254","845103":"06254","845104":"06254","845105":"06254","845106":"06254","845107":"06254","845301":"06252","845302":"06252","845303":"06252","845304":"06252","845305":"06252","845306":"06254","845307":"06254","845315":"06252","845401":"06252","845406":"06252","845411":"06252","845412":"06252","845413":"06252","845414":"06252","845415":"06252","845416":"06252","845417":"06252","845418":"06252","845419":"06252","845420":"06252","845422":"06252","845423":"06252","845424":"06252","845425":"06252","845426":"06252","845427":"06252","845428":"06252","845429":"06252","845430":"06252","845431":"06252","845432":"06252","845433":"06252","845434":"06252","845435":"06252","845436":"06252","845437":"06252","845438":"06254","845440":"06252","845449":"06254","845450":"06254","845451":"06254","845452":"06254","845453":"06254","845454":"06254","845455":"06254","845456":"06252","845457":"06252","845458":"06252","845459":"06254","846001":"06272","846002":"06272","846003":"06272","846004":"06272","846005":"06272","846006":"06272","846007":"06272","846008":"06272","846009":"06272","847101":"06272","847102":"06276","847103":"06272","847104":"06272","847105":"06274","847106":"06272","847107":"06272","847108":"06276","847109":"06276","847115":"06272","847121":"06272","847122":"06276","847123":"0621","847201":"06272","847202":"06272","847203":"06272","847204":"06272","847211":"06276","847212":"06276","847213":"06276","847214":"06276","847215":"06276","847222":"06276","847223":"06276","847224":"06276","847225":"06276","847226":"06276","847227":"06276","847228":"06276","847229":"06276","847230":"06276","847231":"06276","847232":"06276","847233":"06272","847234":"06276","847235":"06276","847236":"06276","847238":"06276","847239":"06276","847240":"06276","847301":"06274","847302":"06226","847303":"06272","847304":"06276","847305":"06276","847306":"06276","847307":"06226","847308":"06276","847337":"06276","847401":"06276","847402":"06276","847403":"06276","847404":"06276","847405":"06272","847407":"06276","847408":"06276","847409":"06276","847410":"06276","847411":"06276","847421":"06276","847422":"06272","847423":"06272","847424":"06276","847427":"06272","847428":"06272","847429":"06272","847451":"06473","847452":"06473","848101":"06274","848102":"06274","848113":"06274","848114":"06274","848115":"06274","848117":"06274","848121":"06274","848122":"06274","848125":"06274","848127":"06274","848129":"06274","848130":"06274","848131":"06274","848132":"06274","848133":"06274","848134":"06274","848160":"06274","848201":"06244","848202":"06243","848203":"06244","848204":"06243","848205":"06274","848206":"06274","848207":"06274","848208":"06274","848209":"06274","848210":"06274","848211":"06274","848213":"06272","848216":"06274","848236":"06274","848301":"06274","848302":"06274","848501":"06274","848502":"06274","848503":"06274","848504":"06274","848505":"06274","848506":"06274","851101":"06243","851111":"06243","851112":"06243","851113":"06243","851114":"06243","851115":"06243","851116":"06243","851117":"06243","851118":"06243","851120":"06243","851126":"06243","851127":"06243","851128":"06243","851129":"06243","851130":"06243","851131":"06243","851132":"06243","851133":"06243","851134":"06243","851135":"06243","851201":"06244","851202":"06244","851203":"06244","851204":"06244","851205":"06244","851206":"06244","851210":"06243","851211":"06243","851212":"06244","851213":"06244","851214":"06244","851215":"06244","851216":"06244","851217":"06243","851218":"06243","852101":"06454","852105":"06473","852106":"06478","852107":"06478","852108":"06473","852109":"06473","852110":"06473","852111":"06473","852112":"06476","852113":"06476","852114":"06476","852115":"06476","852116":"06454","852121":"06476","852122":"06454","852123":"06478","852124":"06478","852125":"06473","852126":"06478","852127":"06478","852128":"06476","852129":"06478","852130":"06473","852131":"06473","852132":"06473","852133":"06473","852137":"06473","852138":"06473","852139":"06473","852161":"06244","852201":"06478","852202":"06478","852212":"06478","852213":"06476","852214":"06473","852215":"06473","852216":"06478","852217":"06478","852218":"06473","852219":"06476","852220":"06476","852221":"06478","853201":"0641","853202":"0641","853203":"0641","853204":"06454","853205":"0641","854101":"06452","854102":"06454","854103":"06452","854104":"06452","854105":"06452","854106":"06452","854107":"06452","854108":"06452","854109":"06452","854112":"06452","854113":"06452","854114":"06452","854115":"06452","854116":"06452","854117":"06452","854201":"06454","854202":"06454","854203":"06454","854204":"06454","854205":"06454","854301":"06454","854302":"06454","854303":"06454","854304":"06454","854305":"06454","854306":"06454","854311":"06453","854312":"06453","854315":"06454","854316":"06453","854317":"06452","854318":"06453","854325":"06454","854326":"06454","854327":"06454","854328":"06453","854329":"06453","854330":"06454","854331":"06453","854332":"06453","854333":"07456","854334":"06454","854335":"06453","854336":"06453","854337":"06454","854338":"06473","854339":"06473","854340":"06473","855101":"07456","855102":"06452","855105":"06452","855106":"07456","855107":"07456","855108":"07456","855113":"06452","855114":"06452","855115":"07456","855116":"07456","855117":"07456","900056":"05564","900099":"033","999999":"08462"} \ No newline at end of file diff --git a/utilities/logistics-b2b/log-verification-utility/utils/constants.js b/utilities/logistics-b2b/log-verification-utility/utils/constants.js index 3092b2a..5e039d0 100755 --- a/utilities/logistics-b2b/log-verification-utility/utils/constants.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/constants.js @@ -120,9 +120,11 @@ module.exports = Object.freeze({ PCC_CODE: ["1", "2", "3", "4"], DCC_CODE: ["1", "2", "3"], FULFILLMENT_TAGS_CODE: ["state", "rto_action","weather_check"], - FULFILLMENT_TAGS_LIST_CODE: ["ready_to_ship", "return_to_origin"], + FULFILLMENT_TAGS_LIST_CODE: ["ready_to_ship", "return_to_origin","raining"], FULFILLMENT_TAGS_LIST_VALUE: ["yes", "no"], TRACKING_STATUS: ["active", "inactive"], + TRACK_TAGS_CODE:["config","order","path"], + TRACK_TAGS_LIST_CODE:["id","attr","type","lat_lng","sequence"], ORDER_STATE: ["Created", "Accepted", "Cancelled", "In-progress","Completed"], CANCELLATION_CODE: [ "001", diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logConfirm.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logConfirm.js index 391ca39..72d9b7f 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logConfirm.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logConfirm.js @@ -6,10 +6,19 @@ const utils = require("../utils.js"); const checkConfirm = (data, msgIdSet) => { let cnfrmObj = {}; let confirm = data; + const contextTimestamp= confirm.context.timestamp let version = confirm.context.core_version; let onSearchProvArr = dao.getValue("providersArr"); confirm = confirm.message.order; let rts; + + if (confirm?.updated_at > contextTimestamp) { + cnfrmObj.updatedAtErr = `order/updated_at cannot be future dated w.r.t context/timestamp`; + } + if (confirm?.created_at > contextTimestamp) { + cnfrmObj.createdAtErr = `order/created_at cannot be future dated w.r.t context/timestamp`; + } + if (confirm.provider.locations && confirm.provider.locations.length > 1) dao.setValue("confirm_locations", confirm.provider.locations); @@ -42,7 +51,6 @@ const checkConfirm = (data, msgIdSet) => { if (provider.id === provId) { const onSearchItemsObj = provider.items; onSearchItemsObj.forEach((onSrchItem) => { - //console.log(onSrchItem); if (onSrchItem.id === item.id) { if (onSrchItem?.time?.duration !== item?.time?.duration) cnfrmObj.itemDurationErr = `item duration does not match with the one provided in /on_search (LSP can send NACK)`; @@ -64,11 +72,13 @@ const checkConfirm = (data, msgIdSet) => { let p2h2p = dao.getValue("p2h2p"); fulfillments.forEach((fulfillment) => { + let avgPickupTime= fulfillment.start.time.duration; + + if(avgPickupTime!==dao.getValue("avgPickupTime")){ + cnfrmObj.avgPckupErr=`Average Pickup Time mismatches from the one provided in /on_search` + } if (fulfillment["@ondc/org/awb_no"] && p2h2p) awbNo = true; - if ( - rts === "yes" && - !fulfillment?.start?.instructions?.short_desc - ) { + if (rts === "yes" && !fulfillment?.start?.instructions?.short_desc) { cnfrmObj.instructionsErr = `fulfillments/start/instructions are required when ready_to_ship = 'yes'`; } }); diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logInit.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logInit.js index 72f30bf..4907554 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logInit.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logInit.js @@ -47,6 +47,7 @@ const checkInit = (data, msgIdSet) => { if (location.id === element.id) providerLocExists = true; }); + if (!providerLocExists) { let itemkey = `providerLocErr${i}`; initObj[ diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnCancel.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnCancel.js index 3e0e952..731db03 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnCancel.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnCancel.js @@ -7,6 +7,7 @@ const checkOnCancel = (data, msgIdSet) => { let onCancelObj = {}; let on_cancel = data; let contextTime = on_cancel.context.timestamp; + let version = on_cancel.context.core_version; let messageId = on_cancel.context.message_id; on_cancel = on_cancel.message.order; @@ -14,17 +15,26 @@ const checkOnCancel = (data, msgIdSet) => { let orderState = on_cancel.state; let items = on_cancel.items; let fulfillments = on_cancel.fulfillments; - let RtoPickupTime; + let RtoPickupTime; + const created_at = on_cancel.created_at; + const updated_at = on_cancel.updated_at; + + if (created_at > contextTime || updated_at > contextTime) { + onCancelObj.crtdAtTimeErr = `order/created_at or updated_at should not be future dated w.r.t context/timestamp`; + } try { - if (fulfillments.length > 1) { + if (fulfillments?.length > 1) { console.log( `Checking for a valid 'Cancelled' fulfillment state for type 'Delivery' in case of RTO` ); fulfillments.forEach((fulfillment) => { ffState = fulfillment?.state?.descriptor?.code; - if ((fulfillment.type === "Prepaid" || fulfillment.type === "Delivery") && ffState !== "Cancelled") { + if ( + (fulfillment.type === "Prepaid" || fulfillment.type === "Delivery") && + ffState !== "Cancelled" + ) { onCancelObj.flflmntstErr = `In case of RTO, fulfillment with type '${fulfillment.type}' needs to be 'Cancelled'`; } }); @@ -39,8 +49,11 @@ const checkOnCancel = (data, msgIdSet) => { `Comparing pickup and delivery timestamps for on_cancel_${ffState}` ); - if (fulfillment.type === "Prepaid" || fulfillment.type === "CoD" || fulfillment.type === "Delivery") { - + if ( + fulfillment.type === "Prepaid" || + fulfillment.type === "CoD" || + fulfillment.type === "Delivery" + ) { if (ffState === "Cancelled") { if (orderState !== "Cancelled") { onCancelObj.ordrStatErr = `Order state should be 'Cancelled' for fulfillment state - ${ffState}`; @@ -50,7 +63,9 @@ const checkOnCancel = (data, msgIdSet) => { onCancelObj.msngPickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) is missing for fulfillment state - ${ffState}`; } } - + if(fulfillment.tracking===true){ + onStatusObj.trackErr=`fulfillment tracking can be disabled (false) after the fulfillment is 'Cancelled` + } if (fulfillment.start.time.timestamp && dao.getValue("pickupTime")) { if ( !_.isEqual( @@ -61,12 +76,34 @@ const checkOnCancel = (data, msgIdSet) => { onCancelObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot change for fulfillment state - ${ffState}`; } } - + console.log('comparing RTO fulfillment id with /on_search'); + //checking RTO id matching with /on_search + if (version === "1.2.0") { + let fulTags = fulfillment?.tags; + let rtoID; + fulTags.forEach((tag) => { + if (tag.code === "rto_event") { + const lists = tag.list; + lists.forEach((list) => { + if (list.code === "rto_id") { + rtoID = list.value; + if (rtoID !== dao.getValue("rtoID")) { + onCancelObj.rtoIdTagsErr = `rto_id '${rtoID}' in fulfillments/tags does not match with the one provided in on_search '${dao.getValue("rtoID")}' in /fulfillments`; + } + } + }); + } + }); + } } } else if (fulfillment.type === "RTO" || fulfillment.type === "Return") { if (orderState !== "Cancelled") { onCancelObj.ordrStatErr = `Order state should be 'Cancelled' for fulfillment state - ${ffState}`; } + console.log(fulfillment.id,dao.getValue("rtoID")); + if(fulfillment.id!==dao.getValue("rtoID")){ + onCancelObj.rtoIdErr = `RTO id - '${fulfillment.id}' of fulfillment type 'RTO' does not match with the one provided in on_search '${dao.getValue("rtoID")}' in /fulfillments`; + } if (ffState === "RTO-Initiated") { RtoPickupTime = fulfillment?.start?.time?.timestamp; console.log(RtoPickupTime); diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnConfirm.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnConfirm.js index 910679e..ce4ce33 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnConfirm.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnConfirm.js @@ -8,15 +8,31 @@ const constants = require("../constants"); const checkOnConfirm = (data, msgIdSet) => { let on_confirm = data; const onCnfrmObj = {}; - + const contextTimestamp= on_confirm.context.timestamp on_confirm = on_confirm.message.order; + let items= on_confirm.items; let fulfillments = on_confirm.fulfillments; let rts = dao.getValue("rts"); let p2h2p = dao.getValue("p2h2p") let awbNo= dao.getValue("awbNo"); + + if (on_confirm?.updated_at > contextTimestamp) { + onCnfrmObj.updatedAtErr = `order/updated_at cannot be future dated w.r.t context/timestamp`; + } + if (on_confirm?.created_at > contextTimestamp) { + onCnfrmObj.createdAtErr = `order/created_at cannot be future dated w.r.t context/timestamp`; + } + + let categoryId; + items.forEach(item=>{ + categoryId=item.category_id; + }) try { console.log(`checking start and end time range in fulfillments`); fulfillments.forEach((fulfillment) => { + if(categoryId==='Immediate Delivery' && fulfillment.tracking !== true){ + onCnfrmObj.trckErr= `tracking should be enabled (true) for hyperlocal (Immediate Delivery)` + } if(fulfillment["@ondc/org/awb_no"] && p2h2p) awbNo= true; console.log("rts",rts) diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnInit.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnInit.js index 638e31f..d53e7f6 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnInit.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnInit.js @@ -14,6 +14,11 @@ const checkOnInit = (data, msgIdSet) => { let onSearchProvArr = dao.getValue("providersArr"); + console.log(dao.getValue("providerLoc"),on_init.provider_location); + if(dao.getValue("providerLoc")===false && on_init.provider_location){ + onInitObj.prvdrLocErr=`Provider location should be provided only if returned in /on_search, also it is used where the shipment has to be dropped at LSP location` + } + try { console.log( `Comparing order quote price and break up in ${constants.LOG_ONINIT}` @@ -32,33 +37,39 @@ const checkOnInit = (data, msgIdSet) => { ] = `Price value for '${breakup["@ondc/org/title_type"]}' should not have more than 2 decimal places`; } totalBreakup += parseFloat(breakup.price.value); - + onSearchProvArr?.forEach((provider) => { - if (provider.id === provId) { provider?.items.forEach((item, i) => { - if ( item.id === breakup["@ondc/org/item_id"] && - (breakup["@ondc/org/title_type"] === "delivery") + breakup["@ondc/org/title_type"] === "delivery" ) { - if (parseFloat(on_init.quote.price.value) !== parseFloat(item.price.value)) { + if ( + parseFloat(on_init.quote.price.value) !== + parseFloat(item.price.value) + ) { let itemKey = `priceArr${i}`; - onInitObj[ - itemKey - ] = `Quote price ${parseFloat(on_init.quote.price.value)} for item id '${breakup["@ondc/org/item_id"]}' does not match item price ${item.price.value} in /on_search`; + onInitObj[itemKey] = `Quote price ${parseFloat( + on_init.quote.price.value + )} for item id '${ + breakup["@ondc/org/item_id"] + }' does not match item price ${ + item.price.value + } in /on_search`; } } - }); - - } }); }); if (parseFloat(on_init.quote.price.value) !== totalBreakup) - onInitObj.quotePriceErr = `Quote price ${parseFloat(on_init.quote.price.value)} does not match the breakup total ${totalBreakup} in ${constants.LOG_ONINIT}`; + onInitObj.quotePriceErr = `Quote price ${parseFloat( + on_init.quote.price.value + )} does not match the breakup total ${totalBreakup} in ${ + constants.LOG_ONINIT + }`; } } catch (err) { console.log( diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnSearch.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnSearch.js index 5e1ac22..f295472 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnSearch.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnSearch.js @@ -2,9 +2,9 @@ const _ = require("lodash"); const dao = require("../../dao/dao"); const constants = require("../constants"); const utils = require("../utils"); -const {reverseGeoCodingCheck} = require("../reverseGeoCoding") +const { reverseGeoCodingCheck } = require("../reverseGeoCoding"); -const checkOnSearch = (data, msgIdSet) => { +const checkOnSearch = async (data, msgIdSet) => { const onSrchObj = {}; let onSearch = data; let core_version = onSearch.context.core_version; @@ -12,7 +12,7 @@ const checkOnSearch = (data, msgIdSet) => { let search = dao.getValue("searchObj"); let validFulfillmentIDs = new Set(); onSearch = onSearch.message.catalog; - + let avgPickupTime; try { console.log( `Checking TAT for category or item in ${constants.LOG_ONSEARCH} api` @@ -22,40 +22,62 @@ const checkOnSearch = (data, msgIdSet) => { provider.categories.forEach((category) => { const catName = category.id; const categoryTime = category.time; - const currentDate = timestamp.split('T')[0]; + const currentDate = timestamp.split("T")[0]; const dateObj = new Date(currentDate); - const nextDate = new Date(dateObj.setDate(dateObj.getDate() + 1)).toISOString().split('T')[0]; - const categoryTimestamp = core_version == "1.1.0" ? categoryTime?.timestamp?.split('T')[0] : categoryTime?.timestamp; - if((catName == 'Same Day Delivery' || catName == 'Immediate Delivery') && categoryTimestamp && categoryTimestamp != currentDate){ - onSrchObj.catTAT = `For Same Day Delivery/Immediate Delivery, TAT date should be the same date i.e. ${currentDate}` + const nextDate = new Date(dateObj.setDate(dateObj.getDate() + 1)) + .toISOString() + .split("T")[0]; + const categoryTimestamp = + core_version == "1.1.0" + ? categoryTime?.timestamp?.split("T")[0] + : categoryTime?.timestamp; + + if ( + (catName == "Same Day Delivery" || + catName == "Immediate Delivery") && + categoryTimestamp && + categoryTimestamp != currentDate + ) { + onSrchObj.catTAT = `For Same Day Delivery/Immediate Delivery, TAT date should be the same date i.e. ${currentDate}`; } - if(catName == 'Next Day Delivery' && categoryTimestamp && categoryTimestamp != nextDate){ - onSrchObj.catTAT = `For Next Day Delivery, TAT date should be the next date i.e. ${nextDate}` + if ( + catName == "Next Day Delivery" && + categoryTimestamp && + categoryTimestamp != nextDate + ) { + onSrchObj.catTAT = `For Next Day Delivery, TAT date should be the next date i.e. ${nextDate}`; } provider.items.forEach((item) => { const catId = item.category_id; const itemTime = item.time; - const itemTimestamp = core_version == "1.1.0" ? itemTime?.timestamp?.split('T')[0] : itemTime?.timestamp; + const itemTimestamp = + core_version == "1.1.0" + ? itemTime?.timestamp?.split("T")[0] + : itemTime?.timestamp; if (catName === catId && !categoryTime && !itemTime) onSrchObj.TAT = `Either Category level TAT or Item level TAT should be given in ${constants.LOG_ONSEARCH} api for category "${catName}"`; - if((catId == 'Same Day Delivery' || catId == 'Immediate Delivery') && itemTimestamp && itemTimestamp != currentDate){ - onSrchObj.itemTAT = `For Same Day Delivery/Immediate Delivery, TAT date should be the same date i.e. ${currentDate}` - } - if(catId == 'Next Day Delivery' && itemTimestamp && itemTimestamp != nextDate){ - onSrchObj.itemTAT = `For Next Day Delivery, TAT date should be the next date i.e. ${nextDate}` - } + if ( + (catId == "Same Day Delivery" || catId == "Immediate Delivery") && + itemTimestamp && + itemTimestamp != currentDate + ) { + onSrchObj.itemTAT = `For Same Day Delivery/Immediate Delivery, TAT date should be the same date i.e. ${currentDate}`; + } + if ( + catId == "Next Day Delivery" && + itemTimestamp && + itemTimestamp != nextDate + ) { + onSrchObj.itemTAT = `For Next Day Delivery, TAT date should be the next date i.e. ${nextDate}`; + } }); }); }); } } catch (error) { - console.log( - `!!Error while fetching category and item TAT`, - error - ); + console.log(`!!Error while fetching category and item TAT`, error); } - //forward and backward shipment try { console.log( @@ -78,20 +100,26 @@ const checkOnSearch = (data, msgIdSet) => { for (const fulfillment of fulfillments) { validFulfillmentIDs.add(fulfillment.id); - if (fulfillment.type === "Prepaid" || fulfillment.type === "CoD" || fulfillment.type === "Delivery") { + if ( + fulfillment.type === "Prepaid" || + fulfillment.type === "CoD" || + fulfillment.type === "Delivery" + ) { hasForwardShipment = true; + avgPickupTime= fulfillment?.start?.time?.duration + dao.setValue("avgPickupTime",avgPickupTime) } else if ( fulfillment.type === "RTO" || - fulfillment.type === "Reverse QC" || fulfillment.type === "Return" + fulfillment.type === "Reverse QC" || + fulfillment.type === "Return" ) { hasBackwardShipment = true; + if (fulfillment.type === "RTO") dao.setValue("rtoID", fulfillment.id); } } if (hasForwardShipment && hasBackwardShipment) { - console.log( - "Both forward and backward shipments are present." - ); + console.log("Both forward and backward shipments are present."); } else if (!hasForwardShipment) { onSrchObj.frwrdShpmnt = `Forward shipment is missing in fulfillments in ${constants.LOG_ONSEARCH} api`; } else if (!hasBackwardShipment) { @@ -139,29 +167,40 @@ const checkOnSearch = (data, msgIdSet) => { error ); } - + let providerLoc = false; // RGC checks on bpp/provider console.log(`Checking Reverse Geocoding on bpp/providers`); if (onSearch.hasOwnProperty("bpp/providers")) { - onSearch["bpp/providers"].forEach((provider) => { + const providers = onSearch["bpp/providers"]; + for (let i = 0; i < providers.length; i++) { + const provider = providers[i]; if (provider.hasOwnProperty("locations")) { - provider.locations.forEach( - async ({ id, gps, address: { area_code } }) => { - try { - const [lat, long] = gps.split(","); - const match = await reverseGeoCodingCheck(lat, long, area_code); - if (!match) - onSrchObj[ - "bpp/provider:location:" + id + ":RGC" - ] = `Reverse Geocoding for location ID ${id} failed. Area Code ${area_code} not matching with ${lat},${long} Lat-Long pair.`; - } catch (error) { - console.log("bpp/providers error: ", error); + const locations = provider.locations; + if (locations?.length > 1) { + providerLoc = true; + } + for (let j = 0; j < locations.length; j++) { + const { + id, + gps, + address: { area_code }, + } = locations[j]; + try { + const [lat, long] = gps.split(","); + const match = await reverseGeoCodingCheck(lat, long, area_code); + if (!match) { + onSrchObj[ + "bpp/provider:location:" + id + ":RGC" + ] = `Reverse Geocoding for location ID ${id} failed. Area Code ${area_code} not matching with ${lat},${long} Lat-Long pair.`; } + } catch (error) { + console.log("bpp/providers error: ", error); } - ); + } } - }); + dao.setValue("providerLoc", providerLoc); + } } return onSrchObj; diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnStatus.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnStatus.js index 1093c5c..abda338 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnStatus.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnStatus.js @@ -15,16 +15,32 @@ const checkOnStatus = (data, msgIdSet) => { let items = on_status.items; let fulfillments = on_status.fulfillments; let pickupTime, deliveryTime, RtoPickupTime, RtoDeliveredTime; + let paymentStatus = on_status?.payment?.status; + if (on_status.state === "Complete" && payment.type === "ON-FULFILLMENT") { + if (paymentStatus !== "PAID") { + onStatusObj.pymntStatusErr = `Payment status should be 'PAID' once the order is complete for payment type 'ON-FULFILLMENT'`; + } + if (!on_status?.payment?.time) { + onStatusObj.pymntTimeErr = `Payment time should be recorded once the order is complete for payment type 'ON-FULFILLMENT'`; + } + } + let categoryId; + items.forEach((item) => { + categoryId = item.category_id; + }); try { - if (fulfillments.length > 1) { + if (fulfillments?.length > 1) { console.log( `Checking for a valid 'Cancelled' fulfillment state for type 'Delivery' in case of RTO` ); fulfillments.forEach((fulfillment) => { ffState = fulfillment?.state?.descriptor?.code; - if ((fulfillment.type === "Prepaid" || fulfillment.type === "Delivery") && ffState !== "Cancelled") { + if ( + (fulfillment.type === "Prepaid" || fulfillment.type === "Delivery") && + ffState !== "Cancelled" + ) { onStatusObj.flflmntstErr = `In case of RTO, fulfillment with type 'Delivery/Prepaid' needs to in 'Cancelled' state`; } }); @@ -39,7 +55,17 @@ const checkOnStatus = (data, msgIdSet) => { `Comparing pickup and delivery timestamps for on_status_${ffState}` ); - if (fulfillment.type === "Prepaid" || fulfillment.type === "CoD" || fulfillment.type === "Delivery") { + if ( + fulfillment.type === "Prepaid" || + fulfillment.type === "CoD" || + fulfillment.type === "Delivery" + ) { + if ( + categoryId === "Immediate Delivery" && + fulfillment.tracking !== true + ) { + onStatusObj.trckErr = `tracking should be enabled (true) for hyperlocal (Immediate Delivery)`; + } if (ffState === "Pending" || ffState === "Agent-assigned") { if (fulfillment?.start?.time?.timestamp) { onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) cannot be provided for fulfillment state - ${ffState}`; @@ -66,7 +92,6 @@ const checkOnStatus = (data, msgIdSet) => { } } if (ffState === "Out-for-delivery") { - if (orderState !== "In-progress") { onStatusObj.ordrStatErr = `Order state should be 'In-progress' for fulfillment state - ${ffState}`; } @@ -92,7 +117,7 @@ const checkOnStatus = (data, msgIdSet) => { deliveryTime = fulfillment?.end?.time?.timestamp; dao.setValue("deliveryTime", deliveryTime); - if (!fulfillment?.start?.time?.timestamp) { + if (!fulfillment?.start?.time?.timestamp) { { onStatusObj.pickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) is missing for fulfillment state - ${ffState}`; } @@ -123,7 +148,9 @@ const checkOnStatus = (data, msgIdSet) => { onStatusObj.msngPickupTimeErr = `Pickup timestamp (fulfillments/start/time/timestamp) is missing for fulfillment state - ${ffState}`; } } - + if(fulfillment.tracking===true){ + onStatusObj.trackErr=`fulfillment tracking can be disabled (false) after the fulfillment is 'Cancelled` + } if (fulfillment.start.time.timestamp && dao.getValue("pickupTime")) { if ( !_.isEqual( @@ -149,7 +176,7 @@ const checkOnStatus = (data, msgIdSet) => { if (orderState !== "Cancelled") { onStatusObj.ordrStatErr = `Order state should be 'Cancelled' for fulfillment state - ${ffState}`; } - if (ffState === "RTO-Initiated" && fulfillment.type === "Prepaid" ) { + if (ffState === "RTO-Initiated" && fulfillment.type === "Prepaid") { RtoPickupTime = fulfillment?.start?.time?.timestamp; console.log(RtoPickupTime); if (RtoPickupTime) { @@ -161,7 +188,7 @@ const checkOnStatus = (data, msgIdSet) => { onStatusObj.rtoPickupErr = `RTO Pickup (fulfillments/start/time/timestamp) time cannot be future dated for fulfillment state - ${ffState}`; } } - + if (ffState === "RTO-Delivered" || ffState === "RTO-Disposed") { RtoDeliveredTime = fulfillment?.end?.time?.timestamp; if (!RtoDeliveredTime && ffState === "RTO-Delivered") diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnTrack.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnTrack.js new file mode 100644 index 0000000..440291e --- /dev/null +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnTrack.js @@ -0,0 +1,27 @@ +const _ = require("lodash"); +const dao = require("../../dao/dao"); +const constants = require("../constants"); +const utils = require("../utils.js"); + +const checkOnTrack = (data, msgIdSet) => { + let onTrackObj = {}; + let on_track = data; + let contextTimestamp = on_track?.context?.timestamp; + + on_track = on_track.message.tracking; + + + if (on_track?.location.updated_at > contextTimestamp) { + onTrackObj.updatedAtErr = `tracking/location/updated_at cannot be future dated w.r.t context/timestamp`; + } + + + if (on_track?.location.time.timestamp > contextTimestamp) { + onTrackObj.updatedAtErr = `tracking/location/time/timestamp cannot be future dated w.r.t context/timestamp`; + } + + + return onTrackObj; +}; + +module.exports = checkOnTrack; diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnUpdate.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnUpdate.js index 251b8a6..f6ab610 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnUpdate.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logOnUpdate.js @@ -29,6 +29,7 @@ const checkOnUpdate = (data, msgIdSet) => { `Checking if start and end time range required in /on_update api` ); fulfillments.forEach((fulfillment) => { + const ffState = fulfillment?.state?.descriptor?.code if (fulfillment["@ondc/org/awb_no"]) { awbNo = true; } @@ -43,6 +44,9 @@ const checkOnUpdate = (data, msgIdSet) => { if (rts === "yes" && !fulfillment?.start?.time?.range) { onUpdtObj.strtRangeErr = `start/time/range is required in /fulfillments when ready_to_ship = yes in /update`; } + if (fulfillment?.start?.time?.timestamp || fulfillment?.end?.time?.timestamp) { + onUpdtObj.tmpstmpErr = `start/time/timestamp or end/time/timestamp cannot be provided in /fulfillments when fulfillment state is ${ffState}`; + } if (rts === "yes" && !fulfillment?.end?.time?.range) { onUpdtObj.endRangeErr = `end/time/range is required in /fulfillments when ready_to_ship = yes in /update`; } diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logSearch.js b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logSearch.js index a387442..2144d35 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/logSearch.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/logSearch.js @@ -66,7 +66,7 @@ const checkSearch = async (data, msgIdSet) => { } catch (error) { console.log("Error in end location",error) } - //console.log("srchObj from search:", srchObj) + dao.setValue("searchObj", search); return srchObj; }; diff --git a/utilities/logistics-b2b/log-verification-utility/utils/logistics/pinToStd.json b/utilities/logistics-b2b/log-verification-utility/utils/logistics/pinToStd.json index 4875211..0e70a6b 100644 --- a/utilities/logistics-b2b/log-verification-utility/utils/logistics/pinToStd.json +++ b/utilities/logistics-b2b/log-verification-utility/utils/logistics/pinToStd.json @@ -1 +1 @@ -{"110001":"011","110002":"011","110003":"011","110004":"011","110005":"011","110006":"011","110007":"011","110008":"011","110009":"011","110010":"011","110011":"011","110012":"011","110013":"011","110014":"011","110015":"011","110016":"011","110017":"011","110018":"011","110019":"011","110020":"011","110021":"011","110022":"011","110023":"011","110024":"011","110025":"011","110026":"011","110027":"011","110028":"011","110029":"011","110030":"011","110031":"011","110032":"011","110033":"011","110034":"011","110035":"011","110036":"011","110037":"011","110038":"011","110039":"011","110040":"011","110041":"011","110042":"011","110043":"011","110044":"011","110045":"011","110046":"011","110047":"011","110048":"011","110049":"011","110051":"011","110052":"011","110053":"011","110054":"011","110055":"011","110056":"011","110057":"011","110058":"011","110059":"011","110060":"011","110061":"011","110062":"011","110063":"011","110064":"011","110065":"011","110066":"011","110067":"011","110068":"011","110069":"011","110070":"011","110071":"011","110072":"011","110073":"011","110074":"011","110075":"011","110076":"011","110077":"011","110078":"011","110080":"011","110081":"011","110082":"011","110083":"011","110084":"011","110085":"011","110086":"011","110087":"011","110088":"011","110089":"011","110090":"011","110091":"011","110092":"011","110093":"011","110094":"011","110095":"011","110096":"011","110097":"011","110099":"011","110110":"011","121001":"0129","121002":"0129","121003":"0129","121004":"01275","121005":"0129","121006":"0129","121007":"0129","121008":"0129","121009":"0129","121010":"0129","121012":"0129","121013":"0129","121014":"0129","121015":"0129","121101":"0129","121102":"01275","121103":"01275","121105":"01275","121106":"01275","121107":"01275","122001":"0124","122002":"0124","122003":"0124","122004":"0124","122005":"0124","122006":"0124","122007":"0124","122008":"0124","122009":"0124","122010":"0124","122011":"0124","122012":"0124","122015":"0124","122016":"0124","122017":"0124","122018":"0124","122051":"0124","122052":"0124","122098":"0124","122101":"0124","122102":"0124","122103":"01267","122104":"01267","122105":"01267","122107":"01267","122108":"01267","122413":"0124","122414":"0124","122502":"01274","122503":"0124","122504":"0124","122505":"0124","122506":"0124","122508":"01267","123001":"01285","123021":"01285","123023":"01285","123024":"01285","123027":"01285","123028":"01285","123029":"01285","123031":"01285","123034":"01285","123035":"01274","123101":"01274","123102":"01274","123103":"01274","123106":"01274","123110":"01274","123301":"01274","123302":"01274","123303":"01274","123401":"01274","123411":"01274","123412":"01274","123501":"01274","124001":"01262","124010":"01262","124021":"01262","124022":"01262","124102":"01251","124103":"01251","124104":"01251","124105":"01251","124106":"01251","124107":"01251","124108":"01251","124109":"01251","124111":"01262","124112":"01262","124113":"01262","124141":"01251","124142":"01251","124146":"01251","124201":"01262","124202":"01262","124303":"01262","124401":"01262","124404":"01262","124406":"01262","124411":"01262","124412":"01262","124501":"01262","124504":"01251","124505":"01251","124506":"01251","124507":"01251","124508":"01251","124513":"01262","124514":"01262","125001":"01662","125004":"01662","125005":"01662","125006":"01662","125007":"01662","125011":"01662","125033":"01662","125037":"01662","125038":"01662","125039":"01662","125042":"01662","125044":"01662","125047":"01662","125048":"01667","125049":"01662","125050":"01662","125051":"01667","125052":"01662","125053":"01667","125054":"05334","125055":"05334","125056":"05334","125058":"05334","125060":"05334","125075":"05334","125076":"05334","125077":"05334","125078":"05334","125101":"05334","125102":"05334","125103":"05334","125104":"05334","125106":"01667","125110":"05334","125111":"01667","125112":"01662","125113":"01662","125120":"01667","125121":"01662","125133":"01667","125201":"05334","126101":"01681","126102":"01681","126110":"01681","126111":"01681","126112":"01681","126113":"01681","126114":"01681","126115":"01681","126116":"01681","126125":"01681","126152":"01681","127021":"01664","127022":"01250","127025":"01250","127026":"01250","127027":"01664","127028":"01664","127029":"01664","127030":"01664","127031":"01664","127032":"01664","127035":"01664","127040":"01664","127041":"01664","127042":"01250","127043":"01664","127045":"01664","127046":"01664","127111":"01664","127114":"01664","127201":"01664","127306":"01250","127307":"01250","127308":"01250","127309":"01664","127310":"01250","127311":"01664","127312":"01250","131001":"0130","131021":"0130","131022":"0130","131023":"0130","131024":"0130","131027":"0130","131028":"0130","131029":"0130","131030":"0130","131039":"0130","131101":"0130","131102":"0130","131103":"0130","131301":"0130","131302":"0130","131304":"0130","131305":"0130","131306":"0130","131402":"0130","131403":"0130","131408":"0130","131409":"0130","132001":"0184","132022":"0184","132023":"0184","132024":"0184","132036":"0184","132037":"0184","132039":"0184","132040":"0184","132041":"0184","132046":"0184","132054":"0184","132101":"0180","132102":"0180","132103":"0180","132104":"0180","132105":"0180","132106":"0180","132107":"0180","132108":"0180","132113":"0180","132114":"0184","132115":"0180","132116":"0184","132117":"0184","132122":"0180","132140":"0180","132145":"0180","132157":"0184","133001":"0171","133004":"0171","133005":"0171","133006":"0171","133008":"0171","133010":"0171","133101":"0171","133102":"0171","133103":"01732","133104":"0171","133201":"0171","133202":"01732","133203":"0171","133204":"01732","133205":"0171","133206":"01732","133207":"0171","133301":"0172","133302":"0172","134003":"0171","134005":"0171","134007":"0171","134008":"0171","134101":"0172","134102":"0172","134103":"0172","134104":"0172","134105":"0172","134107":"0172","134108":"0172","134109":"0172","134112":"0172","134113":"0172","134114":"0172","134116":"0172","134117":"0172","134118":"0172","134201":"0172","134202":"0171","134203":"0171","134204":"0172","134205":"0172","135001":"01732","135002":"01732","135003":"01732","135004":"01732","135021":"01732","135101":"01732","135102":"01732","135103":"01732","135106":"01732","135133":"01732","136020":"01746","136021":"01746","136026":"01746","136027":"01746","136030":"01744","136033":"01746","136034":"01746","136035":"01746","136038":"01744","136042":"01746","136043":"01746","136044":"01746","136117":"01746","136118":"01744","136119":"01744","136128":"01744","136129":"01744","136130":"01744","136131":"01744","136132":"01744","136134":"01744","136135":"01744","136136":"01744","136156":"01744","140001":"01881","140101":"01881","140102":"01881","140103":"0172","140108":"01881","140109":"0172","140110":"0172","140111":"01881","140112":"01881","140113":"01881","140114":"01881","140115":"01881","140116":"01881","140117":"01881","140118":"01881","140119":"01881","140123":"01881","140124":"01881","140125":"01881","140126":"01881","140127":"01881","140128":"01881","140133":"01881","140201":"0172","140301":"0172","140306":"0172","140307":"0172","140308":"0172","140401":"0175","140402":"0175","140405":"01763","140406":"01763","140407":"01763","140408":"01763","140412":"01763","140413":"0172","140417":"0175","140501":"0172","140506":"0172","140507":"0172","140601":"0172","140602":"0175","140603":"0172","140604":"0172","140701":"0175","140702":"0175","140802":"01763","140901":"0172","141001":"0161","141002":"0161","141003":"0161","141004":"0161","141006":"0161","141007":"0161","141008":"0161","141010":"0161","141011":"0161","141012":"0161","141013":"0161","141014":"0161","141015":"0161","141016":"0161","141017":"0161","141101":"0161","141102":"0161","141103":"0161","141104":"0161","141105":"0161","141106":"0161","141107":"0161","141108":"0161","141109":"0161","141110":"0161","141112":"0161","141113":"0161","141114":"0161","141115":"0161","141116":"0161","141117":"0161","141118":"0161","141119":"0161","141120":"0161","141121":"0161","141122":"0161","141123":"0161","141125":"0161","141126":"0161","141127":"0161","141201":"0161","141202":"0161","141203":"0161","141204":"0161","141205":"0161","141206":"0161","141401":"0161","141411":"01763","141412":"0161","141413":"0161","141414":"0161","141415":"0161","141416":"0161","141417":"0161","141418":"0161","141419":"0161","141421":"0161","141422":"0161","141801":"01763","142001":"01636","142002":"01636","142003":"01636","142011":"01636","142021":"0161","142022":"0161","142023":"0161","142024":"0161","142025":"0161","142026":"0161","142027":"0161","142028":"0161","142029":"0161","142030":"0161","142031":"0161","142032":"0161","142033":"0161","142034":"0161","142035":"0161","142036":"0161","142037":"01636","142038":"01636","142039":"01636","142040":"01636","142041":"01636","142042":"01636","142043":"01636","142044":"01632","142045":"01636","142046":"01636","142047":"01632","142048":"01636","142049":"01636","142050":"01632","142052":"01632","142053":"01636","142054":"01636","142055":"01636","142056":"01636","142057":"01636","142058":"01636","142060":"01632","143001":"0183","143002":"0183","143003":"0183","143004":"0183","143005":"0183","143006":"0183","143008":"0183","143009":"0183","143022":"0183","143101":"0183","143102":"0183","143103":"0183","143105":"0183","143107":"01852","143108":"0183","143109":"0183","143111":"0183","143112":"0183","143113":"0183","143114":"0183","143115":"0183","143116":"0183","143117":"01852","143118":"01852","143119":"0183","143149":"0183","143201":"0183","143202":"0183","143203":"0183","143204":"0183","143205":"0183","143301":"01852","143302":"01852","143303":"01852","143304":"01852","143305":"01852","143401":"01852","143402":"01852","143406":"01852","143407":"01852","143408":"01852","143409":"01852","143410":"01852","143411":"01852","143412":"01852","143413":"0183","143414":"01852","143415":"01852","143416":"01852","143419":"01852","143422":"01852","143501":"0183","143502":"0183","143504":"0183","143505":"01874","143506":"01874","143507":"01874","143511":"01874","143512":"01874","143513":"01874","143514":"01874","143515":"01874","143516":"01874","143517":"01874","143518":"01874","143519":"01874","143520":"01874","143521":"01874","143525":"0186","143526":"01874","143527":"01874","143528":"01874","143529":"01874","143530":"01874","143531":"0186","143532":"01874","143533":"0186","143534":"0186","143601":"0183","143602":"01874","143603":"0183","143604":"01874","143605":"01874","143606":"0183","144001":"0181","144002":"0181","144003":"0181","144004":"0181","144005":"0181","144006":"0181","144007":"0181","144008":"0181","144009":"0181","144010":"0181","144011":"0181","144012":"0181","144020":"0181","144021":"0181","144022":"0181","144023":"0181","144024":"0181","144025":"0181","144026":"0181","144027":"0181","144028":"0181","144029":"01823","144030":"0181","144031":"0181","144032":"0181","144033":"0181","144034":"0181","144035":"0181","144036":"0181","144037":"0181","144039":"0181","144040":"0181","144041":"0181","144042":"0181","144043":"0181","144044":"0181","144101":"0181","144102":"0181","144103":"0181","144104":"0181","144105":"01882","144106":"0181","144201":"0181","144202":"01882","144204":"01882","144205":"01882","144206":"01882","144207":"01882","144208":"01882","144209":"01882","144210":"01882","144211":"01882","144212":"01882","144213":"01882","144214":"01882","144216":"01882","144221":"01882","144222":"01882","144223":"01882","144224":"01882","144301":"0181","144302":"0181","144303":"0181","144305":"01882","144306":"01882","144311":"0181","144401":"01822","144402":"01822","144403":"01822","144404":"01882","144405":"01822","144406":"01882","144407":"01822","144408":"01822","144409":"0181","144410":"0181","144411":"01822","144415":"01823","144416":"0181","144417":"01823","144418":"0181","144419":"0181","144421":"01823","144422":"01823","144501":"01823","144502":"01823","144503":"01823","144504":"01823","144505":"01823","144506":"01823","144507":"01823","144508":"01823","144509":"01823","144510":"01823","144511":"01823","144512":"01823","144513":"01823","144514":"01823","144515":"01823","144516":"01823","144517":"01823","144518":"01823","144519":"01882","144520":"01882","144521":"01823","144522":"01823","144523":"01882","144524":"01823","144525":"01823","144526":"01823","144527":"01882","144528":"01882","144529":"01882","144530":"01882","144531":"01882","144532":"01882","144533":"01823","144601":"01822","144602":"01822","144603":"01822","144606":"01822","144620":"01822","144621":"01822","144622":"01822","144623":"01822","144624":"01822","144625":"01822","144626":"01822","144628":"01822","144629":"0181","144630":"0181","144631":"01822","144632":"01823","144633":"0181","144701":"0181","144702":"0181","144703":"0181","144801":"0181","144802":"01822","144803":"0181","144804":"01822","144805":"0181","144806":"0181","144819":"01822","145001":"0186","145022":"0186","145023":"0186","145024":"0186","145025":"0186","145026":"0186","145027":"0186","145029":"0186","145101":"0186","146001":"01882","146021":"01882","146022":"01882","146023":"01882","146024":"01882","146101":"01882","146102":"01882","146103":"01882","146104":"01882","146105":"01882","146106":"01882","146107":"01882","146108":"01882","146109":"01882","146110":"01882","146111":"01882","146112":"01882","146113":"01882","146114":"01882","146115":"01882","146116":"01882","147001":"0175","147002":"0175","147003":"0175","147004":"0175","147005":"0175","147006":"0175","147007":"0175","147008":"0175","147021":"0175","147101":"0175","147102":"0175","147103":"0175","147104":"0175","147105":"0175","147111":"0175","147201":"0175","147202":"0175","147203":"01763","147301":"01763","148001":"01672","148002":"01672","148017":"01672","148018":"01672","148019":"01675","148020":"01672","148021":"01675","148022":"01672","148023":"01672","148024":"01672","148025":"01672","148026":"01672","148027":"01672","148028":"01672","148029":"01672","148030":"01672","148031":"01672","148033":"01672","148034":"01672","148035":"01672","148100":"01679","148101":"01679","148102":"01679","148103":"01679","148104":"01679","148105":"01679","148106":"01672","148107":"01679","148108":"01679","148109":"01679","151001":"0164","151002":"0164","151003":"0164","151004":"0164","151005":"0164","151006":"0164","151101":"0164","151102":"0164","151103":"0164","151104":"0164","151105":"0164","151106":"0164","151108":"0164","151111":"0164","151201":"0164","151202":"01633","151203":"01639","151204":"01639","151205":"01639","151206":"0164","151207":"01636","151208":"01636","151209":"01639","151210":"01633","151211":"01633","151212":"01639","151213":"01639","151214":"01639","151301":"0164","151302":"01652","151401":"0164","151501":"01652","151502":"01652","151503":"01652","151504":"01652","151505":"01652","151506":"01652","151507":"01652","151508":"01652","151509":"01652","151510":"01652","152001":"01632","152002":"01632","152003":"01632","152004":"01632","152005":"01632","152020":"01638","152021":"01632","152022":"01632","152023":"01632","152024":"01638","152025":"01633","152026":"01633","152028":"01636","152031":"01633","152032":"01633","152033":"01638","152101":"01633","152107":"01633","152112":"01633","152113":"01633","152114":"01633","152115":"01633","152116":"01638","152117":"01638","152118":"01638","152121":"01638","152122":"01638","152123":"01638","152124":"01638","152128":"01638","152132":"01638","160001":"0172","160002":"0172","160003":"0172","160004":"0172","160005":"0172","160006":"0172","160009":"0172","160011":"0172","160012":"0172","160014":"0172","160015":"0172","160016":"0172","160017":"0172","160018":"0172","160019":"0172","160020":"0172","160022":"0172","160023":"0172","160025":"0172","160030":"0172","160036":"0172","160043":"0172","160047":"0172","160055":"0172","160059":"0172","160062":"0172","160071":"0172","160101":"0172","160102":"0172","160103":"0172","160104":"0172","171001":"0177","171002":"0177","171003":"0177","171004":"0177","171005":"0177","171006":"0177","171007":"0177","171008":"0177","171009":"0177","171010":"0177","171011":"0177","171012":"0177","171013":"0177","171014":"0177","171015":"0177","171018":"0177","171019":"0177","171102":"01792","171103":"0177","171201":"0177","171202":"0177","171203":"0177","171204":"0177","171205":"0177","171206":"0177","171207":"0177","171208":"0177","171209":"0177","171210":"0177","171211":"0177","171212":"0177","171213":"0177","171214":"0177","171215":"0177","171216":"0177","171217":"0177","171218":"0177","171219":"0177","171220":"0177","171221":"0177","171222":"0177","171223":"0177","171224":"0177","171225":"0177","171226":"01702","171301":"0177","172001":"0177","172002":"01902","172021":"0177","172022":"0177","172023":"01902","172024":"0177","172025":"01902","172026":"01902","172027":"0177","172028":"0177","172029":"0177","172030":"0177","172031":"0177","172032":"01902","172033":"01902","172034":"0177","172101":"0177","172102":"0177","172103":"01786","172104":"01786","172105":"01786","172106":"01786","172107":"01786","172108":"01786","172109":"01786","172110":"01786","172111":"01900","172112":"01786","172113":"01900","172114":"01900","172115":"01786","172116":"01786","172117":"01900","172118":"01786","172201":"0177","173001":"01702","173021":"01702","173022":"01702","173023":"01702","173024":"01702","173025":"01702","173026":"01702","173027":"01702","173029":"01702","173030":"01702","173031":"01702","173032":"01702","173101":"01702","173104":"01702","173201":"01792","173202":"01792","173204":"01792","173205":"01792","173206":"01792","173207":"01792","173208":"01792","173209":"01792","173210":"01792","173211":"01792","173212":"01792","173213":"01792","173214":"01792","173215":"01792","173217":"01792","173218":"01792","173220":"01792","173221":"01792","173222":"01792","173223":"01792","173225":"01792","173229":"01792","173230":"01792","173233":"01792","173234":"01792","173235":"01792","173236":"01792","174001":"07752","174002":"07752","174003":"07752","174004":"07752","174005":"07752","174011":"07752","174012":"07752","174013":"07752","174015":"07752","174017":"07752","174021":"07752","174023":"07752","174024":"07752","174026":"07752","174027":"07752","174028":"07752","174029":"07752","174030":"07752","174031":"07752","174032":"07752","174033":"07752","174034":"07752","174035":"07752","174036":"07752","174101":"01792","174102":"01792","174103":"01792","174201":"07752","174301":"02875","174302":"02875","174303":"02875","174304":"05282","174305":"05282","174306":"02875","174307":"02875","174308":"02875","174309":"05282","174310":"07752","174311":"05282","174312":"05282","174314":"02875","174315":"02875","174316":"02875","174317":"02875","174319":"02875","174320":"02875","174321":"02875","174405":"05282","174503":"02875","174505":"05282","174507":"02875","175001":"01905","175002":"01905","175003":"01905","175004":"01905","175005":"01905","175006":"01905","175007":"01905","175008":"01905","175009":"01905","175010":"01905","175011":"01905","175012":"01905","175013":"01905","175014":"01905","175015":"01905","175016":"01905","175017":"01905","175018":"01905","175019":"01905","175020":"01905","175021":"01905","175023":"01905","175024":"01905","175025":"01905","175026":"01905","175027":"01905","175028":"01905","175029":"01905","175030":"01905","175031":"01905","175032":"01905","175033":"01905","175034":"01905","175035":"01905","175036":"01905","175037":"01905","175038":"01905","175039":"01905","175040":"01905","175042":"01905","175045":"01905","175046":"01905","175047":"01905","175048":"01905","175049":"01905","175050":"01905","175051":"01905","175052":"01905","175075":"01905","175101":"01902","175102":"01902","175103":"01902","175104":"01902","175105":"01902","175106":"01905","175121":"01905","175123":"01905","175124":"01905","175125":"01905","175126":"01902","175128":"01902","175129":"01902","175130":"01902","175131":"01902","175132":"01900","175133":"01900","175134":"01902","175136":"01902","175138":"01902","175139":"01900","175140":"01900","175141":"01905","175142":"01900","175143":"01902","176001":"01892","176002":"01892","176021":"01892","176022":"01892","176023":"01892","176025":"01892","176026":"01892","176027":"01892","176028":"01892","176029":"01892","176030":"01892","176031":"01892","176032":"01892","176033":"01892","176036":"01892","176037":"01892","176038":"01892","176039":"05282","176040":"05282","176041":"05282","176042":"05282","176043":"05282","176044":"05282","176045":"05282","176047":"01892","176048":"05282","176049":"05282","176051":"01892","176052":"01892","176053":"01892","176054":"01892","176055":"01892","176056":"01892","176057":"01892","176058":"01892","176059":"01892","176060":"01892","176061":"01892","176062":"01892","176063":"01892","176064":"01892","176065":"01892","176066":"01892","176067":"01892","176071":"01892","176073":"01892","176075":"01892","176076":"01892","176077":"01892","176081":"01892","176082":"01892","176083":"01892","176084":"01892","176085":"01892","176086":"01892","176087":"01892","176088":"01892","176089":"01892","176090":"01905","176091":"01892","176092":"01892","176093":"01892","176094":"01892","176095":"01892","176096":"01892","176097":"01892","176098":"01892","176101":"01892","176102":"01892","176103":"01892","176107":"01892","176108":"05282","176109":"05282","176110":"05282","176111":"05282","176115":"01892","176125":"01892","176128":"01892","176200":"01892","176201":"01892","176202":"01892","176203":"01892","176204":"01892","176205":"01892","176206":"01892","176207":"01376","176208":"01892","176209":"01892","176210":"01892","176211":"01892","176213":"01892","176214":"01892","176215":"01892","176216":"01892","176217":"01892","176218":"01892","176219":"01892","176225":"01892","176301":"01376","176302":"01376","176303":"01376","176304":"01376","176305":"01376","176306":"01376","176308":"01376","176309":"01376","176310":"01376","176311":"01376","176312":"01376","176313":"01376","176314":"01376","176315":"01376","176316":"01376","176317":"01376","176318":"01376","176319":"01376","176320":"01376","176321":"01376","176323":"01376","176324":"01376","176325":"01376","176326":"01376","176401":"01892","176402":"01892","176403":"01892","176501":"01892","176502":"01892","176601":"02875","177001":"05282","177005":"05282","177006":"05282","177007":"05282","177020":"05282","177021":"05282","177022":"05282","177023":"05282","177024":"05282","177025":"05282","177026":"05282","177027":"05282","177028":"05282","177029":"05282","177031":"02875","177033":"01892","177034":"01892","177038":"02875","177039":"02875","177040":"05282","177041":"05282","177042":"05282","177043":"01892","177044":"05282","177045":"05282","177048":"05282","177101":"01892","177103":"01892","177104":"01892","177105":"01892","177106":"01892","177107":"01892","177108":"01892","177109":"02875","177110":"02875","177111":"01892","177112":"01892","177113":"01892","177114":"01892","177117":"01892","177118":"05282","177119":"05282","177201":"02875","177202":"02875","177203":"02875","177204":"02875","177205":"02875","177206":"02875","177207":"02875","177208":"02875","177209":"02875","177210":"02875","177211":"02875","177212":"02875","177213":"02875","177219":"02875","177220":"02875","177301":"05282","177401":"05282","177501":"05282","177601":"05282","180001":"0191","180002":"0191","180003":"0191","180004":"0191","180005":"0191","180006":"0191","180007":"0191","180009":"0191","180010":"0191","180011":"0191","180012":"01992","180013":"0191","180015":"0191","180016":"0191","180017":"0191","180018":"0191","180019":"0191","180020":"0191","181101":"0191","181102":"0191","181111":"0191","181121":"0191","181122":"0191","181123":"0191","181124":"0191","181131":"0191","181132":"0191","181133":"01923","181141":"01923","181143":"01923","181145":"01923","181152":"0191","181201":"0191","181202":"0191","181203":"0191","181204":"0191","181205":"0191","181206":"0191","181207":"0191","181221":"0191","181224":"0191","182101":"01992","182104":"01992","182121":"01992","182122":"01992","182124":"01992","182125":"01992","182126":"01992","182127":"01992","182128":"01992","182141":"01992","182142":"01992","182143":"01998","182144":"01998","182145":"01998","182146":"01998","182147":"01996","182148":"01998","182161":"01992","182201":"01996","182202":"01996","182203":"01995","182204":"01995","182205":"01995","182206":"01995","182207":"01996","182221":"01996","182222":"01996","182301":"01991","182311":"01991","182312":"01991","182313":"01991","182315":"01991","182320":"01991","184101":"01922","184102":"01922","184104":"01922","184120":"01923","184121":"01992","184141":"01923","184142":"01922","184143":"01922","184144":"01922","184145":"01922","184148":"01922","184151":"01922","184152":"01922","184201":"01922","184202":"01922","184203":"01922","184204":"01922","184205":"01992","184206":"01922","185101":"01965","185102":"01965","185121":"01965","185131":"01962","185132":"01962","185133":"01962","185135":"01962","185151":"01962","185152":"01962","185153":"01962","185154":"01991","185155":"01962","185156":"01962","185201":"01962","185202":"01962","185203":"01991","185211":"01965","185212":"01962","185233":"01962","185234":"01962","190001":"0194","190002":"0194","190003":"0194","190004":"0194","190005":"0194","190006":"0194","190007":"01951","190008":"0194","190009":"0194","190010":"0194","190011":"0194","190012":"0194","190014":"01951","190015":"0194","190017":"0194","190018":"0194","190019":"0194","190020":"0194","190021":"01951","190023":"0194","190024":"0194","190025":"0194","191101":"0194","191102":"01933","191103":"01933","191111":"01951","191112":"01921","191113":"01951","191121":"0194","191131":"0194","191132":"01951","191201":"0194","191202":"0194","192101":"01932","192121":"01933","192122":"01933","192123":"01933","192124":"01921","192125":"01932","192126":"01932","192129":"01932","192201":"01932","192202":"01932","192210":"01932","192211":"01932","192212":"01932","192221":"01932","192231":"01931","192232":"01921","192233":"01931","192301":"01933","192302":"01933","192303":"01921","192304":"01933","192305":"01921","192306":"01921","192401":"01932","193101":"01952","193103":"01952","193108":"01952","193109":"01952","193121":"01952","193122":"01952","193123":"01952","193201":"01952","193221":"01955","193222":"01955","193223":"01955","193224":"01955","193225":"01955","193301":"01952","193302":"01955","193303":"01955","193401":"01951","193402":"01952","193403":"01952","193404":"01951","193411":"01951","193501":"0194","193502":"01957","193503":"01957","193504":"0194","193505":"01957","194101":"01982","194102":"01985","194103":"01985","194104":"01982","194105":"01985","194106":"01982","194107":"01982","194109":"01985","194201":"01982","194202":"01982","194301":"01985","194302":"01985","194303":"01985","194401":"01982","194402":"01982","194404":"01982","201001":"0120","201002":"0120","201003":"0120","201004":"0120","201005":"0120","201006":"0120","201007":"0120","201008":"0120","201009":"0120","201010":"0120","201011":"0120","201012":"0120","201013":"0120","201014":"0120","201015":"0122","201016":"0120","201017":"0120","201018":"0120","201019":"0120","201020":"0120","201021":"0120","201102":"0120","201103":"0120","201201":"0120","201204":"0120","201206":"0120","201301":"0120","201302":"0120","201303":"0120","201304":"0120","201305":"0120","201306":"0120","201307":"0120","201309":"0120","201310":"0120","201311":"0120","201312":"0120","201313":"0120","201314":"0120","201315":"0120","201316":"0120","201317":"0120","201318":"0120","202001":"0571","202002":"0571","202121":"0571","202122":"0571","202123":"0571","202124":"0571","202125":"0571","202126":"0571","202127":"0571","202128":"0571","202129":"0571","202130":"0571","202131":"0571","202132":"0571","202133":"0571","202134":"0571","202135":"0571","202136":"0571","202137":"0571","202138":"0571","202139":"05722","202140":"0571","202141":"0571","202142":"0571","202143":"0571","202145":"0571","202146":"0571","202150":"05722","202155":"0571","202165":"0571","202170":"0571","202280":"0571","202281":"0571","202282":"0571","203001":"05722","203002":"05732","203129":"05732","203131":"05732","203132":"05732","203135":"0120","203141":"0120","203150":"05732","203155":"0120","203201":"0120","203202":"0120","203203":"0120","203205":"05732","203206":"05732","203207":"0120","203209":"0120","203389":"05732","203390":"05732","203391":"05732","203392":"05732","203393":"05732","203394":"05732","203395":"05732","203396":"05732","203397":"05732","203398":"05732","203399":"05732","203401":"05732","203402":"05732","203403":"05732","203405":"05732","203407":"05732","203408":"05732","203409":"05732","203411":"05732","203412":"05732","204101":"05722","204102":"05722","204211":"05722","204212":"05722","204213":"05722","204214":"05722","204215":"05722","204216":"05722","205001":"05672","205119":"05672","205121":"05672","205247":"05672","205261":"05672","205262":"05672","205263":"05672","205264":"05672","205265":"05672","205267":"05672","205268":"05672","205301":"05672","205303":"05672","205304":"05672","206001":"05688","206002":"05688","206003":"05688","206120":"05688","206121":"05688","206122":"05683","206123":"05688","206124":"05688","206125":"05688","206126":"05688","206127":"05688","206128":"05688","206129":"05683","206130":"05688","206131":"05688","206241":"05683","206242":"05688","206243":"05683","206244":"05683","206245":"05688","206246":"05683","206247":"05683","206248":"05683","206249":"05683","206250":"05683","206251":"05683","206252":"05683","206253":"05688","206255":"05683","207001":"05742","207002":"05742","207003":"05742","207120":"05742","207121":"05742","207122":"05742","207123":"05744","207124":"05744","207125":"05742","207241":"05744","207242":"05744","207243":"05744","207244":"05744","207245":"05744","207246":"05744","207247":"05742","207248":"05744","207249":"05742","207250":"05742","207301":"05742","207302":"05742","207401":"05742","207402":"05744","207403":"05744","208001":"0512","208002":"0512","208003":"0512","208004":"0512","208005":"0512","208006":"0512","208007":"0512","208008":"0512","208009":"0512","208010":"0512","208011":"0512","208012":"0512","208013":"0512","208014":"0512","208015":"0512","208016":"0512","208017":"0512","208019":"0512","208020":"0512","208021":"0512","208022":"0512","208023":"0512","208024":"0512","208025":"0512","208026":"0512","208027":"0512","209101":"05113","209111":"05113","209112":"05113","209115":"05113","209121":"0512","209125":"05113","209202":"0512","209203":"0512","209204":"05113","209205":"0512","209206":"0512","209208":"05113","209209":"0512","209210":"0512","209214":"0512","209217":"0512","209301":"05113","209302":"05113","209303":"05113","209304":"0512","209305":"0512","209306":"05113","209307":"0512","209308":"0512","209310":"05113","209311":"0512","209312":"05113","209401":"0512","209402":"0565","209501":"05692","209502":"05692","209503":"05692","209504":"05692","209505":"05692","209601":"05692","209602":"05692","209621":"05692","209622":"05692","209625":"05692","209651":"05692","209652":"05692","209720":"05672","209721":"05694","209722":"05694","209723":"05694","209724":"05694","209725":"05694","209726":"05694","209727":"05694","209728":"05694","209729":"05694","209731":"05694","209732":"05694","209733":"05694","209734":"05694","209735":"05694","209736":"05694","209738":"05694","209739":"05692","209743":"05692","209745":"05692","209747":"05694","209749":"05692","209801":"0515","209821":"0515","209825":"0515","209827":"0515","209831":"0515","209841":"0515","209859":"0515","209860":"0515","209861":"0515","209862":"0515","209863":"0515","209864":"0515","209865":"0515","209866":"0515","209867":"0515","209868":"0515","209869":"0515","209870":"0515","209871":"0515","209881":"0515","210001":"07583","210120":"07583","210121":"07583","210122":"07583","210123":"07583","210125":"07583","210126":"07583","210128":"07583","210129":"07583","210201":"07583","210202":"05191","210203":"07583","210204":"05191","210205":"05191","210206":"05191","210207":"05191","210208":"05191","210209":"05191","210301":"05282","210341":"05282","210421":"05281","210422":"05282","210423":"05281","210424":"05281","210425":"05281","210426":"05281","210427":"05281","210428":"05282","210429":"05281","210430":"05282","210431":"05282","210432":"05282","210433":"05281","210501":"05282","210502":"05282","210504":"05281","210505":"05282","210506":"05282","210507":"05282","211001":"0532","211002":"0532","211003":"0532","211004":"0532","211005":"0532","211006":"0532","211007":"0532","211008":"0532","211010":"0532","211011":"0532","211012":"0532","211013":"0532","211014":"0532","211015":"0532","211016":"0532","211017":"0532","211018":"0532","211019":"0532","211020":"0532","211021":"0532","211022":"0532","211023":"0532","212104":"0532","212105":"0532","212106":"0532","212107":"0532","212108":"0532","212109":"0532","212111":"0532","212201":"05331","212202":"0532","212203":"05331","212204":"05331","212205":"05331","212206":"05331","212207":"05331","212208":"0532","212212":"0532","212213":"05331","212214":"05331","212216":"05331","212217":"05331","212218":"05331","212301":"0532","212302":"0532","212303":"0532","212305":"0532","212306":"0532","212307":"0532","212308":"0532","212401":"0532","212402":"0532","212404":"0532","212405":"0532","212502":"0532","212503":"0532","212507":"0532","212601":"05240","212620":"05240","212621":"05240","212622":"05240","212631":"05240","212635":"05240","212641":"05240","212645":"05240","212650":"05240","212651":"05240","212652":"0120","212653":"05240","212654":"05240","212655":"05240","212656":"05240","212657":"05240","212658":"05240","212659":"05240","212661":"05240","212663":"05240","212664":"05240","212665":"05240","221001":"0542","221002":"0542","221003":"0542","221004":"0542","221005":"0542","221006":"0542","221007":"0542","221008":"0542","221009":"05412","221010":"0542","221011":"0542","221012":"0542","221101":"0542","221103":"0542","221104":"0542","221105":"0542","221106":"0542","221107":"0542","221108":"0542","221109":"0542","221110":"05412","221112":"0542","221115":"05412","221116":"0542","221201":"0542","221202":"0542","221204":"0542","221206":"0542","221207":"0542","221208":"0542","221301":"05414","221302":"0542","221303":"05414","221304":"05414","221305":"0542","221306":"05414","221307":"0542","221308":"05414","221309":"05414","221310":"05414","221311":"0542","221313":"0542","221314":"05414","221401":"05414","221402":"05414","221403":"0542","221404":"05414","221405":"0542","221406":"05414","221407":"0542","221409":"05414","221502":"0532","221503":"0532","221505":"0532","221507":"0532","221508":"0532","221601":"0547","221602":"0547","221603":"0547","221701":"05498","221705":"0547","221706":"0547","221709":"05498","221711":"05498","221712":"05498","221713":"05498","221715":"05498","221716":"05498","221717":"05498","221718":"05498","222001":"05452","222002":"05452","222003":"05452","222105":"05452","222109":"05452","222125":"05452","222126":"05452","222127":"05452","222128":"05452","222129":"05452","222131":"05452","222132":"05452","222133":"05452","222135":"05452","222136":"05452","222137":"05452","222138":"05452","222139":"05452","222141":"05452","222142":"05452","222143":"05452","222144":"05452","222145":"05452","222146":"05452","222148":"05452","222149":"05452","222161":"05452","222162":"05452","222165":"05452","222170":"05452","222175":"05452","222180":"05452","222181":"05452","222201":"05452","222202":"05452","222203":"05452","222204":"05452","222301":"01828","222302":"01828","222303":"01828","223101":"05452","223102":"05452","223103":"05452","223104":"05452","223105":"05452","223221":"05462","223222":"05462","223223":"05462","223224":"05462","223225":"05462","223226":"05462","223227":"05462","224001":"05278","224116":"05278","224117":"05278","224118":"05278","224119":"05278","224120":"05278","224121":"05278","224122":"05271","224123":"05278","224125":"05271","224126":"05278","224127":"05278","224129":"05271","224132":"05271","224133":"05278","224135":"05278","224137":"05271","224139":"05271","224141":"05278","224143":"05271","224145":"05271","224146":"05271","224147":"05271","224149":"05271","224151":"05271","224152":"05271","224153":"05278","224155":"05271","224157":"05271","224158":"05278","224159":"05271","224161":"05278","224164":"05278","224168":"05271","224171":"05278","224172":"05612","224176":"05271","224181":"05271","224182":"05278","224183":"05271","224186":"05271","224188":"05278","224189":"05278","224190":"05271","224195":"05278","224201":"05278","224202":"05278","224203":"05278","224204":"05278","224205":"05278","224206":"05278","224207":"05278","224208":"05278","224209":"05278","224210":"05271","224225":"05278","224227":"05271","224228":"05278","224229":"05278","224230":"05271","224231":"05271","224232":"05271","224234":"05278","224235":"05271","224238":"05271","224284":"05278","225001":"05248","225002":"05248","225003":"05248","225119":"05248","225120":"05248","225121":"05248","225122":"05248","225123":"05248","225124":"05248","225125":"05248","225126":"05248","225201":"05248","225202":"05248","225203":"05248","225204":"05248","225205":"05248","225206":"05248","225207":"05248","225208":"05248","225301":"05248","225302":"05248","225303":"05248","225304":"05248","225305":"05248","225306":"05248","225401":"05248","225403":"05248","225404":"05248","225405":"05248","225409":"05248","225412":"05248","225413":"05248","225414":"05248","225415":"05248","225416":"05248","226001":"0522","226002":"0522","226003":"0522","226004":"0522","226005":"0522","226006":"0522","226007":"0522","226008":"0522","226009":"0522","226010":"0522","226011":"0522","226012":"0522","226013":"0522","226014":"0522","226015":"0522","226016":"0522","226017":"0522","226018":"0522","226019":"0522","226020":"0522","226021":"0522","226022":"0522","226023":"0522","226024":"0522","226025":"0522","226026":"0522","226027":"0522","226028":"0522","226029":"0522","226030":"0522","226031":"0522","226101":"0522","226102":"0522","226103":"0522","226104":"0522","226201":"0522","226202":"0522","226203":"0522","226301":"0522","226302":"0522","226303":"0522","226401":"0522","226501":"0522","227304":"01828","227405":"05368","227406":"05368","227407":"05368","227408":"01828","227409":"05368","227411":"05368","227412":"05368","227413":"05368","227801":"05368","227805":"01828","227806":"01828","227807":"05368","227808":"01828","227809":"05368","227811":"05368","227812":"01828","227813":"01828","227814":"01828","227815":"01828","227816":"01828","227817":"05368","228001":"01828","228118":"01828","228119":"01828","228120":"01828","228121":"01828","228125":"01828","228131":"01828","228132":"01828","228133":"01828","228141":"01828","228142":"01828","228145":"01828","228151":"01828","228155":"01828","228159":"01828","228161":"01828","228171":"01828","228172":"01828","229001":"0535","229010":"0535","229103":"0535","229120":"0535","229121":"0535","229122":"0535","229123":"0535","229124":"0535","229125":"0535","229126":"0535","229127":"0535","229128":"0535","229129":"0535","229130":"0535","229135":"05368","229201":"0535","229202":"0535","229203":"0535","229204":"0535","229205":"0535","229206":"0535","229207":"0535","229208":"0535","229209":"0535","229210":"0535","229211":"0535","229212":"0535","229215":"0535","229216":"0535","229301":"0535","229302":"0535","229303":"0535","229304":"0535","229305":"0535","229306":"0535","229307":"0535","229308":"0535","229309":"05368","229310":"0535","229311":"0535","229316":"0535","229401":"0535","229402":"0535","229404":"0535","229405":"0535","229406":"0535","229408":"05342","229410":"05342","229411":"0532","229412":"0532","229413":"0532","229801":"0535","229802":"0535","230001":"05342","230002":"05342","230121":"05342","230124":"05342","230125":"05342","230126":"05342","230127":"05342","230128":"05342","230129":"05342","230130":"05342","230131":"05342","230132":"05342","230133":"05342","230134":"05342","230135":"05342","230136":"05342","230137":"05342","230138":"05342","230139":"05342","230141":"05342","230142":"05342","230143":"05342","230144":"05342","230201":"05342","230202":"05342","230204":"05342","230301":"05342","230302":"05342","230304":"05342","230306":"05342","230401":"05342","230402":"05342","230403":"05342","230404":"05342","230405":"05342","230501":"05342","230502":"05342","230503":"05342","231001":"05442","231205":"05444","231206":"05444","231207":"05444","231208":"05444","231209":"05444","231210":"05444","231211":"05442","231212":"05444","231213":"05444","231215":"05444","231216":"05444","231217":"05444","231218":"05444","231219":"05444","231220":"05444","231221":"05444","231222":"05444","231223":"05444","231224":"05444","231225":"05444","231226":"05444","231301":"05442","231302":"05442","231303":"05442","231304":"05442","231305":"05442","231306":"05442","231307":"05442","231309":"05442","231311":"05442","231312":"05442","231313":"05442","231314":"05442","231501":"05442","232101":"05412","232102":"05412","232103":"05412","232104":"05412","232105":"05412","232106":"05412","232107":"05412","232108":"05412","232109":"05412","232110":"05412","232111":"05412","232118":"05412","232120":"05412","232325":"0548","232326":"0548","232327":"0548","232328":"0548","232329":"0548","232330":"0548","232331":"0548","232332":"0548","232333":"0548","232336":"0548","232339":"0548","232340":"0548","232341":"0548","233001":"0548","233002":"0548","233221":"0548","233222":"0548","233223":"0548","233224":"0548","233225":"0548","233226":"0548","233227":"0548","233228":"0548","233229":"0548","233230":"0548","233231":"0548","233232":"0548","233233":"0548","233234":"0548","233300":"0548","233301":"0548","233302":"0548","233303":"0548","233304":"0548","233305":"0548","233306":"0548","233307":"0548","233310":"0548","233311":"0548","241001":"0565","241121":"05852","241122":"05852","241123":"05852","241124":"05852","241125":"05852","241126":"05852","241127":"05852","241201":"05852","241202":"05852","241203":"05852","241204":"05852","241301":"05852","241302":"05852","241303":"05852","241304":"05852","241305":"05852","241401":"05852","241402":"05852","241403":"05852","241404":"05852","241405":"05852","241406":"05852","241407":"05852","242001":"05842","242021":"05923","242042":"05842","242127":"05842","242220":"05842","242221":"05842","242223":"05842","242226":"05842","242301":"05842","242303":"05842","242305":"05842","242306":"05842","242307":"05842","242401":"05842","242405":"05842","242406":"05842","242407":"05842","243001":"0581","243002":"0581","243003":"0581","243004":"0581","243005":"0581","243006":"0581","243122":"0581","243123":"0581","243126":"0581","243201":"0581","243202":"0581","243203":"0581","243301":"0581","243302":"0581","243303":"0581","243401":"0581","243402":"0581","243403":"0581","243407":"0581","243501":"0581","243502":"0581","243503":"0581","243504":"0581","243505":"0581","243506":"0581","243601":"05832","243630":"05832","243631":"05832","243632":"05832","243633":"05832","243634":"05832","243635":"05832","243636":"05832","243637":"05832","243638":"05923","243639":"05832","243641":"05832","243720":"05832","243722":"05923","243723":"05923","243724":"05832","243725":"05832","243726":"05832","243727":"05923","243751":"05923","244001":"0591","244102":"05923","244103":"0591","244104":"0591","244105":"0591","244221":"05922","244222":"05922","244223":"05922","244225":"05922","244231":"05922","244235":"05922","244236":"05922","244241":"05922","244242":"05922","244245":"05922","244251":"05922","244255":"05922","244301":"05923","244302":"05923","244303":"05923","244304":"05923","244401":"0591","244402":"0591","244410":"05923","244411":"05923","244412":"05923","244413":"0591","244414":"05923","244415":"0591","244501":"0591","244504":"0591","244601":"0591","244602":"0591","244701":"0595","244712":"05944","244713":"05944","244715":"05942","244716":"05944","244717":"05944","244720":"05944","244901":"0595","244921":"0595","244922":"0595","244923":"05944","244924":"05944","244925":"0595","244926":"0595","244927":"0595","244928":"0595","245101":"0122","245201":"0122","245205":"0122","245206":"0121","245207":"0122","245208":"0122","245301":"0122","245304":"0122","246001":"01368","246113":"01368","246121":"01368","246123":"01368","246124":"01368","246125":"01368","246127":"01368","246128":"01368","246129":"01368","246130":"01368","246131":"01368","246141":"01364","246142":"01368","246144":"01368","246146":"01368","246147":"01368","246148":"01368","246149":"01368","246150":"01368","246155":"01368","246159":"01368","246161":"01368","246162":"01368","246163":"01368","246164":"01368","246165":"01368","246166":"01368","246167":"01368","246169":"01368","246171":"01364","246172":"01368","246173":"01368","246174":"01368","246175":"01368","246176":"01368","246177":"01368","246178":"01368","246179":"01368","246193":"01368","246194":"01368","246275":"01368","246276":"01368","246277":"01368","246278":"01368","246279":"01368","246285":"01368","246401":"01372","246419":"01364","246421":"01364","246422":"01372","246424":"01372","246425":"01364","246426":"01372","246427":"01372","246428":"01372","246429":"01364","246431":"01372","246435":"01372","246439":"01364","246440":"01372","246441":"01372","246442":"01364","246443":"01372","246444":"01372","246445":"01364","246446":"01372","246448":"01364","246449":"01372","246453":"01372","246455":"01372","246469":"01364","246471":"01364","246472":"01372","246473":"01372","246474":"01372","246475":"01364","246481":"01372","246482":"01372","246483":"01372","246486":"01372","246487":"01372","246488":"01372","246495":"01364","246701":"01342","246721":"01342","246722":"01342","246723":"01342","246724":"01342","246725":"01342","246726":"01342","246727":"01342","246728":"01342","246729":"01342","246731":"01342","246732":"01342","246733":"01342","246734":"01342","246735":"01342","246736":"01342","246737":"01342","246745":"01342","246746":"01342","246747":"01342","246749":"01342","246761":"01342","246762":"01342","246763":"01342","246764":"01342","247001":"0132","247002":"0132","247120":"0132","247121":"0132","247122":"0132","247129":"0132","247231":"0132","247232":"0132","247340":"0132","247341":"0132","247342":"0132","247343":"0132","247451":"0132","247452":"0132","247453":"0132","247551":"0132","247554":"0132","247656":"01334","247661":"01334","247662":"0132","247663":"01334","247664":"01334","247665":"01334","247666":"01334","247667":"01334","247668":"01334","247669":"0132","247670":"01334","247671":"01334","247771":"01398","247772":"01398","247773":"01398","247774":"01398","247775":"01398","247776":"01398","247777":"01398","247778":"01398","248001":"0135","248002":"0135","248003":"0135","248005":"0135","248006":"0135","248007":"0135","248008":"01376","248009":"0135","248011":"0135","248012":"0135","248013":"0135","248014":"0135","248015":"0135","248016":"0135","248018":"0135","248019":"0135","248121":"0135","248122":"0135","248123":"0135","248124":"0135","248125":"0135","248140":"0135","248142":"0135","248143":"0135","248145":"0135","248146":"0135","248158":"01376","248159":"0135","248165":"0135","248171":"0135","248179":"01376","248195":"0135","248196":"0135","248197":"0135","248198":"0135","248199":"0135","249001":"01376","249121":"01376","249122":"01376","249123":"01376","249124":"01376","249125":"01376","249126":"01376","249127":"01376","249128":"01374","249130":"01376","249131":"01376","249132":"01376","249135":"01374","249136":"01374","249137":"01376","249141":"01374","249145":"01376","249146":"01376","249151":"01374","249152":"01374","249155":"01376","249161":"01376","249165":"01374","249171":"01374","249175":"01376","249180":"01376","249181":"01376","249185":"01374","249186":"01376","249192":"01376","249193":"01374","249194":"01374","249195":"01374","249196":"01374","249199":"01376","249201":"0135","249202":"0135","249203":"0135","249204":"0135","249205":"0135","249301":"01376","249302":"01368","249304":"01368","249306":"01368","249401":"01334","249402":"01334","249403":"01334","249404":"01334","249405":"01334","249407":"01334","249408":"01334","249410":"01334","249411":"01334","250001":"0121","250002":"0121","250003":"0121","250004":"0121","250005":"0121","250101":"01234","250103":"0121","250104":"0121","250106":"0121","250110":"0121","250205":"0121","250221":"0121","250222":"0121","250223":"0121","250341":"0121","250342":"0121","250344":"0121","250345":"01234","250401":"0121","250402":"0121","250404":"0121","250406":"0121","250501":"0121","250502":"0121","250601":"01234","250606":"01234","250609":"01234","250611":"01234","250615":"01234","250617":"01234","250619":"01234","250620":"01234","250621":"01234","250622":"01234","250623":"01234","250625":"01234","250626":"0121","251001":"0131","251002":"0131","251003":"0131","251201":"0131","251202":"0131","251203":"0131","251301":"01398","251305":"01398","251306":"0131","251307":"0131","251308":"0131","251309":"0131","251310":"0131","251311":"0131","251314":"0131","251315":"0131","251316":"0131","251318":"0131","251319":"01398","251320":"0131","251327":"0131","261001":"07834","261121":"07834","261125":"07834","261131":"07834","261135":"07834","261136":"07834","261141":"07834","261145":"07834","261151":"07834","261201":"07834","261202":"07834","261203":"07834","261204":"07834","261205":"07834","261206":"07834","261207":"07834","261208":"07834","261301":"07834","261302":"07834","261303":"07834","261401":"07834","261402":"07834","261403":"07834","261404":"07834","261405":"07834","261501":"05872","261502":"05872","261505":"07834","261506":"05872","262001":"05882","262121":"05882","262122":"05882","262123":"05882","262124":"05882","262201":"05882","262202":"05882","262203":"05882","262302":"05882","262305":"05882","262308":"05944","262309":"05962","262310":"05962","262311":"05944","262401":"05944","262402":"05942","262405":"05944","262406":"0581","262501":"05964","262502":"05964","262520":"05964","262521":"05964","262522":"05964","262523":"05962","262524":"05962","262525":"05962","262526":"05964","262527":"05962","262528":"05962","262529":"05964","262530":"05964","262531":"05964","262532":"05964","262533":"05964","262534":"05964","262540":"05964","262541":"05964","262542":"05964","262543":"05964","262544":"05964","262545":"05964","262546":"05964","262547":"05964","262550":"05964","262551":"05964","262552":"05964","262553":"05964","262554":"05964","262555":"05964","262561":"05962","262572":"05964","262576":"05964","262580":"05962","262701":"05872","262702":"05872","262721":"07834","262722":"07834","262723":"05872","262724":"05872","262725":"05872","262726":"05872","262727":"05872","262728":"07834","262801":"05872","262802":"05872","262803":"05872","262804":"05872","262805":"05872","262901":"05872","262902":"05872","262903":"05872","262904":"05882","262905":"05872","262906":"05872","262907":"05872","262908":"05872","263001":"05942","263126":"05942","263127":"05942","263128":"05942","263132":"05942","263134":"05942","263135":"05942","263136":"05942","263137":"05942","263138":"05942","263139":"05942","263140":"05942","263142":"05942","263145":"05944","263148":"05944","263149":"05944","263150":"05944","263151":"05944","263152":"05944","263153":"05944","263156":"05942","263157":"05942","263158":"05942","263159":"05942","263160":"05944","263601":"05962","263619":"05963","263620":"05963","263621":"05962","263622":"05962","263623":"05962","263624":"05962","263625":"05962","263626":"05962","263628":"05963","263629":"05962","263630":"05963","263631":"05963","263632":"05963","263633":"05963","263634":"05963","263635":"05963","263636":"05962","263637":"05962","263638":"05962","263639":"05963","263640":"05963","263641":"05963","263642":"05963","263643":"05962","263645":"05962","263646":"05962","263651":"05962","263652":"05962","263653":"05962","263655":"05962","263656":"05962","263658":"05962","263659":"05962","263660":"05962","263661":"05962","263663":"05962","263664":"05962","263665":"05962","263667":"05962","263676":"05962","263678":"05962","263679":"05963","263680":"05962","271001":"05262","271002":"05262","271003":"05262","271122":"05262","271123":"05262","271124":"05262","271125":"05262","271126":"05262","271129":"05262","271201":"05252","271202":"05262","271203":"07831","271204":"05262","271205":"07831","271206":"07831","271207":"07831","271208":"07831","271209":"05262","271210":"07831","271215":"07831","271301":"05262","271302":"05262","271303":"05262","271304":"05262","271305":"05262","271306":"07831","271307":"05262","271308":"05262","271309":"05262","271310":"05262","271311":"05262","271312":"05262","271313":"05262","271319":"05262","271401":"05262","271402":"05262","271403":"05262","271502":"05262","271503":"05262","271504":"05262","271601":"05262","271602":"05262","271603":"05262","271604":"07831","271607":"07831","271609":"07831","271801":"05252","271802":"05252","271803":"05252","271804":"05252","271805":"05252","271806":"05252","271821":"05252","271824":"05252","271825":"05252","271830":"05252","271831":"05252","271835":"05252","271840":"05252","271841":"05252","271845":"05252","271851":"05252","271855":"05252","271861":"07831","271865":"05252","271870":"05252","271871":"05252","271872":"05252","271875":"05252","271881":"05252","271882":"05252","271901":"05252","271902":"05252","271903":"05252","271904":"05252","272001":"05542","272002":"05542","272123":"05542","272124":"05542","272125":"05547","272126":"05547","272127":"05542","272128":"05542","272129":"05542","272130":"05542","272131":"05542","272148":"05544","272150":"05542","272151":"05544","272152":"05544","272153":"05544","272154":"05547","272155":"05542","272161":"05542","272162":"05547","272163":"05542","272164":"05547","272165":"05547","272171":"05542","272172":"05547","272173":"05547","272175":"05547","272176":"05547","272177":"05542","272178":"05544","272181":"05542","272182":"05542","272189":"05544","272190":"05542","272191":"05544","272192":"05544","272193":"05544","272194":"05542","272195":"05544","272199":"05547","272201":"05544","272202":"05544","272203":"05544","272204":"05544","272205":"05544","272206":"05544","272207":"05544","272208":"05544","272270":"05547","272271":"05547","272301":"05542","272302":"05542","273001":"0551","273002":"0551","273003":"0551","273004":"0551","273005":"0551","273006":"0551","273007":"0551","273008":"0551","273009":"0551","273010":"0551","273012":"0551","273013":"0551","273014":"0551","273015":"0551","273016":"0551","273017":"0551","273151":"05523","273152":"0551","273155":"05523","273157":"05523","273158":"0551","273161":"05523","273162":"05523","273163":"05523","273164":"05523","273165":"05523","273201":"0551","273202":"0551","273203":"0551","273207":"05523","273209":"0551","273211":"0551","273212":"0551","273213":"0551","273301":"05523","273302":"05523","273303":"05523","273304":"05523","273305":"05523","273306":"05523","273308":"05523","273309":"05523","273310":"05523","273311":"05523","273401":"0551","273402":"0551","273403":"0551","273404":"0551","273405":"0551","273406":"0551","273407":"0551","273408":"0551","273409":"0551","273411":"0551","273412":"0551","273413":"0551","274001":"05568","274149":"05564","274182":"05568","274201":"05568","274202":"05568","274203":"05564","274204":"05568","274205":"05568","274206":"05564","274207":"05564","274208":"05568","274301":"05564","274302":"05564","274303":"05564","274304":"05564","274305":"05564","274306":"05564","274307":"05564","274308":"0532","274309":"05564","274401":"05564","274402":"05564","274403":"05564","274404":"05568","274405":"05568","274406":"05564","274407":"05564","274408":"05568","274409":"05564","274501":"05568","274502":"05568","274505":"05568","274506":"05568","274508":"05568","274509":"05568","274601":"05568","274602":"05568","274603":"05568","274604":"05568","274701":"05568","274702":"05568","274703":"05568","274704":"05568","274705":"05568","274801":"05564","274802":"05564","274806":"05568","274807":"05568","274808":"05568","275101":"0547","275102":"0547","275103":"0547","275105":"0547","275201":"0548","275202":"0548","275203":"0548","275204":"0548","275205":"0548","275301":"0547","275302":"0547","275303":"0547","275304":"0547","275305":"0547","275306":"0547","275307":"0547","276001":"05462","276121":"05462","276122":"05462","276123":"05462","276124":"05462","276125":"05462","276126":"05462","276127":"05462","276128":"05462","276129":"0547","276131":"05462","276135":"05462","276136":"05462","276137":"05462","276138":"05462","276139":"05462","276140":"05462","276141":"05462","276142":"05462","276143":"05462","276201":"05462","276202":"05462","276203":"05462","276204":"05462","276205":"05462","276206":"05462","276207":"05462","276208":"05462","276288":"05462","276301":"05462","276302":"05462","276303":"05462","276304":"05462","276305":"05462","276306":"0547","276402":"0547","276403":"0547","276404":"05462","276405":"0547","276406":"0547","277001":"05498","277121":"05498","277123":"05498","277124":"05498","277201":"05498","277202":"05498","277203":"05498","277204":"05498","277205":"05498","277207":"05498","277208":"05498","277209":"05498","277210":"05498","277211":"05498","277213":"05498","277214":"05498","277216":"05498","277219":"05498","277301":"05498","277302":"05498","277303":"05498","277304":"05498","277401":"05498","277402":"05498","277403":"05498","277501":"05498","277502":"05498","277503":"05498","277504":"05498","277506":"05498","281001":"0565","281003":"0565","281004":"0565","281005":"0565","281006":"0565","281104":"05722","281121":"0565","281122":"0565","281123":"0565","281201":"0565","281202":"0565","281203":"0565","281204":"0565","281205":"0565","281206":"0565","281301":"0565","281302":"05722","281303":"0565","281305":"0565","281306":"05722","281307":"05722","281308":"0565","281401":"0565","281403":"0565","281404":"0565","281405":"0565","281406":"0565","281501":"0565","281502":"0565","281504":"0565","282001":"0562","282002":"0562","282003":"0562","282004":"0562","282005":"0562","282006":"0562","282007":"0562","282008":"0562","282009":"0562","282010":"0562","283101":"0562","283102":"0562","283103":"05612","283104":"0562","283105":"0562","283110":"0562","283111":"0562","283112":"0562","283113":"0562","283114":"0562","283115":"0562","283119":"0562","283121":"0562","283122":"0562","283123":"0562","283124":"0562","283125":"0562","283126":"0562","283130":"05612","283135":"05612","283136":"05612","283141":"05612","283142":"05612","283145":"05612","283151":"05612","283152":"05612","283201":"0562","283202":"0562","283203":"05612","283204":"05612","283205":"05612","283206":"05612","283207":"05612","284001":"0510","284002":"0510","284003":"0510","284120":"0510","284121":"0510","284122":"05176","284123":"05176","284124":"05176","284125":"05176","284126":"05176","284127":"0510","284128":"0510","284135":"0510","284136":"05176","284201":"0510","284202":"0510","284203":"0510","284204":"0510","284205":"0510","284206":"0510","284301":"0510","284302":"0510","284303":"0510","284304":"0510","284305":"0510","284306":"0510","284401":"0510","284402":"05176","284403":"05176","284404":"05176","284405":"05176","284406":"05176","284419":"0510","284501":"05176","285001":"05168","285121":"05168","285122":"05168","285123":"05168","285124":"05168","285125":"05168","285126":"05168","285127":"05168","285128":"05168","285129":"05168","285130":"05168","285201":"05168","285202":"05168","285203":"05168","285204":"05168","285205":"0510","285206":"05168","285223":"05168","301001":"0144","301002":"0144","301018":"0144","301019":"0144","301020":"0144","301021":"0144","301022":"0144","301023":"0144","301024":"0144","301025":"0144","301026":"0144","301027":"0144","301028":"0144","301030":"0144","301035":"0144","301401":"0144","301402":"0144","301403":"0144","301404":"0144","301405":"0144","301406":"0144","301407":"0144","301408":"0144","301409":"0144","301410":"0144","301411":"0144","301412":"0144","301413":"0144","301414":"0144","301415":"0144","301416":"0144","301427":"0144","301604":"0144","301701":"0144","301702":"0144","301703":"0144","301704":"0144","301705":"0144","301706":"0144","301707":"0144","301708":"0144","301709":"0144","301713":"0144","301714":"0144","302001":"0141","302002":"0141","302003":"0141","302004":"0141","302005":"0141","302006":"0141","302012":"0141","302013":"0141","302015":"0141","302016":"0141","302017":"0141","302018":"0141","302019":"0141","302020":"0141","302021":"0141","302022":"0141","302026":"0141","302027":"0141","302028":"0141","302029":"0141","302031":"0141","302033":"0141","302034":"0141","302036":"0141","302037":"0141","302038":"0141","302039":"0141","302040":"0141","302041":"0141","302042":"0141","302043":"0141","302044":"0141","302045":"0141","302046":"0141","303001":"0141","303002":"0141","303003":"0141","303004":"01427","303005":"0141","303006":"0141","303007":"0141","303008":"0141","303009":"0141","303012":"0141","303102":"0141","303103":"0141","303104":"0141","303105":"0141","303106":"0141","303107":"0141","303108":"0141","303109":"0141","303110":"0141","303119":"0141","303120":"0141","303121":"0141","303122":"0141","303123":"0141","303124":"0141","303301":"0141","303302":"01427","303303":"01427","303304":"01427","303305":"0141","303313":"01427","303315":"01427","303323":"01427","303325":"01427","303326":"01427","303327":"01427","303328":"0141","303329":"0141","303338":"0141","303348":"0141","303501":"01427","303502":"01427","303503":"01427","303504":"01427","303505":"01427","303506":"01427","303507":"01427","303508":"01427","303509":"01427","303510":"01427","303511":"01427","303601":"0141","303602":"0141","303603":"0141","303604":"0141","303701":"0141","303702":"0141","303704":"0141","303706":"0141","303712":"0141","303801":"0141","303803":"0141","303804":"0141","303805":"0141","303806":"0141","303807":"0141","303901":"0141","303903":"0141","303904":"0141","303905":"0141","303908":"0141","304001":"01432","304021":"01432","304022":"01432","304023":"01432","304024":"01432","304025":"01432","304026":"01432","304501":"01432","304502":"01432","304503":"01432","304504":"01432","304505":"01432","304507":"01432","304801":"01432","304802":"01432","304803":"01432","304804":"01432","305001":"0145","305002":"0145","305003":"0145","305004":"0145","305005":"0145","305007":"0145","305009":"0145","305012":"0145","305021":"0145","305022":"0145","305023":"0145","305024":"0145","305025":"0145","305026":"01582","305201":"0145","305202":"0145","305203":"0145","305204":"0145","305205":"0145","305206":"0145","305207":"0145","305401":"0145","305402":"0145","305403":"0145","305404":"0145","305405":"0145","305406":"0145","305407":"0145","305408":"0145","305412":"0145","305415":"0145","305601":"0145","305621":"0145","305622":"0145","305623":"0145","305624":"0145","305625":"01482","305627":"0145","305628":"0145","305629":"0145","305630":"0145","305631":"0145","305801":"0145","305802":"0145","305811":"0145","305812":"0145","305813":"0145","305814":"0145","305815":"0145","305816":"0145","305817":"0145","305819":"0145","305901":"02952","305921":"02952","305922":"02952","305923":"0145","305924":"0145","305925":"02952","305926":"0145","305927":"0145","306001":"07816","306021":"07816","306022":"07816","306023":"07816","306101":"07816","306102":"07816","306103":"07816","306104":"07816","306105":"07816","306114":"07816","306115":"07816","306116":"07816","306119":"07816","306126":"07816","306301":"07816","306302":"07816","306303":"07816","306304":"07816","306305":"07816","306306":"07816","306307":"07816","306308":"07816","306401":"07816","306421":"07816","306422":"07816","306501":"07816","306502":"07816","306503":"07816","306504":"07816","306601":"07816","306602":"07816","306603":"07816","306701":"07816","306702":"07816","306703":"07816","306704":"07816","306705":"07816","306706":"07816","306707":"07816","306708":"07816","306709":"07816","306901":"07816","306902":"07816","306912":"07816","307001":"02972","307019":"02972","307022":"02972","307023":"02972","307024":"02972","307025":"0294","307026":"02972","307027":"02972","307028":"02972","307029":"02973","307030":"02973","307031":"02972","307032":"02972","307043":"02972","307501":"02972","307510":"02972","307511":"02972","307512":"02972","307513":"02972","307514":"02972","307515":"02973","307801":"02972","307802":"02972","307803":"02973","311001":"01482","311011":"01482","311021":"01482","311022":"01482","311023":"01482","311024":"01482","311025":"01482","311026":"01482","311030":"01482","311201":"01482","311202":"01482","311203":"01482","311204":"01482","311301":"01482","311302":"02952","311401":"01482","311402":"01482","311403":"01482","311404":"01482","311407":"01482","311408":"01482","311601":"01482","311602":"01482","311603":"01482","311604":"01482","311605":"01482","311606":"01482","311801":"01482","311802":"01482","311803":"01482","311804":"01482","311805":"01482","311806":"01482","312001":"01472","312021":"01472","312022":"01472","312023":"01472","312024":"01472","312025":"01472","312027":"01472","312201":"01472","312202":"01472","312203":"01472","312204":"01472","312205":"01472","312206":"01472","312207":"01472","312401":"01472","312402":"01472","312403":"01472","312404":"01472","312601":"01472","312602":"01472","312603":"01472","312604":"05342","312605":"05342","312606":"01472","312612":"01472","312613":"01472","312614":"01472","312615":"05342","312616":"05342","312617":"01472","312619":"05342","312620":"01472","312622":"01472","312623":"05342","312624":"05342","312625":"05342","312626":"05342","312627":"01472","312901":"01472","313001":"0294","313002":"0294","313003":"0294","313004":"0294","313011":"0294","313022":"0294","313024":"0294","313026":"0294","313027":"0294","313031":"0294","313038":"0294","313201":"0294","313202":"0294","313203":"0294","313204":"0294","313205":"0294","313206":"0294","313207":"02952","313211":"02952","313301":"02952","313321":"02952","313322":"0294","313323":"02952","313324":"02952","313325":"02952","313327":"02952","313328":"02952","313329":"02952","313330":"02952","313331":"02952","313332":"02952","313333":"02952","313334":"02952","313341":"02952","313342":"02952","313601":"0294","313602":"0294","313603":"0294","313604":"0294","313701":"0294","313702":"0294","313703":"0294","313704":"0294","313705":"0294","313706":"0294","313708":"0294","313801":"0294","313802":"0294","313803":"0294","313804":"0294","313805":"0294","313901":"0294","313902":"0294","313903":"0294","313904":"0294","313905":"0294","313906":"0294","314001":"01582","314011":"02964","314021":"02964","314022":"02964","314023":"02964","314024":"02964","314025":"02964","314026":"02964","314027":"02964","314028":"02964","314029":"02964","314030":"02964","314031":"02964","314032":"02964","314034":"02964","314035":"02964","314036":"02964","314037":"02964","314038":"02964","314401":"02964","314402":"02964","314403":"02964","314404":"02964","314406":"02964","314801":"02964","314804":"02964","321001":"07835","321021":"07835","321022":"07835","321023":"07835","321024":"07835","321025":"07835","321026":"07835","321028":"07835","321201":"07835","321202":"07835","321203":"07835","321204":"07835","321205":"07835","321206":"07835","321301":"07835","321302":"07835","321303":"07835","321401":"07835","321402":"07835","321403":"07835","321404":"07835","321405":"07835","321406":"07835","321407":"07835","321408":"07835","321409":"07835","321410":"07835","321411":"07835","321601":"07835","321602":"07835","321605":"0144","321606":"0144","321607":"0144","321608":"01427","321609":"01427","321610":"07464","321611":"07464","321612":"01427","321613":"01427","321614":"07835","321615":"07835","321633":"0144","321642":"07835","322001":"07462","322021":"07462","322023":"07462","322024":"07462","322025":"07462","322026":"07462","322027":"07462","322028":"07462","322029":"07462","322030":"07462","322033":"07462","322034":"07462","322201":"07462","322202":"07462","322203":"07462","322204":"07462","322205":"07462","322211":"07462","322212":"07462","322213":"07464","322214":"07462","322215":"07462","322216":"07464","322218":"07464","322219":"07462","322220":"07464","322230":"07464","322234":"07464","322236":"07464","322238":"07464","322240":"01427","322241":"07464","322242":"07464","322243":"07464","322249":"07464","322251":"07464","322252":"07464","322254":"07464","322255":"07464","322701":"07462","322702":"07462","322703":"07462","322704":"07462","323001":"0747","323021":"0747","323022":"0747","323023":"0747","323024":"0747","323025":"0747","323026":"0747","323301":"0747","323303":"01472","323304":"01472","323305":"01472","323306":"01472","323307":"01472","323601":"0747","323602":"0747","323603":"0747","323613":"0747","323614":"0747","323615":"0747","323616":"0747","323801":"0747","323802":"0747","323803":"0747","324001":"07753","324002":"07753","324003":"07753","324004":"07753","324005":"07753","324006":"07753","324007":"07753","324008":"07753","324009":"07753","324010":"07753","325001":"07753","325003":"07753","325004":"07753","325009":"07753","325201":"07753","325202":"07453","325203":"07753","325204":"07753","325205":"07453","325206":"07453","325207":"07753","325208":"07753","325209":"07453","325214":"07753","325215":"07453","325216":"07453","325217":"07453","325218":"07453","325219":"07453","325220":"07453","325221":"07453","325222":"07453","325223":"07453","325224":"07453","325601":"07753","325602":"07753","326001":"07432","326021":"07432","326022":"07432","326023":"07432","326033":"07432","326034":"07432","326035":"07432","326036":"07432","326037":"07432","326038":"07432","326039":"07432","326501":"07432","326502":"07432","326512":"07432","326513":"07432","326514":"07432","326515":"07432","326516":"07432","326517":"07753","326518":"07753","326519":"07753","326520":"07753","326529":"07753","326530":"07753","327001":"02962","327021":"02962","327022":"02962","327023":"02962","327024":"02962","327025":"02962","327026":"02962","327027":"02962","327031":"02962","327032":"02962","327034":"02962","327601":"02962","327602":"02962","327603":"02962","327604":"02962","327605":"02962","327606":"02962","327801":"02962","328001":"05642","328021":"05642","328022":"05642","328023":"05642","328024":"05642","328025":"05642","328026":"05642","328027":"05642","328028":"05642","328029":"05642","328030":"05642","328031":"05642","328041":"05642","331001":"01562","331021":"01562","331022":"01562","331023":"01562","331024":"01572","331025":"01592","331026":"01592","331027":"01592","331028":"01592","331029":"01562","331030":"01592","331031":"01562","331301":"01562","331302":"01562","331303":"01562","331304":"01562","331305":"01562","331402":"01562","331403":"01562","331411":"01562","331501":"01562","331502":"01562","331503":"01562","331504":"01562","331505":"01562","331506":"01562","331507":"01562","331517":"01562","331518":"01562","331701":"01562","331801":"0151","331802":"01562","331803":"0151","331811":"0151","332001":"01572","332002":"01572","332021":"01572","332023":"01572","332024":"01572","332025":"01572","332026":"01572","332027":"01572","332028":"01572","332029":"01572","332030":"01572","332031":"01572","332041":"01572","332042":"01572","332301":"01572","332302":"01572","332303":"01572","332304":"01572","332305":"01572","332307":"01572","332311":"01572","332312":"01572","332315":"01572","332316":"01572","332317":"01572","332318":"01572","332401":"01572","332402":"01572","332403":"01572","332404":"01572","332405":"01572","332406":"01572","332411":"01572","332601":"01572","332602":"01572","332603":"01572","332701":"01572","332702":"01572","332703":"01572","332705":"01572","332706":"01572","332707":"01572","332708":"01572","332709":"01572","332710":"01572","332711":"01572","332712":"01572","332713":"01572","332714":"01572","332715":"01572","332716":"01592","332718":"01572","332719":"01572","332721":"01572","332722":"01572","332742":"01572","332746":"01592","333001":"01592","333010":"01592","333011":"01592","333012":"01592","333020":"01592","333021":"01592","333022":"01592","333023":"01592","333024":"01592","333025":"01592","333026":"01592","333027":"01592","333028":"01592","333029":"01592","333030":"01592","333031":"01592","333032":"01592","333033":"01592","333034":"01592","333035":"01592","333036":"01592","333041":"01592","333042":"01592","333053":"01592","333055":"01592","333302":"01592","333303":"01592","333304":"01592","333305":"01592","333307":"01592","333308":"01592","333501":"01592","333502":"01592","333503":"01592","333504":"01592","333514":"01592","333515":"01592","333516":"01592","333517":"01592","333701":"01592","333702":"01592","333704":"01592","333705":"01592","333707":"01592","333801":"01592","334001":"0151","334003":"0151","334004":"0151","334006":"0151","334021":"0151","334022":"0151","334023":"0151","334201":"0151","334202":"0151","334302":"0151","334303":"0151","334305":"0151","334401":"0151","334402":"0151","334403":"0151","334601":"0151","334602":"0151","334603":"0151","334604":"0151","334801":"0151","334802":"0151","334803":"0151","334804":"0151","334808":"0151","335001":"0154","335002":"0154","335021":"0154","335022":"0154","335023":"0154","335024":"0154","335025":"0154","335027":"0154","335037":"0154","335038":"0154","335039":"0154","335040":"0154","335041":"0154","335051":"0154","335061":"0154","335062":"01552","335063":"01552","335064":"01552","335065":"01552","335073":"0154","335501":"01552","335502":"01552","335503":"01552","335504":"01552","335511":"01552","335512":"01552","335513":"01552","335522":"01552","335523":"01552","335524":"01552","335525":"01552","335526":"01552","335701":"0154","335702":"0154","335703":"0154","335704":"0154","335705":"0154","335707":"0154","335708":"0154","335711":"0154","335801":"01552","335802":"01552","335803":"01552","335804":"0154","335805":"0154","335901":"0154","341001":"01582","341020":"01582","341021":"01582","341022":"01582","341023":"01582","341024":"01582","341025":"01582","341026":"01582","341027":"01582","341028":"01582","341029":"01582","341030":"01582","341031":"01582","341301":"01582","341302":"01582","341303":"01582","341304":"01582","341305":"01582","341306":"01582","341316":"01582","341317":"01582","341318":"01582","341319":"01582","341501":"01582","341502":"01582","341503":"01582","341504":"01582","341505":"01582","341506":"01582","341507":"01582","341508":"01582","341509":"01582","341510":"01582","341511":"01582","341512":"01582","341513":"01582","341514":"01582","341515":"01582","341516":"01582","341517":"01582","341518":"01582","341519":"01582","341520":"01582","341533":"01582","341542":"01582","341551":"01582","342001":"0291","342002":"0291","342003":"0291","342005":"0291","342006":"0291","342007":"0291","342008":"0291","342011":"0291","342012":"0291","342013":"0291","342014":"0291","342015":"0291","342021":"0291","342022":"0291","342023":"0291","342024":"0291","342025":"0291","342026":"0291","342027":"0291","342028":"0291","342029":"0291","342030":"0291","342037":"0291","342301":"0291","342302":"0291","342303":"0291","342304":"0291","342305":"0291","342306":"0291","342307":"0291","342308":"0291","342309":"0291","342310":"02992","342311":"0291","342312":"0291","342314":"0291","342601":"0291","342602":"0291","342603":"0291","342604":"0291","342605":"0291","342606":"0291","342801":"0291","342802":"0291","342901":"0291","342902":"01582","343001":"02973","343002":"02973","343021":"02973","343022":"02973","343023":"02973","343024":"02973","343025":"02973","343027":"02973","343028":"02973","343029":"02973","343030":"02973","343032":"02973","343039":"02973","343040":"02973","343041":"02973","343042":"02973","343048":"02973","343049":"02973","344001":"02982","344011":"02982","344012":"02982","344021":"02982","344022":"02982","344024":"02982","344025":"02982","344026":"02982","344027":"02982","344031":"02982","344032":"02982","344033":"02982","344034":"02982","344035":"02982","344037":"02982","344043":"02982","344044":"02982","344501":"02982","344502":"02982","344701":"02982","344702":"02982","344703":"02982","344704":"02982","344705":"02982","344706":"02982","344708":"02982","344801":"02982","345001":"02992","345021":"0291","345022":"02992","345023":"02992","345024":"02992","345025":"02992","345026":"02992","345027":"02992","345028":"02992","345031":"02992","345033":"07432","345034":"02992","360001":"0281","360002":"0281","360003":"0281","360004":"0281","360005":"0281","360006":"0281","360007":"0281","360020":"0281","360021":"0281","360022":"0281","360023":"0281","360024":"0281","360025":"0281","360026":"0281","360028":"0281","360030":"0281","360035":"0281","360040":"0281","360045":"0281","360050":"0281","360055":"0281","360060":"0281","360070":"0281","360110":"0281","360311":"0281","360320":"0281","360325":"0281","360330":"0281","360360":"0281","360370":"0281","360375":"0281","360380":"0281","360405":"0281","360410":"0281","360421":"0281","360430":"0281","360440":"0281","360450":"0281","360452":"0281","360460":"0281","360465":"0281","360470":"0281","360480":"0281","360485":"0281","360490":"0281","360510":"02833","360515":"02833","360520":"0288","360530":"0288","360531":"0288","360540":"0288","360545":"0286","360550":"0286","360570":"0286","360575":"0286","360576":"0286","360577":"0286","360578":"0286","360579":"0286","360590":"0286","361001":"0288","361002":"0288","361003":"0288","361004":"0288","361005":"0288","361006":"0288","361007":"0288","361008":"0288","361009":"0288","361010":"0288","361011":"0288","361012":"0288","361013":"0288","361110":"0288","361120":"0288","361130":"0288","361140":"0288","361142":"0288","361150":"0288","361160":"0288","361162":"0288","361170":"0288","361210":"0288","361220":"0288","361230":"0288","361240":"0288","361250":"0288","361280":"0288","361305":"02833","361306":"02833","361310":"02833","361315":"02833","361320":"02833","361325":"02833","361330":"02833","361335":"02833","361345":"02833","361347":"02833","361350":"02833","362001":"0285","362002":"0285","362011":"0285","362015":"0285","362020":"0285","362030":"0285","362037":"0285","362110":"0285","362120":"0285","362130":"0285","362135":"0285","362140":"02876","362150":"0285","362205":"0285","362215":"0285","362220":"0285","362222":"0285","362225":"0285","362226":"0285","362227":"0285","362230":"0286","362240":"0285","362245":"0285","362250":"0285","362255":"0285","362260":"0285","362263":"0285","362265":"02876","362268":"02876","362275":"02876","362310":"0285","362315":"0285","362510":"02876","362520":"02875","362530":"02876","362540":"02875","362550":"02876","362560":"02876","362565":"02876","362570":"02875","362610":"0285","362620":"0286","362625":"0285","362630":"0285","362640":"0285","362650":"0286","362710":"02876","362715":"02876","362720":"02876","363001":"02752","363002":"02752","363020":"02752","363030":"02752","363035":"02752","363040":"02752","363110":"02752","363115":"02752","363310":"02752","363320":"02752","363330":"02752","363351":"02822","363410":"02752","363421":"02752","363423":"02752","363427":"02752","363430":"02752","363435":"02752","363440":"02752","363510":"02752","363520":"02752","363530":"02752","363621":"02822","363623":"02822","363630":"02822","363641":"02822","363642":"02822","363643":"02822","363650":"0281","363655":"02822","363660":"02822","363670":"02822","363745":"02752","363750":"02752","363755":"02752","363760":"02752","363765":"02752","363775":"02752","363780":"02752","364001":"0278","364002":"0278","364003":"0278","364004":"0278","364005":"0278","364006":"0278","364050":"0278","364060":"0278","364070":"0278","364081":"0278","364110":"0278","364120":"02849","364130":"0278","364135":"0278","364140":"0278","364145":"0278","364150":"0278","364210":"0278","364230":"0278","364240":"0278","364250":"0278","364260":"0278","364265":"0278","364270":"0278","364275":"0278","364280":"0278","364290":"0278","364295":"0278","364310":"0278","364313":"0278","364320":"02849","364330":"0278","364505":"0278","364510":"0278","364515":"02792","364521":"02792","364522":"02792","364525":"0278","364530":"0278","364710":"02849","364720":"02849","364730":"02849","364740":"02849","364750":"02849","364760":"02849","364765":"02849","365220":"02792","365410":"02792","365421":"02792","365430":"02792","365435":"02792","365440":"0285","365450":"02792","365455":"02792","365456":"02792","365460":"02792","365480":"0281","365535":"02792","365540":"02792","365541":"02792","365550":"02792","365555":"02792","365560":"02792","365601":"02792","365610":"02792","365620":"02792","365630":"02792","365635":"02792","365640":"02792","365645":"02792","365650":"02792","365730":"02792","370001":"02832","370015":"02832","370020":"02832","370030":"02832","370040":"02832","370105":"02832","370110":"02832","370115":"02832","370130":"02832","370135":"02832","370140":"02832","370145":"02832","370150":"02832","370155":"02832","370160":"02832","370165":"02832","370201":"02832","370203":"02832","370205":"02832","370210":"02832","370230":"02832","370240":"02832","370405":"02832","370410":"02832","370415":"02832","370421":"02832","370425":"02832","370427":"02832","370430":"02832","370435":"02832","370445":"02832","370450":"02832","370455":"02832","370460":"02832","370465":"02832","370475":"02832","370485":"02832","370490":"02832","370510":"02832","370601":"02832","370605":"02832","370610":"02832","370615":"02832","370620":"02832","370625":"02832","370627":"02832","370630":"02832","370641":"02832","370645":"02832","370650":"02832","370655":"02832","370660":"02832","370665":"02832","370670":"02832","370675":"02832","380001":"079","380002":"079","380003":"079","380004":"079","380005":"079","380006":"079","380007":"079","380008":"079","380009":"079","380013":"079","380014":"079","380015":"079","380016":"079","380018":"079","380019":"079","380021":"079","380022":"079","380023":"079","380024":"079","380026":"079","380027":"079","380028":"079","380049":"079","380050":"079","380051":"079","380052":"079","380054":"079","380055":"079","380058":"079","380059":"079","380060":"079","380061":"079","380063":"079","382006":"079","382007":"079","382010":"079","382016":"079","382021":"079","382024":"079","382028":"079","382030":"079","382041":"079","382042":"079","382045":"079","382110":"079","382115":"02762","382120":"02762","382122":"079","382130":"02752","382140":"079","382145":"079","382150":"079","382170":"02762","382210":"079","382213":"079","382220":"079","382225":"079","382230":"079","382240":"079","382245":"02849","382250":"02849","382255":"02849","382260":"079","382265":"079","382305":"079","382308":"079","382315":"079","382320":"079","382321":"079","382330":"079","382340":"079","382345":"079","382350":"079","382355":"079","382405":"079","382415":"079","382418":"079","382421":"079","382422":"079","382423":"079","382424":"079","382425":"079","382426":"079","382427":"079","382428":"079","382430":"079","382433":"079","382435":"079","382443":"079","382445":"079","382449":"079","382450":"02849","382455":"079","382460":"079","382463":"079","382465":"079","382470":"079","382475":"079","382480":"079","382481":"079","382610":"079","382620":"079","382630":"079","382640":"079","382650":"079","382721":"079","382722":"079","382725":"079","382729":"079","382735":"079","382740":"079","382810":"079","382835":"079","382845":"079","382855":"079","383001":"02772","383002":"02778","383006":"02772","383010":"02772","383030":"02778","383110":"02772","383120":"02772","383205":"02772","383210":"02772","383215":"02772","383220":"02772","383225":"02772","383230":"02772","383235":"02772","383240":"02772","383245":"02774","383246":"02772","383250":"02774","383251":"02774","383255":"02772","383260":"02774","383270":"02772","383275":"02772","383276":"02772","383305":"02772","383307":"02772","383310":"02774","383315":"02774","383316":"02774","383317":"02774","383320":"02774","383325":"02774","383330":"02774","383335":"02774","383340":"02774","383345":"02774","383350":"02774","383355":"02774","383410":"02772","383421":"02772","383422":"02778","383430":"02772","383434":"02772","383440":"02772","383450":"02772","383460":"02772","383462":"02772","384001":"02762","384002":"02762","384003":"02762","384005":"02762","384012":"02762","384110":"07621","384120":"02762","384130":"02762","384135":"02762","384140":"02762","384151":"07621","384160":"02762","384170":"02762","384220":"07621","384221":"07621","384225":"07621","384229":"07621","384230":"07621","384240":"07621","384241":"07621","384245":"07621","384246":"07621","384255":"07621","384260":"07621","384265":"07621","384272":"07621","384275":"07621","384285":"07621","384290":"07621","384305":"02762","384310":"02762","384315":"02762","384320":"02762","384325":"02762","384330":"02762","384335":"02762","384340":"02762","384345":"02762","384355":"02762","384360":"02762","384410":"02762","384412":"02762","384415":"02762","384421":"02762","384430":"02762","384435":"02762","384440":"02762","384441":"02762","384445":"02762","384450":"02762","384455":"02762","384460":"02762","384465":"02762","384470":"02762","384515":"02762","384520":"02762","384530":"02762","384540":"02762","384550":"02762","384560":"02762","384565":"02762","384570":"02762","385001":"02742","385010":"02742","385110":"02742","385120":"02742","385130":"02742","385135":"02742","385210":"02742","385310":"02742","385320":"02742","385330":"02742","385340":"07621","385350":"07621","385360":"07621","385410":"02742","385421":"02742","385505":"02742","385506":"02742","385510":"02742","385515":"02742","385520":"02742","385530":"02742","385535":"02742","385540":"02742","385545":"02742","385550":"02742","385555":"02742","385560":"02742","385565":"02742","385566":"02742","385570":"02742","385575":"02742","387001":"02694","387002":"02694","387003":"02694","387110":"02694","387115":"02694","387120":"02694","387130":"02694","387210":"02694","387220":"02692","387230":"02694","387240":"02692","387305":"02772","387310":"02692","387315":"02694","387320":"02694","387325":"02694","387330":"02694","387335":"02694","387340":"02694","387345":"02694","387350":"02694","387355":"02694","387360":"02694","387365":"02694","387370":"02694","387375":"02694","387380":"02694","387411":"02694","387430":"02694","387510":"02694","387520":"02694","387530":"02694","387540":"02694","387550":"02694","387560":"02694","387570":"02694","387610":"02694","387620":"02694","387630":"02694","387635":"02694","387640":"02694","387650":"02694","387710":"02694","388001":"02692","388110":"02692","388120":"02692","388121":"02692","388130":"02692","388140":"02692","388150":"02692","388160":"02692","388170":"02692","388180":"02694","388205":"02692","388210":"02692","388215":"02694","388220":"02694","388225":"02694","388230":"02694","388235":"02672","388239":"02694","388245":"02694","388250":"02694","388255":"02672","388260":"02672","388265":"02672","388270":"02672","388305":"02692","388306":"02692","388307":"02692","388310":"02692","388315":"02692","388320":"02692","388325":"02692","388330":"02692","388335":"02692","388340":"02692","388345":"02692","388350":"02692","388355":"02692","388360":"02692","388365":"02692","388370":"02692","388410":"02692","388421":"02692","388430":"02692","388440":"02694","388450":"02692","388460":"02692","388465":"02692","388470":"02692","388480":"02692","388510":"02692","388520":"02692","388530":"02692","388540":"02692","388543":"02692","388545":"02692","388550":"02692","388560":"02692","388570":"02692","388580":"02692","388590":"02692","388610":"02692","388620":"02692","388625":"02692","388630":"02692","388640":"02692","388710":"02672","388713":"02672","389001":"02672","389002":"02672","389110":"02672","389115":"02672","389120":"02672","389130":"02673","389140":"02673","389146":"02673","389151":"02673","389152":"02673","389154":"02673","389155":"02673","389160":"02673","389170":"02673","389172":"02672","389175":"02673","389180":"02673","389190":"02672","389210":"02672","389220":"02672","389230":"02672","389232":"02672","389235":"02672","389250":"02672","389260":"02672","389265":"02672","389310":"02672","389320":"02672","389330":"02672","389340":"02672","389341":"02672","389350":"02672","389360":"02672","389365":"02672","389370":"02672","389380":"02672","389382":"02673","389390":"02672","390001":"0265","390002":"0265","390003":"0265","390004":"0265","390006":"0265","390007":"0265","390009":"0265","390010":"0265","390011":"0265","390012":"0265","390013":"0265","390014":"0265","390016":"0265","390017":"0265","390018":"0265","390019":"0265","390020":"0265","390021":"0265","390022":"0265","390023":"0265","390024":"0265","390025":"0265","391101":"0265","391105":"0265","391107":"0265","391110":"0265","391115":"0265","391120":"02649","391125":"02669","391130":"02669","391135":"02669","391140":"02669","391145":"02669","391150":"02669","391152":"02669","391156":"02669","391160":"02669","391165":"02669","391168":"02669","391170":"02669","391210":"0265","391220":"0265","391240":"0265","391243":"0265","391244":"0265","391250":"0265","391310":"0265","391320":"0265","391330":"0265","391340":"0265","391345":"0265","391350":"0265","391410":"0265","391421":"0265","391430":"0265","391440":"0265","391445":"0265","391450":"0265","391510":"0265","391520":"0265","391530":"0265","391740":"0265","391745":"0265","391750":"0265","391760":"0265","391761":"0265","391770":"0265","391774":"0265","391775":"0265","391776":"0265","391780":"0265","391810":"02642","392001":"02642","392011":"02642","392012":"02642","392015":"02642","392020":"02642","392025":"02642","392030":"02642","392035":"02642","392040":"02642","392110":"02642","392130":"02642","392135":"02642","392140":"02642","392150":"02642","392155":"02642","392160":"02642","392165":"02642","392170":"02642","392180":"02642","392210":"02642","392215":"02642","392220":"0265","392230":"02642","392240":"02642","392310":"0265","393001":"02642","393002":"02642","393010":"02642","393017":"02642","393020":"02642","393025":"02649","393030":"02642","393040":"02649","393041":"02649","393050":"02649","393105":"0265","393110":"02642","393115":"02642","393120":"02649","393125":"02642","393130":"02649","393135":"02642","393140":"02649","393145":"02649","393150":"02649","393151":"02649","394101":"0261","394105":"0261","394107":"0261","394110":"0261","394111":"0261","394112":"0261","394115":"02642","394120":"0261","394125":"0261","394130":"0261","394140":"0261","394150":"0261","394155":"0261","394160":"0261","394163":"0261","394170":"0261","394180":"0261","394185":"0261","394190":"0261","394210":"0261","394221":"0261","394230":"0261","394235":"0261","394240":"0261","394245":"0261","394246":"02628","394248":"0261","394250":"02628","394270":"0261","394305":"0261","394310":"0261","394315":"0261","394317":"0261","394320":"0261","394325":"0261","394326":"0261","394327":"0261","394330":"0261","394335":"0261","394340":"02628","394345":"0261","394350":"0261","394352":"0261","394355":"0261","394360":"02628","394365":"02628","394370":"02628","394375":"02628","394380":"02628","394405":"0261","394410":"0261","394421":"0261","394430":"0261","394440":"0261","394445":"0261","394510":"0261","394515":"0261","394516":"0261","394517":"0261","394518":"0261","394520":"0261","394530":"0261","394540":"0261","394541":"0261","394550":"0261","394601":"0261","394620":"02628","394630":"02628","394633":"02628","394635":"02628","394640":"02628","394641":"02628","394650":"02628","394651":"02628","394652":"02628","394655":"02628","394660":"02628","394670":"02628","394680":"02628","394690":"02628","394710":"02631","394715":"02631","394716":"02628","394720":"02631","394730":"02631","394810":"02642","395001":"0261","395002":"0261","395003":"0261","395004":"0261","395005":"0261","395006":"0261","395007":"0261","395008":"0261","395009":"0261","395010":"0261","395011":"0261","395012":"0261","395013":"0261","395017":"0261","395023":"0261","396001":"02632","396002":"02632","396007":"02632","396020":"02632","396030":"02632","396035":"02632","396040":"02637","396045":"02632","396050":"02632","396051":"02632","396055":"02632","396060":"02637","396065":"02632","396067":"02632","396105":"02632","396110":"02637","396115":"02632","396120":"02632","396125":"02632","396126":"02632","396130":"02632","396135":"02632","396140":"02632","396145":"02632","396150":"02632","396155":"02632","396165":"02632","396170":"02632","396171":"02632","396180":"02632","396185":"02632","396191":"02632","396193":"02632","396195":"02632","396210":"0260","396215":"02632","396220":"0260","396230":"02632","396235":"02632","396240":"02632","396310":"02637","396321":"02637","396325":"02637","396350":"02637","396360":"02637","396370":"02637","396375":"02632","396380":"02637","396385":"02632","396403":"02637","396406":"02637","396409":"02637","396412":"02637","396415":"02637","396418":"02637","396421":"02637","396424":"02637","396427":"02637","396430":"02637","396433":"02637","396436":"02637","396439":"02637","396440":"02637","396445":"02637","396450":"02637","396460":"02637","396463":"02637","396466":"02637","396469":"02637","396472":"02637","396475":"02637","396510":"0261","396521":"02637","396530":"02637","396540":"02637","396560":"02637","396570":"02637","396580":"02637","396590":"02637","400001":"022","400002":"022","400003":"022","400004":"022","400005":"022","400006":"022","400007":"022","400008":"022","400009":"022","400010":"022","400011":"022","400012":"022","400013":"022","400014":"022","400015":"022","400016":"022","400017":"022","400018":"022","400019":"022","400020":"022","400021":"022","400022":"022","400024":"022","400025":"022","400026":"022","400027":"022","400028":"022","400029":"022","400030":"022","400031":"022","400032":"022","400033":"022","400034":"022","400035":"022","400037":"022","400042":"022","400043":"022","400049":"022","400050":"022","400051":"022","400052":"022","400053":"022","400054":"022","400055":"022","400056":"022","400057":"022","400058":"022","400059":"022","400060":"022","400061":"022","400063":"022","400064":"022","400065":"022","400066":"022","400067":"022","400068":"022","400069":"022","400070":"022","400071":"022","400072":"022","400074":"022","400075":"022","400076":"022","400077":"022","400078":"022","400079":"022","400080":"022","400081":"022","400082":"022","400083":"022","400084":"022","400085":"022","400086":"022","400087":"022","400088":"022","400089":"022","400091":"022","400092":"022","400093":"022","400094":"022","400095":"022","400096":"022","400097":"022","400098":"022","400099":"022","400101":"022","400102":"022","400103":"022","400104":"022","400601":"022","400602":"022","400603":"022","400604":"022","400605":"022","400606":"022","400607":"022","400608":"022","400610":"022","400612":"022","400614":"022","400615":"022","400701":"022","400702":"02194","400703":"022","400704":"02194","400705":"022","400706":"022","400707":"02194","400708":"022","400709":"022","400710":"022","401101":"022","401102":"02525","401103":"02525","401105":"02525","401106":"022","401107":"022","401201":"02525","401202":"02525","401203":"02525","401204":"022","401206":"022","401207":"02525","401208":"02525","401209":"02525","401301":"02525","401302":"02525","401303":"02525","401304":"02525","401305":"02525","401401":"02525","401402":"02525","401403":"02525","401404":"02525","401405":"02525","401501":"02525","401502":"02525","401503":"02525","401504":"02525","401506":"02525","401601":"02525","401602":"02525","401603":"02525","401604":"02525","401605":"02525","401606":"02525","401607":"02525","401608":"02525","401701":"02525","401702":"02525","401703":"02525","402101":"02194","402102":"02194","402103":"02194","402104":"02194","402105":"02194","402106":"02194","402107":"02194","402108":"02194","402109":"02194","402110":"02194","402111":"02194","402112":"02194","402113":"02194","402114":"02194","402115":"02194","402116":"02194","402117":"02194","402120":"02194","402122":"02194","402125":"02194","402126":"02194","402201":"02194","402202":"02194","402203":"02194","402204":"02194","402207":"02194","402208":"02194","402209":"02194","402301":"02194","402302":"02194","402303":"02194","402304":"02194","402305":"02194","402306":"02194","402307":"02194","402308":"02194","402309":"02194","402401":"02194","402402":"02194","402403":"02194","402404":"02194","403001":"0832","403002":"0832","403004":"0832","403005":"0832","403006":"0832","403101":"0832","403102":"0832","403103":"0832","403104":"0832","403105":"0832","403106":"0832","403107":"0832","403108":"0832","403109":"0832","403110":"0832","403114":"0832","403115":"0832","403201":"0832","403202":"0832","403203":"0832","403204":"0832","403206":"0832","403401":"0832","403402":"0832","403403":"0832","403404":"0832","403406":"0832","403409":"0832","403410":"0832","403501":"0832","403502":"0832","403503":"0832","403504":"0832","403505":"0832","403506":"0832","403507":"0832","403508":"0832","403509":"0832","403510":"0832","403511":"0832","403512":"0832","403513":"0832","403515":"0832","403516":"0832","403517":"0832","403521":"0832","403523":"0832","403524":"0832","403526":"0832","403527":"0832","403529":"0832","403530":"0832","403601":"0832","403602":"0832","403701":"0832","403702":"0832","403703":"0832","403704":"0832","403705":"0832","403706":"0832","403707":"0832","403708":"0832","403709":"0832","403710":"0832","403711":"0832","403712":"0832","403713":"0832","403714":"0832","403715":"0832","403716":"0832","403717":"0832","403718":"0832","403719":"0832","403720":"0832","403721":"0832","403722":"0832","403723":"0832","403724":"0832","403725":"0832","403726":"0832","403728":"0832","403729":"0832","403731":"0832","403801":"0832","403802":"0832","403803":"0832","403804":"0832","403806":"0832","410101":"02194","410102":"02194","410201":"02194","410202":"02194","410203":"02194","410204":"02194","410205":"02194","410206":"02194","410207":"02194","410208":"02194","410209":"02194","410210":"02194","410216":"02194","410218":"02194","410220":"02194","410221":"02194","410222":"02194","410301":"020","410302":"020","410401":"020","410402":"020","410403":"020","410405":"020","410406":"020","410501":"020","410502":"020","410503":"020","410504":"020","410505":"020","410506":"020","410507":"020","410508":"020","410509":"020","410510":"020","410511":"020","410512":"020","410513":"020","410515":"020","410516":"020","411001":"020","411002":"020","411003":"020","411004":"020","411005":"020","411006":"020","411007":"020","411008":"020","411009":"020","411011":"020","411012":"020","411013":"020","411014":"020","411015":"020","411016":"020","411017":"020","411018":"020","411019":"020","411020":"020","411021":"020","411022":"020","411023":"020","411024":"020","411025":"020","411026":"020","411027":"020","411028":"020","411030":"020","411031":"020","411032":"020","411033":"020","411034":"020","411035":"020","411036":"020","411037":"020","411038":"020","411039":"020","411040":"020","411041":"020","411042":"020","411043":"020","411044":"020","411045":"020","411046":"020","411047":"020","411048":"020","411051":"020","411052":"020","411057":"020","411058":"020","411060":"020","411061":"020","411062":"020","411067":"020","411068":"020","411069":"020","412101":"020","412102":"020","412103":"020","412104":"020","412105":"020","412106":"020","412107":"020","412108":"020","412109":"020","412110":"020","412112":"020","412115":"020","412201":"020","412202":"020","412203":"020","412204":"020","412205":"020","412206":"02162","412207":"020","412208":"020","412209":"020","412210":"020","412211":"020","412212":"020","412213":"020","412214":"020","412215":"020","412216":"020","412218":"020","412219":"020","412220":"020","412301":"020","412303":"020","412304":"020","412305":"020","412306":"020","412307":"020","412308":"020","412311":"020","412312":"020","412401":"020","412402":"020","412403":"020","412404":"020","412405":"020","412406":"020","412408":"020","412409":"020","412410":"020","412411":"020","412412":"020","412801":"02162","412802":"02162","412803":"02162","412804":"02162","412805":"02162","412806":"02162","413001":"0217","413002":"0217","413003":"0217","413004":"0217","413005":"0217","413006":"0217","413007":"0217","413008":"0217","413101":"0217","413102":"020","413103":"020","413104":"020","413105":"020","413106":"020","413107":"0217","413108":"0217","413109":"0217","413110":"020","413111":"0217","413112":"0217","413113":"0217","413114":"020","413115":"020","413116":"020","413118":"0217","413120":"020","413130":"020","413132":"020","413133":"020","413201":"0241","413202":"0217","413203":"0217","413204":"0241","413205":"0241","413206":"0217","413207":"02442","413208":"0217","413209":"0217","413210":"0217","413211":"0217","413212":"0217","413213":"0217","413214":"0217","413215":"0217","413216":"0217","413217":"0217","413218":"0217","413219":"0217","413220":"0217","413221":"0217","413222":"0217","413223":"0217","413224":"0217","413226":"0217","413227":"0217","413228":"0217","413229":"02442","413248":"0217","413249":"02442","413250":"0217","413251":"0217","413252":"0217","413253":"0217","413255":"0217","413301":"0217","413302":"0217","413303":"0217","413304":"0217","413305":"0217","413306":"0217","413307":"0217","413308":"0217","413309":"0217","413310":"0217","413314":"0217","413315":"0217","413317":"0217","413319":"0217","413322":"0217","413324":"0217","413401":"0217","413402":"0217","413403":"0217","413404":"0217","413405":"02472","413406":"0217","413409":"0217","413410":"0217","413411":"0217","413412":"0217","413501":"02472","413502":"02472","413503":"02472","413504":"02472","413505":"02472","413506":"02472","413507":"02472","413508":"02472","413509":"02472","413510":"02472","413511":"02382","413512":"02382","413513":"02382","413514":"02382","413515":"02382","413516":"02382","413517":"02382","413518":"02382","413519":"02382","413520":"02382","413521":"02382","413522":"02382","413523":"02382","413524":"02382","413525":"02472","413526":"02472","413527":"02382","413528":"02472","413529":"02382","413530":"02382","413531":"02382","413532":"02382","413534":"02472","413544":"02382","413581":"02382","413582":"02472","413601":"02472","413602":"02472","413603":"02472","413604":"02472","413605":"02472","413606":"02472","413607":"02382","413608":"02472","413623":"02472","413624":"02472","413701":"0241","413702":"0241","413703":"0241","413704":"0241","413705":"0241","413706":"0241","413707":"0241","413708":"0241","413709":"0241","413710":"0241","413711":"0241","413712":"0241","413713":"0241","413714":"0241","413715":"0241","413716":"0241","413717":"0241","413718":"0241","413719":"0241","413720":"0241","413721":"0241","413722":"0241","413723":"0241","413725":"0241","413726":"0241","413728":"0241","413736":"0241","413737":"0241","413738":"0241","413739":"0241","413801":"020","413802":"020","414001":"0241","414002":"0241","414003":"0241","414005":"0241","414006":"0241","414101":"0241","414102":"0241","414103":"0241","414105":"0241","414106":"0241","414110":"0241","414111":"0241","414113":"0241","414201":"0241","414202":"02442","414203":"02442","414204":"02442","414205":"02442","414208":"02442","414301":"0241","414302":"0241","414303":"0241","414304":"0241","414305":"0241","414306":"0241","414401":"0241","414402":"0241","414403":"0241","414501":"0241","414502":"0241","414503":"0241","414504":"0241","414505":"0241","414601":"0241","414602":"0241","414603":"0241","414604":"0241","414605":"0241","414606":"0241","414607":"0241","414609":"0241","414701":"0241","415001":"02162","415002":"02162","415003":"02162","415004":"02162","415010":"02162","415011":"02162","415012":"02162","415013":"02162","415014":"02162","415015":"02162","415019":"02162","415020":"02162","415021":"02162","415022":"02162","415023":"02162","415101":"0231","415102":"02162","415103":"02162","415104":"02162","415105":"02162","415106":"02162","415107":"02162","415108":"02162","415109":"02162","415110":"02162","415111":"02162","415112":"02162","415114":"02162","415115":"02162","415116":"02162","415122":"02162","415124":"02162","415202":"02352","415203":"02352","415205":"02162","415206":"02162","415207":"02162","415208":"02352","415209":"02162","415211":"02162","415212":"02162","415213":"02194","415214":"02352","415301":"0233","415302":"0233","415303":"0233","415304":"0233","415305":"0233","415306":"0233","415307":"0233","415308":"0233","415309":"0233","415310":"0233","415311":"0233","415312":"02162","415313":"0233","415315":"0233","415401":"0233","415402":"0233","415403":"0233","415404":"0233","415405":"0233","415406":"0233","415407":"0233","415408":"0233","415409":"0233","415410":"0233","415411":"0233","415412":"0233","415413":"0233","415414":"0233","415415":"0233","415501":"02162","415502":"02162","415503":"02162","415504":"02162","415505":"02162","415506":"02162","415507":"02162","415508":"02162","415509":"02162","415510":"02162","415511":"02162","415512":"02162","415513":"02162","415514":"02162","415515":"02162","415516":"02162","415517":"02162","415518":"02162","415519":"02162","415520":"02162","415521":"02162","415522":"02162","415523":"02162","415524":"02162","415525":"02162","415526":"02162","415527":"02162","415528":"02162","415530":"02162","415536":"02162","415537":"02162","415538":"02162","415539":"02162","415540":"02162","415601":"02352","415602":"02352","415603":"02352","415604":"02352","415605":"02352","415606":"02352","415607":"02352","415608":"02352","415609":"02352","415610":"02352","415611":"02352","415612":"02352","415613":"02352","415614":"02352","415615":"02352","415616":"02352","415617":"02352","415619":"02352","415620":"02352","415621":"02352","415626":"02352","415628":"02352","415629":"02352","415634":"02352","415637":"02352","415639":"02352","415640":"02352","415641":"02352","415643":"02352","415701":"02352","415702":"02352","415703":"02352","415705":"02352","415706":"02352","415708":"02352","415709":"02352","415710":"02352","415711":"02352","415712":"02352","415713":"02352","415714":"02352","415715":"02352","415716":"02352","415717":"02352","415718":"02352","415719":"02352","415720":"02352","415722":"02352","415724":"02352","415726":"02352","415727":"02352","415728":"02352","415729":"02352","415730":"02352","415801":"02352","415802":"02352","415803":"02352","415804":"02352","415805":"02352","415806":"02352","415807":"02352","416001":"0231","416002":"0231","416003":"0231","416004":"0231","416005":"0231","416006":"0231","416007":"0231","416008":"0231","416010":"0231","416011":"0231","416012":"0231","416013":"0231","416101":"0231","416102":"0231","416103":"0231","416104":"0231","416105":"0231","416106":"0231","416107":"0231","416108":"0231","416109":"0231","416110":"0231","416111":"0231","416112":"0231","416113":"0231","416114":"0231","416115":"0231","416116":"0231","416118":"0231","416119":"0231","416120":"0231","416121":"0231","416122":"0231","416138":"0231","416143":"0231","416144":"0231","416146":"0231","416201":"0231","416202":"0231","416203":"0231","416204":"0231","416205":"0231","416206":"0231","416207":"0231","416208":"0231","416209":"0231","416210":"0231","416211":"0231","416212":"0231","416213":"0231","416214":"0231","416215":"0231","416216":"0231","416218":"0231","416219":"0231","416220":"0231","416221":"0231","416223":"0231","416229":"0231","416230":"0231","416231":"0231","416232":"0231","416234":"0231","416235":"0231","416236":"0231","416301":"0233","416302":"0233","416303":"0233","416304":"0233","416305":"0233","416306":"0233","416307":"0233","416308":"0233","416309":"0233","416310":"0233","416311":"0233","416312":"0233","416313":"0233","416314":"0233","416315":"0233","416316":"0233","416401":"0233","416402":"0233","416403":"0233","416404":"0233","416405":"0233","416406":"0233","416407":"0233","416408":"0233","416409":"0233","416410":"0233","416411":"0233","416412":"0233","416413":"0233","416414":"0233","416415":"0233","416416":"0233","416417":"0233","416418":"0233","416419":"0233","416420":"0233","416436":"0233","416437":"0233","416501":"0231","416502":"0231","416503":"0231","416504":"0231","416505":"0231","416506":"0231","416507":"0231","416508":"0231","416509":"0231","416510":"02362","416511":"02362","416512":"02362","416513":"02362","416514":"02362","416515":"02362","416516":"02362","416517":"02362","416518":"02362","416519":"02362","416520":"02362","416521":"02362","416522":"02362","416523":"02362","416524":"02362","416525":"02362","416526":"0231","416527":"0231","416528":"02362","416529":"02362","416531":"02362","416534":"02362","416549":"02362","416550":"02362","416551":"0231","416552":"0231","416601":"02362","416602":"02362","416603":"02362","416604":"02362","416605":"02362","416606":"02362","416608":"02362","416609":"02362","416610":"02362","416611":"02362","416612":"02362","416613":"02362","416614":"02362","416615":"02362","416616":"02362","416620":"02362","416623":"02362","416626":"02362","416628":"02362","416630":"02362","416632":"02362","416701":"02352","416702":"02352","416703":"02362","416704":"02352","416705":"02352","416707":"02352","416709":"02352","416712":"02352","416713":"02352","416801":"02362","416803":"02362","416804":"02362","416805":"02362","416806":"02362","416807":"02362","416810":"02362","416811":"02362","416812":"02362","416813":"02362","421002":"022","421004":"022","421005":"022","421101":"022","421102":"022","421103":"022","421201":"022","421202":"022","421203":"022","421204":"022","421301":"022","421302":"022","421303":"02525","421305":"022","421306":"022","421308":"022","421311":"022","421312":"02525","421401":"022","421402":"022","421403":"022","421501":"022","421502":"022","421503":"022","421505":"022","421506":"022","421601":"022","421602":"022","421603":"022","421605":"022","422001":"0253","422002":"0253","422003":"0253","422004":"0253","422005":"0253","422006":"0253","422007":"0253","422008":"0253","422009":"0253","422010":"0253","422011":"0253","422012":"0253","422013":"0253","422101":"0253","422102":"0253","422103":"0253","422104":"0253","422105":"0253","422112":"0253","422113":"0253","422201":"0253","422202":"0253","422203":"0253","422204":"0253","422205":"0253","422206":"0253","422207":"0253","422208":"0253","422209":"0253","422210":"0253","422211":"0253","422212":"0253","422213":"0253","422214":"0253","422215":"0253","422221":"0253","422222":"0253","422301":"0253","422302":"0253","422303":"0253","422304":"0253","422305":"0253","422306":"0253","422308":"0253","422401":"0253","422402":"0253","422403":"0253","422501":"0253","422502":"0253","422601":"0241","422602":"0241","422603":"0241","422604":"0241","422605":"0241","422606":"0253","422608":"0241","422610":"0241","422611":"0241","422620":"0241","422622":"0241","423101":"0253","423102":"0253","423104":"0253","423105":"0253","423106":"0253","423107":"0241","423108":"0253","423109":"0241","423110":"0253","423111":"0253","423117":"0253","423201":"0253","423202":"0253","423203":"0253","423204":"0253","423205":"0253","423206":"0253","423208":"0253","423212":"0253","423213":"0253","423301":"0253","423302":"0253","423303":"0253","423401":"0253","423402":"0253","423403":"0253","423501":"0253","423502":"0253","423601":"0241","423602":"0241","423603":"0241","423604":"0241","423605":"0241","423607":"0241","423701":"0240","423702":"0240","423703":"0240","424001":"02562","424002":"02562","424004":"02562","424005":"02562","424006":"02562","424101":"0257","424102":"0257","424103":"0257","424104":"0257","424105":"0257","424106":"0257","424107":"0257","424108":"0257","424109":"0253","424119":"0257","424201":"0257","424202":"0257","424203":"0257","424204":"0257","424205":"0257","424206":"0257","424207":"0257","424208":"0257","424301":"02562","424302":"02562","424303":"02562","424304":"02562","424305":"02562","424306":"02562","424307":"02562","424308":"02562","424309":"02562","424310":"02562","424311":"02562","424318":"02562","425001":"0257","425002":"0257","425003":"0257","425004":"0257","425101":"0257","425102":"0257","425103":"0257","425104":"0257","425105":"0257","425107":"0257","425108":"0257","425109":"0257","425110":"0257","425111":"0257","425112":"0257","425113":"0257","425114":"0257","425115":"0257","425116":"0257","425201":"0257","425203":"0257","425301":"0257","425302":"0257","425303":"0257","425304":"0257","425305":"0257","425306":"0257","425307":"0257","425308":"0257","425309":"0257","425310":"0257","425311":"0257","425327":"0257","425401":"0257","425402":"0257","425403":"02562","425404":"02562","425405":"02562","425406":"02562","425407":"02562","425408":"02564","425409":"02564","425410":"02564","425411":"02564","425412":"02564","425413":"02564","425414":"02564","425415":"02564","425416":"02564","425417":"02564","425418":"02564","425419":"02564","425420":"0257","425421":"02562","425422":"02564","425423":"02564","425424":"02564","425426":"02564","425427":"02562","425428":"02562","425432":"02564","425442":"02564","425444":"02564","425452":"02564","425501":"0257","425502":"0257","425503":"0257","425504":"0257","425505":"0257","425506":"0257","425507":"0257","425508":"0257","425524":"0257","431001":"0240","431002":"0240","431003":"0240","431004":"0240","431005":"0240","431006":"0240","431007":"0240","431008":"0240","431009":"0240","431010":"0240","431011":"0240","431101":"0240","431102":"0240","431103":"0240","431104":"0240","431105":"0240","431107":"0240","431109":"0240","431110":"0240","431111":"0240","431112":"02482","431113":"0240","431114":"02482","431115":"0240","431116":"0240","431117":"0240","431118":"0240","431120":"0240","431121":"02482","431122":"02442","431123":"02442","431124":"02442","431125":"02442","431126":"02442","431127":"02442","431128":"02442","431129":"02442","431130":"02442","431131":"02442","431132":"02482","431133":"0240","431134":"02482","431135":"02482","431136":"0240","431137":"02482","431142":"02442","431143":"02442","431144":"02442","431147":"0240","431148":"0240","431150":"0240","431151":"0240","431152":"0240","431153":"02442","431154":"02482","431202":"02482","431203":"02482","431204":"02482","431205":"02482","431206":"02482","431207":"02482","431208":"02482","431209":"02482","431211":"02482","431212":"02482","431213":"02482","431214":"02482","431215":"02482","431401":"02452","431402":"02452","431501":"02482","431502":"02482","431503":"02452","431504":"02482","431505":"02452","431506":"02452","431507":"02482","431508":"02452","431509":"02452","431510":"02452","431511":"02452","431512":"02456","431513":"02456","431514":"02452","431515":"02442","431516":"02452","431517":"02442","431518":"02442","431519":"02442","431520":"02442","431521":"02452","431522":"02382","431523":"02442","431530":"02442","431536":"02452","431537":"02452","431540":"02452","431541":"02452","431542":"02456","431601":"02462","431602":"02462","431603":"02462","431604":"02462","431605":"02462","431606":"02462","431701":"02456","431702":"02456","431703":"02456","431704":"02462","431705":"02456","431707":"02462","431708":"02462","431709":"02462","431710":"02462","431711":"02462","431712":"02462","431713":"02462","431714":"02462","431715":"02462","431716":"02462","431717":"02462","431718":"02462","431719":"02462","431720":"02452","431721":"02462","431722":"02462","431723":"02462","431731":"02462","431736":"02462","431741":"02462","431742":"02462","431743":"02462","431745":"02462","431746":"02462","431750":"02462","431801":"02462","431802":"02462","431803":"02462","431804":"02462","431805":"02462","431806":"02462","431807":"02462","431808":"02462","431809":"02462","431810":"02462","431811":"02462","440001":"0712","440002":"0712","440003":"0712","440005":"0712","440006":"0712","440007":"0712","440008":"0712","440010":"0712","440012":"0712","440013":"0712","440014":"0712","440015":"0712","440016":"0712","440017":"0712","440018":"0712","440019":"0712","440020":"0712","440021":"0712","440022":"0712","440023":"0712","440024":"0712","440025":"0712","440026":"0712","440027":"0712","440030":"0712","440032":"0712","440033":"0712","440034":"0712","440035":"0712","440036":"0712","440037":"0712","441001":"0712","441101":"0712","441102":"0712","441103":"0712","441104":"0712","441105":"0712","441106":"0712","441107":"0712","441108":"0712","441109":"0712","441110":"0712","441111":"0712","441112":"0712","441113":"0712","441122":"0712","441123":"0712","441201":"0712","441202":"0712","441203":"0712","441204":"0712","441205":"07172","441206":"07172","441207":"07132","441208":"07132","441209":"07132","441210":"0712","441212":"07172","441214":"0712","441215":"07172","441217":"07132","441221":"07172","441222":"07172","441223":"07172","441224":"07172","441225":"07172","441226":"07172","441301":"0712","441302":"0712","441303":"0712","441304":"0712","441305":"0712","441306":"0712","441401":"0712","441404":"0712","441501":"0712","441502":"0712","441601":"07182","441614":"07182","441701":"07182","441702":"07182","441801":"07182","441802":"07184","441803":"07184","441804":"07184","441805":"07184","441806":"07182","441807":"07182","441809":"07184","441901":"07182","441902":"07182","441903":"07184","441904":"07184","441905":"07184","441906":"07184","441907":"07184","441908":"07184","441909":"07184","441910":"07184","441911":"07182","441912":"07184","441913":"07184","441914":"07184","441915":"07184","441916":"07182","441924":"07184","442001":"07152","442003":"07152","442101":"07152","442102":"07152","442104":"07152","442105":"07152","442106":"07152","442107":"07152","442111":"07152","442201":"07152","442202":"07152","442203":"07152","442301":"07152","442302":"07152","442303":"07152","442304":"07152","442305":"07152","442306":"07152","442307":"07152","442401":"07172","442402":"07172","442403":"07172","442404":"07172","442406":"07172","442501":"07172","442502":"07172","442503":"07172","442504":"07132","442505":"07172","442507":"07172","442603":"07132","442604":"07132","442605":"07132","442606":"07132","442701":"07172","442702":"07172","442703":"07132","442704":"07132","442705":"07132","442707":"07132","442709":"07132","442710":"07132","442901":"07172","442902":"07172","442903":"07172","442904":"07172","442905":"07172","442906":"07172","442907":"07172","442908":"07172","442914":"07172","442916":"07172","442917":"07172","442918":"07132","442919":"07132","443001":"07262","443002":"07262","443101":"07262","443102":"07262","443103":"07262","443104":"07262","443106":"07262","443112":"07262","443201":"07262","443202":"07262","443203":"07262","443204":"07262","443206":"07262","443301":"07262","443302":"07262","443303":"07262","443304":"07262","443308":"07262","443401":"07262","443402":"07262","443403":"07262","443404":"07262","444001":"0724","444002":"0724","444003":"0724","444004":"0724","444005":"0724","444006":"0724","444007":"0724","444101":"0724","444102":"0724","444103":"0724","444104":"0724","444105":"07252","444106":"0724","444107":"0724","444108":"0724","444109":"0724","444110":"07252","444111":"0724","444117":"0724","444126":"0724","444201":"07262","444202":"07262","444203":"07262","444204":"07262","444301":"07262","444302":"0724","444303":"07262","444304":"07262","444306":"07262","444311":"0724","444312":"07262","444401":"0724","444402":"07252","444403":"07252","444404":"07252","444405":"0724","444407":"0724","444409":"07252","444501":"0724","444502":"0724","444503":"07252","444504":"07252","444505":"07252","444506":"07252","444507":"07252","444510":"07252","444511":"0724","444601":"0721","444602":"0721","444603":"0721","444604":"0721","444605":"0721","444606":"0721","444607":"0721","444701":"0721","444702":"0721","444704":"0721","444705":"0721","444706":"0721","444707":"0721","444708":"0721","444709":"0721","444710":"0721","444711":"0721","444717":"0721","444719":"0721","444720":"0721","444723":"0721","444801":"0721","444802":"0721","444803":"0721","444804":"0721","444805":"0721","444806":"0721","444807":"0721","444808":"0721","444809":"0721","444810":"0721","444813":"0721","444901":"0721","444902":"0721","444903":"0721","444904":"0721","444905":"0721","444906":"0721","444907":"0721","444908":"0721","444915":"0721","445001":"07232","445002":"07232","445101":"07232","445102":"07232","445103":"07232","445105":"07232","445106":"07232","445109":"07232","445110":"07232","445201":"07232","445202":"07232","445203":"07232","445204":"07232","445205":"07232","445206":"07232","445207":"07232","445209":"07232","445210":"07232","445211":"07232","445215":"07232","445216":"07232","445230":"07232","445301":"07232","445302":"07232","445303":"07232","445304":"07232","445305":"07232","445306":"07232","445307":"07232","445308":"07232","445323":"07232","445324":"07232","445401":"07232","445402":"07232","450221":"07325","450331":"07325","450332":"07325","450445":"07325","450551":"07282","451001":"07282","451111":"07282","451113":"07282","451115":"07282","451220":"07282","451221":"07282","451224":"07282","451225":"07282","451228":"07282","451331":"07282","451332":"07282","451335":"07282","451440":"07282","451441":"07282","451442":"07282","451447":"07290","451449":"07282","451551":"07290","451556":"07290","451660":"07282","451666":"07290","451770":"07290","451881":"07290","452001":"0731","452002":"0731","452003":"0731","452005":"0731","452006":"0731","452007":"0731","452009":"0731","452010":"0731","452011":"0731","452012":"0731","452013":"0731","452014":"0731","452015":"0731","452016":"0731","452018":"0731","452020":"0731","453001":"0731","453111":"0731","453112":"0731","453115":"0731","453220":"0731","453331":"0731","453441":"0731","453446":"0731","453551":"0731","453552":"0731","453555":"0731","453556":"0731","453661":"0731","453771":"0731","454001":"07292","454010":"07292","454111":"07292","454116":"07292","454221":"07292","454331":"07292","454335":"07292","454441":"07292","454446":"07292","454449":"07292","454552":"07292","454660":"07292","454665":"07292","454773":"07292","454774":"07292","454775":"07292","455001":"07272","455111":"07272","455115":"07272","455116":"07272","455118":"07272","455221":"07272","455223":"07272","455227":"07272","455332":"07272","455336":"07272","455339":"07272","455440":"07272","455459":"07272","456001":"0734","456003":"0734","456006":"0734","456010":"0734","456221":"0734","456222":"0734","456224":"0734","456313":"0734","456331":"0734","456335":"0734","456337":"0734","456440":"0734","456441":"0734","456443":"0734","456550":"0734","456661":"0734","456664":"0734","456665":"0734","456668":"0734","456770":"0734","456771":"0734","456776":"0734","457001":"07412","457114":"07412","457118":"07412","457119":"07412","457222":"07412","457226":"07412","457331":"07412","457333":"07412","457336":"07412","457339":"07412","457340":"07412","457441":"07412","457550":"07412","457555":"07412","457661":"07392","457770":"07392","457772":"07392","457773":"07392","457775":"07392","457777":"07392","457779":"07392","457882":"07394","457885":"07394","457887":"07394","457888":"07394","457990":"07394","457993":"07392","458001":"07422","458002":"07422","458110":"07423","458113":"07423","458116":"07423","458118":"07423","458220":"07423","458226":"07423","458228":"07423","458330":"07423","458336":"07423","458339":"07423","458389":"07422","458441":"07423","458468":"07423","458470":"07423","458553":"07423","458556":"07422","458558":"07422","458664":"07422","458667":"07422","458669":"07422","458771":"07422","458775":"07422","458778":"07422","458880":"07422","458883":"07422","458888":"07422","458895":"07422","458990":"07422","460001":"07141","460004":"07141","460110":"07141","460220":"07141","460225":"07141","460330":"07141","460440":"07141","460443":"07141","460447":"07141","460449":"07141","460551":"07141","460553":"07141","460554":"07141","460557":"07141","460661":"07141","460663":"07162","460665":"07141","460666":"07141","460668":"07141","461001":"07792","461005":"07574","461110":"07574","461111":"07574","461114":"07574","461115":"07574","461116":"07574","461122":"07574","461221":"07574","461223":"07574","461228":"07574","461331":"07577","461335":"07577","461441":"07577","461446":"07574","461551":"07574","461661":"07574","461668":"07574","461771":"07574","461775":"07574","461881":"07574","461990":"07574","462001":"0755","462002":"0755","462003":"0755","462004":"0755","462008":"0755","462010":"0755","462011":"0755","462016":"0755","462020":"0755","462022":"0755","462023":"0755","462024":"0755","462026":"0755","462027":"0755","462030":"0755","462031":"0755","462033":"0755","462036":"0755","462037":"0755","462038":"0755","462039":"0755","462040":"0755","462041":"0755","462042":"0755","462043":"0755","462044":"0755","462045":"0755","462046":"07482","462047":"0755","462066":"0755","462100":"0755","462101":"0755","462120":"0755","463106":"0755","463111":"0755","464001":"07592","464111":"07592","464113":"07592","464114":"07592","464220":"07592","464221":"07592","464224":"07592","464226":"07592","464228":"07592","464240":"07592","464258":"07592","464331":"07592","464334":"07592","464337":"07592","464551":"07482","464570":"07482","464573":"07482","464651":"07482","464661":"07482","464665":"07482","464668":"07482","464671":"07482","464672":"07482","464770":"07482","464774":"07482","464776":"07482","464881":"07482","464884":"07482","464886":"07482","464986":"07482","464990":"07482","464993":"07482","465001":"07364","465106":"07364","465110":"07364","465113":"07364","465116":"07364","465118":"07364","465220":"07364","465223":"07364","465226":"07364","465227":"07364","465230":"07362","465333":"07364","465335":"07364","465337":"07364","465339":"07364","465441":"07362","465445":"07362","465447":"07362","465449":"07362","465550":"07362","465661":"07372","465667":"07372","465669":"07372","465674":"07372","465677":"07372","465679":"07372","465680":"07372","465683":"07372","465685":"07372","465687":"07372","465689":"07372","465691":"07372","465693":"07372","465697":"07372","466001":"07562","466111":"07562","466113":"07562","466114":"07562","466115":"07562","466116":"07562","466118":"07562","466120":"07562","466125":"07562","466221":"07562","466331":"07562","466445":"07562","466446":"07562","466448":"07562","466554":"07562","466651":"07562","466661":"07562","466665":"07562","470001":"07582","470002":"07582","470003":"07582","470004":"07582","470021":"07582","470051":"07582","470113":"07582","470115":"07582","470117":"07582","470118":"07582","470119":"07582","470120":"07582","470124":"07582","470125":"07582","470221":"07582","470223":"07582","470226":"07582","470227":"07582","470228":"07582","470229":"07582","470232":"07582","470235":"07582","470335":"07582","470337":"07582","470339":"07582","470340":"07582","470441":"07582","470442":"07582","470661":"07812","470663":"07812","470664":"07812","470666":"07812","470669":"07582","470672":"07812","470673":"07812","470675":"07812","470771":"07812","470772":"07812","470775":"07812","470880":"07812","470881":"07812","471001":"07682","471101":"07682","471105":"07682","471111":"07682","471201":"07682","471301":"07682","471311":"07682","471313":"07682","471315":"07682","471318":"07682","471405":"07682","471408":"07682","471411":"07682","471501":"07682","471510":"07682","471515":"07682","471516":"07682","471525":"07682","471606":"07682","471625":"07682","472001":"07683","472005":"07683","472010":"07683","472101":"07683","472111":"07683","472115":"07683","472118":"07683","472221":"07683","472246":"07680","472331":"07683","472336":"07680","472337":"07680","472339":"07683","472442":"07680","472445":"07680","472447":"07683","473001":"07542","473101":"07542","473105":"07542","473110":"07542","473111":"07542","473112":"07542","473113":"07542","473115":"07542","473118":"07542","473222":"07542","473226":"07542","473249":"07542","473287":"07542","473330":"07543","473331":"07543","473332":"07543","473335":"07543","473440":"07543","473443":"07543","473444":"07543","473445":"07543","473446":"07543","473551":"07492","473585":"07492","473638":"07492","473660":"07492","473662":"07492","473665":"07492","473670":"07492","473770":"07492","473774":"07492","473775":"07492","473781":"07492","473793":"07492","473865":"07492","473880":"07492","473885":"07492","473990":"07492","473995":"07492","474001":"0751","474002":"0751","474003":"0751","474004":"0751","474005":"0751","474006":"0751","474007":"0751","474008":"0751","474009":"0751","474010":"0751","474011":"0751","474012":"0751","474015":"0751","474020":"0751","475001":"0751","475002":"0751","475005":"0751","475110":"0751","475115":"0751","475220":"0751","475330":"0751","475335":"07522","475336":"07522","475661":"07522","475671":"07522","475673":"07522","475675":"07522","475682":"07522","475685":"07522","475686":"07522","476001":"07532","476111":"07532","476115":"07532","476134":"07532","476219":"07532","476221":"07532","476224":"07532","476228":"07532","476229":"07532","476332":"07530","476335":"07530","476337":"07530","476339":"07530","476355":"07530","476444":"07532","476554":"07532","477001":"07534","477105":"07534","477111":"07534","477116":"07534","477117":"07534","477222":"07534","477227":"07534","477331":"07534","477332":"07534","477333":"07534","477335":"07534","477441":"07534","477445":"07534","477446":"07534","477447":"07534","477449":"07534","477450":"07534","477555":"07534","477557":"07534","477566":"07534","477660":"07534","480001":"07162","480003":"07162","480105":"07162","480106":"07162","480107":"07162","480108":"07162","480109":"07162","480110":"07162","480111":"07162","480112":"07162","480115":"07162","480221":"07162","480223":"07162","480224":"07162","480331":"07162","480334":"07162","480337":"07162","480338":"07162","480441":"07162","480447":"07162","480449":"07162","480551":"07162","480555":"07162","480557":"07162","480559":"07162","480661":"07692","480667":"07692","480771":"07692","480880":"07692","480881":"07692","480882":"07692","480884":"07692","480886":"07692","480887":"07692","480888":"07692","480990":"07692","480991":"07692","480994":"07692","480996":"07692","480997":"07692","480999":"07692","481001":"07632","481051":"07632","481102":"07632","481105":"07632","481111":"07632","481115":"07632","481116":"07632","481117":"07632","481222":"07632","481224":"07632","481226":"07632","481331":"07632","481332":"07632","481335":"07632","481337":"07632","481441":"07632","481445":"07632","481449":"07632","481551":"07632","481556":"07632","481661":"07642","481662":"07642","481663":"07642","481664":"07642","481665":"07642","481666":"07642","481668":"07642","481672":"07642","481768":"07642","481771":"07642","481776":"07642","481778":"07644","481879":"07644","481880":"07644","481882":"07644","481883":"07644","481884":"07644","481885":"07642","481990":"07644","481995":"07642","481996":"07642","481998":"07642","482001":"0761","482002":"0761","482003":"0761","482004":"0761","482005":"0761","482008":"0761","482009":"0761","482010":"0761","482011":"0761","482020":"0761","482021":"0761","482051":"0761","482056":"0761","483001":"0761","483053":"0761","483105":"0761","483110":"0761","483113":"0761","483119":"0761","483220":"0761","483222":"0761","483225":"07622","483330":"07622","483331":"07622","483332":"07622","483334":"07622","483336":"0761","483440":"07622","483442":"07622","483501":"07622","483504":"07622","483770":"07622","483773":"07622","483775":"07622","483880":"07622","483990":"07622","484001":"07625","484110":"07652","484113":"07629","484114":"07652","484116":"07652","484117":"07652","484120":"07629","484220":"07629","484224":"07652","484330":"07629","484334":"07629","484336":"07629","484440":"07629","484444":"07629","484446":"07629","484447":"07629","484551":"07625","484555":"07625","484660":"07625","484661":"07625","484664":"07625","484665":"07625","484669":"07652","484770":"07652","484771":"07652","484774":"07652","484776":"07652","484881":"07629","484886":"07629","484887":"07629","485001":"07672","485005":"07672","485111":"07672","485112":"07672","485113":"07672","485114":"07672","485115":"07672","485221":"07672","485226":"07672","485331":"07672","485334":"07672","485441":"07672","485446":"07672","485447":"07672","485551":"07672","485661":"07672","485666":"07672","485771":"07672","485772":"07672","485773":"07672","485774":"07672","485775":"07672","485778":"07672","485881":"07672","486001":"07662","486002":"07662","486003":"07662","486004":"07662","486005":"07662","486006":"07662","486111":"07662","486114":"07662","486115":"07662","486117":"07662","486123":"07662","486220":"07662","486223":"07662","486226":"07662","486331":"07662","486333":"07662","486335":"07662","486338":"07662","486340":"07662","486341":"07662","486440":"07662","486441":"07662","486445":"07672","486446":"07662","486447":"07662","486448":"07662","486450":"07662","486550":"07672","486553":"07662","486556":"07662","486661":"07822","486666":"07822","486669":"07805","486670":"07822","486675":"07822","486771":"07822","486775":"07822","486776":"07822","486881":"07805","486882":"07805","486884":"07805","486885":"07805","486886":"07805","486887":"07805","486888":"07805","486889":"07805","486890":"07805","486892":"07805","487001":"07792","487110":"07792","487114":"07792","487118":"07792","487221":"07792","487225":"07792","487330":"07792","487334":"07792","487337":"07792","487441":"07792","487551":"07792","487555":"07792","487661":"07792","487770":"07792","487881":"07792","488001":"07732","488050":"07732","488059":"07732","488220":"07732","488222":"07732","488333":"07732","488441":"07732","488442":"07732","488443":"07732","488446":"07732","488448":"07732","490001":"0788","490006":"0788","490009":"0788","490011":"0788","490020":"0788","490021":"0788","490022":"0788","490023":"0788","490024":"0788","490025":"0788","490026":"0788","490036":"0788","490042":"0788","491001":"0788","491107":"0788","491111":"0788","491221":"0788","491222":"0788","491223":"0788","491225":"0788","491226":"07749","491227":"07749","491228":"07749","491229":"07744","491230":"07749","491331":"0788","491332":"0788","491335":"07824","491336":"07817","491337":"07824","491338":"07824","491340":"07824","491441":"07744","491444":"07744","491445":"07744","491557":"07744","491558":"07744","491559":"07817","491661":"07744","491665":"07744","491666":"07744","491668":"07744","491771":"07749","491881":"07744","491885":"07744","491888":"07744","491993":"07824","491995":"07817","491996":"07817","492001":"0771","492002":"0771","492003":"0771","492004":"0771","492005":"0771","492008":"0771","492009":"0771","492010":"0771","492012":"0771","492013":"0771","492014":"0771","492015":"0771","492016":"0771","492017":"0771","492018":"0771","492099":"0771","492101":"0771","492109":"07707","492112":"07723","493101":"07826","493111":"0771","493113":"07826","493114":"0771","493116":"0771","493118":"07826","493195":"0771","493196":"07826","493221":"0771","493222":"07826","493225":"0771","493228":"07826","493229":"07826","493331":"07826","493332":"07826","493335":"07826","493338":"07826","493344":"07826","493441":"0771","493445":"07723","493448":"07723","493449":"07723","493526":"07826","493551":"07723","493554":"07723","493555":"07723","493558":"07723","493559":"07826","493661":"0771","493662":"07722","493663":"07722","493770":"07722","493773":"07722","493776":"07722","493778":"07722","493881":"0771","493885":"0771","493887":"07707","493888":"07707","493889":"07707","493890":"07707","493891":"07707","493992":"07707","493996":"07707","494001":"07782","494010":"07782","494111":"07864","494114":"07864","494115":"07864","494122":"07864","494221":"07782","494222":"07782","494223":"07782","494224":"07782","494226":"07786","494228":"07786","494229":"07786","494230":"07786","494237":"07781","494331":"07786","494332":"07868","494333":"07868","494334":"07868","494335":"07868","494336":"07868","494337":"07868","494347":"07786","494441":"07856","494442":"07782","494444":"07853","494446":"07853","494447":"07853","494448":"07853","494449":"07856","494450":"07853","494552":"07856","494553":"07856","494556":"07856","494635":"07868","494661":"07781","494665":"07868","494669":"07868","494670":"07868","494771":"07868","494776":"07868","494777":"07868","495001":"07752","495003":"07752","495004":"07752","495006":"07752","495009":"07752","495112":"07752","495113":"07755","495115":"07755","495116":"07752","495117":"08476","495118":"08476","495119":"07759","495220":"07752","495222":"07752","495224":"07755","495330":"07755","495334":"07755","495335":"07755","495442":"07759","495444":"07759","495445":"07759","495446":"07759","495447":"07759","495448":"07759","495449":"07759","495450":"07759","495452":"07759","495454":"07759","495455":"07759","495550":"07752","495551":"07752","495552":"07817","495553":"07817","495554":"07817","495555":"07752","495556":"07817","495557":"07817","495559":"07817","495660":"07817","495661":"07817","495663":"07817","495668":"07817","495669":"07817","495671":"07759","495674":"07759","495677":"07759","495682":"07759","495683":"07759","495684":"07759","495686":"07817","495687":"07817","495688":"07817","495689":"07817","495690":"07817","495691":"07817","495692":"07817","495695":"07817","496001":"07762","496005":"07762","496100":"07762","496107":"07762","496108":"07762","496109":"07762","496111":"07762","496113":"07762","496115":"07762","496116":"07762","496118":"07762","496220":"07762","496223":"07774","496224":"07763","496225":"07763","496227":"07763","496242":"07763","496245":"07763","496330":"07763","496331":"07763","496334":"07763","496336":"07763","496338":"07763","496440":"07762","496445":"07762","496450":"07762","496551":"07762","496554":"07762","496661":"07762","496665":"07762","497001":"07774","497101":"07774","497111":"07774","497114":"07774","497116":"07774","497117":"07774","497118":"07831","497119":"07831","497220":"07831","497223":"07775","497224":"07831","497225":"07775","497226":"07775","497229":"07775","497231":"07775","497235":"07775","497331":"07836","497333":"07775","497335":"07836","497339":"07836","497442":"07836","497446":"07836","497447":"07836","497448":"07836","497449":"07836","497450":"07836","497451":"07836","497553":"07836","497555":"07836","497557":"07836","497559":"07836","497773":"07836","497778":"07836","500001":"040","500002":"040","500003":"040","500004":"040","500005":"08418","500006":"040","500007":"040","500008":"040","500009":"040","500010":"040","500011":"040","500012":"040","500013":"040","500014":"040","500015":"040","500016":"040","500017":"040","500018":"040","500019":"08414","500020":"040","500022":"040","500023":"040","500024":"040","500025":"040","500026":"040","500027":"040","500028":"040","500029":"040","500030":"08418","500031":"040","500032":"08414","500033":"040","500034":"040","500035":"08414","500036":"040","500037":"040","500038":"040","500039":"040","500040":"040","500041":"040","500042":"040","500043":"040","500044":"040","500045":"040","500046":"08414","500047":"040","500048":"08414","500049":"040","500050":"08414","500051":"040","500052":"08418","500053":"040","500054":"040","500055":"08418","500056":"040","500057":"040","500058":"040","500059":"040","500060":"08414","500061":"040","500062":"040","500063":"040","500064":"040","500065":"040","500066":"040","500067":"040","500068":"040","500069":"08414","500070":"08414","500072":"040","500073":"040","500074":"08414","500075":"08418","500076":"040","500077":"08414","500078":"040","500079":"08418","500080":"040","500081":"040","500082":"040","500083":"040","500084":"040","500085":"040","500086":"08414","500087":"08418","500088":"08418","500089":"08418","500090":"08418","500091":"08414","500092":"040","500093":"040","500094":"040","500095":"040","500096":"040","500097":"08414","500098":"040","500100":"040","500101":"08418","500102":"08414","500103":"040","500104":"08414","500107":"040","500108":"08414","500109":"040","500110":"040","500111":"08414","500112":"040","500113":"08418","500114":"040","500115":"08414","501101":"08416","501102":"08416","501106":"08416","501111":"08416","501121":"08416","501141":"08416","501142":"08416","501143":"08416","501144":"08416","501158":"08416","501202":"08416","501203":"08416","501218":"08418","501301":"08418","501359":"08418","501401":"08418","501501":"08416","501502":"08416","501503":"08418","501504":"08418","501505":"08418","501506":"08418","501508":"08418","501509":"08418","501510":"08418","501511":"08414","501512":"08418","502001":"08455","502032":"08455","502101":"08452","502102":"08457","502103":"08457","502107":"08457","502108":"08457","502109":"08452","502110":"08452","502113":"08452","502114":"08457","502115":"08452","502117":"08452","502125":"08452","502130":"08452","502205":"08455","502210":"08455","502220":"08455","502221":"08455","502228":"08455","502246":"08455","502247":"08457","502248":"08452","502249":"08455","502251":"08455","502255":"08452","502256":"08455","502257":"08455","502267":"08457","502269":"08455","502270":"08455","502271":"08452","502273":"08455","502276":"08457","502277":"08457","502278":"08457","502279":"08457","502280":"08457","502281":"08457","502284":"08455","502285":"08455","502286":"08455","502287":"08455","502290":"08455","502291":"08455","502293":"08455","502294":"08455","502295":"08455","502296":"08455","502300":"08455","502301":"08457","502302":"08452","502303":"08452","502305":"08455","502306":"08455","502307":"08455","502310":"08457","502311":"08457","502312":"08457","502313":"08455","502314":"08455","502316":"08452","502318":"08455","502319":"08455","502321":"08455","502324":"08455","502325":"08455","502329":"08455","502331":"08452","502334":"08457","502335":"08452","502336":"08457","502345":"08416","502371":"08455","502372":"08457","502375":"08457","502381":"08452","503001":"08462","503002":"08462","503003":"08462","503101":"08468","503102":"08468","503108":"08468","503110":"08468","503111":"08468","503112":"08468","503114":"08468","503120":"08468","503122":"08468","503123":"08468","503124":"08468","503125":"08468","503144":"08468","503145":"08922","503164":"08462","503165":"08462","503174":"08462","503175":"08462","503180":"08462","503185":"08462","503186":"08462","503187":"08468","503188":"08922","503201":"08462","503202":"08462","503206":"08462","503207":"08462","503212":"08462","503213":"08462","503217":"08462","503218":"08462","503219":"08462","503223":"08462","503224":"08462","503225":"08922","503230":"08922","503235":"08922","503245":"08462","503246":"08462","503301":"08468","503302":"08468","503305":"08468","503306":"08468","503307":"08462","503308":"08462","503309":"08468","503310":"08468","503311":"08462","503321":"08922","503322":"08462","504001":"08732","504002":"08732","504101":"08734","504102":"08734","504103":"08734","504104":"08734","504105":"08734","504106":"08734","504107":"08734","504109":"08734","504110":"08734","504201":"08736","504202":"08734","504203":"08734","504204":"08736","504205":"08734","504206":"08736","504207":"08736","504208":"08736","504209":"08736","504214":"08736","504215":"08736","504216":"08736","504218":"08736","504219":"08736","504220":"08736","504231":"08736","504251":"08736","504272":"08736","504273":"08736","504292":"08733","504293":"08733","504294":"08738","504295":"08733","504296":"08733","504297":"08733","504299":"08733","504301":"08736","504302":"08736","504303":"08736","504304":"08732","504306":"08734","504307":"08732","504308":"08732","504309":"08732","504310":"08734","504311":"08732","504312":"08732","504313":"08733","504323":"08732","504346":"08592","505001":"0878","505002":"0878","505101":"0870","505102":"0870","505122":"0878","505129":"0878","505152":"08728","505153":"08728","505162":"08728","505172":"08728","505174":"08728","505184":"08728","505185":"08728","505186":"08728","505187":"08922","505188":"08728","505208":"08728","505209":"08728","505210":"08728","505211":"08728","505212":"08728","505214":"08728","505215":"08728","505301":"08723","505302":"08723","505303":"08723","505304":"08723","505305":"08723","505306":"08724","505307":"08723","505325":"08462","505326":"08724","505327":"08724","505330":"08724","505331":"08724","505401":"0878","505402":"08723","505403":"08723","505404":"08723","505405":"08723","505415":"08728","505416":"08728","505425":"08724","505445":"0878","505450":"08724","505451":"0878","505452":"08724","505453":"08724","505454":"08724","505455":"08724","505460":"08724","505462":"08724","505466":"08457","505467":"08457","505468":"0878","505469":"0878","505470":"0878","505471":"0870","505472":"08457","505473":"08457","505474":"0878","505475":"0878","505476":"0870","505480":"0870","505481":"08457","505490":"0878","505497":"0870","505498":"0878","505501":"08724","505502":"0878","505503":"08922","505504":"0870","505505":"0878","505514":"08728","505524":"08723","505525":"08922","505526":"08724","505527":"0878","505528":"08457","505529":"08724","505530":"08457","505531":"0878","505532":"08724","506001":"0870","506002":"0870","506003":"0870","506004":"0870","506005":"0870","506006":"0870","506007":"0870","506008":"0870","506009":"0870","506011":"0870","506013":"0870","506015":"0870","506101":"08719","506102":"08719","506103":"08719","506104":"08719","506105":"08719","506112":"08719","506122":"0870","506132":"0870","506134":"08719","506135":"08719","506142":"0870","506143":"08716","506144":"08716","506145":"08716","506146":"08716","506151":"0870","506163":"08719","506164":"0870","506165":"08715","506166":"0870","506167":"08716","506168":"0870","506169":"0870","506170":"0870","506172":"08715","506175":"08716","506201":"08716","506221":"08716","506222":"08716","506223":"08457","506224":"08457","506244":"08716","506252":"08716","506301":"08716","506302":"08716","506303":"08716","506310":"0870","506313":"0870","506314":"0870","506315":"08719","506316":"08716","506317":"08719","506318":"08719","506319":"0870","506324":"08719","506329":"0870","506330":"0870","506331":"0870","506332":"0870","506333":"0870","506342":"0870","506343":"08715","506344":"08715","506345":"0870","506347":"08715","506348":"0870","506349":"08715","506350":"0870","506352":"08715","506355":"08457","506356":"0870","506365":"0870","506366":"0870","506367":"08457","506368":"08719","506369":"0870","506370":"0870","506371":"0870","506381":"08719","506391":"0870","507001":"08742","507002":"08742","507003":"08742","507101":"08743","507103":"08743","507111":"08743","507114":"08744","507115":"08744","507116":"08744","507117":"08744","507118":"08744","507119":"08743","507120":"08744","507122":"08719","507123":"08742","507124":"08743","507125":"08743","507128":"08744","507133":"08744","507136":"08715","507137":"08744","507138":"08743","507140":"08744","507154":"08743","507157":"08742","507158":"08742","507159":"08742","507160":"08742","507161":"08742","507163":"08742","507164":"08742","507165":"08742","507166":"08743","507167":"08742","507168":"08742","507169":"08742","507170":"08742","507182":"08742","507183":"08742","507201":"08742","507202":"08742","507203":"08742","507204":"08742","507208":"08742","507209":"08742","507210":"08719","507211":"08719","507301":"08743","507302":"08742","507303":"08742","507304":"08742","507305":"08742","507306":"08743","507316":"08742","507318":"08742","508001":"08682","508002":"08682","508004":"08682","508101":"08585","508105":"08585","508111":"08585","508112":"08585","508113":"08585","508114":"08682","508115":"08585","508116":"08685","508117":"08585","508126":"08585","508201":"08684","508202":"08682","508204":"08684","508205":"08682","508206":"08684","508207":"08682","508208":"08682","508210":"08682","508211":"08682","508212":"08684","508213":"08684","508214":"08684","508217":"08682","508218":"08684","508221":"08684","508223":"08684","508224":"08684","508233":"08684","508234":"08684","508238":"08684","508243":"08682","508244":"08682","508245":"08682","508246":"08684","508247":"08682","508248":"08682","508250":"08682","508252":"08585","508253":"08585","508254":"08682","508255":"08682","508256":"08682","508257":"08682","508258":"08682","508266":"08682","508277":"08585","508278":"08682","508279":"08684","508280":"08684","508284":"08585","508285":"08585","508286":"08585","508355":"08684","508373":"08682","508374":"08682","508376":"08684","508377":"08682","509001":"08542","509002":"08542","509102":"08540","509103":"08543","509104":"08543","509105":"08543","509106":"08543","509110":"08543","509120":"08543","509125":"08546","509126":"08546","509127":"08546","509128":"08546","509129":"08546","509130":"08543","509131":"08543","509132":"03472","509133":"08546","509135":"08546","509152":"08546","509153":"08546","509201":"08540","509202":"08542","509203":"08540","509204":"08506","509205":"08506","509206":"08543","509207":"08418","509208":"08506","509209":"08540","509210":"08506","509215":"08540","509216":"08418","509217":"08418","509219":"08542","509228":"08418","509235":"08543","509301":"08542","509302":"08540","509311":"08506","509320":"08455","509321":"08418","509324":"08922","509325":"08418","509326":"08540","509327":"08418","509334":"08542","509335":"08416","509336":"08416","509337":"08542","509338":"08416","509339":"08416","509340":"08416","509349":"08540","509350":"08416","509351":"08506","509352":"08506","509353":"08506","509357":"08542","509358":"08418","509360":"08540","509371":"08506","509375":"08540","509376":"08540","509380":"08543","509381":"08543","509382":"08543","509385":"08540","509401":"08540","509406":"08540","509407":"08506","509408":"08418","509409":"08506","509410":"08418","509411":"08506","509412":"08540","515001":"08554","515002":"08554","515003":"08554","515004":"08554","515005":"08554","515101":"08554","515110":"08554","515122":"08554","515123":"08554","515124":"08554","515133":"08554","515134":"08554","515144":"08554","515154":"08554","515159":"08554","515164":"08554","515201":"08554","515202":"08554","515211":"08554","515212":"08554","515231":"08554","515241":"08554","515261":"08554","515271":"08554","515281":"08554","515286":"08554","515291":"08554","515301":"08554","515303":"08554","515305":"08554","515311":"08554","515321":"08554","515331":"08554","515341":"08554","515401":"08554","515402":"08554","515405":"08554","515408":"08554","515411":"08554","515413":"08554","515414":"08554","515415":"08554","515425":"08554","515435":"08554","515445":"08554","515455":"08554","515465":"08562","515501":"08554","515511":"08554","515521":"08554","515531":"08554","515541":"08554","515551":"08554","515556":"08554","515561":"08554","515571":"08554","515581":"08554","515591":"08554","515601":"08554","515611":"08554","515621":"08554","515631":"08554","515641":"08554","515651":"08554","515661":"08554","515671":"08554","515672":"08554","515701":"08554","515711":"08554","515721":"08554","515722":"08554","515731":"08554","515741":"08554","515751":"08554","515761":"08554","515763":"08554","515765":"08554","515766":"08554","515767":"08554","515774":"08554","515775":"08554","515787":"08554","515801":"08554","515803":"08554","515812":"08554","515822":"08554","515832":"08554","515842":"08554","515863":"08554","515865":"08554","515867":"08554","515870":"08554","515871":"08554","515872":"08554","516001":"08562","516002":"08562","516003":"08562","516004":"08562","516005":"08562","516101":"08562","516104":"08562","516105":"08562","516107":"08562","516108":"08562","516110":"08562","516115":"08562","516126":"08562","516127":"08562","516128":"08562","516129":"08562","516130":"08562","516150":"08562","516151":"08562","516152":"08562","516162":"08562","516163":"08562","516172":"08562","516173":"08562","516175":"08562","516193":"08562","516203":"08562","516213":"08562","516214":"08562","516215":"08562","516216":"08562","516217":"08562","516218":"08562","516227":"08562","516228":"08562","516233":"08562","516237":"08562","516247":"08562","516257":"08562","516259":"08562","516267":"08562","516268":"08562","516269":"08562","516270":"08562","516289":"08562","516293":"08562","516309":"08562","516310":"08562","516311":"08562","516312":"08562","516321":"08562","516329":"08562","516330":"08562","516339":"08562","516349":"08562","516350":"08562","516355":"08562","516356":"08562","516359":"08562","516360":"08562","516361":"08562","516362":"08562","516380":"08562","516390":"08562","516391":"08562","516396":"08562","516401":"08562","516411":"08562","516421":"08562","516431":"08562","516432":"08562","516433":"08562","516434":"08562","516439":"08562","516444":"08562","516454":"08562","516464":"08562","516474":"08562","516484":"08562","516501":"08562","516502":"08562","516503":"08562","516504":"08562","516505":"08562","517001":"08572","517002":"08572","517004":"08572","517101":"08572","517102":"08572","517112":"08572","517113":"08572","517123":"08572","517124":"08572","517125":"08572","517126":"08572","517127":"08572","517128":"08572","517129":"08572","517130":"08572","517131":"08572","517132":"08572","517152":"08572","517167":"08572","517172":"08572","517192":"08572","517193":"08572","517194":"08572","517213":"08572","517214":"08572","517234":"08572","517235":"08572","517236":"08572","517237":"08572","517247":"08572","517257":"08572","517277":"08572","517280":"08572","517291":"08572","517297":"08572","517299":"08572","517305":"08572","517319":"08572","517325":"08572","517326":"08572","517350":"08572","517351":"08572","517352":"08572","517370":"08572","517390":"08572","517391":"08572","517401":"08572","517403":"08572","517408":"08572","517414":"08572","517415":"08572","517416":"08572","517417":"08572","517418":"08572","517419":"08572","517421":"08572","517422":"08572","517423":"08572","517424":"08572","517425":"08572","517426":"08572","517429":"08572","517432":"08572","517501":"08572","517502":"08572","517503":"08572","517504":"08572","517505":"08572","517506":"08572","517507":"08572","517520":"08572","517526":"08572","517536":"08572","517541":"08572","517551":"08572","517561":"08572","517569":"08572","517571":"08572","517581":"08572","517582":"08572","517583":"08572","517584":"08572","517586":"08572","517587":"08572","517588":"08572","517589":"08572","517590":"08572","517591":"08572","517592":"08572","517599":"08572","517619":"08572","517620":"08572","517640":"08572","517641":"08572","517642":"08572","517643":"08572","517644":"08572","517645":"08572","517646":"08572","518001":"08518","518002":"08518","518003":"08518","518004":"08518","518005":"08518","518006":"08518","518007":"08518","518010":"08518","518101":"08518","518102":"08518","518112":"08518","518122":"08518","518123":"08518","518124":"08518","518134":"08518","518135":"08518","518145":"08518","518155":"08518","518165":"08518","518166":"08518","518176":"08518","518186":"08518","518196":"08518","518206":"08518","518216":"08518","518217":"08518","518218":"08518","518220":"08518","518221":"08518","518222":"08518","518225":"08518","518301":"08518","518302":"08518","518308":"08518","518313":"08518","518323":"08518","518333":"08518","518343":"08518","518344":"08518","518345":"08518","518346":"08518","518347":"08518","518348":"08518","518349":"08518","518350":"08518","518360":"08518","518380":"08518","518385":"08518","518390":"08518","518395":"08518","518396":"08518","518401":"08518","518405":"08518","518411":"08518","518412":"08518","518422":"08518","518432":"08518","518442":"08518","518452":"08518","518462":"08518","518463":"08518","518464":"08518","518465":"08518","518466":"08518","518467":"08518","518468":"08518","518501":"08518","518502":"08518","518508":"08518","518510":"08518","518511":"08518","518512":"08518","518513":"08518","518523":"08518","518533":"08518","518543":"08518","518553":"08518","518563":"08518","518573":"08518","518583":"08518","518593":"08518","518594":"08518","518598":"08518","518599":"08518","518674":"08518","520001":"03472","520002":"03472","520003":"03472","520004":"03472","520007":"03472","520008":"03472","520010":"03472","520011":"03472","520012":"03472","520013":"03472","520015":"03472","521001":"03472","521002":"03472","521003":"03472","521004":"03472","521101":"03472","521102":"03472","521104":"03472","521105":"03472","521106":"03472","521107":"03472","521108":"03472","521109":"03472","521110":"03472","521111":"03472","521120":"03472","521121":"03472","521122":"03472","521125":"03472","521126":"03472","521130":"03472","521131":"03472","521132":"03472","521133":"03472","521134":"03472","521135":"03472","521136":"03472","521137":"03472","521138":"03472","521139":"03472","521148":"03472","521149":"03472","521150":"03472","521151":"03472","521153":"03472","521156":"03472","521157":"03472","521158":"03472","521162":"03472","521163":"03472","521164":"03472","521165":"03472","521170":"03472","521175":"03472","521178":"03472","521180":"03472","521181":"03472","521182":"03472","521183":"03472","521184":"03472","521185":"03472","521190":"03472","521201":"03472","521202":"03472","521207":"03472","521211":"03472","521212":"03472","521213":"03472","521214":"03472","521215":"03472","521225":"03472","521226":"03472","521227":"03472","521228":"03472","521229":"03472","521230":"03472","521231":"03472","521235":"03472","521241":"03472","521245":"03472","521246":"03472","521247":"03472","521250":"03472","521256":"03472","521260":"03472","521261":"03472","521263":"03472","521286":"03472","521301":"03472","521311":"03472","521312":"03472","521320":"03472","521321":"03472","521322":"03472","521323":"03472","521324":"03472","521325":"03472","521326":"03472","521327":"03472","521328":"03472","521329":"03472","521330":"03472","521331":"03472","521332":"03472","521333":"03472","521340":"03472","521343":"03472","521344":"03472","521345":"03472","521356":"03472","521366":"03472","521369":"03472","521390":"03472","521401":"03472","521402":"03472","521403":"03472","521456":"03472","521457":"03472","522001":"0863","522002":"0863","522003":"0863","522004":"0863","522005":"0863","522006":"0863","522007":"0863","522009":"0863","522015":"0863","522016":"0863","522017":"0863","522018":"0863","522019":"0863","522020":"0863","522034":"0863","522101":"0863","522102":"0863","522111":"0863","522112":"0863","522113":"0863","522124":"0863","522201":"0863","522202":"0863","522211":"0863","522212":"0863","522213":"0863","522233":"0863","522234":"0863","522235":"0863","522236":"0863","522237":"0863","522238":"0863","522239":"0863","522240":"0863","522256":"0863","522257":"0863","522258":"0863","522259":"0863","522261":"0863","522262":"0863","522264":"0863","522265":"0863","522268":"0863","522301":"0863","522302":"0863","522303":"0863","522304":"0863","522305":"0863","522306":"0863","522307":"0863","522308":"0863","522309":"0863","522310":"0863","522311":"0863","522312":"0863","522313":"0863","522314":"0863","522315":"0863","522316":"0863","522317":"0863","522318":"0863","522324":"0863","522325":"0863","522329":"0863","522330":"0863","522341":"0863","522401":"0863","522402":"0863","522403":"0863","522408":"0863","522409":"0863","522410":"0863","522411":"0863","522412":"0863","522413":"0863","522414":"0863","522415":"0863","522421":"0863","522426":"0863","522435":"0863","522436":"0863","522437":"0863","522438":"0863","522439":"0863","522501":"0863","522502":"0863","522503":"0863","522508":"0863","522509":"0863","522510":"0863","522529":"0863","522549":"0863","522601":"0863","522603":"0863","522611":"0863","522612":"0863","522613":"0863","522614":"0863","522615":"0863","522616":"0863","522617":"0863","522619":"0863","522626":"0863","522646":"0863","522647":"0863","522649":"0863","522657":"0863","522658":"0863","522659":"0863","522660":"0863","522661":"0863","522663":"0863","523001":"08592","523002":"08592","523101":"08592","523104":"08592","523105":"08592","523108":"08592","523109":"08592","523110":"08592","523111":"08592","523112":"08592","523113":"08592","523114":"08592","523115":"08592","523116":"08592","523117":"08592","523135":"08592","523155":"08592","523156":"08592","523157":"08592","523165":"08592","523166":"08592","523167":"08592","523168":"08592","523169":"08592","523170":"08592","523171":"08592","523180":"08592","523181":"08592","523182":"08592","523183":"08592","523184":"08592","523185":"08592","523186":"08592","523187":"08592","523190":"08592","523201":"08592","523211":"08592","523212":"08592","523213":"08592","523214":"08592","523223":"08592","523224":"08592","523225":"08592","523226":"08592","523227":"08592","523228":"08592","523230":"08592","523240":"08592","523241":"08592","523245":"08592","523246":"08592","523247":"08592","523252":"08592","523253":"08592","523254":"08592","523260":"08592","523261":"08592","523262":"08592","523263":"08592","523264":"08592","523265":"08592","523270":"08592","523271":"08592","523272":"08592","523273":"08592","523274":"08592","523279":"08592","523280":"08592","523281":"08592","523286":"08592","523291":"08592","523292":"08592","523301":"08592","523302":"08592","523303":"08592","523304":"08592","523305":"08592","523315":"08592","523316":"08592","523320":"08592","523326":"08592","523327":"08592","523328":"08592","523329":"08592","523330":"08592","523331":"08592","523332":"08592","523333":"08592","523334":"08592","523335":"08592","523336":"08592","523346":"08592","523356":"08592","523357":"08592","523367":"08592","523368":"08592","523369":"08592","523370":"08592","523371":"08592","523372":"08592","523373":"08592","524001":"0861","524002":"0861","524003":"0861","524004":"0861","524005":"0861","524101":"0861","524121":"0861","524123":"0861","524124":"0861","524126":"0861","524127":"0861","524129":"0861","524131":"0861","524132":"0861","524134":"0861","524137":"0861","524142":"0861","524152":"0861","524201":"0861","524203":"0861","524221":"0861","524222":"0861","524223":"0861","524224":"0861","524225":"0861","524226":"0861","524227":"0861","524228":"0861","524230":"0861","524234":"0861","524236":"0861","524239":"0861","524240":"0861","524300":"0861","524302":"0861","524303":"0861","524304":"0861","524305":"0861","524306":"0861","524307":"0861","524308":"0861","524309":"0861","524310":"0861","524311":"0861","524312":"0861","524313":"0861","524314":"0861","524315":"0861","524316":"0861","524317":"0861","524318":"0861","524319":"0861","524320":"0861","524321":"0861","524322":"0861","524323":"0861","524324":"0861","524341":"0861","524342":"0861","524343":"0861","524344":"0861","524345":"0861","524346":"0861","524347":"0861","524366":"0861","524401":"0861","524402":"0861","524403":"0861","524404":"0861","524405":"0861","524406":"0861","524407":"0861","524408":"0861","524409":"0861","524410":"0861","524411":"0861","524412":"0861","524413":"0861","524414":"0861","524415":"0861","524421":"0861","530001":"0891","530002":"0891","530003":"0891","530004":"0891","530005":"0891","530007":"0891","530008":"0891","530009":"0891","530011":"0891","530012":"0891","530013":"0891","530014":"0891","530015":"0891","530016":"0891","530017":"0891","530018":"0891","530020":"0891","530022":"0891","530024":"0891","530026":"0891","530027":"0891","530028":"0891","530029":"0891","530031":"0891","530032":"0891","530040":"0891","530041":"0891","530043":"0891","530044":"0891","530045":"0891","530046":"0891","530047":"0891","530048":"0891","530049":"0891","530051":"0891","530052":"0891","530053":"0891","531001":"0891","531002":"0891","531011":"0891","531019":"0891","531020":"0891","531021":"0891","531022":"0891","531023":"0891","531024":"0891","531025":"0891","531026":"0891","531027":"0891","531028":"0891","531029":"0891","531030":"0891","531031":"0891","531032":"0891","531033":"0891","531034":"0891","531035":"0891","531036":"0891","531040":"0891","531055":"0891","531060":"0891","531061":"0891","531075":"0891","531077":"0891","531081":"0891","531082":"0891","531083":"0891","531084":"0891","531085":"0891","531087":"0891","531105":"0891","531111":"0891","531113":"0891","531114":"0891","531115":"0891","531116":"0891","531117":"0891","531118":"0891","531126":"0891","531127":"0891","531133":"0891","531149":"0891","531151":"08922","531162":"08922","531163":"0891","531173":"08922","531219":"0891","532001":"08942","532005":"08942","532122":"08922","532123":"08942","532127":"08922","532148":"08942","532168":"08942","532185":"08942","532186":"08942","532187":"08942","532190":"08942","532195":"08942","532201":"08942","532203":"08942","532211":"08942","532212":"08942","532213":"08942","532214":"08942","532215":"08942","532216":"08942","532218":"08942","532219":"08942","532220":"08942","532221":"08942","532222":"08942","532242":"08942","532243":"08942","532263":"08942","532264":"08942","532284":"08942","532290":"08942","532291":"08942","532292":"08942","532312":"08942","532322":"08942","532401":"08942","532402":"08942","532403":"08942","532404":"08942","532405":"08942","532406":"08942","532407":"08922","532408":"08942","532409":"08942","532410":"08942","532421":"08942","532425":"08942","532426":"08942","532427":"08942","532428":"08942","532429":"08942","532430":"08942","532432":"08942","532440":"08942","532443":"08942","532445":"08942","532455":"08942","532456":"08942","532457":"08942","532458":"08942","532459":"08942","532460":"08942","532461":"08942","532462":"08942","532474":"08942","532484":"08942","533001":"0884","533002":"0884","533003":"0884","533004":"0884","533005":"0884","533006":"0884","533007":"0884","533016":"0884","533101":"0884","533102":"0884","533103":"0884","533104":"0884","533105":"0884","533106":"0884","533107":"0884","533124":"0884","533125":"0884","533126":"0884","533201":"0884","533210":"0884","533211":"0884","533212":"0884","533213":"0884","533214":"0884","533215":"0884","533216":"0884","533217":"0884","533218":"0884","533220":"0884","533221":"0884","533222":"0884","533223":"0884","533228":"0884","533229":"0884","533232":"0884","533233":"0884","533234":"0884","533235":"0884","533236":"0884","533237":"0884","533238":"0884","533239":"0884","533240":"0884","533241":"0884","533242":"0884","533244":"0884","533247":"0884","533248":"0884","533249":"0884","533250":"0884","533251":"0884","533252":"0884","533253":"0884","533254":"0884","533255":"0884","533256":"0884","533260":"0884","533261":"0884","533262":"0884","533263":"0884","533264":"0884","533274":"0884","533284":"0884","533285":"0884","533286":"0884","533287":"0884","533288":"0884","533289":"0884","533290":"0884","533291":"0884","533292":"0884","533293":"0884","533294":"0884","533295":"0884","533296":"0884","533297":"0884","533305":"0884","533306":"0884","533307":"0884","533308":"0884","533309":"0884","533339":"0884","533340":"0884","533341":"0884","533342":"0884","533343":"0884","533344":"0884","533345":"0884","533346":"0884","533347":"0884","533348":"0884","533349":"0884","533350":"0884","533351":"0884","533352":"0884","533353":"0884","533354":"0884","533355":"0884","533401":"0891","533406":"0884","533407":"0884","533408":"0884","533428":"0884","533429":"0884","533430":"0884","533431":"0884","533432":"0884","533433":"0884","533434":"0884","533435":"0884","533436":"0884","533437":"0884","533440":"0884","533444":"0884","533445":"0884","533446":"0884","533447":"0884","533448":"0884","533449":"0884","533450":"0884","533451":"0884","533461":"0884","533462":"0884","533463":"0884","533464":"0884","533468":"0884","533483":"0884","533577":"0884","534001":"08812","534002":"08812","534003":"08812","534004":"08812","534005":"08812","534006":"08812","534007":"08812","534101":"08812","534102":"08812","534111":"08812","534112":"08812","534122":"08812","534123":"08812","534124":"08812","534126":"08812","534134":"08812","534145":"08812","534146":"08812","534156":"08812","534165":"08812","534166":"08812","534176":"08812","534186":"08812","534195":"08812","534196":"08812","534197":"08812","534198":"08812","534199":"08812","534201":"08812","534202":"08812","534204":"08812","534206":"08812","534207":"08812","534208":"08812","534209":"08812","534210":"08812","534211":"08812","534215":"08812","534216":"08812","534217":"08812","534218":"08812","534222":"08812","534225":"08812","534227":"08812","534230":"08812","534235":"08812","534236":"08812","534237":"08812","534238":"08812","534239":"08812","534240":"08812","534243":"08812","534244":"08812","534245":"08812","534247":"08812","534250":"08812","534260":"08812","534265":"08812","534266":"08812","534267":"08812","534268":"08812","534269":"08812","534275":"08812","534280":"08812","534281":"08812","534301":"08812","534302":"08812","534305":"08812","534311":"08812","534312":"08812","534313":"08812","534315":"08812","534316":"08812","534318":"08812","534320":"08812","534324":"08812","534326":"08812","534327":"08812","534328":"08812","534329":"08812","534330":"08812","534331":"08812","534338":"08812","534340":"08812","534341":"08812","534342":"08812","534350":"08812","534401":"08812","534406":"08812","534411":"08812","534416":"08812","534425":"08812","534426":"08812","534427":"08812","534432":"08812","534435":"08812","534437":"08812","534442":"08812","534444":"08812","534447":"08812","534448":"08812","534449":"08812","534450":"08812","534451":"08812","534452":"08812","534455":"08812","534456":"08812","534460":"08812","534461":"08812","534462":"08812","534467":"08812","534475":"08812","535001":"08922","535002":"08922","535003":"08922","535004":"08922","535005":"08922","535006":"08922","535101":"08922","535102":"08922","535124":"08922","535125":"08922","535126":"08922","535128":"08922","535145":"08922","535148":"08922","535160":"08922","535161":"08922","535183":"08922","535204":"08922","535213":"08922","535214":"08922","535215":"08922","535216":"08922","535217":"08922","535218":"08922","535220":"08922","535221":"08922","535240":"08922","535250":"08922","535260":"08922","535270":"08922","535273":"08922","535280":"08922","535281":"08922","535463":"08922","535501":"08922","535502":"08922","535521":"08922","535522":"08922","535523":"08922","535524":"08922","535525":"08922","535526":"08922","535527":"08922","535534":"08922","535546":"08922","535547":"08922","535557":"08922","535558":"08922","535559":"08922","535568":"08922","535573":"08922","535578":"08922","535579":"08922","535580":"08922","535581":"08922","535582":"08922","535591":"08922","535592":"08922","535593":"08922","535594":"08922","560001":"080","560002":"080","560003":"080","560004":"080","560005":"080","560006":"080","560007":"080","560008":"080","560009":"080","560010":"080","560011":"080","560012":"080","560013":"080","560015":"080","560016":"080","560017":"080","560018":"080","560020":"080","560021":"080","560022":"080","560023":"080","560024":"080","560025":"080","560026":"080","560027":"080","560029":"080","560030":"080","560032":"080","560033":"080","560034":"080","560035":"080","560036":"080","560037":"080","560038":"080","560040":"080","560041":"080","560042":"080","560043":"080","560045":"080","560046":"080","560047":"080","560048":"080","560049":"080","560050":"080","560051":"080","560053":"080","560054":"080","560055":"080","560056":"080","560057":"080","560058":"080","560059":"080","560060":"080","560061":"080","560062":"080","560063":"080","560064":"080","560065":"080","560066":"080","560067":"080","560068":"080","560070":"080","560071":"080","560072":"080","560073":"080","560074":"080","560075":"080","560076":"080","560077":"080","560078":"080","560079":"080","560080":"080","560081":"080","560082":"080","560083":"080","560084":"080","560085":"080","560086":"080","560087":"080","560088":"080","560089":"080","560090":"080","560091":"080","560092":"080","560093":"080","560094":"080","560095":"080","560096":"080","560097":"080","560098":"080","560099":"080","560100":"080","560102":"080","560103":"080","560104":"080","560105":"080","560107":"080","560108":"080","560109":"080","560110":"080","560111":"080","560112":"080","560113":"080","560114":"080","560115":"080","560116":"080","560117":"080","560300":"080","560500":"080","561101":"080","561201":"080","561202":"0816","561203":"080","561204":"080","561205":"080","561206":"08156","561207":"08156","561208":"08156","561209":"08156","561210":"08156","561211":"08156","561212":"08156","561213":"08156","561228":"08156","562101":"08156","562102":"08156","562103":"08156","562104":"08156","562105":"08156","562106":"080","562107":"080","562108":"080","562109":"080","562110":"080","562111":"080","562112":"080","562114":"080","562117":"080","562119":"080","562120":"080","562121":"080","562122":"080","562123":"080","562125":"080","562126":"080","562127":"080","562128":"080","562129":"080","562130":"080","562131":"080","562132":"080","562135":"080","562138":"080","562149":"080","562157":"080","562159":"080","562160":"080","562161":"080","562162":"080","562163":"080","562164":"080","562165":"080","563101":"08152","563103":"08152","563113":"08152","563114":"08152","563115":"08152","563116":"08152","563117":"08152","563118":"08152","563119":"08152","563120":"08152","563121":"08152","563122":"08152","563123":"08156","563124":"08156","563125":"08152","563126":"08152","563127":"08152","563128":"08156","563129":"08152","563130":"08152","563131":"08152","563132":"08152","563133":"08152","563134":"08152","563135":"08152","563136":"08152","563137":"08152","563138":"08152","563139":"08152","563146":"08156","563147":"08152","563157":"08152","563159":"08156","563160":"08152","563161":"08152","563162":"08152","563163":"08152","570001":"0821","570002":"0821","570003":"0821","570004":"0821","570005":"0821","570006":"0821","570007":"0821","570008":"0821","570009":"0821","570010":"0821","570011":"0821","570012":"0821","570014":"0821","570015":"0821","570016":"0821","570017":"0821","570018":"0821","570019":"0821","570020":"0821","570022":"0821","570023":"0821","570025":"0821","570026":"0821","570027":"0821","570028":"0821","570029":"0821","570030":"0821","570031":"0821","570032":"0821","570033":"0821","570034":"0821","571101":"0821","571102":"0821","571103":"0821","571104":"0821","571105":"0821","571106":"0821","571107":"0821","571108":"0821","571109":"08226","571110":"0821","571111":"08226","571114":"0821","571115":"08226","571116":"0821","571117":"08226","571118":"0821","571119":"0821","571120":"0821","571121":"0821","571122":"0821","571123":"08226","571124":"0821","571125":"0821","571126":"08226","571127":"08226","571128":"08226","571129":"0821","571130":"0821","571134":"0821","571187":"0821","571189":"0821","571201":"08272","571211":"08272","571212":"08272","571213":"08272","571214":"08272","571215":"08272","571216":"08272","571217":"08272","571218":"08272","571219":"08272","571231":"08272","571232":"08272","571234":"08272","571235":"08272","571236":"08272","571237":"08272","571247":"08272","571248":"08272","571249":"08272","571250":"08272","571251":"08272","571252":"08272","571253":"08272","571254":"08272","571301":"0821","571302":"0821","571311":"0821","571312":"0821","571313":"08226","571314":"0821","571315":"0821","571316":"0821","571320":"08226","571342":"08226","571401":"08232","571402":"08232","571403":"08232","571404":"08232","571405":"08232","571415":"08232","571416":"08232","571417":"08232","571418":"08232","571419":"08232","571421":"08232","571422":"08232","571423":"08232","571424":"08232","571425":"08232","571426":"08232","571427":"08232","571428":"08232","571429":"08232","571430":"08232","571431":"08232","571432":"08232","571433":"08232","571434":"08232","571435":"08232","571436":"08232","571438":"08232","571439":"08226","571440":"08226","571441":"08226","571442":"0821","571443":"08226","571444":"08226","571445":"08232","571446":"08232","571448":"08232","571450":"08232","571455":"08232","571457":"08226","571463":"08232","571475":"08232","571476":"08232","571477":"08232","571478":"08232","571490":"08226","571601":"0821","571602":"0821","571603":"0821","571604":"0821","571605":"08232","571606":"08232","571607":"08232","571610":"0821","571617":"0821","571802":"08232","571807":"08232","571811":"08232","571812":"08232","572101":"0816","572102":"0816","572103":"0816","572104":"0816","572105":"0816","572106":"0816","572107":"0816","572111":"0816","572112":"0816","572113":"0816","572114":"0816","572115":"0816","572116":"0816","572117":"0816","572118":"0816","572119":"0816","572120":"0816","572121":"0816","572122":"0816","572123":"0816","572124":"0816","572125":"0816","572126":"0816","572127":"0816","572128":"0816","572129":"0816","572130":"0816","572132":"0816","572133":"0816","572134":"0816","572135":"0816","572136":"0816","572137":"0816","572138":"0816","572139":"0816","572140":"0816","572141":"0816","572142":"0816","572168":"0816","572175":"0816","572201":"0816","572211":"0816","572212":"0816","572213":"0816","572214":"0816","572215":"0816","572216":"0816","572217":"0816","572218":"0816","572219":"0816","572220":"0816","572221":"0816","572222":"0816","572223":"0816","572224":"0816","572225":"0816","572226":"0816","572227":"0816","572228":"0816","573101":"08172","573102":"08172","573103":"08172","573111":"08172","573112":"08172","573113":"08172","573115":"08172","573116":"08172","573117":"08172","573118":"08172","573119":"08172","573120":"08172","573121":"08172","573122":"08172","573123":"08172","573124":"08172","573125":"08172","573126":"08172","573127":"08172","573128":"08172","573129":"08172","573130":"08172","573131":"08172","573133":"08172","573134":"08172","573135":"08172","573136":"08172","573137":"08172","573141":"08172","573142":"08172","573144":"08172","573162":"08172","573164":"08172","573165":"08172","573201":"08172","573202":"08172","573210":"08172","573211":"08172","573212":"08172","573213":"08172","573214":"08172","573215":"08172","573216":"08172","573217":"08172","573218":"08172","573219":"08172","573220":"08172","573225":"08172","573226":"08172","574101":"0820","574102":"0820","574103":"0820","574104":"0820","574105":"0820","574106":"0820","574107":"0820","574108":"0820","574109":"0820","574110":"0820","574111":"0820","574112":"0820","574113":"0820","574114":"0820","574115":"0820","574116":"0820","574117":"0820","574118":"0820","574119":"0820","574122":"0820","574129":"0820","574141":"0824","574142":"0824","574143":"0824","574144":"0824","574145":"0824","574146":"0824","574148":"0824","574150":"0824","574151":"0824","574153":"0824","574154":"0824","574197":"0824","574198":"0824","574199":"0824","574201":"0824","574202":"0824","574203":"0824","574210":"0824","574211":"0824","574212":"0824","574213":"0824","574214":"0824","574216":"0824","574217":"0824","574218":"0824","574219":"0824","574220":"0824","574221":"0824","574222":"0824","574223":"0824","574224":"0824","574225":"0824","574226":"0824","574227":"0824","574228":"0824","574229":"0824","574230":"0824","574231":"0824","574232":"0824","574233":"0824","574234":"08272","574235":"0824","574236":"0824","574237":"0824","574238":"0824","574239":"0824","574240":"0824","574241":"0824","574242":"0824","574243":"0824","574244":"0820","574248":"0824","574253":"0824","574259":"0824","574260":"0824","574265":"0824","574267":"0824","574274":"0824","574279":"0824","574285":"0824","574313":"0824","574314":"08272","574323":"0824","574324":"0824","574325":"0824","574326":"0824","574327":"0824","574328":"0824","574509":"0824","575001":"0824","575002":"0824","575003":"0824","575004":"0824","575005":"0824","575006":"0824","575007":"0824","575008":"0824","575009":"0824","575010":"0824","575011":"0824","575013":"0824","575014":"0824","575015":"0824","575016":"0824","575017":"0824","575018":"0824","575019":"0824","575020":"0824","575022":"0824","575023":"0824","575025":"0824","575028":"0824","575029":"0824","575030":"0824","576101":"0820","576102":"0820","576103":"0820","576104":"0820","576105":"0820","576106":"0820","576107":"0820","576108":"0820","576111":"0820","576112":"0820","576113":"0820","576114":"0820","576115":"0820","576117":"0820","576120":"0820","576121":"0820","576122":"0820","576124":"0820","576201":"0820","576210":"0820","576211":"0820","576212":"0820","576213":"0820","576214":"0820","576215":"0820","576216":"0820","576217":"0820","576218":"0820","576219":"0820","576220":"0820","576221":"0820","576222":"0820","576223":"0820","576224":"0820","576225":"0820","576226":"0820","576227":"0820","576228":"0820","576229":"0820","576230":"0820","576231":"0820","576232":"0820","576233":"0820","576234":"0820","576235":"0820","576247":"0820","576257":"0820","576282":"0820","576283":"0820","577001":"08192","577002":"08192","577003":"08192","577004":"08192","577005":"08192","577006":"08192","577007":"08192","577101":"08262","577102":"08262","577111":"08262","577112":"08262","577113":"08262","577114":"08262","577115":"08182","577116":"08262","577117":"08262","577120":"08262","577121":"08262","577122":"08262","577123":"08262","577124":"08262","577125":"08262","577126":"08262","577127":"08262","577128":"08262","577129":"08262","577130":"08262","577131":"08262","577132":"08262","577133":"08262","577134":"08262","577135":"08262","577136":"08262","577137":"08262","577138":"08262","577139":"08262","577140":"08262","577144":"08262","577145":"08262","577146":"08262","577160":"08262","577168":"08262","577175":"08262","577179":"08262","577180":"08262","577181":"08262","577182":"08262","577201":"08182","577202":"08182","577203":"08182","577204":"08182","577205":"08182","577211":"08182","577213":"08192","577214":"08182","577215":"08192","577216":"08182","577217":"08192","577218":"08192","577219":"08192","577220":"08182","577221":"08192","577222":"08182","577223":"08192","577224":"08192","577225":"08182","577226":"08182","577227":"08182","577228":"08262","577229":"08182","577230":"08192","577231":"08192","577232":"08182","577233":"08182","577243":"08182","577245":"08182","577301":"08182","577302":"08182","577401":"08182","577411":"08182","577412":"08182","577413":"08182","577414":"08182","577415":"08182","577416":"08182","577417":"08182","577418":"08182","577419":"08182","577421":"08182","577422":"08182","577423":"08182","577424":"08182","577425":"08182","577426":"08182","577427":"08182","577428":"08182","577429":"08182","577430":"08182","577431":"08182","577432":"08182","577433":"08182","577434":"08182","577435":"08182","577436":"08182","577451":"08182","577452":"08182","577453":"08182","577501":"08194","577502":"08194","577511":"08194","577512":"08192","577513":"08192","577514":"08192","577515":"08194","577516":"08192","577517":"08194","577518":"08194","577519":"08194","577520":"08194","577521":"08192","577522":"08194","577523":"08194","577524":"08194","577525":"08192","577526":"08194","577527":"08194","577528":"08192","577529":"08194","577530":"08192","577531":"08194","577532":"08194","577533":"08194","577534":"08192","577535":"08194","577536":"08194","577537":"08194","577538":"08194","577539":"08194","577540":"08194","577541":"08194","577542":"08194","577543":"08194","577544":"08192","577545":"08194","577546":"08194","577547":"08262","577548":"08262","577549":"08262","577550":"08262","577551":"08192","577552":"08192","577553":"08192","577554":"08194","577555":"08194","577556":"08192","577557":"08194","577558":"08194","577566":"08192","577589":"08192","577596":"08194","577597":"08194","577598":"08194","577599":"08194","577601":"08192","580001":"0836","580002":"0836","580003":"0836","580004":"0836","580005":"0836","580006":"0836","580007":"0836","580008":"0836","580009":"0836","580011":"0836","580020":"0836","580021":"0836","580023":"0836","580024":"0836","580025":"0836","580026":"0836","580027":"0836","580028":"0836","580029":"0836","580030":"0836","580031":"0836","580032":"0836","580112":"0836","580114":"0836","580118":"0836","581101":"08375","581102":"08375","581103":"0836","581104":"08375","581105":"0836","581106":"08375","581107":"0836","581108":"08375","581109":"08375","581110":"08375","581111":"08375","581112":"08375","581113":"0836","581115":"08375","581116":"08375","581117":"0836","581118":"08375","581119":"08375","581120":"08375","581121":"08382","581123":"08375","581126":"08375","581128":"08375","581129":"08382","581145":"08375","581148":"08375","581186":"08382","581187":"08382","581193":"08375","581195":"0836","581196":"0836","581198":"08375","581199":"08375","581201":"0836","581202":"08375","581203":"08375","581204":"0836","581205":"08375","581206":"0836","581207":"0836","581208":"08375","581209":"0836","581210":"08375","581211":"08375","581212":"08375","581213":"08375","581237":"08375","581301":"08382","581302":"08382","581303":"08382","581304":"08382","581306":"08382","581307":"08382","581308":"08382","581314":"08382","581315":"08382","581316":"08382","581317":"08382","581318":"08382","581319":"08382","581320":"08382","581321":"08382","581322":"08382","581323":"08382","581324":"08382","581325":"08382","581326":"08382","581327":"08382","581328":"08382","581329":"08382","581330":"08382","581331":"08382","581332":"08382","581333":"08382","581334":"08382","581335":"08382","581336":"08382","581337":"08382","581338":"08382","581339":"08382","581340":"08382","581341":"08382","581342":"08382","581343":"08382","581344":"08382","581345":"08382","581346":"08382","581347":"08382","581348":"08382","581349":"08382","581350":"08382","581351":"08382","581352":"08382","581353":"08382","581354":"08382","581355":"08382","581356":"08382","581357":"08382","581358":"08382","581359":"08382","581360":"08382","581361":"08382","581362":"08382","581363":"08382","581365":"08382","581384":"08382","581396":"08382","581400":"08382","581401":"08382","581402":"08382","581403":"08382","581411":"08382","581412":"08382","581421":"08382","581423":"08382","581440":"08382","581450":"08382","581453":"08382","582101":"08372","582102":"08372","582103":"08372","582111":"08372","582112":"08372","582113":"08372","582114":"08372","582115":"08372","582116":"08372","582117":"08372","582118":"08372","582119":"08372","582120":"08372","582201":"0836","582202":"08372","582203":"08372","582204":"08372","582205":"08372","582206":"08372","582207":"08372","582208":"0836","582209":"08372","582210":"08372","582211":"08372","583101":"08392","583102":"08392","583103":"08392","583104":"08392","583105":"08392","583111":"08392","583112":"08392","583113":"08392","583114":"08392","583115":"08392","583116":"08392","583117":"08392","583118":"08392","583119":"08392","583120":"08392","583121":"08392","583122":"08392","583123":"08392","583124":"08392","583125":"08392","583126":"08392","583127":"08392","583128":"08392","583129":"08392","583130":"08392","583131":"08392","583132":"08392","583134":"08392","583135":"08392","583136":"08392","583137":"08392","583152":"08392","583153":"08392","583154":"08392","583155":"08392","583201":"08392","583203":"08392","583211":"08392","583212":"08392","583213":"08392","583214":"08392","583215":"08392","583216":"08392","583217":"08392","583218":"08392","583219":"08392","583220":"08392","583221":"08392","583222":"08392","583223":"08392","583224":"08392","583225":"08392","583226":"08539","583227":"08539","583228":"08539","583229":"08539","583230":"08539","583231":"08539","583232":"08539","583233":"08539","583234":"08539","583235":"08539","583236":"08539","583237":"08539","583238":"08539","583239":"08392","583268":"08539","583275":"08392","583276":"08392","583277":"08539","583278":"08539","583279":"08539","583280":"08539","583281":"08539","583282":"08539","583283":"08539","583284":"08539","583285":"08539","583287":"08539","584101":"08532","584102":"08532","584103":"08532","584104":"08532","584111":"08532","584113":"08532","584115":"08532","584116":"08532","584118":"08532","584120":"08532","584122":"08532","584123":"08532","584124":"08532","584125":"08532","584126":"08532","584127":"08532","584128":"08532","584129":"08532","584132":"08532","584133":"08532","584134":"08532","584135":"08532","584136":"08532","584138":"08532","584139":"08532","584140":"08532","584143":"08532","584167":"08532","584170":"08532","584202":"08532","584203":"08532","585101":"08472","585102":"08472","585103":"08472","585104":"08472","585105":"08472","585106":"08472","585107":"08472","585201":"08473","585202":"08473","585210":"08472","585211":"08472","585212":"08472","585213":"08472","585214":"08473","585215":"08473","585216":"08473","585217":"08472","585218":"08472","585219":"08473","585220":"08473","585221":"08473","585222":"08472","585223":"08473","585224":"08473","585225":"08472","585226":"08482","585227":"08482","585228":"08472","585229":"08472","585236":"08472","585237":"08473","585265":"08472","585287":"08473","585290":"08473","585291":"08473","585292":"08472","585301":"08472","585302":"08472","585303":"08472","585304":"08473","585305":"08472","585306":"08472","585307":"08472","585308":"08472","585309":"08473","585310":"08472","585311":"08472","585312":"08472","585313":"08472","585314":"08472","585315":"08473","585316":"08472","585317":"08472","585318":"08472","585319":"08473","585320":"08472","585321":"08473","585322":"08472","585323":"08473","585324":"08472","585325":"08472","585326":"08482","585327":"08482","585328":"08482","585329":"08482","585330":"08482","585331":"08482","585353":"08482","585355":"08473","585367":"08472","585401":"08482","585402":"08482","585403":"08482","585404":"08482","585411":"08482","585412":"08482","585413":"08482","585414":"08482","585415":"08482","585416":"08482","585417":"08482","585418":"08482","585419":"08482","585421":"08482","585436":"08482","585437":"08482","585443":"08482","585444":"08482","585445":"08482","585447":"08482","586101":"08352","586103":"08352","586104":"08352","586108":"08352","586109":"08352","586111":"08352","586112":"08352","586113":"08352","586114":"08352","586115":"08352","586116":"08352","586117":"08352","586118":"08352","586119":"08352","586120":"08352","586121":"08352","586122":"08352","586123":"08352","586124":"08352","586125":"08352","586127":"08352","586128":"08352","586129":"08352","586130":"08352","586201":"08352","586202":"08352","586203":"08352","586204":"08352","586205":"08352","586206":"08352","586207":"08352","586208":"08352","586209":"08352","586210":"08352","586211":"08352","586212":"08352","586213":"08352","586214":"08352","586215":"08352","586216":"08352","586217":"08352","587101":"08354","587102":"08354","587103":"08354","587104":"08354","587111":"08354","587112":"08354","587113":"08354","587114":"08354","587115":"08354","587116":"08354","587117":"08354","587118":"08354","587119":"08354","587120":"08354","587121":"08354","587122":"08354","587124":"08354","587125":"08354","587154":"08354","587155":"08354","587156":"08354","587201":"08354","587202":"08354","587203":"08354","587204":"08354","587205":"08354","587206":"08354","587207":"08354","587301":"08354","587311":"08354","587312":"08354","587313":"08354","587314":"08354","587315":"08354","587316":"08354","587330":"08354","587331":"08354","590001":"0831","590003":"0831","590005":"0831","590006":"0831","590008":"0831","590009":"0831","590010":"0831","590011":"0831","590014":"0831","590015":"0831","590016":"0831","590017":"0831","590018":"0831","590019":"0831","590020":"0831","591101":"0831","591102":"0831","591103":"0831","591104":"0831","591106":"0831","591107":"0831","591108":"0831","591109":"0831","591110":"0831","591111":"0831","591112":"0831","591113":"0831","591114":"0831","591115":"0831","591117":"0831","591118":"0831","591119":"0831","591120":"0831","591121":"0831","591122":"0831","591123":"0831","591124":"0831","591125":"0831","591126":"0831","591127":"0831","591128":"0831","591129":"0831","591130":"0831","591131":"0831","591136":"0831","591143":"0831","591147":"0831","591153":"0831","591156":"0831","591173":"0831","591201":"0831","591211":"0831","591212":"0831","591213":"0831","591214":"0831","591215":"0831","591216":"0831","591217":"0831","591218":"0831","591219":"0831","591220":"0831","591221":"0831","591222":"0831","591223":"0831","591224":"0831","591225":"0831","591226":"0831","591227":"0831","591228":"0831","591229":"0831","591230":"0831","591231":"0831","591232":"0831","591233":"0831","591234":"0831","591235":"0831","591236":"0831","591237":"0831","591238":"0831","591239":"0831","591240":"0831","591241":"0831","591242":"0831","591243":"0831","591244":"0831","591246":"0831","591247":"0831","591248":"0831","591254":"0831","591263":"0831","591265":"0831","591287":"0831","591301":"0831","591302":"0831","591303":"0831","591304":"0831","591305":"0831","591306":"0831","591307":"0831","591308":"0831","591309":"0831","591310":"0831","591311":"0831","591312":"0831","591313":"0831","591314":"0831","591315":"0831","591316":"0831","591317":"0831","591340":"0831","591344":"0831","591345":"0831","591346":"0831","600001":"044","600002":"044","600003":"044","600004":"044","600005":"044","600006":"044","600007":"044","600008":"044","600009":"044","600010":"044","600011":"044","600012":"044","600013":"044","600014":"044","600015":"044","600016":"044","600017":"044","600018":"044","600019":"044","600020":"044","600021":"044","600022":"044","600023":"044","600024":"044","600025":"044","600026":"044","600028":"044","600030":"044","600031":"044","600032":"044","600033":"044","600034":"044","600035":"044","600036":"044","600037":"044","600038":"044","600039":"044","600040":"044","600041":"044","600042":"044","600043":"04114","600044":"04114","600045":"04114","600046":"04114","600047":"04114","600048":"04114","600049":"044","600050":"044","600051":"044","600052":"044","600053":"044","600054":"044","600055":"044","600056":"044","600057":"044","600058":"044","600059":"04114","600060":"044","600061":"044","600062":"044","600063":"04114","600064":"04114","600066":"044","600067":"044","600068":"044","600069":"04112","600070":"04114","600071":"044","600072":"044","600073":"04114","600074":"04114","600075":"04114","600076":"044","600077":"044","600078":"044","600081":"044","600082":"044","600083":"044","600084":"044","600085":"044","600086":"044","600087":"044","600088":"044","600089":"04112","600090":"044","600091":"044","600092":"044","600093":"044","600094":"044","600095":"044","600096":"044","600097":"044","600099":"044","600100":"04114","600101":"044","600102":"044","600103":"044","600104":"044","600106":"044","600107":"044","600110":"044","600113":"044","600115":"044","600116":"044","600117":"04114","600118":"044","600119":"044","600120":"044","600122":"04112","600123":"044","600124":"044","600125":"044","600126":"04114","600127":"04114","600128":"04112","600129":"04114","600130":"04114","600131":"04114","600132":"04112","601101":"044","601102":"044","601103":"044","601201":"044","601202":"044","601203":"044","601204":"044","601205":"044","601206":"044","601301":"04112","602001":"044","602002":"044","602003":"044","602021":"044","602023":"044","602024":"044","602025":"044","602026":"044","602105":"044","602106":"04112","602108":"044","602117":"04112","603001":"04114","603002":"04114","603003":"04114","603004":"04114","603101":"04114","603102":"04114","603103":"04114","603104":"04114","603105":"04114","603106":"04112","603107":"04112","603108":"04114","603109":"04114","603110":"04114","603111":"04114","603112":"04114","603127":"04114","603201":"04114","603202":"04112","603203":"04112","603204":"04112","603209":"04114","603210":"04114","603211":"04114","603301":"04114","603302":"04114","603303":"04114","603304":"04114","603305":"04114","603306":"04114","603307":"04114","603308":"04114","603309":"04114","603310":"04114","603311":"04114","603312":"04114","603313":"04114","603314":"04112","603319":"04114","603401":"04114","603402":"04112","603403":"04112","603405":"04114","603406":"04112","604001":"04146","604101":"04146","604102":"04146","604151":"04146","604152":"04146","604153":"04146","604154":"04146","604201":"04146","604202":"04146","604203":"04146","604204":"04146","604205":"04146","604206":"04146","604207":"04146","604208":"04146","604210":"04146","604301":"04146","604302":"04146","604303":"04146","604304":"04146","604305":"04146","604306":"04146","604307":"04146","604401":"04175","604402":"04175","604403":"04175","604404":"04175","604405":"04175","604406":"04175","604407":"04175","604408":"04175","604409":"04175","604410":"04175","604501":"04175","604502":"04175","604503":"04175","604504":"04175","604505":"04175","604601":"04175","605001":"0413","605002":"0413","605003":"0413","605004":"0413","605005":"0413","605006":"0413","605007":"0413","605008":"0413","605009":"0413","605010":"0413","605011":"0413","605013":"0413","605014":"04146","605101":"04146","605102":"04146","605103":"04146","605104":"04146","605105":"04146","605106":"04146","605107":"04146","605108":"04146","605109":"04146","605110":"0413","605111":"04146","605201":"04146","605202":"04146","605203":"04146","605301":"04146","605302":"04146","605401":"04146","605402":"04146","605403":"04146","605501":"04146","605502":"04146","605601":"04146","605602":"04146","605651":"04146","605652":"04146","605701":"04146","605702":"04151","605751":"04151","605752":"04146","605754":"04151","605755":"04146","605756":"04146","605757":"04151","605758":"04146","605759":"04151","605766":"04151","605801":"04151","605802":"04151","605803":"04146","606001":"04142","606003":"04142","606102":"04151","606103":"04142","606104":"04142","606105":"04142","606106":"04142","606107":"04151","606108":"04142","606109":"04142","606110":"04142","606111":"04142","606115":"04151","606201":"04151","606202":"04151","606203":"04151","606204":"04151","606205":"04151","606206":"04151","606207":"04151","606208":"04151","606209":"04151","606213":"04151","606301":"04151","606302":"04142","606303":"04142","606304":"04142","606305":"04151","606401":"04151","606402":"04151","606601":"04175","606603":"04175","606604":"04175","606611":"04175","606701":"04175","606702":"04175","606703":"04175","606704":"04175","606705":"04175","606706":"04175","606707":"04175","606708":"04175","606709":"04175","606710":"04175","606751":"04175","606752":"04175","606753":"04175","606754":"04146","606755":"04175","606801":"04175","606802":"04175","606803":"04175","606804":"04175","606805":"04175","606806":"04175","606807":"04175","606808":"04175","606811":"04175","606901":"04175","606902":"04175","606903":"04175","606904":"04175","606905":"04175","606906":"04175","606907":"04175","606908":"04175","607001":"04142","607002":"04142","607003":"04142","607004":"04142","607005":"04142","607006":"04142","607101":"04146","607102":"04142","607103":"04142","607104":"04142","607105":"04142","607106":"04142","607107":"04146","607108":"04142","607109":"04142","607112":"04142","607201":"04151","607202":"04151","607203":"04146","607204":"04151","607205":"04142","607209":"04146","607301":"04142","607302":"04142","607303":"04142","607308":"04142","607401":"04142","607402":"0413","607403":"0413","607801":"04142","607802":"04142","607803":"04142","607804":"04142","607805":"04142","607807":"04142","608001":"04142","608002":"04365","608102":"04142","608201":"04142","608301":"04142","608302":"04142","608303":"04142","608304":"04142","608305":"04142","608306":"04142","608401":"04142","608501":"04142","608502":"04142","608601":"04142","608602":"04142","608701":"04142","608702":"04142","608703":"04142","608704":"04142","608801":"04142","608901":"04329","609001":"04364","609003":"04364","609101":"04364","609102":"04364","609103":"04364","609104":"04364","609105":"04364","609106":"04364","609107":"04364","609108":"04364","609109":"04364","609110":"04364","609111":"04364","609112":"04364","609113":"04364","609114":"04364","609115":"04364","609116":"04364","609117":"04364","609118":"04364","609201":"04364","609202":"04364","609203":"04364","609204":"04362","609205":"04364","609301":"04364","609302":"04364","609303":"04364","609304":"04364","609305":"04364","609306":"04364","609307":"04364","609308":"04364","609309":"04364","609310":"04364","609311":"04364","609312":"04364","609313":"04364","609314":"04364","609401":"04364","609402":"04364","609403":"04366","609404":"04364","609405":"04366","609501":"04366","609502":"04366","609503":"04366","609504":"04366","609601":"04368","609602":"04368","609603":"04366","609604":"04365","609605":"04368","609606":"04368","609607":"04368","609608":"04366","609609":"04368","609701":"04365","609702":"04365","609703":"04365","609704":"04365","609801":"04364","609802":"04362","609803":"04364","609804":"04362","609805":"04364","609806":"04364","609807":"04362","609808":"04364","609810":"04364","609811":"04364","610001":"04366","610003":"04366","610004":"04366","610005":"04366","610101":"04366","610102":"04366","610103":"04366","610104":"04366","610105":"04366","610106":"04366","610107":"04366","610109":"04366","610201":"04366","610202":"04366","610203":"04366","610204":"04365","610205":"04366","610206":"04366","610207":"04365","611001":"04365","611002":"04365","611003":"04365","611101":"04366","611102":"04365","611103":"04365","611104":"04365","611105":"04365","611106":"04365","611108":"04365","611109":"04365","611110":"04365","611111":"04365","611112":"04365","612001":"04362","612002":"04362","612101":"04362","612102":"04362","612103":"04362","612104":"04362","612105":"04362","612106":"04362","612201":"04366","612202":"04362","612203":"04366","612204":"04362","612301":"04362","612302":"04362","612303":"04362","612401":"04362","612402":"04362","612501":"04362","612502":"04362","612503":"04362","612504":"04362","612601":"04366","612602":"04362","612603":"04366","612604":"04366","612605":"04366","612610":"04366","612701":"04366","612702":"04362","612703":"04362","612801":"04366","612802":"04366","612803":"04366","612804":"04366","612901":"04329","612902":"04329","612903":"04329","612904":"04329","612905":"04329","613001":"04362","613002":"04362","613003":"04362","613004":"04362","613005":"04362","613006":"04362","613007":"04362","613008":"04362","613009":"04362","613010":"04362","613101":"04362","613102":"04362","613103":"04362","613104":"04362","613105":"04362","613201":"04362","613202":"04362","613203":"04362","613204":"04362","613205":"04362","613301":"04322","613303":"04362","613401":"04362","613402":"04362","613403":"04362","613501":"04362","613502":"04362","613503":"04362","613504":"04362","613601":"04362","613602":"04362","613701":"04366","613702":"04366","613703":"04366","613704":"04366","613705":"04366","614001":"04366","614013":"04366","614014":"04366","614015":"04366","614016":"04366","614017":"04366","614018":"04366","614019":"04366","614020":"04366","614101":"04366","614102":"04366","614103":"04366","614201":"04362","614202":"04362","614203":"04362","614204":"04362","614205":"04362","614206":"04362","614207":"04362","614208":"04366","614210":"04362","614211":"04362","614301":"04362","614302":"04366","614303":"04362","614401":"04362","614402":"04362","614403":"04366","614404":"04366","614601":"04362","614602":"04362","614612":"04362","614613":"04362","614614":"04362","614615":"04362","614616":"04322","614617":"04322","614618":"04322","614619":"04322","614620":"04322","614621":"04322","614622":"04322","614623":"04362","614624":"04322","614625":"04362","614626":"04362","614628":"04362","614629":"04322","614630":"04322","614701":"04362","614702":"04366","614703":"04366","614704":"04366","614705":"04366","614706":"04366","614707":"04365","614708":"04366","614710":"04366","614711":"04366","614712":"04365","614713":"04366","614714":"04365","614715":"04366","614716":"04366","614717":"04366","614723":"04362","614738":"04366","614801":"04322","614802":"04362","614803":"04362","614804":"04362","614805":"04322","614806":"04365","614807":"04365","614808":"04365","614809":"04365","614810":"04365","614901":"04362","614902":"04362","614903":"04366","614904":"04362","614905":"04362","614906":"04362","620001":"0431","620002":"0431","620003":"0431","620004":"0431","620005":"0431","620006":"0431","620007":"0431","620008":"0431","620009":"0431","620010":"0431","620011":"0431","620012":"0431","620013":"0431","620014":"0431","620015":"0431","620016":"0431","620017":"0431","620018":"0431","620019":"0431","620020":"0431","620021":"0431","620022":"0431","620023":"0431","620024":"0431","620025":"0431","620026":"0431","620027":"0431","620101":"0431","620102":"0431","621001":"0431","621002":"0431","621003":"0431","621004":"0431","621005":"0431","621006":"0431","621007":"0431","621008":"0431","621009":"0431","621010":"0431","621011":"0431","621012":"0431","621014":"0431","621101":"04328","621102":"04328","621103":"04328","621104":"0431","621105":"0431","621106":"0431","621107":"04328","621108":"04328","621109":"0431","621110":"0427","621111":"0431","621112":"0431","621113":"04328","621114":"04328","621115":"04328","621116":"04328","621117":"04328","621118":"04328","621133":"04328","621202":"0431","621203":"0431","621204":"0431","621205":"0431","621206":"0431","621207":"0431","621208":"0431","621209":"0431","621210":"0431","621211":"0431","621212":"04328","621213":"0431","621214":"0431","621215":"0431","621216":"0431","621217":"0431","621218":"0431","621219":"04328","621220":"0431","621301":"04324","621302":"0431","621305":"0431","621306":"0431","621307":"0431","621308":"0431","621310":"0431","621311":"0431","621312":"0431","621313":"04324","621314":"0431","621315":"0431","621316":"04322","621601":"0431","621651":"0431","621652":"0431","621653":"0431","621701":"04329","621702":"0431","621703":"0431","621704":"04329","621705":"04329","621706":"0431","621707":"04329","621708":"04328","621709":"04329","621710":"04329","621711":"0431","621712":"0431","621713":"04328","621714":"04329","621715":"04329","621716":"04328","621717":"04328","621718":"04329","621719":"04329","621722":"0431","621729":"04329","621730":"04329","621731":"04329","621801":"04329","621802":"04329","621803":"04329","621804":"04329","621805":"04329","621806":"04329","621851":"04329","622001":"04322","622002":"04322","622003":"04322","622004":"04322","622005":"04322","622101":"04322","622102":"0431","622103":"04322","622104":"04322","622201":"04322","622202":"04322","622203":"04322","622204":"04322","622209":"04322","622301":"04322","622302":"04322","622303":"04322","622304":"04322","622401":"04322","622402":"04322","622403":"04575","622404":"04322","622407":"04322","622409":"04322","622411":"04322","622412":"04322","622422":"04322","622501":"04322","622502":"04322","622503":"04322","622504":"04322","622505":"04322","622506":"04322","622507":"04322","622515":"04322","623115":"04567","623120":"04567","623135":"04567","623308":"04567","623315":"04567","623401":"04567","623402":"04567","623403":"04567","623404":"04567","623406":"04567","623407":"04567","623409":"04567","623501":"04567","623502":"04567","623503":"04567","623504":"04567","623512":"04567","623513":"04567","623514":"04567","623515":"04567","623516":"04567","623517":"04567","623518":"04567","623519":"04567","623520":"04567","623521":"04567","623522":"04567","623523":"04567","623524":"04567","623525":"04567","623526":"04567","623527":"04567","623528":"04567","623529":"04567","623530":"04567","623531":"04567","623532":"04567","623533":"04567","623534":"04567","623536":"04567","623537":"04567","623538":"04567","623566":"04567","623601":"04567","623603":"04567","623604":"04567","623605":"04567","623608":"04567","623701":"04567","623703":"04567","623704":"04567","623705":"04567","623706":"04567","623707":"04567","623708":"04567","623711":"04567","623712":"04567","623806":"04567","624001":"0451","624002":"0451","624003":"0451","624004":"0451","624005":"0451","624101":"0451","624103":"0451","624201":"0451","624202":"0451","624204":"0451","624206":"0451","624208":"0451","624210":"0451","624211":"0451","624212":"0451","624215":"0451","624216":"0451","624219":"0451","624220":"0451","624301":"0451","624302":"0451","624303":"0451","624304":"0451","624306":"0451","624307":"0451","624308":"0451","624401":"0451","624402":"0451","624403":"0451","624601":"0451","624610":"0451","624612":"0451","624613":"0451","624614":"0451","624615":"0451","624616":"0451","624617":"0451","624618":"0451","624619":"0451","624620":"0451","624621":"0451","624622":"0451","624701":"0451","624702":"0451","624703":"0451","624704":"0451","624705":"0451","624706":"0451","624707":"0451","624708":"0451","624709":"0451","624710":"0451","624711":"0451","624712":"0451","624801":"0451","624802":"0451","625001":"0452","625002":"0452","625003":"0452","625004":"0452","625005":"0452","625006":"0452","625007":"0452","625008":"0452","625009":"0452","625011":"0452","625012":"0452","625014":"0452","625015":"0452","625016":"0452","625017":"0452","625018":"0452","625019":"0452","625020":"0452","625021":"0452","625022":"0452","625023":"0452","625101":"0452","625102":"04575","625103":"0452","625104":"0452","625105":"0452","625106":"0452","625107":"0452","625108":"0452","625109":"0452","625110":"0452","625122":"0452","625201":"0452","625203":"04546","625205":"0452","625207":"0452","625214":"0452","625218":"0452","625221":"0452","625234":"0452","625301":"0452","625402":"0452","625501":"0452","625503":"0452","625512":"04546","625513":"04546","625514":"0452","625515":"04546","625516":"04546","625517":"04546","625518":"04546","625519":"04546","625520":"04546","625521":"04546","625522":"04546","625523":"04546","625524":"04546","625525":"04546","625526":"04546","625527":"0452","625528":"04546","625529":"0452","625530":"04546","625531":"04546","625532":"0452","625533":"04546","625534":"04546","625535":"0452","625536":"04546","625537":"0452","625540":"04546","625556":"04546","625562":"04546","625579":"04546","625582":"04546","625601":"04546","625602":"04546","625603":"04546","625604":"04546","625605":"04546","625701":"0452","625702":"0452","625703":"0452","625704":"0452","625705":"0452","625706":"0452","625707":"0452","625708":"0452","626001":"04562","626002":"04562","626003":"04562","626004":"04562","626005":"04562","626101":"04562","626102":"04562","626103":"04562","626104":"04562","626105":"04562","626106":"04562","626107":"04562","626108":"04562","626109":"04562","626110":"04562","626111":"04562","626112":"04562","626113":"04562","626114":"04562","626115":"04562","626116":"04562","626117":"04562","626118":"04562","626119":"04562","626121":"04562","626122":"04562","626123":"04562","626124":"04562","626125":"04562","626126":"04562","626127":"04562","626128":"04562","626129":"04562","626130":"04562","626131":"04562","626132":"04562","626133":"04562","626134":"04562","626135":"04562","626136":"04562","626137":"04562","626138":"04562","626139":"04562","626140":"04562","626141":"04562","626142":"04562","626149":"04562","626161":"04562","626188":"04562","626189":"04562","626201":"04562","626202":"04562","626203":"04562","626204":"04562","626205":"04562","626607":"04562","626612":"04562","627001":"0462","627002":"0462","627003":"0462","627004":"0462","627005":"0462","627006":"0462","627007":"0462","627008":"0462","627009":"0462","627010":"0462","627011":"0462","627012":"0462","627101":"0462","627102":"0462","627103":"0462","627104":"0462","627105":"0462","627106":"0462","627107":"0462","627108":"0462","627109":"0462","627110":"0462","627111":"0462","627112":"0462","627113":"0462","627114":"0462","627115":"0462","627116":"0462","627117":"0462","627118":"0462","627119":"0462","627120":"0462","627127":"0462","627133":"0462","627151":"0462","627152":"0462","627201":"0462","627202":"0462","627351":"0462","627352":"0461","627353":"0462","627354":"0462","627355":"0462","627356":"0462","627357":"0462","627358":"0462","627359":"0462","627401":"0462","627412":"04633","627413":"0462","627414":"0462","627415":"04633","627416":"0462","627417":"0462","627418":"0462","627420":"0462","627421":"0462","627422":"0462","627423":"04633","627424":"04633","627425":"0462","627426":"0462","627427":"0462","627428":"0462","627451":"0462","627452":"0462","627453":"0462","627501":"0462","627502":"0462","627601":"0462","627602":"0462","627603":"0462","627604":"0462","627651":"0462","627652":"0462","627654":"0462","627657":"0462","627713":"04562","627719":"04633","627751":"04633","627753":"04633","627754":"04633","627755":"04633","627756":"04633","627757":"04633","627758":"04633","627759":"04633","627760":"04633","627761":"04633","627764":"04633","627802":"04633","627803":"04633","627804":"04633","627805":"04633","627806":"04633","627807":"04633","627808":"04633","627809":"04633","627811":"04633","627812":"04633","627813":"04633","627814":"04633","627818":"04633","627851":"0462","627852":"04633","627853":"04633","627854":"04633","627855":"04633","627856":"04633","627857":"04633","627858":"04633","627859":"04633","627860":"04633","627861":"04633","627862":"04633","627951":"0462","627953":"0462","628001":"0461","628002":"0461","628003":"0461","628004":"0461","628005":"0461","628006":"0461","628007":"0461","628008":"0461","628101":"0461","628102":"0461","628103":"0461","628104":"0461","628105":"0461","628151":"0461","628152":"0461","628201":"0461","628202":"0461","628203":"0461","628204":"0461","628205":"0461","628206":"0461","628207":"0461","628208":"0461","628209":"0461","628210":"0461","628211":"0461","628212":"0461","628213":"0461","628215":"0461","628216":"0461","628217":"0461","628218":"0461","628219":"0461","628229":"0461","628251":"0461","628252":"0461","628301":"0461","628302":"0461","628303":"0461","628304":"0461","628401":"0461","628402":"0461","628501":"0461","628502":"0461","628503":"0461","628552":"0461","628601":"0461","628612":"0461","628613":"0461","628614":"0461","628615":"0461","628616":"0461","628617":"0461","628618":"0461","628619":"0461","628620":"0461","628621":"0461","628622":"0461","628623":"0461","628653":"0461","628656":"0461","628701":"0461","628702":"0461","628703":"0461","628704":"0461","628712":"0461","628714":"0461","628716":"0461","628718":"0461","628720":"0461","628721":"0461","628722":"0461","628751":"0461","628752":"0461","628753":"0461","628801":"0461","628802":"0461","628809":"0461","628851":"0461","628901":"0461","628902":"0461","628903":"0461","628904":"0461","628905":"0461","628906":"0461","628907":"0461","628908":"0461","628952":"0461","629001":"04652","629002":"04652","629003":"04652","629004":"04652","629101":"04652","629102":"04652","629151":"04652","629152":"04652","629153":"04652","629154":"04652","629155":"04652","629156":"04652","629157":"04652","629158":"04652","629159":"04652","629160":"04652","629161":"04652","629162":"04652","629163":"04652","629164":"04652","629165":"04652","629166":"04652","629167":"04652","629168":"04652","629169":"04652","629170":"04652","629171":"04652","629172":"04652","629173":"04652","629174":"04652","629175":"04652","629176":"04652","629177":"04652","629178":"04652","629179":"04652","629180":"04652","629193":"04652","629201":"04652","629202":"04652","629203":"04652","629204":"04652","629251":"04652","629252":"04652","629301":"04652","629302":"04652","629401":"04652","629402":"04652","629403":"04652","629501":"04652","629502":"04652","629601":"04652","629602":"04652","629701":"04652","629702":"04652","629703":"04652","629704":"04652","629801":"04652","629802":"04652","629803":"04652","629804":"04652","629809":"04652","629810":"04652","629851":"04652","629852":"04652","629901":"04652","630001":"04575","630002":"04575","630003":"04575","630005":"04575","630101":"04575","630102":"04575","630103":"04575","630104":"04575","630105":"04575","630106":"04575","630107":"04575","630108":"04575","630201":"04575","630202":"04575","630203":"04575","630204":"04575","630205":"04575","630206":"04575","630207":"04575","630208":"04575","630210":"04575","630211":"04575","630212":"04575","630301":"04575","630302":"04575","630303":"04575","630305":"04575","630306":"04575","630307":"04575","630309":"04575","630311":"04575","630312":"04575","630313":"04575","630314":"04575","630321":"04575","630405":"04575","630408":"04575","630410":"04575","630411":"04575","630501":"04575","630502":"04575","630551":"04575","630552":"04575","630553":"04575","630554":"04575","630555":"04575","630556":"04575","630557":"04575","630558":"04575","630559":"04575","630561":"04575","630562":"04575","630566":"04575","630602":"04575","630606":"04575","630609":"04575","630610":"04562","630611":"04562","630612":"04575","630702":"04575","630709":"04575","630710":"04575","630713":"04575","631001":"04172","631002":"04172","631003":"04172","631004":"04172","631005":"04172","631006":"04172","631051":"04172","631052":"04172","631101":"04172","631102":"04172","631151":"04172","631152":"04172","631201":"044","631202":"044","631203":"044","631204":"044","631205":"044","631206":"044","631207":"044","631208":"044","631209":"044","631210":"044","631211":"044","631212":"044","631213":"044","631301":"044","631302":"044","631303":"044","631304":"044","631402":"044","631501":"04112","631502":"04112","631551":"04112","631552":"04112","631553":"04112","631561":"04112","631601":"04112","631603":"04112","631604":"04112","631605":"04112","631606":"04112","631701":"04175","631702":"04175","632001":"0416","632002":"0416","632004":"0416","632006":"0416","632007":"0416","632008":"0416","632009":"0416","632010":"0416","632011":"0416","632012":"0416","632013":"0416","632014":"0416","632055":"0416","632057":"0416","632058":"0416","632059":"0416","632101":"0416","632102":"0416","632103":"0416","632104":"0416","632105":"0416","632106":"0416","632107":"0416","632113":"0416","632114":"0416","632115":"0416","632201":"0416","632202":"0416","632203":"0416","632204":"0416","632209":"0416","632301":"04175","632311":"04175","632312":"0416","632313":"04175","632314":"04175","632315":"04175","632316":"04175","632317":"04175","632318":"04172","632319":"0416","632326":"04175","632401":"04172","632403":"04172","632404":"04172","632405":"04172","632406":"04172","632501":"04172","632502":"04172","632503":"04172","632504":"04172","632505":"04172","632506":"0416","632507":"04175","632508":"04172","632509":"04172","632510":"04172","632511":"04175","632512":"04175","632513":"04172","632514":"0416","632515":"0416","632516":"0416","632517":"04172","632518":"04175","632519":"0416","632520":"0416","632521":"04172","632531":"04172","632601":"0416","632602":"0416","632603":"0416","632604":"0416","635001":"04343","635002":"04343","635101":"04343","635102":"04343","635103":"04343","635104":"04343","635105":"04343","635106":"04343","635107":"04343","635108":"04343","635109":"04343","635110":"04343","635111":"04342","635112":"04343","635113":"04343","635114":"04343","635115":"04343","635116":"04343","635117":"04343","635118":"04343","635119":"04343","635120":"04343","635121":"04343","635122":"04343","635123":"04343","635124":"04343","635126":"04343","635130":"04343","635201":"04343","635202":"04342","635203":"04343","635204":"04343","635205":"04342","635206":"04343","635207":"04343","635301":"04342","635302":"04342","635303":"04342","635304":"04343","635305":"04342","635306":"04343","635307":"04343","635601":"04577","635602":"04577","635651":"04577","635652":"04577","635653":"04577","635654":"04577","635655":"04577","635701":"04577","635702":"04577","635703":"04175","635710":"04577","635751":"04577","635752":"04577","635754":"04577","635801":"04577","635802":"04577","635803":"0416","635804":"0416","635805":"0416","635806":"0416","635807":"04577","635808":"0416","635809":"0416","635810":"0416","635811":"04577","635812":"04577","635813":"0416","635814":"04577","635815":"04577","635851":"04577","635852":"04577","635853":"04577","635854":"04577","635901":"04577","636001":"0427","636002":"0427","636003":"0427","636004":"0427","636005":"0427","636006":"0427","636007":"0427","636008":"0427","636009":"0427","636010":"0427","636011":"0427","636012":"0427","636013":"0427","636014":"0427","636015":"0427","636016":"0427","636017":"0427","636030":"0427","636101":"0427","636102":"0427","636103":"0427","636104":"0427","636105":"0427","636106":"0427","636107":"0427","636108":"0427","636109":"0427","636110":"0427","636111":"0427","636112":"0427","636113":"0427","636114":"0427","636115":"0427","636116":"0427","636117":"0427","636118":"0427","636119":"0427","636121":"0427","636122":"0427","636138":"0427","636139":"0427","636140":"0427","636141":"0427","636142":"04286","636201":"0427","636202":"04286","636203":"0427","636204":"0427","636301":"04286","636302":"0427","636303":"0427","636304":"0427","636305":"0427","636306":"0427","636307":"0427","636308":"0427","636309":"0427","636351":"0427","636352":"04342","636354":"0427","636401":"0427","636402":"0427","636403":"0427","636404":"0427","636406":"0427","636451":"0427","636452":"0427","636453":"0427","636454":"0427","636455":"0427","636456":"0427","636457":"0427","636458":"0427","636501":"0427","636502":"0427","636503":"0427","636601":"0427","636602":"0427","636701":"04342","636704":"04342","636705":"04342","636803":"04342","636804":"04342","636805":"04342","636806":"04343","636807":"04342","636808":"04342","636809":"04342","636810":"04342","636811":"04342","636812":"04343","636813":"04342","636902":"04343","636903":"04342","636904":"04342","636905":"04342","636906":"04342","637001":"04286","637002":"04286","637003":"04286","637013":"04286","637014":"04286","637015":"04286","637017":"04286","637018":"04286","637019":"04286","637020":"04286","637021":"04286","637101":"0427","637102":"0427","637103":"0427","637104":"0427","637105":"0427","637107":"0427","637201":"04286","637202":"04286","637203":"04286","637204":"04286","637205":"04286","637206":"04286","637207":"04286","637208":"04286","637209":"04286","637210":"04286","637211":"04286","637212":"04286","637213":"04286","637214":"04286","637215":"04286","637301":"0427","637302":"0427","637303":"0427","637304":"0427","637401":"04286","637402":"04286","637403":"04286","637404":"04286","637405":"04286","637406":"04286","637407":"04286","637408":"04286","637409":"04286","637410":"04286","637411":"04286","637412":"04286","637415":"04286","637501":"0427","637502":"0427","637503":"04286","637504":"0427","637505":"04286","638001":"0424","638002":"0424","638003":"0424","638004":"0424","638005":"0424","638006":"04286","638007":"04286","638008":"04286","638009":"0424","638010":"04286","638011":"0424","638012":"0424","638051":"0421","638052":"0424","638053":"0424","638054":"0424","638055":"0424","638056":"0421","638057":"0424","638060":"0424","638101":"0424","638102":"0424","638103":"0421","638104":"0424","638105":"0421","638106":"0421","638107":"0424","638108":"0421","638109":"0424","638110":"0421","638111":"0421","638112":"0424","638115":"0424","638116":"0424","638151":"04324","638152":"0424","638153":"0424","638154":"0424","638181":"04286","638182":"04286","638183":"0427","638301":"0424","638311":"0424","638312":"0424","638313":"0424","638314":"0424","638315":"0424","638316":"0424","638401":"0424","638402":"0424","638451":"0423","638452":"0424","638453":"0424","638454":"0424","638455":"0424","638456":"0424","638457":"0424","638458":"0421","638459":"0421","638460":"0421","638461":"0424","638462":"0421","638476":"0424","638501":"0424","638502":"0424","638503":"0424","638504":"0424","638505":"0424","638506":"0424","638656":"0421","638657":"0421","638660":"0421","638661":"0421","638672":"0421","638673":"0421","638701":"0421","638702":"0421","638703":"0421","638706":"0421","638751":"0421","638752":"0421","638812":"0421","639001":"04324","639002":"04324","639003":"04324","639004":"04324","639005":"04324","639006":"04324","639007":"04324","639008":"04324","639101":"0431","639102":"04324","639103":"0431","639104":"04324","639105":"04324","639107":"04324","639108":"04324","639109":"04324","639110":"04324","639111":"04324","639112":"0431","639113":"04324","639114":"04324","639115":"0431","639116":"04324","639117":"04324","639118":"04324","639119":"04324","639120":"04324","639136":"04324","639201":"0421","639202":"0421","639203":"04324","639205":"04324","639206":"04324","639207":"04324","641001":"0422","641002":"0422","641003":"0422","641004":"0422","641005":"0422","641006":"0422","641007":"0422","641008":"0422","641009":"0422","641010":"0422","641011":"0422","641012":"0422","641013":"0422","641014":"0422","641015":"0422","641016":"0422","641017":"0422","641018":"0422","641019":"0422","641020":"0422","641021":"0422","641022":"0422","641023":"0422","641024":"0422","641025":"0422","641026":"0422","641027":"0422","641028":"0422","641029":"0422","641030":"0422","641031":"0422","641032":"0422","641033":"0422","641034":"0422","641035":"0422","641036":"0422","641037":"0422","641038":"0422","641039":"0422","641040":"0422","641041":"0422","641042":"0422","641043":"0422","641044":"0422","641045":"0422","641046":"0422","641047":"0422","641048":"0422","641049":"0422","641050":"0422","641062":"0422","641101":"0422","641103":"0422","641104":"0422","641105":"0422","641107":"0422","641108":"0422","641109":"0422","641110":"0422","641111":"0422","641112":"0422","641113":"0422","641114":"0422","641201":"0422","641202":"0422","641301":"0422","641302":"0424","641305":"0422","641401":"0421","641402":"0422","641407":"0422","641601":"0421","641602":"0421","641603":"0421","641604":"0421","641605":"0421","641606":"0421","641607":"0421","641652":"0421","641653":"0422","641654":"0421","641655":"0421","641658":"0421","641659":"0422","641662":"0421","641663":"0421","641664":"0421","641665":"0421","641666":"0421","641667":"0421","641668":"0422","641669":"0422","641670":"0421","641671":"0421","641687":"0421","641697":"0422","642001":"0422","642002":"0422","642003":"0422","642004":"0422","642005":"0422","642006":"0422","642007":"0422","642101":"0422","642102":"0421","642103":"0422","642104":"0422","642105":"0422","642106":"0422","642107":"0422","642108":"0422","642109":"0422","642110":"0422","642111":"0421","642112":"0421","642113":"0421","642114":"0422","642117":"0422","642120":"0421","642122":"0421","642123":"0422","642125":"0422","642126":"0421","642127":"0422","642128":"0421","642129":"0422","642130":"0422","642132":"0421","642133":"0422","642134":"0422","642154":"0421","642201":"0421","642202":"0421","642203":"0421","642204":"0421","642205":"0421","642206":"0421","642207":"0421","643001":"0423","643002":"0423","643003":"0423","643004":"0423","643005":"0423","643006":"0423","643007":"0423","643101":"0423","643102":"0423","643103":"0423","643105":"0423","643201":"0423","643202":"0423","643203":"0423","643204":"0423","643205":"0423","643206":"0423","643207":"0423","643209":"0423","643211":"0423","643212":"0423","643213":"0423","643214":"0423","643215":"0423","643216":"0423","643217":"0423","643218":"0423","643219":"0423","643220":"0423","643221":"0423","643223":"0423","643224":"0423","643225":"0423","643226":"0423","643231":"0423","643233":"0423","643236":"0423","643237":"0423","643238":"0423","643239":"0423","643240":"0423","643241":"0423","643242":"0423","643243":"0423","643253":"0423","643270":"0423","670001":"0497","670002":"0497","670003":"0497","670004":"0497","670005":"0497","670006":"0497","670007":"0497","670008":"0497","670009":"0497","670010":"0497","670011":"0497","670012":"0497","670013":"0497","670014":"0497","670017":"0497","670018":"0497","670051":"0497","670101":"0497","670102":"0497","670103":"0497","670104":"0497","670105":"0497","670106":"0497","670107":"0497","670141":"0497","670142":"0497","670143":"0497","670301":"0497","670302":"0497","670303":"0497","670304":"0497","670305":"0497","670306":"0497","670307":"0494","670308":"0497","670309":"0497","670310":"0497","670325":"0497","670327":"0497","670331":"0497","670334":"0497","670353":"0497","670358":"0497","670501":"0497","670502":"0497","670503":"0497","670504":"0497","670511":"04994","670521":"0497","670561":"0497","670562":"0497","670563":"0497","670567":"0497","670571":"0497","670581":"0497","670582":"0497","670591":"0497","670592":"0497","670593":"0497","670594":"0497","670595":"0497","670601":"0497","670602":"0497","670604":"0497","670611":"0497","670612":"0494","670613":"0497","670621":"0497","670622":"0497","670631":"0497","670632":"0497","670633":"0497","670641":"0497","670642":"0497","670643":"0497","670644":"04935","670645":"04935","670646":"04935","670649":"0497","670650":"0497","670651":"0497","670661":"0497","670662":"0497","670663":"0497","670671":"0497","670672":"0497","670673":"0497","670674":"0497","670675":"0497","670676":"0497","670691":"0497","670692":"0497","670693":"0497","670694":"0497","670701":"0497","670702":"0497","670703":"0497","670704":"0497","670705":"0497","670706":"0497","670708":"0497","670721":"04935","670731":"04935","670741":"0497","671121":"04994","671122":"04994","671123":"04994","671124":"04994","671310":"04994","671311":"04994","671312":"04994","671313":"04994","671314":"04994","671315":"04994","671316":"04994","671317":"04994","671318":"04994","671319":"04994","671320":"04994","671321":"04994","671322":"04994","671323":"04994","671324":"04994","671326":"04994","671348":"04994","671351":"04994","671531":"04994","671532":"04994","671533":"04994","671534":"04994","671541":"04994","671542":"04994","671543":"04994","671551":"04994","671552":"04994","673001":"0495","673002":"0495","673003":"0495","673004":"0495","673005":"0495","673006":"0495","673007":"0495","673008":"0495","673009":"0495","673010":"0495","673011":"0495","673012":"0495","673014":"0495","673015":"0495","673016":"0495","673017":"0495","673018":"0495","673019":"0495","673020":"0495","673021":"0495","673027":"0495","673028":"0495","673029":"0495","673032":"0495","673051":"0495","673101":"0495","673102":"0495","673103":"0495","673104":"0495","673105":"0495","673106":"0495","673121":"04935","673122":"04935","673123":"04935","673124":"04935","673301":"0495","673302":"0495","673303":"0495","673304":"0495","673305":"0495","673306":"0495","673307":"0495","673308":"0495","673309":"0495","673310":"0490","673311":"0497","673312":"0497","673313":"0497","673314":"0494","673315":"0495","673316":"0497","673317":"0495","673323":"0495","673328":"0495","673501":"0495","673502":"0495","673503":"0495","673504":"0495","673505":"0495","673506":"0495","673507":"0495","673508":"0495","673509":"0495","673513":"0495","673517":"0495","673521":"0495","673522":"0495","673523":"0495","673524":"0495","673525":"0495","673526":"0495","673527":"0495","673528":"0495","673529":"0495","673541":"0495","673542":"0495","673570":"0495","673571":"0495","673572":"0494","673573":"0495","673574":"0495","673575":"04935","673576":"04935","673577":"04935","673579":"04935","673580":"0495","673581":"04935","673582":"0495","673585":"0495","673586":"0495","673591":"04935","673592":"04935","673593":"04935","673595":"04935","673596":"04935","673601":"0495","673602":"0495","673603":"0495","673604":"0495","673611":"0495","673612":"0495","673613":"0495","673614":"0495","673616":"0495","673620":"0495","673631":"0495","673632":"0494","673633":"0494","673634":"0494","673635":"0494","673636":"0494","673637":"0494","673638":"0494","673639":"0494","673640":"0494","673641":"0494","673642":"0494","673645":"0494","673647":"0494","673655":"0495","673661":"0495","676101":"0494","676102":"0494","676103":"0494","676104":"0494","676105":"0494","676106":"0494","676107":"0494","676108":"0494","676109":"0494","676121":"0494","676122":"0494","676123":"0494","676301":"0494","676302":"0494","676303":"0494","676304":"0494","676305":"0494","676306":"0494","676307":"0494","676309":"0494","676311":"0494","676312":"0494","676317":"0494","676319":"0494","676320":"0494","676501":"0494","676502":"0494","676503":"0494","676504":"0494","676505":"0494","676506":"0494","676507":"0494","676508":"0494","676509":"0494","676510":"0494","676517":"0494","676519":"0494","676521":"0494","676522":"0494","676523":"0494","676525":"0494","676528":"0494","676541":"0494","676542":"0494","676551":"0494","676552":"0494","676553":"0494","676561":"0494","676562":"0494","678001":"0491","678002":"0491","678003":"0491","678004":"0491","678005":"0491","678006":"0491","678007":"0491","678008":"0491","678009":"0491","678010":"0491","678011":"0491","678012":"0491","678013":"0491","678014":"0491","678051":"0491","678101":"0491","678102":"0491","678103":"0491","678104":"0491","678501":"0491","678502":"0491","678503":"0491","678504":"0491","678505":"0491","678506":"0491","678507":"0491","678508":"0491","678510":"0491","678512":"0491","678531":"0491","678532":"0491","678533":"0491","678534":"0491","678541":"0491","678542":"0491","678543":"0491","678544":"0491","678545":"0491","678546":"0491","678551":"0491","678552":"0491","678553":"0491","678554":"0491","678555":"0491","678556":"0491","678557":"0491","678571":"0491","678572":"0491","678573":"0491","678574":"0491","678581":"0491","678582":"0491","678583":"0491","678591":"0491","678592":"0491","678593":"0491","678594":"0491","678595":"0491","678596":"0491","678597":"0491","678598":"0491","678601":"0491","678611":"0491","678612":"0491","678613":"0491","678621":"0491","678622":"0491","678623":"0491","678624":"0491","678631":"0491","678632":"0491","678633":"0491","678641":"0491","678642":"0491","678651":"0491","678661":"0491","678671":"0491","678681":"0491","678682":"0491","678683":"0491","678684":"0491","678685":"0491","678686":"0491","678687":"0491","678688":"0491","678701":"0491","678702":"0491","678703":"0491","678704":"0491","678705":"0491","678706":"0491","678721":"0491","678722":"0491","678731":"0491","678732":"0491","678762":"0491","679101":"0491","679102":"0491","679103":"0491","679104":"0491","679105":"0487","679106":"0487","679121":"0491","679122":"0491","679123":"0491","679301":"0491","679302":"0491","679303":"0491","679304":"0491","679305":"0491","679306":"0491","679307":"0491","679308":"0491","679309":"0491","679313":"0491","679321":"0494","679322":"0494","679323":"0494","679324":"0494","679325":"0494","679326":"0494","679327":"0494","679328":"0494","679329":"0494","679330":"0494","679331":"0494","679332":"0494","679333":"0494","679334":"0494","679335":"0491","679336":"0491","679337":"0491","679338":"0494","679339":"0494","679340":"0494","679341":"0494","679357":"0494","679501":"0491","679502":"0491","679503":"0491","679504":"0491","679505":"0491","679506":"0491","679511":"0491","679512":"0491","679513":"0491","679514":"0491","679515":"0491","679516":"0491","679521":"0491","679522":"0491","679523":"0491","679531":"0487","679532":"0487","679533":"0491","679534":"0491","679535":"0491","679536":"0491","679551":"0491","679552":"0491","679553":"0491","679554":"0491","679561":"0487","679562":"0487","679563":"0487","679564":"0487","679571":"0494","679572":"0494","679573":"0494","679574":"0494","679575":"0494","679576":"0494","679577":"0494","679578":"0494","679579":"0494","679580":"0494","679581":"0494","679582":"0494","679583":"0494","679584":"0494","679585":"0494","679586":"0494","679587":"0494","679591":"0494","680001":"0487","680002":"0487","680003":"0487","680004":"0487","680005":"0487","680006":"0487","680007":"0487","680008":"0487","680009":"0487","680010":"0487","680011":"0487","680012":"0487","680013":"0487","680014":"0487","680020":"0487","680021":"0487","680022":"0487","680026":"0487","680027":"0487","680028":"0487","680101":"0487","680102":"0487","680103":"0487","680104":"0487","680121":"0487","680122":"0487","680123":"0487","680125":"0487","680301":"0487","680302":"0487","680303":"0487","680304":"0487","680305":"0487","680306":"0487","680307":"0487","680308":"0487","680309":"0487","680310":"0487","680311":"0487","680312":"0487","680317":"0487","680501":"0487","680502":"0487","680503":"0487","680504":"0487","680505":"0487","680506":"0487","680507":"0487","680508":"0487","680509":"0487","680510":"0487","680511":"0487","680512":"0487","680513":"0487","680514":"0487","680515":"0487","680516":"0487","680517":"0487","680518":"0487","680519":"0487","680520":"0487","680521":"0487","680522":"0487","680523":"0487","680524":"0487","680541":"0487","680542":"0487","680543":"0487","680544":"0487","680545":"0487","680546":"0487","680551":"0487","680552":"0487","680553":"0487","680555":"0487","680561":"0487","680562":"0487","680563":"0487","680564":"0487","680565":"0487","680566":"0487","680567":"0487","680568":"0487","680569":"0487","680570":"0487","680571":"0487","680581":"0487","680582":"0487","680583":"0487","680584":"0487","680585":"0487","680586":"0487","680587":"0487","680588":"0487","680589":"0487","680590":"0487","680591":"0487","680594":"0487","680596":"0487","680601":"0487","680602":"0487","680604":"0487","680611":"0487","680612":"0487","680613":"0487","680614":"0487","680615":"0487","680616":"0487","680617":"0487","680618":"0487","680619":"0487","680620":"0487","680623":"0487","680631":"0487","680641":"0487","680642":"0487","680651":"0487","680652":"0487","680653":"0487","680654":"0487","680655":"0487","680656":"0487","680661":"0487","680662":"0487","680663":"0487","680664":"0487","680665":"0487","680666":"0487","680667":"0487","680668":"0487","680669":"0487","680670":"0487","680671":"0487","680681":"0487","680682":"0487","680683":"0487","680684":"0487","680685":"0487","680686":"0487","680687":"0487","680688":"0487","680689":"0487","680691":"0487","680697":"0487","680699":"0487","680701":"0487","680702":"0487","680703":"0487","680711":"0487","680712":"0487","680721":"0487","680722":"0487","680724":"0487","680731":"0487","680732":"0487","680733":"0487","680734":"0487","680741":"0487","680751":"0487","682001":"0484","682002":"0484","682003":"0484","682004":"0484","682005":"0484","682006":"0484","682007":"0484","682008":"0484","682009":"0484","682010":"0484","682011":"0484","682012":"0484","682013":"0484","682015":"0484","682016":"0484","682017":"0484","682018":"0484","682019":"0484","682020":"0484","682021":"0484","682022":"0484","682023":"0484","682024":"0484","682025":"0484","682026":"0484","682027":"0484","682028":"0484","682029":"0484","682030":"0484","682031":"0484","682032":"0484","682033":"0484","682034":"0484","682035":"0484","682036":"0484","682037":"0484","682038":"0484","682039":"0484","682040":"0484","682041":"0484","682042":"0484","682050":"0484","682051":"0484","682052":"0484","682301":"0484","682302":"0484","682303":"0484","682304":"0484","682305":"0484","682306":"0484","682307":"0484","682308":"0484","682309":"0484","682310":"0484","682311":"0484","682312":"0484","682313":"0484","682314":"0484","682315":"0484","682316":"0484","682317":"0484","682501":"0484","682502":"0484","682503":"0484","682504":"0484","682505":"0484","682506":"0484","682507":"0484","682508":"0484","682509":"0484","682511":"0484","682551":"04896","682552":"04896","682553":"04896","682554":"04896","682555":"04896","682556":"04896","682557":"04896","682558":"04896","682559":"04896","683101":"0484","683102":"0484","683104":"0484","683105":"0484","683106":"0484","683108":"0484","683110":"0484","683111":"0484","683112":"0484","683501":"0484","683502":"0484","683503":"0484","683511":"0484","683512":"0484","683513":"0484","683514":"0484","683515":"0484","683516":"0484","683517":"0484","683518":"0484","683519":"0484","683520":"0484","683521":"0484","683522":"0484","683541":"0484","683542":"0484","683543":"0484","683544":"0484","683545":"0484","683546":"0484","683547":"0484","683548":"0484","683549":"0484","683550":"0484","683556":"0484","683561":"0484","683562":"0484","683563":"0484","683565":"0484","683571":"0484","683572":"0484","683573":"0484","683574":"0484","683575":"0484","683576":"0484","683577":"0484","683578":"0484","683579":"0484","683580":"0484","683581":"0484","683585":"0484","683587":"0484","683589":"0484","683594":"0484","685501":"04868","685503":"04868","685505":"04868","685507":"04868","685508":"04868","685509":"04868","685511":"04868","685512":"04868","685514":"04868","685515":"04868","685531":"04868","685532":"04868","685533":"0468","685535":"04868","685551":"04868","685552":"04868","685553":"04868","685554":"04868","685561":"04868","685562":"04868","685563":"04868","685565":"04868","685566":"04868","685571":"04868","685581":"04868","685582":"04868","685583":"04868","685584":"04868","685585":"04868","685586":"04868","685587":"04868","685588":"04868","685589":"04868","685590":"04868","685591":"04868","685595":"04868","685601":"04868","685602":"04868","685603":"04868","685604":"04868","685605":"04868","685606":"04868","685607":"04868","685608":"04868","685609":"04868","685612":"04868","685613":"04868","685614":"04868","685615":"04868","685616":"04868","685618":"04868","685619":"04868","685620":"04868","686001":"0481","686002":"0481","686003":"0481","686004":"0481","686005":"0481","686006":"0481","686007":"0481","686008":"0481","686009":"0481","686010":"0481","686011":"0481","686012":"0481","686013":"0481","686014":"0481","686015":"0481","686016":"0481","686017":"0481","686018":"0481","686019":"0481","686020":"0481","686021":"0481","686022":"0481","686041":"0481","686101":"0481","686102":"0481","686103":"0481","686104":"0481","686105":"0481","686106":"0481","686121":"0481","686122":"0481","686123":"0481","686141":"0481","686143":"0481","686144":"0481","686146":"0481","686501":"0481","686502":"0481","686503":"0481","686504":"0481","686505":"0481","686506":"0481","686507":"0481","686508":"0481","686509":"0481","686510":"0468","686511":"0468","686512":"0481","686513":"0481","686514":"0481","686515":"0481","686516":"0481","686517":"0481","686518":"0481","686519":"0481","686520":"0481","686521":"0481","686522":"0481","686531":"0481","686532":"0481","686533":"0481","686534":"0477","686535":"0481","686536":"0481","686537":"0481","686538":"0481","686539":"0481","686540":"0481","686541":"0481","686542":"0481","686543":"0481","686544":"0481","686545":"0481","686546":"0481","686547":"0468","686548":"0481","686555":"0481","686560":"0481","686561":"0481","686562":"0481","686563":"0481","686564":"0481","686571":"0481","686572":"0481","686573":"0481","686574":"0481","686575":"0481","686576":"0481","686577":"0481","686578":"0481","686579":"0481","686580":"0481","686581":"0481","686582":"0481","686583":"0481","686584":"0481","686585":"0481","686586":"0481","686587":"0481","686601":"0481","686602":"0481","686603":"0481","686604":"0481","686605":"0481","686606":"0481","686607":"0481","686608":"0481","686609":"0481","686610":"0481","686611":"0481","686612":"0481","686613":"0481","686616":"0481","686630":"0481","686631":"0481","686632":"0481","686633":"0481","686634":"0481","686635":"0481","686636":"0481","686637":"0481","686651":"0481","686652":"0481","686653":"0481","686661":"0484","686662":"0484","686663":"0484","686664":"0484","686665":"0484","686666":"0484","686667":"0484","686668":"0484","686669":"0484","686670":"0484","686671":"0484","686672":"0484","686673":"0484","686681":"0484","686691":"0484","686692":"0484","686693":"0484","688001":"0477","688002":"0477","688003":"0477","688004":"0477","688005":"0477","688006":"0477","688007":"0477","688008":"0477","688009":"0477","688011":"0477","688012":"0477","688013":"0477","688014":"0477","688501":"0477","688502":"0477","688503":"0477","688504":"0477","688505":"0477","688506":"0477","688521":"0477","688522":"0477","688523":"0477","688524":"0477","688525":"0477","688526":"0477","688527":"0477","688528":"0477","688529":"0477","688530":"0477","688531":"0477","688532":"0477","688533":"0477","688534":"0477","688535":"0477","688536":"0477","688537":"0477","688538":"0477","688539":"0477","688540":"0477","688541":"0477","688555":"0477","688561":"0477","688562":"0477","688570":"0477","688582":"0477","689101":"0468","689102":"0468","689103":"0468","689104":"0468","689105":"0468","689106":"0468","689107":"0468","689108":"0468","689109":"0477","689110":"0468","689111":"0468","689112":"0468","689113":"0468","689115":"0468","689121":"0477","689122":"0468","689123":"0468","689124":"0477","689126":"0477","689501":"0468","689502":"0468","689503":"0468","689504":"0477","689505":"0477","689506":"0477","689507":"0468","689508":"0477","689509":"0477","689510":"0477","689511":"0477","689512":"0477","689513":"0468","689514":"0468","689515":"0468","689520":"0477","689521":"0477","689531":"0468","689532":"0468","689533":"0468","689541":"0468","689542":"0468","689543":"0468","689544":"0468","689545":"0468","689546":"0468","689547":"0468","689548":"0468","689549":"0468","689550":"0468","689551":"0468","689571":"0477","689572":"0477","689573":"0477","689574":"0477","689581":"0468","689582":"0468","689583":"0468","689584":"0468","689585":"0468","689586":"0468","689587":"0468","689588":"0468","689589":"0468","689590":"0477","689591":"0468","689592":"0468","689594":"0468","689595":"0477","689597":"0468","689602":"0468","689611":"0468","689612":"0468","689613":"0468","689614":"0468","689615":"0468","689621":"0468","689622":"0477","689623":"0477","689624":"0477","689625":"0468","689626":"0468","689627":"0477","689641":"0468","689642":"0468","689643":"0468","689644":"0468","689645":"0468","689646":"0468","689647":"0468","689648":"0468","689649":"0468","689650":"0468","689652":"0468","689653":"0468","689654":"0468","689656":"0468","689661":"0468","689662":"0468","689663":"0468","689664":"0468","689666":"0468","689667":"0468","689668":"0468","689671":"0468","689672":"0468","689673":"0468","689674":"0468","689675":"0468","689676":"0468","689677":"0468","689678":"0468","689691":"0468","689692":"0468","689693":"0468","689694":"0468","689695":"0474","689696":"0474","689698":"0468","689699":"0468","689711":"0468","689713":"0468","690101":"0477","690102":"0477","690103":"0477","690104":"0477","690105":"0477","690106":"0477","690107":"0477","690108":"0477","690110":"0477","690501":"0477","690502":"0477","690503":"0477","690504":"0468","690505":"0477","690506":"0477","690507":"0477","690508":"0477","690509":"0477","690510":"0477","690511":"0477","690512":"0477","690513":"0477","690514":"0477","690515":"0477","690516":"0477","690517":"0477","690518":"0474","690519":"0474","690520":"0474","690521":"0474","690522":"0468","690523":"0474","690524":"0474","690525":"0474","690526":"0474","690527":"0477","690528":"0474","690529":"0477","690530":"0477","690531":"0477","690532":"0477","690533":"0477","690534":"0477","690535":"0477","690536":"0474","690537":"0477","690538":"0474","690539":"0474","690540":"0474","690542":"0474","690544":"0474","690546":"0474","690547":"0474","690548":"0477","690558":"0477","690559":"0477","690561":"0474","690571":"0477","690572":"0477","690573":"0474","690574":"0474","691001":"0474","691002":"0474","691003":"0474","691004":"0474","691005":"0474","691006":"0474","691007":"0474","691008":"0474","691009":"0474","691010":"0474","691011":"0474","691012":"0474","691013":"0474","691014":"0474","691015":"0474","691016":"0474","691019":"0474","691020":"0474","691021":"0474","691301":"0474","691302":"0474","691303":"0474","691304":"0474","691305":"0474","691306":"0474","691307":"0474","691308":"0474","691309":"0474","691310":"0474","691311":"0474","691312":"0474","691319":"0474","691322":"0474","691331":"0474","691332":"0474","691333":"0474","691334":"0474","691500":"0474","691501":"0474","691502":"0474","691503":"0474","691504":"0474","691505":"0474","691506":"0474","691507":"0474","691508":"0474","691509":"0474","691510":"0474","691511":"0474","691512":"0474","691515":"0474","691516":"0474","691520":"0474","691521":"0474","691522":"0474","691523":"0468","691524":"0468","691525":"0468","691526":"0468","691527":"0474","691530":"0468","691531":"0474","691532":"0474","691533":"0474","691534":"0474","691535":"0474","691536":"0474","691537":"0474","691538":"0474","691540":"0474","691541":"0474","691543":"0474","691551":"0468","691552":"0468","691553":"0468","691554":"0468","691555":"0468","691556":"0468","691557":"0474","691559":"0474","691560":"0474","691566":"0474","691571":"0474","691572":"0474","691573":"0474","691574":"0474","691576":"0474","691577":"0474","691578":"0474","691579":"0474","691581":"0474","691582":"0474","691583":"0474","691584":"0474","691585":"0474","691589":"0474","691590":"0474","691601":"0474","691602":"0474","695001":"0471","695002":"0471","695003":"0471","695004":"0471","695005":"0471","695006":"0471","695007":"0471","695008":"0471","695009":"0471","695010":"0471","695011":"0471","695012":"0471","695013":"0471","695014":"0471","695015":"0471","695016":"0471","695017":"0471","695018":"0471","695019":"0471","695020":"0471","695021":"0471","695022":"0471","695023":"0471","695024":"0471","695025":"0471","695026":"0471","695027":"0471","695028":"0471","695029":"0471","695030":"0471","695032":"0471","695033":"0471","695034":"0471","695035":"0471","695036":"0471","695038":"0471","695040":"0471","695042":"0471","695043":"0471","695051":"0471","695099":"0471","695101":"0471","695102":"0471","695103":"0471","695104":"0471","695121":"0471","695122":"0471","695123":"0471","695124":"0471","695125":"0471","695126":"0471","695132":"0471","695133":"0471","695134":"0471","695141":"0471","695142":"0471","695143":"0471","695144":"0471","695145":"0471","695146":"0471","695301":"0471","695302":"0471","695303":"0471","695304":"0471","695305":"0471","695306":"0471","695307":"0471","695308":"0471","695309":"0471","695310":"0471","695311":"0471","695312":"0471","695313":"0471","695316":"0471","695317":"0471","695318":"0471","695501":"0471","695502":"0471","695503":"0471","695504":"0471","695505":"0471","695506":"0471","695507":"0471","695508":"0471","695512":"0471","695513":"0471","695521":"0471","695522":"0471","695523":"0471","695524":"0471","695525":"0471","695526":"0471","695527":"0471","695528":"0471","695541":"0471","695542":"0471","695543":"0471","695547":"0471","695551":"0471","695561":"0471","695562":"0471","695563":"0471","695564":"0471","695568":"0471","695570":"0471","695571":"0471","695572":"0471","695573":"0471","695574":"0471","695575":"0471","695581":"0471","695582":"0471","695583":"0471","695584":"0471","695585":"0471","695586":"0471","695587":"0471","695588":"0471","695589":"0471","695601":"0471","695602":"0471","695603":"0471","695604":"0471","695605":"0471","695606":"0471","695607":"0471","695608":"0471","695609":"0471","695610":"0471","695611":"0471","695612":"0471","695614":"0471","695615":"0471","700001":"033","700002":"033","700003":"033","700004":"033","700005":"033","700006":"033","700007":"033","700008":"033","700009":"033","700010":"033","700011":"033","700012":"033","700013":"033","700014":"033","700015":"033","700016":"033","700017":"033","700018":"033","700019":"033","700020":"033","700021":"033","700022":"033","700023":"033","700024":"033","700025":"033","700026":"033","700027":"033","700028":"033","700029":"033","700030":"033","700031":"033","700032":"033","700033":"033","700034":"033","700035":"033","700036":"033","700037":"033","700038":"033","700039":"033","700040":"033","700041":"033","700042":"033","700043":"033","700044":"033","700045":"033","700046":"033","700047":"033","700048":"033","700049":"033","700050":"033","700051":"033","700052":"033","700053":"033","700054":"033","700055":"033","700056":"033","700057":"033","700058":"033","700059":"033","700060":"033","700061":"033","700062":"033","700063":"033","700064":"033","700065":"033","700066":"033","700067":"033","700068":"033","700069":"033","700070":"033","700071":"033","700072":"033","700073":"033","700074":"033","700075":"033","700076":"033","700077":"033","700078":"033","700079":"033","700080":"033","700081":"033","700082":"033","700083":"033","700084":"033","700085":"033","700086":"033","700087":"033","700088":"033","700089":"033","700090":"033","700091":"033","700092":"033","700093":"033","700094":"033","700095":"033","700096":"033","700097":"033","700099":"033","700100":"033","700101":"033","700102":"033","700103":"033","700104":"033","700105":"033","700106":"033","700107":"033","700108":"033","700109":"033","700110":"033","700111":"033","700112":"033","700113":"033","700114":"033","700115":"033","700116":"033","700117":"033","700118":"033","700119":"033","700120":"033","700121":"033","700122":"033","700123":"033","700124":"033","700125":"033","700126":"033","700127":"033","700128":"033","700129":"033","700130":"033","700131":"033","700132":"033","700133":"033","700134":"033","700135":"033","700136":"033","700137":"033","700138":"033","700139":"033","700140":"033","700141":"033","700142":"033","700143":"033","700144":"033","700145":"033","700146":"033","700147":"033","700148":"033","700149":"033","700150":"033","700151":"033","700152":"033","700153":"033","700154":"033","700155":"033","700156":"033","700157":"033","700158":"033","700159":"033","700160":"033","700161":"033","700162":"033","700163":"033","711101":"033","711102":"033","711103":"033","711104":"033","711105":"033","711106":"033","711107":"033","711108":"033","711109":"033","711110":"033","711111":"033","711112":"033","711113":"033","711114":"033","711115":"033","711201":"033","711202":"033","711203":"033","711204":"033","711205":"033","711206":"033","711225":"033","711226":"033","711227":"033","711301":"033","711302":"033","711303":"033","711304":"033","711305":"033","711306":"033","711307":"033","711308":"033","711309":"033","711310":"033","711312":"033","711313":"033","711314":"033","711315":"033","711316":"033","711317":"033","711322":"033","711331":"033","711401":"033","711403":"033","711404":"033","711405":"033","711408":"033","711409":"033","711410":"033","711411":"033","711412":"033","711413":"033","711414":"033","712101":"033","712102":"033","712103":"033","712104":"033","712105":"033","712121":"033","712122":"03222","712123":"033","712124":"033","712125":"033","712134":"0342","712135":"033","712136":"033","712137":"033","712138":"033","712139":"033","712146":"0342","712147":"033","712148":"033","712149":"033","712152":"033","712201":"033","712202":"033","712203":"033","712204":"033","712221":"033","712222":"033","712223":"033","712232":"033","712233":"033","712234":"033","712235":"033","712245":"033","712246":"033","712248":"033","712249":"033","712250":"033","712258":"033","712301":"033","712302":"033","712303":"033","712304":"033","712305":"033","712306":"033","712308":"0342","712310":"033","712311":"033","712401":"033","712402":"0342","712403":"033","712404":"033","712405":"033","712406":"033","712407":"033","712408":"033","712409":"033","712410":"0342","712412":"033","712413":"0342","712414":"033","712415":"033","712416":"033","712417":"033","712501":"033","712502":"033","712503":"033","712504":"033","712512":"0342","712513":"033","712514":"033","712515":"033","712601":"033","712602":"033","712611":"033","712612":"033","712613":"033","712614":"033","712615":"033","712616":"033","712617":"033","712701":"033","712702":"033","712706":"033","713101":"0342","713102":"0342","713103":"0342","713104":"0342","713121":"0342","713122":"0342","713123":"0342","713124":"0342","713125":"0342","713126":"0342","713127":"0342","713128":"0342","713129":"0342","713130":"0342","713131":"0342","713132":"0342","713140":"0342","713141":"0342","713142":"0342","713143":"0342","713144":"0342","713145":"0342","713146":"0342","713147":"0342","713148":"0342","713149":"0342","713150":"0342","713151":"0342","713152":"0342","713153":"0342","713154":"0342","713166":"0342","713201":"0341","713202":"0341","713203":"0341","713204":"0341","713205":"0341","713206":"0341","713207":"0341","713208":"0341","713209":"0341","713210":"0341","713211":"0341","713212":"0341","713213":"0341","713214":"0341","713215":"0341","713216":"0341","713217":"0341","713301":"0341","713302":"0341","713303":"0341","713304":"0341","713305":"0341","713315":"0341","713321":"0341","713322":"0341","713323":"0341","713324":"0341","713325":"0341","713326":"0341","713330":"0341","713331":"0341","713332":"0341","713333":"0341","713334":"0341","713335":"0341","713336":"0341","713337":"0341","713338":"0341","713339":"0341","713340":"0341","713341":"0341","713342":"0341","713343":"0341","713344":"0341","713346":"0341","713347":"0341","713357":"0341","713358":"0341","713359":"0341","713360":"0341","713361":"0341","713362":"0341","713363":"0341","713365":"0341","713369":"0341","713370":"0341","713371":"0341","713372":"0341","713373":"0341","713376":"0341","713378":"0341","713381":"0341","713384":"0341","713385":"0341","713386":"0341","713401":"0342","713403":"0342","713404":"0342","713405":"0342","713406":"0342","713407":"0342","713408":"0342","713409":"0342","713420":"0342","713421":"0342","713422":"0342","713423":"0342","713424":"0342","713426":"0342","713427":"0342","713428":"0342","713502":"0342","713512":"0342","713513":"0342","713514":"0342","713515":"0342","713519":"0342","713520":"0342","721101":"03222","721102":"03222","721121":"03222","721122":"03222","721124":"03222","721125":"03221","721126":"03222","721127":"03222","721128":"03222","721129":"03222","721130":"03222","721131":"03222","721132":"03222","721133":"03222","721134":"03228","721135":"03222","721136":"03222","721137":"03228","721139":"03222","721140":"03222","721143":"03221","721144":"03222","721145":"03222","721146":"03222","721147":"03222","721148":"03222","721149":"03222","721150":"03222","721151":"03228","721152":"03222","721153":"03222","721154":"03222","721155":"03222","721156":"03222","721157":"03222","721158":"03228","721159":"03221","721160":"03222","721161":"03222","721166":"03222","721171":"03228","721172":"03228","721201":"03222","721211":"03222","721212":"03222","721222":"03222","721232":"03222","721242":"03222","721253":"03222","721260":"03222","721301":"03222","721302":"03222","721303":"03222","721304":"03222","721305":"03222","721306":"03222","721401":"03228","721402":"03228","721403":"03228","721404":"03228","721405":"03228","721406":"03228","721420":"03222","721422":"03228","721423":"03228","721424":"03222","721425":"03228","721426":"03222","721427":"03228","721428":"03228","721429":"03228","721430":"03228","721431":"03228","721432":"03228","721433":"03228","721434":"03228","721435":"03222","721436":"03222","721437":"03222","721438":"03228","721439":"03228","721440":"03228","721441":"03228","721442":"03228","721443":"03222","721444":"03228","721445":"03222","721446":"03228","721447":"03228","721448":"03228","721449":"03228","721450":"03228","721451":"03222","721452":"03228","721453":"03228","721454":"03228","721455":"03228","721456":"03228","721457":"03222","721458":"03228","721463":"03228","721467":"03222","721501":"03221","721503":"03221","721504":"03221","721505":"03221","721506":"03221","721507":"03221","721513":"03222","721514":"03221","721515":"03221","721516":"03222","721517":"03221","721601":"03228","721602":"03228","721603":"03228","721604":"03228","721606":"03228","721607":"03228","721624":"03228","721625":"03228","721626":"03228","721627":"03228","721628":"03228","721629":"03228","721631":"03228","721632":"03228","721633":"03228","721634":"03228","721635":"03228","721636":"03228","721637":"03228","721641":"03222","721642":"03228","721643":"03228","721644":"03228","721645":"03228","721646":"03228","721647":"03228","721648":"03228","721649":"03228","721650":"03228","721651":"03228","721652":"03228","721653":"03228","721654":"03228","721655":"03228","721656":"03228","721657":"03228","721658":"03228","721659":"03228","722101":"03242","722102":"03242","722121":"03242","722122":"03242","722132":"03242","722133":"03242","722134":"03242","722135":"03242","722136":"03242","722137":"03242","722138":"03242","722139":"03242","722140":"03242","722141":"03242","722142":"03242","722143":"03242","722144":"03242","722146":"03242","722147":"03242","722148":"03242","722149":"03242","722150":"03242","722151":"03242","722152":"03242","722153":"03242","722154":"03242","722155":"03242","722156":"03242","722157":"03242","722158":"03242","722160":"03242","722161":"03242","722162":"03242","722164":"03242","722173":"03242","722183":"03242","722201":"03242","722202":"03242","722203":"03242","722204":"03242","722205":"03242","722206":"03242","722207":"03242","722208":"03242","723101":"03252","723102":"03252","723103":"03252","723104":"03252","723121":"03252","723126":"03252","723127":"03252","723128":"03252","723129":"03252","723130":"03252","723131":"03252","723132":"03252","723133":"03252","723142":"03252","723143":"03252","723145":"03252","723146":"03252","723147":"03252","723148":"03252","723149":"03252","723151":"03252","723152":"03252","723153":"03252","723154":"03252","723155":"03252","723156":"03252","723201":"03252","723202":"03252","723212":"03252","723213":"03252","723215":"03252","731101":"03462","731102":"03462","731103":"03462","731104":"03462","731121":"03462","731123":"03462","731124":"03462","731125":"03462","731126":"03462","731127":"03462","731129":"03462","731130":"03462","731132":"03462","731133":"03462","731201":"03462","731202":"03462","731204":"03462","731214":"0342","731215":"0342","731216":"03462","731218":"03462","731219":"03483","731220":"03462","731221":"03483","731222":"03483","731223":"03462","731224":"03462","731233":"03462","731234":"03462","731235":"03462","731236":"03462","731237":"03462","731238":"03462","731240":"03462","731241":"03483","731242":"03462","731243":"03462","731244":"03483","731245":"03462","731301":"03462","731302":"03462","731303":"03462","731304":"03462","732101":"03512","732102":"03512","732103":"03512","732121":"03512","732122":"03512","732123":"03512","732124":"03512","732125":"03512","732126":"03512","732127":"03512","732128":"03512","732138":"03512","732139":"03512","732140":"03512","732141":"03512","732142":"03512","732144":"03512","732201":"03512","732202":"03512","732203":"03512","732204":"03512","732205":"03512","732206":"03512","732207":"03512","732208":"03512","732209":"03512","732210":"03512","732215":"03512","732216":"03512","733101":"03522","733102":"03522","733103":"03522","733121":"03522","733123":"03523","733124":"03512","733125":"03523","733126":"03522","733127":"03522","733128":"03523","733129":"03523","733130":"03523","733132":"03523","733133":"03522","733134":"03523","733140":"03522","733141":"03522","733142":"03512","733143":"03523","733145":"03522","733156":"03523","733158":"03523","733201":"03523","733202":"03523","733207":"03523","733208":"03523","733209":"03523","733210":"03523","733215":"03523","734001":"03561","734002":"0354","734003":"0354","734004":"03561","734005":"0354","734006":"03561","734007":"03561","734008":"03552","734009":"0354","734010":"0354","734011":"0354","734012":"0354","734013":"0354","734014":"0354","734015":"03561","734101":"0354","734102":"0354","734103":"0354","734104":"0354","734105":"0354","734201":"0354","734203":"0354","734204":"0354","734209":"0354","734213":"0354","734214":"0354","734215":"0354","734216":"0354","734217":"0354","734218":"0354","734220":"0354","734221":"0354","734222":"0354","734223":"0354","734224":"0354","734226":"0354","734301":"03552","734311":"03552","734312":"03552","734313":"0354","734314":"03552","734315":"03552","734316":"03552","734421":"0354","734423":"0354","734424":"0354","734425":"0354","734426":"0354","734427":"0354","734429":"0354","734434":"0354","734501":"03561","734503":"03552","735101":"03561","735102":"03561","735121":"03561","735122":"03561","735132":"03561","735133":"03561","735134":"03561","735135":"03561","735202":"03561","735203":"03561","735204":"03564","735205":"03561","735206":"03552","735207":"03561","735208":"03564","735209":"03561","735210":"03561","735211":"03582","735212":"03561","735213":"03564","735214":"03564","735215":"03564","735216":"03561","735217":"03564","735218":"03561","735219":"03561","735220":"03564","735221":"03561","735222":"03561","735223":"03552","735224":"03561","735225":"03561","735226":"03564","735227":"03564","735228":"03561","735229":"03561","735230":"03561","735231":"03552","735232":"03561","735233":"03561","735234":"03561","735301":"03582","735302":"03561","735303":"03582","735304":"03582","735305":"03561","736101":"03582","736121":"03582","736122":"03564","736123":"03564","736131":"03582","736133":"03582","736134":"03582","736135":"03582","736145":"03582","736146":"03582","736156":"03582","736157":"03582","736158":"03582","736159":"03582","736160":"03582","736165":"03582","736167":"03582","736168":"03582","736169":"03582","736170":"03582","736171":"03582","736172":"03582","736176":"03582","736179":"03582","736182":"03564","736201":"03564","736202":"03564","736203":"03564","736204":"03564","736205":"03564","736206":"03564","736207":"03582","736208":"03564","737101":"03592","737102":"03592","737103":"03592","737106":"03592","737107":"03592","737111":"03595","737113":"03595","737116":"03592","737120":"03592","737121":"03595","737126":"011","737128":"011","737131":"03592","737132":"011","737133":"03592","737134":"011","737135":"03592","737136":"03592","737139":"011","741101":"03472","741102":"03472","741103":"03472","741121":"03472","741122":"03472","741123":"03474","741124":"03472","741125":"03472","741126":"03472","741127":"03472","741137":"03472","741138":"03472","741139":"03472","741140":"03472","741150":"03472","741151":"03472","741152":"03472","741153":"03472","741154":"03472","741155":"03472","741156":"03472","741157":"03472","741158":"03472","741159":"03472","741160":"03472","741161":"03472","741162":"03472","741163":"03472","741164":"03472","741165":"03472","741166":"03472","741167":"03472","741181":"03472","741201":"03472","741202":"03472","741221":"03472","741222":"03472","741223":"03472","741232":"03472","741234":"03472","741235":"03472","741238":"03472","741245":"03472","741246":"03472","741247":"03472","741248":"03472","741249":"03472","741250":"03472","741251":"03472","741252":"03472","741253":"03472","741254":"03472","741255":"03472","741256":"03472","741257":"03472","741301":"03472","741302":"03472","741313":"03472","741315":"03472","741316":"0342","741317":"03472","741319":"0342","741401":"03472","741402":"03472","741404":"03472","741501":"03472","741502":"03472","741503":"03472","741504":"03472","741505":"03472","741506":"03472","741507":"03472","741508":"03472","741509":"03472","742101":"03483","742102":"03483","742103":"03483","742104":"03483","742113":"03483","742121":"03472","742122":"03483","742123":"03483","742132":"03483","742133":"03483","742134":"03483","742135":"03483","742136":"03483","742137":"03483","742138":"03483","742140":"03483","742147":"03483","742148":"03483","742149":"03483","742151":"03483","742159":"03483","742160":"03483","742161":"03483","742163":"03483","742164":"03483","742165":"03483","742166":"03483","742168":"03483","742174":"03483","742175":"03483","742184":"03483","742187":"03483","742189":"03483","742201":"03483","742202":"03483","742212":"03483","742213":"03483","742223":"03483","742224":"03483","742225":"03483","742226":"03483","742227":"03483","742235":"03483","742236":"03483","742237":"03483","742238":"03483","742301":"03483","742302":"03483","742303":"03483","742304":"03483","742305":"03483","742306":"03483","742308":"03483","742401":"03483","742402":"03483","742404":"03483","742405":"03483","742406":"03483","742407":"03483","742408":"03483","742409":"03483","742410":"03483","743122":"033","743123":"033","743124":"033","743125":"033","743126":"033","743127":"033","743128":"033","743129":"033","743130":"033","743133":"033","743134":"033","743135":"033","743136":"033","743144":"033","743145":"033","743165":"033","743166":"033","743193":"033","743194":"033","743221":"033","743222":"033","743223":"033","743232":"033","743233":"033","743234":"033","743235":"033","743245":"033","743247":"033","743248":"033","743249":"033","743251":"033","743252":"033","743262":"033","743263":"033","743268":"033","743270":"033","743271":"033","743272":"033","743273":"033","743286":"033","743287":"033","743289":"033","743290":"033","743291":"033","743292":"033","743293":"033","743294":"033","743297":"033","743312":"033","743318":"033","743329":"033","743330":"033","743331":"033","743332":"033","743336":"033","743337":"033","743338":"033","743345":"033","743347":"033","743348":"033","743349":"033","743351":"033","743354":"033","743355":"033","743356":"033","743357":"033","743363":"033","743368":"033","743370":"033","743371":"033","743372":"033","743373":"033","743374":"033","743375":"033","743376":"033","743377":"033","743378":"033","743383":"033","743387":"033","743395":"033","743399":"033","743401":"033","743405":"033","743411":"033","743412":"033","743422":"033","743423":"033","743424":"033","743425":"033","743426":"033","743427":"033","743428":"033","743429":"033","743435":"033","743437":"033","743438":"033","743439":"033","743442":"033","743445":"033","743446":"033","743456":"033","743502":"033","743503":"033","743504":"033","743513":"033","743609":"033","743610":"033","743611":"033","743613":"033","743701":"033","743702":"033","743704":"033","743710":"033","743711":"033","744101":"03192","744102":"03192","744103":"03192","744104":"03192","744105":"03192","744106":"03192","744107":"03192","744112":"03192","744201":"03192","744202":"03192","744203":"03192","744204":"03192","744205":"03192","744206":"03192","744207":"03192","744209":"03192","744210":"03192","744211":"03192","744301":"03193","744302":"03193","744303":"03193","744304":"03193","751001":"06755","751002":"06755","751003":"06755","751004":"06755","751005":"06755","751006":"06755","751007":"06755","751008":"06755","751009":"06755","751010":"06755","751011":"06755","751012":"06755","751013":"06755","751014":"06755","751015":"06755","751016":"06755","751017":"06755","751018":"06755","751019":"06755","751020":"06755","751021":"06755","751022":"06755","751023":"06755","751024":"06755","751025":"06755","751026":"06755","751027":"06755","751028":"06755","751029":"06755","751030":"06755","751031":"06755","751032":"06755","751033":"06755","751034":"06755","752001":"06752","752002":"06752","752003":"06752","752004":"06752","752010":"06752","752011":"06752","752012":"06752","752013":"06752","752014":"06752","752015":"06752","752016":"06752","752017":"06752","752018":"06755","752019":"06752","752020":"06755","752021":"06755","752022":"06755","752023":"06755","752024":"03223","752025":"03223","752026":"03223","752027":"06755","752030":"06752","752031":"06755","752032":"06752","752034":"06755","752035":"06755","752037":"06755","752038":"06755","752045":"06752","752046":"06752","752050":"06752","752054":"06755","752055":"06755","752056":"06755","752057":"06755","752060":"06755","752061":"06755","752062":"06755","752063":"03223","752064":"06755","752065":"03223","752066":"06755","752068":"03223","752069":"03223","752070":"03223","752077":"03223","752078":"03223","752079":"03223","752080":"03223","752081":"03223","752082":"03223","752083":"03223","752084":"03223","752085":"03223","752089":"03223","752090":"03223","752091":"03223","752092":"03223","752093":"03223","752094":"03223","752100":"06752","752101":"06755","752102":"06755","752103":"06755","752104":"06752","752105":"06752","752106":"06752","752107":"06752","752108":"06752","752109":"06752","752110":"06752","752111":"06752","752113":"06752","752114":"06752","752115":"06755","752116":"06752","752118":"06752","752119":"06752","752120":"06752","752121":"06752","753001":"0671","753002":"0671","753003":"0671","753004":"0671","753006":"0671","753007":"0671","753008":"0671","753009":"0671","753010":"0671","753011":"0671","753012":"0671","753013":"0671","753014":"0671","753015":"0671","753016":"0671","754001":"06755","754002":"0671","754003":"0671","754004":"06752","754005":"06755","754006":"0671","754007":"0671","754008":"0671","754009":"0671","754010":"0671","754011":"0671","754012":"06755","754013":"0671","754018":"0671","754021":"0671","754022":"0671","754023":"06726","754024":"06726","754025":"0671","754026":"0671","754027":"0671","754028":"0671","754029":"0671","754030":"0671","754031":"0671","754032":"0671","754034":"0671","754035":"0671","754037":"0671","754071":"0671","754082":"06726","754100":"0671","754102":"06724","754103":"06724","754104":"06724","754105":"0671","754106":"06724","754107":"06724","754108":"06724","754109":"06724","754110":"06724","754111":"06724","754112":"0671","754113":"06724","754114":"06724","754119":"06724","754120":"06724","754130":"0671","754131":"0671","754132":"06724","754133":"06724","754134":"06727","754135":"06727","754136":"06724","754137":"06724","754138":"06724","754139":"06724","754140":"06727","754141":"06727","754142":"06727","754143":"06724","754145":"06724","754153":"06727","754160":"06724","754162":"06727","754200":"0671","754201":"0671","754202":"0671","754203":"0671","754204":"0671","754205":"06726","754206":"0671","754207":"06727","754208":"06727","754209":"0671","754210":"06727","754211":"06727","754212":"06727","754213":"06727","754214":"06727","754215":"06727","754216":"06727","754217":"06622","754218":"06727","754219":"06727","754220":"06727","754221":"0671","754222":"06727","754223":"06727","754224":"06727","754225":"06727","754227":"06727","754228":"06727","754231":"06727","754239":"06727","754240":"06727","754244":"06727","754245":"06727","754246":"06727","754248":"06727","754250":"06727","754253":"06727","754289":"06727","754290":"0671","754292":"06727","754293":"0671","754294":"06724","754295":"0671","754296":"06726","754297":"0671","754298":"0671","755001":"06726","755003":"06726","755004":"06727","755005":"06726","755006":"06726","755007":"06726","755008":"06726","755009":"06726","755010":"06726","755011":"06726","755012":"06726","755013":"06726","755014":"06726","755015":"06726","755016":"06727","755017":"06726","755018":"06726","755019":"06728","755020":"06726","755022":"06726","755023":"06726","755024":"06726","755025":"06726","755026":"06726","755027":"06726","755028":"06726","755036":"06726","755043":"06726","755044":"06726","755049":"06726","755050":"06726","755051":"06726","755061":"06727","755062":"06726","756001":"06782","756002":"06782","756003":"06782","756019":"06782","756020":"06782","756021":"06782","756022":"06782","756023":"06782","756024":"06782","756025":"06782","756026":"06782","756027":"06782","756028":"06792","756029":"06782","756030":"06792","756032":"06782","756033":"06782","756034":"06782","756035":"06782","756036":"06782","756037":"06782","756038":"06782","756039":"06782","756040":"06782","756041":"06782","756042":"06782","756043":"06782","756044":"06782","756045":"06782","756046":"06784","756047":"06782","756048":"06782","756049":"06782","756051":"06782","756055":"06782","756056":"06782","756058":"06782","756059":"06782","756060":"06782","756079":"06782","756080":"06782","756081":"06782","756083":"06782","756084":"06782","756085":"06782","756086":"06782","756087":"06782","756088":"06782","756089":"06782","756100":"06784","756101":"06784","756111":"06784","756112":"06784","756113":"06784","756114":"06784","756115":"06784","756116":"06784","756117":"06784","756118":"06784","756119":"06784","756120":"06784","756121":"06766","756122":"06784","756123":"06784","756124":"06784","756125":"06784","756126":"06782","756127":"06784","756128":"06784","756129":"06784","756130":"06784","756131":"06784","756132":"06784","756133":"06784","756134":"06782","756135":"06784","756137":"06784","756138":"06784","756139":"06784","756144":"06784","756162":"06784","756163":"06784","756164":"06784","756165":"06784","756166":"06782","756167":"06784","756168":"06784","756171":"06784","756181":"06784","756182":"06782","757001":"06792","757002":"06792","757003":"06792","757014":"06792","757016":"06792","757017":"06792","757018":"06792","757019":"06792","757020":"06792","757021":"06792","757022":"06792","757023":"06792","757024":"06792","757025":"06792","757026":"06792","757027":"06792","757028":"06792","757029":"06792","757030":"06792","757031":"06792","757032":"06792","757033":"06792","757034":"06792","757035":"06792","757036":"06792","757037":"06792","757038":"06792","757039":"06792","757040":"06792","757041":"06792","757042":"06792","757043":"06792","757045":"06792","757046":"06792","757047":"06792","757048":"06792","757049":"06792","757050":"06792","757051":"06792","757052":"06792","757053":"06792","757054":"06792","757055":"06792","757073":"06792","757074":"06792","757075":"06792","757077":"06792","757079":"06792","757081":"06792","757082":"06792","757083":"06792","757084":"06792","757085":"06792","757086":"06792","757087":"06792","757091":"06792","757092":"06792","757093":"06792","757100":"06792","757101":"06792","757102":"06792","757103":"06792","757104":"06792","757105":"06792","757106":"06792","757107":"06792","758001":"06766","758002":"06766","758013":"06766","758014":"06766","758015":"06766","758016":"06766","758017":"06766","758018":"06766","758019":"06766","758020":"06766","758021":"06766","758022":"06766","758023":"06766","758025":"06766","758026":"06766","758027":"06766","758028":"06766","758029":"06766","758030":"06766","758031":"06766","758032":"06766","758034":"06766","758035":"06766","758036":"06766","758037":"06766","758038":"06766","758040":"06766","758041":"06766","758043":"06766","758044":"06766","758045":"06766","758046":"06766","758047":"06766","758076":"06766","758078":"06766","758079":"06766","758080":"06766","758081":"06766","758082":"06766","758083":"06766","758084":"06766","758085":"06766","758086":"06766","758087":"06766","759001":"06762","759013":"06762","759014":"06762","759015":"06762","759016":"06762","759017":"06762","759018":"06762","759019":"06762","759020":"06762","759021":"06762","759022":"06762","759023":"06762","759024":"06762","759025":"06762","759026":"06762","759027":"06762","759028":"06762","759029":"06762","759037":"06764","759039":"06762","759040":"06764","759100":"06764","759101":"06764","759102":"06764","759103":"06764","759104":"06764","759105":"06764","759106":"06764","759107":"06764","759111":"06764","759116":"06764","759117":"06764","759118":"06764","759119":"06764","759120":"06762","759121":"06762","759122":"06762","759123":"06764","759124":"06764","759125":"06764","759126":"06764","759127":"06764","759128":"06762","759129":"06764","759130":"06764","759132":"06764","759141":"06764","759143":"06764","759145":"06764","759146":"06762","759147":"06764","759148":"06764","759149":"06764","759151":"06762","760001":"06811","760002":"06811","760003":"06811","760004":"06811","760005":"06811","760006":"06811","760007":"06811","760008":"06811","760009":"06811","760010":"06811","760011":"06811","761001":"06811","761002":"06811","761003":"06811","761004":"06811","761005":"06811","761006":"06811","761007":"06811","761008":"06811","761009":"06811","761010":"06811","761011":"06811","761012":"06811","761013":"06811","761014":"06811","761015":"06815","761016":"06815","761017":"06815","761018":"06811","761019":"06811","761020":"06811","761025":"06811","761026":"06811","761027":"06811","761028":"06811","761029":"06811","761030":"06811","761031":"06811","761032":"06811","761035":"06811","761037":"06811","761041":"06811","761042":"06811","761043":"06811","761045":"06811","761052":"06811","761054":"06811","761055":"06811","761100":"06811","761101":"06811","761102":"06811","761103":"06811","761104":"06811","761105":"06811","761106":"06811","761107":"06811","761108":"06842","761109":"06811","761110":"06811","761111":"06811","761114":"06811","761115":"06811","761116":"06811","761117":"06811","761118":"06811","761119":"06811","761120":"06811","761121":"06811","761122":"06811","761123":"06811","761124":"06811","761125":"06842","761126":"06811","761131":"06811","761132":"06811","761133":"06811","761140":"06811","761141":"06811","761143":"06811","761144":"06811","761146":"06811","761151":"06842","761200":"06815","761201":"06815","761206":"06815","761207":"06815","761208":"06815","761209":"06811","761210":"06815","761211":"06815","761212":"06815","761213":"06815","761214":"06815","761215":"06815","761217":"06815","762001":"06842","762002":"06842","762010":"06842","762011":"06842","762012":"06842","762013":"06841","762014":"06841","762015":"06841","762016":"06841","762017":"06841","762018":"06841","762019":"06842","762020":"06841","762021":"06842","762022":"06842","762023":"06841","762024":"06841","762026":"06841","762027":"06842","762028":"06842","762029":"06842","762030":"06841","762100":"06842","762101":"06842","762102":"06842","762103":"06842","762104":"06842","762105":"06842","762106":"06842","762107":"06842","762109":"06842","762110":"06842","762112":"06842","763001":"06852","763002":"06852","763003":"06852","763004":"06852","763008":"06852","764001":"06852","764002":"06858","764003":"06852","764004":"06852","764005":"06852","764006":"06852","764011":"06852","764014":"06852","764020":"06852","764021":"06852","764027":"06852","764028":"06852","764036":"06852","764037":"06852","764038":"06852","764039":"06852","764040":"06852","764041":"06852","764042":"06852","764043":"06852","764044":"06861","764045":"06861","764046":"06861","764047":"06861","764048":"06861","764049":"06858","764051":"06861","764052":"06861","764055":"06852","764056":"06852","764057":"06852","764058":"06852","764059":"06858","764061":"06858","764062":"06856","764063":"06858","764070":"06858","764071":"06858","764072":"06858","764073":"06858","764074":"06858","764075":"06858","764076":"06858","764077":"06858","764078":"06858","764081":"06852","764085":"06858","764086":"06861","764087":"06861","764088":"06858","765001":"06856","765002":"06856","765013":"06852","765015":"06856","765016":"06856","765017":"06856","765018":"06856","765019":"06856","765020":"06856","765021":"06856","765022":"06856","765023":"06856","765024":"06856","765025":"06856","765026":"06856","765029":"06856","765033":"06856","765034":"06856","766001":"06670","766002":"06670","766003":"06670","766011":"06670","766012":"06670","766013":"06670","766014":"06670","766015":"06670","766016":"06670","766017":"06670","766018":"06670","766019":"06670","766020":"06670","766023":"06670","766026":"06670","766027":"06670","766028":"06670","766029":"06670","766031":"06670","766032":"06670","766036":"06670","766037":"06670","766100":"06670","766101":"06670","766102":"06670","766103":"06670","766104":"06678","766105":"06678","766106":"06678","766107":"06678","766108":"06678","766110":"06670","766111":"06678","766118":"06678","767001":"06652","767002":"06652","767016":"06158","767017":"06158","767018":"06158","767019":"06158","767020":"06158","767021":"06652","767022":"06652","767023":"06158","767024":"06652","767025":"06652","767026":"06652","767027":"06652","767028":"06652","767029":"06652","767030":"06652","767032":"06652","767033":"06652","767035":"06652","767037":"06652","767038":"06652","767039":"06652","767040":"06752","767041":"06652","767042":"06652","767045":"06158","767046":"06652","767048":"06652","767060":"06652","767061":"06652","767062":"06158","767065":"06652","767066":"06652","767067":"06652","767068":"06158","767070":"06652","767071":"06652","768001":"0663","768002":"0663","768003":"0663","768004":"0663","768005":"0663","768006":"0663","768016":"0663","768017":"0663","768018":"0663","768019":"0663","768020":"0663","768025":"0663","768027":"06646","768028":"06646","768029":"06646","768030":"06646","768031":"06646","768032":"06646","768033":"06646","768034":"06646","768035":"06646","768036":"06646","768037":"06646","768038":"06646","768039":"06646","768040":"06646","768042":"06646","768045":"06646","768048":"06646","768049":"06646","768050":"06646","768052":"06646","768053":"06646","768102":"06646","768103":"06646","768104":"06646","768105":"0663","768106":"0663","768107":"0663","768108":"02904","768109":"0663","768110":"02904","768111":"06646","768112":"0663","768113":"0663","768115":"06646","768118":"0663","768119":"02904","768121":"02904","768200":"0663","768201":"06645","768202":"06645","768203":"06645","768204":"06645","768210":"0663","768211":"06645","768212":"0663","768213":"06645","768214":"0663","768215":"06645","768216":"06645","768217":"06645","768218":"06645","768219":"06645","768220":"06645","768221":"0663","768222":"0663","768224":"0663","768225":"06645","768226":"06645","768227":"0663","768228":"06622","768233":"06645","768234":"06645","769001":"06622","769002":"06622","769003":"06622","769004":"06622","769005":"06622","769006":"06622","769007":"06622","769008":"06622","769009":"06622","769010":"06622","769011":"06622","769012":"06622","769013":"06622","769014":"06622","769015":"06622","769016":"06622","769042":"06622","769043":"06622","770001":"06622","770002":"06622","770011":"06622","770012":"06622","770013":"06622","770014":"06622","770015":"06622","770016":"06622","770017":"06622","770018":"06622","770019":"06622","770020":"06622","770021":"06622","770022":"06622","770023":"06622","770024":"06622","770025":"06622","770031":"06622","770032":"06622","770033":"06622","770034":"06622","770035":"06622","770036":"06622","770037":"06622","770038":"06622","770039":"06622","770040":"06622","770041":"06622","770042":"06622","770043":"06622","770044":"06622","770046":"06622","770048":"06622","770051":"06622","770052":"06622","770070":"06622","770072":"06622","770073":"06622","770074":"06622","770075":"06622","770076":"06622","781001":"0361","781002":"0361","781003":"0361","781004":"0361","781005":"0361","781006":"0361","781007":"0361","781008":"0361","781009":"0361","781010":"0361","781011":"0361","781012":"0361","781013":"0361","781014":"0361","781015":"0361","781016":"0361","781017":"0361","781018":"0361","781019":"0361","781020":"0361","781021":"0361","781022":"0361","781023":"0361","781024":"0361","781025":"0361","781026":"0361","781027":"0361","781028":"0361","781029":"03622","781030":"0361","781031":"0361","781032":"0361","781034":"0361","781035":"0361","781036":"0361","781037":"0361","781038":"0361","781039":"0361","781040":"0361","781101":"0361","781102":"0361","781103":"0361","781104":"0361","781120":"0361","781121":"0361","781122":"0361","781123":"0361","781124":"0361","781125":"0361","781126":"03624","781127":"0361","781128":"0361","781129":"0361","781131":"03622","781132":"0361","781133":"0361","781134":"0361","781135":"0361","781136":"0361","781137":"0361","781138":"03624","781141":"0361","781150":"0361","781171":"0361","781301":"03666","781302":"03666","781303":"03624","781304":"03624","781305":"03666","781306":"03624","781307":"03666","781308":"03666","781309":"03666","781310":"03624","781311":"03666","781312":"03624","781313":"03666","781314":"03666","781315":"03666","781316":"03666","781317":"03666","781318":"03666","781319":"03666","781320":"03623","781321":"03666","781325":"03666","781326":"03666","781327":"03624","781328":"03666","781329":"03666","781330":"03624","781333":"03624","781334":"03624","781335":"03624","781337":"03624","781338":"03624","781339":"03624","781340":"03624","781341":"03624","781343":"03624","781344":"03624","781346":"03624","781347":"03624","781348":"03624","781349":"03624","781350":"03624","781351":"03624","781352":"03666","781353":"03624","781354":"0361","781355":"03624","781360":"03624","781364":"03624","781365":"0361","781366":"03624","781367":"03624","781368":"03624","781369":"03624","781370":"03624","781371":"03624","781372":"03624","781373":"03624","781374":"03624","781375":"03666","781376":"0361","781377":"03624","781378":"03624","781380":"0361","781381":"0361","781382":"0361","782001":"03672","782002":"03672","782003":"03672","782101":"03672","782102":"03672","782103":"03672","782104":"03670","782105":"03670","782106":"03672","782120":"03672","782121":"03670","782122":"03672","782123":"03672","782124":"03672","782125":"03672","782126":"03672","782127":"03670","782128":"03672","782135":"03672","782136":"03672","782137":"03672","782138":"03672","782139":"03672","782140":"03672","782141":"03672","782142":"03672","782143":"03672","782144":"03672","782401":"0361","782402":"0361","782403":"0361","782410":"03622","782411":"03670","782412":"03670","782413":"03675","782425":"03672","782426":"03672","782427":"03672","782428":"03674","782429":"03674","782435":"03675","782439":"03674","782440":"03674","782441":"03675","782442":"03674","782445":"03674","782446":"03674","782447":"03675","782448":"03675","782450":"03675","782460":"03675","782461":"03675","782462":"03675","782470":"03675","782480":"03675","782481":"03675","782482":"03675","782485":"03675","782486":"03675","782490":"03675","783101":"03663","783120":"03663","783122":"03663","783123":"03663","783124":"03663","783125":"03663","783126":"03663","783127":"03662","783128":"03662","783129":"03663","783130":"03663","783131":"03662","783132":"03663","783133":"03663","783134":"03663","783135":"03662","783301":"03662","783323":"03662","783324":"03662","783325":"03662","783330":"03662","783331":"03661","783332":"03661","783333":"03661","783334":"03662","783335":"03662","783336":"03661","783337":"03662","783339":"03662","783345":"03661","783346":"03661","783347":"03661","783348":"03662","783349":"03661","783350":"03661","783354":"03661","783360":"03661","783361":"03661","783369":"03661","783370":"03661","783371":"03662","783372":"03664","783373":"03661","783375":"03664","783376":"03661","783380":"03664","783381":"03664","783382":"03664","783383":"03664","783384":"03664","783385":"03664","783388":"03664","783389":"03664","783390":"03664","783391":"03664","783392":"03664","783393":"03664","783394":"03664","784001":"03712","784010":"03712","784025":"03712","784026":"03712","784027":"03712","784028":"03712","784101":"03712","784102":"03712","784103":"03712","784104":"03712","784105":"03712","784110":"03712","784111":"03712","784112":"03712","784113":"03711","784114":"03711","784115":"03713","784116":"03713","784117":"03712","784125":"03713","784144":"03713","784145":"03713","784146":"03713","784147":"03713","784148":"03713","784149":"03712","784150":"03712","784153":"03712","784154":"03712","784160":"05872","784161":"05872","784163":"05872","784164":"05872","784165":"05872","784166":"03715","784167":"03715","784168":"03715","784169":"03715","784170":"03715","784171":"03715","784172":"03715","784173":"03715","784174":"03715","784175":"03715","784176":"03715","784177":"03715","784178":"03715","784179":"03715","784180":"03712","784182":"03712","784184":"03715","784189":"03715","784190":"03711","784501":"03712","784502":"03712","784504":"03712","784505":"03712","784506":"03712","784507":"03711","784508":"03711","784509":"03711","784510":"03711","784513":"03711","784514":"03711","784521":"03711","784522":"03711","784523":"03711","784524":"03711","784525":"03711","784526":"03711","784527":"03711","784528":"03711","784529":"03713","785001":"0376","785004":"0376","785006":"0376","785007":"0376","785008":"0376","785009":"0376","785010":"0376","785013":"0376","785014":"0376","785015":"0376","785101":"0376","785102":"03775","785104":"03775","785105":"03775","785106":"03775","785107":"0376","785108":"0376","785110":"03775","785111":"0376","785112":"0376","785601":"03774","785602":"03774","785603":"03774","785609":"03774","785610":"03774","785611":"03774","785612":"03774","785613":"03774","785614":"03775","785615":"03774","785616":"0376","785618":"03774","785619":"03774","785621":"03774","785622":"03774","785625":"03774","785626":"03774","785630":"0376","785631":"0376","785632":"0376","785633":"0376","785634":"0376","785635":"0376","785636":"0376","785640":"03772","785661":"03772","785662":"03772","785663":"03772","785664":"03772","785665":"03772","785666":"03772","785667":"03772","785669":"03772","785670":"03842","785671":"03772","785672":"03772","785673":"03842","785674":"03772","785675":"0373","785676":"0373","785680":"03772","785681":"03772","785682":"03772","785683":"03772","785684":"03772","785685":"03772","785686":"03772","785687":"03772","785688":"03842","785689":"03842","785690":"03842","785691":"03842","785692":"03842","785693":"03842","785696":"03772","785697":"03772","785698":"03842","785699":"03774","785700":"0376","785701":"03772","785702":"03774","785703":"0376","785704":"0376","785705":"03774","786001":"0373","786002":"0373","786003":"0373","786004":"0373","786005":"0373","786006":"0373","786007":"0373","786008":"0373","786010":"0373","786012":"0373","786101":"0373","786102":"0373","786103":"0373","786125":"0374","786126":"0374","786145":"0374","786146":"0374","786147":"0374","786148":"0374","786150":"0374","786151":"0374","786152":"0374","786153":"0374","786154":"0374","786155":"0374","786156":"0374","786157":"0374","786158":"0374","786159":"0374","786160":"0374","786170":"0374","786171":"0374","786173":"0374","786174":"0374","786179":"0374","786181":"0374","786182":"0374","786183":"0374","786184":"0373","786187":"0374","786188":"0374","786189":"0374","786190":"0374","786191":"0373","786192":"0374","786601":"0374","786602":"0373","786610":"0373","786611":"0373","786612":"0373","786613":"0373","786614":"0373","786621":"0373","786622":"0373","786623":"0373","786692":"0373","787001":"05872","787023":"05872","787026":"03753","787031":"05872","787032":"05872","787033":"05872","787034":"03753","787035":"03753","787051":"05872","787052":"03775","787053":"05872","787054":"05872","787055":"05872","787056":"05872","787057":"03753","787058":"05872","787059":"03753","787060":"03753","787061":"03753","787110":"03753","788001":"03842","788002":"03842","788003":"03842","788004":"03842","788005":"03842","788006":"03842","788007":"03842","788009":"03842","788010":"03842","788011":"03842","788013":"03842","788014":"03842","788015":"03842","788025":"03842","788026":"03842","788030":"03842","788031":"03842","788098":"03842","788099":"03842","788101":"03842","788102":"03842","788103":"03842","788104":"03842","788106":"03842","788107":"03673","788108":"03673","788109":"03842","788110":"03842","788111":"03842","788112":"03842","788113":"03842","788114":"03842","788115":"03842","788116":"03842","788117":"03842","788118":"03842","788119":"03842","788120":"03842","788121":"03842","788123":"03842","788126":"03842","788127":"03842","788150":"03844","788151":"03844","788152":"03843","788155":"03844","788156":"03843","788160":"03844","788161":"03844","788162":"03844","788163":"03844","788164":"03844","788165":"03844","788166":"03843","788168":"03844","788701":"03843","788709":"03843","788710":"03843","788711":"03843","788712":"03843","788713":"03843","788719":"03843","788720":"03843","788722":"03843","788723":"03843","788724":"03843","788725":"03843","788726":"03843","788727":"03843","788728":"03843","788733":"03843","788734":"03843","788735":"03843","788736":"03843","788737":"03843","788738":"03844","788781":"03843","788801":"03844","788802":"03844","788803":"03843","788804":"03842","788805":"03842","788806":"03843","788815":"03842","788816":"03842","788817":"03842","788818":"03673","788819":"03673","788820":"03673","788830":"03673","788831":"03673","788832":"03673","788931":"03673","790001":"03782","790002":"03782","790003":"03782","790101":"03780","790102":"03778","790103":"03778","790104":"03794","790105":"03794","790106":"03794","790114":"03782","790116":"03780","791001":"03783","791002":"03777","791003":"03796","791101":"03783","791102":"0360","791103":"03777","791104":"0368","791105":"03777","791109":"0360","791110":"0360","791111":"0360","791112":"0360","791113":"0360","791114":"0360","791118":"03788","791119":"0360","791120":"03788","791121":"0360","791122":"03792","791123":"0360","791125":"0360","792001":"03806","792055":"03808","792056":"03808","792101":"03803","792102":"03806","792103":"03806","792104":"03804","792105":"03806","792110":"03803","792111":"03806","792120":"03808","792121":"03808","792122":"03808","792123":"03808","792129":"03786","792130":"03786","792131":"03786","793001":"0364","793002":"0364","793003":"0364","793004":"0364","793005":"0364","793006":"0364","793007":"0364","793008":"0364","793009":"0364","793010":"0364","793011":"0364","793012":"0364","793014":"0364","793015":"0364","793016":"0364","793017":"0364","793018":"0364","793019":"0364","793021":"0364","793022":"0364","793101":"03622","793102":"03622","793103":"03622","793104":"03622","793105":"03622","793106":"03655","793107":"0364","793108":"0364","793109":"03651","793110":"0364","793111":"0364","793112":"0364","793113":"0364","793114":"03655","793115":"0364","793116":"03622","793119":"03656","793120":"03656","793121":"0364","793122":"03622","793123":"03622","793126":"03656","793150":"03651","793151":"03651","793160":"03651","793161":"03651","793200":"03651","793210":"03651","794001":"03651","794002":"03651","794003":"03651","794005":"03651","794101":"03651","794102":"03651","794103":"03651","794104":"03651","794105":"03651","794106":"03651","794107":"03651","794108":"03651","794109":"03651","794110":"03651","794111":"03651","794112":"03651","794114":"03651","794115":"03651","795001":"0385","795002":"03880","795003":"0385","795004":"0385","795005":"0385","795006":"03878","795007":"03878","795008":"0385","795009":"0385","795010":"03880","795011":"03874","795101":"03848","795102":"03872","795103":"03848","795104":"03878","795105":"03878","795106":"03878","795107":"03880","795112":"03880","795113":"03880","795114":"03880","795115":"03877","795116":"03874","795117":"03874","795118":"03880","795122":"03880","795124":"03874","795125":"03877","795126":"0377","795127":"03872","795128":"03874","795129":"03880","795130":"03848","795131":"03872","795132":"03848","795133":"03874","795134":"03880","795135":"03872","795136":"03880","795138":"03848","795139":"03874","795140":"0385","795141":"03877","795142":"03845","795144":"03845","795145":"03845","795146":"03877","795147":"0377","795148":"03848","795149":"03848","795150":"03878","795159":"0377","796001":"0389","796004":"0389","796005":"0389","796007":"0389","796008":"0389","796009":"0389","796012":"0389","796014":"0389","796015":"03837","796017":"0389","796036":"0389","796070":"03837","796075":"03837","796081":"0389","796091":"03837","796101":"03837","796111":"0389","796161":"03838","796181":"03838","796184":"03838","796186":"03838","796190":"0389","796230":"0389","796261":"03838","796290":"0389","796310":"03838","796320":"03831","796321":"03831","796370":"03838","796410":"0389","796421":"0389","796431":"0389","796441":"0389","796470":"0389","796471":"0389","796501":"0389","796571":"0372","796581":"0372","796691":"0372","796701":"0372","796710":"0372","796751":"0372","796770":"0372","796772":"03835","796810":"03835","796891":"03835","796901":"03835","797001":"0370","797002":"03870","797003":"0370","797004":"0370","797006":"0370","797099":"03860","797101":"03870","797103":"03870","797104":"03867","797105":"03867","797106":"03870","797107":"03865","797108":"03865","797109":"03867","797110":"03870","797111":"03860","797112":"03860","797113":"03862","797114":"03865","797115":"03862","797116":"03862","797117":"03862","797118":"03862","797120":"0370","797121":"0370","798601":"03867","798602":"03869","798603":"03869","798604":"0369","798607":"0369","798611":"03863","798612":"03861","798613":"0369","798614":"0369","798615":"0369","798616":"03861","798618":"0369","798620":"03867","798621":"03869","798622":"03869","798623":"0369","798625":"03869","798627":"03867","799001":"0381","799002":"0381","799003":"0381","799004":"0381","799005":"0381","799006":"0381","799007":"0381","799008":"0381","799009":"0381","799010":"0381","799011":"0381","799012":"0381","799013":"03821","799014":"0381","799015":"0381","799022":"0381","799035":"0381","799045":"0381","799046":"0381","799101":"03821","799102":"0381","799103":"0381","799104":"03821","799105":"0381","799113":"03821","799114":"03821","799115":"0381","799120":"03821","799125":"03823","799130":"0381","799131":"0381","799132":"0381","799141":"03823","799142":"03823","799143":"03823","799144":"03823","799145":"03823","799150":"03823","799153":"03823","799155":"03823","799156":"03823","799157":"03823","799201":"03825","799202":"03825","799203":"03825","799204":"03826","799205":"03825","799207":"03825","799210":"0381","799211":"0381","799212":"0381","799250":"03822","799251":"03822","799253":"03822","799254":"03822","799256":"03822","799260":"03822","799261":"03822","799262":"03822","799263":"03824","799264":"03824","799266":"03826","799269":"03822","799270":"03824","799271":"03822","799273":"03826","799275":"03826","799277":"03824","799278":"03826","799279":"03824","799280":"03824","799281":"03824","799282":"03824","799284":"03826","799285":"03826","799286":"03826","799287":"03826","799288":"03824","799289":"03826","799290":"03824","800001":"0612","800002":"0612","800003":"0612","800004":"0612","800005":"0612","800006":"0612","800007":"0612","800008":"0612","800009":"0612","800010":"0612","800011":"0612","800012":"0612","800013":"0612","800014":"0612","800015":"0612","800016":"0612","800017":"0612","800018":"0612","800019":"0612","800020":"0612","800021":"0612","800022":"0612","800023":"0612","800024":"0612","800025":"0612","800026":"0612","800027":"0612","800028":"0612","800030":"0612","801102":"0612","801103":"0612","801104":"0612","801105":"0612","801106":"0612","801108":"0612","801109":"0612","801110":"0612","801111":"0612","801112":"0612","801113":"0612","801301":"06112","801302":"06324","801303":"06112","801304":"0612","801305":"0612","801306":"06112","801307":"06112","801503":"0612","801505":"0612","801506":"0612","801507":"0612","802101":"06183","802102":"06183","802103":"06183","802111":"06183","802112":"06183","802113":"06183","802114":"06183","802115":"06183","802116":"06183","802117":"06183","802118":"06183","802119":"06183","802120":"06183","802122":"06183","802123":"06183","802125":"06183","802126":"06183","802127":"06183","802128":"06183","802129":"06183","802130":"06183","802131":"06183","802132":"06189","802133":"06183","802134":"06183","802135":"06183","802136":"06183","802152":"06182","802154":"06182","802155":"06182","802156":"06182","802157":"06182","802158":"06182","802159":"06182","802160":"0612","802161":"06182","802162":"06182","802163":"06182","802164":"06182","802165":"06182","802166":"06182","802183":"06182","802201":"06182","802202":"06182","802203":"06182","802204":"06188","802205":"06188","802206":"06182","802207":"06182","802208":"06182","802209":"06182","802210":"06182","802211":"06188","802212":"06188","802213":"06188","802214":"06188","802215":"06188","802216":"06188","802217":"06188","802218":"06188","802219":"06188","802220":"06188","802221":"06188","802222":"06182","802223":"06182","802226":"06188","802301":"06182","802302":"06182","802311":"06182","802312":"06182","802313":"06182","802314":"06182","802316":"06182","802351":"06182","802352":"06182","803101":"06112","803107":"06112","803108":"06112","803109":"06112","803110":"0612","803111":"06112","803113":"06112","803114":"06112","803115":"06112","803116":"06112","803117":"06112","803118":"06112","803119":"06112","803120":"06112","803121":"06112","803201":"0612","803202":"0612","803203":"0612","803211":"0612","803212":"0612","803213":"0612","803214":"0612","803215":"0612","803216":"06112","803221":"0612","803301":"0612","803302":"0612","803303":"0612","803306":"0612","803307":"0612","804401":"0612","804402":"06337","804403":"06114","804404":"0631","804405":"06114","804406":"06114","804407":"06114","804408":"06114","804417":"06114","804418":"06114","804419":"06337","804420":"06114","804421":"06114","804422":"06114","804423":"06114","804424":"06114","804425":"06114","804426":"06337","804427":"06114","804428":"06337","804429":"06114","804432":"06114","804435":"0631","804451":"0612","804452":"0612","804453":"0612","804454":"0612","805101":"06324","805102":"06324","805103":"06324","805104":"06324","805105":"06112","805106":"06324","805107":"06324","805108":"06324","805109":"06324","805110":"06324","805111":"06324","805112":"06324","805113":"06324","805114":"06324","805121":"06324","805122":"06324","805123":"06324","805124":"06324","805125":"06324","805126":"06324","805127":"06324","805128":"0631","805129":"06324","805130":"06324","805131":"0631","805132":"06324","811101":"06341","811102":"06341","811103":"06341","811104":"0612","811105":"06341","811106":"06346","811107":"06341","811112":"06346","811201":"06344","811202":"06344","811211":"06344","811212":"06344","811213":"06344","811214":"06344","811301":"06345","811302":"06346","811303":"06345","811304":"06341","811305":"06345","811307":"06345","811308":"06345","811309":"06346","811310":"06346","811311":"06346","811312":"06345","811313":"06345","811314":"06345","811315":"06341","811316":"06345","811317":"06345","812001":"0641","812002":"0641","812003":"0641","812004":"0641","812005":"0641","812006":"0641","812007":"0641","813101":"0641","813102":"06473","813103":"06424","813104":"06424","813105":"0641","813106":"06424","813107":"06424","813108":"0641","813109":"06424","813110":"06424","813201":"06344","813202":"06424","813203":"0641","813204":"0641","813205":"0641","813206":"06422","813207":"06424","813208":"06436","813209":"06452","813210":"0641","813211":"06424","813212":"06344","813213":"06344","813214":"0641","813221":"06344","813222":"0641","814101":"06434","814102":"06434","814103":"06434","814110":"06434","814111":"06435","814112":"06432","814113":"06432","814114":"06432","814115":"06432","814116":"06432","814118":"06434","814119":"06434","814120":"06434","814131":"06424","814133":"06422","814141":"06434","814142":"06432","814143":"06432","814144":"06434","814145":"06434","814146":"06434","814147":"06422","814148":"06434","814149":"06432","814150":"06432","814151":"06434","814152":"06432","814153":"06422","814154":"06422","814155":"06422","814156":"06422","814157":"06432","814158":"06434","814160":"06422","814165":"06422","814166":"06433","814167":"06434","815301":"06532","815302":"06532","815311":"06532","815312":"06532","815313":"06532","815314":"06532","815315":"06532","815316":"06532","815317":"06532","815318":"06532","815351":"06433","815352":"06433","815353":"06432","815354":"06433","815355":"06433","815357":"06432","815359":"06433","816101":"06436","816102":"06436","816103":"06435","816104":"06436","816105":"06436","816106":"06435","816107":"06435","816108":"06436","816109":"06436","816110":"06436","816115":"06436","816116":"06436","816117":"06435","816118":"06434","816120":"06436","816129":"06436","821101":"06189","821102":"06189","821103":"06189","821104":"06188","821105":"06189","821106":"06189","821107":"06188","821108":"06189","821109":"06189","821110":"06189","821111":"06188","821112":"06188","821113":"06188","821115":"06188","821301":"06188","821302":"06188","821303":"06188","821304":"06188","821305":"06188","821306":"06188","821307":"06188","821308":"06188","821309":"06188","821310":"06188","821311":"06188","821312":"06188","822101":"06562","822102":"06562","822110":"06562","822111":"06565","822112":"06565","822113":"06562","822114":"06561","822115":"06562","822116":"06562","822117":"06562","822118":"06562","822119":"06565","822120":"06562","822121":"06561","822122":"06562","822123":"06562","822124":"06562","822125":"06561","822126":"06562","822128":"06561","822129":"06561","822131":"06562","822132":"06562","822133":"06562","822134":"06561","823001":"0631","823002":"0631","823003":"0631","823004":"0631","823005":"0631","823311":"0631","824101":"0240","824102":"0240","824103":"0240","824111":"0240","824112":"0240","824113":"0240","824114":"0240","824115":"0240","824116":"0631","824118":"0631","824120":"0240","824121":"0240","824122":"0240","824123":"0240","824124":"0240","824125":"0240","824127":"0240","824129":"0240","824143":"0240","824201":"0631","824202":"0240","824203":"0240","824205":"0631","824206":"0631","824207":"0631","824208":"0240","824209":"0631","824210":"0631","824211":"0631","824217":"0631","824219":"0631","824220":"0631","824221":"0631","824231":"0631","824232":"0631","824233":"06114","824234":"0631","824235":"0631","824236":"0631","824237":"0631","824301":"0240","824302":"0240","824303":"0240","824304":"0240","825101":"06553","825102":"06542","825103":"06541","825106":"06532","825108":"06532","825109":"06534","825132":"06534","825167":"06532","825301":"06546","825302":"06546","825303":"06546","825311":"06546","825312":"06546","825313":"06546","825314":"06553","825315":"06546","825316":"06553","825317":"06546","825318":"06534","825319":"06546","825320":"06532","825321":"06541","825322":"06546","825323":"06546","825324":"06532","825325":"06553","825326":"06553","825329":"06532","825330":"06553","825336":"06546","825401":"06541","825402":"06546","825403":"06541","825404":"06541","825405":"06546","825406":"06546","825407":"06534","825408":"06541","825409":"06534","825410":"06534","825411":"06553","825412":"06532","825413":"06534","825414":"06541","825415":"06541","825418":"06534","825421":"06534","826001":"0326","826003":"0326","826004":"0326","826005":"0326","826006":"0326","826007":"0326","826008":"0326","826009":"0326","826010":"0326","826011":"0326","827001":"06542","827003":"06542","827004":"06542","827006":"06542","827009":"06542","827010":"06542","827012":"06542","827013":"06542","827014":"06542","827015":"06542","827016":"06542","827302":"06542","828101":"0326","828103":"0326","828104":"0326","828105":"0326","828106":"0326","828107":"0326","828108":"0326","828109":"0326","828110":"0326","828111":"0326","828112":"0326","828113":"0326","828114":"0326","828115":"0326","828116":"0326","828117":"0326","828119":"0326","828120":"0326","828121":"0326","828122":"0326","828123":"0326","828124":"0326","828125":"0326","828126":"0326","828127":"0326","828128":"0326","828129":"0326","828130":"0326","828131":"0326","828132":"0326","828133":"0326","828134":"06542","828135":"0326","828142":"0326","828201":"0326","828202":"0326","828203":"0326","828204":"0326","828205":"0326","828206":"0326","828207":"0326","828301":"0326","828302":"0326","828303":"06542","828304":"0326","828305":"0326","828306":"0326","828307":"0326","828309":"0326","828401":"0326","828402":"0326","828403":"06542","828404":"06542","829101":"06553","829102":"06553","829103":"06553","829104":"06542","829105":"06553","829106":"06553","829107":"06542","829108":"06553","829109":"06553","829110":"06553","829111":"06542","829112":"06542","829113":"06542","829114":"06542","829116":"06542","829117":"06553","829118":"06553","829119":"06553","829121":"06542","829122":"06553","829123":"06542","829125":"06553","829126":"06553","829127":"06542","829128":"06542","829129":"06553","829130":"06553","829131":"06553","829132":"06542","829133":"06553","829134":"06553","829135":"06553","829143":"06553","829144":"06542","829149":"06542","829150":"06553","829201":"06541","829202":"06565","829203":"06565","829204":"06565","829205":"0651","829206":"06565","829207":"06565","829208":"0651","829209":"0651","829210":"0651","829301":"06542","831001":"0657","831002":"06597","831003":"0657","831004":"0657","831005":"0657","831006":"0657","831007":"0657","831009":"0657","831011":"0657","831012":"06597","831013":"06597","831014":"06597","831015":"0657","831016":"0657","831017":"0657","831019":"0657","831020":"0657","831021":"0657","832101":"0657","832102":"0657","832103":"0657","832104":"0657","832105":"0657","832106":"0657","832107":"06597","832108":"06597","832109":"06597","832111":"0657","832112":"0657","832113":"0657","832301":"0657","832302":"06582","832303":"0657","832304":"0657","832401":"06597","832402":"06597","832403":"06597","832404":"06597","833101":"06597","833102":"06582","833103":"06582","833104":"06582","833105":"06582","833106":"06582","833201":"06582","833202":"06582","833203":"06582","833204":"06582","833212":"06582","833213":"06582","833214":"06582","833215":"06582","833216":"06597","833217":"06582","833218":"06582","833219":"06597","833220":"06597","833221":"06582","833222":"06582","833223":"06582","834001":"0651","834002":"0651","834003":"0651","834004":"0651","834005":"0651","834006":"0651","834007":"0651","834008":"0651","834009":"0651","834010":"0651","834011":"0651","834012":"0651","834013":"0651","834014":"0651","835101":"0651","835102":"0651","835103":"0651","835201":"06525","835202":"0651","835203":"0651","835204":"0651","835205":"0651","835206":"06524","835207":"06524","835208":"06524","835209":"06528","835210":"06528","835211":"06525","835212":"06525","835213":"0651","835214":"0651","835215":"0651","835216":"06582","835217":"0651","835218":"06565","835219":"0651","835220":"06524","835221":"0651","835222":"0651","835223":"06525","835224":"06524","835225":"0651","835226":"06525","835227":"06582","835228":"06525","835229":"06524","835230":"06524","835231":"06526","835232":"06524","835233":"06524","835234":"0651","835235":"06525","835301":"0651","835302":"06526","835303":"0651","835325":"0651","841101":"06152","841201":"06152","841202":"06152","841203":"06154","841204":"06152","841205":"06152","841206":"06152","841207":"06152","841208":"06152","841209":"06152","841210":"06154","841211":"06152","841212":"06152","841213":"06152","841214":"06152","841215":"06152","841216":"06152","841217":"06152","841218":"06152","841219":"06152","841220":"06152","841221":"06152","841222":"06152","841223":"06154","841224":"06152","841225":"06152","841226":"06154","841227":"06154","841231":"06154","841232":"06154","841233":"06154","841234":"06154","841235":"06154","841236":"06154","841237":"06154","841238":"06154","841239":"06154","841240":"06154","841241":"06154","841242":"06154","841243":"06154","841244":"06154","841245":"06154","841286":"06154","841287":"06154","841301":"06152","841302":"06152","841305":"06152","841311":"06152","841312":"06152","841313":"06152","841316":"06152","841401":"06152","841402":"06152","841403":"06152","841404":"06154","841405":"07695","841406":"06154","841407":"07695","841408":"06154","841409":"07695","841410":"06152","841411":"06152","841412":"06152","841413":"06154","841414":"06152","841415":"06152","841416":"06154","841417":"06154","841418":"06152","841419":"06152","841420":"07695","841421":"06152","841422":"06152","841423":"07695","841424":"06152","841425":"07695","841426":"07695","841427":"07695","841428":"07695","841434":"06154","841435":"06154","841436":"06154","841437":"07695","841438":"07695","841439":"06154","841440":"07695","841441":"07695","841442":"06152","841443":"06152","841446":"06154","841447":"06154","841460":"06152","841501":"07695","841502":"06154","841503":"07695","841504":"06154","841505":"07695","841506":"06154","841507":"06154","841508":"07695","841509":"06154","842001":"0621","842002":"0621","842003":"0621","842004":"0621","842005":"0621","842006":"0621","843101":"0621","843102":"0621","843103":"0621","843104":"06224","843105":"0621","843106":"0621","843107":"0621","843108":"0621","843109":"0621","843110":"06224","843111":"0621","843112":"0621","843113":"0621","843114":"06224","843115":"0621","843116":"06226","843117":"06226","843118":"0621","843119":"0621","843120":"0621","843121":"0621","843122":"0621","843123":"0621","843124":"0621","843125":"0621","843126":"0621","843127":"0621","843128":"06222","843129":"0621","843130":"0621","843131":"06222","843301":"06226","843302":"06226","843311":"06226","843312":"0621","843313":"06226","843314":"06226","843315":"06226","843316":"06226","843317":"06226","843318":"06226","843319":"06226","843320":"06226","843321":"0621","843322":"06226","843323":"06226","843324":"06226","843325":"06226","843326":"06226","843327":"06226","843328":"06226","843329":"06222","843330":"06226","843331":"06226","843332":"06226","843333":"06226","843334":"06222","843335":"06222","843360":"0621","844101":"06224","844102":"06224","844103":"06224","844111":"06224","844112":"06224","844113":"06224","844114":"06224","844115":"06224","844116":"06224","844117":"06224","844118":"06224","844119":"06224","844120":"0621","844121":"06224","844122":"06224","844123":"06224","844124":"06224","844125":"06224","844126":"06224","844127":"0621","844128":"06224","844501":"06224","844502":"06224","844503":"06224","844504":"06224","844505":"06224","844506":"06224","844507":"06224","844508":"06224","844509":"06224","845101":"06254","845103":"06254","845104":"06254","845105":"06254","845106":"06254","845107":"06254","845301":"06252","845302":"06252","845303":"06252","845304":"06252","845305":"06252","845306":"06254","845307":"06254","845315":"06252","845401":"06252","845406":"06252","845411":"06252","845412":"06252","845413":"06252","845414":"06252","845415":"06252","845416":"06252","845417":"06252","845418":"06252","845419":"06252","845420":"06252","845422":"06252","845423":"06252","845424":"06252","845425":"06252","845426":"06252","845427":"06252","845428":"06252","845429":"06252","845430":"06252","845431":"06252","845432":"06252","845433":"06252","845434":"06252","845435":"06252","845436":"06252","845437":"06252","845438":"06254","845440":"06252","845449":"06254","845450":"06254","845451":"06254","845452":"06254","845453":"06254","845454":"06254","845455":"06254","845456":"06252","845457":"06252","845458":"06252","845459":"06254","846001":"06272","846002":"06272","846003":"06272","846004":"06272","846005":"06272","846006":"06272","846007":"06272","846008":"06272","846009":"06272","847101":"06272","847102":"06276","847103":"06272","847104":"06272","847105":"06274","847106":"06272","847107":"06272","847108":"06276","847109":"06276","847115":"06272","847121":"06272","847122":"06276","847123":"0621","847201":"06272","847202":"06272","847203":"06272","847204":"06272","847211":"06276","847212":"06276","847213":"06276","847214":"06276","847215":"06276","847222":"06276","847223":"06276","847224":"06276","847225":"06276","847226":"06276","847227":"06276","847228":"06276","847229":"06276","847230":"06276","847231":"06276","847232":"06276","847233":"06272","847234":"06276","847235":"06276","847236":"06276","847238":"06276","847239":"06276","847240":"06276","847301":"06274","847302":"06226","847303":"06272","847304":"06276","847305":"06276","847306":"06276","847307":"06226","847308":"06276","847337":"06276","847401":"06276","847402":"06276","847403":"06276","847404":"06276","847405":"06272","847407":"06276","847408":"06276","847409":"06276","847410":"06276","847411":"06276","847421":"06276","847422":"06272","847423":"06272","847424":"06276","847427":"06272","847428":"06272","847429":"06272","847451":"06473","847452":"06473","848101":"06274","848102":"06274","848113":"06274","848114":"06274","848115":"06274","848117":"06274","848121":"06274","848122":"06274","848125":"06274","848127":"06274","848129":"06274","848130":"06274","848131":"06274","848132":"06274","848133":"06274","848134":"06274","848160":"06274","848201":"06244","848202":"06243","848203":"06244","848204":"06243","848205":"06274","848206":"06274","848207":"06274","848208":"06274","848209":"06274","848210":"06274","848211":"06274","848213":"06272","848216":"06274","848236":"06274","848301":"06274","848302":"06274","848501":"06274","848502":"06274","848503":"06274","848504":"06274","848505":"06274","848506":"06274","851101":"06243","851111":"06243","851112":"06243","851113":"06243","851114":"06243","851115":"06243","851116":"06243","851117":"06243","851118":"06243","851120":"06243","851126":"06243","851127":"06243","851128":"06243","851129":"06243","851130":"06243","851131":"06243","851132":"06243","851133":"06243","851134":"06243","851135":"06243","851201":"06244","851202":"06244","851203":"06244","851204":"06244","851205":"06244","851206":"06244","851210":"06243","851211":"06243","851212":"06244","851213":"06244","851214":"06244","851215":"06244","851216":"06244","851217":"06243","851218":"06243","852101":"06454","852105":"06473","852106":"06478","852107":"06478","852108":"06473","852109":"06473","852110":"06473","852111":"06473","852112":"06476","852113":"06476","852114":"06476","852115":"06476","852116":"06454","852121":"06476","852122":"06454","852123":"06478","852124":"06478","852125":"06473","852126":"06478","852127":"06478","852128":"06476","852129":"06478","852130":"06473","852131":"06473","852132":"06473","852133":"06473","852137":"06473","852138":"06473","852139":"06473","852161":"06244","852201":"06478","852202":"06478","852212":"06478","852213":"06476","852214":"06473","852215":"06473","852216":"06478","852217":"06478","852218":"06473","852219":"06476","852220":"06476","852221":"06478","853201":"0641","853202":"0641","853203":"0641","853204":"06454","853205":"0641","854101":"06452","854102":"06454","854103":"06452","854104":"06452","854105":"06452","854106":"06452","854107":"06452","854108":"06452","854109":"06452","854112":"06452","854113":"06452","854114":"06452","854115":"06452","854116":"06452","854117":"06452","854201":"06454","854202":"06454","854203":"06454","854204":"06454","854205":"06454","854301":"06454","854302":"06454","854303":"06454","854304":"06454","854305":"06454","854306":"06454","854311":"06453","854312":"06453","854315":"06454","854316":"06453","854317":"06452","854318":"06453","854325":"06454","854326":"06454","854327":"06454","854328":"06453","854329":"06453","854330":"06454","854331":"06453","854332":"06453","854333":"07456","854334":"06454","854335":"06453","854336":"06453","854337":"06454","854338":"06473","854339":"06473","854340":"06473","855101":"07456","855102":"06452","855105":"06452","855106":"07456","855107":"07456","855108":"07456","855113":"06452","855114":"06452","855115":"07456","855116":"07456","855117":"07456","900056":"05564","900099":"033","999999":"08462"} \ No newline at end of file +{"110001":"011","110002":"011","110003":"011","110004":"011","110005":"011","110006":"011","110007":"011","110008":"011","110009":"011","110010":"011","110011":"011","110012":"011","110013":"011","110014":"011","110015":"011","110016":"011","110017":"011","110018":"011","110019":"011","110020":"011","110021":"011","110022":"011","110023":"011","110024":"011","110025":"011","110026":"011","110027":"011","110028":"011","110029":"011","110030":"011","110031":"011","110032":"011","110033":"011","110034":"011","110035":"011","110036":"011","110037":"011","110038":"011","110039":"011","110040":"011","110041":"011","110042":"011","110043":"011","110044":"011","110045":"011","110046":"011","110047":"011","110048":"011","110049":"011","110051":"011","110052":"011","110053":"011","110054":"011","110055":"011","110056":"011","110057":"011","110058":"011","110059":"011","110060":"011","110061":"011","110062":"011","110063":"011","110064":"011","110065":"011","110066":"011","110067":"011","110068":"011","110069":"011","110070":"011","110071":"011","110072":"011","110073":"011","110074":"011","110075":"011","110076":"011","110077":"011","110078":"011","110080":"011","110081":"011","110082":"011","110083":"011","110084":"011","110085":"011","110086":"011","110087":"011","110088":"011","110089":"011","110090":"011","110091":"011","110092":"011","110093":"011","110094":"011","110095":"011","110096":"011","110097":"011","110099":"011","110110":"011","121001":"0129","121002":"0129","121003":"0129","121004":"01275","121005":"0129","121006":"0129","121007":"0129","121008":"0129","121009":"0129","121010":"0129","121012":"0129","121013":"0129","121014":"0129","121015":"0129","121101":"0129","121102":"01275","121103":"01275","121105":"01275","121106":"01275","121107":"01275","122001":"0124","122002":"0124","122003":"0124","122004":"0124","122005":"0124","122006":"0124","122007":"0124","122008":"0124","122009":"0124","122010":"0124","122011":"0124","122012":"0124","122015":"0124","122016":"0124","122017":"0124","122018":"0124","122051":"0124","122052":"0124","122098":"0124","122101":"0124","122102":"0124","122103":"01267","122104":"01267","122105":"01267","122107":"01267","122108":"01267","122413":"0124","122414":"0124","122502":"01274","122503":"0124","122504":"0124","122505":"0124","122506":"0124","122508":"01267","123001":"01285","123021":"01285","123023":"01285","123024":"01285","123027":"01285","123028":"01285","123029":"01285","123031":"01285","123034":"01285","123035":"01274","123101":"01274","123102":"01274","123103":"01274","123106":"01274","123110":"01274","123301":"01274","123302":"01274","123303":"01274","123401":"01274","123411":"01274","123412":"01274","123501":"01274","124001":"01262","124010":"01262","124021":"01262","124022":"01262","124102":"01251","124103":"01251","124104":"01251","124105":"01251","124106":"01251","124107":"01251","124108":"01251","124109":"01251","124111":"01262","124112":"01262","124113":"01262","124141":"01251","124142":"01251","124146":"01251","124201":"01262","124202":"01262","124303":"01262","124401":"01262","124404":"01262","124406":"01262","124411":"01262","124412":"01262","124501":"01262","124504":"01251","124505":"01251","124506":"01251","124507":"01251","124508":"01251","124513":"01262","124514":"01262","125001":"01662","125004":"01662","125005":"01662","125006":"01662","125007":"01662","125011":"01662","125033":"01662","125037":"01662","125038":"01662","125039":"01662","125042":"01662","125044":"01662","125047":"01662","125048":"01667","125049":"01662","125050":"01662","125051":"01667","125052":"01662","125053":"01667","125054":"05334","125055":"05334","125056":"05334","125058":"05334","125060":"05334","125075":"05334","125076":"05334","125077":"05334","125078":"05334","125101":"05334","125102":"05334","125103":"05334","125104":"05334","125106":"01667","125110":"05334","125111":"01667","125112":"01662","125113":"01662","125120":"01667","125121":"01662","125133":"01667","125201":"05334","126101":"01681","126102":"01681","126110":"01681","126111":"01681","126112":"01681","126113":"01681","126114":"01681","126115":"01681","126116":"01681","126125":"01681","126152":"01681","127021":"01664","127022":"01250","127025":"01250","127026":"01250","127027":"01664","127028":"01664","127029":"01664","127030":"01664","127031":"01664","127032":"01664","127035":"01664","127040":"01664","127041":"01664","127042":"01250","127043":"01664","127045":"01664","127046":"01664","127111":"01664","127114":"01664","127201":"01664","127306":"01250","127307":"01250","127308":"01250","127309":"01664","127310":"01250","127311":"01664","127312":"01250","131001":"0130","131021":"0130","131022":"0130","131023":"0130","131024":"0130","131027":"0130","131028":"0130","131029":"0130","131030":"0130","131039":"0130","131101":"0130","131102":"0130","131103":"0130","131301":"0130","131302":"0130","131304":"0130","131305":"0130","131306":"0130","131402":"0130","131403":"0130","131408":"0130","131409":"0130","132001":"0184","132022":"0184","132023":"0184","132024":"0184","132036":"0184","132037":"0184","132039":"0184","132040":"0184","132041":"0184","132046":"0184","132054":"0184","132101":"0180","132102":"0180","132103":"0180","132104":"0180","132105":"0180","132106":"0180","132107":"0180","132108":"0180","132113":"0180","132114":"0184","132115":"0180","132116":"0184","132117":"0184","132122":"0180","132140":"0180","132145":"0180","132157":"0184","133001":"0171","133004":"0171","133005":"0171","133006":"0171","133008":"0171","133010":"0171","133101":"0171","133102":"0171","133103":"01732","133104":"0171","133201":"0171","133202":"01732","133203":"0171","133204":"01732","133205":"0171","133206":"01732","133207":"0171","133301":"0172","133302":"0172","134003":"0171","134005":"0171","134007":"0171","134008":"0171","134101":"0172","134102":"0172","134103":"0172","134104":"0172","134105":"0172","134107":"0172","134108":"0172","134109":"0172","134112":"0172","134113":"0172","134114":"0172","134116":"0172","134117":"0172","134118":"0172","134201":"0172","134202":"0171","134203":"0171","134204":"0172","134205":"0172","135001":"01732","135002":"01732","135003":"01732","135004":"01732","135021":"01732","135101":"01732","135102":"01732","135103":"01732","135106":"01732","135133":"01732","136020":"01746","136021":"01746","136026":"01746","136027":"01746","136030":"01744","136033":"01746","136034":"01746","136035":"01746","136038":"01744","136042":"01746","136043":"01746","136044":"01746","136117":"01746","136118":"01744","136119":"01744","136128":"01744","136129":"01744","136130":"01744","136131":"01744","136132":"01744","136134":"01744","136135":"01744","136136":"01744","136156":"01744","140001":"01881","140101":"01881","140102":"01881","140103":"0172","140108":"01881","140109":"0172","140110":"0172","140111":"01881","140112":"01881","140113":"01881","140114":"01881","140115":"01881","140116":"01881","140117":"01881","140118":"01881","140119":"01881","140123":"01881","140124":"01881","140125":"01881","140126":"01881","140127":"01881","140128":"01881","140133":"01881","140201":"0172","140301":"0172","140306":"0172","140307":"0172","140308":"0172","140401":"0175","140402":"0175","140405":"01763","140406":"01763","140407":"01763","140408":"01763","140412":"01763","140413":"0172","140417":"0175","140501":"0172","140506":"0172","140507":"0172","140601":"0172","140602":"0175","140603":"0172","140604":"0172","140701":"0175","140702":"0175","140802":"01763","140901":"0172","141001":"0161","141002":"0161","141003":"0161","141004":"0161","141006":"0161","141007":"0161","141008":"0161","141010":"0161","141011":"0161","141012":"0161","141013":"0161","141014":"0161","141015":"0161","141016":"0161","141017":"0161","141101":"0161","141102":"0161","141103":"0161","141104":"0161","141105":"0161","141106":"0161","141107":"0161","141108":"0161","141109":"0161","141110":"0161","141112":"0161","141113":"0161","141114":"0161","141115":"0161","141116":"0161","141117":"0161","141118":"0161","141119":"0161","141120":"0161","141121":"0161","141122":"0161","141123":"0161","141125":"0161","141126":"0161","141127":"0161","141201":"0161","141202":"0161","141203":"0161","141204":"0161","141205":"0161","141206":"0161","141401":"0161","141411":"01763","141412":"0161","141413":"0161","141414":"0161","141415":"0161","141416":"0161","141417":"0161","141418":"0161","141419":"0161","141421":"0161","141422":"0161","141801":"01763","142001":"01636","142002":"01636","142003":"01636","142011":"01636","142021":"0161","142022":"0161","142023":"0161","142024":"0161","142025":"0161","142026":"0161","142027":"0161","142028":"0161","142029":"0161","142030":"0161","142031":"0161","142032":"0161","142033":"0161","142034":"0161","142035":"0161","142036":"0161","142037":"01636","142038":"01636","142039":"01636","142040":"01636","142041":"01636","142042":"01636","142043":"01636","142044":"01632","142045":"01636","142046":"01636","142047":"01632","142048":"01636","142049":"01636","142050":"01632","142052":"01632","142053":"01636","142054":"01636","142055":"01636","142056":"01636","142057":"01636","142058":"01636","142060":"01632","143001":"0183","143002":"0183","143003":"0183","143004":"0183","143005":"0183","143006":"0183","143008":"0183","143009":"0183","143022":"0183","143101":"0183","143102":"0183","143103":"0183","143105":"0183","143107":"01852","143108":"0183","143109":"0183","143111":"0183","143112":"0183","143113":"0183","143114":"0183","143115":"0183","143116":"0183","143117":"01852","143118":"01852","143119":"0183","143149":"0183","143201":"0183","143202":"0183","143203":"0183","143204":"0183","143205":"0183","143301":"01852","143302":"01852","143303":"01852","143304":"01852","143305":"01852","143401":"01852","143402":"01852","143406":"01852","143407":"01852","143408":"01852","143409":"01852","143410":"01852","143411":"01852","143412":"01852","143413":"0183","143414":"01852","143415":"01852","143416":"01852","143419":"01852","143422":"01852","143501":"0183","143502":"0183","143504":"0183","143505":"01874","143506":"01874","143507":"01874","143511":"01874","143512":"01874","143513":"01874","143514":"01874","143515":"01874","143516":"01874","143517":"01874","143518":"01874","143519":"01874","143520":"01874","143521":"01874","143525":"0186","143526":"01874","143527":"01874","143528":"01874","143529":"01874","143530":"01874","143531":"0186","143532":"01874","143533":"0186","143534":"0186","143601":"0183","143602":"01874","143603":"0183","143604":"01874","143605":"01874","143606":"0183","144001":"0181","144002":"0181","144003":"0181","144004":"0181","144005":"0181","144006":"0181","144007":"0181","144008":"0181","144009":"0181","144010":"0181","144011":"0181","144012":"0181","144020":"0181","144021":"0181","144022":"0181","144023":"0181","144024":"0181","144025":"0181","144026":"0181","144027":"0181","144028":"0181","144029":"01823","144030":"0181","144031":"0181","144032":"0181","144033":"0181","144034":"0181","144035":"0181","144036":"0181","144037":"0181","144039":"0181","144040":"0181","144041":"0181","144042":"0181","144043":"0181","144044":"0181","144101":"0181","144102":"0181","144103":"0181","144104":"0181","144105":"01882","144106":"0181","144201":"0181","144202":"01882","144204":"01882","144205":"01882","144206":"01882","144207":"01882","144208":"01882","144209":"01882","144210":"01882","144211":"01882","144212":"01882","144213":"01882","144214":"01882","144216":"01882","144221":"01882","144222":"01882","144223":"01882","144224":"01882","144301":"0181","144302":"0181","144303":"0181","144305":"01882","144306":"01882","144311":"0181","144401":"01822","144402":"01822","144403":"01822","144404":"01882","144405":"01822","144406":"01882","144407":"01822","144408":"01822","144409":"0181","144410":"0181","144411":"01822","144415":"01823","144416":"0181","144417":"01823","144418":"0181","144419":"0181","144421":"01823","144422":"01823","144501":"01823","144502":"01823","144503":"01823","144504":"01823","144505":"01823","144506":"01823","144507":"01823","144508":"01823","144509":"01823","144510":"01823","144511":"01823","144512":"01823","144513":"01823","144514":"01823","144515":"01823","144516":"01823","144517":"01823","144518":"01823","144519":"01882","144520":"01882","144521":"01823","144522":"01823","144523":"01882","144524":"01823","144525":"01823","144526":"01823","144527":"01882","144528":"01882","144529":"01882","144530":"01882","144531":"01882","144532":"01882","144533":"01823","144601":"01822","144602":"01822","144603":"01822","144606":"01822","144620":"01822","144621":"01822","144622":"01822","144623":"01822","144624":"01822","144625":"01822","144626":"01822","144628":"01822","144629":"0181","144630":"0181","144631":"01822","144632":"01823","144633":"0181","144701":"0181","144702":"0181","144703":"0181","144801":"0181","144802":"01822","144803":"0181","144804":"01822","144805":"0181","144806":"0181","144819":"01822","145001":"0186","145022":"0186","145023":"0186","145024":"0186","145025":"0186","145026":"0186","145027":"0186","145029":"0186","145101":"0186","146001":"01882","146021":"01882","146022":"01882","146023":"01882","146024":"01882","146101":"01882","146102":"01882","146103":"01882","146104":"01882","146105":"01882","146106":"01882","146107":"01882","146108":"01882","146109":"01882","146110":"01882","146111":"01882","146112":"01882","146113":"01882","146114":"01882","146115":"01882","146116":"01882","147001":"0175","147002":"0175","147003":"0175","147004":"0175","147005":"0175","147006":"0175","147007":"0175","147008":"0175","147021":"0175","147101":"0175","147102":"0175","147103":"0175","147104":"0175","147105":"0175","147111":"0175","147201":"0175","147202":"0175","147203":"01763","147301":"01763","148001":"01672","148002":"01672","148017":"01672","148018":"01672","148019":"01675","148020":"01672","148021":"01675","148022":"01672","148023":"01672","148024":"01672","148025":"01672","148026":"01672","148027":"01672","148028":"01672","148029":"01672","148030":"01672","148031":"01672","148033":"01672","148034":"01672","148035":"01672","148100":"01679","148101":"01679","148102":"01679","148103":"01679","148104":"01679","148105":"01679","148106":"01672","148107":"01679","148108":"01679","148109":"01679","151001":"0164","151002":"0164","151003":"0164","151004":"0164","151005":"0164","151006":"0164","151101":"0164","151102":"0164","151103":"0164","151104":"0164","151105":"0164","151106":"0164","151108":"0164","151111":"0164","151201":"0164","151202":"01633","151203":"01639","151204":"01639","151205":"01639","151206":"0164","151207":"01636","151208":"01636","151209":"01639","151210":"01633","151211":"01633","151212":"01639","151213":"01639","151214":"01639","151301":"0164","151302":"01652","151401":"0164","151501":"01652","151502":"01652","151503":"01652","151504":"01652","151505":"01652","151506":"01652","151507":"01652","151508":"01652","151509":"01652","151510":"01652","152001":"01632","152002":"01632","152003":"01632","152004":"01632","152005":"01632","152020":"01638","152021":"01632","152022":"01632","152023":"01632","152024":"01638","152025":"01633","152026":"01633","152028":"01636","152031":"01633","152032":"01633","152033":"01638","152101":"01633","152107":"01633","152112":"01633","152113":"01633","152114":"01633","152115":"01633","152116":"01638","152117":"01638","152118":"01638","152121":"01638","152122":"01638","152123":"01638","152124":"01638","152128":"01638","152132":"01638","160001":"0172","160002":"0172","160003":"0172","160004":"0172","160005":"0172","160006":"0172","160009":"0172","160011":"0172","160012":"0172","160014":"0172","160015":"0172","160016":"0172","160017":"0172","160018":"0172","160019":"0172","160020":"0172","160022":"0172","160023":"0172","160025":"0172","160030":"0172","160036":"0172","160043":"0172","160047":"0172","160055":"0172","160059":"0172","160062":"0172","160071":"0172","160101":"0172","160102":"0172","160103":"0172","160104":"0172","171001":"0177","171002":"0177","171003":"0177","171004":"0177","171005":"0177","171006":"0177","171007":"0177","171008":"0177","171009":"0177","171010":"0177","171011":"0177","171012":"0177","171013":"0177","171014":"0177","171015":"0177","171018":"0177","171019":"0177","171102":"01792","171103":"0177","171201":"0177","171202":"0177","171203":"0177","171204":"0177","171205":"0177","171206":"0177","171207":"0177","171208":"0177","171209":"0177","171210":"0177","171211":"0177","171212":"0177","171213":"0177","171214":"0177","171215":"0177","171216":"0177","171217":"0177","171218":"0177","171219":"0177","171220":"0177","171221":"0177","171222":"0177","171223":"0177","171224":"0177","171225":"0177","171226":"01702","171301":"0177","172001":"0177","172002":"01902","172021":"0177","172022":"0177","172023":"01902","172024":"0177","172025":"01902","172026":"01902","172027":"0177","172028":"0177","172029":"0177","172030":"0177","172031":"0177","172032":"01902","172033":"01902","172034":"0177","172101":"0177","172102":"0177","172103":"01786","172104":"01786","172105":"01786","172106":"01786","172107":"01786","172108":"01786","172109":"01786","172110":"01786","172111":"01900","172112":"01786","172113":"01900","172114":"01900","172115":"01786","172116":"01786","172117":"01900","172118":"01786","172201":"0177","173001":"01702","173021":"01702","173022":"01702","173023":"01702","173024":"01702","173025":"01702","173026":"01702","173027":"01702","173029":"01702","173030":"01702","173031":"01702","173032":"01702","173101":"01702","173104":"01702","173201":"01792","173202":"01792","173204":"01792","173205":"01792","173206":"01792","173207":"01792","173208":"01792","173209":"01792","173210":"01792","173211":"01792","173212":"01792","173213":"01792","173214":"01792","173215":"01792","173217":"01792","173218":"01792","173220":"01792","173221":"01792","173222":"01792","173223":"01792","173225":"01792","173229":"01792","173230":"01792","173233":"01792","173234":"01792","173235":"01792","173236":"01792","174001":"07752","174002":"07752","174003":"07752","174004":"07752","174005":"07752","174011":"07752","174012":"07752","174013":"07752","174015":"07752","174017":"07752","174021":"07752","174023":"07752","174024":"07752","174026":"07752","174027":"07752","174028":"07752","174029":"07752","174030":"07752","174031":"07752","174032":"07752","174033":"07752","174034":"07752","174035":"07752","174036":"07752","174101":"01792","174102":"01792","174103":"01792","174201":"07752","174301":"02875","174302":"02875","174303":"02875","174304":"05282","174305":"05282","174306":"02875","174307":"02875","174308":"02875","174309":"05282","174310":"07752","174311":"05282","174312":"05282","174314":"02875","174315":"02875","174316":"02875","174317":"02875","174319":"02875","174320":"02875","174321":"02875","174405":"05282","174503":"02875","174505":"05282","174507":"02875","175001":"01905","175002":"01905","175003":"01905","175004":"01905","175005":"01905","175006":"01905","175007":"01905","175008":"01905","175009":"01905","175010":"01905","175011":"01905","175012":"01905","175013":"01905","175014":"01905","175015":"01905","175016":"01905","175017":"01905","175018":"01905","175019":"01905","175020":"01905","175021":"01905","175023":"01905","175024":"01905","175025":"01905","175026":"01905","175027":"01905","175028":"01905","175029":"01905","175030":"01905","175031":"01905","175032":"01905","175033":"01905","175034":"01905","175035":"01905","175036":"01905","175037":"01905","175038":"01905","175039":"01905","175040":"01905","175042":"01905","175045":"01905","175046":"01905","175047":"01905","175048":"01905","175049":"01905","175050":"01905","175051":"01905","175052":"01905","175075":"01905","175101":"01902","175102":"01902","175103":"01902","175104":"01902","175105":"01902","175106":"01905","175121":"01905","175123":"01905","175124":"01905","175125":"01905","175126":"01902","175128":"01902","175129":"01902","175130":"01902","175131":"01902","175132":"01900","175133":"01900","175134":"01902","175136":"01902","175138":"01902","175139":"01900","175140":"01900","175141":"01905","175142":"01900","175143":"01902","176001":"01892","176002":"01892","176021":"01892","176022":"01892","176023":"01892","176025":"01892","176026":"01892","176027":"01892","176028":"01892","176029":"01892","176030":"01892","176031":"01892","176032":"01892","176033":"01892","176036":"01892","176037":"01892","176038":"01892","176039":"05282","176040":"05282","176041":"05282","176042":"05282","176043":"05282","176044":"05282","176045":"05282","176047":"01892","176048":"05282","176049":"05282","176051":"01892","176052":"01892","176053":"01892","176054":"01892","176055":"01892","176056":"01892","176057":"01892","176058":"01892","176059":"01892","176060":"01892","176061":"01892","176062":"01892","176063":"01892","176064":"01892","176065":"01892","176066":"01892","176067":"01892","176071":"01892","176073":"01892","176075":"01892","176076":"01892","176077":"01892","176081":"01892","176082":"01892","176083":"01892","176084":"01892","176085":"01892","176086":"01892","176087":"01892","176088":"01892","176089":"01892","176090":"01905","176091":"01892","176092":"01892","176093":"01892","176094":"01892","176095":"01892","176096":"01892","176097":"01892","176098":"01892","176101":"01892","176102":"01892","176103":"01892","176107":"01892","176108":"05282","176109":"05282","176110":"05282","176111":"05282","176115":"01892","176125":"01892","176128":"01892","176200":"01892","176201":"01892","176202":"01892","176203":"01892","176204":"01892","176205":"01892","176206":"01892","176207":"01376","176208":"01892","176209":"01892","176210":"01892","176211":"01892","176213":"01892","176214":"01892","176215":"01892","176216":"01892","176217":"01892","176218":"01892","176219":"01892","176225":"01892","176301":"01376","176302":"01376","176303":"01376","176304":"01376","176305":"01376","176306":"01376","176308":"01376","176309":"01376","176310":"01376","176311":"01376","176312":"01376","176313":"01376","176314":"01376","176315":"01376","176316":"01376","176317":"01376","176318":"01376","176319":"01376","176320":"01376","176321":"01376","176323":"01376","176324":"01376","176325":"01376","176326":"01376","176401":"01892","176402":"01892","176403":"01892","176501":"01892","176502":"01892","176601":"02875","177001":"05282","177005":"05282","177006":"05282","177007":"05282","177020":"05282","177021":"05282","177022":"05282","177023":"05282","177024":"05282","177025":"05282","177026":"05282","177027":"05282","177028":"05282","177029":"05282","177031":"02875","177033":"01892","177034":"01892","177038":"02875","177039":"02875","177040":"05282","177041":"05282","177042":"05282","177043":"01892","177044":"05282","177045":"05282","177048":"05282","177101":"01892","177103":"01892","177104":"01892","177105":"01892","177106":"01892","177107":"01892","177108":"01892","177109":"02875","177110":"02875","177111":"01892","177112":"01892","177113":"01892","177114":"01892","177117":"01892","177118":"05282","177119":"05282","177201":"02875","177202":"02875","177203":"02875","177204":"02875","177205":"02875","177206":"02875","177207":"02875","177208":"02875","177209":"02875","177210":"02875","177211":"02875","177212":"02875","177213":"02875","177219":"02875","177220":"02875","177301":"05282","177401":"05282","177501":"05282","177601":"05282","180001":"0191","180002":"0191","180003":"0191","180004":"0191","180005":"0191","180006":"0191","180007":"0191","180009":"0191","180010":"0191","180011":"0191","180012":"01992","180013":"0191","180015":"0191","180016":"0191","180017":"0191","180018":"0191","180019":"0191","180020":"0191","181101":"0191","181102":"0191","181111":"0191","181121":"0191","181122":"0191","181123":"0191","181124":"0191","181131":"0191","181132":"0191","181133":"01923","181141":"01923","181143":"01923","181145":"01923","181152":"0191","181201":"0191","181202":"0191","181203":"0191","181204":"0191","181205":"0191","181206":"0191","181207":"0191","181221":"0191","181224":"0191","182101":"01992","182104":"01992","182121":"01992","182122":"01992","182124":"01992","182125":"01992","182126":"01992","182127":"01992","182128":"01992","182141":"01992","182142":"01992","182143":"01998","182144":"01998","182145":"01998","182146":"01998","182147":"01996","182148":"01998","182161":"01992","182201":"01996","182202":"01996","182203":"01995","182204":"01995","182205":"01995","182206":"01995","182207":"01996","182221":"01996","182222":"01996","182301":"01991","182311":"01991","182312":"01991","182313":"01991","182315":"01991","182320":"01991","184101":"01922","184102":"01922","184104":"01922","184120":"01923","184121":"01992","184141":"01923","184142":"01922","184143":"01922","184144":"01922","184145":"01922","184148":"01922","184151":"01922","184152":"01922","184201":"01922","184202":"01922","184203":"01922","184204":"01922","184205":"01992","184206":"01922","185101":"01965","185102":"01965","185121":"01965","185131":"01962","185132":"01962","185133":"01962","185135":"01962","185151":"01962","185152":"01962","185153":"01962","185154":"01991","185155":"01962","185156":"01962","185201":"01962","185202":"01962","185203":"01991","185211":"01965","185212":"01962","185233":"01962","185234":"01962","190001":"0194","190002":"0194","190003":"0194","190004":"0194","190005":"0194","190006":"0194","190007":"01951","190008":"0194","190009":"0194","190010":"0194","190011":"0194","190012":"0194","190014":"01951","190015":"0194","190017":"0194","190018":"0194","190019":"0194","190020":"0194","190021":"01951","190023":"0194","190024":"0194","190025":"0194","191101":"0194","191102":"01933","191103":"01933","191111":"01951","191112":"01921","191113":"01951","191121":"0194","191131":"0194","191132":"01951","191201":"0194","191202":"0194","192101":"01932","192121":"01933","192122":"01933","192123":"01933","192124":"01921","192125":"01932","192126":"01932","192129":"01932","192201":"01932","192202":"01932","192210":"01932","192211":"01932","192212":"01932","192221":"01932","192231":"01931","192232":"01921","192233":"01931","192301":"01933","192302":"01933","192303":"01921","192304":"01933","192305":"01921","192306":"01921","192401":"01932","193101":"01952","193103":"01952","193108":"01952","193109":"01952","193121":"01952","193122":"01952","193123":"01952","193201":"01952","193221":"01955","193222":"01955","193223":"01955","193224":"01955","193225":"01955","193301":"01952","193302":"01955","193303":"01955","193401":"01951","193402":"01952","193403":"01952","193404":"01951","193411":"01951","193501":"0194","193502":"01957","193503":"01957","193504":"0194","193505":"01957","194101":"01982","194102":"01985","194103":"01985","194104":"01982","194105":"01985","194106":"01982","194107":"01982","194109":"01985","194201":"01982","194202":"01982","194301":"01985","194302":"01985","194303":"01985","194401":"01982","194402":"01982","194404":"01982","201001":"0120","201002":"0120","201003":"0120","201004":"0120","201005":"0120","201006":"0120","201007":"0120","201008":"0120","201009":"0120","201010":"0120","201011":"0120","201012":"0120","201013":"0120","201014":"0120","201015":"0122","201016":"0120","201017":"0120","201018":"0120","201019":"0120","201020":"0120","201021":"0120","201102":"0120","201103":"0120","201201":"0120","201204":"0120","201206":"0120","201301":"0120","201302":"0120","201303":"0120","201304":"0120","201305":"0120","201306":"0120","201307":"0120","201309":"0120","201310":"0120","201311":"0120","201312":"0120","201313":"0120","201314":"0120","201315":"0120","201316":"0120","201317":"0120","201318":"0120","202001":"0571","202002":"0571","202121":"0571","202122":"0571","202123":"0571","202124":"0571","202125":"0571","202126":"0571","202127":"0571","202128":"0571","202129":"0571","202130":"0571","202131":"0571","202132":"0571","202133":"0571","202134":"0571","202135":"0571","202136":"0571","202137":"0571","202138":"0571","202139":"05722","202140":"0571","202141":"0571","202142":"0571","202143":"0571","202145":"0571","202146":"0571","202150":"05722","202155":"0571","202165":"0571","202170":"0571","202280":"0571","202281":"0571","202282":"0571","203001":"05722","203002":"05732","203129":"05732","203131":"05732","203132":"05732","203135":"0120","203141":"0120","203150":"05732","203155":"0120","203201":"0120","203202":"0120","203203":"0120","203205":"05732","203206":"05732","203207":"0120","203209":"0120","203389":"05732","203390":"05732","203391":"05732","203392":"05732","203393":"05732","203394":"05732","203395":"05732","203396":"05732","203397":"05732","203398":"05732","203399":"05732","203401":"05732","203402":"05732","203403":"05732","203405":"05732","203407":"05732","203408":"05732","203409":"05732","203411":"05732","203412":"05732","204101":"05722","204102":"05722","204211":"05722","204212":"05722","204213":"05722","204214":"05722","204215":"05722","204216":"05722","205001":"05672","205119":"05672","205121":"05672","205247":"05672","205261":"05672","205262":"05672","205263":"05672","205264":"05672","205265":"05672","205267":"05672","205268":"05672","205301":"05672","205303":"05672","205304":"05672","206001":"05688","206002":"05688","206003":"05688","206120":"05688","206121":"05688","206122":"05683","206123":"05688","206124":"05688","206125":"05688","206126":"05688","206127":"05688","206128":"05688","206129":"05683","206130":"05688","206131":"05688","206241":"05683","206242":"05688","206243":"05683","206244":"05683","206245":"05688","206246":"05683","206247":"05683","206248":"05683","206249":"05683","206250":"05683","206251":"05683","206252":"05683","206253":"05688","206255":"05683","207001":"05742","207002":"05742","207003":"05742","207120":"05742","207121":"05742","207122":"05742","207123":"05744","207124":"05744","207125":"05742","207241":"05744","207242":"05744","207243":"05744","207244":"05744","207245":"05744","207246":"05744","207247":"05742","207248":"05744","207249":"05742","207250":"05742","207301":"05742","207302":"05742","207401":"05742","207402":"05744","207403":"05744","208001":"0512","208002":"0512","208003":"0512","208004":"0512","208005":"0512","208006":"0512","208007":"0512","208008":"0512","208009":"0512","208010":"0512","208011":"0512","208012":"0512","208013":"0512","208014":"0512","208015":"0512","208016":"0512","208017":"0512","208019":"0512","208020":"0512","208021":"0512","208022":"0512","208023":"0512","208024":"0512","208025":"0512","208026":"0512","208027":"0512","209101":"05113","209111":"05113","209112":"05113","209115":"05113","209121":"0512","209125":"05113","209202":"0512","209203":"0512","209204":"05113","209205":"0512","209206":"0512","209208":"05113","209209":"0512","209210":"0512","209214":"0512","209217":"0512","209301":"05113","209302":"05113","209303":"05113","209304":"0512","209305":"0512","209306":"05113","209307":"0512","209308":"0512","209310":"05113","209311":"0512","209312":"05113","209401":"0512","209402":"0565","209501":"05692","209502":"05692","209503":"05692","209504":"05692","209505":"05692","209601":"05692","209602":"05692","209621":"05692","209622":"05692","209625":"05692","209651":"05692","209652":"05692","209720":"05672","209721":"05694","209722":"05694","209723":"05694","209724":"05694","209725":"05694","209726":"05694","209727":"05694","209728":"05694","209729":"05694","209731":"05694","209732":"05694","209733":"05694","209734":"05694","209735":"05694","209736":"05694","209738":"05694","209739":"05692","209743":"05692","209745":"05692","209747":"05694","209749":"05692","209801":"0515","209821":"0515","209825":"0515","209827":"0515","209831":"0515","209841":"0515","209859":"0515","209860":"0515","209861":"0515","209862":"0515","209863":"0515","209864":"0515","209865":"0515","209866":"0515","209867":"0515","209868":"0515","209869":"0515","209870":"0515","209871":"0515","209881":"0515","210001":"07583","210120":"07583","210121":"07583","210122":"07583","210123":"07583","210125":"07583","210126":"07583","210128":"07583","210129":"07583","210201":"07583","210202":"05191","210203":"07583","210204":"05191","210205":"05191","210206":"05191","210207":"05191","210208":"05191","210209":"05191","210301":"05282","210341":"05282","210421":"05281","210422":"05282","210423":"05281","210424":"05281","210425":"05281","210426":"05281","210427":"05281","210428":"05282","210429":"05281","210430":"05282","210431":"05282","210432":"05282","210433":"05281","210501":"05282","210502":"05282","210504":"05281","210505":"05282","210506":"05282","210507":"05282","211001":"0532","211002":"0532","211003":"0532","211004":"0532","211005":"0532","211006":"0532","211007":"0532","211008":"0532","211010":"0532","211011":"0532","211012":"0532","211013":"0532","211014":"0532","211015":"0532","211016":"0532","211017":"0532","211018":"0532","211019":"0532","211020":"0532","211021":"0532","211022":"0532","211023":"0532","212104":"0532","212105":"0532","212106":"0532","212107":"0532","212108":"0532","212109":"0532","212111":"0532","212201":"05331","212202":"0532","212203":"05331","212204":"05331","212205":"05331","212206":"05331","212207":"05331","212208":"0532","212212":"0532","212213":"05331","212214":"05331","212216":"05331","212217":"05331","212218":"05331","212301":"0532","212302":"0532","212303":"0532","212305":"0532","212306":"0532","212307":"0532","212308":"0532","212401":"0532","212402":"0532","212404":"0532","212405":"0532","212502":"0532","212503":"0532","212507":"0532","212601":"05240","212620":"05240","212621":"05240","212622":"05240","212631":"05240","212635":"05240","212641":"05240","212645":"05240","212650":"05240","212651":"05240","212652":"0120","212653":"05240","212654":"05240","212655":"05240","212656":"05240","212657":"05240","212658":"05240","212659":"05240","212661":"05240","212663":"05240","212664":"05240","212665":"05240","221001":"0542","221002":"0542","221003":"0542","221004":"0542","221005":"0542","221006":"0542","221007":"0542","221008":"0542","221009":"05412","221010":"0542","221011":"0542","221012":"0542","221101":"0542","221103":"0542","221104":"0542","221105":"0542","221106":"0542","221107":"0542","221108":"0542","221109":"0542","221110":"05412","221112":"0542","221115":"05412","221116":"0542","221201":"0542","221202":"0542","221204":"0542","221206":"0542","221207":"0542","221208":"0542","221301":"05414","221302":"0542","221303":"05414","221304":"05414","221305":"0542","221306":"05414","221307":"0542","221308":"05414","221309":"05414","221310":"05414","221311":"0542","221313":"0542","221314":"05414","221401":"05414","221402":"05414","221403":"0542","221404":"05414","221405":"0542","221406":"05414","221407":"0542","221409":"05414","221502":"0532","221503":"0532","221505":"0532","221507":"0532","221508":"0532","221601":"0547","221602":"0547","221603":"0547","221701":"05498","221705":"0547","221706":"0547","221709":"05498","221711":"05498","221712":"05498","221713":"05498","221715":"05498","221716":"05498","221717":"05498","221718":"05498","222001":"05452","222002":"05452","222003":"05452","222105":"05452","222109":"05452","222125":"05452","222126":"05452","222127":"05452","222128":"05452","222129":"05452","222131":"05452","222132":"05452","222133":"05452","222135":"05452","222136":"05452","222137":"05452","222138":"05452","222139":"05452","222141":"05452","222142":"05452","222143":"05452","222144":"05452","222145":"05452","222146":"05452","222148":"05452","222149":"05452","222161":"05452","222162":"05452","222165":"05452","222170":"05452","222175":"05452","222180":"05452","222181":"05452","222201":"05452","222202":"05452","222203":"05452","222204":"05452","222301":"01828","222302":"01828","222303":"01828","223101":"05452","223102":"05452","223103":"05452","223104":"05452","223105":"05452","223221":"05462","223222":"05462","223223":"05462","223224":"05462","223225":"05462","223226":"05462","223227":"05462","224001":"05278","224116":"05278","224117":"05278","224118":"05278","224119":"05278","224120":"05278","224121":"05278","224122":"05271","224123":"05278","224125":"05271","224126":"05278","224127":"05278","224129":"05271","224132":"05271","224133":"05278","224135":"05278","224137":"05271","224139":"05271","224141":"05278","224143":"05271","224145":"05271","224146":"05271","224147":"05271","224149":"05271","224151":"05271","224152":"05271","224153":"05278","224155":"05271","224157":"05271","224158":"05278","224159":"05271","224161":"05278","224164":"05278","224168":"05271","224171":"05278","224172":"05612","224176":"05271","224181":"05271","224182":"05278","224183":"05271","224186":"05271","224188":"05278","224189":"05278","224190":"05271","224195":"05278","224201":"05278","224202":"05278","224203":"05278","224204":"05278","224205":"05278","224206":"05278","224207":"05278","224208":"05278","224209":"05278","224210":"05271","224225":"05278","224227":"05271","224228":"05278","224229":"05278","224230":"05271","224231":"05271","224232":"05271","224234":"05278","224235":"05271","224238":"05271","224284":"05278","225001":"05248","225002":"05248","225003":"05248","225119":"05248","225120":"05248","225121":"05248","225122":"05248","225123":"05248","225124":"05248","225125":"05248","225126":"05248","225201":"05248","225202":"05248","225203":"05248","225204":"05248","225205":"05248","225206":"05248","225207":"05248","225208":"05248","225301":"05248","225302":"05248","225303":"05248","225304":"05248","225305":"05248","225306":"05248","225401":"05248","225403":"05248","225404":"05248","225405":"05248","225409":"05248","225412":"05248","225413":"05248","225414":"05248","225415":"05248","225416":"05248","226001":"0522","226002":"0522","226003":"0522","226004":"0522","226005":"0522","226006":"0522","226007":"0522","226008":"0522","226009":"0522","226010":"0522","226011":"0522","226012":"0522","226013":"0522","226014":"0522","226015":"0522","226016":"0522","226017":"0522","226018":"0522","226019":"0522","226020":"0522","226021":"0522","226022":"0522","226023":"0522","226024":"0522","226025":"0522","226026":"0522","226027":"0522","226028":"0522","226029":"0522","226030":"0522","226031":"0522","226101":"0522","226102":"0522","226103":"0522","226104":"0522","226201":"0522","226202":"0522","226203":"0522","226301":"0522","226302":"0522","226303":"0522","226401":"0522","226501":"0522","227304":"01828","227405":"05368","227406":"05368","227407":"05368","227408":"01828","227409":"05368","227411":"05368","227412":"05368","227413":"05368","227801":"05368","227805":"01828","227806":"01828","227807":"05368","227808":"01828","227809":"05368","227811":"05368","227812":"01828","227813":"01828","227814":"01828","227815":"01828","227816":"01828","227817":"05368","228001":"01828","228118":"01828","228119":"01828","228120":"01828","228121":"01828","228125":"01828","228131":"01828","228132":"01828","228133":"01828","228141":"01828","228142":"01828","228145":"01828","228151":"01828","228155":"01828","228159":"01828","228161":"01828","228171":"01828","228172":"01828","229001":"0535","229010":"0535","229103":"0535","229120":"0535","229121":"0535","229122":"0535","229123":"0535","229124":"0535","229125":"0535","229126":"0535","229127":"0535","229128":"0535","229129":"0535","229130":"0535","229135":"05368","229201":"0535","229202":"0535","229203":"0535","229204":"0535","229205":"0535","229206":"0535","229207":"0535","229208":"0535","229209":"0535","229210":"0535","229211":"0535","229212":"0535","229215":"0535","229216":"0535","229301":"0535","229302":"0535","229303":"0535","229304":"0535","229305":"0535","229306":"0535","229307":"0535","229308":"0535","229309":"05368","229310":"0535","229311":"0535","229316":"0535","229401":"0535","229402":"0535","229404":"0535","229405":"0535","229406":"0535","229408":"05342","229410":"05342","229411":"0532","229412":"0532","229413":"0532","229801":"0535","229802":"0535","230001":"05342","230002":"05342","230121":"05342","230124":"05342","230125":"05342","230126":"05342","230127":"05342","230128":"05342","230129":"05342","230130":"05342","230131":"05342","230132":"05342","230133":"05342","230134":"05342","230135":"05342","230136":"05342","230137":"05342","230138":"05342","230139":"05342","230141":"05342","230142":"05342","230143":"05342","230144":"05342","230201":"05342","230202":"05342","230204":"05342","230301":"05342","230302":"05342","230304":"05342","230306":"05342","230401":"05342","230402":"05342","230403":"05342","230404":"05342","230405":"05342","230501":"05342","230502":"05342","230503":"05342","231001":"05442","231205":"05444","231206":"05444","231207":"05444","231208":"05444","231209":"05444","231210":"05444","231211":"05442","231212":"05444","231213":"05444","231215":"05444","231216":"05444","231217":"05444","231218":"05444","231219":"05444","231220":"05444","231221":"05444","231222":"05444","231223":"05444","231224":"05444","231225":"05444","231226":"05444","231301":"05442","231302":"05442","231303":"05442","231304":"05442","231305":"05442","231306":"05442","231307":"05442","231309":"05442","231311":"05442","231312":"05442","231313":"05442","231314":"05442","231501":"05442","232101":"05412","232102":"05412","232103":"05412","232104":"05412","232105":"05412","232106":"05412","232107":"05412","232108":"05412","232109":"05412","232110":"05412","232111":"05412","232118":"05412","232120":"05412","232325":"0548","232326":"0548","232327":"0548","232328":"0548","232329":"0548","232330":"0548","232331":"0548","232332":"0548","232333":"0548","232336":"0548","232339":"0548","232340":"0548","232341":"0548","233001":"0548","233002":"0548","233221":"0548","233222":"0548","233223":"0548","233224":"0548","233225":"0548","233226":"0548","233227":"0548","233228":"0548","233229":"0548","233230":"0548","233231":"0548","233232":"0548","233233":"0548","233234":"0548","233300":"0548","233301":"0548","233302":"0548","233303":"0548","233304":"0548","233305":"0548","233306":"0548","233307":"0548","233310":"0548","233311":"0548","241001":"0565","241121":"05852","241122":"05852","241123":"05852","241124":"05852","241125":"05852","241126":"05852","241127":"05852","241201":"05852","241202":"05852","241203":"05852","241204":"05852","241301":"05852","241302":"05852","241303":"05852","241304":"05852","241305":"05852","241401":"05852","241402":"05852","241403":"05852","241404":"05852","241405":"05852","241406":"05852","241407":"05852","242001":"05842","242021":"05923","242042":"05842","242127":"05842","242220":"05842","242221":"05842","242223":"05842","242226":"05842","242301":"05842","242303":"05842","242305":"05842","242306":"05842","242307":"05842","242401":"05842","242405":"05842","242406":"05842","242407":"05842","243001":"0581","243002":"0581","243003":"0581","243004":"0581","243005":"0581","243006":"0581","243122":"0581","243123":"0581","243126":"0581","243201":"0581","243202":"0581","243203":"0581","243301":"0581","243302":"0581","243303":"0581","243401":"0581","243402":"0581","243403":"0581","243407":"0581","243501":"0581","243502":"0581","243503":"0581","243504":"0581","243505":"0581","243506":"0581","243601":"05832","243630":"05832","243631":"05832","243632":"05832","243633":"05832","243634":"05832","243635":"05832","243636":"05832","243637":"05832","243638":"05923","243639":"05832","243641":"05832","243720":"05832","243722":"05923","243723":"05923","243724":"05832","243725":"05832","243726":"05832","243727":"05923","243751":"05923","244001":"0591","244102":"05923","244103":"0591","244104":"0591","244105":"0591","244221":"05922","244222":"05922","244223":"05922","244225":"05922","244231":"05922","244235":"05922","244236":"05922","244241":"05922","244242":"05922","244245":"05922","244251":"05922","244255":"05922","244301":"05923","244302":"05923","244303":"05923","244304":"05923","244401":"0591","244402":"0591","244410":"05923","244411":"05923","244412":"05923","244413":"0591","244414":"05923","244415":"0591","244501":"0591","244504":"0591","244601":"0591","244602":"0591","244701":"0595","244712":"05944","244713":"05944","244715":"05942","244716":"05944","244717":"05944","244720":"05944","244901":"0595","244921":"0595","244922":"0595","244923":"05944","244924":"05944","244925":"0595","244926":"0595","244927":"0595","244928":"0595","245101":"0122","245201":"0122","245205":"0122","245206":"0121","245207":"0122","245208":"0122","245301":"0122","245304":"0122","246001":"01368","246113":"01368","246121":"01368","246123":"01368","246124":"01368","246125":"01368","246127":"01368","246128":"01368","246129":"01368","246130":"01368","246131":"01368","246141":"01364","246142":"01368","246144":"01368","246146":"01368","246147":"01368","246148":"01368","246149":"01368","246150":"01368","246155":"01368","246159":"01368","246161":"01368","246162":"01368","246163":"01368","246164":"01368","246165":"01368","246166":"01368","246167":"01368","246169":"01368","246171":"01364","246172":"01368","246173":"01368","246174":"01368","246175":"01368","246176":"01368","246177":"01368","246178":"01368","246179":"01368","246193":"01368","246194":"01368","246275":"01368","246276":"01368","246277":"01368","246278":"01368","246279":"01368","246285":"01368","246401":"01372","246419":"01364","246421":"01364","246422":"01372","246424":"01372","246425":"01364","246426":"01372","246427":"01372","246428":"01372","246429":"01364","246431":"01372","246435":"01372","246439":"01364","246440":"01372","246441":"01372","246442":"01364","246443":"01372","246444":"01372","246445":"01364","246446":"01372","246448":"01364","246449":"01372","246453":"01372","246455":"01372","246469":"01364","246471":"01364","246472":"01372","246473":"01372","246474":"01372","246475":"01364","246481":"01372","246482":"01372","246483":"01372","246486":"01372","246487":"01372","246488":"01372","246495":"01364","246701":"01342","246721":"01342","246722":"01342","246723":"01342","246724":"01342","246725":"01342","246726":"01342","246727":"01342","246728":"01342","246729":"01342","246731":"01342","246732":"01342","246733":"01342","246734":"01342","246735":"01342","246736":"01342","246737":"01342","246745":"01342","246746":"01342","246747":"01342","246749":"01342","246761":"01342","246762":"01342","246763":"01342","246764":"01342","247001":"0132","247002":"0132","247120":"0132","247121":"0132","247122":"0132","247129":"0132","247231":"0132","247232":"0132","247340":"0132","247341":"0132","247342":"0132","247343":"0132","247451":"0132","247452":"0132","247453":"0132","247551":"0132","247554":"0132","247656":"01334","247661":"01334","247662":"0132","247663":"01334","247664":"01334","247665":"01334","247666":"01334","247667":"01334","247668":"01334","247669":"0132","247670":"01334","247671":"01334","247771":"01398","247772":"01398","247773":"01398","247774":"01398","247775":"01398","247776":"01398","247777":"01398","247778":"01398","248001":"0135","248002":"0135","248003":"0135","248005":"0135","248006":"0135","248007":"0135","248008":"01376","248009":"0135","248011":"0135","248012":"0135","248013":"0135","248014":"0135","248015":"0135","248016":"0135","248018":"0135","248019":"0135","248121":"0135","248122":"0135","248123":"0135","248124":"0135","248125":"0135","248140":"0135","248142":"0135","248143":"0135","248145":"0135","248146":"0135","248158":"01376","248159":"0135","248165":"0135","248171":"0135","248179":"01376","248195":"0135","248196":"0135","248197":"0135","248198":"0135","248199":"0135","249001":"01376","249121":"01376","249122":"01376","249123":"01376","249124":"01376","249125":"01376","249126":"01376","249127":"01376","249128":"01374","249130":"01376","249131":"01376","249132":"01376","249135":"01374","249136":"01374","249137":"01376","249141":"01374","249145":"01376","249146":"01376","249151":"01374","249152":"01374","249155":"01376","249161":"01376","249165":"01374","249171":"01374","249175":"01376","249180":"01376","249181":"01376","249185":"01374","249186":"01376","249192":"01376","249193":"01374","249194":"01374","249195":"01374","249196":"01374","249199":"01376","249201":"0135","249202":"0135","249203":"0135","249204":"0135","249205":"0135","249301":"01376","249302":"01368","249304":"01368","249306":"01368","249401":"01334","249402":"01334","249403":"01334","249404":"01334","249405":"01334","249407":"01334","249408":"01334","249410":"01334","249411":"01334","250001":"0121","250002":"0121","250003":"0121","250004":"0121","250005":"0121","250101":"01234","250103":"0121","250104":"0121","250106":"0121","250110":"0121","250205":"0121","250221":"0121","250222":"0121","250223":"0121","250341":"0121","250342":"0121","250344":"0121","250345":"01234","250401":"0121","250402":"0121","250404":"0121","250406":"0121","250501":"0121","250502":"0121","250601":"01234","250606":"01234","250609":"01234","250611":"01234","250615":"01234","250617":"01234","250619":"01234","250620":"01234","250621":"01234","250622":"01234","250623":"01234","250625":"01234","250626":"0121","251001":"0131","251002":"0131","251003":"0131","251201":"0131","251202":"0131","251203":"0131","251301":"01398","251305":"01398","251306":"0131","251307":"0131","251308":"0131","251309":"0131","251310":"0131","251311":"0131","251314":"0131","251315":"0131","251316":"0131","251318":"0131","251319":"01398","251320":"0131","251327":"0131","261001":"07834","261121":"07834","261125":"07834","261131":"07834","261135":"07834","261136":"07834","261141":"07834","261145":"07834","261151":"07834","261201":"07834","261202":"07834","261203":"07834","261204":"07834","261205":"07834","261206":"07834","261207":"07834","261208":"07834","261301":"07834","261302":"07834","261303":"07834","261401":"07834","261402":"07834","261403":"07834","261404":"07834","261405":"07834","261501":"05872","261502":"05872","261505":"07834","261506":"05872","262001":"05882","262121":"05882","262122":"05882","262123":"05882","262124":"05882","262201":"05882","262202":"05882","262203":"05882","262302":"05882","262305":"05882","262308":"05944","262309":"05962","262310":"05962","262311":"05944","262401":"05944","262402":"05942","262405":"05944","262406":"0581","262501":"05964","262502":"05964","262520":"05964","262521":"05964","262522":"05964","262523":"05962","262524":"05962","262525":"05962","262526":"05964","262527":"05962","262528":"05962","262529":"05964","262530":"05964","262531":"05964","262532":"05964","262533":"05964","262534":"05964","262540":"05964","262541":"05964","262542":"05964","262543":"05964","262544":"05964","262545":"05964","262546":"05964","262547":"05964","262550":"05964","262551":"05964","262552":"05964","262553":"05964","262554":"05964","262555":"05964","262561":"05962","262572":"05964","262576":"05964","262580":"05962","262701":"05872","262702":"05872","262721":"07834","262722":"07834","262723":"05872","262724":"05872","262725":"05872","262726":"05872","262727":"05872","262728":"07834","262801":"05872","262802":"05872","262803":"05872","262804":"05872","262805":"05872","262901":"05872","262902":"05872","262903":"05872","262904":"05882","262905":"05872","262906":"05872","262907":"05872","262908":"05872","263001":"05942","263126":"05942","263127":"05942","263128":"05942","263132":"05942","263134":"05942","263135":"05942","263136":"05942","263137":"05942","263138":"05942","263139":"05942","263140":"05942","263142":"05942","263145":"05944","263148":"05944","263149":"05944","263150":"05944","263151":"05944","263152":"05944","263153":"05944","263156":"05942","263157":"05942","263158":"05942","263159":"05942","263160":"05944","263601":"05962","263619":"05963","263620":"05963","263621":"05962","263622":"05962","263623":"05962","263624":"05962","263625":"05962","263626":"05962","263628":"05963","263629":"05962","263630":"05963","263631":"05963","263632":"05963","263633":"05963","263634":"05963","263635":"05963","263636":"05962","263637":"05962","263638":"05962","263639":"05963","263640":"05963","263641":"05963","263642":"05963","263643":"05962","263645":"05962","263646":"05962","263651":"05962","263652":"05962","263653":"05962","263655":"05962","263656":"05962","263658":"05962","263659":"05962","263660":"05962","263661":"05962","263663":"05962","263664":"05962","263665":"05962","263667":"05962","263676":"05962","263678":"05962","263679":"05963","263680":"05962","271001":"05262","271002":"05262","271003":"05262","271122":"05262","271123":"05262","271124":"05262","271125":"05262","271126":"05262","271129":"05262","271201":"05252","271202":"05262","271203":"07831","271204":"05262","271205":"07831","271206":"07831","271207":"07831","271208":"07831","271209":"05262","271210":"07831","271215":"07831","271301":"05262","271302":"05262","271303":"05262","271304":"05262","271305":"05262","271306":"07831","271307":"05262","271308":"05262","271309":"05262","271310":"05262","271311":"05262","271312":"05262","271313":"05262","271319":"05262","271401":"05262","271402":"05262","271403":"05262","271502":"05262","271503":"05262","271504":"05262","271601":"05262","271602":"05262","271603":"05262","271604":"07831","271607":"07831","271609":"07831","271801":"05252","271802":"05252","271803":"05252","271804":"05252","271805":"05252","271806":"05252","271821":"05252","271824":"05252","271825":"05252","271830":"05252","271831":"05252","271835":"05252","271840":"05252","271841":"05252","271845":"05252","271851":"05252","271855":"05252","271861":"07831","271865":"05252","271870":"05252","271871":"05252","271872":"05252","271875":"05252","271881":"05252","271882":"05252","271901":"05252","271902":"05252","271903":"05252","271904":"05252","272001":"05542","272002":"05542","272123":"05542","272124":"05542","272125":"05547","272126":"05547","272127":"05542","272128":"05542","272129":"05542","272130":"05542","272131":"05542","272148":"05544","272150":"05542","272151":"05544","272152":"05544","272153":"05544","272154":"05547","272155":"05542","272161":"05542","272162":"05547","272163":"05542","272164":"05547","272165":"05547","272171":"05542","272172":"05547","272173":"05547","272175":"05547","272176":"05547","272177":"05542","272178":"05544","272181":"05542","272182":"05542","272189":"05544","272190":"05542","272191":"05544","272192":"05544","272193":"05544","272194":"05542","272195":"05544","272199":"05547","272201":"05544","272202":"05544","272203":"05544","272204":"05544","272205":"05544","272206":"05544","272207":"05544","272208":"05544","272270":"05547","272271":"05547","272301":"05542","272302":"05542","273001":"0551","273002":"0551","273003":"0551","273004":"0551","273005":"0551","273006":"0551","273007":"0551","273008":"0551","273009":"0551","273010":"0551","273012":"0551","273013":"0551","273014":"0551","273015":"0551","273016":"0551","273017":"0551","273151":"05523","273152":"0551","273155":"05523","273157":"05523","273158":"0551","273161":"05523","273162":"05523","273163":"05523","273164":"05523","273165":"05523","273201":"0551","273202":"0551","273203":"0551","273207":"05523","273209":"0551","273211":"0551","273212":"0551","273213":"0551","273301":"05523","273302":"05523","273303":"05523","273304":"05523","273305":"05523","273306":"05523","273308":"05523","273309":"05523","273310":"05523","273311":"05523","273401":"0551","273402":"0551","273403":"0551","273404":"0551","273405":"0551","273406":"0551","273407":"0551","273408":"0551","273409":"0551","273411":"0551","273412":"0551","273413":"0551","274001":"05568","274149":"05564","274182":"05568","274201":"05568","274202":"05568","274203":"05564","274204":"05568","274205":"05568","274206":"05564","274207":"05564","274208":"05568","274301":"05564","274302":"05564","274303":"05564","274304":"05564","274305":"05564","274306":"05564","274307":"05564","274308":"0532","274309":"05564","274401":"05564","274402":"05564","274403":"05564","274404":"05568","274405":"05568","274406":"05564","274407":"05564","274408":"05568","274409":"05564","274501":"05568","274502":"05568","274505":"05568","274506":"05568","274508":"05568","274509":"05568","274601":"05568","274602":"05568","274603":"05568","274604":"05568","274701":"05568","274702":"05568","274703":"05568","274704":"05568","274705":"05568","274801":"05564","274802":"05564","274806":"05568","274807":"05568","274808":"05568","275101":"0547","275102":"0547","275103":"0547","275105":"0547","275201":"0548","275202":"0548","275203":"0548","275204":"0548","275205":"0548","275301":"0547","275302":"0547","275303":"0547","275304":"0547","275305":"0547","275306":"0547","275307":"0547","276001":"05462","276121":"05462","276122":"05462","276123":"05462","276124":"05462","276125":"05462","276126":"05462","276127":"05462","276128":"05462","276129":"0547","276131":"05462","276135":"05462","276136":"05462","276137":"05462","276138":"05462","276139":"05462","276140":"05462","276141":"05462","276142":"05462","276143":"05462","276201":"05462","276202":"05462","276203":"05462","276204":"05462","276205":"05462","276206":"05462","276207":"05462","276208":"05462","276288":"05462","276301":"05462","276302":"05462","276303":"05462","276304":"05462","276305":"05462","276306":"0547","276402":"0547","276403":"0547","276404":"05462","276405":"0547","276406":"0547","277001":"05498","277121":"05498","277123":"05498","277124":"05498","277201":"05498","277202":"05498","277203":"05498","277204":"05498","277205":"05498","277207":"05498","277208":"05498","277209":"05498","277210":"05498","277211":"05498","277213":"05498","277214":"05498","277216":"05498","277219":"05498","277301":"05498","277302":"05498","277303":"05498","277304":"05498","277401":"05498","277402":"05498","277403":"05498","277501":"05498","277502":"05498","277503":"05498","277504":"05498","277506":"05498","281001":"0565","281003":"0565","281004":"0565","281005":"0565","281006":"0565","281104":"05722","281121":"0565","281122":"0565","281123":"0565","281201":"0565","281202":"0565","281203":"0565","281204":"0565","281205":"0565","281206":"0565","281301":"0565","281302":"05722","281303":"0565","281305":"0565","281306":"05722","281307":"05722","281308":"0565","281401":"0565","281403":"0565","281404":"0565","281405":"0565","281406":"0565","281501":"0565","281502":"0565","281504":"0565","282001":"0562","282002":"0562","282003":"0562","282004":"0562","282005":"0562","282006":"0562","282007":"0562","282008":"0562","282009":"0562","282010":"0562","283101":"0562","283102":"0562","283103":"05612","283104":"0562","283105":"0562","283110":"0562","283111":"0562","283112":"0562","283113":"0562","283114":"0562","283115":"0562","283119":"0562","283121":"0562","283122":"0562","283123":"0562","283124":"0562","283125":"0562","283126":"0562","283130":"05612","283135":"05612","283136":"05612","283141":"05612","283142":"05612","283145":"05612","283151":"05612","283152":"05612","283201":"0562","283202":"0562","283203":"05612","283204":"05612","283205":"05612","283206":"05612","283207":"05612","284001":"0510","284002":"0510","284003":"0510","284120":"0510","284121":"0510","284122":"05176","284123":"05176","284124":"05176","284125":"05176","284126":"05176","284127":"0510","284128":"0510","284135":"0510","284136":"05176","284201":"0510","284202":"0510","284203":"0510","284204":"0510","284205":"0510","284206":"0510","284301":"0510","284302":"0510","284303":"0510","284304":"0510","284305":"0510","284306":"0510","284401":"0510","284402":"05176","284403":"05176","284404":"05176","284405":"05176","284406":"05176","284419":"0510","284501":"05176","285001":"05168","285121":"05168","285122":"05168","285123":"05168","285124":"05168","285125":"05168","285126":"05168","285127":"05168","285128":"05168","285129":"05168","285130":"05168","285201":"05168","285202":"05168","285203":"05168","285204":"05168","285205":"0510","285206":"05168","285223":"05168","301001":"0144","301002":"0144","301018":"0144","301019":"0144","301020":"0144","301021":"0144","301022":"0144","301023":"0144","301024":"0144","301025":"0144","301026":"0144","301027":"0144","301028":"0144","301030":"0144","301035":"0144","301401":"0144","301402":"0144","301403":"0144","301404":"0144","301405":"0144","301406":"0144","301407":"0144","301408":"0144","301409":"0144","301410":"0144","301411":"0144","301412":"0144","301413":"0144","301414":"0144","301415":"0144","301416":"0144","301427":"0144","301604":"0144","301701":"0144","301702":"0144","301703":"0144","301704":"0144","301705":"0144","301706":"0144","301707":"0144","301708":"0144","301709":"0144","301713":"0144","301714":"0144","302001":"0141","302002":"0141","302003":"0141","302004":"0141","302005":"0141","302006":"0141","302012":"0141","302013":"0141","302015":"0141","302016":"0141","302017":"0141","302018":"0141","302019":"0141","302020":"0141","302021":"0141","302022":"0141","302026":"0141","302027":"0141","302028":"0141","302029":"0141","302031":"0141","302033":"0141","302034":"0141","302036":"0141","302037":"0141","302038":"0141","302039":"0141","302040":"0141","302041":"0141","302042":"0141","302043":"0141","302044":"0141","302045":"0141","302046":"0141","303001":"0141","303002":"0141","303003":"0141","303004":"01427","303005":"0141","303006":"0141","303007":"0141","303008":"0141","303009":"0141","303012":"0141","303102":"0141","303103":"0141","303104":"0141","303105":"0141","303106":"0141","303107":"0141","303108":"0141","303109":"0141","303110":"0141","303119":"0141","303120":"0141","303121":"0141","303122":"0141","303123":"0141","303124":"0141","303301":"0141","303302":"01427","303303":"01427","303304":"01427","303305":"0141","303313":"01427","303315":"01427","303323":"01427","303325":"01427","303326":"01427","303327":"01427","303328":"0141","303329":"0141","303338":"0141","303348":"0141","303501":"01427","303502":"01427","303503":"01427","303504":"01427","303505":"01427","303506":"01427","303507":"01427","303508":"01427","303509":"01427","303510":"01427","303511":"01427","303601":"0141","303602":"0141","303603":"0141","303604":"0141","303701":"0141","303702":"0141","303704":"0141","303706":"0141","303712":"0141","303801":"0141","303803":"0141","303804":"0141","303805":"0141","303806":"0141","303807":"0141","303901":"0141","303903":"0141","303904":"0141","303905":"0141","303908":"0141","304001":"01432","304021":"01432","304022":"01432","304023":"01432","304024":"01432","304025":"01432","304026":"01432","304501":"01432","304502":"01432","304503":"01432","304504":"01432","304505":"01432","304507":"01432","304801":"01432","304802":"01432","304803":"01432","304804":"01432","305001":"0145","305002":"0145","305003":"0145","305004":"0145","305005":"0145","305007":"0145","305009":"0145","305012":"0145","305021":"0145","305022":"0145","305023":"0145","305024":"0145","305025":"0145","305026":"01582","305201":"0145","305202":"0145","305203":"0145","305204":"0145","305205":"0145","305206":"0145","305207":"0145","305401":"0145","305402":"0145","305403":"0145","305404":"0145","305405":"0145","305406":"0145","305407":"0145","305408":"0145","305412":"0145","305415":"0145","305601":"0145","305621":"0145","305622":"0145","305623":"0145","305624":"0145","305625":"01482","305627":"0145","305628":"0145","305629":"0145","305630":"0145","305631":"0145","305801":"0145","305802":"0145","305811":"0145","305812":"0145","305813":"0145","305814":"0145","305815":"0145","305816":"0145","305817":"0145","305819":"0145","305901":"02952","305921":"02952","305922":"02952","305923":"0145","305924":"0145","305925":"02952","305926":"0145","305927":"0145","306001":"07816","306021":"07816","306022":"07816","306023":"07816","306101":"07816","306102":"07816","306103":"07816","306104":"07816","306105":"07816","306114":"07816","306115":"07816","306116":"07816","306119":"07816","306126":"07816","306301":"07816","306302":"07816","306303":"07816","306304":"07816","306305":"07816","306306":"07816","306307":"07816","306308":"07816","306401":"07816","306421":"07816","306422":"07816","306501":"07816","306502":"07816","306503":"07816","306504":"07816","306601":"07816","306602":"07816","306603":"07816","306701":"07816","306702":"07816","306703":"07816","306704":"07816","306705":"07816","306706":"07816","306707":"07816","306708":"07816","306709":"07816","306901":"07816","306902":"07816","306912":"07816","307001":"02972","307019":"02972","307022":"02972","307023":"02972","307024":"02972","307025":"0294","307026":"02972","307027":"02972","307028":"02972","307029":"02973","307030":"02973","307031":"02972","307032":"02972","307043":"02972","307501":"02972","307510":"02972","307511":"02972","307512":"02972","307513":"02972","307514":"02972","307515":"02973","307801":"02972","307802":"02972","307803":"02973","311001":"01482","311011":"01482","311021":"01482","311022":"01482","311023":"01482","311024":"01482","311025":"01482","311026":"01482","311030":"01482","311201":"01482","311202":"01482","311203":"01482","311204":"01482","311301":"01482","311302":"02952","311401":"01482","311402":"01482","311403":"01482","311404":"01482","311407":"01482","311408":"01482","311601":"01482","311602":"01482","311603":"01482","311604":"01482","311605":"01482","311606":"01482","311801":"01482","311802":"01482","311803":"01482","311804":"01482","311805":"01482","311806":"01482","312001":"01472","312021":"01472","312022":"01472","312023":"01472","312024":"01472","312025":"01472","312027":"01472","312201":"01472","312202":"01472","312203":"01472","312204":"01472","312205":"01472","312206":"01472","312207":"01472","312401":"01472","312402":"01472","312403":"01472","312404":"01472","312601":"01472","312602":"01472","312603":"01472","312604":"05342","312605":"05342","312606":"01472","312612":"01472","312613":"01472","312614":"01472","312615":"05342","312616":"05342","312617":"01472","312619":"05342","312620":"01472","312622":"01472","312623":"05342","312624":"05342","312625":"05342","312626":"05342","312627":"01472","312901":"01472","313001":"0294","313002":"0294","313003":"0294","313004":"0294","313011":"0294","313022":"0294","313024":"0294","313026":"0294","313027":"0294","313031":"0294","313038":"0294","313201":"0294","313202":"0294","313203":"0294","313204":"0294","313205":"0294","313206":"0294","313207":"02952","313211":"02952","313301":"02952","313321":"02952","313322":"0294","313323":"02952","313324":"02952","313325":"02952","313327":"02952","313328":"02952","313329":"02952","313330":"02952","313331":"02952","313332":"02952","313333":"02952","313334":"02952","313341":"02952","313342":"02952","313601":"0294","313602":"0294","313603":"0294","313604":"0294","313701":"0294","313702":"0294","313703":"0294","313704":"0294","313705":"0294","313706":"0294","313708":"0294","313801":"0294","313802":"0294","313803":"0294","313804":"0294","313805":"0294","313901":"0294","313902":"0294","313903":"0294","313904":"0294","313905":"0294","313906":"0294","314001":"01582","314011":"02964","314021":"02964","314022":"02964","314023":"02964","314024":"02964","314025":"02964","314026":"02964","314027":"02964","314028":"02964","314029":"02964","314030":"02964","314031":"02964","314032":"02964","314034":"02964","314035":"02964","314036":"02964","314037":"02964","314038":"02964","314401":"02964","314402":"02964","314403":"02964","314404":"02964","314406":"02964","314801":"02964","314804":"02964","321001":"07835","321021":"07835","321022":"07835","321023":"07835","321024":"07835","321025":"07835","321026":"07835","321028":"07835","321201":"07835","321202":"07835","321203":"07835","321204":"07835","321205":"07835","321206":"07835","321301":"07835","321302":"07835","321303":"07835","321401":"07835","321402":"07835","321403":"07835","321404":"07835","321405":"07835","321406":"07835","321407":"07835","321408":"07835","321409":"07835","321410":"07835","321411":"07835","321601":"07835","321602":"07835","321605":"0144","321606":"0144","321607":"0144","321608":"01427","321609":"01427","321610":"07464","321611":"07464","321612":"01427","321613":"01427","321614":"07835","321615":"07835","321633":"0144","321642":"07835","322001":"07462","322021":"07462","322023":"07462","322024":"07462","322025":"07462","322026":"07462","322027":"07462","322028":"07462","322029":"07462","322030":"07462","322033":"07462","322034":"07462","322201":"07462","322202":"07462","322203":"07462","322204":"07462","322205":"07462","322211":"07462","322212":"07462","322213":"07464","322214":"07462","322215":"07462","322216":"07464","322218":"07464","322219":"07462","322220":"07464","322230":"07464","322234":"07464","322236":"07464","322238":"07464","322240":"01427","322241":"07464","322242":"07464","322243":"07464","322249":"07464","322251":"07464","322252":"07464","322254":"07464","322255":"07464","322701":"07462","322702":"07462","322703":"07462","322704":"07462","323001":"0747","323021":"0747","323022":"0747","323023":"0747","323024":"0747","323025":"0747","323026":"0747","323301":"0747","323303":"01472","323304":"01472","323305":"01472","323306":"01472","323307":"01472","323601":"0747","323602":"0747","323603":"0747","323613":"0747","323614":"0747","323615":"0747","323616":"0747","323801":"0747","323802":"0747","323803":"0747","324001":"07753","324002":"07753","324003":"07753","324004":"07753","324005":"07753","324006":"07753","324007":"07753","324008":"07753","324009":"07753","324010":"07753","325001":"07753","325003":"07753","325004":"07753","325009":"07753","325201":"07753","325202":"07453","325203":"07753","325204":"07753","325205":"07453","325206":"07453","325207":"07753","325208":"07753","325209":"07453","325214":"07753","325215":"07453","325216":"07453","325217":"07453","325218":"07453","325219":"07453","325220":"07453","325221":"07453","325222":"07453","325223":"07453","325224":"07453","325601":"07753","325602":"07753","326001":"07432","326021":"07432","326022":"07432","326023":"07432","326033":"07432","326034":"07432","326035":"07432","326036":"07432","326037":"07432","326038":"07432","326039":"07432","326501":"07432","326502":"07432","326512":"07432","326513":"07432","326514":"07432","326515":"07432","326516":"07432","326517":"07753","326518":"07753","326519":"07753","326520":"07753","326529":"07753","326530":"07753","327001":"02962","327021":"02962","327022":"02962","327023":"02962","327024":"02962","327025":"02962","327026":"02962","327027":"02962","327031":"02962","327032":"02962","327034":"02962","327601":"02962","327602":"02962","327603":"02962","327604":"02962","327605":"02962","327606":"02962","327801":"02962","328001":"05642","328021":"05642","328022":"05642","328023":"05642","328024":"05642","328025":"05642","328026":"05642","328027":"05642","328028":"05642","328029":"05642","328030":"05642","328031":"05642","328041":"05642","331001":"01562","331021":"01562","331022":"01562","331023":"01562","331024":"01572","331025":"01592","331026":"01592","331027":"01592","331028":"01592","331029":"01562","331030":"01592","331031":"01562","331301":"01562","331302":"01562","331303":"01562","331304":"01562","331305":"01562","331402":"01562","331403":"01562","331411":"01562","331501":"01562","331502":"01562","331503":"01562","331504":"01562","331505":"01562","331506":"01562","331507":"01562","331517":"01562","331518":"01562","331701":"01562","331801":"0151","331802":"01562","331803":"0151","331811":"0151","332001":"01572","332002":"01572","332021":"01572","332023":"01572","332024":"01572","332025":"01572","332026":"01572","332027":"01572","332028":"01572","332029":"01572","332030":"01572","332031":"01572","332041":"01572","332042":"01572","332301":"01572","332302":"01572","332303":"01572","332304":"01572","332305":"01572","332307":"01572","332311":"01572","332312":"01572","332315":"01572","332316":"01572","332317":"01572","332318":"01572","332401":"01572","332402":"01572","332403":"01572","332404":"01572","332405":"01572","332406":"01572","332411":"01572","332601":"01572","332602":"01572","332603":"01572","332701":"01572","332702":"01572","332703":"01572","332705":"01572","332706":"01572","332707":"01572","332708":"01572","332709":"01572","332710":"01572","332711":"01572","332712":"01572","332713":"01572","332714":"01572","332715":"01572","332716":"01592","332718":"01572","332719":"01572","332721":"01572","332722":"01572","332742":"01572","332746":"01592","333001":"01592","333010":"01592","333011":"01592","333012":"01592","333020":"01592","333021":"01592","333022":"01592","333023":"01592","333024":"01592","333025":"01592","333026":"01592","333027":"01592","333028":"01592","333029":"01592","333030":"01592","333031":"01592","333032":"01592","333033":"01592","333034":"01592","333035":"01592","333036":"01592","333041":"01592","333042":"01592","333053":"01592","333055":"01592","333302":"01592","333303":"01592","333304":"01592","333305":"01592","333307":"01592","333308":"01592","333501":"01592","333502":"01592","333503":"01592","333504":"01592","333514":"01592","333515":"01592","333516":"01592","333517":"01592","333701":"01592","333702":"01592","333704":"01592","333705":"01592","333707":"01592","333801":"01592","334001":"0151","334003":"0151","334004":"0151","334006":"0151","334021":"0151","334022":"0151","334023":"0151","334201":"0151","334202":"0151","334302":"0151","334303":"0151","334305":"0151","334401":"0151","334402":"0151","334403":"0151","334601":"0151","334602":"0151","334603":"0151","334604":"0151","334801":"0151","334802":"0151","334803":"0151","334804":"0151","334808":"0151","335001":"0154","335002":"0154","335021":"0154","335022":"0154","335023":"0154","335024":"0154","335025":"0154","335027":"0154","335037":"0154","335038":"0154","335039":"0154","335040":"0154","335041":"0154","335051":"0154","335061":"0154","335062":"01552","335063":"01552","335064":"01552","335065":"01552","335073":"0154","335501":"01552","335502":"01552","335503":"01552","335504":"01552","335511":"01552","335512":"01552","335513":"01552","335522":"01552","335523":"01552","335524":"01552","335525":"01552","335526":"01552","335701":"0154","335702":"0154","335703":"0154","335704":"0154","335705":"0154","335707":"0154","335708":"0154","335711":"0154","335801":"01552","335802":"01552","335803":"01552","335804":"0154","335805":"0154","335901":"0154","341001":"01582","341020":"01582","341021":"01582","341022":"01582","341023":"01582","341024":"01582","341025":"01582","341026":"01582","341027":"01582","341028":"01582","341029":"01582","341030":"01582","341031":"01582","341301":"01582","341302":"01582","341303":"01582","341304":"01582","341305":"01582","341306":"01582","341316":"01582","341317":"01582","341318":"01582","341319":"01582","341501":"01582","341502":"01582","341503":"01582","341504":"01582","341505":"01582","341506":"01582","341507":"01582","341508":"01582","341509":"01582","341510":"01582","341511":"01582","341512":"01582","341513":"01582","341514":"01582","341515":"01582","341516":"01582","341517":"01582","341518":"01582","341519":"01582","341520":"01582","341533":"01582","341542":"01582","341551":"01582","342001":"0291","342002":"0291","342003":"0291","342005":"0291","342006":"0291","342007":"0291","342008":"0291","342011":"0291","342012":"0291","342013":"0291","342014":"0291","342015":"0291","342021":"0291","342022":"0291","342023":"0291","342024":"0291","342025":"0291","342026":"0291","342027":"0291","342028":"0291","342029":"0291","342030":"0291","342037":"0291","342301":"0291","342302":"0291","342303":"0291","342304":"0291","342305":"0291","342306":"0291","342307":"0291","342308":"0291","342309":"0291","342310":"02992","342311":"0291","342312":"0291","342314":"0291","342601":"0291","342602":"0291","342603":"0291","342604":"0291","342605":"0291","342606":"0291","342801":"0291","342802":"0291","342901":"0291","342902":"01582","343001":"02973","343002":"02973","343021":"02973","343022":"02973","343023":"02973","343024":"02973","343025":"02973","343027":"02973","343028":"02973","343029":"02973","343030":"02973","343032":"02973","343039":"02973","343040":"02973","343041":"02973","343042":"02973","343048":"02973","343049":"02973","344001":"02982","344011":"02982","344012":"02982","344021":"02982","344022":"02982","344024":"02982","344025":"02982","344026":"02982","344027":"02982","344031":"02982","344032":"02982","344033":"02982","344034":"02982","344035":"02982","344037":"02982","344043":"02982","344044":"02982","344501":"02982","344502":"02982","344701":"02982","344702":"02982","344703":"02982","344704":"02982","344705":"02982","344706":"02982","344708":"02982","344801":"02982","345001":"02992","345021":"0291","345022":"02992","345023":"02992","345024":"02992","345025":"02992","345026":"02992","345027":"02992","345028":"02992","345031":"02992","345033":"07432","345034":"02992","360001":"0281","360002":"0281","360003":"0281","360004":"0281","360005":"0281","360006":"0281","360007":"0281","360020":"0281","360021":"0281","360022":"0281","360023":"0281","360024":"0281","360025":"0281","360026":"0281","360028":"0281","360030":"0281","360035":"0281","360040":"0281","360045":"0281","360050":"0281","360055":"0281","360060":"0281","360070":"0281","360110":"0281","360311":"0281","360320":"0281","360325":"0281","360330":"0281","360360":"0281","360370":"0281","360375":"0281","360380":"0281","360405":"0281","360410":"0281","360421":"0281","360430":"0281","360440":"0281","360450":"0281","360452":"0281","360460":"0281","360465":"0281","360470":"0281","360480":"0281","360485":"0281","360490":"0281","360510":"02833","360515":"02833","360520":"0288","360530":"0288","360531":"0288","360540":"0288","360545":"0286","360550":"0286","360570":"0286","360575":"0286","360576":"0286","360577":"0286","360578":"0286","360579":"0286","360590":"0286","361001":"0288","361002":"0288","361003":"0288","361004":"0288","361005":"0288","361006":"0288","361007":"0288","361008":"0288","361009":"0288","361010":"0288","361011":"0288","361012":"0288","361013":"0288","361110":"0288","361120":"0288","361130":"0288","361140":"0288","361142":"0288","361150":"0288","361160":"0288","361162":"0288","361170":"0288","361210":"0288","361220":"0288","361230":"0288","361240":"0288","361250":"0288","361280":"0288","361305":"02833","361306":"02833","361310":"02833","361315":"02833","361320":"02833","361325":"02833","361330":"02833","361335":"02833","361345":"02833","361347":"02833","361350":"02833","362001":"0285","362002":"0285","362011":"0285","362015":"0285","362020":"0285","362030":"0285","362037":"0285","362110":"0285","362120":"0285","362130":"0285","362135":"0285","362140":"02876","362150":"0285","362205":"0285","362215":"0285","362220":"0285","362222":"0285","362225":"0285","362226":"0285","362227":"0285","362230":"0286","362240":"0285","362245":"0285","362250":"0285","362255":"0285","362260":"0285","362263":"0285","362265":"02876","362268":"02876","362275":"02876","362310":"0285","362315":"0285","362510":"02876","362520":"02875","362530":"02876","362540":"02875","362550":"02876","362560":"02876","362565":"02876","362570":"02875","362610":"0285","362620":"0286","362625":"0285","362630":"0285","362640":"0285","362650":"0286","362710":"02876","362715":"02876","362720":"02876","363001":"02752","363002":"02752","363020":"02752","363030":"02752","363035":"02752","363040":"02752","363110":"02752","363115":"02752","363310":"02752","363320":"02752","363330":"02752","363351":"02822","363410":"02752","363421":"02752","363423":"02752","363427":"02752","363430":"02752","363435":"02752","363440":"02752","363510":"02752","363520":"02752","363530":"02752","363621":"02822","363623":"02822","363630":"02822","363641":"02822","363642":"02822","363643":"02822","363650":"0281","363655":"02822","363660":"02822","363670":"02822","363745":"02752","363750":"02752","363755":"02752","363760":"02752","363765":"02752","363775":"02752","363780":"02752","364001":"0278","364002":"0278","364003":"0278","364004":"0278","364005":"0278","364006":"0278","364050":"0278","364060":"0278","364070":"0278","364081":"0278","364110":"0278","364120":"02849","364130":"0278","364135":"0278","364140":"0278","364145":"0278","364150":"0278","364210":"0278","364230":"0278","364240":"0278","364250":"0278","364260":"0278","364265":"0278","364270":"0278","364275":"0278","364280":"0278","364290":"0278","364295":"0278","364310":"0278","364313":"0278","364320":"02849","364330":"0278","364505":"0278","364510":"0278","364515":"02792","364521":"02792","364522":"02792","364525":"0278","364530":"0278","364710":"02849","364720":"02849","364730":"02849","364740":"02849","364750":"02849","364760":"02849","364765":"02849","365220":"02792","365410":"02792","365421":"02792","365430":"02792","365435":"02792","365440":"0285","365450":"02792","365455":"02792","365456":"02792","365460":"02792","365480":"0281","365535":"02792","365540":"02792","365541":"02792","365550":"02792","365555":"02792","365560":"02792","365601":"02792","365610":"02792","365620":"02792","365630":"02792","365635":"02792","365640":"02792","365645":"02792","365650":"02792","365730":"02792","370001":"02832","370015":"02832","370020":"02832","370030":"02832","370040":"02832","370105":"02832","370110":"02832","370115":"02832","370130":"02832","370135":"02832","370140":"02832","370145":"02832","370150":"02832","370155":"02832","370160":"02832","370165":"02832","370201":"02832","370203":"02832","370205":"02832","370210":"02832","370230":"02832","370240":"02832","370405":"02832","370410":"02832","370415":"02832","370421":"02832","370425":"02832","370427":"02832","370430":"02832","370435":"02832","370445":"02832","370450":"02832","370455":"02832","370460":"02832","370465":"02832","370475":"02832","370485":"02832","370490":"02832","370510":"02832","370601":"02832","370605":"02832","370610":"02832","370615":"02832","370620":"02832","370625":"02832","370627":"02832","370630":"02832","370641":"02832","370645":"02832","370650":"02832","370655":"02832","370660":"02832","370665":"02832","370670":"02832","370675":"02832","380001":"079","380002":"079","380003":"079","380004":"079","380005":"079","380006":"079","380007":"079","380008":"079","380009":"079","380013":"079","380014":"079","380015":"079","380016":"079","380018":"079","380019":"079","380021":"079","380022":"079","380023":"079","380024":"079","380026":"079","380027":"079","380028":"079","380049":"079","380050":"079","380051":"079","380052":"079","380054":"079","380055":"079","380058":"079","380059":"079","380060":"079","380061":"079","380063":"079","382006":"079","382007":"079","382010":"079","382016":"079","382021":"079","382024":"079","382028":"079","382030":"079","382041":"079","382042":"079","382045":"079","382110":"079","382115":"02762","382120":"02762","382122":"079","382130":"02752","382140":"079","382145":"079","382150":"079","382170":"02762","382210":"079","382213":"079","382220":"079","382225":"079","382230":"079","382240":"079","382245":"02849","382250":"02849","382255":"02849","382260":"079","382265":"079","382305":"079","382308":"079","382315":"079","382320":"079","382321":"079","382330":"079","382340":"079","382345":"079","382350":"079","382355":"079","382405":"079","382415":"079","382418":"079","382421":"079","382422":"079","382423":"079","382424":"079","382425":"079","382426":"079","382427":"079","382428":"079","382430":"079","382433":"079","382435":"079","382443":"079","382445":"079","382449":"079","382450":"02849","382455":"079","382460":"079","382463":"079","382465":"079","382470":"079","382475":"079","382480":"079","382481":"079","382610":"079","382620":"079","382630":"079","382640":"079","382650":"079","382721":"079","382722":"079","382725":"079","382729":"079","382735":"079","382740":"079","382810":"079","382835":"079","382845":"079","382855":"079","383001":"02772","383002":"02778","383006":"02772","383010":"02772","383030":"02778","383110":"02772","383120":"02772","383205":"02772","383210":"02772","383215":"02772","383220":"02772","383225":"02772","383230":"02772","383235":"02772","383240":"02772","383245":"02774","383246":"02772","383250":"02774","383251":"02774","383255":"02772","383260":"02774","383270":"02772","383275":"02772","383276":"02772","383305":"02772","383307":"02772","383310":"02774","383315":"02774","383316":"02774","383317":"02774","383320":"02774","383325":"02774","383330":"02774","383335":"02774","383340":"02774","383345":"02774","383350":"02774","383355":"02774","383410":"02772","383421":"02772","383422":"02778","383430":"02772","383434":"02772","383440":"02772","383450":"02772","383460":"02772","383462":"02772","384001":"02762","384002":"02762","384003":"02762","384005":"02762","384012":"02762","384110":"07621","384120":"02762","384130":"02762","384135":"02762","384140":"02762","384151":"07621","384160":"02762","384170":"02762","384220":"07621","384221":"07621","384225":"07621","384229":"07621","384230":"07621","384240":"07621","384241":"07621","384245":"07621","384246":"07621","384255":"07621","384260":"07621","384265":"07621","384272":"07621","384275":"07621","384285":"07621","384290":"07621","384305":"02762","384310":"02762","384315":"02762","384320":"02762","384325":"02762","384330":"02762","384335":"02762","384340":"02762","384345":"02762","384355":"02762","384360":"02762","384410":"02762","384412":"02762","384415":"02762","384421":"02762","384430":"02762","384435":"02762","384440":"02762","384441":"02762","384445":"02762","384450":"02762","384455":"02762","384460":"02762","384465":"02762","384470":"02762","384515":"02762","384520":"02762","384530":"02762","384540":"02762","384550":"02762","384560":"02762","384565":"02762","384570":"02762","385001":"02742","385010":"02742","385110":"02742","385120":"02742","385130":"02742","385135":"02742","385210":"02742","385310":"02742","385320":"02742","385330":"02742","385340":"07621","385350":"07621","385360":"07621","385410":"02742","385421":"02742","385505":"02742","385506":"02742","385510":"02742","385515":"02742","385520":"02742","385530":"02742","385535":"02742","385540":"02742","385545":"02742","385550":"02742","385555":"02742","385560":"02742","385565":"02742","385566":"02742","385570":"02742","385575":"02742","387001":"02694","387002":"02694","387003":"02694","387110":"02694","387115":"02694","387120":"02694","387130":"02694","387210":"02694","387220":"02692","387230":"02694","387240":"02692","387305":"02772","387310":"02692","387315":"02694","387320":"02694","387325":"02694","387330":"02694","387335":"02694","387340":"02694","387345":"02694","387350":"02694","387355":"02694","387360":"02694","387365":"02694","387370":"02694","387375":"02694","387380":"02694","387411":"02694","387430":"02694","387510":"02694","387520":"02694","387530":"02694","387540":"02694","387550":"02694","387560":"02694","387570":"02694","387610":"02694","387620":"02694","387630":"02694","387635":"02694","387640":"02694","387650":"02694","387710":"02694","388001":"02692","388110":"02692","388120":"02692","388121":"02692","388130":"02692","388140":"02692","388150":"02692","388160":"02692","388170":"02692","388180":"02694","388205":"02692","388210":"02692","388215":"02694","388220":"02694","388225":"02694","388230":"02694","388235":"02672","388239":"02694","388245":"02694","388250":"02694","388255":"02672","388260":"02672","388265":"02672","388270":"02672","388305":"02692","388306":"02692","388307":"02692","388310":"02692","388315":"02692","388320":"02692","388325":"02692","388330":"02692","388335":"02692","388340":"02692","388345":"02692","388350":"02692","388355":"02692","388360":"02692","388365":"02692","388370":"02692","388410":"02692","388421":"02692","388430":"02692","388440":"02694","388450":"02692","388460":"02692","388465":"02692","388470":"02692","388480":"02692","388510":"02692","388520":"02692","388530":"02692","388540":"02692","388543":"02692","388545":"02692","388550":"02692","388560":"02692","388570":"02692","388580":"02692","388590":"02692","388610":"02692","388620":"02692","388625":"02692","388630":"02692","388640":"02692","388710":"02672","388713":"02672","389001":"02672","389002":"02672","389110":"02672","389115":"02672","389120":"02672","389130":"02673","389140":"02673","389146":"02673","389151":"02673","389152":"02673","389154":"02673","389155":"02673","389160":"02673","389170":"02673","389172":"02672","389175":"02673","389180":"02673","389190":"02672","389210":"02672","389220":"02672","389230":"02672","389232":"02672","389235":"02672","389250":"02672","389260":"02672","389265":"02672","389310":"02672","389320":"02672","389330":"02672","389340":"02672","389341":"02672","389350":"02672","389360":"02672","389365":"02672","389370":"02672","389380":"02672","389382":"02673","389390":"02672","390001":"0265","390002":"0265","390003":"0265","390004":"0265","390006":"0265","390007":"0265","390009":"0265","390010":"0265","390011":"0265","390012":"0265","390013":"0265","390014":"0265","390016":"0265","390017":"0265","390018":"0265","390019":"0265","390020":"0265","390021":"0265","390022":"0265","390023":"0265","390024":"0265","390025":"0265","391101":"0265","391105":"0265","391107":"0265","391110":"0265","391115":"0265","391120":"02649","391125":"02669","391130":"02669","391135":"02669","391140":"02669","391145":"02669","391150":"02669","391152":"02669","391156":"02669","391160":"02669","391165":"02669","391168":"02669","391170":"02669","391210":"0265","391220":"0265","391240":"0265","391243":"0265","391244":"0265","391250":"0265","391310":"0265","391320":"0265","391330":"0265","391340":"0265","391345":"0265","391350":"0265","391410":"0265","391421":"0265","391430":"0265","391440":"0265","391445":"0265","391450":"0265","391510":"0265","391520":"0265","391530":"0265","391740":"0265","391745":"0265","391750":"0265","391760":"0265","391761":"0265","391770":"0265","391774":"0265","391775":"0265","391776":"0265","391780":"0265","391810":"02642","392001":"02642","392011":"02642","392012":"02642","392015":"02642","392020":"02642","392025":"02642","392030":"02642","392035":"02642","392040":"02642","392110":"02642","392130":"02642","392135":"02642","392140":"02642","392150":"02642","392155":"02642","392160":"02642","392165":"02642","392170":"02642","392180":"02642","392210":"02642","392215":"02642","392220":"0265","392230":"02642","392240":"02642","392310":"0265","393001":"02642","393002":"02642","393010":"02642","393017":"02642","393020":"02642","393025":"02649","393030":"02642","393040":"02649","393041":"02649","393050":"02649","393105":"0265","393110":"02642","393115":"02642","393120":"02649","393125":"02642","393130":"02649","393135":"02642","393140":"02649","393145":"02649","393150":"02649","393151":"02649","394101":"0261","394105":"0261","394107":"0261","394110":"0261","394111":"0261","394112":"0261","394115":"02642","394120":"0261","394125":"0261","394130":"0261","394140":"0261","394150":"0261","394155":"0261","394160":"0261","394163":"0261","394170":"0261","394180":"0261","394185":"0261","394190":"0261","394210":"0261","394221":"0261","394230":"0261","394235":"0261","394240":"0261","394245":"0261","394246":"02628","394248":"0261","394250":"02628","394270":"0261","394305":"0261","394310":"0261","394315":"0261","394317":"0261","394320":"0261","394325":"0261","394326":"0261","394327":"0261","394330":"0261","394335":"0261","394340":"02628","394345":"0261","394350":"0261","394352":"0261","394355":"0261","394360":"02628","394365":"02628","394370":"02628","394375":"02628","394380":"02628","394405":"0261","394410":"0261","394421":"0261","394430":"0261","394440":"0261","394445":"0261","394510":"0261","394515":"0261","394516":"0261","394517":"0261","394518":"0261","394520":"0261","394530":"0261","394540":"0261","394541":"0261","394550":"0261","394601":"0261","394620":"02628","394630":"02628","394633":"02628","394635":"02628","394640":"02628","394641":"02628","394650":"02628","394651":"02628","394652":"02628","394655":"02628","394660":"02628","394670":"02628","394680":"02628","394690":"02628","394710":"02631","394715":"02631","394716":"02628","394720":"02631","394730":"02631","394810":"02642","395001":"0261","395002":"0261","395003":"0261","395004":"0261","395005":"0261","395006":"0261","395007":"0261","395008":"0261","395009":"0261","395010":"0261","395011":"0261","395012":"0261","395013":"0261","395017":"0261","395023":"0261","396001":"02632","396002":"02632","396007":"02632","396020":"02632","396030":"02632","396035":"02632","396040":"02637","396045":"02632","396050":"02632","396051":"02632","396055":"02632","396060":"02637","396065":"02632","396067":"02632","396105":"02632","396110":"02637","396115":"02632","396120":"02632","396125":"02632","396126":"02632","396130":"02632","396135":"02632","396140":"02632","396145":"02632","396150":"02632","396155":"02632","396165":"02632","396170":"02632","396171":"02632","396180":"02632","396185":"02632","396191":"02632","396193":"02632","396195":"02632","396210":"0260","396215":"02632","396220":"0260","396230":"02632","396235":"02632","396240":"02632","396310":"02637","396321":"02637","396325":"02637","396350":"02637","396360":"02637","396370":"02637","396375":"02632","396380":"02637","396385":"02632","396403":"02637","396406":"02637","396409":"02637","396412":"02637","396415":"02637","396418":"02637","396421":"02637","396424":"02637","396427":"02637","396430":"02637","396433":"02637","396436":"02637","396439":"02637","396440":"02637","396445":"02637","396450":"02637","396460":"02637","396463":"02637","396466":"02637","396469":"02637","396472":"02637","396475":"02637","396510":"0261","396521":"02637","396530":"02637","396540":"02637","396560":"02637","396570":"02637","396580":"02637","396590":"02637","400001":"022","400002":"022","400003":"022","400004":"022","400005":"022","400006":"022","400007":"022","400008":"022","400009":"022","400010":"022","400011":"022","400012":"022","400013":"022","400014":"022","400015":"022","400016":"022","400017":"022","400018":"022","400019":"022","400020":"022","400021":"022","400022":"022","400024":"022","400025":"022","400026":"022","400027":"022","400028":"022","400029":"022","400030":"022","400031":"022","400032":"022","400033":"022","400034":"022","400035":"022","400037":"022","400042":"022","400043":"022","400049":"022","400050":"022","400051":"022","400052":"022","400053":"022","400054":"022","400055":"022","400056":"022","400057":"022","400058":"022","400059":"022","400060":"022","400061":"022","400063":"022","400064":"022","400065":"022","400066":"022","400067":"022","400068":"022","400069":"022","400070":"022","400071":"022","400072":"022","400074":"022","400075":"022","400076":"022","400077":"022","400078":"022","400079":"022","400080":"022","400081":"022","400082":"022","400083":"022","400084":"022","400085":"022","400086":"022","400087":"022","400088":"022","400089":"022","400091":"022","400092":"022","400093":"022","400094":"022","400095":"022","400096":"022","400097":"022","400098":"022","400099":"022","400101":"022","400102":"022","400103":"022","400104":"022","400601":"022","400602":"022","400603":"022","400604":"022","400605":"022","400606":"022","400607":"022","400608":"022","400610":"022","400612":"022","400614":"022","400615":"022","400701":"022","400702":"02194","400703":"022","400704":"02194","400705":"022","400706":"022","400707":"02194","400708":"022","400709":"022","400710":"022","401101":"022","401102":"02525","401103":"02525","401105":"02525","401106":"022","401107":"022","401201":"02525","401202":"02525","401203":"02525","401204":"022","401206":"022","401207":"02525","401208":"02525","401209":"02525","401301":"02525","401302":"02525","401303":"02525","401304":"02525","401305":"02525","401401":"02525","401402":"02525","401403":"02525","401404":"02525","401405":"02525","401501":"02525","401502":"02525","401503":"02525","401504":"02525","401506":"02525","401601":"02525","401602":"02525","401603":"02525","401604":"02525","401605":"02525","401606":"02525","401607":"02525","401608":"02525","401701":"02525","401702":"02525","401703":"02525","402101":"02194","402102":"02194","402103":"02194","402104":"02194","402105":"02194","402106":"02194","402107":"02194","402108":"02194","402109":"02194","402110":"02194","402111":"02194","402112":"02194","402113":"02194","402114":"02194","402115":"02194","402116":"02194","402117":"02194","402120":"02194","402122":"02194","402125":"02194","402126":"02194","402201":"02194","402202":"02194","402203":"02194","402204":"02194","402207":"02194","402208":"02194","402209":"02194","402301":"02194","402302":"02194","402303":"02194","402304":"02194","402305":"02194","402306":"02194","402307":"02194","402308":"02194","402309":"02194","402401":"02194","402402":"02194","402403":"02194","402404":"02194","403001":"0832","403002":"0832","403004":"0832","403005":"0832","403006":"0832","403101":"0832","403102":"0832","403103":"0832","403104":"0832","403105":"0832","403106":"0832","403107":"0832","403108":"0832","403109":"0832","403110":"0832","403114":"0832","403115":"0832","403201":"0832","403202":"0832","403203":"0832","403204":"0832","403206":"0832","403401":"0832","403402":"0832","403403":"0832","403404":"0832","403406":"0832","403409":"0832","403410":"0832","403501":"0832","403502":"0832","403503":"0832","403504":"0832","403505":"0832","403506":"0832","403507":"0832","403508":"0832","403509":"0832","403510":"0832","403511":"0832","403512":"0832","403513":"0832","403515":"0832","403516":"0832","403517":"0832","403521":"0832","403523":"0832","403524":"0832","403526":"0832","403527":"0832","403529":"0832","403530":"0832","403601":"0832","403602":"0832","403701":"0832","403702":"0832","403703":"0832","403704":"0832","403705":"0832","403706":"0832","403707":"0832","403708":"0832","403709":"0832","403710":"0832","403711":"0832","403712":"0832","403713":"0832","403714":"0832","403715":"0832","403716":"0832","403717":"0832","403718":"0832","403719":"0832","403720":"0832","403721":"0832","403722":"0832","403723":"0832","403724":"0832","403725":"0832","403726":"0832","403728":"0832","403729":"0832","403731":"0832","403801":"0832","403802":"0832","403803":"0832","403804":"0832","403806":"0832","410101":"02194","410102":"02194","410201":"02194","410202":"02194","410203":"02194","410204":"02194","410205":"02194","410206":"02194","410207":"02194","410208":"02194","410209":"02194","410210":"02194","410216":"02194","410218":"02194","410220":"02194","410221":"02194","410222":"02194","410301":"020","410302":"020","410401":"020","410402":"020","410403":"020","410405":"020","410406":"020","410501":"020","410502":"020","410503":"020","410504":"020","410505":"020","410506":"020","410507":"020","410508":"020","410509":"020","410510":"020","410511":"020","410512":"020","410513":"020","410515":"020","410516":"020","411001":"020","411002":"020","411003":"020","411004":"020","411005":"020","411006":"020","411007":"020","411008":"020","411009":"020","411011":"020","411012":"020","411013":"020","411014":"020","411015":"020","411016":"020","411017":"020","411018":"020","411019":"020","411020":"020","411021":"020","411022":"020","411023":"020","411024":"020","411025":"020","411026":"020","411027":"020","411028":"020","411030":"020","411031":"020","411032":"020","411033":"020","411034":"020","411035":"020","411036":"020","411037":"020","411038":"020","411039":"020","411040":"020","411041":"020","411042":"020","411043":"020","411044":"020","411045":"020","411046":"020","411047":"020","411048":"020","411051":"020","411052":"020","411057":"020","411058":"020","411060":"020","411061":"020","411062":"020","411067":"020","411068":"020","411069":"020","412101":"020","412102":"020","412103":"020","412104":"020","412105":"020","412106":"020","412107":"020","412108":"020","412109":"020","412110":"020","412112":"020","412115":"020","412201":"020","412202":"020","412203":"020","412204":"020","412205":"020","412206":"02162","412207":"020","412208":"020","412209":"020","412210":"020","412211":"020","412212":"020","412213":"020","412214":"020","412215":"020","412216":"020","412218":"020","412219":"020","412220":"020","412301":"020","412303":"020","412304":"020","412305":"020","412306":"020","412307":"020","412308":"020","412311":"020","412312":"020","412401":"020","412402":"020","412403":"020","412404":"020","412405":"020","412406":"020","412408":"020","412409":"020","412410":"020","412411":"020","412412":"020","412801":"02162","412802":"02162","412803":"02162","412804":"02162","412805":"02162","412806":"02162","413001":"0217","413002":"0217","413003":"0217","413004":"0217","413005":"0217","413006":"0217","413007":"0217","413008":"0217","413101":"0217","413102":"020","413103":"020","413104":"020","413105":"020","413106":"020","413107":"0217","413108":"0217","413109":"0217","413110":"020","413111":"0217","413112":"0217","413113":"0217","413114":"020","413115":"020","413116":"020","413118":"0217","413120":"020","413130":"020","413132":"020","413133":"020","413201":"0241","413202":"0217","413203":"0217","413204":"0241","413205":"0241","413206":"0217","413207":"02442","413208":"0217","413209":"0217","413210":"0217","413211":"0217","413212":"0217","413213":"0217","413214":"0217","413215":"0217","413216":"0217","413217":"0217","413218":"0217","413219":"0217","413220":"0217","413221":"0217","413222":"0217","413223":"0217","413224":"0217","413226":"0217","413227":"0217","413228":"0217","413229":"02442","413248":"0217","413249":"02442","413250":"0217","413251":"0217","413252":"0217","413253":"0217","413255":"0217","413301":"0217","413302":"0217","413303":"0217","413304":"0217","413305":"0217","413306":"0217","413307":"0217","413308":"0217","413309":"0217","413310":"0217","413314":"0217","413315":"0217","413317":"0217","413319":"0217","413322":"0217","413324":"0217","413401":"0217","413402":"0217","413403":"0217","413404":"0217","413405":"02472","413406":"0217","413409":"0217","413410":"0217","413411":"0217","413412":"0217","413501":"02472","413502":"02472","413503":"02472","413504":"02472","413505":"02472","413506":"02472","413507":"02472","413508":"02472","413509":"02472","413510":"02472","413511":"02382","413512":"02382","413513":"02382","413514":"02382","413515":"02382","413516":"02382","413517":"02382","413518":"02382","413519":"02382","413520":"02382","413521":"02382","413522":"02382","413523":"02382","413524":"02382","413525":"02472","413526":"02472","413527":"02382","413528":"02472","413529":"02382","413530":"02382","413531":"02382","413532":"02382","413534":"02472","413544":"02382","413581":"02382","413582":"02472","413601":"02472","413602":"02472","413603":"02472","413604":"02472","413605":"02472","413606":"02472","413607":"02382","413608":"02472","413623":"02472","413624":"02472","413701":"0241","413702":"0241","413703":"0241","413704":"0241","413705":"0241","413706":"0241","413707":"0241","413708":"0241","413709":"0241","413710":"0241","413711":"0241","413712":"0241","413713":"0241","413714":"0241","413715":"0241","413716":"0241","413717":"0241","413718":"0241","413719":"0241","413720":"0241","413721":"0241","413722":"0241","413723":"0241","413725":"0241","413726":"0241","413728":"0241","413736":"0241","413737":"0241","413738":"0241","413739":"0241","413801":"020","413802":"020","414001":"0241","414002":"0241","414003":"0241","414005":"0241","414006":"0241","414101":"0241","414102":"0241","414103":"0241","414105":"0241","414106":"0241","414110":"0241","414111":"0241","414113":"0241","414201":"0241","414202":"02442","414203":"02442","414204":"02442","414205":"02442","414208":"02442","414301":"0241","414302":"0241","414303":"0241","414304":"0241","414305":"0241","414306":"0241","414401":"0241","414402":"0241","414403":"0241","414501":"0241","414502":"0241","414503":"0241","414504":"0241","414505":"0241","414601":"0241","414602":"0241","414603":"0241","414604":"0241","414605":"0241","414606":"0241","414607":"0241","414609":"0241","414701":"0241","415001":"02162","415002":"02162","415003":"02162","415004":"02162","415010":"02162","415011":"02162","415012":"02162","415013":"02162","415014":"02162","415015":"02162","415019":"02162","415020":"02162","415021":"02162","415022":"02162","415023":"02162","415101":"0231","415102":"02162","415103":"02162","415104":"02162","415105":"02162","415106":"02162","415107":"02162","415108":"02162","415109":"02162","415110":"02162","415111":"02162","415112":"02162","415114":"02162","415115":"02162","415116":"02162","415122":"02162","415124":"02162","415202":"02352","415203":"02352","415205":"02162","415206":"02162","415207":"02162","415208":"02352","415209":"02162","415211":"02162","415212":"02162","415213":"02194","415214":"02352","415301":"0233","415302":"0233","415303":"0233","415304":"0233","415305":"0233","415306":"0233","415307":"0233","415308":"0233","415309":"0233","415310":"0233","415311":"0233","415312":"02162","415313":"0233","415315":"0233","415401":"0233","415402":"0233","415403":"0233","415404":"0233","415405":"0233","415406":"0233","415407":"0233","415408":"0233","415409":"0233","415410":"0233","415411":"0233","415412":"0233","415413":"0233","415414":"0233","415415":"0233","415501":"02162","415502":"02162","415503":"02162","415504":"02162","415505":"02162","415506":"02162","415507":"02162","415508":"02162","415509":"02162","415510":"02162","415511":"02162","415512":"02162","415513":"02162","415514":"02162","415515":"02162","415516":"02162","415517":"02162","415518":"02162","415519":"02162","415520":"02162","415521":"02162","415522":"02162","415523":"02162","415524":"02162","415525":"02162","415526":"02162","415527":"02162","415528":"02162","415530":"02162","415536":"02162","415537":"02162","415538":"02162","415539":"02162","415540":"02162","415601":"02352","415602":"02352","415603":"02352","415604":"02352","415605":"02352","415606":"02352","415607":"02352","415608":"02352","415609":"02352","415610":"02352","415611":"02352","415612":"02352","415613":"02352","415614":"02352","415615":"02352","415616":"02352","415617":"02352","415619":"02352","415620":"02352","415621":"02352","415626":"02352","415628":"02352","415629":"02352","415634":"02352","415637":"02352","415639":"02352","415640":"02352","415641":"02352","415643":"02352","415701":"02352","415702":"02352","415703":"02352","415705":"02352","415706":"02352","415708":"02352","415709":"02352","415710":"02352","415711":"02352","415712":"02352","415713":"02352","415714":"02352","415715":"02352","415716":"02352","415717":"02352","415718":"02352","415719":"02352","415720":"02352","415722":"02352","415724":"02352","415726":"02352","415727":"02352","415728":"02352","415729":"02352","415730":"02352","415801":"02352","415802":"02352","415803":"02352","415804":"02352","415805":"02352","415806":"02352","415807":"02352","416001":"0231","416002":"0231","416003":"0231","416004":"0231","416005":"0231","416006":"0231","416007":"0231","416008":"0231","416010":"0231","416011":"0231","416012":"0231","416013":"0231","416101":"0231","416102":"0231","416103":"0231","416104":"0231","416105":"0231","416106":"0231","416107":"0231","416108":"0231","416109":"0231","416110":"0231","416111":"0231","416112":"0231","416113":"0231","416114":"0231","416115":"0231","416116":"0231","416118":"0231","416119":"0231","416120":"0231","416121":"0231","416122":"0231","416138":"0231","416143":"0231","416144":"0231","416146":"0231","416201":"0231","416202":"0231","416203":"0231","416204":"0231","416205":"0231","416206":"0231","416207":"0231","416208":"0231","416209":"0231","416210":"0231","416211":"0231","416212":"0231","416213":"0231","416214":"0231","416215":"0231","416216":"0231","416218":"0231","416219":"0231","416220":"0231","416221":"0231","416223":"0231","416229":"0231","416230":"0231","416231":"0231","416232":"0231","416234":"0231","416235":"0231","416236":"0231","416301":"0233","416302":"0233","416303":"0233","416304":"0233","416305":"0233","416306":"0233","416307":"0233","416308":"0233","416309":"0233","416310":"0233","416311":"0233","416312":"0233","416313":"0233","416314":"0233","416315":"0233","416316":"0233","416401":"0233","416402":"0233","416403":"0233","416404":"0233","416405":"0233","416406":"0233","416407":"0233","416408":"0233","416409":"0233","416410":"0233","416411":"0233","416412":"0233","416413":"0233","416414":"0233","416415":"0233","416416":"0233","416417":"0233","416418":"0233","416419":"0233","416420":"0233","416436":"0233","416437":"0233","416501":"0231","416502":"0231","416503":"0231","416504":"0231","416505":"0231","416506":"0231","416507":"0231","416508":"0231","416509":"0231","416510":"02362","416511":"02362","416512":"02362","416513":"02362","416514":"02362","416515":"02362","416516":"02362","416517":"02362","416518":"02362","416519":"02362","416520":"02362","416521":"02362","416522":"02362","416523":"02362","416524":"02362","416525":"02362","416526":"0231","416527":"0231","416528":"02362","416529":"02362","416531":"02362","416534":"02362","416549":"02362","416550":"02362","416551":"0231","416552":"0231","416601":"02362","416602":"02362","416603":"02362","416604":"02362","416605":"02362","416606":"02362","416608":"02362","416609":"02362","416610":"02362","416611":"02362","416612":"02362","416613":"02362","416614":"02362","416615":"02362","416616":"02362","416620":"02362","416623":"02362","416626":"02362","416628":"02362","416630":"02362","416632":"02362","416701":"02352","416702":"02352","416703":"02362","416704":"02352","416705":"02352","416707":"02352","416709":"02352","416712":"02352","416713":"02352","416801":"02362","416803":"02362","416804":"02362","416805":"02362","416806":"02362","416807":"02362","416810":"02362","416811":"02362","416812":"02362","416813":"02362","421002":"022","421004":"022","421005":"022","421101":"022","421102":"022","421103":"022","421201":"022","421202":"022","421203":"022","421204":"022","421301":"022","421302":"022","421303":"02525","421305":"022","421306":"022","421308":"022","421311":"022","421312":"02525","421401":"022","421402":"022","421403":"022","421501":"022","421502":"022","421503":"022","421505":"022","421506":"022","421601":"022","421602":"022","421603":"022","421605":"022","422001":"0253","422002":"0253","422003":"0253","422004":"0253","422005":"0253","422006":"0253","422007":"0253","422008":"0253","422009":"0253","422010":"0253","422011":"0253","422012":"0253","422013":"0253","422101":"0253","422102":"0253","422103":"0253","422104":"0253","422105":"0253","422112":"0253","422113":"0253","422201":"0253","422202":"0253","422203":"0253","422204":"0253","422205":"0253","422206":"0253","422207":"0253","422208":"0253","422209":"0253","422210":"0253","422211":"0253","422212":"0253","422213":"0253","422214":"0253","422215":"0253","422221":"0253","422222":"0253","422301":"0253","422302":"0253","422303":"0253","422304":"0253","422305":"0253","422306":"0253","422308":"0253","422401":"0253","422402":"0253","422403":"0253","422501":"0253","422502":"0253","422601":"0241","422602":"0241","422603":"0241","422604":"0241","422605":"0241","422606":"0253","422608":"0241","422610":"0241","422611":"0241","422620":"0241","422622":"0241","423101":"0253","423102":"0253","423104":"0253","423105":"0253","423106":"0253","423107":"0241","423108":"0253","423109":"0241","423110":"0253","423111":"0253","423117":"0253","423201":"0253","423202":"0253","423203":"0253","423204":"0253","423205":"0253","423206":"0253","423208":"0253","423212":"0253","423213":"0253","423301":"0253","423302":"0253","423303":"0253","423401":"0253","423402":"0253","423403":"0253","423501":"0253","423502":"0253","423601":"0241","423602":"0241","423603":"0241","423604":"0241","423605":"0241","423607":"0241","423701":"0240","423702":"0240","423703":"0240","424001":"02562","424002":"02562","424004":"02562","424005":"02562","424006":"02562","424101":"0257","424102":"0257","424103":"0257","424104":"0257","424105":"0257","424106":"0257","424107":"0257","424108":"0257","424109":"0253","424119":"0257","424201":"0257","424202":"0257","424203":"0257","424204":"0257","424205":"0257","424206":"0257","424207":"0257","424208":"0257","424301":"02562","424302":"02562","424303":"02562","424304":"02562","424305":"02562","424306":"02562","424307":"02562","424308":"02562","424309":"02562","424310":"02562","424311":"02562","424318":"02562","425001":"0257","425002":"0257","425003":"0257","425004":"0257","425101":"0257","425102":"0257","425103":"0257","425104":"0257","425105":"0257","425107":"0257","425108":"0257","425109":"0257","425110":"0257","425111":"0257","425112":"0257","425113":"0257","425114":"0257","425115":"0257","425116":"0257","425201":"0257","425203":"0257","425301":"0257","425302":"0257","425303":"0257","425304":"0257","425305":"0257","425306":"0257","425307":"0257","425308":"0257","425309":"0257","425310":"0257","425311":"0257","425327":"0257","425401":"0257","425402":"0257","425403":"02562","425404":"02562","425405":"02562","425406":"02562","425407":"02562","425408":"02564","425409":"02564","425410":"02564","425411":"02564","425412":"02564","425413":"02564","425414":"02564","425415":"02564","425416":"02564","425417":"02564","425418":"02564","425419":"02564","425420":"0257","425421":"02562","425422":"02564","425423":"02564","425424":"02564","425426":"02564","425427":"02562","425428":"02562","425432":"02564","425442":"02564","425444":"02564","425452":"02564","425501":"0257","425502":"0257","425503":"0257","425504":"0257","425505":"0257","425506":"0257","425507":"0257","425508":"0257","425524":"0257","431001":"0240","431002":"0240","431003":"0240","431004":"0240","431005":"0240","431006":"0240","431007":"0240","431008":"0240","431009":"0240","431010":"0240","431011":"0240","431101":"0240","431102":"0240","431103":"0240","431104":"0240","431105":"0240","431107":"0240","431109":"0240","431110":"0240","431111":"0240","431112":"02482","431113":"0240","431114":"02482","431115":"0240","431116":"0240","431117":"0240","431118":"0240","431120":"0240","431121":"02482","431122":"02442","431123":"02442","431124":"02442","431125":"02442","431126":"02442","431127":"02442","431128":"02442","431129":"02442","431130":"02442","431131":"02442","431132":"02482","431133":"0240","431134":"02482","431135":"02482","431136":"0240","431137":"02482","431142":"02442","431143":"02442","431144":"02442","431147":"0240","431148":"0240","431150":"0240","431151":"0240","431152":"0240","431153":"02442","431154":"02482","431202":"02482","431203":"02482","431204":"02482","431205":"02482","431206":"02482","431207":"02482","431208":"02482","431209":"02482","431211":"02482","431212":"02482","431213":"02482","431214":"02482","431215":"02482","431401":"02452","431402":"02452","431501":"02482","431502":"02482","431503":"02452","431504":"02482","431505":"02452","431506":"02452","431507":"02482","431508":"02452","431509":"02452","431510":"02452","431511":"02452","431512":"02456","431513":"02456","431514":"02452","431515":"02442","431516":"02452","431517":"02442","431518":"02442","431519":"02442","431520":"02442","431521":"02452","431522":"02382","431523":"02442","431530":"02442","431536":"02452","431537":"02452","431540":"02452","431541":"02452","431542":"02456","431601":"02462","431602":"02462","431603":"02462","431604":"02462","431605":"02462","431606":"02462","431701":"02456","431702":"02456","431703":"02456","431704":"02462","431705":"02456","431707":"02462","431708":"02462","431709":"02462","431710":"02462","431711":"02462","431712":"02462","431713":"02462","431714":"02462","431715":"02462","431716":"02462","431717":"02462","431718":"02462","431719":"02462","431720":"02452","431721":"02462","431722":"02462","431723":"02462","431731":"02462","431736":"02462","431741":"02462","431742":"02462","431743":"02462","431745":"02462","431746":"02462","431750":"02462","431801":"02462","431802":"02462","431803":"02462","431804":"02462","431805":"02462","431806":"02462","431807":"02462","431808":"02462","431809":"02462","431810":"02462","431811":"02462","440001":"0712","440002":"0712","440003":"0712","440005":"0712","440006":"0712","440007":"0712","440008":"0712","440010":"0712","440012":"0712","440013":"0712","440014":"0712","440015":"0712","440016":"0712","440017":"0712","440018":"0712","440019":"0712","440020":"0712","440021":"0712","440022":"0712","440023":"0712","440024":"0712","440025":"0712","440026":"0712","440027":"0712","440030":"0712","440032":"0712","440033":"0712","440034":"0712","440035":"0712","440036":"0712","440037":"0712","441001":"0712","441101":"0712","441102":"0712","441103":"0712","441104":"0712","441105":"0712","441106":"0712","441107":"0712","441108":"0712","441109":"0712","441110":"0712","441111":"0712","441112":"0712","441113":"0712","441122":"0712","441123":"0712","441201":"0712","441202":"0712","441203":"0712","441204":"0712","441205":"07172","441206":"07172","441207":"07132","441208":"07132","441209":"07132","441210":"0712","441212":"07172","441214":"0712","441215":"07172","441217":"07132","441221":"07172","441222":"07172","441223":"07172","441224":"07172","441225":"07172","441226":"07172","441301":"0712","441302":"0712","441303":"0712","441304":"0712","441305":"0712","441306":"0712","441401":"0712","441404":"0712","441501":"0712","441502":"0712","441601":"07182","441614":"07182","441701":"07182","441702":"07182","441801":"07182","441802":"07184","441803":"07184","441804":"07184","441805":"07184","441806":"07182","441807":"07182","441809":"07184","441901":"07182","441902":"07182","441903":"07184","441904":"07184","441905":"07184","441906":"07184","441907":"07184","441908":"07184","441909":"07184","441910":"07184","441911":"07182","441912":"07184","441913":"07184","441914":"07184","441915":"07184","441916":"07182","441924":"07184","442001":"07152","442003":"07152","442101":"07152","442102":"07152","442104":"07152","442105":"07152","442106":"07152","442107":"07152","442111":"07152","442201":"07152","442202":"07152","442203":"07152","442301":"07152","442302":"07152","442303":"07152","442304":"07152","442305":"07152","442306":"07152","442307":"07152","442401":"07172","442402":"07172","442403":"07172","442404":"07172","442406":"07172","442501":"07172","442502":"07172","442503":"07172","442504":"07132","442505":"07172","442507":"07172","442603":"07132","442604":"07132","442605":"07132","442606":"07132","442701":"07172","442702":"07172","442703":"07132","442704":"07132","442705":"07132","442707":"07132","442709":"07132","442710":"07132","442901":"07172","442902":"07172","442903":"07172","442904":"07172","442905":"07172","442906":"07172","442907":"07172","442908":"07172","442914":"07172","442916":"07172","442917":"07172","442918":"07132","442919":"07132","443001":"07262","443002":"07262","443101":"07262","443102":"07262","443103":"07262","443104":"07262","443106":"07262","443112":"07262","443201":"07262","443202":"07262","443203":"07262","443204":"07262","443206":"07262","443301":"07262","443302":"07262","443303":"07262","443304":"07262","443308":"07262","443401":"07262","443402":"07262","443403":"07262","443404":"07262","444001":"0724","444002":"0724","444003":"0724","444004":"0724","444005":"0724","444006":"0724","444007":"0724","444101":"0724","444102":"0724","444103":"0724","444104":"0724","444105":"07252","444106":"0724","444107":"0724","444108":"0724","444109":"0724","444110":"07252","444111":"0724","444117":"0724","444126":"0724","444201":"07262","444202":"07262","444203":"07262","444204":"07262","444301":"07262","444302":"0724","444303":"07262","444304":"07262","444306":"07262","444311":"0724","444312":"07262","444401":"0724","444402":"07252","444403":"07252","444404":"07252","444405":"0724","444407":"0724","444409":"07252","444501":"0724","444502":"0724","444503":"07252","444504":"07252","444505":"07252","444506":"07252","444507":"07252","444510":"07252","444511":"0724","444601":"0721","444602":"0721","444603":"0721","444604":"0721","444605":"0721","444606":"0721","444607":"0721","444701":"0721","444702":"0721","444704":"0721","444705":"0721","444706":"0721","444707":"0721","444708":"0721","444709":"0721","444710":"0721","444711":"0721","444717":"0721","444719":"0721","444720":"0721","444723":"0721","444801":"0721","444802":"0721","444803":"0721","444804":"0721","444805":"0721","444806":"0721","444807":"0721","444808":"0721","444809":"0721","444810":"0721","444813":"0721","444901":"0721","444902":"0721","444903":"0721","444904":"0721","444905":"0721","444906":"0721","444907":"0721","444908":"0721","444915":"0721","445001":"07232","445002":"07232","445101":"07232","445102":"07232","445103":"07232","445105":"07232","445106":"07232","445109":"07232","445110":"07232","445201":"07232","445202":"07232","445203":"07232","445204":"07232","445205":"07232","445206":"07232","445207":"07232","445209":"07232","445210":"07232","445211":"07232","445215":"07232","445216":"07232","445230":"07232","445301":"07232","445302":"07232","445303":"07232","445304":"07232","445305":"07232","445306":"07232","445307":"07232","445308":"07232","445323":"07232","445324":"07232","445401":"07232","445402":"07232","450221":"07325","450331":"07325","450332":"07325","450445":"07325","450551":"07282","451001":"07282","451111":"07282","451113":"07282","451115":"07282","451220":"07282","451221":"07282","451224":"07282","451225":"07282","451228":"07282","451331":"07282","451332":"07282","451335":"07282","451440":"07282","451441":"07282","451442":"07282","451447":"07290","451449":"07282","451551":"07290","451556":"07290","451660":"07282","451666":"07290","451770":"07290","451881":"07290","452001":"0731","452002":"0731","452003":"0731","452005":"0731","452006":"0731","452007":"0731","452009":"0731","452010":"0731","452011":"0731","452012":"0731","452013":"0731","452014":"0731","452015":"0731","452016":"0731","452018":"0731","452020":"0731","453001":"0731","453111":"0731","453112":"0731","453115":"0731","453220":"0731","453331":"0731","453441":"0731","453446":"0731","453551":"0731","453552":"0731","453555":"0731","453556":"0731","453661":"0731","453771":"0731","454001":"07292","454010":"07292","454111":"07292","454116":"07292","454221":"07292","454331":"07292","454335":"07292","454441":"07292","454446":"07292","454449":"07292","454552":"07292","454660":"07292","454665":"07292","454773":"07292","454774":"07292","454775":"07292","455001":"07272","455111":"07272","455115":"07272","455116":"07272","455118":"07272","455221":"07272","455223":"07272","455227":"07272","455332":"07272","455336":"07272","455339":"07272","455440":"07272","455459":"07272","456001":"0734","456003":"0734","456006":"0734","456010":"0734","456221":"0734","456222":"0734","456224":"0734","456313":"0734","456331":"0734","456335":"0734","456337":"0734","456440":"0734","456441":"0734","456443":"0734","456550":"0734","456661":"0734","456664":"0734","456665":"0734","456668":"0734","456770":"0734","456771":"0734","456776":"0734","457001":"07412","457114":"07412","457118":"07412","457119":"07412","457222":"07412","457226":"07412","457331":"07412","457333":"07412","457336":"07412","457339":"07412","457340":"07412","457441":"07412","457550":"07412","457555":"07412","457661":"07392","457770":"07392","457772":"07392","457773":"07392","457775":"07392","457777":"07392","457779":"07392","457882":"07394","457885":"07394","457887":"07394","457888":"07394","457990":"07394","457993":"07392","458001":"07422","458002":"07422","458110":"07423","458113":"07423","458116":"07423","458118":"07423","458220":"07423","458226":"07423","458228":"07423","458330":"07423","458336":"07423","458339":"07423","458389":"07422","458441":"07423","458468":"07423","458470":"07423","458553":"07423","458556":"07422","458558":"07422","458664":"07422","458667":"07422","458669":"07422","458771":"07422","458775":"07422","458778":"07422","458880":"07422","458883":"07422","458888":"07422","458895":"07422","458990":"07422","460001":"07141","460004":"07141","460110":"07141","460220":"07141","460225":"07141","460330":"07141","460440":"07141","460443":"07141","460447":"07141","460449":"07141","460551":"07141","460553":"07141","460554":"07141","460557":"07141","460661":"07141","460663":"07162","460665":"07141","460666":"07141","460668":"07141","461001":"07792","461005":"07574","461110":"07574","461111":"07574","461114":"07574","461115":"07574","461116":"07574","461122":"07574","461221":"07574","461223":"07574","461228":"07574","461331":"07577","461335":"07577","461441":"07577","461446":"07574","461551":"07574","461661":"07574","461668":"07574","461771":"07574","461775":"07574","461881":"07574","461990":"07574","462001":"0755","462002":"0755","462003":"0755","462004":"0755","462008":"0755","462010":"0755","462011":"0755","462016":"0755","462020":"0755","462022":"0755","462023":"0755","462024":"0755","462026":"0755","462027":"0755","462030":"0755","462031":"0755","462033":"0755","462036":"0755","462037":"0755","462038":"0755","462039":"0755","462040":"0755","462041":"0755","462042":"0755","462043":"0755","462044":"0755","462045":"0755","462046":"07482","462047":"0755","462066":"0755","462100":"0755","462101":"0755","462120":"0755","463106":"0755","463111":"0755","464001":"07592","464111":"07592","464113":"07592","464114":"07592","464220":"07592","464221":"07592","464224":"07592","464226":"07592","464228":"07592","464240":"07592","464258":"07592","464331":"07592","464334":"07592","464337":"07592","464551":"07482","464570":"07482","464573":"07482","464651":"07482","464661":"07482","464665":"07482","464668":"07482","464671":"07482","464672":"07482","464770":"07482","464774":"07482","464776":"07482","464881":"07482","464884":"07482","464886":"07482","464986":"07482","464990":"07482","464993":"07482","465001":"07364","465106":"07364","465110":"07364","465113":"07364","465116":"07364","465118":"07364","465220":"07364","465223":"07364","465226":"07364","465227":"07364","465230":"07362","465333":"07364","465335":"07364","465337":"07364","465339":"07364","465441":"07362","465445":"07362","465447":"07362","465449":"07362","465550":"07362","465661":"07372","465667":"07372","465669":"07372","465674":"07372","465677":"07372","465679":"07372","465680":"07372","465683":"07372","465685":"07372","465687":"07372","465689":"07372","465691":"07372","465693":"07372","465697":"07372","466001":"07562","466111":"07562","466113":"07562","466114":"07562","466115":"07562","466116":"07562","466118":"07562","466120":"07562","466125":"07562","466221":"07562","466331":"07562","466445":"07562","466446":"07562","466448":"07562","466554":"07562","466651":"07562","466661":"07562","466665":"07562","470001":"07582","470002":"07582","470003":"07582","470004":"07582","470021":"07582","470051":"07582","470113":"07582","470115":"07582","470117":"07582","470118":"07582","470119":"07582","470120":"07582","470124":"07582","470125":"07582","470221":"07582","470223":"07582","470226":"07582","470227":"07582","470228":"07582","470229":"07582","470232":"07582","470235":"07582","470335":"07582","470337":"07582","470339":"07582","470340":"07582","470441":"07582","470442":"07582","470661":"07812","470663":"07812","470664":"07812","470666":"07812","470669":"07582","470672":"07812","470673":"07812","470675":"07812","470771":"07812","470772":"07812","470775":"07812","470880":"07812","470881":"07812","471001":"07682","471101":"07682","471105":"07682","471111":"07682","471201":"07682","471301":"07682","471311":"07682","471313":"07682","471315":"07682","471318":"07682","471405":"07682","471408":"07682","471411":"07682","471501":"07682","471510":"07682","471515":"07682","471516":"07682","471525":"07682","471606":"07682","471625":"07682","472001":"07683","472005":"07683","472010":"07683","472101":"07683","472111":"07683","472115":"07683","472118":"07683","472221":"07683","472246":"07680","472331":"07683","472336":"07680","472337":"07680","472339":"07683","472442":"07680","472445":"07680","472447":"07683","473001":"07542","473101":"07542","473105":"07542","473110":"07542","473111":"07542","473112":"07542","473113":"07542","473115":"07542","473118":"07542","473222":"07542","473226":"07542","473249":"07542","473287":"07542","473330":"07543","473331":"07543","473332":"07543","473335":"07543","473440":"07543","473443":"07543","473444":"07543","473445":"07543","473446":"07543","473551":"07492","473585":"07492","473638":"07492","473660":"07492","473662":"07492","473665":"07492","473670":"07492","473770":"07492","473774":"07492","473775":"07492","473781":"07492","473793":"07492","473865":"07492","473880":"07492","473885":"07492","473990":"07492","473995":"07492","474001":"0751","474002":"0751","474003":"0751","474004":"0751","474005":"0751","474006":"0751","474007":"0751","474008":"0751","474009":"0751","474010":"0751","474011":"0751","474012":"0751","474015":"0751","474020":"0751","475001":"0751","475002":"0751","475005":"0751","475110":"0751","475115":"0751","475220":"0751","475330":"0751","475335":"07522","475336":"07522","475661":"07522","475671":"07522","475673":"07522","475675":"07522","475682":"07522","475685":"07522","475686":"07522","476001":"07532","476111":"07532","476115":"07532","476134":"07532","476219":"07532","476221":"07532","476224":"07532","476228":"07532","476229":"07532","476332":"07530","476335":"07530","476337":"07530","476339":"07530","476355":"07530","476444":"07532","476554":"07532","477001":"07534","477105":"07534","477111":"07534","477116":"07534","477117":"07534","477222":"07534","477227":"07534","477331":"07534","477332":"07534","477333":"07534","477335":"07534","477441":"07534","477445":"07534","477446":"07534","477447":"07534","477449":"07534","477450":"07534","477555":"07534","477557":"07534","477566":"07534","477660":"07534","480001":"07162","480003":"07162","480105":"07162","480106":"07162","480107":"07162","480108":"07162","480109":"07162","480110":"07162","480111":"07162","480112":"07162","480115":"07162","480221":"07162","480223":"07162","480224":"07162","480331":"07162","480334":"07162","480337":"07162","480338":"07162","480441":"07162","480447":"07162","480449":"07162","480551":"07162","480555":"07162","480557":"07162","480559":"07162","480661":"07692","480667":"07692","480771":"07692","480880":"07692","480881":"07692","480882":"07692","480884":"07692","480886":"07692","480887":"07692","480888":"07692","480990":"07692","480991":"07692","480994":"07692","480996":"07692","480997":"07692","480999":"07692","481001":"07632","481051":"07632","481102":"07632","481105":"07632","481111":"07632","481115":"07632","481116":"07632","481117":"07632","481222":"07632","481224":"07632","481226":"07632","481331":"07632","481332":"07632","481335":"07632","481337":"07632","481441":"07632","481445":"07632","481449":"07632","481551":"07632","481556":"07632","481661":"07642","481662":"07642","481663":"07642","481664":"07642","481665":"07642","481666":"07642","481668":"07642","481672":"07642","481768":"07642","481771":"07642","481776":"07642","481778":"07644","481879":"07644","481880":"07644","481882":"07644","481883":"07644","481884":"07644","481885":"07642","481990":"07644","481995":"07642","481996":"07642","481998":"07642","482001":"0761","482002":"0761","482003":"0761","482004":"0761","482005":"0761","482008":"0761","482009":"0761","482010":"0761","482011":"0761","482020":"0761","482021":"0761","482051":"0761","482056":"0761","483001":"0761","483053":"0761","483105":"0761","483110":"0761","483113":"0761","483119":"0761","483220":"0761","483222":"0761","483225":"07622","483330":"07622","483331":"07622","483332":"07622","483334":"07622","483336":"0761","483440":"07622","483442":"07622","483501":"07622","483504":"07622","483770":"07622","483773":"07622","483775":"07622","483880":"07622","483990":"07622","484001":"07625","484110":"07652","484113":"07629","484114":"07652","484116":"07652","484117":"07652","484120":"07629","484220":"07629","484224":"07652","484330":"07629","484334":"07629","484336":"07629","484440":"07629","484444":"07629","484446":"07629","484447":"07629","484551":"07625","484555":"07625","484660":"07625","484661":"07625","484664":"07625","484665":"07625","484669":"07652","484770":"07652","484771":"07652","484774":"07652","484776":"07652","484881":"07629","484886":"07629","484887":"07629","485001":"07672","485005":"07672","485111":"07672","485112":"07672","485113":"07672","485114":"07672","485115":"07672","485221":"07672","485226":"07672","485331":"07672","485334":"07672","485441":"07672","485446":"07672","485447":"07672","485551":"07672","485661":"07672","485666":"07672","485771":"07672","485772":"07672","485773":"07672","485774":"07672","485775":"07672","485778":"07672","485881":"07672","486001":"07662","486002":"07662","486003":"07662","486004":"07662","486005":"07662","486006":"07662","486111":"07662","486114":"07662","486115":"07662","486117":"07662","486123":"07662","486220":"07662","486223":"07662","486226":"07662","486331":"07662","486333":"07662","486335":"07662","486338":"07662","486340":"07662","486341":"07662","486440":"07662","486441":"07662","486445":"07672","486446":"07662","486447":"07662","486448":"07662","486450":"07662","486550":"07672","486553":"07662","486556":"07662","486661":"07822","486666":"07822","486669":"07805","486670":"07822","486675":"07822","486771":"07822","486775":"07822","486776":"07822","486881":"07805","486882":"07805","486884":"07805","486885":"07805","486886":"07805","486887":"07805","486888":"07805","486889":"07805","486890":"07805","486892":"07805","487001":"07792","487110":"07792","487114":"07792","487118":"07792","487221":"07792","487225":"07792","487330":"07792","487334":"07792","487337":"07792","487441":"07792","487551":"07792","487555":"07792","487661":"07792","487770":"07792","487881":"07792","488001":"07732","488050":"07732","488059":"07732","488220":"07732","488222":"07732","488333":"07732","488441":"07732","488442":"07732","488443":"07732","488446":"07732","488448":"07732","490001":"0788","490006":"0788","490009":"0788","490011":"0788","490020":"0788","490021":"0788","490022":"0788","490023":"0788","490024":"0788","490025":"0788","490026":"0788","490036":"0788","490042":"0788","491001":"0788","491107":"0788","491111":"0788","491221":"0788","491222":"0788","491223":"0788","491225":"0788","491226":"07749","491227":"07749","491228":"07749","491229":"07744","491230":"07749","491331":"0788","491332":"0788","491335":"07824","491336":"07817","491337":"07824","491338":"07824","491340":"07824","491441":"07744","491444":"07744","491445":"07744","491557":"07744","491558":"07744","491559":"07817","491661":"07744","491665":"07744","491666":"07744","491668":"07744","491771":"07749","491881":"07744","491885":"07744","491888":"07744","491993":"07824","491995":"07817","491996":"07817","492001":"0771","492002":"0771","492003":"0771","492004":"0771","492005":"0771","492008":"0771","492009":"0771","492010":"0771","492012":"0771","492013":"0771","492014":"0771","492015":"0771","492016":"0771","492017":"0771","492018":"0771","492099":"0771","492101":"0771","492109":"07707","492112":"07723","493101":"07826","493111":"0771","493113":"07826","493114":"0771","493116":"0771","493118":"07826","493195":"0771","493196":"07826","493221":"0771","493222":"07826","493225":"0771","493228":"07826","493229":"07826","493331":"07826","493332":"07826","493335":"07826","493338":"07826","493344":"07826","493441":"0771","493445":"07723","493448":"07723","493449":"07723","493526":"07826","493551":"07723","493554":"07723","493555":"07723","493558":"07723","493559":"07826","493661":"0771","493662":"07722","493663":"07722","493770":"07722","493773":"07722","493776":"07722","493778":"07722","493881":"0771","493885":"0771","493887":"07707","493888":"07707","493889":"07707","493890":"07707","493891":"07707","493992":"07707","493996":"07707","494001":"07782","494010":"07782","494111":"07864","494114":"07864","494115":"07864","494122":"07864","494221":"07782","494222":"07782","494223":"07782","494224":"07782","494226":"07786","494228":"07786","494229":"07786","494230":"07786","494237":"07781","494331":"07786","494332":"07868","494333":"07868","494334":"07868","494335":"07868","494336":"07868","494337":"07868","494347":"07786","494441":"07856","494442":"07782","494444":"07853","494446":"07853","494447":"07853","494448":"07853","494449":"07856","494450":"07853","494552":"07856","494553":"07856","494556":"07856","494635":"07868","494661":"07781","494665":"07868","494669":"07868","494670":"07868","494771":"07868","494776":"07868","494777":"07868","495001":"07752","495003":"07752","495004":"07752","495006":"07752","495009":"07752","495112":"07752","495113":"07755","495115":"07755","495116":"07752","495117":"08476","495118":"08476","495119":"07759","495220":"07752","495222":"07752","495224":"07755","495330":"07755","495334":"07755","495335":"07755","495442":"07759","495444":"07759","495445":"07759","495446":"07759","495447":"07759","495448":"07759","495449":"07759","495450":"07759","495452":"07759","495454":"07759","495455":"07759","495550":"07752","495551":"07752","495552":"07817","495553":"07817","495554":"07817","495555":"07752","495556":"07817","495557":"07817","495559":"07817","495660":"07817","495661":"07817","495663":"07817","495668":"07817","495669":"07817","495671":"07759","495674":"07759","495677":"07759","495682":"07759","495683":"07759","495684":"07759","495686":"07817","495687":"07817","495688":"07817","495689":"07817","495690":"07817","495691":"07817","495692":"07817","495695":"07817","496001":"07762","496005":"07762","496100":"07762","496107":"07762","496108":"07762","496109":"07762","496111":"07762","496113":"07762","496115":"07762","496116":"07762","496118":"07762","496220":"07762","496223":"07774","496224":"07763","496225":"07763","496227":"07763","496242":"07763","496245":"07763","496330":"07763","496331":"07763","496334":"07763","496336":"07763","496338":"07763","496440":"07762","496445":"07762","496450":"07762","496551":"07762","496554":"07762","496661":"07762","496665":"07762","497001":"07774","497101":"07774","497111":"07774","497114":"07774","497116":"07774","497117":"07774","497118":"07831","497119":"07831","497220":"07831","497223":"07775","497224":"07831","497225":"07775","497226":"07775","497229":"07775","497231":"07775","497235":"07775","497331":"07836","497333":"07775","497335":"07836","497339":"07836","497442":"07836","497446":"07836","497447":"07836","497448":"07836","497449":"07836","497450":"07836","497451":"07836","497553":"07836","497555":"07836","497557":"07836","497559":"07836","497773":"07836","497778":"07836","500001":"040","500002":"040","500003":"040","500004":"040","500005":"08418","500006":"040","500007":"040","500008":"040","500009":"040","500010":"040","500011":"040","500012":"040","500013":"040","500014":"040","500015":"040","500016":"040","500017":"040","500018":"040","500019":"08414","500020":"040","500022":"040","500023":"040","500024":"040","500025":"040","500026":"040","500027":"040","500028":"040","500029":"040","500030":"08418","500031":"040","500032":"040","500033":"040","500034":"040","500035":"08414","500036":"040","500037":"040","500038":"040","500039":"040","500040":"040","500041":"040","500042":"040","500043":"040","500044":"040","500045":"040","500046":"08414","500047":"040","500048":"08414","500049":"040","500050":"08414","500051":"040","500052":"08418","500053":"040","500054":"040","500055":"08418","500056":"040","500057":"040","500058":"040","500059":"040","500060":"08414","500061":"040","500062":"040","500063":"040","500064":"040","500065":"040","500066":"040","500067":"040","500068":"040","500069":"08414","500070":"08414","500072":"040","500073":"040","500074":"08414","500075":"08418","500076":"040","500077":"08414","500078":"040","500079":"08418","500080":"040","500081":"040","500082":"040","500083":"040","500084":"040","500085":"040","500086":"08414","500087":"08418","500088":"08418","500089":"08418","500090":"08418","500091":"08414","500092":"040","500093":"040","500094":"040","500095":"040","500096":"040","500097":"08414","500098":"040","500100":"040","500101":"08418","500102":"08414","500103":"040","500104":"08414","500107":"040","500108":"08414","500109":"040","500110":"040","500111":"08414","500112":"040","500113":"08418","500114":"040","500115":"08414","501101":"08416","501102":"08416","501106":"08416","501111":"08416","501121":"08416","501141":"08416","501142":"08416","501143":"08416","501144":"08416","501158":"08416","501202":"08416","501203":"08416","501218":"08418","501301":"08418","501359":"08418","501401":"08418","501501":"08416","501502":"08416","501503":"08418","501504":"08418","501505":"08418","501506":"08418","501508":"08418","501509":"08418","501510":"08418","501511":"08414","501512":"08418","502001":"08455","502032":"08455","502101":"08452","502102":"08457","502103":"08457","502107":"08457","502108":"08457","502109":"08452","502110":"08452","502113":"08452","502114":"08457","502115":"08452","502117":"08452","502125":"08452","502130":"08452","502205":"08455","502210":"08455","502220":"08455","502221":"08455","502228":"08455","502246":"08455","502247":"08457","502248":"08452","502249":"08455","502251":"08455","502255":"08452","502256":"08455","502257":"08455","502267":"08457","502269":"08455","502270":"08455","502271":"08452","502273":"08455","502276":"08457","502277":"08457","502278":"08457","502279":"08457","502280":"08457","502281":"08457","502284":"08455","502285":"08455","502286":"08455","502287":"08455","502290":"08455","502291":"08455","502293":"08455","502294":"08455","502295":"08455","502296":"08455","502300":"08455","502301":"08457","502302":"08452","502303":"08452","502305":"08455","502306":"08455","502307":"08455","502310":"08457","502311":"08457","502312":"08457","502313":"08455","502314":"08455","502316":"08452","502318":"08455","502319":"08455","502321":"08455","502324":"08455","502325":"08455","502329":"08455","502331":"08452","502334":"08457","502335":"08452","502336":"08457","502345":"08416","502371":"08455","502372":"08457","502375":"08457","502381":"08452","503001":"08462","503002":"08462","503003":"08462","503101":"08468","503102":"08468","503108":"08468","503110":"08468","503111":"08468","503112":"08468","503114":"08468","503120":"08468","503122":"08468","503123":"08468","503124":"08468","503125":"08468","503144":"08468","503145":"08922","503164":"08462","503165":"08462","503174":"08462","503175":"08462","503180":"08462","503185":"08462","503186":"08462","503187":"08468","503188":"08922","503201":"08462","503202":"08462","503206":"08462","503207":"08462","503212":"08462","503213":"08462","503217":"08462","503218":"08462","503219":"08462","503223":"08462","503224":"08462","503225":"08922","503230":"08922","503235":"08922","503245":"08462","503246":"08462","503301":"08468","503302":"08468","503305":"08468","503306":"08468","503307":"08462","503308":"08462","503309":"08468","503310":"08468","503311":"08462","503321":"08922","503322":"08462","504001":"08732","504002":"08732","504101":"08734","504102":"08734","504103":"08734","504104":"08734","504105":"08734","504106":"08734","504107":"08734","504109":"08734","504110":"08734","504201":"08736","504202":"08734","504203":"08734","504204":"08736","504205":"08734","504206":"08736","504207":"08736","504208":"08736","504209":"08736","504214":"08736","504215":"08736","504216":"08736","504218":"08736","504219":"08736","504220":"08736","504231":"08736","504251":"08736","504272":"08736","504273":"08736","504292":"08733","504293":"08733","504294":"08738","504295":"08733","504296":"08733","504297":"08733","504299":"08733","504301":"08736","504302":"08736","504303":"08736","504304":"08732","504306":"08734","504307":"08732","504308":"08732","504309":"08732","504310":"08734","504311":"08732","504312":"08732","504313":"08733","504323":"08732","504346":"08592","505001":"0878","505002":"0878","505101":"0870","505102":"0870","505122":"0878","505129":"0878","505152":"08728","505153":"08728","505162":"08728","505172":"08728","505174":"08728","505184":"08728","505185":"08728","505186":"08728","505187":"08922","505188":"08728","505208":"08728","505209":"08728","505210":"08728","505211":"08728","505212":"08728","505214":"08728","505215":"08728","505301":"08723","505302":"08723","505303":"08723","505304":"08723","505305":"08723","505306":"08724","505307":"08723","505325":"08462","505326":"08724","505327":"08724","505330":"08724","505331":"08724","505401":"0878","505402":"08723","505403":"08723","505404":"08723","505405":"08723","505415":"08728","505416":"08728","505425":"08724","505445":"0878","505450":"08724","505451":"0878","505452":"08724","505453":"08724","505454":"08724","505455":"08724","505460":"08724","505462":"08724","505466":"08457","505467":"08457","505468":"0878","505469":"0878","505470":"0878","505471":"0870","505472":"08457","505473":"08457","505474":"0878","505475":"0878","505476":"0870","505480":"0870","505481":"08457","505490":"0878","505497":"0870","505498":"0878","505501":"08724","505502":"0878","505503":"08922","505504":"0870","505505":"0878","505514":"08728","505524":"08723","505525":"08922","505526":"08724","505527":"0878","505528":"08457","505529":"08724","505530":"08457","505531":"0878","505532":"08724","506001":"0870","506002":"0870","506003":"0870","506004":"0870","506005":"0870","506006":"0870","506007":"0870","506008":"0870","506009":"0870","506011":"0870","506013":"0870","506015":"0870","506101":"08719","506102":"08719","506103":"08719","506104":"08719","506105":"08719","506112":"08719","506122":"0870","506132":"0870","506134":"08719","506135":"08719","506142":"0870","506143":"08716","506144":"08716","506145":"08716","506146":"08716","506151":"0870","506163":"08719","506164":"0870","506165":"08715","506166":"0870","506167":"08716","506168":"0870","506169":"0870","506170":"0870","506172":"08715","506175":"08716","506201":"08716","506221":"08716","506222":"08716","506223":"08457","506224":"08457","506244":"08716","506252":"08716","506301":"08716","506302":"08716","506303":"08716","506310":"0870","506313":"0870","506314":"0870","506315":"08719","506316":"08716","506317":"08719","506318":"08719","506319":"0870","506324":"08719","506329":"0870","506330":"0870","506331":"0870","506332":"0870","506333":"0870","506342":"0870","506343":"08715","506344":"08715","506345":"0870","506347":"08715","506348":"0870","506349":"08715","506350":"0870","506352":"08715","506355":"08457","506356":"0870","506365":"0870","506366":"0870","506367":"08457","506368":"08719","506369":"0870","506370":"0870","506371":"0870","506381":"08719","506391":"0870","507001":"08742","507002":"08742","507003":"08742","507101":"08743","507103":"08743","507111":"08743","507114":"08744","507115":"08744","507116":"08744","507117":"08744","507118":"08744","507119":"08743","507120":"08744","507122":"08719","507123":"08742","507124":"08743","507125":"08743","507128":"08744","507133":"08744","507136":"08715","507137":"08744","507138":"08743","507140":"08744","507154":"08743","507157":"08742","507158":"08742","507159":"08742","507160":"08742","507161":"08742","507163":"08742","507164":"08742","507165":"08742","507166":"08743","507167":"08742","507168":"08742","507169":"08742","507170":"08742","507182":"08742","507183":"08742","507201":"08742","507202":"08742","507203":"08742","507204":"08742","507208":"08742","507209":"08742","507210":"08719","507211":"08719","507301":"08743","507302":"08742","507303":"08742","507304":"08742","507305":"08742","507306":"08743","507316":"08742","507318":"08742","508001":"08682","508002":"08682","508004":"08682","508101":"08585","508105":"08585","508111":"08585","508112":"08585","508113":"08585","508114":"08682","508115":"08585","508116":"08685","508117":"08585","508126":"08585","508201":"08684","508202":"08682","508204":"08684","508205":"08682","508206":"08684","508207":"08682","508208":"08682","508210":"08682","508211":"08682","508212":"08684","508213":"08684","508214":"08684","508217":"08682","508218":"08684","508221":"08684","508223":"08684","508224":"08684","508233":"08684","508234":"08684","508238":"08684","508243":"08682","508244":"08682","508245":"08682","508246":"08684","508247":"08682","508248":"08682","508250":"08682","508252":"08585","508253":"08585","508254":"08682","508255":"08682","508256":"08682","508257":"08682","508258":"08682","508266":"08682","508277":"08585","508278":"08682","508279":"08684","508280":"08684","508284":"08585","508285":"08585","508286":"08585","508355":"08684","508373":"08682","508374":"08682","508376":"08684","508377":"08682","509001":"08542","509002":"08542","509102":"08540","509103":"08543","509104":"08543","509105":"08543","509106":"08543","509110":"08543","509120":"08543","509125":"08546","509126":"08546","509127":"08546","509128":"08546","509129":"08546","509130":"08543","509131":"08543","509132":"03472","509133":"08546","509135":"08546","509152":"08546","509153":"08546","509201":"08540","509202":"08542","509203":"08540","509204":"08506","509205":"08506","509206":"08543","509207":"08418","509208":"08506","509209":"08540","509210":"08506","509215":"08540","509216":"08418","509217":"08418","509219":"08542","509228":"08418","509235":"08543","509301":"08542","509302":"08540","509311":"08506","509320":"08455","509321":"08418","509324":"08922","509325":"08418","509326":"08540","509327":"08418","509334":"08542","509335":"08416","509336":"08416","509337":"08542","509338":"08416","509339":"08416","509340":"08416","509349":"08540","509350":"08416","509351":"08506","509352":"08506","509353":"08506","509357":"08542","509358":"08418","509360":"08540","509371":"08506","509375":"08540","509376":"08540","509380":"08543","509381":"08543","509382":"08543","509385":"08540","509401":"08540","509406":"08540","509407":"08506","509408":"08418","509409":"08506","509410":"08418","509411":"08506","509412":"08540","515001":"08554","515002":"08554","515003":"08554","515004":"08554","515005":"08554","515101":"08554","515110":"08554","515122":"08554","515123":"08554","515124":"08554","515133":"08554","515134":"08554","515144":"08554","515154":"08554","515159":"08554","515164":"08554","515201":"08554","515202":"08554","515211":"08554","515212":"08554","515231":"08554","515241":"08554","515261":"08554","515271":"08554","515281":"08554","515286":"08554","515291":"08554","515301":"08554","515303":"08554","515305":"08554","515311":"08554","515321":"08554","515331":"08554","515341":"08554","515401":"08554","515402":"08554","515405":"08554","515408":"08554","515411":"08554","515413":"08554","515414":"08554","515415":"08554","515425":"08554","515435":"08554","515445":"08554","515455":"08554","515465":"08562","515501":"08554","515511":"08554","515521":"08554","515531":"08554","515541":"08554","515551":"08554","515556":"08554","515561":"08554","515571":"08554","515581":"08554","515591":"08554","515601":"08554","515611":"08554","515621":"08554","515631":"08554","515641":"08554","515651":"08554","515661":"08554","515671":"08554","515672":"08554","515701":"08554","515711":"08554","515721":"08554","515722":"08554","515731":"08554","515741":"08554","515751":"08554","515761":"08554","515763":"08554","515765":"08554","515766":"08554","515767":"08554","515774":"08554","515775":"08554","515787":"08554","515801":"08554","515803":"08554","515812":"08554","515822":"08554","515832":"08554","515842":"08554","515863":"08554","515865":"08554","515867":"08554","515870":"08554","515871":"08554","515872":"08554","516001":"08562","516002":"08562","516003":"08562","516004":"08562","516005":"08562","516101":"08562","516104":"08562","516105":"08562","516107":"08562","516108":"08562","516110":"08562","516115":"08562","516126":"08562","516127":"08562","516128":"08562","516129":"08562","516130":"08562","516150":"08562","516151":"08562","516152":"08562","516162":"08562","516163":"08562","516172":"08562","516173":"08562","516175":"08562","516193":"08562","516203":"08562","516213":"08562","516214":"08562","516215":"08562","516216":"08562","516217":"08562","516218":"08562","516227":"08562","516228":"08562","516233":"08562","516237":"08562","516247":"08562","516257":"08562","516259":"08562","516267":"08562","516268":"08562","516269":"08562","516270":"08562","516289":"08562","516293":"08562","516309":"08562","516310":"08562","516311":"08562","516312":"08562","516321":"08562","516329":"08562","516330":"08562","516339":"08562","516349":"08562","516350":"08562","516355":"08562","516356":"08562","516359":"08562","516360":"08562","516361":"08562","516362":"08562","516380":"08562","516390":"08562","516391":"08562","516396":"08562","516401":"08562","516411":"08562","516421":"08562","516431":"08562","516432":"08562","516433":"08562","516434":"08562","516439":"08562","516444":"08562","516454":"08562","516464":"08562","516474":"08562","516484":"08562","516501":"08562","516502":"08562","516503":"08562","516504":"08562","516505":"08562","517001":"08572","517002":"08572","517004":"08572","517101":"08572","517102":"08572","517112":"08572","517113":"08572","517123":"08572","517124":"08572","517125":"08572","517126":"08572","517127":"08572","517128":"08572","517129":"08572","517130":"08572","517131":"08572","517132":"08572","517152":"08572","517167":"08572","517172":"08572","517192":"08572","517193":"08572","517194":"08572","517213":"08572","517214":"08572","517234":"08572","517235":"08572","517236":"08572","517237":"08572","517247":"08572","517257":"08572","517277":"08572","517280":"08572","517291":"08572","517297":"08572","517299":"08572","517305":"08572","517319":"08572","517325":"08572","517326":"08572","517350":"08572","517351":"08572","517352":"08572","517370":"08572","517390":"08572","517391":"08572","517401":"08572","517403":"08572","517408":"08572","517414":"08572","517415":"08572","517416":"08572","517417":"08572","517418":"08572","517419":"08572","517421":"08572","517422":"08572","517423":"08572","517424":"08572","517425":"08572","517426":"08572","517429":"08572","517432":"08572","517501":"08572","517502":"08572","517503":"08572","517504":"08572","517505":"08572","517506":"08572","517507":"08572","517520":"08572","517526":"08572","517536":"08572","517541":"08572","517551":"08572","517561":"08572","517569":"08572","517571":"08572","517581":"08572","517582":"08572","517583":"08572","517584":"08572","517586":"08572","517587":"08572","517588":"08572","517589":"08572","517590":"08572","517591":"08572","517592":"08572","517599":"08572","517619":"08572","517620":"08572","517640":"08572","517641":"08572","517642":"08572","517643":"08572","517644":"08572","517645":"08572","517646":"08572","518001":"08518","518002":"08518","518003":"08518","518004":"08518","518005":"08518","518006":"08518","518007":"08518","518010":"08518","518101":"08518","518102":"08518","518112":"08518","518122":"08518","518123":"08518","518124":"08518","518134":"08518","518135":"08518","518145":"08518","518155":"08518","518165":"08518","518166":"08518","518176":"08518","518186":"08518","518196":"08518","518206":"08518","518216":"08518","518217":"08518","518218":"08518","518220":"08518","518221":"08518","518222":"08518","518225":"08518","518301":"08518","518302":"08518","518308":"08518","518313":"08518","518323":"08518","518333":"08518","518343":"08518","518344":"08518","518345":"08518","518346":"08518","518347":"08518","518348":"08518","518349":"08518","518350":"08518","518360":"08518","518380":"08518","518385":"08518","518390":"08518","518395":"08518","518396":"08518","518401":"08518","518405":"08518","518411":"08518","518412":"08518","518422":"08518","518432":"08518","518442":"08518","518452":"08518","518462":"08518","518463":"08518","518464":"08518","518465":"08518","518466":"08518","518467":"08518","518468":"08518","518501":"08518","518502":"08518","518508":"08518","518510":"08518","518511":"08518","518512":"08518","518513":"08518","518523":"08518","518533":"08518","518543":"08518","518553":"08518","518563":"08518","518573":"08518","518583":"08518","518593":"08518","518594":"08518","518598":"08518","518599":"08518","518674":"08518","520001":"03472","520002":"03472","520003":"03472","520004":"03472","520007":"03472","520008":"03472","520010":"03472","520011":"03472","520012":"03472","520013":"03472","520015":"03472","521001":"03472","521002":"03472","521003":"03472","521004":"03472","521101":"03472","521102":"03472","521104":"03472","521105":"03472","521106":"03472","521107":"03472","521108":"03472","521109":"03472","521110":"03472","521111":"03472","521120":"03472","521121":"03472","521122":"03472","521125":"03472","521126":"03472","521130":"03472","521131":"03472","521132":"03472","521133":"03472","521134":"03472","521135":"03472","521136":"03472","521137":"03472","521138":"03472","521139":"03472","521148":"03472","521149":"03472","521150":"03472","521151":"03472","521153":"03472","521156":"03472","521157":"03472","521158":"03472","521162":"03472","521163":"03472","521164":"03472","521165":"03472","521170":"03472","521175":"03472","521178":"03472","521180":"03472","521181":"03472","521182":"03472","521183":"03472","521184":"03472","521185":"03472","521190":"03472","521201":"03472","521202":"03472","521207":"03472","521211":"03472","521212":"03472","521213":"03472","521214":"03472","521215":"03472","521225":"03472","521226":"03472","521227":"03472","521228":"03472","521229":"03472","521230":"03472","521231":"03472","521235":"03472","521241":"03472","521245":"03472","521246":"03472","521247":"03472","521250":"03472","521256":"03472","521260":"03472","521261":"03472","521263":"03472","521286":"03472","521301":"03472","521311":"03472","521312":"03472","521320":"03472","521321":"03472","521322":"03472","521323":"03472","521324":"03472","521325":"03472","521326":"03472","521327":"03472","521328":"03472","521329":"03472","521330":"03472","521331":"03472","521332":"03472","521333":"03472","521340":"03472","521343":"03472","521344":"03472","521345":"03472","521356":"03472","521366":"03472","521369":"03472","521390":"03472","521401":"03472","521402":"03472","521403":"03472","521456":"03472","521457":"03472","522001":"0863","522002":"0863","522003":"0863","522004":"0863","522005":"0863","522006":"0863","522007":"0863","522009":"0863","522015":"0863","522016":"0863","522017":"0863","522018":"0863","522019":"0863","522020":"0863","522034":"0863","522101":"0863","522102":"0863","522111":"0863","522112":"0863","522113":"0863","522124":"0863","522201":"0863","522202":"0863","522211":"0863","522212":"0863","522213":"0863","522233":"0863","522234":"0863","522235":"0863","522236":"0863","522237":"0863","522238":"0863","522239":"0863","522240":"0863","522256":"0863","522257":"0863","522258":"0863","522259":"0863","522261":"0863","522262":"0863","522264":"0863","522265":"0863","522268":"0863","522301":"0863","522302":"0863","522303":"0863","522304":"0863","522305":"0863","522306":"0863","522307":"0863","522308":"0863","522309":"0863","522310":"0863","522311":"0863","522312":"0863","522313":"0863","522314":"0863","522315":"0863","522316":"0863","522317":"0863","522318":"0863","522324":"0863","522325":"0863","522329":"0863","522330":"0863","522341":"0863","522401":"0863","522402":"0863","522403":"0863","522408":"0863","522409":"0863","522410":"0863","522411":"0863","522412":"0863","522413":"0863","522414":"0863","522415":"0863","522421":"0863","522426":"0863","522435":"0863","522436":"0863","522437":"0863","522438":"0863","522439":"0863","522501":"0863","522502":"0863","522503":"0863","522508":"0863","522509":"0863","522510":"0863","522529":"0863","522549":"0863","522601":"0863","522603":"0863","522611":"0863","522612":"0863","522613":"0863","522614":"0863","522615":"0863","522616":"0863","522617":"0863","522619":"0863","522626":"0863","522646":"0863","522647":"0863","522649":"0863","522657":"0863","522658":"0863","522659":"0863","522660":"0863","522661":"0863","522663":"0863","523001":"08592","523002":"08592","523101":"08592","523104":"08592","523105":"08592","523108":"08592","523109":"08592","523110":"08592","523111":"08592","523112":"08592","523113":"08592","523114":"08592","523115":"08592","523116":"08592","523117":"08592","523135":"08592","523155":"08592","523156":"08592","523157":"08592","523165":"08592","523166":"08592","523167":"08592","523168":"08592","523169":"08592","523170":"08592","523171":"08592","523180":"08592","523181":"08592","523182":"08592","523183":"08592","523184":"08592","523185":"08592","523186":"08592","523187":"08592","523190":"08592","523201":"08592","523211":"08592","523212":"08592","523213":"08592","523214":"08592","523223":"08592","523224":"08592","523225":"08592","523226":"08592","523227":"08592","523228":"08592","523230":"08592","523240":"08592","523241":"08592","523245":"08592","523246":"08592","523247":"08592","523252":"08592","523253":"08592","523254":"08592","523260":"08592","523261":"08592","523262":"08592","523263":"08592","523264":"08592","523265":"08592","523270":"08592","523271":"08592","523272":"08592","523273":"08592","523274":"08592","523279":"08592","523280":"08592","523281":"08592","523286":"08592","523291":"08592","523292":"08592","523301":"08592","523302":"08592","523303":"08592","523304":"08592","523305":"08592","523315":"08592","523316":"08592","523320":"08592","523326":"08592","523327":"08592","523328":"08592","523329":"08592","523330":"08592","523331":"08592","523332":"08592","523333":"08592","523334":"08592","523335":"08592","523336":"08592","523346":"08592","523356":"08592","523357":"08592","523367":"08592","523368":"08592","523369":"08592","523370":"08592","523371":"08592","523372":"08592","523373":"08592","524001":"0861","524002":"0861","524003":"0861","524004":"0861","524005":"0861","524101":"0861","524121":"0861","524123":"0861","524124":"0861","524126":"0861","524127":"0861","524129":"0861","524131":"0861","524132":"0861","524134":"0861","524137":"0861","524142":"0861","524152":"0861","524201":"0861","524203":"0861","524221":"0861","524222":"0861","524223":"0861","524224":"0861","524225":"0861","524226":"0861","524227":"0861","524228":"0861","524230":"0861","524234":"0861","524236":"0861","524239":"0861","524240":"0861","524300":"0861","524302":"0861","524303":"0861","524304":"0861","524305":"0861","524306":"0861","524307":"0861","524308":"0861","524309":"0861","524310":"0861","524311":"0861","524312":"0861","524313":"0861","524314":"0861","524315":"0861","524316":"0861","524317":"0861","524318":"0861","524319":"0861","524320":"0861","524321":"0861","524322":"0861","524323":"0861","524324":"0861","524341":"0861","524342":"0861","524343":"0861","524344":"0861","524345":"0861","524346":"0861","524347":"0861","524366":"0861","524401":"0861","524402":"0861","524403":"0861","524404":"0861","524405":"0861","524406":"0861","524407":"0861","524408":"0861","524409":"0861","524410":"0861","524411":"0861","524412":"0861","524413":"0861","524414":"0861","524415":"0861","524421":"0861","530001":"0891","530002":"0891","530003":"0891","530004":"0891","530005":"0891","530007":"0891","530008":"0891","530009":"0891","530011":"0891","530012":"0891","530013":"0891","530014":"0891","530015":"0891","530016":"0891","530017":"0891","530018":"0891","530020":"0891","530022":"0891","530024":"0891","530026":"0891","530027":"0891","530028":"0891","530029":"0891","530031":"0891","530032":"0891","530040":"0891","530041":"0891","530043":"0891","530044":"0891","530045":"0891","530046":"0891","530047":"0891","530048":"0891","530049":"0891","530051":"0891","530052":"0891","530053":"0891","531001":"0891","531002":"0891","531011":"0891","531019":"0891","531020":"0891","531021":"0891","531022":"0891","531023":"0891","531024":"0891","531025":"0891","531026":"0891","531027":"0891","531028":"0891","531029":"0891","531030":"0891","531031":"0891","531032":"0891","531033":"0891","531034":"0891","531035":"0891","531036":"0891","531040":"0891","531055":"0891","531060":"0891","531061":"0891","531075":"0891","531077":"0891","531081":"0891","531082":"0891","531083":"0891","531084":"0891","531085":"0891","531087":"0891","531105":"0891","531111":"0891","531113":"0891","531114":"0891","531115":"0891","531116":"0891","531117":"0891","531118":"0891","531126":"0891","531127":"0891","531133":"0891","531149":"0891","531151":"08922","531162":"08922","531163":"0891","531173":"08922","531219":"0891","532001":"08942","532005":"08942","532122":"08922","532123":"08942","532127":"08922","532148":"08942","532168":"08942","532185":"08942","532186":"08942","532187":"08942","532190":"08942","532195":"08942","532201":"08942","532203":"08942","532211":"08942","532212":"08942","532213":"08942","532214":"08942","532215":"08942","532216":"08942","532218":"08942","532219":"08942","532220":"08942","532221":"08942","532222":"08942","532242":"08942","532243":"08942","532263":"08942","532264":"08942","532284":"08942","532290":"08942","532291":"08942","532292":"08942","532312":"08942","532322":"08942","532401":"08942","532402":"08942","532403":"08942","532404":"08942","532405":"08942","532406":"08942","532407":"08922","532408":"08942","532409":"08942","532410":"08942","532421":"08942","532425":"08942","532426":"08942","532427":"08942","532428":"08942","532429":"08942","532430":"08942","532432":"08942","532440":"08942","532443":"08942","532445":"08942","532455":"08942","532456":"08942","532457":"08942","532458":"08942","532459":"08942","532460":"08942","532461":"08942","532462":"08942","532474":"08942","532484":"08942","533001":"0884","533002":"0884","533003":"0884","533004":"0884","533005":"0884","533006":"0884","533007":"0884","533016":"0884","533101":"0884","533102":"0884","533103":"0884","533104":"0884","533105":"0884","533106":"0884","533107":"0884","533124":"0884","533125":"0884","533126":"0884","533201":"0884","533210":"0884","533211":"0884","533212":"0884","533213":"0884","533214":"0884","533215":"0884","533216":"0884","533217":"0884","533218":"0884","533220":"0884","533221":"0884","533222":"0884","533223":"0884","533228":"0884","533229":"0884","533232":"0884","533233":"0884","533234":"0884","533235":"0884","533236":"0884","533237":"0884","533238":"0884","533239":"0884","533240":"0884","533241":"0884","533242":"0884","533244":"0884","533247":"0884","533248":"0884","533249":"0884","533250":"0884","533251":"0884","533252":"0884","533253":"0884","533254":"0884","533255":"0884","533256":"0884","533260":"0884","533261":"0884","533262":"0884","533263":"0884","533264":"0884","533274":"0884","533284":"0884","533285":"0884","533286":"0884","533287":"0884","533288":"0884","533289":"0884","533290":"0884","533291":"0884","533292":"0884","533293":"0884","533294":"0884","533295":"0884","533296":"0884","533297":"0884","533305":"0884","533306":"0884","533307":"0884","533308":"0884","533309":"0884","533339":"0884","533340":"0884","533341":"0884","533342":"0884","533343":"0884","533344":"0884","533345":"0884","533346":"0884","533347":"0884","533348":"0884","533349":"0884","533350":"0884","533351":"0884","533352":"0884","533353":"0884","533354":"0884","533355":"0884","533401":"0891","533406":"0884","533407":"0884","533408":"0884","533428":"0884","533429":"0884","533430":"0884","533431":"0884","533432":"0884","533433":"0884","533434":"0884","533435":"0884","533436":"0884","533437":"0884","533440":"0884","533444":"0884","533445":"0884","533446":"0884","533447":"0884","533448":"0884","533449":"0884","533450":"0884","533451":"0884","533461":"0884","533462":"0884","533463":"0884","533464":"0884","533468":"0884","533483":"0884","533577":"0884","534001":"08812","534002":"08812","534003":"08812","534004":"08812","534005":"08812","534006":"08812","534007":"08812","534101":"08812","534102":"08812","534111":"08812","534112":"08812","534122":"08812","534123":"08812","534124":"08812","534126":"08812","534134":"08812","534145":"08812","534146":"08812","534156":"08812","534165":"08812","534166":"08812","534176":"08812","534186":"08812","534195":"08812","534196":"08812","534197":"08812","534198":"08812","534199":"08812","534201":"08812","534202":"08812","534204":"08812","534206":"08812","534207":"08812","534208":"08812","534209":"08812","534210":"08812","534211":"08812","534215":"08812","534216":"08812","534217":"08812","534218":"08812","534222":"08812","534225":"08812","534227":"08812","534230":"08812","534235":"08812","534236":"08812","534237":"08812","534238":"08812","534239":"08812","534240":"08812","534243":"08812","534244":"08812","534245":"08812","534247":"08812","534250":"08812","534260":"08812","534265":"08812","534266":"08812","534267":"08812","534268":"08812","534269":"08812","534275":"08812","534280":"08812","534281":"08812","534301":"08812","534302":"08812","534305":"08812","534311":"08812","534312":"08812","534313":"08812","534315":"08812","534316":"08812","534318":"08812","534320":"08812","534324":"08812","534326":"08812","534327":"08812","534328":"08812","534329":"08812","534330":"08812","534331":"08812","534338":"08812","534340":"08812","534341":"08812","534342":"08812","534350":"08812","534401":"08812","534406":"08812","534411":"08812","534416":"08812","534425":"08812","534426":"08812","534427":"08812","534432":"08812","534435":"08812","534437":"08812","534442":"08812","534444":"08812","534447":"08812","534448":"08812","534449":"08812","534450":"08812","534451":"08812","534452":"08812","534455":"08812","534456":"08812","534460":"08812","534461":"08812","534462":"08812","534467":"08812","534475":"08812","535001":"08922","535002":"08922","535003":"08922","535004":"08922","535005":"08922","535006":"08922","535101":"08922","535102":"08922","535124":"08922","535125":"08922","535126":"08922","535128":"08922","535145":"08922","535148":"08922","535160":"08922","535161":"08922","535183":"08922","535204":"08922","535213":"08922","535214":"08922","535215":"08922","535216":"08922","535217":"08922","535218":"08922","535220":"08922","535221":"08922","535240":"08922","535250":"08922","535260":"08922","535270":"08922","535273":"08922","535280":"08922","535281":"08922","535463":"08922","535501":"08922","535502":"08922","535521":"08922","535522":"08922","535523":"08922","535524":"08922","535525":"08922","535526":"08922","535527":"08922","535534":"08922","535546":"08922","535547":"08922","535557":"08922","535558":"08922","535559":"08922","535568":"08922","535573":"08922","535578":"08922","535579":"08922","535580":"08922","535581":"08922","535582":"08922","535591":"08922","535592":"08922","535593":"08922","535594":"08922","560001":"080","560002":"080","560003":"080","560004":"080","560005":"080","560006":"080","560007":"080","560008":"080","560009":"080","560010":"080","560011":"080","560012":"080","560013":"080","560015":"080","560016":"080","560017":"080","560018":"080","560020":"080","560021":"080","560022":"080","560023":"080","560024":"080","560025":"080","560026":"080","560027":"080","560029":"080","560030":"080","560032":"080","560033":"080","560034":"080","560035":"080","560036":"080","560037":"080","560038":"080","560040":"080","560041":"080","560042":"080","560043":"080","560045":"080","560046":"080","560047":"080","560048":"080","560049":"080","560050":"080","560051":"080","560053":"080","560054":"080","560055":"080","560056":"080","560057":"080","560058":"080","560059":"080","560060":"080","560061":"080","560062":"080","560063":"080","560064":"080","560065":"080","560066":"080","560067":"080","560068":"080","560070":"080","560071":"080","560072":"080","560073":"080","560074":"080","560075":"080","560076":"080","560077":"080","560078":"080","560079":"080","560080":"080","560081":"080","560082":"080","560083":"080","560084":"080","560085":"080","560086":"080","560087":"080","560088":"080","560089":"080","560090":"080","560091":"080","560092":"080","560093":"080","560094":"080","560095":"080","560096":"080","560097":"080","560098":"080","560099":"080","560100":"080","560102":"080","560103":"080","560104":"080","560105":"080","560107":"080","560108":"080","560109":"080","560110":"080","560111":"080","560112":"080","560113":"080","560114":"080","560115":"080","560116":"080","560117":"080","560300":"080","560500":"080","561101":"080","561201":"080","561202":"0816","561203":"080","561204":"080","561205":"080","561206":"08156","561207":"08156","561208":"08156","561209":"08156","561210":"08156","561211":"08156","561212":"08156","561213":"08156","561228":"08156","562101":"08156","562102":"08156","562103":"08156","562104":"08156","562105":"08156","562106":"080","562107":"080","562108":"080","562109":"080","562110":"080","562111":"080","562112":"080","562114":"080","562117":"080","562119":"080","562120":"080","562121":"080","562122":"080","562123":"080","562125":"080","562126":"080","562127":"080","562128":"080","562129":"080","562130":"080","562131":"080","562132":"080","562135":"080","562138":"080","562149":"080","562157":"080","562159":"080","562160":"080","562161":"080","562162":"080","562163":"080","562164":"080","562165":"080","563101":"08152","563103":"08152","563113":"08152","563114":"08152","563115":"08152","563116":"08152","563117":"08152","563118":"08152","563119":"08152","563120":"08152","563121":"08152","563122":"08152","563123":"08156","563124":"08156","563125":"08152","563126":"08152","563127":"08152","563128":"08156","563129":"08152","563130":"08152","563131":"08152","563132":"08152","563133":"08152","563134":"08152","563135":"08152","563136":"08152","563137":"08152","563138":"08152","563139":"08152","563146":"08156","563147":"08152","563157":"08152","563159":"08156","563160":"08152","563161":"08152","563162":"08152","563163":"08152","570001":"0821","570002":"0821","570003":"0821","570004":"0821","570005":"0821","570006":"0821","570007":"0821","570008":"0821","570009":"0821","570010":"0821","570011":"0821","570012":"0821","570014":"0821","570015":"0821","570016":"0821","570017":"0821","570018":"0821","570019":"0821","570020":"0821","570022":"0821","570023":"0821","570025":"0821","570026":"0821","570027":"0821","570028":"0821","570029":"0821","570030":"0821","570031":"0821","570032":"0821","570033":"0821","570034":"0821","571101":"0821","571102":"0821","571103":"0821","571104":"0821","571105":"0821","571106":"0821","571107":"0821","571108":"0821","571109":"08226","571110":"0821","571111":"08226","571114":"0821","571115":"08226","571116":"0821","571117":"08226","571118":"0821","571119":"0821","571120":"0821","571121":"0821","571122":"0821","571123":"08226","571124":"0821","571125":"0821","571126":"08226","571127":"08226","571128":"08226","571129":"0821","571130":"0821","571134":"0821","571187":"0821","571189":"0821","571201":"08272","571211":"08272","571212":"08272","571213":"08272","571214":"08272","571215":"08272","571216":"08272","571217":"08272","571218":"08272","571219":"08272","571231":"08272","571232":"08272","571234":"08272","571235":"08272","571236":"08272","571237":"08272","571247":"08272","571248":"08272","571249":"08272","571250":"08272","571251":"08272","571252":"08272","571253":"08272","571254":"08272","571301":"0821","571302":"0821","571311":"0821","571312":"0821","571313":"08226","571314":"0821","571315":"0821","571316":"0821","571320":"08226","571342":"08226","571401":"08232","571402":"08232","571403":"08232","571404":"08232","571405":"08232","571415":"08232","571416":"08232","571417":"08232","571418":"08232","571419":"08232","571421":"08232","571422":"08232","571423":"08232","571424":"08232","571425":"08232","571426":"08232","571427":"08232","571428":"08232","571429":"08232","571430":"08232","571431":"08232","571432":"08232","571433":"08232","571434":"08232","571435":"08232","571436":"08232","571438":"08232","571439":"08226","571440":"08226","571441":"08226","571442":"0821","571443":"08226","571444":"08226","571445":"08232","571446":"08232","571448":"08232","571450":"08232","571455":"08232","571457":"08226","571463":"08232","571475":"08232","571476":"08232","571477":"08232","571478":"08232","571490":"08226","571601":"0821","571602":"0821","571603":"0821","571604":"0821","571605":"08232","571606":"08232","571607":"08232","571610":"0821","571617":"0821","571802":"08232","571807":"08232","571811":"08232","571812":"08232","572101":"0816","572102":"0816","572103":"0816","572104":"0816","572105":"0816","572106":"0816","572107":"0816","572111":"0816","572112":"0816","572113":"0816","572114":"0816","572115":"0816","572116":"0816","572117":"0816","572118":"0816","572119":"0816","572120":"0816","572121":"0816","572122":"0816","572123":"0816","572124":"0816","572125":"0816","572126":"0816","572127":"0816","572128":"0816","572129":"0816","572130":"0816","572132":"0816","572133":"0816","572134":"0816","572135":"0816","572136":"0816","572137":"0816","572138":"0816","572139":"0816","572140":"0816","572141":"0816","572142":"0816","572168":"0816","572175":"0816","572201":"0816","572211":"0816","572212":"0816","572213":"0816","572214":"0816","572215":"0816","572216":"0816","572217":"0816","572218":"0816","572219":"0816","572220":"0816","572221":"0816","572222":"0816","572223":"0816","572224":"0816","572225":"0816","572226":"0816","572227":"0816","572228":"0816","573101":"08172","573102":"08172","573103":"08172","573111":"08172","573112":"08172","573113":"08172","573115":"08172","573116":"08172","573117":"08172","573118":"08172","573119":"08172","573120":"08172","573121":"08172","573122":"08172","573123":"08172","573124":"08172","573125":"08172","573126":"08172","573127":"08172","573128":"08172","573129":"08172","573130":"08172","573131":"08172","573133":"08172","573134":"08172","573135":"08172","573136":"08172","573137":"08172","573141":"08172","573142":"08172","573144":"08172","573162":"08172","573164":"08172","573165":"08172","573201":"08172","573202":"08172","573210":"08172","573211":"08172","573212":"08172","573213":"08172","573214":"08172","573215":"08172","573216":"08172","573217":"08172","573218":"08172","573219":"08172","573220":"08172","573225":"08172","573226":"08172","574101":"0820","574102":"0820","574103":"0820","574104":"0820","574105":"0820","574106":"0820","574107":"0820","574108":"0820","574109":"0820","574110":"0820","574111":"0820","574112":"0820","574113":"0820","574114":"0820","574115":"0820","574116":"0820","574117":"0820","574118":"0820","574119":"0820","574122":"0820","574129":"0820","574141":"0824","574142":"0824","574143":"0824","574144":"0824","574145":"0824","574146":"0824","574148":"0824","574150":"0824","574151":"0824","574153":"0824","574154":"0824","574197":"0824","574198":"0824","574199":"0824","574201":"0824","574202":"0824","574203":"0824","574210":"0824","574211":"0824","574212":"0824","574213":"0824","574214":"0824","574216":"0824","574217":"0824","574218":"0824","574219":"0824","574220":"0824","574221":"0824","574222":"0824","574223":"0824","574224":"0824","574225":"0824","574226":"0824","574227":"0824","574228":"0824","574229":"0824","574230":"0824","574231":"0824","574232":"0824","574233":"0824","574234":"08272","574235":"0824","574236":"0824","574237":"0824","574238":"0824","574239":"0824","574240":"0824","574241":"0824","574242":"0824","574243":"0824","574244":"0820","574248":"0824","574253":"0824","574259":"0824","574260":"0824","574265":"0824","574267":"0824","574274":"0824","574279":"0824","574285":"0824","574313":"0824","574314":"08272","574323":"0824","574324":"0824","574325":"0824","574326":"0824","574327":"0824","574328":"0824","574509":"0824","575001":"0824","575002":"0824","575003":"0824","575004":"0824","575005":"0824","575006":"0824","575007":"0824","575008":"0824","575009":"0824","575010":"0824","575011":"0824","575013":"0824","575014":"0824","575015":"0824","575016":"0824","575017":"0824","575018":"0824","575019":"0824","575020":"0824","575022":"0824","575023":"0824","575025":"0824","575028":"0824","575029":"0824","575030":"0824","576101":"0820","576102":"0820","576103":"0820","576104":"0820","576105":"0820","576106":"0820","576107":"0820","576108":"0820","576111":"0820","576112":"0820","576113":"0820","576114":"0820","576115":"0820","576117":"0820","576120":"0820","576121":"0820","576122":"0820","576124":"0820","576201":"0820","576210":"0820","576211":"0820","576212":"0820","576213":"0820","576214":"0820","576215":"0820","576216":"0820","576217":"0820","576218":"0820","576219":"0820","576220":"0820","576221":"0820","576222":"0820","576223":"0820","576224":"0820","576225":"0820","576226":"0820","576227":"0820","576228":"0820","576229":"0820","576230":"0820","576231":"0820","576232":"0820","576233":"0820","576234":"0820","576235":"0820","576247":"0820","576257":"0820","576282":"0820","576283":"0820","577001":"08192","577002":"08192","577003":"08192","577004":"08192","577005":"08192","577006":"08192","577007":"08192","577101":"08262","577102":"08262","577111":"08262","577112":"08262","577113":"08262","577114":"08262","577115":"08182","577116":"08262","577117":"08262","577120":"08262","577121":"08262","577122":"08262","577123":"08262","577124":"08262","577125":"08262","577126":"08262","577127":"08262","577128":"08262","577129":"08262","577130":"08262","577131":"08262","577132":"08262","577133":"08262","577134":"08262","577135":"08262","577136":"08262","577137":"08262","577138":"08262","577139":"08262","577140":"08262","577144":"08262","577145":"08262","577146":"08262","577160":"08262","577168":"08262","577175":"08262","577179":"08262","577180":"08262","577181":"08262","577182":"08262","577201":"08182","577202":"08182","577203":"08182","577204":"08182","577205":"08182","577211":"08182","577213":"08192","577214":"08182","577215":"08192","577216":"08182","577217":"08192","577218":"08192","577219":"08192","577220":"08182","577221":"08192","577222":"08182","577223":"08192","577224":"08192","577225":"08182","577226":"08182","577227":"08182","577228":"08262","577229":"08182","577230":"08192","577231":"08192","577232":"08182","577233":"08182","577243":"08182","577245":"08182","577301":"08182","577302":"08182","577401":"08182","577411":"08182","577412":"08182","577413":"08182","577414":"08182","577415":"08182","577416":"08182","577417":"08182","577418":"08182","577419":"08182","577421":"08182","577422":"08182","577423":"08182","577424":"08182","577425":"08182","577426":"08182","577427":"08182","577428":"08182","577429":"08182","577430":"08182","577431":"08182","577432":"08182","577433":"08182","577434":"08182","577435":"08182","577436":"08182","577451":"08182","577452":"08182","577453":"08182","577501":"08194","577502":"08194","577511":"08194","577512":"08192","577513":"08192","577514":"08192","577515":"08194","577516":"08192","577517":"08194","577518":"08194","577519":"08194","577520":"08194","577521":"08192","577522":"08194","577523":"08194","577524":"08194","577525":"08192","577526":"08194","577527":"08194","577528":"08192","577529":"08194","577530":"08192","577531":"08194","577532":"08194","577533":"08194","577534":"08192","577535":"08194","577536":"08194","577537":"08194","577538":"08194","577539":"08194","577540":"08194","577541":"08194","577542":"08194","577543":"08194","577544":"08192","577545":"08194","577546":"08194","577547":"08262","577548":"08262","577549":"08262","577550":"08262","577551":"08192","577552":"08192","577553":"08192","577554":"08194","577555":"08194","577556":"08192","577557":"08194","577558":"08194","577566":"08192","577589":"08192","577596":"08194","577597":"08194","577598":"08194","577599":"08194","577601":"08192","580001":"0836","580002":"0836","580003":"0836","580004":"0836","580005":"0836","580006":"0836","580007":"0836","580008":"0836","580009":"0836","580011":"0836","580020":"0836","580021":"0836","580023":"0836","580024":"0836","580025":"0836","580026":"0836","580027":"0836","580028":"0836","580029":"0836","580030":"0836","580031":"0836","580032":"0836","580112":"0836","580114":"0836","580118":"0836","581101":"08375","581102":"08375","581103":"0836","581104":"08375","581105":"0836","581106":"08375","581107":"0836","581108":"08375","581109":"08375","581110":"08375","581111":"08375","581112":"08375","581113":"0836","581115":"08375","581116":"08375","581117":"0836","581118":"08375","581119":"08375","581120":"08375","581121":"08382","581123":"08375","581126":"08375","581128":"08375","581129":"08382","581145":"08375","581148":"08375","581186":"08382","581187":"08382","581193":"08375","581195":"0836","581196":"0836","581198":"08375","581199":"08375","581201":"0836","581202":"08375","581203":"08375","581204":"0836","581205":"08375","581206":"0836","581207":"0836","581208":"08375","581209":"0836","581210":"08375","581211":"08375","581212":"08375","581213":"08375","581237":"08375","581301":"08382","581302":"08382","581303":"08382","581304":"08382","581306":"08382","581307":"08382","581308":"08382","581314":"08382","581315":"08382","581316":"08382","581317":"08382","581318":"08382","581319":"08382","581320":"08382","581321":"08382","581322":"08382","581323":"08382","581324":"08382","581325":"08382","581326":"08382","581327":"08382","581328":"08382","581329":"08382","581330":"08382","581331":"08382","581332":"08382","581333":"08382","581334":"08382","581335":"08382","581336":"08382","581337":"08382","581338":"08382","581339":"08382","581340":"08382","581341":"08382","581342":"08382","581343":"08382","581344":"08382","581345":"08382","581346":"08382","581347":"08382","581348":"08382","581349":"08382","581350":"08382","581351":"08382","581352":"08382","581353":"08382","581354":"08382","581355":"08382","581356":"08382","581357":"08382","581358":"08382","581359":"08382","581360":"08382","581361":"08382","581362":"08382","581363":"08382","581365":"08382","581384":"08382","581396":"08382","581400":"08382","581401":"08382","581402":"08382","581403":"08382","581411":"08382","581412":"08382","581421":"08382","581423":"08382","581440":"08382","581450":"08382","581453":"08382","582101":"08372","582102":"08372","582103":"08372","582111":"08372","582112":"08372","582113":"08372","582114":"08372","582115":"08372","582116":"08372","582117":"08372","582118":"08372","582119":"08372","582120":"08372","582201":"0836","582202":"08372","582203":"08372","582204":"08372","582205":"08372","582206":"08372","582207":"08372","582208":"0836","582209":"08372","582210":"08372","582211":"08372","583101":"08392","583102":"08392","583103":"08392","583104":"08392","583105":"08392","583111":"08392","583112":"08392","583113":"08392","583114":"08392","583115":"08392","583116":"08392","583117":"08392","583118":"08392","583119":"08392","583120":"08392","583121":"08392","583122":"08392","583123":"08392","583124":"08392","583125":"08392","583126":"08392","583127":"08392","583128":"08392","583129":"08392","583130":"08392","583131":"08392","583132":"08392","583134":"08392","583135":"08392","583136":"08392","583137":"08392","583152":"08392","583153":"08392","583154":"08392","583155":"08392","583201":"08392","583203":"08392","583211":"08392","583212":"08392","583213":"08392","583214":"08392","583215":"08392","583216":"08392","583217":"08392","583218":"08392","583219":"08392","583220":"08392","583221":"08392","583222":"08392","583223":"08392","583224":"08392","583225":"08392","583226":"08539","583227":"08539","583228":"08539","583229":"08539","583230":"08539","583231":"08539","583232":"08539","583233":"08539","583234":"08539","583235":"08539","583236":"08539","583237":"08539","583238":"08539","583239":"08392","583268":"08539","583275":"08392","583276":"08392","583277":"08539","583278":"08539","583279":"08539","583280":"08539","583281":"08539","583282":"08539","583283":"08539","583284":"08539","583285":"08539","583287":"08539","584101":"08532","584102":"08532","584103":"08532","584104":"08532","584111":"08532","584113":"08532","584115":"08532","584116":"08532","584118":"08532","584120":"08532","584122":"08532","584123":"08532","584124":"08532","584125":"08532","584126":"08532","584127":"08532","584128":"08532","584129":"08532","584132":"08532","584133":"08532","584134":"08532","584135":"08532","584136":"08532","584138":"08532","584139":"08532","584140":"08532","584143":"08532","584167":"08532","584170":"08532","584202":"08532","584203":"08532","585101":"08472","585102":"08472","585103":"08472","585104":"08472","585105":"08472","585106":"08472","585107":"08472","585201":"08473","585202":"08473","585210":"08472","585211":"08472","585212":"08472","585213":"08472","585214":"08473","585215":"08473","585216":"08473","585217":"08472","585218":"08472","585219":"08473","585220":"08473","585221":"08473","585222":"08472","585223":"08473","585224":"08473","585225":"08472","585226":"08482","585227":"08482","585228":"08472","585229":"08472","585236":"08472","585237":"08473","585265":"08472","585287":"08473","585290":"08473","585291":"08473","585292":"08472","585301":"08472","585302":"08472","585303":"08472","585304":"08473","585305":"08472","585306":"08472","585307":"08472","585308":"08472","585309":"08473","585310":"08472","585311":"08472","585312":"08472","585313":"08472","585314":"08472","585315":"08473","585316":"08472","585317":"08472","585318":"08472","585319":"08473","585320":"08472","585321":"08473","585322":"08472","585323":"08473","585324":"08472","585325":"08472","585326":"08482","585327":"08482","585328":"08482","585329":"08482","585330":"08482","585331":"08482","585353":"08482","585355":"08473","585367":"08472","585401":"08482","585402":"08482","585403":"08482","585404":"08482","585411":"08482","585412":"08482","585413":"08482","585414":"08482","585415":"08482","585416":"08482","585417":"08482","585418":"08482","585419":"08482","585421":"08482","585436":"08482","585437":"08482","585443":"08482","585444":"08482","585445":"08482","585447":"08482","586101":"08352","586103":"08352","586104":"08352","586108":"08352","586109":"08352","586111":"08352","586112":"08352","586113":"08352","586114":"08352","586115":"08352","586116":"08352","586117":"08352","586118":"08352","586119":"08352","586120":"08352","586121":"08352","586122":"08352","586123":"08352","586124":"08352","586125":"08352","586127":"08352","586128":"08352","586129":"08352","586130":"08352","586201":"08352","586202":"08352","586203":"08352","586204":"08352","586205":"08352","586206":"08352","586207":"08352","586208":"08352","586209":"08352","586210":"08352","586211":"08352","586212":"08352","586213":"08352","586214":"08352","586215":"08352","586216":"08352","586217":"08352","587101":"08354","587102":"08354","587103":"08354","587104":"08354","587111":"08354","587112":"08354","587113":"08354","587114":"08354","587115":"08354","587116":"08354","587117":"08354","587118":"08354","587119":"08354","587120":"08354","587121":"08354","587122":"08354","587124":"08354","587125":"08354","587154":"08354","587155":"08354","587156":"08354","587201":"08354","587202":"08354","587203":"08354","587204":"08354","587205":"08354","587206":"08354","587207":"08354","587301":"08354","587311":"08354","587312":"08354","587313":"08354","587314":"08354","587315":"08354","587316":"08354","587330":"08354","587331":"08354","590001":"0831","590003":"0831","590005":"0831","590006":"0831","590008":"0831","590009":"0831","590010":"0831","590011":"0831","590014":"0831","590015":"0831","590016":"0831","590017":"0831","590018":"0831","590019":"0831","590020":"0831","591101":"0831","591102":"0831","591103":"0831","591104":"0831","591106":"0831","591107":"0831","591108":"0831","591109":"0831","591110":"0831","591111":"0831","591112":"0831","591113":"0831","591114":"0831","591115":"0831","591117":"0831","591118":"0831","591119":"0831","591120":"0831","591121":"0831","591122":"0831","591123":"0831","591124":"0831","591125":"0831","591126":"0831","591127":"0831","591128":"0831","591129":"0831","591130":"0831","591131":"0831","591136":"0831","591143":"0831","591147":"0831","591153":"0831","591156":"0831","591173":"0831","591201":"0831","591211":"0831","591212":"0831","591213":"0831","591214":"0831","591215":"0831","591216":"0831","591217":"0831","591218":"0831","591219":"0831","591220":"0831","591221":"0831","591222":"0831","591223":"0831","591224":"0831","591225":"0831","591226":"0831","591227":"0831","591228":"0831","591229":"0831","591230":"0831","591231":"0831","591232":"0831","591233":"0831","591234":"0831","591235":"0831","591236":"0831","591237":"0831","591238":"0831","591239":"0831","591240":"0831","591241":"0831","591242":"0831","591243":"0831","591244":"0831","591246":"0831","591247":"0831","591248":"0831","591254":"0831","591263":"0831","591265":"0831","591287":"0831","591301":"0831","591302":"0831","591303":"0831","591304":"0831","591305":"0831","591306":"0831","591307":"0831","591308":"0831","591309":"0831","591310":"0831","591311":"0831","591312":"0831","591313":"0831","591314":"0831","591315":"0831","591316":"0831","591317":"0831","591340":"0831","591344":"0831","591345":"0831","591346":"0831","600001":"044","600002":"044","600003":"044","600004":"044","600005":"044","600006":"044","600007":"044","600008":"044","600009":"044","600010":"044","600011":"044","600012":"044","600013":"044","600014":"044","600015":"044","600016":"044","600017":"044","600018":"044","600019":"044","600020":"044","600021":"044","600022":"044","600023":"044","600024":"044","600025":"044","600026":"044","600028":"044","600030":"044","600031":"044","600032":"044","600033":"044","600034":"044","600035":"044","600036":"044","600037":"044","600038":"044","600039":"044","600040":"044","600041":"044","600042":"044","600043":"04114","600044":"04114","600045":"04114","600046":"04114","600047":"04114","600048":"04114","600049":"044","600050":"044","600051":"044","600052":"044","600053":"044","600054":"044","600055":"044","600056":"044","600057":"044","600058":"044","600059":"04114","600060":"044","600061":"044","600062":"044","600063":"04114","600064":"04114","600066":"044","600067":"044","600068":"044","600069":"04112","600070":"04114","600071":"044","600072":"044","600073":"04114","600074":"04114","600075":"04114","600076":"044","600077":"044","600078":"044","600081":"044","600082":"044","600083":"044","600084":"044","600085":"044","600086":"044","600087":"044","600088":"044","600089":"04112","600090":"044","600091":"044","600092":"044","600093":"044","600094":"044","600095":"044","600096":"044","600097":"044","600099":"044","600100":"04114","600101":"044","600102":"044","600103":"044","600104":"044","600106":"044","600107":"044","600110":"044","600113":"044","600115":"044","600116":"044","600117":"04114","600118":"044","600119":"044","600120":"044","600122":"04112","600123":"044","600124":"044","600125":"044","600126":"04114","600127":"04114","600128":"04112","600129":"04114","600130":"04114","600131":"04114","600132":"04112","601101":"044","601102":"044","601103":"044","601201":"044","601202":"044","601203":"044","601204":"044","601205":"044","601206":"044","601301":"04112","602001":"044","602002":"044","602003":"044","602021":"044","602023":"044","602024":"044","602025":"044","602026":"044","602105":"044","602106":"04112","602108":"044","602117":"04112","603001":"04114","603002":"04114","603003":"04114","603004":"04114","603101":"04114","603102":"04114","603103":"04114","603104":"04114","603105":"04114","603106":"04112","603107":"04112","603108":"04114","603109":"04114","603110":"04114","603111":"04114","603112":"04114","603127":"04114","603201":"04114","603202":"04112","603203":"04112","603204":"04112","603209":"04114","603210":"04114","603211":"04114","603301":"04114","603302":"04114","603303":"04114","603304":"04114","603305":"04114","603306":"04114","603307":"04114","603308":"04114","603309":"04114","603310":"04114","603311":"04114","603312":"04114","603313":"04114","603314":"04112","603319":"04114","603401":"04114","603402":"04112","603403":"04112","603405":"04114","603406":"04112","604001":"04146","604101":"04146","604102":"04146","604151":"04146","604152":"04146","604153":"04146","604154":"04146","604201":"04146","604202":"04146","604203":"04146","604204":"04146","604205":"04146","604206":"04146","604207":"04146","604208":"04146","604210":"04146","604301":"04146","604302":"04146","604303":"04146","604304":"04146","604305":"04146","604306":"04146","604307":"04146","604401":"04175","604402":"04175","604403":"04175","604404":"04175","604405":"04175","604406":"04175","604407":"04175","604408":"04175","604409":"04175","604410":"04175","604501":"04175","604502":"04175","604503":"04175","604504":"04175","604505":"04175","604601":"04175","605001":"0413","605002":"0413","605003":"0413","605004":"0413","605005":"0413","605006":"0413","605007":"0413","605008":"0413","605009":"0413","605010":"0413","605011":"0413","605013":"0413","605014":"04146","605101":"04146","605102":"04146","605103":"04146","605104":"04146","605105":"04146","605106":"04146","605107":"04146","605108":"04146","605109":"04146","605110":"0413","605111":"04146","605201":"04146","605202":"04146","605203":"04146","605301":"04146","605302":"04146","605401":"04146","605402":"04146","605403":"04146","605501":"04146","605502":"04146","605601":"04146","605602":"04146","605651":"04146","605652":"04146","605701":"04146","605702":"04151","605751":"04151","605752":"04146","605754":"04151","605755":"04146","605756":"04146","605757":"04151","605758":"04146","605759":"04151","605766":"04151","605801":"04151","605802":"04151","605803":"04146","606001":"04142","606003":"04142","606102":"04151","606103":"04142","606104":"04142","606105":"04142","606106":"04142","606107":"04151","606108":"04142","606109":"04142","606110":"04142","606111":"04142","606115":"04151","606201":"04151","606202":"04151","606203":"04151","606204":"04151","606205":"04151","606206":"04151","606207":"04151","606208":"04151","606209":"04151","606213":"04151","606301":"04151","606302":"04142","606303":"04142","606304":"04142","606305":"04151","606401":"04151","606402":"04151","606601":"04175","606603":"04175","606604":"04175","606611":"04175","606701":"04175","606702":"04175","606703":"04175","606704":"04175","606705":"04175","606706":"04175","606707":"04175","606708":"04175","606709":"04175","606710":"04175","606751":"04175","606752":"04175","606753":"04175","606754":"04146","606755":"04175","606801":"04175","606802":"04175","606803":"04175","606804":"04175","606805":"04175","606806":"04175","606807":"04175","606808":"04175","606811":"04175","606901":"04175","606902":"04175","606903":"04175","606904":"04175","606905":"04175","606906":"04175","606907":"04175","606908":"04175","607001":"04142","607002":"04142","607003":"04142","607004":"04142","607005":"04142","607006":"04142","607101":"04146","607102":"04142","607103":"04142","607104":"04142","607105":"04142","607106":"04142","607107":"04146","607108":"04142","607109":"04142","607112":"04142","607201":"04151","607202":"04151","607203":"04146","607204":"04151","607205":"04142","607209":"04146","607301":"04142","607302":"04142","607303":"04142","607308":"04142","607401":"04142","607402":"0413","607403":"0413","607801":"04142","607802":"04142","607803":"04142","607804":"04142","607805":"04142","607807":"04142","608001":"04142","608002":"04365","608102":"04142","608201":"04142","608301":"04142","608302":"04142","608303":"04142","608304":"04142","608305":"04142","608306":"04142","608401":"04142","608501":"04142","608502":"04142","608601":"04142","608602":"04142","608701":"04142","608702":"04142","608703":"04142","608704":"04142","608801":"04142","608901":"04329","609001":"04364","609003":"04364","609101":"04364","609102":"04364","609103":"04364","609104":"04364","609105":"04364","609106":"04364","609107":"04364","609108":"04364","609109":"04364","609110":"04364","609111":"04364","609112":"04364","609113":"04364","609114":"04364","609115":"04364","609116":"04364","609117":"04364","609118":"04364","609201":"04364","609202":"04364","609203":"04364","609204":"04362","609205":"04364","609301":"04364","609302":"04364","609303":"04364","609304":"04364","609305":"04364","609306":"04364","609307":"04364","609308":"04364","609309":"04364","609310":"04364","609311":"04364","609312":"04364","609313":"04364","609314":"04364","609401":"04364","609402":"04364","609403":"04366","609404":"04364","609405":"04366","609501":"04366","609502":"04366","609503":"04366","609504":"04366","609601":"04368","609602":"04368","609603":"04366","609604":"04365","609605":"04368","609606":"04368","609607":"04368","609608":"04366","609609":"04368","609701":"04365","609702":"04365","609703":"04365","609704":"04365","609801":"04364","609802":"04362","609803":"04364","609804":"04362","609805":"04364","609806":"04364","609807":"04362","609808":"04364","609810":"04364","609811":"04364","610001":"04366","610003":"04366","610004":"04366","610005":"04366","610101":"04366","610102":"04366","610103":"04366","610104":"04366","610105":"04366","610106":"04366","610107":"04366","610109":"04366","610201":"04366","610202":"04366","610203":"04366","610204":"04365","610205":"04366","610206":"04366","610207":"04365","611001":"04365","611002":"04365","611003":"04365","611101":"04366","611102":"04365","611103":"04365","611104":"04365","611105":"04365","611106":"04365","611108":"04365","611109":"04365","611110":"04365","611111":"04365","611112":"04365","612001":"04362","612002":"04362","612101":"04362","612102":"04362","612103":"04362","612104":"04362","612105":"04362","612106":"04362","612201":"04366","612202":"04362","612203":"04366","612204":"04362","612301":"04362","612302":"04362","612303":"04362","612401":"04362","612402":"04362","612501":"04362","612502":"04362","612503":"04362","612504":"04362","612601":"04366","612602":"04362","612603":"04366","612604":"04366","612605":"04366","612610":"04366","612701":"04366","612702":"04362","612703":"04362","612801":"04366","612802":"04366","612803":"04366","612804":"04366","612901":"04329","612902":"04329","612903":"04329","612904":"04329","612905":"04329","613001":"04362","613002":"04362","613003":"04362","613004":"04362","613005":"04362","613006":"04362","613007":"04362","613008":"04362","613009":"04362","613010":"04362","613101":"04362","613102":"04362","613103":"04362","613104":"04362","613105":"04362","613201":"04362","613202":"04362","613203":"04362","613204":"04362","613205":"04362","613301":"04322","613303":"04362","613401":"04362","613402":"04362","613403":"04362","613501":"04362","613502":"04362","613503":"04362","613504":"04362","613601":"04362","613602":"04362","613701":"04366","613702":"04366","613703":"04366","613704":"04366","613705":"04366","614001":"04366","614013":"04366","614014":"04366","614015":"04366","614016":"04366","614017":"04366","614018":"04366","614019":"04366","614020":"04366","614101":"04366","614102":"04366","614103":"04366","614201":"04362","614202":"04362","614203":"04362","614204":"04362","614205":"04362","614206":"04362","614207":"04362","614208":"04366","614210":"04362","614211":"04362","614301":"04362","614302":"04366","614303":"04362","614401":"04362","614402":"04362","614403":"04366","614404":"04366","614601":"04362","614602":"04362","614612":"04362","614613":"04362","614614":"04362","614615":"04362","614616":"04322","614617":"04322","614618":"04322","614619":"04322","614620":"04322","614621":"04322","614622":"04322","614623":"04362","614624":"04322","614625":"04362","614626":"04362","614628":"04362","614629":"04322","614630":"04322","614701":"04362","614702":"04366","614703":"04366","614704":"04366","614705":"04366","614706":"04366","614707":"04365","614708":"04366","614710":"04366","614711":"04366","614712":"04365","614713":"04366","614714":"04365","614715":"04366","614716":"04366","614717":"04366","614723":"04362","614738":"04366","614801":"04322","614802":"04362","614803":"04362","614804":"04362","614805":"04322","614806":"04365","614807":"04365","614808":"04365","614809":"04365","614810":"04365","614901":"04362","614902":"04362","614903":"04366","614904":"04362","614905":"04362","614906":"04362","620001":"0431","620002":"0431","620003":"0431","620004":"0431","620005":"0431","620006":"0431","620007":"0431","620008":"0431","620009":"0431","620010":"0431","620011":"0431","620012":"0431","620013":"0431","620014":"0431","620015":"0431","620016":"0431","620017":"0431","620018":"0431","620019":"0431","620020":"0431","620021":"0431","620022":"0431","620023":"0431","620024":"0431","620025":"0431","620026":"0431","620027":"0431","620101":"0431","620102":"0431","621001":"0431","621002":"0431","621003":"0431","621004":"0431","621005":"0431","621006":"0431","621007":"0431","621008":"0431","621009":"0431","621010":"0431","621011":"0431","621012":"0431","621014":"0431","621101":"04328","621102":"04328","621103":"04328","621104":"0431","621105":"0431","621106":"0431","621107":"04328","621108":"04328","621109":"0431","621110":"0427","621111":"0431","621112":"0431","621113":"04328","621114":"04328","621115":"04328","621116":"04328","621117":"04328","621118":"04328","621133":"04328","621202":"0431","621203":"0431","621204":"0431","621205":"0431","621206":"0431","621207":"0431","621208":"0431","621209":"0431","621210":"0431","621211":"0431","621212":"04328","621213":"0431","621214":"0431","621215":"0431","621216":"0431","621217":"0431","621218":"0431","621219":"04328","621220":"0431","621301":"04324","621302":"0431","621305":"0431","621306":"0431","621307":"0431","621308":"0431","621310":"0431","621311":"0431","621312":"0431","621313":"04324","621314":"0431","621315":"0431","621316":"04322","621601":"0431","621651":"0431","621652":"0431","621653":"0431","621701":"04329","621702":"0431","621703":"0431","621704":"04329","621705":"04329","621706":"0431","621707":"04329","621708":"04328","621709":"04329","621710":"04329","621711":"0431","621712":"0431","621713":"04328","621714":"04329","621715":"04329","621716":"04328","621717":"04328","621718":"04329","621719":"04329","621722":"0431","621729":"04329","621730":"04329","621731":"04329","621801":"04329","621802":"04329","621803":"04329","621804":"04329","621805":"04329","621806":"04329","621851":"04329","622001":"04322","622002":"04322","622003":"04322","622004":"04322","622005":"04322","622101":"04322","622102":"0431","622103":"04322","622104":"04322","622201":"04322","622202":"04322","622203":"04322","622204":"04322","622209":"04322","622301":"04322","622302":"04322","622303":"04322","622304":"04322","622401":"04322","622402":"04322","622403":"04575","622404":"04322","622407":"04322","622409":"04322","622411":"04322","622412":"04322","622422":"04322","622501":"04322","622502":"04322","622503":"04322","622504":"04322","622505":"04322","622506":"04322","622507":"04322","622515":"04322","623115":"04567","623120":"04567","623135":"04567","623308":"04567","623315":"04567","623401":"04567","623402":"04567","623403":"04567","623404":"04567","623406":"04567","623407":"04567","623409":"04567","623501":"04567","623502":"04567","623503":"04567","623504":"04567","623512":"04567","623513":"04567","623514":"04567","623515":"04567","623516":"04567","623517":"04567","623518":"04567","623519":"04567","623520":"04567","623521":"04567","623522":"04567","623523":"04567","623524":"04567","623525":"04567","623526":"04567","623527":"04567","623528":"04567","623529":"04567","623530":"04567","623531":"04567","623532":"04567","623533":"04567","623534":"04567","623536":"04567","623537":"04567","623538":"04567","623566":"04567","623601":"04567","623603":"04567","623604":"04567","623605":"04567","623608":"04567","623701":"04567","623703":"04567","623704":"04567","623705":"04567","623706":"04567","623707":"04567","623708":"04567","623711":"04567","623712":"04567","623806":"04567","624001":"0451","624002":"0451","624003":"0451","624004":"0451","624005":"0451","624101":"0451","624103":"0451","624201":"0451","624202":"0451","624204":"0451","624206":"0451","624208":"0451","624210":"0451","624211":"0451","624212":"0451","624215":"0451","624216":"0451","624219":"0451","624220":"0451","624301":"0451","624302":"0451","624303":"0451","624304":"0451","624306":"0451","624307":"0451","624308":"0451","624401":"0451","624402":"0451","624403":"0451","624601":"0451","624610":"0451","624612":"0451","624613":"0451","624614":"0451","624615":"0451","624616":"0451","624617":"0451","624618":"0451","624619":"0451","624620":"0451","624621":"0451","624622":"0451","624701":"0451","624702":"0451","624703":"0451","624704":"0451","624705":"0451","624706":"0451","624707":"0451","624708":"0451","624709":"0451","624710":"0451","624711":"0451","624712":"0451","624801":"0451","624802":"0451","625001":"0452","625002":"0452","625003":"0452","625004":"0452","625005":"0452","625006":"0452","625007":"0452","625008":"0452","625009":"0452","625011":"0452","625012":"0452","625014":"0452","625015":"0452","625016":"0452","625017":"0452","625018":"0452","625019":"0452","625020":"0452","625021":"0452","625022":"0452","625023":"0452","625101":"0452","625102":"04575","625103":"0452","625104":"0452","625105":"0452","625106":"0452","625107":"0452","625108":"0452","625109":"0452","625110":"0452","625122":"0452","625201":"0452","625203":"04546","625205":"0452","625207":"0452","625214":"0452","625218":"0452","625221":"0452","625234":"0452","625301":"0452","625402":"0452","625501":"0452","625503":"0452","625512":"04546","625513":"04546","625514":"0452","625515":"04546","625516":"04546","625517":"04546","625518":"04546","625519":"04546","625520":"04546","625521":"04546","625522":"04546","625523":"04546","625524":"04546","625525":"04546","625526":"04546","625527":"0452","625528":"04546","625529":"0452","625530":"04546","625531":"04546","625532":"0452","625533":"04546","625534":"04546","625535":"0452","625536":"04546","625537":"0452","625540":"04546","625556":"04546","625562":"04546","625579":"04546","625582":"04546","625601":"04546","625602":"04546","625603":"04546","625604":"04546","625605":"04546","625701":"0452","625702":"0452","625703":"0452","625704":"0452","625705":"0452","625706":"0452","625707":"0452","625708":"0452","626001":"04562","626002":"04562","626003":"04562","626004":"04562","626005":"04562","626101":"04562","626102":"04562","626103":"04562","626104":"04562","626105":"04562","626106":"04562","626107":"04562","626108":"04562","626109":"04562","626110":"04562","626111":"04562","626112":"04562","626113":"04562","626114":"04562","626115":"04562","626116":"04562","626117":"04562","626118":"04562","626119":"04562","626121":"04562","626122":"04562","626123":"04562","626124":"04562","626125":"04562","626126":"04562","626127":"04562","626128":"04562","626129":"04562","626130":"04562","626131":"04562","626132":"04562","626133":"04562","626134":"04562","626135":"04562","626136":"04562","626137":"04562","626138":"04562","626139":"04562","626140":"04562","626141":"04562","626142":"04562","626149":"04562","626161":"04562","626188":"04562","626189":"04562","626201":"04562","626202":"04562","626203":"04562","626204":"04562","626205":"04562","626607":"04562","626612":"04562","627001":"0462","627002":"0462","627003":"0462","627004":"0462","627005":"0462","627006":"0462","627007":"0462","627008":"0462","627009":"0462","627010":"0462","627011":"0462","627012":"0462","627101":"0462","627102":"0462","627103":"0462","627104":"0462","627105":"0462","627106":"0462","627107":"0462","627108":"0462","627109":"0462","627110":"0462","627111":"0462","627112":"0462","627113":"0462","627114":"0462","627115":"0462","627116":"0462","627117":"0462","627118":"0462","627119":"0462","627120":"0462","627127":"0462","627133":"0462","627151":"0462","627152":"0462","627201":"0462","627202":"0462","627351":"0462","627352":"0461","627353":"0462","627354":"0462","627355":"0462","627356":"0462","627357":"0462","627358":"0462","627359":"0462","627401":"0462","627412":"04633","627413":"0462","627414":"0462","627415":"04633","627416":"0462","627417":"0462","627418":"0462","627420":"0462","627421":"0462","627422":"0462","627423":"04633","627424":"04633","627425":"0462","627426":"0462","627427":"0462","627428":"0462","627451":"0462","627452":"0462","627453":"0462","627501":"0462","627502":"0462","627601":"0462","627602":"0462","627603":"0462","627604":"0462","627651":"0462","627652":"0462","627654":"0462","627657":"0462","627713":"04562","627719":"04633","627751":"04633","627753":"04633","627754":"04633","627755":"04633","627756":"04633","627757":"04633","627758":"04633","627759":"04633","627760":"04633","627761":"04633","627764":"04633","627802":"04633","627803":"04633","627804":"04633","627805":"04633","627806":"04633","627807":"04633","627808":"04633","627809":"04633","627811":"04633","627812":"04633","627813":"04633","627814":"04633","627818":"04633","627851":"0462","627852":"04633","627853":"04633","627854":"04633","627855":"04633","627856":"04633","627857":"04633","627858":"04633","627859":"04633","627860":"04633","627861":"04633","627862":"04633","627951":"0462","627953":"0462","628001":"0461","628002":"0461","628003":"0461","628004":"0461","628005":"0461","628006":"0461","628007":"0461","628008":"0461","628101":"0461","628102":"0461","628103":"0461","628104":"0461","628105":"0461","628151":"0461","628152":"0461","628201":"0461","628202":"0461","628203":"0461","628204":"0461","628205":"0461","628206":"0461","628207":"0461","628208":"0461","628209":"0461","628210":"0461","628211":"0461","628212":"0461","628213":"0461","628215":"0461","628216":"0461","628217":"0461","628218":"0461","628219":"0461","628229":"0461","628251":"0461","628252":"0461","628301":"0461","628302":"0461","628303":"0461","628304":"0461","628401":"0461","628402":"0461","628501":"0461","628502":"0461","628503":"0461","628552":"0461","628601":"0461","628612":"0461","628613":"0461","628614":"0461","628615":"0461","628616":"0461","628617":"0461","628618":"0461","628619":"0461","628620":"0461","628621":"0461","628622":"0461","628623":"0461","628653":"0461","628656":"0461","628701":"0461","628702":"0461","628703":"0461","628704":"0461","628712":"0461","628714":"0461","628716":"0461","628718":"0461","628720":"0461","628721":"0461","628722":"0461","628751":"0461","628752":"0461","628753":"0461","628801":"0461","628802":"0461","628809":"0461","628851":"0461","628901":"0461","628902":"0461","628903":"0461","628904":"0461","628905":"0461","628906":"0461","628907":"0461","628908":"0461","628952":"0461","629001":"04652","629002":"04652","629003":"04652","629004":"04652","629101":"04652","629102":"04652","629151":"04652","629152":"04652","629153":"04652","629154":"04652","629155":"04652","629156":"04652","629157":"04652","629158":"04652","629159":"04652","629160":"04652","629161":"04652","629162":"04652","629163":"04652","629164":"04652","629165":"04652","629166":"04652","629167":"04652","629168":"04652","629169":"04652","629170":"04652","629171":"04652","629172":"04652","629173":"04652","629174":"04652","629175":"04652","629176":"04652","629177":"04652","629178":"04652","629179":"04652","629180":"04652","629193":"04652","629201":"04652","629202":"04652","629203":"04652","629204":"04652","629251":"04652","629252":"04652","629301":"04652","629302":"04652","629401":"04652","629402":"04652","629403":"04652","629501":"04652","629502":"04652","629601":"04652","629602":"04652","629701":"04652","629702":"04652","629703":"04652","629704":"04652","629801":"04652","629802":"04652","629803":"04652","629804":"04652","629809":"04652","629810":"04652","629851":"04652","629852":"04652","629901":"04652","630001":"04575","630002":"04575","630003":"04575","630005":"04575","630101":"04575","630102":"04575","630103":"04575","630104":"04575","630105":"04575","630106":"04575","630107":"04575","630108":"04575","630201":"04575","630202":"04575","630203":"04575","630204":"04575","630205":"04575","630206":"04575","630207":"04575","630208":"04575","630210":"04575","630211":"04575","630212":"04575","630301":"04575","630302":"04575","630303":"04575","630305":"04575","630306":"04575","630307":"04575","630309":"04575","630311":"04575","630312":"04575","630313":"04575","630314":"04575","630321":"04575","630405":"04575","630408":"04575","630410":"04575","630411":"04575","630501":"04575","630502":"04575","630551":"04575","630552":"04575","630553":"04575","630554":"04575","630555":"04575","630556":"04575","630557":"04575","630558":"04575","630559":"04575","630561":"04575","630562":"04575","630566":"04575","630602":"04575","630606":"04575","630609":"04575","630610":"04562","630611":"04562","630612":"04575","630702":"04575","630709":"04575","630710":"04575","630713":"04575","631001":"04172","631002":"04172","631003":"04172","631004":"04172","631005":"04172","631006":"04172","631051":"04172","631052":"04172","631101":"04172","631102":"04172","631151":"04172","631152":"04172","631201":"044","631202":"044","631203":"044","631204":"044","631205":"044","631206":"044","631207":"044","631208":"044","631209":"044","631210":"044","631211":"044","631212":"044","631213":"044","631301":"044","631302":"044","631303":"044","631304":"044","631402":"044","631501":"04112","631502":"04112","631551":"04112","631552":"04112","631553":"04112","631561":"04112","631601":"04112","631603":"04112","631604":"04112","631605":"04112","631606":"04112","631701":"04175","631702":"04175","632001":"0416","632002":"0416","632004":"0416","632006":"0416","632007":"0416","632008":"0416","632009":"0416","632010":"0416","632011":"0416","632012":"0416","632013":"0416","632014":"0416","632055":"0416","632057":"0416","632058":"0416","632059":"0416","632101":"0416","632102":"0416","632103":"0416","632104":"0416","632105":"0416","632106":"0416","632107":"0416","632113":"0416","632114":"0416","632115":"0416","632201":"0416","632202":"0416","632203":"0416","632204":"0416","632209":"0416","632301":"04175","632311":"04175","632312":"0416","632313":"04175","632314":"04175","632315":"04175","632316":"04175","632317":"04175","632318":"04172","632319":"0416","632326":"04175","632401":"04172","632403":"04172","632404":"04172","632405":"04172","632406":"04172","632501":"04172","632502":"04172","632503":"04172","632504":"04172","632505":"04172","632506":"0416","632507":"04175","632508":"04172","632509":"04172","632510":"04172","632511":"04175","632512":"04175","632513":"04172","632514":"0416","632515":"0416","632516":"0416","632517":"04172","632518":"04175","632519":"0416","632520":"0416","632521":"04172","632531":"04172","632601":"0416","632602":"0416","632603":"0416","632604":"0416","635001":"04343","635002":"04343","635101":"04343","635102":"04343","635103":"04343","635104":"04343","635105":"04343","635106":"04343","635107":"04343","635108":"04343","635109":"04343","635110":"04343","635111":"04342","635112":"04343","635113":"04343","635114":"04343","635115":"04343","635116":"04343","635117":"04343","635118":"04343","635119":"04343","635120":"04343","635121":"04343","635122":"04343","635123":"04343","635124":"04343","635126":"04343","635130":"04343","635201":"04343","635202":"04342","635203":"04343","635204":"04343","635205":"04342","635206":"04343","635207":"04343","635301":"04342","635302":"04342","635303":"04342","635304":"04343","635305":"04342","635306":"04343","635307":"04343","635601":"04577","635602":"04577","635651":"04577","635652":"04577","635653":"04577","635654":"04577","635655":"04577","635701":"04577","635702":"04577","635703":"04175","635710":"04577","635751":"04577","635752":"04577","635754":"04577","635801":"04577","635802":"04577","635803":"0416","635804":"0416","635805":"0416","635806":"0416","635807":"04577","635808":"0416","635809":"0416","635810":"0416","635811":"04577","635812":"04577","635813":"0416","635814":"04577","635815":"04577","635851":"04577","635852":"04577","635853":"04577","635854":"04577","635901":"04577","636001":"0427","636002":"0427","636003":"0427","636004":"0427","636005":"0427","636006":"0427","636007":"0427","636008":"0427","636009":"0427","636010":"0427","636011":"0427","636012":"0427","636013":"0427","636014":"0427","636015":"0427","636016":"0427","636017":"0427","636030":"0427","636101":"0427","636102":"0427","636103":"0427","636104":"0427","636105":"0427","636106":"0427","636107":"0427","636108":"0427","636109":"0427","636110":"0427","636111":"0427","636112":"0427","636113":"0427","636114":"0427","636115":"0427","636116":"0427","636117":"0427","636118":"0427","636119":"0427","636121":"0427","636122":"0427","636138":"0427","636139":"0427","636140":"0427","636141":"0427","636142":"04286","636201":"0427","636202":"04286","636203":"0427","636204":"0427","636301":"04286","636302":"0427","636303":"0427","636304":"0427","636305":"0427","636306":"0427","636307":"0427","636308":"0427","636309":"0427","636351":"0427","636352":"04342","636354":"0427","636401":"0427","636402":"0427","636403":"0427","636404":"0427","636406":"0427","636451":"0427","636452":"0427","636453":"0427","636454":"0427","636455":"0427","636456":"0427","636457":"0427","636458":"0427","636501":"0427","636502":"0427","636503":"0427","636601":"0427","636602":"0427","636701":"04342","636704":"04342","636705":"04342","636803":"04342","636804":"04342","636805":"04342","636806":"04343","636807":"04342","636808":"04342","636809":"04342","636810":"04342","636811":"04342","636812":"04343","636813":"04342","636902":"04343","636903":"04342","636904":"04342","636905":"04342","636906":"04342","637001":"04286","637002":"04286","637003":"04286","637013":"04286","637014":"04286","637015":"04286","637017":"04286","637018":"04286","637019":"04286","637020":"04286","637021":"04286","637101":"0427","637102":"0427","637103":"0427","637104":"0427","637105":"0427","637107":"0427","637201":"04286","637202":"04286","637203":"04286","637204":"04286","637205":"04286","637206":"04286","637207":"04286","637208":"04286","637209":"04286","637210":"04286","637211":"04286","637212":"04286","637213":"04286","637214":"04286","637215":"04286","637301":"0427","637302":"0427","637303":"0427","637304":"0427","637401":"04286","637402":"04286","637403":"04286","637404":"04286","637405":"04286","637406":"04286","637407":"04286","637408":"04286","637409":"04286","637410":"04286","637411":"04286","637412":"04286","637415":"04286","637501":"0427","637502":"0427","637503":"04286","637504":"0427","637505":"04286","638001":"0424","638002":"0424","638003":"0424","638004":"0424","638005":"0424","638006":"04286","638007":"04286","638008":"04286","638009":"0424","638010":"04286","638011":"0424","638012":"0424","638051":"0421","638052":"0424","638053":"0424","638054":"0424","638055":"0424","638056":"0421","638057":"0424","638060":"0424","638101":"0424","638102":"0424","638103":"0421","638104":"0424","638105":"0421","638106":"0421","638107":"0424","638108":"0421","638109":"0424","638110":"0421","638111":"0421","638112":"0424","638115":"0424","638116":"0424","638151":"04324","638152":"0424","638153":"0424","638154":"0424","638181":"04286","638182":"04286","638183":"0427","638301":"0424","638311":"0424","638312":"0424","638313":"0424","638314":"0424","638315":"0424","638316":"0424","638401":"0424","638402":"0424","638451":"0423","638452":"0424","638453":"0424","638454":"0424","638455":"0424","638456":"0424","638457":"0424","638458":"0421","638459":"0421","638460":"0421","638461":"0424","638462":"0421","638476":"0424","638501":"0424","638502":"0424","638503":"0424","638504":"0424","638505":"0424","638506":"0424","638656":"0421","638657":"0421","638660":"0421","638661":"0421","638672":"0421","638673":"0421","638701":"0421","638702":"0421","638703":"0421","638706":"0421","638751":"0421","638752":"0421","638812":"0421","639001":"04324","639002":"04324","639003":"04324","639004":"04324","639005":"04324","639006":"04324","639007":"04324","639008":"04324","639101":"0431","639102":"04324","639103":"0431","639104":"04324","639105":"04324","639107":"04324","639108":"04324","639109":"04324","639110":"04324","639111":"04324","639112":"0431","639113":"04324","639114":"04324","639115":"0431","639116":"04324","639117":"04324","639118":"04324","639119":"04324","639120":"04324","639136":"04324","639201":"0421","639202":"0421","639203":"04324","639205":"04324","639206":"04324","639207":"04324","641001":"0422","641002":"0422","641003":"0422","641004":"0422","641005":"0422","641006":"0422","641007":"0422","641008":"0422","641009":"0422","641010":"0422","641011":"0422","641012":"0422","641013":"0422","641014":"0422","641015":"0422","641016":"0422","641017":"0422","641018":"0422","641019":"0422","641020":"0422","641021":"0422","641022":"0422","641023":"0422","641024":"0422","641025":"0422","641026":"0422","641027":"0422","641028":"0422","641029":"0422","641030":"0422","641031":"0422","641032":"0422","641033":"0422","641034":"0422","641035":"0422","641036":"0422","641037":"0422","641038":"0422","641039":"0422","641040":"0422","641041":"0422","641042":"0422","641043":"0422","641044":"0422","641045":"0422","641046":"0422","641047":"0422","641048":"0422","641049":"0422","641050":"0422","641062":"0422","641101":"0422","641103":"0422","641104":"0422","641105":"0422","641107":"0422","641108":"0422","641109":"0422","641110":"0422","641111":"0422","641112":"0422","641113":"0422","641114":"0422","641201":"0422","641202":"0422","641301":"0422","641302":"0424","641305":"0422","641401":"0421","641402":"0422","641407":"0422","641601":"0421","641602":"0421","641603":"0421","641604":"0421","641605":"0421","641606":"0421","641607":"0421","641652":"0421","641653":"0422","641654":"0421","641655":"0421","641658":"0421","641659":"0422","641662":"0421","641663":"0421","641664":"0421","641665":"0421","641666":"0421","641667":"0421","641668":"0422","641669":"0422","641670":"0421","641671":"0421","641687":"0421","641697":"0422","642001":"0422","642002":"0422","642003":"0422","642004":"0422","642005":"0422","642006":"0422","642007":"0422","642101":"0422","642102":"0421","642103":"0422","642104":"0422","642105":"0422","642106":"0422","642107":"0422","642108":"0422","642109":"0422","642110":"0422","642111":"0421","642112":"0421","642113":"0421","642114":"0422","642117":"0422","642120":"0421","642122":"0421","642123":"0422","642125":"0422","642126":"0421","642127":"0422","642128":"0421","642129":"0422","642130":"0422","642132":"0421","642133":"0422","642134":"0422","642154":"0421","642201":"0421","642202":"0421","642203":"0421","642204":"0421","642205":"0421","642206":"0421","642207":"0421","643001":"0423","643002":"0423","643003":"0423","643004":"0423","643005":"0423","643006":"0423","643007":"0423","643101":"0423","643102":"0423","643103":"0423","643105":"0423","643201":"0423","643202":"0423","643203":"0423","643204":"0423","643205":"0423","643206":"0423","643207":"0423","643209":"0423","643211":"0423","643212":"0423","643213":"0423","643214":"0423","643215":"0423","643216":"0423","643217":"0423","643218":"0423","643219":"0423","643220":"0423","643221":"0423","643223":"0423","643224":"0423","643225":"0423","643226":"0423","643231":"0423","643233":"0423","643236":"0423","643237":"0423","643238":"0423","643239":"0423","643240":"0423","643241":"0423","643242":"0423","643243":"0423","643253":"0423","643270":"0423","670001":"0497","670002":"0497","670003":"0497","670004":"0497","670005":"0497","670006":"0497","670007":"0497","670008":"0497","670009":"0497","670010":"0497","670011":"0497","670012":"0497","670013":"0497","670014":"0497","670017":"0497","670018":"0497","670051":"0497","670101":"0497","670102":"0497","670103":"0497","670104":"0497","670105":"0497","670106":"0497","670107":"0497","670141":"0497","670142":"0497","670143":"0497","670301":"0497","670302":"0497","670303":"0497","670304":"0497","670305":"0497","670306":"0497","670307":"0494","670308":"0497","670309":"0497","670310":"0497","670325":"0497","670327":"0497","670331":"0497","670334":"0497","670353":"0497","670358":"0497","670501":"0497","670502":"0497","670503":"0497","670504":"0497","670511":"04994","670521":"0497","670561":"0497","670562":"0497","670563":"0497","670567":"0497","670571":"0497","670581":"0497","670582":"0497","670591":"0497","670592":"0497","670593":"0497","670594":"0497","670595":"0497","670601":"0497","670602":"0497","670604":"0497","670611":"0497","670612":"0494","670613":"0497","670621":"0497","670622":"0497","670631":"0497","670632":"0497","670633":"0497","670641":"0497","670642":"0497","670643":"0497","670644":"04935","670645":"04935","670646":"04935","670649":"0497","670650":"0497","670651":"0497","670661":"0497","670662":"0497","670663":"0497","670671":"0497","670672":"0497","670673":"0497","670674":"0497","670675":"0497","670676":"0497","670691":"0497","670692":"0497","670693":"0497","670694":"0497","670701":"0497","670702":"0497","670703":"0497","670704":"0497","670705":"0497","670706":"0497","670708":"0497","670721":"04935","670731":"04935","670741":"0497","671121":"04994","671122":"04994","671123":"04994","671124":"04994","671310":"04994","671311":"04994","671312":"04994","671313":"04994","671314":"04994","671315":"04994","671316":"04994","671317":"04994","671318":"04994","671319":"04994","671320":"04994","671321":"04994","671322":"04994","671323":"04994","671324":"04994","671326":"04994","671348":"04994","671351":"04994","671531":"04994","671532":"04994","671533":"04994","671534":"04994","671541":"04994","671542":"04994","671543":"04994","671551":"04994","671552":"04994","673001":"0495","673002":"0495","673003":"0495","673004":"0495","673005":"0495","673006":"0495","673007":"0495","673008":"0495","673009":"0495","673010":"0495","673011":"0495","673012":"0495","673014":"0495","673015":"0495","673016":"0495","673017":"0495","673018":"0495","673019":"0495","673020":"0495","673021":"0495","673027":"0495","673028":"0495","673029":"0495","673032":"0495","673051":"0495","673101":"0495","673102":"0495","673103":"0495","673104":"0495","673105":"0495","673106":"0495","673121":"04935","673122":"04935","673123":"04935","673124":"04935","673301":"0495","673302":"0495","673303":"0495","673304":"0495","673305":"0495","673306":"0495","673307":"0495","673308":"0495","673309":"0495","673310":"0490","673311":"0497","673312":"0497","673313":"0497","673314":"0494","673315":"0495","673316":"0497","673317":"0495","673323":"0495","673328":"0495","673501":"0495","673502":"0495","673503":"0495","673504":"0495","673505":"0495","673506":"0495","673507":"0495","673508":"0495","673509":"0495","673513":"0495","673517":"0495","673521":"0495","673522":"0495","673523":"0495","673524":"0495","673525":"0495","673526":"0495","673527":"0495","673528":"0495","673529":"0495","673541":"0495","673542":"0495","673570":"0495","673571":"0495","673572":"0494","673573":"0495","673574":"0495","673575":"04935","673576":"04935","673577":"04935","673579":"04935","673580":"0495","673581":"04935","673582":"0495","673585":"0495","673586":"0495","673591":"04935","673592":"04935","673593":"04935","673595":"04935","673596":"04935","673601":"0495","673602":"0495","673603":"0495","673604":"0495","673611":"0495","673612":"0495","673613":"0495","673614":"0495","673616":"0495","673620":"0495","673631":"0495","673632":"0494","673633":"0494","673634":"0494","673635":"0494","673636":"0494","673637":"0494","673638":"0494","673639":"0494","673640":"0494","673641":"0494","673642":"0494","673645":"0494","673647":"0494","673655":"0495","673661":"0495","676101":"0494","676102":"0494","676103":"0494","676104":"0494","676105":"0494","676106":"0494","676107":"0494","676108":"0494","676109":"0494","676121":"0494","676122":"0494","676123":"0494","676301":"0494","676302":"0494","676303":"0494","676304":"0494","676305":"0494","676306":"0494","676307":"0494","676309":"0494","676311":"0494","676312":"0494","676317":"0494","676319":"0494","676320":"0494","676501":"0494","676502":"0494","676503":"0494","676504":"0494","676505":"0494","676506":"0494","676507":"0494","676508":"0494","676509":"0494","676510":"0494","676517":"0494","676519":"0494","676521":"0494","676522":"0494","676523":"0494","676525":"0494","676528":"0494","676541":"0494","676542":"0494","676551":"0494","676552":"0494","676553":"0494","676561":"0494","676562":"0494","678001":"0491","678002":"0491","678003":"0491","678004":"0491","678005":"0491","678006":"0491","678007":"0491","678008":"0491","678009":"0491","678010":"0491","678011":"0491","678012":"0491","678013":"0491","678014":"0491","678051":"0491","678101":"0491","678102":"0491","678103":"0491","678104":"0491","678501":"0491","678502":"0491","678503":"0491","678504":"0491","678505":"0491","678506":"0491","678507":"0491","678508":"0491","678510":"0491","678512":"0491","678531":"0491","678532":"0491","678533":"0491","678534":"0491","678541":"0491","678542":"0491","678543":"0491","678544":"0491","678545":"0491","678546":"0491","678551":"0491","678552":"0491","678553":"0491","678554":"0491","678555":"0491","678556":"0491","678557":"0491","678571":"0491","678572":"0491","678573":"0491","678574":"0491","678581":"0491","678582":"0491","678583":"0491","678591":"0491","678592":"0491","678593":"0491","678594":"0491","678595":"0491","678596":"0491","678597":"0491","678598":"0491","678601":"0491","678611":"0491","678612":"0491","678613":"0491","678621":"0491","678622":"0491","678623":"0491","678624":"0491","678631":"0491","678632":"0491","678633":"0491","678641":"0491","678642":"0491","678651":"0491","678661":"0491","678671":"0491","678681":"0491","678682":"0491","678683":"0491","678684":"0491","678685":"0491","678686":"0491","678687":"0491","678688":"0491","678701":"0491","678702":"0491","678703":"0491","678704":"0491","678705":"0491","678706":"0491","678721":"0491","678722":"0491","678731":"0491","678732":"0491","678762":"0491","679101":"0491","679102":"0491","679103":"0491","679104":"0491","679105":"0487","679106":"0487","679121":"0491","679122":"0491","679123":"0491","679301":"0491","679302":"0491","679303":"0491","679304":"0491","679305":"0491","679306":"0491","679307":"0491","679308":"0491","679309":"0491","679313":"0491","679321":"0494","679322":"0494","679323":"0494","679324":"0494","679325":"0494","679326":"0494","679327":"0494","679328":"0494","679329":"0494","679330":"0494","679331":"0494","679332":"0494","679333":"0494","679334":"0494","679335":"0491","679336":"0491","679337":"0491","679338":"0494","679339":"0494","679340":"0494","679341":"0494","679357":"0494","679501":"0491","679502":"0491","679503":"0491","679504":"0491","679505":"0491","679506":"0491","679511":"0491","679512":"0491","679513":"0491","679514":"0491","679515":"0491","679516":"0491","679521":"0491","679522":"0491","679523":"0491","679531":"0487","679532":"0487","679533":"0491","679534":"0491","679535":"0491","679536":"0491","679551":"0491","679552":"0491","679553":"0491","679554":"0491","679561":"0487","679562":"0487","679563":"0487","679564":"0487","679571":"0494","679572":"0494","679573":"0494","679574":"0494","679575":"0494","679576":"0494","679577":"0494","679578":"0494","679579":"0494","679580":"0494","679581":"0494","679582":"0494","679583":"0494","679584":"0494","679585":"0494","679586":"0494","679587":"0494","679591":"0494","680001":"0487","680002":"0487","680003":"0487","680004":"0487","680005":"0487","680006":"0487","680007":"0487","680008":"0487","680009":"0487","680010":"0487","680011":"0487","680012":"0487","680013":"0487","680014":"0487","680020":"0487","680021":"0487","680022":"0487","680026":"0487","680027":"0487","680028":"0487","680101":"0487","680102":"0487","680103":"0487","680104":"0487","680121":"0487","680122":"0487","680123":"0487","680125":"0487","680301":"0487","680302":"0487","680303":"0487","680304":"0487","680305":"0487","680306":"0487","680307":"0487","680308":"0487","680309":"0487","680310":"0487","680311":"0487","680312":"0487","680317":"0487","680501":"0487","680502":"0487","680503":"0487","680504":"0487","680505":"0487","680506":"0487","680507":"0487","680508":"0487","680509":"0487","680510":"0487","680511":"0487","680512":"0487","680513":"0487","680514":"0487","680515":"0487","680516":"0487","680517":"0487","680518":"0487","680519":"0487","680520":"0487","680521":"0487","680522":"0487","680523":"0487","680524":"0487","680541":"0487","680542":"0487","680543":"0487","680544":"0487","680545":"0487","680546":"0487","680551":"0487","680552":"0487","680553":"0487","680555":"0487","680561":"0487","680562":"0487","680563":"0487","680564":"0487","680565":"0487","680566":"0487","680567":"0487","680568":"0487","680569":"0487","680570":"0487","680571":"0487","680581":"0487","680582":"0487","680583":"0487","680584":"0487","680585":"0487","680586":"0487","680587":"0487","680588":"0487","680589":"0487","680590":"0487","680591":"0487","680594":"0487","680596":"0487","680601":"0487","680602":"0487","680604":"0487","680611":"0487","680612":"0487","680613":"0487","680614":"0487","680615":"0487","680616":"0487","680617":"0487","680618":"0487","680619":"0487","680620":"0487","680623":"0487","680631":"0487","680641":"0487","680642":"0487","680651":"0487","680652":"0487","680653":"0487","680654":"0487","680655":"0487","680656":"0487","680661":"0487","680662":"0487","680663":"0487","680664":"0487","680665":"0487","680666":"0487","680667":"0487","680668":"0487","680669":"0487","680670":"0487","680671":"0487","680681":"0487","680682":"0487","680683":"0487","680684":"0487","680685":"0487","680686":"0487","680687":"0487","680688":"0487","680689":"0487","680691":"0487","680697":"0487","680699":"0487","680701":"0487","680702":"0487","680703":"0487","680711":"0487","680712":"0487","680721":"0487","680722":"0487","680724":"0487","680731":"0487","680732":"0487","680733":"0487","680734":"0487","680741":"0487","680751":"0487","682001":"0484","682002":"0484","682003":"0484","682004":"0484","682005":"0484","682006":"0484","682007":"0484","682008":"0484","682009":"0484","682010":"0484","682011":"0484","682012":"0484","682013":"0484","682015":"0484","682016":"0484","682017":"0484","682018":"0484","682019":"0484","682020":"0484","682021":"0484","682022":"0484","682023":"0484","682024":"0484","682025":"0484","682026":"0484","682027":"0484","682028":"0484","682029":"0484","682030":"0484","682031":"0484","682032":"0484","682033":"0484","682034":"0484","682035":"0484","682036":"0484","682037":"0484","682038":"0484","682039":"0484","682040":"0484","682041":"0484","682042":"0484","682050":"0484","682051":"0484","682052":"0484","682301":"0484","682302":"0484","682303":"0484","682304":"0484","682305":"0484","682306":"0484","682307":"0484","682308":"0484","682309":"0484","682310":"0484","682311":"0484","682312":"0484","682313":"0484","682314":"0484","682315":"0484","682316":"0484","682317":"0484","682501":"0484","682502":"0484","682503":"0484","682504":"0484","682505":"0484","682506":"0484","682507":"0484","682508":"0484","682509":"0484","682511":"0484","682551":"04896","682552":"04896","682553":"04896","682554":"04896","682555":"04896","682556":"04896","682557":"04896","682558":"04896","682559":"04896","683101":"0484","683102":"0484","683104":"0484","683105":"0484","683106":"0484","683108":"0484","683110":"0484","683111":"0484","683112":"0484","683501":"0484","683502":"0484","683503":"0484","683511":"0484","683512":"0484","683513":"0484","683514":"0484","683515":"0484","683516":"0484","683517":"0484","683518":"0484","683519":"0484","683520":"0484","683521":"0484","683522":"0484","683541":"0484","683542":"0484","683543":"0484","683544":"0484","683545":"0484","683546":"0484","683547":"0484","683548":"0484","683549":"0484","683550":"0484","683556":"0484","683561":"0484","683562":"0484","683563":"0484","683565":"0484","683571":"0484","683572":"0484","683573":"0484","683574":"0484","683575":"0484","683576":"0484","683577":"0484","683578":"0484","683579":"0484","683580":"0484","683581":"0484","683585":"0484","683587":"0484","683589":"0484","683594":"0484","685501":"04868","685503":"04868","685505":"04868","685507":"04868","685508":"04868","685509":"04868","685511":"04868","685512":"04868","685514":"04868","685515":"04868","685531":"04868","685532":"04868","685533":"0468","685535":"04868","685551":"04868","685552":"04868","685553":"04868","685554":"04868","685561":"04868","685562":"04868","685563":"04868","685565":"04868","685566":"04868","685571":"04868","685581":"04868","685582":"04868","685583":"04868","685584":"04868","685585":"04868","685586":"04868","685587":"04868","685588":"04868","685589":"04868","685590":"04868","685591":"04868","685595":"04868","685601":"04868","685602":"04868","685603":"04868","685604":"04868","685605":"04868","685606":"04868","685607":"04868","685608":"04868","685609":"04868","685612":"04868","685613":"04868","685614":"04868","685615":"04868","685616":"04868","685618":"04868","685619":"04868","685620":"04868","686001":"0481","686002":"0481","686003":"0481","686004":"0481","686005":"0481","686006":"0481","686007":"0481","686008":"0481","686009":"0481","686010":"0481","686011":"0481","686012":"0481","686013":"0481","686014":"0481","686015":"0481","686016":"0481","686017":"0481","686018":"0481","686019":"0481","686020":"0481","686021":"0481","686022":"0481","686041":"0481","686101":"0481","686102":"0481","686103":"0481","686104":"0481","686105":"0481","686106":"0481","686121":"0481","686122":"0481","686123":"0481","686141":"0481","686143":"0481","686144":"0481","686146":"0481","686501":"0481","686502":"0481","686503":"0481","686504":"0481","686505":"0481","686506":"0481","686507":"0481","686508":"0481","686509":"0481","686510":"0468","686511":"0468","686512":"0481","686513":"0481","686514":"0481","686515":"0481","686516":"0481","686517":"0481","686518":"0481","686519":"0481","686520":"0481","686521":"0481","686522":"0481","686531":"0481","686532":"0481","686533":"0481","686534":"0477","686535":"0481","686536":"0481","686537":"0481","686538":"0481","686539":"0481","686540":"0481","686541":"0481","686542":"0481","686543":"0481","686544":"0481","686545":"0481","686546":"0481","686547":"0468","686548":"0481","686555":"0481","686560":"0481","686561":"0481","686562":"0481","686563":"0481","686564":"0481","686571":"0481","686572":"0481","686573":"0481","686574":"0481","686575":"0481","686576":"0481","686577":"0481","686578":"0481","686579":"0481","686580":"0481","686581":"0481","686582":"0481","686583":"0481","686584":"0481","686585":"0481","686586":"0481","686587":"0481","686601":"0481","686602":"0481","686603":"0481","686604":"0481","686605":"0481","686606":"0481","686607":"0481","686608":"0481","686609":"0481","686610":"0481","686611":"0481","686612":"0481","686613":"0481","686616":"0481","686630":"0481","686631":"0481","686632":"0481","686633":"0481","686634":"0481","686635":"0481","686636":"0481","686637":"0481","686651":"0481","686652":"0481","686653":"0481","686661":"0484","686662":"0484","686663":"0484","686664":"0484","686665":"0484","686666":"0484","686667":"0484","686668":"0484","686669":"0484","686670":"0484","686671":"0484","686672":"0484","686673":"0484","686681":"0484","686691":"0484","686692":"0484","686693":"0484","688001":"0477","688002":"0477","688003":"0477","688004":"0477","688005":"0477","688006":"0477","688007":"0477","688008":"0477","688009":"0477","688011":"0477","688012":"0477","688013":"0477","688014":"0477","688501":"0477","688502":"0477","688503":"0477","688504":"0477","688505":"0477","688506":"0477","688521":"0477","688522":"0477","688523":"0477","688524":"0477","688525":"0477","688526":"0477","688527":"0477","688528":"0477","688529":"0477","688530":"0477","688531":"0477","688532":"0477","688533":"0477","688534":"0477","688535":"0477","688536":"0477","688537":"0477","688538":"0477","688539":"0477","688540":"0477","688541":"0477","688555":"0477","688561":"0477","688562":"0477","688570":"0477","688582":"0477","689101":"0468","689102":"0468","689103":"0468","689104":"0468","689105":"0468","689106":"0468","689107":"0468","689108":"0468","689109":"0477","689110":"0468","689111":"0468","689112":"0468","689113":"0468","689115":"0468","689121":"0477","689122":"0468","689123":"0468","689124":"0477","689126":"0477","689501":"0468","689502":"0468","689503":"0468","689504":"0477","689505":"0477","689506":"0477","689507":"0468","689508":"0477","689509":"0477","689510":"0477","689511":"0477","689512":"0477","689513":"0468","689514":"0468","689515":"0468","689520":"0477","689521":"0477","689531":"0468","689532":"0468","689533":"0468","689541":"0468","689542":"0468","689543":"0468","689544":"0468","689545":"0468","689546":"0468","689547":"0468","689548":"0468","689549":"0468","689550":"0468","689551":"0468","689571":"0477","689572":"0477","689573":"0477","689574":"0477","689581":"0468","689582":"0468","689583":"0468","689584":"0468","689585":"0468","689586":"0468","689587":"0468","689588":"0468","689589":"0468","689590":"0477","689591":"0468","689592":"0468","689594":"0468","689595":"0477","689597":"0468","689602":"0468","689611":"0468","689612":"0468","689613":"0468","689614":"0468","689615":"0468","689621":"0468","689622":"0477","689623":"0477","689624":"0477","689625":"0468","689626":"0468","689627":"0477","689641":"0468","689642":"0468","689643":"0468","689644":"0468","689645":"0468","689646":"0468","689647":"0468","689648":"0468","689649":"0468","689650":"0468","689652":"0468","689653":"0468","689654":"0468","689656":"0468","689661":"0468","689662":"0468","689663":"0468","689664":"0468","689666":"0468","689667":"0468","689668":"0468","689671":"0468","689672":"0468","689673":"0468","689674":"0468","689675":"0468","689676":"0468","689677":"0468","689678":"0468","689691":"0468","689692":"0468","689693":"0468","689694":"0468","689695":"0474","689696":"0474","689698":"0468","689699":"0468","689711":"0468","689713":"0468","690101":"0477","690102":"0477","690103":"0477","690104":"0477","690105":"0477","690106":"0477","690107":"0477","690108":"0477","690110":"0477","690501":"0477","690502":"0477","690503":"0477","690504":"0468","690505":"0477","690506":"0477","690507":"0477","690508":"0477","690509":"0477","690510":"0477","690511":"0477","690512":"0477","690513":"0477","690514":"0477","690515":"0477","690516":"0477","690517":"0477","690518":"0474","690519":"0474","690520":"0474","690521":"0474","690522":"0468","690523":"0474","690524":"0474","690525":"0474","690526":"0474","690527":"0477","690528":"0474","690529":"0477","690530":"0477","690531":"0477","690532":"0477","690533":"0477","690534":"0477","690535":"0477","690536":"0474","690537":"0477","690538":"0474","690539":"0474","690540":"0474","690542":"0474","690544":"0474","690546":"0474","690547":"0474","690548":"0477","690558":"0477","690559":"0477","690561":"0474","690571":"0477","690572":"0477","690573":"0474","690574":"0474","691001":"0474","691002":"0474","691003":"0474","691004":"0474","691005":"0474","691006":"0474","691007":"0474","691008":"0474","691009":"0474","691010":"0474","691011":"0474","691012":"0474","691013":"0474","691014":"0474","691015":"0474","691016":"0474","691019":"0474","691020":"0474","691021":"0474","691301":"0474","691302":"0474","691303":"0474","691304":"0474","691305":"0474","691306":"0474","691307":"0474","691308":"0474","691309":"0474","691310":"0474","691311":"0474","691312":"0474","691319":"0474","691322":"0474","691331":"0474","691332":"0474","691333":"0474","691334":"0474","691500":"0474","691501":"0474","691502":"0474","691503":"0474","691504":"0474","691505":"0474","691506":"0474","691507":"0474","691508":"0474","691509":"0474","691510":"0474","691511":"0474","691512":"0474","691515":"0474","691516":"0474","691520":"0474","691521":"0474","691522":"0474","691523":"0468","691524":"0468","691525":"0468","691526":"0468","691527":"0474","691530":"0468","691531":"0474","691532":"0474","691533":"0474","691534":"0474","691535":"0474","691536":"0474","691537":"0474","691538":"0474","691540":"0474","691541":"0474","691543":"0474","691551":"0468","691552":"0468","691553":"0468","691554":"0468","691555":"0468","691556":"0468","691557":"0474","691559":"0474","691560":"0474","691566":"0474","691571":"0474","691572":"0474","691573":"0474","691574":"0474","691576":"0474","691577":"0474","691578":"0474","691579":"0474","691581":"0474","691582":"0474","691583":"0474","691584":"0474","691585":"0474","691589":"0474","691590":"0474","691601":"0474","691602":"0474","695001":"0471","695002":"0471","695003":"0471","695004":"0471","695005":"0471","695006":"0471","695007":"0471","695008":"0471","695009":"0471","695010":"0471","695011":"0471","695012":"0471","695013":"0471","695014":"0471","695015":"0471","695016":"0471","695017":"0471","695018":"0471","695019":"0471","695020":"0471","695021":"0471","695022":"0471","695023":"0471","695024":"0471","695025":"0471","695026":"0471","695027":"0471","695028":"0471","695029":"0471","695030":"0471","695032":"0471","695033":"0471","695034":"0471","695035":"0471","695036":"0471","695038":"0471","695040":"0471","695042":"0471","695043":"0471","695051":"0471","695099":"0471","695101":"0471","695102":"0471","695103":"0471","695104":"0471","695121":"0471","695122":"0471","695123":"0471","695124":"0471","695125":"0471","695126":"0471","695132":"0471","695133":"0471","695134":"0471","695141":"0471","695142":"0471","695143":"0471","695144":"0471","695145":"0471","695146":"0471","695301":"0471","695302":"0471","695303":"0471","695304":"0471","695305":"0471","695306":"0471","695307":"0471","695308":"0471","695309":"0471","695310":"0471","695311":"0471","695312":"0471","695313":"0471","695316":"0471","695317":"0471","695318":"0471","695501":"0471","695502":"0471","695503":"0471","695504":"0471","695505":"0471","695506":"0471","695507":"0471","695508":"0471","695512":"0471","695513":"0471","695521":"0471","695522":"0471","695523":"0471","695524":"0471","695525":"0471","695526":"0471","695527":"0471","695528":"0471","695541":"0471","695542":"0471","695543":"0471","695547":"0471","695551":"0471","695561":"0471","695562":"0471","695563":"0471","695564":"0471","695568":"0471","695570":"0471","695571":"0471","695572":"0471","695573":"0471","695574":"0471","695575":"0471","695581":"0471","695582":"0471","695583":"0471","695584":"0471","695585":"0471","695586":"0471","695587":"0471","695588":"0471","695589":"0471","695601":"0471","695602":"0471","695603":"0471","695604":"0471","695605":"0471","695606":"0471","695607":"0471","695608":"0471","695609":"0471","695610":"0471","695611":"0471","695612":"0471","695614":"0471","695615":"0471","700001":"033","700002":"033","700003":"033","700004":"033","700005":"033","700006":"033","700007":"033","700008":"033","700009":"033","700010":"033","700011":"033","700012":"033","700013":"033","700014":"033","700015":"033","700016":"033","700017":"033","700018":"033","700019":"033","700020":"033","700021":"033","700022":"033","700023":"033","700024":"033","700025":"033","700026":"033","700027":"033","700028":"033","700029":"033","700030":"033","700031":"033","700032":"033","700033":"033","700034":"033","700035":"033","700036":"033","700037":"033","700038":"033","700039":"033","700040":"033","700041":"033","700042":"033","700043":"033","700044":"033","700045":"033","700046":"033","700047":"033","700048":"033","700049":"033","700050":"033","700051":"033","700052":"033","700053":"033","700054":"033","700055":"033","700056":"033","700057":"033","700058":"033","700059":"033","700060":"033","700061":"033","700062":"033","700063":"033","700064":"033","700065":"033","700066":"033","700067":"033","700068":"033","700069":"033","700070":"033","700071":"033","700072":"033","700073":"033","700074":"033","700075":"033","700076":"033","700077":"033","700078":"033","700079":"033","700080":"033","700081":"033","700082":"033","700083":"033","700084":"033","700085":"033","700086":"033","700087":"033","700088":"033","700089":"033","700090":"033","700091":"033","700092":"033","700093":"033","700094":"033","700095":"033","700096":"033","700097":"033","700099":"033","700100":"033","700101":"033","700102":"033","700103":"033","700104":"033","700105":"033","700106":"033","700107":"033","700108":"033","700109":"033","700110":"033","700111":"033","700112":"033","700113":"033","700114":"033","700115":"033","700116":"033","700117":"033","700118":"033","700119":"033","700120":"033","700121":"033","700122":"033","700123":"033","700124":"033","700125":"033","700126":"033","700127":"033","700128":"033","700129":"033","700130":"033","700131":"033","700132":"033","700133":"033","700134":"033","700135":"033","700136":"033","700137":"033","700138":"033","700139":"033","700140":"033","700141":"033","700142":"033","700143":"033","700144":"033","700145":"033","700146":"033","700147":"033","700148":"033","700149":"033","700150":"033","700151":"033","700152":"033","700153":"033","700154":"033","700155":"033","700156":"033","700157":"033","700158":"033","700159":"033","700160":"033","700161":"033","700162":"033","700163":"033","711101":"033","711102":"033","711103":"033","711104":"033","711105":"033","711106":"033","711107":"033","711108":"033","711109":"033","711110":"033","711111":"033","711112":"033","711113":"033","711114":"033","711115":"033","711201":"033","711202":"033","711203":"033","711204":"033","711205":"033","711206":"033","711225":"033","711226":"033","711227":"033","711301":"033","711302":"033","711303":"033","711304":"033","711305":"033","711306":"033","711307":"033","711308":"033","711309":"033","711310":"033","711312":"033","711313":"033","711314":"033","711315":"033","711316":"033","711317":"033","711322":"033","711331":"033","711401":"033","711403":"033","711404":"033","711405":"033","711408":"033","711409":"033","711410":"033","711411":"033","711412":"033","711413":"033","711414":"033","712101":"033","712102":"033","712103":"033","712104":"033","712105":"033","712121":"033","712122":"03222","712123":"033","712124":"033","712125":"033","712134":"0342","712135":"033","712136":"033","712137":"033","712138":"033","712139":"033","712146":"0342","712147":"033","712148":"033","712149":"033","712152":"033","712201":"033","712202":"033","712203":"033","712204":"033","712221":"033","712222":"033","712223":"033","712232":"033","712233":"033","712234":"033","712235":"033","712245":"033","712246":"033","712248":"033","712249":"033","712250":"033","712258":"033","712301":"033","712302":"033","712303":"033","712304":"033","712305":"033","712306":"033","712308":"0342","712310":"033","712311":"033","712401":"033","712402":"0342","712403":"033","712404":"033","712405":"033","712406":"033","712407":"033","712408":"033","712409":"033","712410":"0342","712412":"033","712413":"0342","712414":"033","712415":"033","712416":"033","712417":"033","712501":"033","712502":"033","712503":"033","712504":"033","712512":"0342","712513":"033","712514":"033","712515":"033","712601":"033","712602":"033","712611":"033","712612":"033","712613":"033","712614":"033","712615":"033","712616":"033","712617":"033","712701":"033","712702":"033","712706":"033","713101":"0342","713102":"0342","713103":"0342","713104":"0342","713121":"0342","713122":"0342","713123":"0342","713124":"0342","713125":"0342","713126":"0342","713127":"0342","713128":"0342","713129":"0342","713130":"0342","713131":"0342","713132":"0342","713140":"0342","713141":"0342","713142":"0342","713143":"0342","713144":"0342","713145":"0342","713146":"0342","713147":"0342","713148":"0342","713149":"0342","713150":"0342","713151":"0342","713152":"0342","713153":"0342","713154":"0342","713166":"0342","713201":"0341","713202":"0341","713203":"0341","713204":"0341","713205":"0341","713206":"0341","713207":"0341","713208":"0341","713209":"0341","713210":"0341","713211":"0341","713212":"0341","713213":"0341","713214":"0341","713215":"0341","713216":"0341","713217":"0341","713301":"0341","713302":"0341","713303":"0341","713304":"0341","713305":"0341","713315":"0341","713321":"0341","713322":"0341","713323":"0341","713324":"0341","713325":"0341","713326":"0341","713330":"0341","713331":"0341","713332":"0341","713333":"0341","713334":"0341","713335":"0341","713336":"0341","713337":"0341","713338":"0341","713339":"0341","713340":"0341","713341":"0341","713342":"0341","713343":"0341","713344":"0341","713346":"0341","713347":"0341","713357":"0341","713358":"0341","713359":"0341","713360":"0341","713361":"0341","713362":"0341","713363":"0341","713365":"0341","713369":"0341","713370":"0341","713371":"0341","713372":"0341","713373":"0341","713376":"0341","713378":"0341","713381":"0341","713384":"0341","713385":"0341","713386":"0341","713401":"0342","713403":"0342","713404":"0342","713405":"0342","713406":"0342","713407":"0342","713408":"0342","713409":"0342","713420":"0342","713421":"0342","713422":"0342","713423":"0342","713424":"0342","713426":"0342","713427":"0342","713428":"0342","713502":"0342","713512":"0342","713513":"0342","713514":"0342","713515":"0342","713519":"0342","713520":"0342","721101":"03222","721102":"03222","721121":"03222","721122":"03222","721124":"03222","721125":"03221","721126":"03222","721127":"03222","721128":"03222","721129":"03222","721130":"03222","721131":"03222","721132":"03222","721133":"03222","721134":"03228","721135":"03222","721136":"03222","721137":"03228","721139":"03222","721140":"03222","721143":"03221","721144":"03222","721145":"03222","721146":"03222","721147":"03222","721148":"03222","721149":"03222","721150":"03222","721151":"03228","721152":"03222","721153":"03222","721154":"03222","721155":"03222","721156":"03222","721157":"03222","721158":"03228","721159":"03221","721160":"03222","721161":"03222","721166":"03222","721171":"03228","721172":"03228","721201":"03222","721211":"03222","721212":"03222","721222":"03222","721232":"03222","721242":"03222","721253":"03222","721260":"03222","721301":"03222","721302":"03222","721303":"03222","721304":"03222","721305":"03222","721306":"03222","721401":"03228","721402":"03228","721403":"03228","721404":"03228","721405":"03228","721406":"03228","721420":"03222","721422":"03228","721423":"03228","721424":"03222","721425":"03228","721426":"03222","721427":"03228","721428":"03228","721429":"03228","721430":"03228","721431":"03228","721432":"03228","721433":"03228","721434":"03228","721435":"03222","721436":"03222","721437":"03222","721438":"03228","721439":"03228","721440":"03228","721441":"03228","721442":"03228","721443":"03222","721444":"03228","721445":"03222","721446":"03228","721447":"03228","721448":"03228","721449":"03228","721450":"03228","721451":"03222","721452":"03228","721453":"03228","721454":"03228","721455":"03228","721456":"03228","721457":"03222","721458":"03228","721463":"03228","721467":"03222","721501":"03221","721503":"03221","721504":"03221","721505":"03221","721506":"03221","721507":"03221","721513":"03222","721514":"03221","721515":"03221","721516":"03222","721517":"03221","721601":"03228","721602":"03228","721603":"03228","721604":"03228","721606":"03228","721607":"03228","721624":"03228","721625":"03228","721626":"03228","721627":"03228","721628":"03228","721629":"03228","721631":"03228","721632":"03228","721633":"03228","721634":"03228","721635":"03228","721636":"03228","721637":"03228","721641":"03222","721642":"03228","721643":"03228","721644":"03228","721645":"03228","721646":"03228","721647":"03228","721648":"03228","721649":"03228","721650":"03228","721651":"03228","721652":"03228","721653":"03228","721654":"03228","721655":"03228","721656":"03228","721657":"03228","721658":"03228","721659":"03228","722101":"03242","722102":"03242","722121":"03242","722122":"03242","722132":"03242","722133":"03242","722134":"03242","722135":"03242","722136":"03242","722137":"03242","722138":"03242","722139":"03242","722140":"03242","722141":"03242","722142":"03242","722143":"03242","722144":"03242","722146":"03242","722147":"03242","722148":"03242","722149":"03242","722150":"03242","722151":"03242","722152":"03242","722153":"03242","722154":"03242","722155":"03242","722156":"03242","722157":"03242","722158":"03242","722160":"03242","722161":"03242","722162":"03242","722164":"03242","722173":"03242","722183":"03242","722201":"03242","722202":"03242","722203":"03242","722204":"03242","722205":"03242","722206":"03242","722207":"03242","722208":"03242","723101":"03252","723102":"03252","723103":"03252","723104":"03252","723121":"03252","723126":"03252","723127":"03252","723128":"03252","723129":"03252","723130":"03252","723131":"03252","723132":"03252","723133":"03252","723142":"03252","723143":"03252","723145":"03252","723146":"03252","723147":"03252","723148":"03252","723149":"03252","723151":"03252","723152":"03252","723153":"03252","723154":"03252","723155":"03252","723156":"03252","723201":"03252","723202":"03252","723212":"03252","723213":"03252","723215":"03252","731101":"03462","731102":"03462","731103":"03462","731104":"03462","731121":"03462","731123":"03462","731124":"03462","731125":"03462","731126":"03462","731127":"03462","731129":"03462","731130":"03462","731132":"03462","731133":"03462","731201":"03462","731202":"03462","731204":"03462","731214":"0342","731215":"0342","731216":"03462","731218":"03462","731219":"03483","731220":"03462","731221":"03483","731222":"03483","731223":"03462","731224":"03462","731233":"03462","731234":"03462","731235":"03462","731236":"03462","731237":"03462","731238":"03462","731240":"03462","731241":"03483","731242":"03462","731243":"03462","731244":"03483","731245":"03462","731301":"03462","731302":"03462","731303":"03462","731304":"03462","732101":"03512","732102":"03512","732103":"03512","732121":"03512","732122":"03512","732123":"03512","732124":"03512","732125":"03512","732126":"03512","732127":"03512","732128":"03512","732138":"03512","732139":"03512","732140":"03512","732141":"03512","732142":"03512","732144":"03512","732201":"03512","732202":"03512","732203":"03512","732204":"03512","732205":"03512","732206":"03512","732207":"03512","732208":"03512","732209":"03512","732210":"03512","732215":"03512","732216":"03512","733101":"03522","733102":"03522","733103":"03522","733121":"03522","733123":"03523","733124":"03512","733125":"03523","733126":"03522","733127":"03522","733128":"03523","733129":"03523","733130":"03523","733132":"03523","733133":"03522","733134":"03523","733140":"03522","733141":"03522","733142":"03512","733143":"03523","733145":"03522","733156":"03523","733158":"03523","733201":"03523","733202":"03523","733207":"03523","733208":"03523","733209":"03523","733210":"03523","733215":"03523","734001":"03561","734002":"0354","734003":"0354","734004":"03561","734005":"0354","734006":"03561","734007":"03561","734008":"03552","734009":"0354","734010":"0354","734011":"0354","734012":"0354","734013":"0354","734014":"0354","734015":"03561","734101":"0354","734102":"0354","734103":"0354","734104":"0354","734105":"0354","734201":"0354","734203":"0354","734204":"0354","734209":"0354","734213":"0354","734214":"0354","734215":"0354","734216":"0354","734217":"0354","734218":"0354","734220":"0354","734221":"0354","734222":"0354","734223":"0354","734224":"0354","734226":"0354","734301":"03552","734311":"03552","734312":"03552","734313":"0354","734314":"03552","734315":"03552","734316":"03552","734421":"0354","734423":"0354","734424":"0354","734425":"0354","734426":"0354","734427":"0354","734429":"0354","734434":"0354","734501":"03561","734503":"03552","735101":"03561","735102":"03561","735121":"03561","735122":"03561","735132":"03561","735133":"03561","735134":"03561","735135":"03561","735202":"03561","735203":"03561","735204":"03564","735205":"03561","735206":"03552","735207":"03561","735208":"03564","735209":"03561","735210":"03561","735211":"03582","735212":"03561","735213":"03564","735214":"03564","735215":"03564","735216":"03561","735217":"03564","735218":"03561","735219":"03561","735220":"03564","735221":"03561","735222":"03561","735223":"03552","735224":"03561","735225":"03561","735226":"03564","735227":"03564","735228":"03561","735229":"03561","735230":"03561","735231":"03552","735232":"03561","735233":"03561","735234":"03561","735301":"03582","735302":"03561","735303":"03582","735304":"03582","735305":"03561","736101":"03582","736121":"03582","736122":"03564","736123":"03564","736131":"03582","736133":"03582","736134":"03582","736135":"03582","736145":"03582","736146":"03582","736156":"03582","736157":"03582","736158":"03582","736159":"03582","736160":"03582","736165":"03582","736167":"03582","736168":"03582","736169":"03582","736170":"03582","736171":"03582","736172":"03582","736176":"03582","736179":"03582","736182":"03564","736201":"03564","736202":"03564","736203":"03564","736204":"03564","736205":"03564","736206":"03564","736207":"03582","736208":"03564","737101":"03592","737102":"03592","737103":"03592","737106":"03592","737107":"03592","737111":"03595","737113":"03595","737116":"03592","737120":"03592","737121":"03595","737126":"011","737128":"011","737131":"03592","737132":"011","737133":"03592","737134":"011","737135":"03592","737136":"03592","737139":"011","741101":"03472","741102":"03472","741103":"03472","741121":"03472","741122":"03472","741123":"03474","741124":"03472","741125":"03472","741126":"03472","741127":"03472","741137":"03472","741138":"03472","741139":"03472","741140":"03472","741150":"03472","741151":"03472","741152":"03472","741153":"03472","741154":"03472","741155":"03472","741156":"03472","741157":"03472","741158":"03472","741159":"03472","741160":"03472","741161":"03472","741162":"03472","741163":"03472","741164":"03472","741165":"03472","741166":"03472","741167":"03472","741181":"03472","741201":"03472","741202":"03472","741221":"03472","741222":"03472","741223":"03472","741232":"03472","741234":"03472","741235":"03472","741238":"03472","741245":"03472","741246":"03472","741247":"03472","741248":"03472","741249":"03472","741250":"03472","741251":"03472","741252":"03472","741253":"03472","741254":"03472","741255":"03472","741256":"03472","741257":"03472","741301":"03472","741302":"03472","741313":"03472","741315":"03472","741316":"0342","741317":"03472","741319":"0342","741401":"03472","741402":"03472","741404":"03472","741501":"03472","741502":"03472","741503":"03472","741504":"03472","741505":"03472","741506":"03472","741507":"03472","741508":"03472","741509":"03472","742101":"03483","742102":"03483","742103":"03483","742104":"03483","742113":"03483","742121":"03472","742122":"03483","742123":"03483","742132":"03483","742133":"03483","742134":"03483","742135":"03483","742136":"03483","742137":"03483","742138":"03483","742140":"03483","742147":"03483","742148":"03483","742149":"03483","742151":"03483","742159":"03483","742160":"03483","742161":"03483","742163":"03483","742164":"03483","742165":"03483","742166":"03483","742168":"03483","742174":"03483","742175":"03483","742184":"03483","742187":"03483","742189":"03483","742201":"03483","742202":"03483","742212":"03483","742213":"03483","742223":"03483","742224":"03483","742225":"03483","742226":"03483","742227":"03483","742235":"03483","742236":"03483","742237":"03483","742238":"03483","742301":"03483","742302":"03483","742303":"03483","742304":"03483","742305":"03483","742306":"03483","742308":"03483","742401":"03483","742402":"03483","742404":"03483","742405":"03483","742406":"03483","742407":"03483","742408":"03483","742409":"03483","742410":"03483","743122":"033","743123":"033","743124":"033","743125":"033","743126":"033","743127":"033","743128":"033","743129":"033","743130":"033","743133":"033","743134":"033","743135":"033","743136":"033","743144":"033","743145":"033","743165":"033","743166":"033","743193":"033","743194":"033","743221":"033","743222":"033","743223":"033","743232":"033","743233":"033","743234":"033","743235":"033","743245":"033","743247":"033","743248":"033","743249":"033","743251":"033","743252":"033","743262":"033","743263":"033","743268":"033","743270":"033","743271":"033","743272":"033","743273":"033","743286":"033","743287":"033","743289":"033","743290":"033","743291":"033","743292":"033","743293":"033","743294":"033","743297":"033","743312":"033","743318":"033","743329":"033","743330":"033","743331":"033","743332":"033","743336":"033","743337":"033","743338":"033","743345":"033","743347":"033","743348":"033","743349":"033","743351":"033","743354":"033","743355":"033","743356":"033","743357":"033","743363":"033","743368":"033","743370":"033","743371":"033","743372":"033","743373":"033","743374":"033","743375":"033","743376":"033","743377":"033","743378":"033","743383":"033","743387":"033","743395":"033","743399":"033","743401":"033","743405":"033","743411":"033","743412":"033","743422":"033","743423":"033","743424":"033","743425":"033","743426":"033","743427":"033","743428":"033","743429":"033","743435":"033","743437":"033","743438":"033","743439":"033","743442":"033","743445":"033","743446":"033","743456":"033","743502":"033","743503":"033","743504":"033","743513":"033","743609":"033","743610":"033","743611":"033","743613":"033","743701":"033","743702":"033","743704":"033","743710":"033","743711":"033","744101":"03192","744102":"03192","744103":"03192","744104":"03192","744105":"03192","744106":"03192","744107":"03192","744112":"03192","744201":"03192","744202":"03192","744203":"03192","744204":"03192","744205":"03192","744206":"03192","744207":"03192","744209":"03192","744210":"03192","744211":"03192","744301":"03193","744302":"03193","744303":"03193","744304":"03193","751001":"06755","751002":"06755","751003":"06755","751004":"06755","751005":"06755","751006":"06755","751007":"06755","751008":"06755","751009":"06755","751010":"06755","751011":"06755","751012":"06755","751013":"06755","751014":"06755","751015":"06755","751016":"06755","751017":"06755","751018":"06755","751019":"06755","751020":"06755","751021":"06755","751022":"06755","751023":"06755","751024":"06755","751025":"06755","751026":"06755","751027":"06755","751028":"06755","751029":"06755","751030":"06755","751031":"06755","751032":"06755","751033":"06755","751034":"06755","752001":"06752","752002":"06752","752003":"06752","752004":"06752","752010":"06752","752011":"06752","752012":"06752","752013":"06752","752014":"06752","752015":"06752","752016":"06752","752017":"06752","752018":"06755","752019":"06752","752020":"06755","752021":"06755","752022":"06755","752023":"06755","752024":"03223","752025":"03223","752026":"03223","752027":"06755","752030":"06752","752031":"06755","752032":"06752","752034":"06755","752035":"06755","752037":"06755","752038":"06755","752045":"06752","752046":"06752","752050":"06752","752054":"06755","752055":"06755","752056":"06755","752057":"06755","752060":"06755","752061":"06755","752062":"06755","752063":"03223","752064":"06755","752065":"03223","752066":"06755","752068":"03223","752069":"03223","752070":"03223","752077":"03223","752078":"03223","752079":"03223","752080":"03223","752081":"03223","752082":"03223","752083":"03223","752084":"03223","752085":"03223","752089":"03223","752090":"03223","752091":"03223","752092":"03223","752093":"03223","752094":"03223","752100":"06752","752101":"06755","752102":"06755","752103":"06755","752104":"06752","752105":"06752","752106":"06752","752107":"06752","752108":"06752","752109":"06752","752110":"06752","752111":"06752","752113":"06752","752114":"06752","752115":"06755","752116":"06752","752118":"06752","752119":"06752","752120":"06752","752121":"06752","753001":"0671","753002":"0671","753003":"0671","753004":"0671","753006":"0671","753007":"0671","753008":"0671","753009":"0671","753010":"0671","753011":"0671","753012":"0671","753013":"0671","753014":"0671","753015":"0671","753016":"0671","754001":"06755","754002":"0671","754003":"0671","754004":"06752","754005":"06755","754006":"0671","754007":"0671","754008":"0671","754009":"0671","754010":"0671","754011":"0671","754012":"06755","754013":"0671","754018":"0671","754021":"0671","754022":"0671","754023":"06726","754024":"06726","754025":"0671","754026":"0671","754027":"0671","754028":"0671","754029":"0671","754030":"0671","754031":"0671","754032":"0671","754034":"0671","754035":"0671","754037":"0671","754071":"0671","754082":"06726","754100":"0671","754102":"06724","754103":"06724","754104":"06724","754105":"0671","754106":"06724","754107":"06724","754108":"06724","754109":"06724","754110":"06724","754111":"06724","754112":"0671","754113":"06724","754114":"06724","754119":"06724","754120":"06724","754130":"0671","754131":"0671","754132":"06724","754133":"06724","754134":"06727","754135":"06727","754136":"06724","754137":"06724","754138":"06724","754139":"06724","754140":"06727","754141":"06727","754142":"06727","754143":"06724","754145":"06724","754153":"06727","754160":"06724","754162":"06727","754200":"0671","754201":"0671","754202":"0671","754203":"0671","754204":"0671","754205":"06726","754206":"0671","754207":"06727","754208":"06727","754209":"0671","754210":"06727","754211":"06727","754212":"06727","754213":"06727","754214":"06727","754215":"06727","754216":"06727","754217":"06622","754218":"06727","754219":"06727","754220":"06727","754221":"0671","754222":"06727","754223":"06727","754224":"06727","754225":"06727","754227":"06727","754228":"06727","754231":"06727","754239":"06727","754240":"06727","754244":"06727","754245":"06727","754246":"06727","754248":"06727","754250":"06727","754253":"06727","754289":"06727","754290":"0671","754292":"06727","754293":"0671","754294":"06724","754295":"0671","754296":"06726","754297":"0671","754298":"0671","755001":"06726","755003":"06726","755004":"06727","755005":"06726","755006":"06726","755007":"06726","755008":"06726","755009":"06726","755010":"06726","755011":"06726","755012":"06726","755013":"06726","755014":"06726","755015":"06726","755016":"06727","755017":"06726","755018":"06726","755019":"06728","755020":"06726","755022":"06726","755023":"06726","755024":"06726","755025":"06726","755026":"06726","755027":"06726","755028":"06726","755036":"06726","755043":"06726","755044":"06726","755049":"06726","755050":"06726","755051":"06726","755061":"06727","755062":"06726","756001":"06782","756002":"06782","756003":"06782","756019":"06782","756020":"06782","756021":"06782","756022":"06782","756023":"06782","756024":"06782","756025":"06782","756026":"06782","756027":"06782","756028":"06792","756029":"06782","756030":"06792","756032":"06782","756033":"06782","756034":"06782","756035":"06782","756036":"06782","756037":"06782","756038":"06782","756039":"06782","756040":"06782","756041":"06782","756042":"06782","756043":"06782","756044":"06782","756045":"06782","756046":"06784","756047":"06782","756048":"06782","756049":"06782","756051":"06782","756055":"06782","756056":"06782","756058":"06782","756059":"06782","756060":"06782","756079":"06782","756080":"06782","756081":"06782","756083":"06782","756084":"06782","756085":"06782","756086":"06782","756087":"06782","756088":"06782","756089":"06782","756100":"06784","756101":"06784","756111":"06784","756112":"06784","756113":"06784","756114":"06784","756115":"06784","756116":"06784","756117":"06784","756118":"06784","756119":"06784","756120":"06784","756121":"06766","756122":"06784","756123":"06784","756124":"06784","756125":"06784","756126":"06782","756127":"06784","756128":"06784","756129":"06784","756130":"06784","756131":"06784","756132":"06784","756133":"06784","756134":"06782","756135":"06784","756137":"06784","756138":"06784","756139":"06784","756144":"06784","756162":"06784","756163":"06784","756164":"06784","756165":"06784","756166":"06782","756167":"06784","756168":"06784","756171":"06784","756181":"06784","756182":"06782","757001":"06792","757002":"06792","757003":"06792","757014":"06792","757016":"06792","757017":"06792","757018":"06792","757019":"06792","757020":"06792","757021":"06792","757022":"06792","757023":"06792","757024":"06792","757025":"06792","757026":"06792","757027":"06792","757028":"06792","757029":"06792","757030":"06792","757031":"06792","757032":"06792","757033":"06792","757034":"06792","757035":"06792","757036":"06792","757037":"06792","757038":"06792","757039":"06792","757040":"06792","757041":"06792","757042":"06792","757043":"06792","757045":"06792","757046":"06792","757047":"06792","757048":"06792","757049":"06792","757050":"06792","757051":"06792","757052":"06792","757053":"06792","757054":"06792","757055":"06792","757073":"06792","757074":"06792","757075":"06792","757077":"06792","757079":"06792","757081":"06792","757082":"06792","757083":"06792","757084":"06792","757085":"06792","757086":"06792","757087":"06792","757091":"06792","757092":"06792","757093":"06792","757100":"06792","757101":"06792","757102":"06792","757103":"06792","757104":"06792","757105":"06792","757106":"06792","757107":"06792","758001":"06766","758002":"06766","758013":"06766","758014":"06766","758015":"06766","758016":"06766","758017":"06766","758018":"06766","758019":"06766","758020":"06766","758021":"06766","758022":"06766","758023":"06766","758025":"06766","758026":"06766","758027":"06766","758028":"06766","758029":"06766","758030":"06766","758031":"06766","758032":"06766","758034":"06766","758035":"06766","758036":"06766","758037":"06766","758038":"06766","758040":"06766","758041":"06766","758043":"06766","758044":"06766","758045":"06766","758046":"06766","758047":"06766","758076":"06766","758078":"06766","758079":"06766","758080":"06766","758081":"06766","758082":"06766","758083":"06766","758084":"06766","758085":"06766","758086":"06766","758087":"06766","759001":"06762","759013":"06762","759014":"06762","759015":"06762","759016":"06762","759017":"06762","759018":"06762","759019":"06762","759020":"06762","759021":"06762","759022":"06762","759023":"06762","759024":"06762","759025":"06762","759026":"06762","759027":"06762","759028":"06762","759029":"06762","759037":"06764","759039":"06762","759040":"06764","759100":"06764","759101":"06764","759102":"06764","759103":"06764","759104":"06764","759105":"06764","759106":"06764","759107":"06764","759111":"06764","759116":"06764","759117":"06764","759118":"06764","759119":"06764","759120":"06762","759121":"06762","759122":"06762","759123":"06764","759124":"06764","759125":"06764","759126":"06764","759127":"06764","759128":"06762","759129":"06764","759130":"06764","759132":"06764","759141":"06764","759143":"06764","759145":"06764","759146":"06762","759147":"06764","759148":"06764","759149":"06764","759151":"06762","760001":"06811","760002":"06811","760003":"06811","760004":"06811","760005":"06811","760006":"06811","760007":"06811","760008":"06811","760009":"06811","760010":"06811","760011":"06811","761001":"06811","761002":"06811","761003":"06811","761004":"06811","761005":"06811","761006":"06811","761007":"06811","761008":"06811","761009":"06811","761010":"06811","761011":"06811","761012":"06811","761013":"06811","761014":"06811","761015":"06815","761016":"06815","761017":"06815","761018":"06811","761019":"06811","761020":"06811","761025":"06811","761026":"06811","761027":"06811","761028":"06811","761029":"06811","761030":"06811","761031":"06811","761032":"06811","761035":"06811","761037":"06811","761041":"06811","761042":"06811","761043":"06811","761045":"06811","761052":"06811","761054":"06811","761055":"06811","761100":"06811","761101":"06811","761102":"06811","761103":"06811","761104":"06811","761105":"06811","761106":"06811","761107":"06811","761108":"06842","761109":"06811","761110":"06811","761111":"06811","761114":"06811","761115":"06811","761116":"06811","761117":"06811","761118":"06811","761119":"06811","761120":"06811","761121":"06811","761122":"06811","761123":"06811","761124":"06811","761125":"06842","761126":"06811","761131":"06811","761132":"06811","761133":"06811","761140":"06811","761141":"06811","761143":"06811","761144":"06811","761146":"06811","761151":"06842","761200":"06815","761201":"06815","761206":"06815","761207":"06815","761208":"06815","761209":"06811","761210":"06815","761211":"06815","761212":"06815","761213":"06815","761214":"06815","761215":"06815","761217":"06815","762001":"06842","762002":"06842","762010":"06842","762011":"06842","762012":"06842","762013":"06841","762014":"06841","762015":"06841","762016":"06841","762017":"06841","762018":"06841","762019":"06842","762020":"06841","762021":"06842","762022":"06842","762023":"06841","762024":"06841","762026":"06841","762027":"06842","762028":"06842","762029":"06842","762030":"06841","762100":"06842","762101":"06842","762102":"06842","762103":"06842","762104":"06842","762105":"06842","762106":"06842","762107":"06842","762109":"06842","762110":"06842","762112":"06842","763001":"06852","763002":"06852","763003":"06852","763004":"06852","763008":"06852","764001":"06852","764002":"06858","764003":"06852","764004":"06852","764005":"06852","764006":"06852","764011":"06852","764014":"06852","764020":"06852","764021":"06852","764027":"06852","764028":"06852","764036":"06852","764037":"06852","764038":"06852","764039":"06852","764040":"06852","764041":"06852","764042":"06852","764043":"06852","764044":"06861","764045":"06861","764046":"06861","764047":"06861","764048":"06861","764049":"06858","764051":"06861","764052":"06861","764055":"06852","764056":"06852","764057":"06852","764058":"06852","764059":"06858","764061":"06858","764062":"06856","764063":"06858","764070":"06858","764071":"06858","764072":"06858","764073":"06858","764074":"06858","764075":"06858","764076":"06858","764077":"06858","764078":"06858","764081":"06852","764085":"06858","764086":"06861","764087":"06861","764088":"06858","765001":"06856","765002":"06856","765013":"06852","765015":"06856","765016":"06856","765017":"06856","765018":"06856","765019":"06856","765020":"06856","765021":"06856","765022":"06856","765023":"06856","765024":"06856","765025":"06856","765026":"06856","765029":"06856","765033":"06856","765034":"06856","766001":"06670","766002":"06670","766003":"06670","766011":"06670","766012":"06670","766013":"06670","766014":"06670","766015":"06670","766016":"06670","766017":"06670","766018":"06670","766019":"06670","766020":"06670","766023":"06670","766026":"06670","766027":"06670","766028":"06670","766029":"06670","766031":"06670","766032":"06670","766036":"06670","766037":"06670","766100":"06670","766101":"06670","766102":"06670","766103":"06670","766104":"06678","766105":"06678","766106":"06678","766107":"06678","766108":"06678","766110":"06670","766111":"06678","766118":"06678","767001":"06652","767002":"06652","767016":"06158","767017":"06158","767018":"06158","767019":"06158","767020":"06158","767021":"06652","767022":"06652","767023":"06158","767024":"06652","767025":"06652","767026":"06652","767027":"06652","767028":"06652","767029":"06652","767030":"06652","767032":"06652","767033":"06652","767035":"06652","767037":"06652","767038":"06652","767039":"06652","767040":"06752","767041":"06652","767042":"06652","767045":"06158","767046":"06652","767048":"06652","767060":"06652","767061":"06652","767062":"06158","767065":"06652","767066":"06652","767067":"06652","767068":"06158","767070":"06652","767071":"06652","768001":"0663","768002":"0663","768003":"0663","768004":"0663","768005":"0663","768006":"0663","768016":"0663","768017":"0663","768018":"0663","768019":"0663","768020":"0663","768025":"0663","768027":"06646","768028":"06646","768029":"06646","768030":"06646","768031":"06646","768032":"06646","768033":"06646","768034":"06646","768035":"06646","768036":"06646","768037":"06646","768038":"06646","768039":"06646","768040":"06646","768042":"06646","768045":"06646","768048":"06646","768049":"06646","768050":"06646","768052":"06646","768053":"06646","768102":"06646","768103":"06646","768104":"06646","768105":"0663","768106":"0663","768107":"0663","768108":"02904","768109":"0663","768110":"02904","768111":"06646","768112":"0663","768113":"0663","768115":"06646","768118":"0663","768119":"02904","768121":"02904","768200":"0663","768201":"06645","768202":"06645","768203":"06645","768204":"06645","768210":"0663","768211":"06645","768212":"0663","768213":"06645","768214":"0663","768215":"06645","768216":"06645","768217":"06645","768218":"06645","768219":"06645","768220":"06645","768221":"0663","768222":"0663","768224":"0663","768225":"06645","768226":"06645","768227":"0663","768228":"06622","768233":"06645","768234":"06645","769001":"06622","769002":"06622","769003":"06622","769004":"06622","769005":"06622","769006":"06622","769007":"06622","769008":"06622","769009":"06622","769010":"06622","769011":"06622","769012":"06622","769013":"06622","769014":"06622","769015":"06622","769016":"06622","769042":"06622","769043":"06622","770001":"06622","770002":"06622","770011":"06622","770012":"06622","770013":"06622","770014":"06622","770015":"06622","770016":"06622","770017":"06622","770018":"06622","770019":"06622","770020":"06622","770021":"06622","770022":"06622","770023":"06622","770024":"06622","770025":"06622","770031":"06622","770032":"06622","770033":"06622","770034":"06622","770035":"06622","770036":"06622","770037":"06622","770038":"06622","770039":"06622","770040":"06622","770041":"06622","770042":"06622","770043":"06622","770044":"06622","770046":"06622","770048":"06622","770051":"06622","770052":"06622","770070":"06622","770072":"06622","770073":"06622","770074":"06622","770075":"06622","770076":"06622","781001":"0361","781002":"0361","781003":"0361","781004":"0361","781005":"0361","781006":"0361","781007":"0361","781008":"0361","781009":"0361","781010":"0361","781011":"0361","781012":"0361","781013":"0361","781014":"0361","781015":"0361","781016":"0361","781017":"0361","781018":"0361","781019":"0361","781020":"0361","781021":"0361","781022":"0361","781023":"0361","781024":"0361","781025":"0361","781026":"0361","781027":"0361","781028":"0361","781029":"03622","781030":"0361","781031":"0361","781032":"0361","781034":"0361","781035":"0361","781036":"0361","781037":"0361","781038":"0361","781039":"0361","781040":"0361","781101":"0361","781102":"0361","781103":"0361","781104":"0361","781120":"0361","781121":"0361","781122":"0361","781123":"0361","781124":"0361","781125":"0361","781126":"03624","781127":"0361","781128":"0361","781129":"0361","781131":"03622","781132":"0361","781133":"0361","781134":"0361","781135":"0361","781136":"0361","781137":"0361","781138":"03624","781141":"0361","781150":"0361","781171":"0361","781301":"03666","781302":"03666","781303":"03624","781304":"03624","781305":"03666","781306":"03624","781307":"03666","781308":"03666","781309":"03666","781310":"03624","781311":"03666","781312":"03624","781313":"03666","781314":"03666","781315":"03666","781316":"03666","781317":"03666","781318":"03666","781319":"03666","781320":"03623","781321":"03666","781325":"03666","781326":"03666","781327":"03624","781328":"03666","781329":"03666","781330":"03624","781333":"03624","781334":"03624","781335":"03624","781337":"03624","781338":"03624","781339":"03624","781340":"03624","781341":"03624","781343":"03624","781344":"03624","781346":"03624","781347":"03624","781348":"03624","781349":"03624","781350":"03624","781351":"03624","781352":"03666","781353":"03624","781354":"0361","781355":"03624","781360":"03624","781364":"03624","781365":"0361","781366":"03624","781367":"03624","781368":"03624","781369":"03624","781370":"03624","781371":"03624","781372":"03624","781373":"03624","781374":"03624","781375":"03666","781376":"0361","781377":"03624","781378":"03624","781380":"0361","781381":"0361","781382":"0361","782001":"03672","782002":"03672","782003":"03672","782101":"03672","782102":"03672","782103":"03672","782104":"03670","782105":"03670","782106":"03672","782120":"03672","782121":"03670","782122":"03672","782123":"03672","782124":"03672","782125":"03672","782126":"03672","782127":"03670","782128":"03672","782135":"03672","782136":"03672","782137":"03672","782138":"03672","782139":"03672","782140":"03672","782141":"03672","782142":"03672","782143":"03672","782144":"03672","782401":"0361","782402":"0361","782403":"0361","782410":"03622","782411":"03670","782412":"03670","782413":"03675","782425":"03672","782426":"03672","782427":"03672","782428":"03674","782429":"03674","782435":"03675","782439":"03674","782440":"03674","782441":"03675","782442":"03674","782445":"03674","782446":"03674","782447":"03675","782448":"03675","782450":"03675","782460":"03675","782461":"03675","782462":"03675","782470":"03675","782480":"03675","782481":"03675","782482":"03675","782485":"03675","782486":"03675","782490":"03675","783101":"03663","783120":"03663","783122":"03663","783123":"03663","783124":"03663","783125":"03663","783126":"03663","783127":"03662","783128":"03662","783129":"03663","783130":"03663","783131":"03662","783132":"03663","783133":"03663","783134":"03663","783135":"03662","783301":"03662","783323":"03662","783324":"03662","783325":"03662","783330":"03662","783331":"03661","783332":"03661","783333":"03661","783334":"03662","783335":"03662","783336":"03661","783337":"03662","783339":"03662","783345":"03661","783346":"03661","783347":"03661","783348":"03662","783349":"03661","783350":"03661","783354":"03661","783360":"03661","783361":"03661","783369":"03661","783370":"03661","783371":"03662","783372":"03664","783373":"03661","783375":"03664","783376":"03661","783380":"03664","783381":"03664","783382":"03664","783383":"03664","783384":"03664","783385":"03664","783388":"03664","783389":"03664","783390":"03664","783391":"03664","783392":"03664","783393":"03664","783394":"03664","784001":"03712","784010":"03712","784025":"03712","784026":"03712","784027":"03712","784028":"03712","784101":"03712","784102":"03712","784103":"03712","784104":"03712","784105":"03712","784110":"03712","784111":"03712","784112":"03712","784113":"03711","784114":"03711","784115":"03713","784116":"03713","784117":"03712","784125":"03713","784144":"03713","784145":"03713","784146":"03713","784147":"03713","784148":"03713","784149":"03712","784150":"03712","784153":"03712","784154":"03712","784160":"05872","784161":"05872","784163":"05872","784164":"05872","784165":"05872","784166":"03715","784167":"03715","784168":"03715","784169":"03715","784170":"03715","784171":"03715","784172":"03715","784173":"03715","784174":"03715","784175":"03715","784176":"03715","784177":"03715","784178":"03715","784179":"03715","784180":"03712","784182":"03712","784184":"03715","784189":"03715","784190":"03711","784501":"03712","784502":"03712","784504":"03712","784505":"03712","784506":"03712","784507":"03711","784508":"03711","784509":"03711","784510":"03711","784513":"03711","784514":"03711","784521":"03711","784522":"03711","784523":"03711","784524":"03711","784525":"03711","784526":"03711","784527":"03711","784528":"03711","784529":"03713","785001":"0376","785004":"0376","785006":"0376","785007":"0376","785008":"0376","785009":"0376","785010":"0376","785013":"0376","785014":"0376","785015":"0376","785101":"0376","785102":"03775","785104":"03775","785105":"03775","785106":"03775","785107":"0376","785108":"0376","785110":"03775","785111":"0376","785112":"0376","785601":"03774","785602":"03774","785603":"03774","785609":"03774","785610":"03774","785611":"03774","785612":"03774","785613":"03774","785614":"03775","785615":"03774","785616":"0376","785618":"03774","785619":"03774","785621":"03774","785622":"03774","785625":"03774","785626":"03774","785630":"0376","785631":"0376","785632":"0376","785633":"0376","785634":"0376","785635":"0376","785636":"0376","785640":"03772","785661":"03772","785662":"03772","785663":"03772","785664":"03772","785665":"03772","785666":"03772","785667":"03772","785669":"03772","785670":"03842","785671":"03772","785672":"03772","785673":"03842","785674":"03772","785675":"0373","785676":"0373","785680":"03772","785681":"03772","785682":"03772","785683":"03772","785684":"03772","785685":"03772","785686":"03772","785687":"03772","785688":"03842","785689":"03842","785690":"03842","785691":"03842","785692":"03842","785693":"03842","785696":"03772","785697":"03772","785698":"03842","785699":"03774","785700":"0376","785701":"03772","785702":"03774","785703":"0376","785704":"0376","785705":"03774","786001":"0373","786002":"0373","786003":"0373","786004":"0373","786005":"0373","786006":"0373","786007":"0373","786008":"0373","786010":"0373","786012":"0373","786101":"0373","786102":"0373","786103":"0373","786125":"0374","786126":"0374","786145":"0374","786146":"0374","786147":"0374","786148":"0374","786150":"0374","786151":"0374","786152":"0374","786153":"0374","786154":"0374","786155":"0374","786156":"0374","786157":"0374","786158":"0374","786159":"0374","786160":"0374","786170":"0374","786171":"0374","786173":"0374","786174":"0374","786179":"0374","786181":"0374","786182":"0374","786183":"0374","786184":"0373","786187":"0374","786188":"0374","786189":"0374","786190":"0374","786191":"0373","786192":"0374","786601":"0374","786602":"0373","786610":"0373","786611":"0373","786612":"0373","786613":"0373","786614":"0373","786621":"0373","786622":"0373","786623":"0373","786692":"0373","787001":"05872","787023":"05872","787026":"03753","787031":"05872","787032":"05872","787033":"05872","787034":"03753","787035":"03753","787051":"05872","787052":"03775","787053":"05872","787054":"05872","787055":"05872","787056":"05872","787057":"03753","787058":"05872","787059":"03753","787060":"03753","787061":"03753","787110":"03753","788001":"03842","788002":"03842","788003":"03842","788004":"03842","788005":"03842","788006":"03842","788007":"03842","788009":"03842","788010":"03842","788011":"03842","788013":"03842","788014":"03842","788015":"03842","788025":"03842","788026":"03842","788030":"03842","788031":"03842","788098":"03842","788099":"03842","788101":"03842","788102":"03842","788103":"03842","788104":"03842","788106":"03842","788107":"03673","788108":"03673","788109":"03842","788110":"03842","788111":"03842","788112":"03842","788113":"03842","788114":"03842","788115":"03842","788116":"03842","788117":"03842","788118":"03842","788119":"03842","788120":"03842","788121":"03842","788123":"03842","788126":"03842","788127":"03842","788150":"03844","788151":"03844","788152":"03843","788155":"03844","788156":"03843","788160":"03844","788161":"03844","788162":"03844","788163":"03844","788164":"03844","788165":"03844","788166":"03843","788168":"03844","788701":"03843","788709":"03843","788710":"03843","788711":"03843","788712":"03843","788713":"03843","788719":"03843","788720":"03843","788722":"03843","788723":"03843","788724":"03843","788725":"03843","788726":"03843","788727":"03843","788728":"03843","788733":"03843","788734":"03843","788735":"03843","788736":"03843","788737":"03843","788738":"03844","788781":"03843","788801":"03844","788802":"03844","788803":"03843","788804":"03842","788805":"03842","788806":"03843","788815":"03842","788816":"03842","788817":"03842","788818":"03673","788819":"03673","788820":"03673","788830":"03673","788831":"03673","788832":"03673","788931":"03673","790001":"03782","790002":"03782","790003":"03782","790101":"03780","790102":"03778","790103":"03778","790104":"03794","790105":"03794","790106":"03794","790114":"03782","790116":"03780","791001":"03783","791002":"03777","791003":"03796","791101":"03783","791102":"0360","791103":"03777","791104":"0368","791105":"03777","791109":"0360","791110":"0360","791111":"0360","791112":"0360","791113":"0360","791114":"0360","791118":"03788","791119":"0360","791120":"03788","791121":"0360","791122":"03792","791123":"0360","791125":"0360","792001":"03806","792055":"03808","792056":"03808","792101":"03803","792102":"03806","792103":"03806","792104":"03804","792105":"03806","792110":"03803","792111":"03806","792120":"03808","792121":"03808","792122":"03808","792123":"03808","792129":"03786","792130":"03786","792131":"03786","793001":"0364","793002":"0364","793003":"0364","793004":"0364","793005":"0364","793006":"0364","793007":"0364","793008":"0364","793009":"0364","793010":"0364","793011":"0364","793012":"0364","793014":"0364","793015":"0364","793016":"0364","793017":"0364","793018":"0364","793019":"0364","793021":"0364","793022":"0364","793101":"03622","793102":"03622","793103":"03622","793104":"03622","793105":"03622","793106":"03655","793107":"0364","793108":"0364","793109":"03651","793110":"0364","793111":"0364","793112":"0364","793113":"0364","793114":"03655","793115":"0364","793116":"03622","793119":"03656","793120":"03656","793121":"0364","793122":"03622","793123":"03622","793126":"03656","793150":"03651","793151":"03651","793160":"03651","793161":"03651","793200":"03651","793210":"03651","794001":"03651","794002":"03651","794003":"03651","794005":"03651","794101":"03651","794102":"03651","794103":"03651","794104":"03651","794105":"03651","794106":"03651","794107":"03651","794108":"03651","794109":"03651","794110":"03651","794111":"03651","794112":"03651","794114":"03651","794115":"03651","795001":"0385","795002":"03880","795003":"0385","795004":"0385","795005":"0385","795006":"03878","795007":"03878","795008":"0385","795009":"0385","795010":"03880","795011":"03874","795101":"03848","795102":"03872","795103":"03848","795104":"03878","795105":"03878","795106":"03878","795107":"03880","795112":"03880","795113":"03880","795114":"03880","795115":"03877","795116":"03874","795117":"03874","795118":"03880","795122":"03880","795124":"03874","795125":"03877","795126":"0377","795127":"03872","795128":"03874","795129":"03880","795130":"03848","795131":"03872","795132":"03848","795133":"03874","795134":"03880","795135":"03872","795136":"03880","795138":"03848","795139":"03874","795140":"0385","795141":"03877","795142":"03845","795144":"03845","795145":"03845","795146":"03877","795147":"0377","795148":"03848","795149":"03848","795150":"03878","795159":"0377","796001":"0389","796004":"0389","796005":"0389","796007":"0389","796008":"0389","796009":"0389","796012":"0389","796014":"0389","796015":"03837","796017":"0389","796036":"0389","796070":"03837","796075":"03837","796081":"0389","796091":"03837","796101":"03837","796111":"0389","796161":"03838","796181":"03838","796184":"03838","796186":"03838","796190":"0389","796230":"0389","796261":"03838","796290":"0389","796310":"03838","796320":"03831","796321":"03831","796370":"03838","796410":"0389","796421":"0389","796431":"0389","796441":"0389","796470":"0389","796471":"0389","796501":"0389","796571":"0372","796581":"0372","796691":"0372","796701":"0372","796710":"0372","796751":"0372","796770":"0372","796772":"03835","796810":"03835","796891":"03835","796901":"03835","797001":"0370","797002":"03870","797003":"0370","797004":"0370","797006":"0370","797099":"03860","797101":"03870","797103":"03870","797104":"03867","797105":"03867","797106":"03870","797107":"03865","797108":"03865","797109":"03867","797110":"03870","797111":"03860","797112":"03860","797113":"03862","797114":"03865","797115":"03862","797116":"03862","797117":"03862","797118":"03862","797120":"0370","797121":"0370","798601":"03867","798602":"03869","798603":"03869","798604":"0369","798607":"0369","798611":"03863","798612":"03861","798613":"0369","798614":"0369","798615":"0369","798616":"03861","798618":"0369","798620":"03867","798621":"03869","798622":"03869","798623":"0369","798625":"03869","798627":"03867","799001":"0381","799002":"0381","799003":"0381","799004":"0381","799005":"0381","799006":"0381","799007":"0381","799008":"0381","799009":"0381","799010":"0381","799011":"0381","799012":"0381","799013":"03821","799014":"0381","799015":"0381","799022":"0381","799035":"0381","799045":"0381","799046":"0381","799101":"03821","799102":"0381","799103":"0381","799104":"03821","799105":"0381","799113":"03821","799114":"03821","799115":"0381","799120":"03821","799125":"03823","799130":"0381","799131":"0381","799132":"0381","799141":"03823","799142":"03823","799143":"03823","799144":"03823","799145":"03823","799150":"03823","799153":"03823","799155":"03823","799156":"03823","799157":"03823","799201":"03825","799202":"03825","799203":"03825","799204":"03826","799205":"03825","799207":"03825","799210":"0381","799211":"0381","799212":"0381","799250":"03822","799251":"03822","799253":"03822","799254":"03822","799256":"03822","799260":"03822","799261":"03822","799262":"03822","799263":"03824","799264":"03824","799266":"03826","799269":"03822","799270":"03824","799271":"03822","799273":"03826","799275":"03826","799277":"03824","799278":"03826","799279":"03824","799280":"03824","799281":"03824","799282":"03824","799284":"03826","799285":"03826","799286":"03826","799287":"03826","799288":"03824","799289":"03826","799290":"03824","800001":"0612","800002":"0612","800003":"0612","800004":"0612","800005":"0612","800006":"0612","800007":"0612","800008":"0612","800009":"0612","800010":"0612","800011":"0612","800012":"0612","800013":"0612","800014":"0612","800015":"0612","800016":"0612","800017":"0612","800018":"0612","800019":"0612","800020":"0612","800021":"0612","800022":"0612","800023":"0612","800024":"0612","800025":"0612","800026":"0612","800027":"0612","800028":"0612","800030":"0612","801102":"0612","801103":"0612","801104":"0612","801105":"0612","801106":"0612","801108":"0612","801109":"0612","801110":"0612","801111":"0612","801112":"0612","801113":"0612","801301":"06112","801302":"06324","801303":"06112","801304":"0612","801305":"0612","801306":"06112","801307":"06112","801503":"0612","801505":"0612","801506":"0612","801507":"0612","802101":"06183","802102":"06183","802103":"06183","802111":"06183","802112":"06183","802113":"06183","802114":"06183","802115":"06183","802116":"06183","802117":"06183","802118":"06183","802119":"06183","802120":"06183","802122":"06183","802123":"06183","802125":"06183","802126":"06183","802127":"06183","802128":"06183","802129":"06183","802130":"06183","802131":"06183","802132":"06189","802133":"06183","802134":"06183","802135":"06183","802136":"06183","802152":"06182","802154":"06182","802155":"06182","802156":"06182","802157":"06182","802158":"06182","802159":"06182","802160":"0612","802161":"06182","802162":"06182","802163":"06182","802164":"06182","802165":"06182","802166":"06182","802183":"06182","802201":"06182","802202":"06182","802203":"06182","802204":"06188","802205":"06188","802206":"06182","802207":"06182","802208":"06182","802209":"06182","802210":"06182","802211":"06188","802212":"06188","802213":"06188","802214":"06188","802215":"06188","802216":"06188","802217":"06188","802218":"06188","802219":"06188","802220":"06188","802221":"06188","802222":"06182","802223":"06182","802226":"06188","802301":"06182","802302":"06182","802311":"06182","802312":"06182","802313":"06182","802314":"06182","802316":"06182","802351":"06182","802352":"06182","803101":"06112","803107":"06112","803108":"06112","803109":"06112","803110":"0612","803111":"06112","803113":"06112","803114":"06112","803115":"06112","803116":"06112","803117":"06112","803118":"06112","803119":"06112","803120":"06112","803121":"06112","803201":"0612","803202":"0612","803203":"0612","803211":"0612","803212":"0612","803213":"0612","803214":"0612","803215":"0612","803216":"06112","803221":"0612","803301":"0612","803302":"0612","803303":"0612","803306":"0612","803307":"0612","804401":"0612","804402":"06337","804403":"06114","804404":"0631","804405":"06114","804406":"06114","804407":"06114","804408":"06114","804417":"06114","804418":"06114","804419":"06337","804420":"06114","804421":"06114","804422":"06114","804423":"06114","804424":"06114","804425":"06114","804426":"06337","804427":"06114","804428":"06337","804429":"06114","804432":"06114","804435":"0631","804451":"0612","804452":"0612","804453":"0612","804454":"0612","805101":"06324","805102":"06324","805103":"06324","805104":"06324","805105":"06112","805106":"06324","805107":"06324","805108":"06324","805109":"06324","805110":"06324","805111":"06324","805112":"06324","805113":"06324","805114":"06324","805121":"06324","805122":"06324","805123":"06324","805124":"06324","805125":"06324","805126":"06324","805127":"06324","805128":"0631","805129":"06324","805130":"06324","805131":"0631","805132":"06324","811101":"06341","811102":"06341","811103":"06341","811104":"0612","811105":"06341","811106":"06346","811107":"06341","811112":"06346","811201":"06344","811202":"06344","811211":"06344","811212":"06344","811213":"06344","811214":"06344","811301":"06345","811302":"06346","811303":"06345","811304":"06341","811305":"06345","811307":"06345","811308":"06345","811309":"06346","811310":"06346","811311":"06346","811312":"06345","811313":"06345","811314":"06345","811315":"06341","811316":"06345","811317":"06345","812001":"0641","812002":"0641","812003":"0641","812004":"0641","812005":"0641","812006":"0641","812007":"0641","813101":"0641","813102":"06473","813103":"06424","813104":"06424","813105":"0641","813106":"06424","813107":"06424","813108":"0641","813109":"06424","813110":"06424","813201":"06344","813202":"06424","813203":"0641","813204":"0641","813205":"0641","813206":"06422","813207":"06424","813208":"06436","813209":"06452","813210":"0641","813211":"06424","813212":"06344","813213":"06344","813214":"0641","813221":"06344","813222":"0641","814101":"06434","814102":"06434","814103":"06434","814110":"06434","814111":"06435","814112":"06432","814113":"06432","814114":"06432","814115":"06432","814116":"06432","814118":"06434","814119":"06434","814120":"06434","814131":"06424","814133":"06422","814141":"06434","814142":"06432","814143":"06432","814144":"06434","814145":"06434","814146":"06434","814147":"06422","814148":"06434","814149":"06432","814150":"06432","814151":"06434","814152":"06432","814153":"06422","814154":"06422","814155":"06422","814156":"06422","814157":"06432","814158":"06434","814160":"06422","814165":"06422","814166":"06433","814167":"06434","815301":"06532","815302":"06532","815311":"06532","815312":"06532","815313":"06532","815314":"06532","815315":"06532","815316":"06532","815317":"06532","815318":"06532","815351":"06433","815352":"06433","815353":"06432","815354":"06433","815355":"06433","815357":"06432","815359":"06433","816101":"06436","816102":"06436","816103":"06435","816104":"06436","816105":"06436","816106":"06435","816107":"06435","816108":"06436","816109":"06436","816110":"06436","816115":"06436","816116":"06436","816117":"06435","816118":"06434","816120":"06436","816129":"06436","821101":"06189","821102":"06189","821103":"06189","821104":"06188","821105":"06189","821106":"06189","821107":"06188","821108":"06189","821109":"06189","821110":"06189","821111":"06188","821112":"06188","821113":"06188","821115":"06188","821301":"06188","821302":"06188","821303":"06188","821304":"06188","821305":"06188","821306":"06188","821307":"06188","821308":"06188","821309":"06188","821310":"06188","821311":"06188","821312":"06188","822101":"06562","822102":"06562","822110":"06562","822111":"06565","822112":"06565","822113":"06562","822114":"06561","822115":"06562","822116":"06562","822117":"06562","822118":"06562","822119":"06565","822120":"06562","822121":"06561","822122":"06562","822123":"06562","822124":"06562","822125":"06561","822126":"06562","822128":"06561","822129":"06561","822131":"06562","822132":"06562","822133":"06562","822134":"06561","823001":"0631","823002":"0631","823003":"0631","823004":"0631","823005":"0631","823311":"0631","824101":"0240","824102":"0240","824103":"0240","824111":"0240","824112":"0240","824113":"0240","824114":"0240","824115":"0240","824116":"0631","824118":"0631","824120":"0240","824121":"0240","824122":"0240","824123":"0240","824124":"0240","824125":"0240","824127":"0240","824129":"0240","824143":"0240","824201":"0631","824202":"0240","824203":"0240","824205":"0631","824206":"0631","824207":"0631","824208":"0240","824209":"0631","824210":"0631","824211":"0631","824217":"0631","824219":"0631","824220":"0631","824221":"0631","824231":"0631","824232":"0631","824233":"06114","824234":"0631","824235":"0631","824236":"0631","824237":"0631","824301":"0240","824302":"0240","824303":"0240","824304":"0240","825101":"06553","825102":"06542","825103":"06541","825106":"06532","825108":"06532","825109":"06534","825132":"06534","825167":"06532","825301":"06546","825302":"06546","825303":"06546","825311":"06546","825312":"06546","825313":"06546","825314":"06553","825315":"06546","825316":"06553","825317":"06546","825318":"06534","825319":"06546","825320":"06532","825321":"06541","825322":"06546","825323":"06546","825324":"06532","825325":"06553","825326":"06553","825329":"06532","825330":"06553","825336":"06546","825401":"06541","825402":"06546","825403":"06541","825404":"06541","825405":"06546","825406":"06546","825407":"06534","825408":"06541","825409":"06534","825410":"06534","825411":"06553","825412":"06532","825413":"06534","825414":"06541","825415":"06541","825418":"06534","825421":"06534","826001":"0326","826003":"0326","826004":"0326","826005":"0326","826006":"0326","826007":"0326","826008":"0326","826009":"0326","826010":"0326","826011":"0326","827001":"06542","827003":"06542","827004":"06542","827006":"06542","827009":"06542","827010":"06542","827012":"06542","827013":"06542","827014":"06542","827015":"06542","827016":"06542","827302":"06542","828101":"0326","828103":"0326","828104":"0326","828105":"0326","828106":"0326","828107":"0326","828108":"0326","828109":"0326","828110":"0326","828111":"0326","828112":"0326","828113":"0326","828114":"0326","828115":"0326","828116":"0326","828117":"0326","828119":"0326","828120":"0326","828121":"0326","828122":"0326","828123":"0326","828124":"0326","828125":"0326","828126":"0326","828127":"0326","828128":"0326","828129":"0326","828130":"0326","828131":"0326","828132":"0326","828133":"0326","828134":"06542","828135":"0326","828142":"0326","828201":"0326","828202":"0326","828203":"0326","828204":"0326","828205":"0326","828206":"0326","828207":"0326","828301":"0326","828302":"0326","828303":"06542","828304":"0326","828305":"0326","828306":"0326","828307":"0326","828309":"0326","828401":"0326","828402":"0326","828403":"06542","828404":"06542","829101":"06553","829102":"06553","829103":"06553","829104":"06542","829105":"06553","829106":"06553","829107":"06542","829108":"06553","829109":"06553","829110":"06553","829111":"06542","829112":"06542","829113":"06542","829114":"06542","829116":"06542","829117":"06553","829118":"06553","829119":"06553","829121":"06542","829122":"06553","829123":"06542","829125":"06553","829126":"06553","829127":"06542","829128":"06542","829129":"06553","829130":"06553","829131":"06553","829132":"06542","829133":"06553","829134":"06553","829135":"06553","829143":"06553","829144":"06542","829149":"06542","829150":"06553","829201":"06541","829202":"06565","829203":"06565","829204":"06565","829205":"0651","829206":"06565","829207":"06565","829208":"0651","829209":"0651","829210":"0651","829301":"06542","831001":"0657","831002":"06597","831003":"0657","831004":"0657","831005":"0657","831006":"0657","831007":"0657","831009":"0657","831011":"0657","831012":"06597","831013":"06597","831014":"06597","831015":"0657","831016":"0657","831017":"0657","831019":"0657","831020":"0657","831021":"0657","832101":"0657","832102":"0657","832103":"0657","832104":"0657","832105":"0657","832106":"0657","832107":"06597","832108":"06597","832109":"06597","832111":"0657","832112":"0657","832113":"0657","832301":"0657","832302":"06582","832303":"0657","832304":"0657","832401":"06597","832402":"06597","832403":"06597","832404":"06597","833101":"06597","833102":"06582","833103":"06582","833104":"06582","833105":"06582","833106":"06582","833201":"06582","833202":"06582","833203":"06582","833204":"06582","833212":"06582","833213":"06582","833214":"06582","833215":"06582","833216":"06597","833217":"06582","833218":"06582","833219":"06597","833220":"06597","833221":"06582","833222":"06582","833223":"06582","834001":"0651","834002":"0651","834003":"0651","834004":"0651","834005":"0651","834006":"0651","834007":"0651","834008":"0651","834009":"0651","834010":"0651","834011":"0651","834012":"0651","834013":"0651","834014":"0651","835101":"0651","835102":"0651","835103":"0651","835201":"06525","835202":"0651","835203":"0651","835204":"0651","835205":"0651","835206":"06524","835207":"06524","835208":"06524","835209":"06528","835210":"06528","835211":"06525","835212":"06525","835213":"0651","835214":"0651","835215":"0651","835216":"06582","835217":"0651","835218":"06565","835219":"0651","835220":"06524","835221":"0651","835222":"0651","835223":"06525","835224":"06524","835225":"0651","835226":"06525","835227":"06582","835228":"06525","835229":"06524","835230":"06524","835231":"06526","835232":"06524","835233":"06524","835234":"0651","835235":"06525","835301":"0651","835302":"06526","835303":"0651","835325":"0651","841101":"06152","841201":"06152","841202":"06152","841203":"06154","841204":"06152","841205":"06152","841206":"06152","841207":"06152","841208":"06152","841209":"06152","841210":"06154","841211":"06152","841212":"06152","841213":"06152","841214":"06152","841215":"06152","841216":"06152","841217":"06152","841218":"06152","841219":"06152","841220":"06152","841221":"06152","841222":"06152","841223":"06154","841224":"06152","841225":"06152","841226":"06154","841227":"06154","841231":"06154","841232":"06154","841233":"06154","841234":"06154","841235":"06154","841236":"06154","841237":"06154","841238":"06154","841239":"06154","841240":"06154","841241":"06154","841242":"06154","841243":"06154","841244":"06154","841245":"06154","841286":"06154","841287":"06154","841301":"06152","841302":"06152","841305":"06152","841311":"06152","841312":"06152","841313":"06152","841316":"06152","841401":"06152","841402":"06152","841403":"06152","841404":"06154","841405":"07695","841406":"06154","841407":"07695","841408":"06154","841409":"07695","841410":"06152","841411":"06152","841412":"06152","841413":"06154","841414":"06152","841415":"06152","841416":"06154","841417":"06154","841418":"06152","841419":"06152","841420":"07695","841421":"06152","841422":"06152","841423":"07695","841424":"06152","841425":"07695","841426":"07695","841427":"07695","841428":"07695","841434":"06154","841435":"06154","841436":"06154","841437":"07695","841438":"07695","841439":"06154","841440":"07695","841441":"07695","841442":"06152","841443":"06152","841446":"06154","841447":"06154","841460":"06152","841501":"07695","841502":"06154","841503":"07695","841504":"06154","841505":"07695","841506":"06154","841507":"06154","841508":"07695","841509":"06154","842001":"0621","842002":"0621","842003":"0621","842004":"0621","842005":"0621","842006":"0621","843101":"0621","843102":"0621","843103":"0621","843104":"06224","843105":"0621","843106":"0621","843107":"0621","843108":"0621","843109":"0621","843110":"06224","843111":"0621","843112":"0621","843113":"0621","843114":"06224","843115":"0621","843116":"06226","843117":"06226","843118":"0621","843119":"0621","843120":"0621","843121":"0621","843122":"0621","843123":"0621","843124":"0621","843125":"0621","843126":"0621","843127":"0621","843128":"06222","843129":"0621","843130":"0621","843131":"06222","843301":"06226","843302":"06226","843311":"06226","843312":"0621","843313":"06226","843314":"06226","843315":"06226","843316":"06226","843317":"06226","843318":"06226","843319":"06226","843320":"06226","843321":"0621","843322":"06226","843323":"06226","843324":"06226","843325":"06226","843326":"06226","843327":"06226","843328":"06226","843329":"06222","843330":"06226","843331":"06226","843332":"06226","843333":"06226","843334":"06222","843335":"06222","843360":"0621","844101":"06224","844102":"06224","844103":"06224","844111":"06224","844112":"06224","844113":"06224","844114":"06224","844115":"06224","844116":"06224","844117":"06224","844118":"06224","844119":"06224","844120":"0621","844121":"06224","844122":"06224","844123":"06224","844124":"06224","844125":"06224","844126":"06224","844127":"0621","844128":"06224","844501":"06224","844502":"06224","844503":"06224","844504":"06224","844505":"06224","844506":"06224","844507":"06224","844508":"06224","844509":"06224","845101":"06254","845103":"06254","845104":"06254","845105":"06254","845106":"06254","845107":"06254","845301":"06252","845302":"06252","845303":"06252","845304":"06252","845305":"06252","845306":"06254","845307":"06254","845315":"06252","845401":"06252","845406":"06252","845411":"06252","845412":"06252","845413":"06252","845414":"06252","845415":"06252","845416":"06252","845417":"06252","845418":"06252","845419":"06252","845420":"06252","845422":"06252","845423":"06252","845424":"06252","845425":"06252","845426":"06252","845427":"06252","845428":"06252","845429":"06252","845430":"06252","845431":"06252","845432":"06252","845433":"06252","845434":"06252","845435":"06252","845436":"06252","845437":"06252","845438":"06254","845440":"06252","845449":"06254","845450":"06254","845451":"06254","845452":"06254","845453":"06254","845454":"06254","845455":"06254","845456":"06252","845457":"06252","845458":"06252","845459":"06254","846001":"06272","846002":"06272","846003":"06272","846004":"06272","846005":"06272","846006":"06272","846007":"06272","846008":"06272","846009":"06272","847101":"06272","847102":"06276","847103":"06272","847104":"06272","847105":"06274","847106":"06272","847107":"06272","847108":"06276","847109":"06276","847115":"06272","847121":"06272","847122":"06276","847123":"0621","847201":"06272","847202":"06272","847203":"06272","847204":"06272","847211":"06276","847212":"06276","847213":"06276","847214":"06276","847215":"06276","847222":"06276","847223":"06276","847224":"06276","847225":"06276","847226":"06276","847227":"06276","847228":"06276","847229":"06276","847230":"06276","847231":"06276","847232":"06276","847233":"06272","847234":"06276","847235":"06276","847236":"06276","847238":"06276","847239":"06276","847240":"06276","847301":"06274","847302":"06226","847303":"06272","847304":"06276","847305":"06276","847306":"06276","847307":"06226","847308":"06276","847337":"06276","847401":"06276","847402":"06276","847403":"06276","847404":"06276","847405":"06272","847407":"06276","847408":"06276","847409":"06276","847410":"06276","847411":"06276","847421":"06276","847422":"06272","847423":"06272","847424":"06276","847427":"06272","847428":"06272","847429":"06272","847451":"06473","847452":"06473","848101":"06274","848102":"06274","848113":"06274","848114":"06274","848115":"06274","848117":"06274","848121":"06274","848122":"06274","848125":"06274","848127":"06274","848129":"06274","848130":"06274","848131":"06274","848132":"06274","848133":"06274","848134":"06274","848160":"06274","848201":"06244","848202":"06243","848203":"06244","848204":"06243","848205":"06274","848206":"06274","848207":"06274","848208":"06274","848209":"06274","848210":"06274","848211":"06274","848213":"06272","848216":"06274","848236":"06274","848301":"06274","848302":"06274","848501":"06274","848502":"06274","848503":"06274","848504":"06274","848505":"06274","848506":"06274","851101":"06243","851111":"06243","851112":"06243","851113":"06243","851114":"06243","851115":"06243","851116":"06243","851117":"06243","851118":"06243","851120":"06243","851126":"06243","851127":"06243","851128":"06243","851129":"06243","851130":"06243","851131":"06243","851132":"06243","851133":"06243","851134":"06243","851135":"06243","851201":"06244","851202":"06244","851203":"06244","851204":"06244","851205":"06244","851206":"06244","851210":"06243","851211":"06243","851212":"06244","851213":"06244","851214":"06244","851215":"06244","851216":"06244","851217":"06243","851218":"06243","852101":"06454","852105":"06473","852106":"06478","852107":"06478","852108":"06473","852109":"06473","852110":"06473","852111":"06473","852112":"06476","852113":"06476","852114":"06476","852115":"06476","852116":"06454","852121":"06476","852122":"06454","852123":"06478","852124":"06478","852125":"06473","852126":"06478","852127":"06478","852128":"06476","852129":"06478","852130":"06473","852131":"06473","852132":"06473","852133":"06473","852137":"06473","852138":"06473","852139":"06473","852161":"06244","852201":"06478","852202":"06478","852212":"06478","852213":"06476","852214":"06473","852215":"06473","852216":"06478","852217":"06478","852218":"06473","852219":"06476","852220":"06476","852221":"06478","853201":"0641","853202":"0641","853203":"0641","853204":"06454","853205":"0641","854101":"06452","854102":"06454","854103":"06452","854104":"06452","854105":"06452","854106":"06452","854107":"06452","854108":"06452","854109":"06452","854112":"06452","854113":"06452","854114":"06452","854115":"06452","854116":"06452","854117":"06452","854201":"06454","854202":"06454","854203":"06454","854204":"06454","854205":"06454","854301":"06454","854302":"06454","854303":"06454","854304":"06454","854305":"06454","854306":"06454","854311":"06453","854312":"06453","854315":"06454","854316":"06453","854317":"06452","854318":"06453","854325":"06454","854326":"06454","854327":"06454","854328":"06453","854329":"06453","854330":"06454","854331":"06453","854332":"06453","854333":"07456","854334":"06454","854335":"06453","854336":"06453","854337":"06454","854338":"06473","854339":"06473","854340":"06473","855101":"07456","855102":"06452","855105":"06452","855106":"07456","855107":"07456","855108":"07456","855113":"06452","855114":"06452","855115":"07456","855116":"07456","855117":"07456","900056":"05564","900099":"033","999999":"08462"} \ No newline at end of file diff --git a/utilities/logistics-b2b/log-verification-utility/utils/testSchemaValidation.js b/utilities/logistics-b2b/log-verification-utility/utils/testSchemaValidation.js new file mode 100644 index 0000000..a511025 --- /dev/null +++ b/utilities/logistics-b2b/log-verification-utility/utils/testSchemaValidation.js @@ -0,0 +1,5 @@ +const {validate_schema_master}= require("../schema/logistics_api_json_schema/SchemaValidator"); +const data = require("./test.json") + +const errors=validate_schema_master(data) +console.log(errors); \ No newline at end of file diff --git a/utilities/logistics-b2b/log-verification-utility/utils/utils.js b/utilities/logistics-b2b/log-verification-utility/utils/utils.js index 2ca83d8..55e29ab 100755 --- a/utilities/logistics-b2b/log-verification-utility/utils/utils.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/utils.js @@ -228,6 +228,37 @@ function compareDates(dateString1, dateString2) { } } +function iso8601DurationToSeconds(duration) { + const unitMap = { + 'D': 24 * 60 * 60 * 1000, // Days to seconds + 'H': 60 * 60 * 1000, // Hours to seconds + 'M': 60 * 1000, // Minutes to seconds + 'S': 1000 // Seconds + }; + + if (duration.startsWith("P")) { + duration = duration.slice(1); // Remove the 'P' at the beginning + } + + let totalSeconds = 0; + let currentNumber = ""; + for (const char of duration) { + if (!isNaN(char)) { + currentNumber += char; + } else if (char in unitMap) { + totalSeconds += parseInt(currentNumber) * unitMap[char]; + currentNumber = ""; + } + } + + return totalSeconds; +} + +// Example usages: +console.log(iso8601DurationToSeconds("P6D")); // 518400 seconds (6 days) +console.log(iso8601DurationToSeconds("PT30S")); // 30 seconds +console.log(iso8601DurationToSeconds("PT2H30M")); // 9000 seconds (2 hours 30 minutes) + const hasTwoOrLessDecimalPlaces = (inputString) => { const parts = inputString.split("."); @@ -346,6 +377,7 @@ module.exports = { categoriesMap, compareDates, hasTwoOrLessDecimalPlaces, + iso8601DurationToSeconds, timeDiff, getVersion, taxNotInlcusive, diff --git a/utilities/logistics-b2b/log-verification-utility/utils/validateLogUtil.js b/utilities/logistics-b2b/log-verification-utility/utils/validateLogUtil.js index d8b0b0e..c9b6d71 100755 --- a/utilities/logistics-b2b/log-verification-utility/utils/validateLogUtil.js +++ b/utilities/logistics-b2b/log-verification-utility/utils/validateLogUtil.js @@ -5,7 +5,6 @@ const path = require("path"); const { getObjValues } = require("./utils"); const { sortMerge } = require("./mergeSort"); const Validate = require("./schemaVal"); -//const flowVal = require("./retail/businessVal"); const clean = require("./clean"); const validateLogs = async (domain, dirPath, outputDestination = "") => {