{"info":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","description":"<html><head></head><body><h2 id=\"survey-automator-api\">Survey Automator API</h2>\n<p>Survey Automator is a survey platform developed by Research Automators. This API provides access to your survey projects and and can be used to automate survey workflows.</p>\n<h3 id=\"authentication\">Authentication</h3>\n<p>All requests are authenticated using a <strong>bearer token</strong>, sourced from the <code>ra-api-key</code> vault variable. The token is applied at the collection level and inherited by all requests.</p>\n<p>If you need an API-key for testing or production please contact <a href=\"https://mailto:helpdesk@researchautomators.com\">helpdesk@researchautomators.com</a></p>\n<h3 id=\"structure\">Structure</h3>\n<p>Requests are organized under the <strong>Projects</strong> folder and currently cover the following operations:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Request</th>\n<th>Method</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>List Projects</td>\n<td><code>GET</code></td>\n<td>Retrieve a list of all available projects</td>\n</tr>\n<tr>\n<td>Project by ID</td>\n<td><code>GET</code></td>\n<td>Fetch details of a specific project</td>\n</tr>\n<tr>\n<td>List Project Tasks</td>\n<td><code>GET</code></td>\n<td>Retrieve all tasks belonging to a project</td>\n</tr>\n<tr>\n<td>Project Task by ID</td>\n<td><code>GET</code></td>\n<td>Fetch details of a specific task within a project</td>\n</tr>\n<tr>\n<td>Add Project Task</td>\n<td><code>POST</code></td>\n<td>Create a new task under a survey project</td>\n</tr>\n<tr>\n<td>Download File</td>\n<td><code>GET</code></td>\n<td>Download a file generated by task</td>\n</tr>\n<tr>\n<td>Upload file</td>\n<td>POST</td>\n<td>Upload a file for using it in import task</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"variables\">Variables</h3>\n<p>The collection relies on the following environment variables:</p>\n<ul>\n<li><p><code>BaseURL</code> — the base API URL (<a href=\"https://app.researchautomators.com\">https://app.researchautomators.com</a> in production)</p>\n</li>\n<li><p><code>projectID</code> — the ID of the target project</p>\n</li>\n<li><p><code>taskID</code> — the ID of a specific task</p>\n</li>\n<li><p><code>fileName</code> — the full name of the file to download</p>\n</li>\n<li><p><code>fileName2</code> — the full name of the file to import where all backslashes are doubled</p>\n</li>\n<li><p><code>vault:ra-api-key</code> — secret API key stored in local vault</p>\n</li>\n</ul>\n<h3 id=\"flow-examples\">Flow examples</h3>\n<h4 id=\"retreiving-survey-response-data\">Retreiving survey response data</h4>\n<ol>\n<li><p>List Projects → find the ID of your target project</p>\n</li>\n<li><p>Add Project Task → Use actionType : ResponsesExport → Save task ID</p>\n</li>\n<li><p>Project Task By ID → Continously poll status using task ID → Get file name</p>\n</li>\n<li><p>Download file → When the file is done retreive it using file name</p>\n</li>\n</ol>\n<h4 id=\"refresh--sync-a-survey-project\">Refresh / sync a survey project</h4>\n<p>Synchronizing a projects gets the latest response updates in a survey project</p>\n<ol>\n<li><p>List Projects → find the ID of your target project</p>\n</li>\n<li><p>Add Project Task → Use actionType : Synchronize</p>\n</li>\n<li><p>Optional: Save task ID</p>\n</li>\n<li><p>Optional: Use task ID to poll for synchronize success (usually takes a few seconds)</p>\n</li>\n</ol>\n<h4 id=\"importing-survey-participants\">Importing survey participants</h4>\n<ol>\n<li><p>List Projects → find the ID of your target project</p>\n</li>\n<li><p>Add Project Task → Use actionType : ResponsesImport</p>\n</li>\n<li><p>Add participants below parameters → data</p>\n</li>\n</ol>\n<h4 id=\"importing-responses-from-uploaded-file\">Importing responses from uploaded file</h4>\n<ol>\n<li><p>List Projects → find the ID of your target project</p>\n</li>\n<li><p>Upload responses file</p>\n</li>\n<li><p>Add Project Task → Use actionType : ResponsesImport</p>\n</li>\n<li><p>Add reference to uploaded file below parameters → file</p>\n</li>\n</ol>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"17386769","collectionId":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","publishedId":"2sBXihqD2h","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"4737ff"},"publishDate":"2026-03-18T13:50:22.000Z"},"item":[{"name":"Step 1 - Find a project","item":[{"name":"List Projects","id":"10d72708-d920-4008-ad81-0f43c270c462","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects?startIndex=1&count=10","description":"<p>Retrieves a paginated list of all projects available in the system for the current user.</p>\n<p><strong>Method:</strong> GET<br /><strong>Endpoint:</strong> <code>https://app.researchautomators.com/Api/Projects</code></p>\n<p><strong>Query Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>startIndex</code></td>\n<td><code>1</code></td>\n<td>Optional. The index of the first record to return. Use this for pagination to offset the result set. Default value 1.</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td><code>10</code></td>\n<td>Optional. The number of projects to return per page. Default value is 100. Valid values 1 - 200.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Authentication:</strong> Inherits Bearer token from the collection. No additional auth configuration required on this request.</p>\n<p><strong>Request Body:</strong> None</p>\n<p>Use <code>startIndex</code> and <code>count</code> together to paginate through large result sets. For example, to retrieve the second page of 10 results, set <code>startIndex=11</code> and <code>count=10</code>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}},"urlObject":{"path":["Api","Projects"],"host":["https://app.researchautomators.com"],"query":[{"key":"startIndex","value":"1"},{"key":"count","value":"10"}],"variable":[]}},"response":[{"id":"1bcc097f-7443-4178-af6c-0f7e01c1bef9","name":"List Projects","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.researchautomators.com/Api/Projects?startIndex=1&count=10","host":["https://app.researchautomators.com"],"path":["Api","Projects"],"query":[{"key":"startIndex","value":"1"},{"key":"count","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Tue, 24 Mar 2026 13:30:18 GMT"},{"key":"content-length","value":"210"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"totalResults\": 1,\n    \"startIndex\": 1,\n    \"itemsPerPage\": 1,\n    \"Resources\": [\n        {\n            \"id\": \"12345\",\n            \"name\": \"Survey Automator API\",\n            \"meta\": {\n                \"resourceType\": \"Project\",\n                \"location\": \"https://app.researchautomators.com/Api/Projects/12345\"\n            }\n        }\n    ]\n}"}],"_postman_id":"10d72708-d920-4008-ad81-0f43c270c462"},{"name":"Project by ID","id":"b9e54a59-0f2d-437f-bb85-a3379d6b35f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}},"urlObject":{"path":["Api","Projects",""],"host":["https://app.researchautomators.com"],"query":[],"variable":[]}},"response":[{"id":"9346047f-ec36-424a-81de-6cce6a1721fb","name":"Project by ID","originalRequest":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects/"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Tue, 24 Mar 2026 13:31:25 GMT"},{"key":"content-length","value":"145"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"12345\",\n    \"name\": \"Survey Automator API\",\n    \"meta\": {\n        \"resourceType\": \"Project\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345\"\n    }\n}"}],"_postman_id":"b9e54a59-0f2d-437f-bb85-a3379d6b35f7"}],"id":"886dc3e0-15f0-4180-91e0-224dc3d52d11","description":"<p>Endpoints for retrieving project data. Use <strong>List Projects</strong> to get an overview of all available projects, or <strong>Project by ID</strong> to fetch the details of a specific project using its ID.</p>\n","_postman_id":"886dc3e0-15f0-4180-91e0-224dc3d52d11","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}}},{"name":"Step 2 - Create a task","item":[{"name":"Create Project Task","event":[{"listen":"test","script":{"id":"5b6b5e8c-1322-4bd0-91d8-cafc6dd57f07","exec":["var jsonData = JSON.parse(responseBody);\r","pm.environment.set(\"taskID\", jsonData.id);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4856fae6-ba18-41fe-80a4-2665b814d356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"actionType\": \"ResponsesExport\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://app.researchautomators.com/Api/Projects//Tasks","description":"<p>Project tasks are always queued and take some time before executed. Store your task ID and poll continously for task status.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property</strong></th>\n<th><strong>Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>actionType</code></td>\n<td><code>Synchronize</code>, <code>ResponsesExport</code> or <code>ResponsesImport</code></td>\n<td>Required</td>\n</tr>\n<tr>\n<td><code>parameters</code></td>\n<td>JSON object</td>\n<td>Optional. <code>actionType</code> specific parameters</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong><code>actionType</code>=<code>ResponsesExport</code> parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property</strong></th>\n<th><strong>Values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>exportFormat</code></td>\n<td><code>json</code>, <code>excel</code>, <code>text</code>, or <code>spss</code></td>\n<td>Optional. Default <code>spss</code></td>\n</tr>\n<tr>\n<td><code>responsesExportID</code></td>\n<td></td>\n<td>Optional.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}},"urlObject":{"path":["Api","Projects","","Tasks"],"host":["https://app.researchautomators.com"],"query":[],"variable":[]}},"response":[{"id":"be951317-7ecb-4a16-a576-e8c5bde58d05","name":"Synchronize","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"actionType\": \"Synchronize\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.researchautomators.com/Api/Projects//Tasks"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50001,\n    \"projectId\": 12345,\n    \"actionType\": \"Synchronize\",\n    \"enabled\": true,\n    \"state\": \"Queued\",\n    \"nextRunTime\": \"2026-01-15T10:30:00.0000000Z\",\n    \"lastRunTime\": null,\n    \"lastResult\": null,\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50001\"\n    }\n}"},{"id":"5747076b-ee68-4b52-a69c-672b194faea6","name":"Response Export","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"actionType\": \"ResponsesExport\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.researchautomators.com/Api/Projects//Tasks"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50002,\n    \"projectId\": 12345,\n    \"actionType\": \"ResponsesExport\",\n    \"enabled\": true,\n    \"state\": \"Queued\",\n    \"nextRunTime\": \"2026-03-24T15:07:46.4100000Z\",\n    \"lastRunTime\": null,\n    \"lastResult\": null,\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50002\"\n    }\n}"},{"id":"4b4c9eb8-1f26-4208-8ae0-39ea5497e095","name":"Response Export with ID","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"actionType\": \"ResponsesExport\",\r\n    \"parameters\": {\r\n        \"responsesExportID\": \"E18\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.researchautomators.com/Api/Projects//Tasks"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50003,\n    \"projectId\": 12345,\n    \"actionType\": \"ResponsesExport\",\n    \"enabled\": true,\n    \"state\": \"Queued\",\n    \"nextRunTime\": \"2026-03-24T15:17:20.2200000Z\",\n    \"lastRunTime\": null,\n    \"lastResult\": null,\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50003\"\n    }\n}"},{"id":"4d6410f2-b046-4454-9848-4cc2a6b253d0","name":"Participant Import JSON","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"actionType\": \"ResponsesImport\",\r\n  \"parameters\": {\r\n    \"data\": {\r\n      \"questions\": [\r\n        {\r\n          \"id\": \"External ID\",\r\n          \"type\": \"system\",\r\n          \"text\": \"External ID\"\r\n        },\r\n        {\r\n          \"id\": \"First name\",\r\n          \"type\": \"system\",\r\n          \"text\": \"First name\"\r\n        },\r\n        {\r\n          \"id\": \"Mobile phone\",\r\n          \"type\": \"system\",\r\n          \"text\": \"Mobilnummer\"\r\n        },\r\n        {\r\n          \"id\": \"Email\",\r\n          \"type\": \"system\",\r\n          \"text\": \"Email\"\r\n        },\r\n        {\r\n          \"id\": \"Date of birth\",\r\n          \"type\": \"category\",\r\n          \"text\": \"Date of birth\"\r\n        },\r\n        {\r\n          \"id\": \"Gender\",\r\n          \"type\": \"category\",\r\n          \"text\": \"Gender\",\r\n          \"answers\": [\r\n            {\r\n              \"id\": \"M\",\r\n              \"text\": \"Male\"\r\n            },\r\n            {\r\n              \"id\": \"F\",\r\n              \"text\": \"Female\"\r\n            },\r\n            {\r\n              \"id\": \"O\",\r\n              \"text\": \"Other\"\r\n            }\r\n          ]\r\n        }\r\n      ],\r\n      \"participants\": [\r\n        {\r\n          \"External ID\": \"E1\",\r\n          \"First name\": \"Adam\",\r\n          \"Mobile phone\": \"+46123456789\",\r\n          \"Email\": \"adam@eden.com\",\r\n          \"Date of birth\": \"4004-10-23 BC\",\r\n          \"Gender\": \"M\"\r\n        },\r\n        {\r\n          \"External ID\": \"E2\",\r\n          \"First name\": \"Eve\",\r\n          \"Mobile phone\": \"+46198765432\",\r\n          \"Email\": \"eve@eden.com\",\r\n          \"Date of birth\": \"4004-10-24 BC\",\r\n          \"Gender\": \"F\"\r\n        },\r\n        {\r\n          \"External ID\": \"E3\",\r\n          \"First name\": \"Snake\",\r\n          \"Mobile phone\": \"\",\r\n          \"Email\": \"snake@eden.com\",\r\n          \"Date of birth\": \"∞ BC\",\r\n          \"Gender\": \"O\"\r\n        }\r\n      ]\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.researchautomators.com/Api/Projects//Tasks"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50004,\n    \"projectId\": 12345,\n    \"actionType\": \"ResponsesImport\",\n    \"enabled\": true,\n    \"state\": \"Queued\",\n    \"nextRunTime\": \"2026-03-24T15:18:27.9830000Z\",\n    \"lastRunTime\": null,\n    \"lastResult\": null,\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50004\"\n    }\n}"},{"id":"eab0ce66-7733-4ed4-8e94-6e2adc1e8627","name":"Responses import from uploaded file","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"actionType\": \"ResponsesImport\",\r\n    \"parameters\": {\r\n        \"file\": \"\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://app.researchautomators.com/Api/Projects//Tasks"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50004,\n    \"projectId\": 12345,\n    \"actionType\": \"ResponsesImport\",\n    \"enabled\": true,\n    \"state\": \"Queued\",\n    \"nextRunTime\": \"2026-03-24T15:21:26.9900000Z\",\n    \"lastRunTime\": null,\n    \"lastResult\": null,\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50004\"\n    }\n}"}],"_postman_id":"4856fae6-ba18-41fe-80a4-2665b814d356"}],"id":"b3f7bf1a-8162-486f-ade1-15b4489671bf","description":"<p>Endpoints for managing tasks within a project. Use <strong>Add Project Task</strong> to queue a new task, then poll <strong>Project Task by ID</strong> to check its status. <strong>List Project Tasks</strong> returns all tasks for a project. Once a task completes successfully, use <strong>Download file</strong> to retrieve generated output files (available for up to 24 hours).</p>\n","_postman_id":"b3f7bf1a-8162-486f-ade1-15b4489671bf","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}}},{"name":"Step 3 - Get task status","item":[{"name":"Project Task by ID","id":"2ad756e8-9620-450c-9e87-ed9ef7843db0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects//Tasks/","description":"<p>Once the task is run and succeeds you will get more info e.g. file location</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}},"urlObject":{"path":["Api","Projects","","Tasks",""],"host":["https://app.researchautomators.com"],"query":[],"variable":[]}},"response":[{"id":"ee23cd07-7d44-445a-8908-4d92a92846b5","name":"Synchronize","originalRequest":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects//Tasks/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Wed, 25 Mar 2026 09:43:06 GMT"},{"key":"content-length","value":"350"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50006,\n    \"projectId\": 12345,\n    \"actionType\": \"Synchronize\",\n    \"enabled\": true,\n    \"state\": \"Ready\",\n    \"nextRunTime\": null,\n    \"lastRunTime\": \"2026-03-25T09:43:01.1900000Z\",\n    \"lastResult\": {\n        \"status\": \"Succeeded\",\n        \"message\": \"The task completed successfully.\"\n    },\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50006\"\n    }\n}"},{"id":"4523d6c2-7425-4fbb-9a5f-276d961d2c88","name":"Response Export","originalRequest":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects//Tasks/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Wed, 25 Mar 2026 09:42:03 GMT"},{"key":"content-length","value":"438"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50007,\n    \"projectId\": 12345,\n    \"actionType\": \"ResponsesExport\",\n    \"enabled\": true,\n    \"state\": \"Ready\",\n    \"nextRunTime\": null,\n    \"lastRunTime\": \"2026-03-25T09:08:00.9100000Z\",\n    \"lastResult\": {\n        \"status\": \"Succeeded\",\n        \"message\": \"The task completed successfully.\",\n        \"files\": [\n            \"Temporary\\\\example-session-id\\\\12345_data_260325.xlsx\"\n        ]\n    },\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50007\"\n    }\n}"},{"id":"107939e4-f68c-4b72-b99f-b9c227091b51","name":"Responses Import","originalRequest":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects//Tasks/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Tue, 24 Mar 2026 13:58:56 GMT"},{"key":"content-length","value":"756"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalResults\": 1,\n    \"startIndex\": 1,\n    \"itemsPerPage\": 1,\n    \"Resources\": [\n        {\n            \"id\": 50004,\n            \"projectId\": 12345,\n            \"actionType\": \"ResponsesImport\",\n            \"enabled\": true,\n            \"state\": \"Ready\",\n            \"nextRunTime\": null,\n            \"lastRunTime\": \"2026-03-24T13:53:01.8130000Z\",\n            \"lastResult\": {\n                \"status\": \"Succeeded\",\n                \"message\": \"Imported 3 participants\"\n            },\n            \"meta\": {\n                \"resourceType\": \"ProjectTask\",\n                \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50004\"\n            }\n        }\n    ]\n}"},{"id":"13dcb6b0-ca12-42c8-acbf-64963bfa0bf1","name":"Response Export by ID","originalRequest":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects//Tasks/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Wed, 25 Mar 2026 10:39:12 GMT"},{"key":"content-length","value":"365"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 50008,\n    \"projectId\": 12345,\n    \"actionType\": \"ResponsesExport\",\n    \"enabled\": true,\n    \"state\": \"Ready\",\n    \"nextRunTime\": null,\n    \"lastRunTime\": \"2026-03-25T10:39:02.1970000Z\",\n    \"lastResult\": {\n        \"status\": \"Succeeded\",\n        \"message\": \"The task completed successfully.\",\n        \"files\": []\n    },\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50008\"\n    }\n}"},{"id":"0815bd95-8871-41a6-ab3a-1894fb6d927b","name":"Participant Import with JSON","originalRequest":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects//Tasks/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Tue, 21 Apr 2026 10:24:06 GMT"},{"key":"content-length","value":"346"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 5009,\n    \"projectId\": 12345,\n    \"actionType\": \"ResponsesImport\",\n    \"enabled\": true,\n    \"state\": \"Ready\",\n    \"nextRunTime\": null,\n    \"lastRunTime\": \"2026-04-21T10:22:01.3000000Z\",\n    \"lastResult\": {\n        \"status\": \"Succeeded\",\n        \"message\": \"Imported 20 participants\"\n    },\n    \"meta\": {\n        \"resourceType\": \"ProjectTask\",\n        \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/5009\"\n    }\n}"}],"_postman_id":"2ad756e8-9620-450c-9e87-ed9ef7843db0"},{"name":"List Project Tasks","id":"386c7eb5-e980-48dc-b768-4c2dc713e275","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects//Tasks?startIndex=1&count=10","description":"<p>Retrieves a paginated list of all tasks associated with a specific project.</p>\n<p><strong>Method:</strong> GET<br /><strong>Endpoint:</strong> <code>/Api/Projects/{projectID}/Tasks</code></p>\n<p><strong>Query Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>startIndex</code></td>\n<td><code>1</code></td>\n<td>Optional. The index of the first task to return (1-based). Default value is 1.</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td><code>10</code></td>\n<td>Optional. The number of tasks to return per page. Default value is 100. Value must be within range 1 - 200.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Path Variables</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>projectID</code></td>\n<td>The ID of the project whose tasks are being listed</td>\n</tr>\n</tbody>\n</table>\n</div><p>Use this endpoint to browse all tasks queued under a project. Combine with <strong>Add Project Task</strong> to queue new tasks and <strong>Project Task by ID</strong> to check the status of a specific task.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}},"urlObject":{"path":["Api","Projects","","Tasks"],"host":["https://app.researchautomators.com"],"query":[{"key":"startIndex","value":"1"},{"key":"count","value":"10"}],"variable":[]}},"response":[{"id":"7c76ddd8-c099-41e1-9d98-89e862f1bc8c","name":"List Project Tasks","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.researchautomators.com/Api/Projects//Tasks?startIndex=1&count=10","host":["https://app.researchautomators.com"],"path":["Api","Projects","","Tasks"],"query":[{"key":"startIndex","value":"1"},{"key":"count","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Tue, 24 Mar 2026 14:00:36 GMT"},{"key":"content-length","value":"1693"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"totalResults\": 2,\n    \"startIndex\": 1,\n    \"itemsPerPage\": 2,\n    \"Resources\": [\n        {\n            \"id\": 50004,\n            \"projectId\": 12345,\n            \"actionType\": \"ResponsesImport\",\n            \"enabled\": true,\n            \"state\": \"Ready\",\n            \"nextRunTime\": null,\n            \"lastRunTime\": \"2026-03-24T13:53:01.8130000Z\",\n            \"lastResult\": {\n                \"status\": \"Succeeded\",\n                \"message\": \"Imported 3 participants\"\n            },\n            \"meta\": {\n                \"resourceType\": \"ProjectTask\",\n                \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50004\"\n            }\n        },\n        {\n            \"id\": 50005,\n            \"projectId\": 12345,\n            \"actionType\": \"ResponsesImport\",\n            \"enabled\": true,\n            \"state\": \"Ready\",\n            \"nextRunTime\": null,\n            \"lastRunTime\": \"2026-03-24T13:37:01.6100000Z\",\n            \"lastResult\": {\n                \"status\": \"Succeeded\",\n                \"message\": \"Imported 3 participants\"\n            },\n            \"meta\": {\n                \"resourceType\": \"ProjectTask\",\n                \"location\": \"https://app.researchautomators.com/Api/Projects/12345/Tasks/50005\"\n            }\n        }\n    ]\n}"}],"_postman_id":"386c7eb5-e980-48dc-b768-4c2dc713e275"}],"id":"ae6354f4-31cf-4ddf-93df-fde739122c17","_postman_id":"ae6354f4-31cf-4ddf-93df-fde739122c17","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}}},{"name":"Step 4 - Retrieve data (Optional)","item":[{"name":"Download file","id":"168053ff-66d8-4a52-8987-5845490797b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://app.researchautomators.com/Api/Projects//Files?fileName=","description":"<p>Use this to download the file generated by export task</p>\n<p>The <strong>Download file</strong> API returns the export in the file format configured in Survey Automator. To return JSON instead of Excel, go to Survey Automator and then the <strong>Responses</strong> tab, click the <strong>cogwheel</strong>, then go to <strong>Other settings → File</strong> and set <strong>Default file type</strong> to <strong>JSON</strong>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}},"urlObject":{"path":["Api","Projects","","Files"],"host":["https://app.researchautomators.com"],"query":[{"key":"fileName","value":""}],"variable":[]}},"response":[{"id":"08344737-132e-4fa5-8ddd-fd65cfc73dc6","name":"Download a file from a task","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.researchautomators.com/Api/Projects//Files?fileName=","host":["https://app.researchautomators.com"],"path":["Api","Projects","","Files"],"query":[{"key":"fileName","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/octet-stream"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"content-disposition","value":"attachment; filename*=UTF-8''23155_data_260325.json"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Wed, 25 Mar 2026 12:39:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\r\n\"questions\": [\r\n\t{\r\n\t\t\"id\": \"gender\",\r\n\t\t\"type\": \"category\",\r\n\t\t\"text\": \"gender\",\r\n\t\t\"answers\": [\r\n\t\t\t{\r\n\t\t\t\t\"id\": \"Female\",\r\n\t\t\t\t\"text\": \"Female\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"id\": \"Male\",\r\n\t\t\t\t\"text\": \"Male\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"id\": \"Other\",\r\n\t\t\t\t\"text\": \"Other\"\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"id\": \"QUID\",\r\n\t\t\"type\": \"system\",\r\n\t\t\"text\": \"QUID\"\r\n\t},\r\n\t{\r\n\t\t\"id\": \"RespID\",\r\n\t\t\"type\": \"system\",\r\n\t\t\"text\": \"Session ID\"\r\n\t},\r\n\t{\r\n\t\t\"id\": \"EndTime\",\r\n\t\t\"type\": \"system\",\r\n\t\t\"text\": \"End timestamp\"\r\n\t},\r\n\t{\r\n\t\t\"id\": \"RespLength\",\r\n\t\t\"type\": \"system\",\r\n\t\t\"text\": \"Response length\"\r\n\t},\r\n\t{\r\n\t\t\"id\": \"StatusText\",\r\n\t\t\"type\": \"system\",\r\n\t\t\"text\": \"StatusText\"\r\n\t},\r\n\t{\r\n\t\t\"id\": \"Blocked\",\r\n\t\t\"type\": \"system\",\r\n\t\t\"text\": \"Blocked\"\r\n\t},\r\n\t{\r\n\t\t\"id\": \"DQ39\",\r\n\t\t\"type\": \"single\",\r\n\t\t\"text\": \"Test\",\r\n\t\t\"min\": 1,\r\n\t\t\"max\": 1,\r\n\t\t\"answers\": [\r\n\t\t\t{\r\n\t\t\t\t\"id\": \"1\",\r\n\t\t\t\t\"text\": \"1\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"id\": \"2\",\r\n\t\t\t\t\"text\": \"2\"\r\n\t\t\t}\r\n\t\t]\r\n\t},\r\n\t{\r\n\t\t\"id\": \"XQLANG\",\r\n\t\t\"type\": \"open\",\r\n\t\t\"text\": \"XQLANG\",\r\n\t\t\"excluded\": true\r\n\t}\r\n],\r\n\"responses\": [\r\n\t{\r\n\t\t\"QUID\": \"105001132\",\r\n\t\t\"RespID\": \"999999901\",\r\n\t\t\"EndTime\": \"20260325100346\",\r\n\t\t\"RespLength\": \"00:00:02\",\r\n\t\t\"StatusText\": \"Completed\",\r\n\t\t\"Blocked\": \"6\",\r\n\t\t\"XQLANG\": \"m\",\r\n\t\t\"DQ39\": \"2\"\r\n\t},\r\n\t{\r\n\t\t\"QUID\": \"105001132\",\r\n\t\t\"RespID\": \"999999900\",\r\n\t\t\"EndTime\": \"20260325100340\",\r\n\t\t\"RespLength\": \"00:00:01\",\r\n\t\t\"StatusText\": \"Completed\",\r\n\t\t\"Blocked\": \"6\",\r\n\t\t\"XQLANG\": \"m\",\r\n\t\t\"DQ39\": \"1\"\r\n\t},\r\n\t{\r\n\t\t\"QUID\": \"105001132\",\r\n\t\t\"RespID\": \"999999899\",\r\n\t\t\"EndTime\": \"20260325100335\",\r\n\t\t\"RespLength\": \"00:00:02\",\r\n\t\t\"StatusText\": \"Completed\",\r\n\t\t\"Blocked\": \"6\",\r\n\t\t\"XQLANG\": \"m\",\r\n\t\t\"DQ39\": \"1\"\r\n\t}\r\n]\r\n}"},{"id":"3de45a21-daad-46f8-93f9-09ed927f6a3e","name":"Download file from project","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://app.researchautomators.com/Api/Projects//Files?fileName=","host":["https://app.researchautomators.com"],"path":["Api","Projects","","Files"],"query":[{"key":"fileName","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/vnd.openxmlformats-officedocument.wordprocessingml.document"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"content-disposition","value":"attachment; filename*=UTF-8''API_Download_Word_file.docx"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Tue, 14 Apr 2026 07:26:42 GMT"}],"cookie":[],"responseTime":null,"body":"PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000ߤ�lZ\u0001\u0000\u0000 \u0005\u0000\u0000\u0013\u0000\b\u0002[Content_Types].xml �\u0004\u0002(�\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000���n�0\u0010E���\u000f��Ub袪*\u0002�>�-R�\u0007\u0018{\u0002V��Ǽ��\u0013\u0002QU\u0001�\nl\"%3��3Vƃ�ښl\t\u0011�w%�\u0017=���^i7+���-d\u0019&�0�A�6�l4��\u0019L6\u00010#�Ò�S\nO����\u0015X�\u0000�*��V$z�3\u001e��\u00163����\u0003��%p)O�\u0007\u001b\u000e^�\u0012\u000b���5}nH\"\u0018d�s�Xg�L�`�\u0014��|�ԟ�|�P�rۃs\u001d��\u001a\u0018?�PW�\u0007�t\u001ft4Q+��\"�wa���|T\\y���,N�\u001c��U�%���-D/\u0001��ܚ��X�ݞ�(\u0007��\u0001�\n<E��\u001d\u000f)��\u001a\u0000;�N�\u0015L?�F�˼\u0013��܉�\u001a�\n    <Fk�\t�h\u0003�y����ڜ���q�\u0001i��?�ޯl��i�\u00001��]�H�g�\u0007�m�@\u001d����m�\u0003\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000\u001e�\u001a��\u0000\u0000\u0000N\u0002\u0000\u0000\u000b\u0000\b\u0002_rels/.rels �\u0004\u0002(�\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000���j�0\f@���ѽQ��\u0018�N/c��\u0018�\u0007\b[IL\u0013��j���<��\u0002]�aG��ӓ�zs�Fu��]�\u001a�U\r��\t��^�[��x\u0000����1x�p�\f���f��#I)ʃ�Y\u0015��\u001a\u0006������\u0013�*D��\u000bi\")��c$���qU���~3��1��jH[{\u0007�=E��\u001d��\u0019~\nf?��3-���޲]�Tꓸ2�j)�,\u001al0/%��b�\n\u001a���z���ŉ�,\t�\t�/�|f\\\u0012Z���\u0019?6�!Y�_�o\u001b�]A�\u0001\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000\u0000.x\u0007-\u0003\u0000\u0000^\f\u0000\u0000\u0011\u0000\u0000\u0000word/document.xml��Ko�0\f��\u0003�\u001f\f�S���Ѥ\u0018��a@�n�Y��بd\u0019��گ\u001f���p�K$Q�'�\"i���u�Re\"���c[4'\"�������q��-�q\u001ec&r���T�\u000fۏ\u001f��a,ȑ�\\[��Ux.��N�.B�\u0014I)��gD\n%\u0012}G\u0004G\"I2B�Y�\u0018y�딳B\nB���>����]��e\u001c-��\f�\u0006\u0018 �b��c�7C�h�VC�7\u0001\u0004O�C�3j��W\u0003P0\t\u0004^\rH�i�<�b\u001a�\u001b���H����F\u001a�\u0013\u001f&�(h\u000e���\u001ckX�\u0003�X�\u001e�\u0019�\u000b��}�2}\u0005��h08�_'x\u0004V-���̈́%�\"�̏\u001b���G������7���}=�\u0016��;\u0016�[#z�L��V��]e\u001eՍ��\u001a��A\u001cE�Ҭh�\u0003�J�ʹ���\n���F�\\�#K��-���\u0003�q��;�*��&�Έ�4��b�\u000b��x�!���'��\u0017\\wd�i\u0000�\u0000� t�ˢa�j\u0006\"]u\u001bN6��\u001aNu+��u�uG�����\u0001��M\b�o�0�1�T���6\\sG��b�S�ڢ����F�\u0010�\u001e�J0&H��\f��\u0016�y\u000b���\u001d\u0016��\u0015�\u0014Ǣ�e�=w-�l>�n`�\u0005�oB�}μ���N�I�|ȅ�{\u0006\u001eA�ZP�Vy\u0003�\u0017\u0012�\f�^J�ɟz�03���i��\u0016>\u0002�\"����� ,���PCN\u0010\u0005��3�K)�B��\u0006�z�/�\u0000�!|p��@�Y��(�[�N\u001a�*Z,�ƺ\u0012F4�G�{;�;i\u0006Y\r\f�\u0007�?a�Lu��|���\u001e�ۨ�\u001ekr\u000e����ي�9g\u0002��O���d�\u001a\u0015])Vd��(�;9��J�\u000f/�`\u0013���y�c\u0014�L��\n�R��\rQ\u000bx]�A�\"�C���^h-x�f4���\u0014�\u0014�]z�2\u0011B����.��qD0\u0005RU`B+�R\f_�O�$EȲ��2M�KQ���i�\n��c��\r\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000�d�Q�\u0000\u0000\u00001\u0003\u0000\u0000\u001c\u0000\b\u0001word/_rels/document.xml.rels �\u0004\u0001(�\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000���j�0\u0010E�����}-;}PB�lJ!���\u0000E\u001e?�,\t��`HI��`��r��sπ6����w��{���r\u0010茯{�*x�\u001e��A\u0010kWk�\u001d*\u0018�`[^^l��jNK���D�8R�1���d:\u001c4e>�K/����4�V\u0006m^u�r��w2N\u0019P�0ŮV\u0010w�5�j\f�\u001f�o����7o\u0003:>S!?p����8JX\u001d[d\u0005�0KD��EVK��\u001f�c2�P,���ũ�a���]���.��\u001f�ﰘs�Yҡ�+��\u0013���(!O>z�\u0005\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000�Uv�,\u0007\u0000\u0000\r\"\u0000\u0000\u0015\u0000\u0000\u0000word/theme/theme1.xml�Z[�\u001b5\u0014~G�?X�ffr���\\)�n���\u0016��d�\u00197���vv7BH�<�\u0004�\u0007�x�\u0001!�@\u0002��Ԋˏ��L&��C)ݢ\n�F������\u001c\u001f�Lr㍋��3�8�I��\u000e@ɜ\u00068\t����i��\u0000.`\u0012@B\u0013�wֈ;o�|��\u001b�P���O�u�w\"!���:��aȯ�\u0014%rnAY\f�첰\u001e0x.�Ƥ�n�\u001eC�8 ��T{o��s\u0004N�J��F�����j`N؉R�\f\t�\r��z�k>\"\f�A�w�:\u0001=?E\u0017�\u0001\u0004r!'�������\u001b�B��\nْ�T��r�@���\u001c\u000bg��;�M�Я\u0001D��&]�*�i\u0000���N3.e��j�]?ǖ@YӢ���\u001a&�������\u001e�M\u0003�AY����io2n\u0019x\rʚ�=�������נ����7'��?1�\u001a\u0014\u0011�,���N����\u0005dA�-+��n��q\u000eߢ����\u0013Q\u0015k1|H�T\u0002�s��\t\u0010�\u0014-�\\�\u0006��\u001c�1O\t\\; �\t�r��=O\u0006^�����8��`I:\u001b��!�\u0007�9é�;��V�\u0004y��Ϗ\u001f����O�?�����\u0001\u000e#a��\u0005��,���\u001f������\u001f���O�x^�?��ç���w�A�������?��O,�\u0001��2�\u0014ǈ���\u001c\u001c�Xnв\u0000���8� .K\f���\u0004*\u0019\u000bz\"\"\u0003}w\r\t���ȴ�\u0003&Ӆ\r���A�$b+�-�;Ql\u0000\u000f)%Cʬ{���*[a����٪�;��̶�h�˓U*�\u001e�T�\"d�<\"��0D\t\u0012@��%B\u0016�w06�z��r�\u0010�\u001d\f�\u0010[Mr�gF4m�n�X�em#(�m���\u0001\u0018RbS?Fg&R�\rHl*\u00111��&\\\t\u0018[\u0019Ø��\u0007PD6�'k67\f΅�t�\b\u0005�\u0000qn����\u0006�;P�-��\u000f�:6�L�\ry\u0000)-#�t9�`�Z9�$*c��K\u0019�\u0010\u001cQa%A�\u0013���\u000f0�t�\u0003�\fw?�lߗi�\u001e jf�lG\u0002Q�<��\u0002\"��\u0001��\u0014;`�\u001a\u001d�Uh��\u0001B\u0004��\u0000!p�-\u001b���ͷ�oG2��B6�܆f��~����Tqcq,�FȞ��V�9\\�$�5LbȪ4�]�!3�1y\u0018m�J�K#�b�\u000e���=\u001e\u001b���z\u0014A#�T���u�\f���3&e\u001e�\u000b\u0019��22��cۜBb,�\r�S���-�J\u0011��[\u0011u����*�0\u000f��\r���'��3*�����œ/��`/�ڱ\u0003_�ΩJ%��M\u0015n��\u0019Q\u0016�W��\u0019�Ur��-b�^U4W\u0015�����:�Wu�U\u001dsU��E^B\u001d�-]�\u0003��c\u001e�%�|�����5A\u0007\\\u0017=\\��`*\u0007uG\u000b\u0015���H6��\f\\Ƞn\u0003F��XD'\u0011L�2�^!�ꐃ�rY8�a�n5AV�!\r�'x���O5�\u0000\u0014�q�U��\"Md����\u0011h�^�B��uC@�>\u000f��b&���Dg3�\f\u0012zg�¢ga�U�+Y��+�r\u0002P=\u0010o53F2�dH\u0007�O��ƻ���*c���-��)���i�D)�L\u0012�0���;|ɾ�m]j�S�ا��\f_�$��\u001bHb�����Qz�0�;\u000b��I6�T*�*UA\u0012&}g.rK��Ԓ2.ƐG\u0019LOe\u0006��@\f\u0010\u001c�`/��$%r=yh^Ur�r«FN����\u0016\u000b4\u0017\u0015#ۮ�˔Xg_\u0010�:t%I�D�9��\u0015;��P����\u001b`.\nW\u0007���{kŝ|��E�˟�\u0019�$�`~���y\u0006��Ni\u001f����~��Y������D)kV� �ڴ'��w˗Xm\u0013��*�ݻɮ�IvU�ċ�\b%j��\fj����vԤv�\u0015Ai�\"4�.�˾\u000ev�V�\u0010��R���צ��2�ǲ\\]�l�$��)�GLs��`�7\t�NI��M\u001a �1Z\u0000\u001c\\Ȕi3N��q�Ď�\u0005��U\bZ�j\n�x��\u000el!�\u0005��\n\u0017\u0012zeY{\u0017º,�)\u0010\u0017��\u0019>sX�5rK�\\�gE�ُ���k�,���M��\u0010`�p�y�m\r�#�5���֤�l4�Z�5h�\u0006�VÛ�\n        <w<�ߓ�D\u0014{�́S\u0018c������~�\u0010o>�\\�ӸN����\u0016ֿ����?H�HZ��k�\u0003T\u001b��v��۵n�1�����\u001f�Lޞ\u000e�s��\u0006{��x:m���H��U\u001b\f\u001b�Z�;\u0019�So�\u001c�\u0012�;�\"���-6Qy�/\u0000\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000��OJ\u0010\u0004\u0000\u0000\u001e\f\u0000\u0000\u0011\u0000\u0000\u0000word/settings.xml�V�n�8\u0010}_`����:�lI��:E��&E�\u0016U�}�$�&@Rq�b�}��hi7�\"n�\u0017��3sf4<\u001c���'F\u0007�X*\"��\u000b.F�\u0000�\\\u0014��\u0016����p�\r�F�@Tp���Xy�/���!QXkpS\u0003��*a���k]%���=fH]�\ns\u0000K!\u0019��(w>C򡮆�`\u0015�$#��?\u001e�b��\u0011\u000b��\n            <i)���R(Qj\u0013���$9n�\\�|M�&d%�a�mF_b\n5\b���R���,\u001b�{G����xd��\u001d��+^� dq�xMy&��\"�J�\u00061�\n$�K\u001c>#:往��+Z*\b\u000fFvկ<:�`�� ���y\u001c��Ç�>\u000f)��O<�kl\u0010�\\1=��>�b\n                <qu�?\u0013��R�.��ѹ=�M,�h��I�\rcI�c\f{�����\u001f�����E'�#��P=/�\u0005U7�\u001d�$���h%���vǅD\u0019�r@�\u0003P��Vg~a�͟]�'k7�m\u0017%5\u000bh�%��oB��!����\\�<\u001c�<�\u0000p�D�j��1�I�`�-��b�\u001b�\u0002����\u001ee�\u0016\u00158=\"x�鸍��H�\\c�V(�3�\u0014\\KA�_!>\n���(�ȶ\u0011vBv����\u0010�\u0011����\u0004݊\u0002��!�%y�~�\u0000�=��)��H�� I��M{S}�x\u0003ŧ�\u001b��ŇZi\u0002�v��B\u0005?*\u0000s��\u0013\b��X�\rF��6�Q2�\u0013\u001bJ�-�R�[^�\u0010�,\u0019)K,!\u0001\u0001amA>D����\rF\u0005\\�o��V�/p��8�\u0007Y>\\\u000b�\u0005�9V{�����ջߗ/|Z\u0014�-�\b�O���*�N[�\u0019�C�qt\u001d�^B��x\u0015N^B��m~\u0015\u0004q�\u0012r�\u000e�\u001b\u001b�*e���?K�2r\u001f�&b�X&\t\u001al�e�\u001b�L>\\\u0013��\f���}$�3\u0007\u000e�\r�\u0018�t\u0003�w�m\u001aK\n��\u0015.�n��u���|�\n��É�\f.,����\u001a� Q��ع\u0004a�F\u0012��\bsvUg���0c{P͋O����k�!� \u000b;\u000e���|�5m�Gej�����\u001a\u0005f�`�Q�����F�S\u0001߄�!ۍ[ll�q��\u0007��7\u0003�v������8ۤ���\u0016v��٢�\u0016;[ll{�9�\u0012�\u0000��-��\u0014��\u0003.n:���]\r9�\u001dO�,�&�E�Q��tVp9h!\u001d��ł0)D~k���I<���\r\u001c�KE�\u0003\f����k�p�b.4jB��׳e4����z�\u0019.�a8�O��a0�����d�\\��nρ����\u0007\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000\u0015x\n                    <c\n\u0010\u0000\u0000\b�\u0000\u0000\u000f\u0000\u0000\u0000word/styles.xml�]�r�F\u0012}ߪ�\u0007\u0014�v\u001f\u001c]H��*JJ���kmG����\u0010\u0018��@�\u000b����߹\u0001\u001c�1 z�b\u0014ז�,\u0012`�\u0019��Әn\\�ǟ�-��+ϋ8K�\u0007G?\u001c\u000e\u0002��Y\u0014���/wׯN\u0007AQ�4bI����\u0013/\u0006?������xV�O\t/\u0002\u0001�\u0016g��|0/����A\u0011���\u0015?dK����,_�R|��\u000f\u0016,X-_��b��x\u001a'q�tp|x8\u001e\u0018��\u000bJ6��!���\u0005OKe��D fi1��E���\u0005�1ˣe���(�A/\u0012��`qZ�\u001c�\u0000�\"\u000e��f�\u000f�`L�\u0014�0?:T�\u0016�\u001a�\u0004\u0007p\f\u0000�!���85\u0018\u0007��Ɖ#\u001cθƉ#\u000bǯ3\u0016@�BA\u001c\u000f�~�?���*�2���*�\u000e�-+ٜ\u0015�M�Y�C\u001cY����,|�19n�Nj����p\u0011���O��M\u0013�$�2\u0010�\u0015(`���G�Q\u001f�7�]\u000e��0K�\u00071j?\t�FY����*)\u000b�5���W�M���Ҳ\b\u001e�X\u0011���ht\u0011���]�E<\u0010{8+ʋ\"f�;��C㞰(�͗q\u0014\u000f\u000ed�\u000f\n                        <O��L\f���T�Qo\u0018U[�d�6�%,�����՗[�s֦�h�|��W�\u0017��ht����\\�\"��o\nA��<�\u0012�Ͽ�+��\u001f\u001f�����ZnS�\\�0V�b����v4>�=Hb\u0019D�'�՗�+�%[��iD\u0001�5�\u0001`L\u0004;\u0011�nu\u0004\u0016{���5\u001eݖb��@�%6~y��Y.�����k��/�wq\u0014���a:�#�ۜ�_\n\u001e���z�\u001c�l\b�U*>\u000f'c�EI\u0011��\u0016򥌻bo�$���A\"��׍+��V`G��&�9g��\u0013\u001cmC�� ��Ea\u001dm3�j��կP\r\r���h_\r�쫡�\u001a��!%�}4�`���8��yD�\u001e6\u0003Pw�8Ԉ�q�\r���\u0012\u001a�!\u00154�C\th\u001c���q\u001c~��q�)\u0002��B�\u0017Z�>tx{;��s�\u001f��S�\u001f��3�\u001f��;����\u000e�~����\u001f��`���S�ཐYZ�V�,��4+y '���X*�TFN�'Oz<'9H\u0002\u0018\u001d�̉�7Z����\u001e�D�>/e�\u0018d�`\u0016�˔�w�y��'ْ\u0007,�\u0004\u001e!`�ER�\u0018\u0011\u001f�����<\r9�cӁ�L0HW�)�o.�=\u0019\u0016O#��\u0010I�B��\"�K��\u0004N�`a���Z���Ç��?V\u0012$�\\%\t'��D�b\n�n�`��\u0006\n�f�`�'\u0006\u0016gTCdЈFʠ\u0011\r�A#\u001a7�T�fЈ�͠\u0011��A�?nwq��\u0010o�:���L^C�ݏ��>UU��H�f\u001aܰ���l9\u000fdU�\u0019�>fl;�Y�\u0014�Q��j$�y�r\u0011Yˎ�U�\u0001�@�\u0012W�G$�\u001a�H`5^�}\u0014�d9A{G��ܮ�e�h\u0015R'�޲d�'������\u001e�\u0016�u�\u0017d2h�%��Or:+餈|�^���\u001a�����\u0012i�\f$A/�\u0005W�0��i�s��=�F�Β${�\u0011\u001d�m�g��l�\u001f+J:I��b9gE�r�\r������#[�>����)\roo_-X�\u0004t3�ww\u001f?\u0004w�R��r`h\u0000/���\u0016d��\u0012������4\u001d�\u0010Ip�Dt�\u0017D�!\u0005v\u0015\u0013�d4R\u0016\u0011!�if��$�P��o�4�X\u001eѠ��\\ߏRr\"�[�X�I\u0007��D\\|\u0014�`6�����Xօ�DuG\u0002f�\r���w\u001e�\u000fu����2�˪T�G5�U�tp��\t\u001bp��\b�Mqz��Kp�\u001bp�\u000fv\u0003��`�\u0012V\u0014��\u0012�7\u001e��Vx���?�3xY��UB7�\u0015 �\bV�dC�%�EZP\u001e��#<`�G}��.��\bJr\n�_y\u001c������P`T4(0*\u000e\u0014\u0018)\u0001��б��ߦc���WG�\u0011M\u0001,0*?#=�\u0013]����L�Q��\u0002��3\u0005F�g�7\u0001���$��\u0014cAR��\u0005Iw�IK�Xf9˟� �&��\u0011\u0014H5�M���0Y�o�&��5�p���H��Oɺ&�(�EP\u0011eI�eD���\tGYn޻��L=\tһ\u000b7\t\u000b�\n                            <K\"�;��m+��[�X�v�U7:�=?���2����~\u001bf|�ӲJ�7�v7�4�c�L��G\u001eūE�Q�0�x��Xy�q��M��z&�ay��\u0012�9�m��%oXN:Z�6O;Z*�nX���\r�\u001f\u001a\u001da��?u��p�I�\u0017�ƍͶ9Rm�䂓6/ڐJp\u0011��j\u0001d��f�����Ǩȍ���\u001b����\u0010m\u0002�̿��̎\t�����\t\u0010��$�S��u����\u0005��\u000fu�\u0017\u0013���A#ΰ����(�\u001e����\r�9�!:\u0007 7D�H�4G�$7J����\u001c��\u0010�h\u0005�\b�h\u0005�q�\n��D+��\u0013�z�\u0002�\u0010��\u0003n\b�P!\u0004Z�=f\nn\b�P���P!\nZ�\u0010\u0002-T\b�\u0016*���\n�qB��>B�(>B�(h�B\b�P!\u0004Z�\u0010\u0002-T\b�\u0016����i�%T��\u0016*�@\u000b\u0015B����=�\n�qB��>B�(>B�(h�B\b�P!\u0004Z�\u0010\u0002-T\b�\u0016*�@\t\u0015�{\t\u0015���\n!�B�\u0010h��G\r��\n�qB��>B�(>B�(h�B\b�P!\u0004Z�\u0010\u0002-T\b�\u0016*�@\t\u0015�{\t\u0015���\n!�B�\u0010h����=�\n�qB��>B�(>B�(h�B\b�P!\u0004Z�\u0010\u0002-T\b�\u0016*�@\t\u0015�{\t\u0015���\n!�B�\u0010m�i.Q�n�?�W=�w�w�te:��~�ۆ\u001av��z����,�e�=\u0004�\u000f\u001e\u000eU��\r$�&q�JԎ��6��%\u0002u���'|l��/]2�B�k�\u0000|��\u0012�TFm.o[�$o���%�u�ڢ�m\tN�����tYݔ\"NG��-�X�G\u000e�hm��!n�і!\u001c��l\u0019�\u0001n�ǖ�I ���I�q\u001a���\u0002�6w�\u0010&n�6��\\U�\u0018\n�+in���\u0011���F@���\u0013�B3��\u001a�\fK��P�\bX�!�\u0017�\u0000Ɵj\b�M5��\u001a\u0006F,�\u0010\u0001K�pv#xQ\r`���P�TC(?��\fK5D�R\r\u0011�T�\n                                <!;a���P�TC(?���\u000eK5D�R\r\u0011�TC\u0004/�\u0001�?�\u0010ʛj\b�G5Ȓ�TC\u0004,�\u0010\u0001K5D�\u001a��S\r����PmT�*�\u0006�(�-s�$�2ĝ�-C\\p�\f=�%��3[�\u0010<�%�U�9.[�Is#teύЕF7\u0002�O'\f�X7\u0014�a7�\u001fոl��j��\u0011�T�%'ոl��j\\��J5.[rS�˖���eKMT�\u0007g7�\u0017ոl��j\\��J5.[rS�˖���eKMT㲥&�{���0�T㲥V�qْ�j\\��D5.[j�\u001a�-5Q�˖�T㲥V�q�R+ոl�M5.[j�\u001a�-5Q�˖���eKN�q�R+ոl��j\\��Q��\u0004���]��\f��\u0017��\u0015��9�4�E�|�Q@{�\u001fPGy����VK\u0011�ߗb��\u001bЭǕ\"�\u0006X\u0003�~�>����Ʋ'�Y=�lV\u001d6�ku��pGS5��V|\u0004�׋[�\u0016�L\u001c�/r4@�|1b�v�\u0010�����9��޵�V�1b\\\u001f��Y^�Q������x21�[��e\u000f�/?���6�E��\u000b�m���T�SL��P/lf�9;5���[�>|M�\fu���E���-��ɝo�6�c��\r��:sr�e��\\(U^��z4\u0019+�P?V\u0011�|���כ�M)\u0002��Z#����.6����mւq>�s�t\u001e\u0013�h�縃�e��!�gv/�n�N��\"�w�^CC��^z[O�\u001a:����A�^��Ľ�!w��.'ڇ�\u001c����\u0002�j[OW\u00199]���C�*�\u0017�*���Ta\u001fz��\u000f�����+ݻ�~��#N�\u001eaƗ�#N�\u000f�P*yy���\u000f�%`�|�d�4>0~�>0�}��\u0002���\u0006����߶C�U���p\u0017��|/\u0014_=�a��\u0006S����w�\rՀ?g@�3��N�ͬ����\u0017��.ƕ\b�����ׅ�7\u0014s��N�\r+4�����_\r�s*���P\f6\u000b͋�\u001du4��R�� ��Ҷ/8Var�h�c�xt����ܖ>�jok\u0001P\u0017�������i��\u0016\u001fާ��\u001e���=��1\r%�_�$��������\t�I���G��}�[��zi\t�}��A8\u0001\u000e6;�����^l2�\u000f�8뭲��0��I��#�ч�U!��V�`�\u001b���^���Q��?[\u0001�Q\u0007�0f<�\u0019��A��eS4�������RS��zV��\u0019�S�D2���.��D\f��(=�V\u0001�f�O�\u0010ɖ���\u001a\u0011�eJ�/��}\u0017��Z���\u0013\"V̘~?\u001a\"�A׻\\<��x0%���:�+\u0019HJt��EɄ�\u0012S'{����IЕ\u001f\u0017\t�D$���_B\u0017Ϝ��D\u0017c\\��&�Č�\u000b�ž�l�\u0005\u0019�c��6\r1����ք5\u0014eL���\u0002��b&�cb�t�\\~���N�VeV\rq*�p�\u0012��~=r/�ގ�\u0011��~U\r�\u0003��_ϥ�-'�|kϮ�6:Q�\u0019l���j�\\��\u001c/3��?g�\u001a����&��A��\n�U̦\u0000�\u0012s�Z�\u000fq\u0002o�2;��č��\u0000��!�7�ݠ�E~_�n:���\u0017>q|fʚ���\u0014�fFo�ФBj\u0013䱙�x�]����/~\u000f+K��r�.�f��rt(�ua�:\r^\u000fU#\u001d}Ubq�fa�D�:r�.+������\u001e+�P�z�.\u001f�C14�3�C��\n��>%_�g\\�m.��]�6_��}��my8Gi�\bԉr�w��6-3\u0016͡ms1�]��%��͵E��O\u001e����_}]T��\u0010�d���C�b'?\b���D�O\r�gY�����-I\u0019�#��\\��������X�F]����O�\u0006�?�\f\n���u��\u000e6D��c_��[c��՜�\u0001\\��o��.����T�jF�\u0010A%�bK��\u0003�H�4\u001c��S���\u0000\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000&��Ho\u0001\u0000\u0000-\u0004\u0000\u0000\u0014\u0000\u0000\u0000word/webSettings.xml���n� \u0014\u0000��%{��{�:5Kc5Y\u0016��,K�=\u0000©%\u0002�\u0001\\uO?���xcwS\u000e����7_�J��:�&'�aJ\u00120\u001c�4��|}�\u0006�$q�\u0019�\u0014\u001a��\u0001\u001cY.���uV��\u0003�\u000f�$(�e�����(u�\u0004��\u0010+0a�@��\u000f]������\u001ap�\u0015�r-��\u0007:N�\u0019i\u0019{��E!9<#�i0�ɧ\u0016T\u0010ѸRV�շh5ZQY��\\X�VGO3i��hr\u0005i�-:,�0,����B�(m\"���i?`|\u0005�8��\u0019��ACfב��3;;Rt��\u0015�\u0001Į\u00171~8�\u0011��ޱ���ǝΈ�\\�Y�\\y)\u0016��8��\u000b��o�&�۴�\u0019<�x��g�\u001b���U�­L��J\u001a8~��Ħ\taߌ�mi�B� ��\"�_����\u0007Vh�,�\u000e,��L)���^B�^<��/\u0000\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000�p\u001a�\u000e\u0002\u0000\u0000'\u0007\u0000\u0000\u0012\u0000\u0000\u0000word/fontTable.xml��n�0\u0010��W�; �7\u0018rh\u001a5��m#��^��\u0007p�\tV}@\u001e'$o�cCR�h�ao\u0017$\u0018�a>y~�\u001f\u001e\u000fZ%{�@Z�$و�D\u0018n\u000bi�K������\u0004<3\u0005Sֈ%9\n ���o\u000f͢��C��\u0006\u0016�/I�}�HS���\fF�\u0016\u0006��u�y�t�T3���o��5�r#���4�tF:���b�Rr�b�N\u000b�c}�B�5P�\u001aN��\u001aZc]Q;�\u0005\u0000��U��L�3&�\\���΂-�\b��V\u0014QX��\u0018i�\t�\u000e\u0003�\u0017�\u0019\u0017�a�y�H��ϑ�0��̑E��o��\u0001�� D>>�#�By�\u0005�/�a��\u001e���yV1��\u0012K5�8�\u0011�\u0001S���b�i�3��\u001ej���5ֱ�B\u0012Ne���Dpx���W\f�!���.(U\bеUwr�fa�F�S�-D�fƂ�0�g�<��L)��`W{OH\u001a~�\u0015s \u0002����rɴTǓ\n�\u0004h\u0013���:�{�dh�M��bb\u0007\u001b�$x�(��w�U�@�׸S�B;e�U�\u0013?��u�|r�:Ӷ�\u000b\u001fޤ\u0016��\u0014M��jf��HNgtL���\u0014�� G\\�\u000eq�5\u0018򺎝��|G�n>}�p����\u001d����H�\u0015;��\u0013�\u0005��\r\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000���Qr\u0001\u0000\u0000�\u0002\u0000\u0000\u0011\u0000\b\u0001docProps/core.xml �\u0004\u0001(�\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000��Mo�0\f���\u001fP�\u0010�݇\u0010Pi�zZ�I��i�4q۬$DIZʿ_�B���nv����&��$\n�\b��Rf(\nB䁤%�r�����D��D2R�\u00122T�A���&�*���7]*Ж��4\tU\u0019�Y�\u0012�\r݁ &p�t�M�\u0005�.�[�\bݓ-�8\f�\u0000K\u0018�\u00047��\u001a\u0014�Y��AR\u001dt�\n0��\u0000\u0001�\u001a\u001c\u0005\u0011��\u0016�0W\u001b��/Rp[+���Ł>\u0019>�UU\u0005դE��\u0011�\\�.۫�\\6^Q@y�hb�- O�%t�9�����xH\\L5\u0010[�|\tkb,'�[���`-�W\u001b��PW�f�i�2�10Tse�kv\u0013F\u0007�.���=�\u0003{��\r�\u000b5}\u001a���#y�\u0012C��\r�\u0016\u0004�9���־�1y~Y�Q\u001e��\u001fN�h�\n\u001f��.\tïf�Q�EP�\u0017��b/��4���\u000f\u0000\u0000\u0000��\u0003\u0000PK\u0003\u0004\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000\n\u0016��p\u0001\u0000\u0000�\u0002\u0000\u0000\u0010\u0000\b\u0001docProps/app.xml �\u0004\u0001(�\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�R�j�0\u0010�\u0017�\u000f��DN\n���BI(=�\u0005q���ֶ�,\tI\t��w\u001d��Ko�igV3̮\u0004��d'\fQ;��g�\"��J���W�[y?�ͳ��U�8����1_��+x\r�cH\u001acF\u00166��&%�d,�\u0006[\u0011�Զԩ\\hE\"\u0018j�JK�:yl�&6/�\u0005Ï�V����0�\u001d���_S�d�/�˳'?\u000e%�ވ���S��r�\u00056�P�$L�[�\u0005�\u0003�WQc�3`}\u0001\u0007\u0017T�7��\u00026�\bB&�\u001f��r\u0004��{��H�X��ep�U){���:9��\u0015�\tv(�A�s\u0017b\f�Q�>F_P� � |�m@�����f�0\u0011��\u0010�q�\u0017���P��{|��vk���&G3\u001etjv^H�0���\u001d5`G,*�?$\u0018\bx��\b��'��Q}��������%�-�\u0005��¾9\u001a{�0�\u0013\u0000\u0000��\u0003\u0000PK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000ߤ�lZ\u0001\u0000\u0000 \u0005\u0000\u0000\u0013\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000[Content_Types].xmlPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000\u001e�\u001a��\u0000\u0000\u0000N\u0002\u0000\u0000\u000b\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0003\u0000\u0000_rels/.relsPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000\u0000.x\u0007-\u0003\u0000\u0000^\f\u0000\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0006\u0000\u0000word/document.xmlPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000�d�Q�\u0000\u0000\u00001\u0003\u0000\u0000\u001c\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f\n\u0000\u0000word/_rels/document.xml.relsPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000�Uv�,\u0007\u0000\u0000\r\"\u0000\u0000\u0015\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000E\f\u0000\u0000word/theme/theme1.xmlPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000��OJ\u0010\u0004\u0000\u0000\u001e\f\u0000\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0013\u0000\u0000word/settings.xmlPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000\u0015x<c\n\u0010\u0000\u0000\b�\u0000\u0000\u000f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�\u0017\u0000\u0000word/styles.xmlPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000&��Ho\u0001\u0000\u0000-\u0004\u0000\u0000\u0014\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u001a(\u0000\u0000word/webSettings.xmlPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000�p\u001a�\u000e\u0002\u0000\u0000'\u0007\u0000\u0000\u0012\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�)\u0000\u0000word/fontTable.xmlPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000���Qr\u0001\u0000\u0000�\u0002\u0000\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�+\u0000\u0000docProps/core.xmlPK\u0001\u0002-\u0000\u0014\u0000\u0006\u0000\b\u0000\u0000\u0000!\u0000\n\u0016��p\u0001\u0000\u0000�\u0002\u0000\u0000\u0010\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000�.\u0000\u0000docProps/app.xmlPK\u0005\u0006\u0000\u0000\u0000\u0000\u000b\u0000\u000b\u0000�\u0002\u0000\u0000H1\u0000\u0000\u0000\u0000"}],"_postman_id":"168053ff-66d8-4a52-8987-5845490797b2"},{"name":"Upload file","event":[{"listen":"test","script":{"id":"034975c2-0da8-45d1-b6cc-72edaf62e951","exec":["var jsonData = pm.response.json();\r","var fileName = jsonData?.file || \"\";\r","pm.environment.set(\"fileName\", fileName);\r","pm.environment.set(\"fileName2\", fileName.replace(/\\\\/g, \"\\\\\\\\\"));"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"91da1266-9b37-450b-aa2a-8b0da6d51994","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","uuid":"0ff3f484-acd6-41b7-9b3d-35d5299a13ca","src":"/Users/sebastiansernald/Desktop/Kunder/Bonava/TESTImport2.xlsx"}]},"url":"https://app.researchautomators.com/Api/Projects//Files","description":"<p>Use this to upload file before adding import task (like ResponsesImport).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}},"urlObject":{"path":["Api","Projects","","Files"],"host":["https://app.researchautomators.com"],"query":[],"variable":[]}},"response":[{"id":"404cc650-fab8-45e8-9299-8a0d3caa07bf","name":"Upload file","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","uuid":"0ff3f484-acd6-41b7-9b3d-35d5299a13ca","src":"/C:/Data/response.xlsx"}]},"url":"https://app.researchautomators.com/Api/Projects//Files"},"status":"Created","code":201,"_postman_previewlanguage":"","header":[{"key":":status","value":201},{"key":"cache-control","value":"private"},{"key":"content-type","value":"application/scim+json; charset=utf-8"},{"key":"server","value":"server"},{"key":"x-aspnetmvc-version","value":"5.2"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"strict-transport-security","value":"max-age=2592000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"access-control-allow-origin","value":"https://app.researchautomators.com"},{"key":"x-content-type-options","value":"nosniff"},{"key":"access-control-allow-headers","value":"Origin, X-Requested-With, Content-Type, Accept"},{"key":"date","value":"Tue, 24 Mar 2026 13:33:21 GMT"},{"key":"content-length","value":"79"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"file\": \"Temporary\\\\6dc40b85-bd6b-4e18-a86c-3ddc3d95f53c\\\\ResponseImport.json\"\n},\n{\n    \"file\": \"Temporary\\\\643d600c-c220-46e0-a8d9-4e07fb32c83c\\\\response.xlsx\"\n}"}],"_postman_id":"91da1266-9b37-450b-aa2a-8b0da6d51994"}],"id":"91738230-c190-4835-bc03-d8b3b2106919","_postman_id":"91738230-c190-4835-bc03-d8b3b2106919","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]},"isInherited":true,"source":{"_postman_id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","id":"fc9fdc73-6c88-4e31-a35c-0985d86d2136","name":"Survey Automator API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{vault:ra-api-key}}"}]}},"event":[{"listen":"prerequest","script":{"id":"a74f0b02-2f65-496f-b755-12bd00f42cce","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"a11522ef-4ccf-410e-9321-62ad1b9712cf","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"BaseURL","value":"https://app.researchautomators.com"},{"key":"projectID","value":""},{"key":"taskID","value":""},{"key":"fileName","value":""},{"key":"fileName2","value":"","type":"default"}]}