From b3d93942fa19640dc092a88722704f55a2bea1cd Mon Sep 17 00:00:00 2001 From: nadavosa Date: Mon, 18 May 2026 14:34:03 +0200 Subject: [PATCH 01/89] test(#223): add unit tests for data utils (getRRULE, getStartEndDates, passwd, fetchJsonFromUrl) Co-Authored-By: Claude Sonnet 4.6 --- src/test/data/utils/fetch-json.test.ts | 35 ++++++++++ src/test/data/utils/get-rrule.test.ts | 32 +++++++++ .../data/utils/get-start-end-dates.test.ts | 65 +++++++++++++++++++ src/test/data/utils/passwd.test.ts | 44 +++++++++++++ 4 files changed, 176 insertions(+) create mode 100644 src/test/data/utils/fetch-json.test.ts create mode 100644 src/test/data/utils/get-rrule.test.ts create mode 100644 src/test/data/utils/get-start-end-dates.test.ts create mode 100644 src/test/data/utils/passwd.test.ts diff --git a/src/test/data/utils/fetch-json.test.ts b/src/test/data/utils/fetch-json.test.ts new file mode 100644 index 00000000..ac8daec0 --- /dev/null +++ b/src/test/data/utils/fetch-json.test.ts @@ -0,0 +1,35 @@ +import * as fs from "fs/promises"; +import { describe, expect, it, vi } from "vitest"; +import { fetchJsonFromUrl } from "../../../data/utils"; + +vi.mock("fs/promises", () => ({ + readFile: vi.fn(), +})); + +describe("fetchJsonFromUrl", () => { + it("reads and parses JSON from a file path", async () => { + vi.mocked(fs.readFile).mockResolvedValueOnce('{"key":"value"}'); + const result = await fetchJsonFromUrl("./data/seed.json"); + expect(result).toEqual({ key: "value" }); + expect(fs.readFile).toHaveBeenCalledWith("./data/seed.json", "utf-8"); + }); + + it("fetches JSON from a URL", async () => { + const mockFetch = vi.fn().mockResolvedValueOnce({ + json: () => Promise.resolve({ remote: true }), + }); + vi.stubGlobal("fetch", mockFetch); + + const result = await fetchJsonFromUrl("https://example.com/data.json"); + expect(result).toEqual({ remote: true }); + expect(mockFetch).toHaveBeenCalledWith("https://example.com/data.json"); + + vi.unstubAllGlobals(); + }); + + it("treats absolute paths as file system paths", async () => { + vi.mocked(fs.readFile).mockResolvedValueOnce('{"absolute":true}'); + const result = await fetchJsonFromUrl("/etc/config.json"); + expect(result).toEqual({ absolute: true }); + }); +}); diff --git a/src/test/data/utils/get-rrule.test.ts b/src/test/data/utils/get-rrule.test.ts new file mode 100644 index 00000000..cf96fad5 --- /dev/null +++ b/src/test/data/utils/get-rrule.test.ts @@ -0,0 +1,32 @@ +import { describe, expect, it } from "vitest"; +import { getRRULE } from "../../../data/utils"; + +describe("getRRULE", () => { + it("returns RRULE string for each valid weekday (case-insensitive)", () => { + expect(getRRULE("monday")).toBe("FREQ=WEEKLY;BYDAY=MO;"); + expect(getRRULE("Tuesday")).toBe("FREQ=WEEKLY;BYDAY=TU;"); + expect(getRRULE("WEDNESDAY")).toBe("FREQ=WEEKLY;BYDAY=WE;"); + expect(getRRULE("thursday")).toBe("FREQ=WEEKLY;BYDAY=TH;"); + expect(getRRULE("Friday")).toBe("FREQ=WEEKLY;BYDAY=FR;"); + expect(getRRULE("saturday")).toBe("FREQ=WEEKLY;BYDAY=SA;"); + expect(getRRULE("sunday")).toBe("FREQ=WEEKLY;BYDAY=SU;"); + }); + + it("returns null for invalid day names", () => { + expect(getRRULE("weekday")).toBeNull(); + expect(getRRULE("mon")).toBeNull(); + expect(getRRULE("")).toBeNull(); + expect(getRRULE("holiday")).toBeNull(); + }); + + it("returns null for non-string input", () => { + expect(getRRULE(null as any)).toBeNull(); + expect(getRRULE(undefined as any)).toBeNull(); + expect(getRRULE(1 as any)).toBeNull(); + }); + + it("returns null for strings with leading or trailing whitespace", () => { + expect(getRRULE(" monday")).toBeNull(); + expect(getRRULE("monday ")).toBeNull(); + }); +}); diff --git a/src/test/data/utils/get-start-end-dates.test.ts b/src/test/data/utils/get-start-end-dates.test.ts new file mode 100644 index 00000000..ede37a8b --- /dev/null +++ b/src/test/data/utils/get-start-end-dates.test.ts @@ -0,0 +1,65 @@ +import { describe, expect, it } from "vitest"; +import { getStartEnd, getStartEndDates } from "../../../data/utils"; + +describe("getStartEndDates", () => { + it("returns start and end Date objects with correct hours", () => { + const { start, end } = getStartEndDates(8, 11); + expect(start).toBeInstanceOf(Date); + expect(end).toBeInstanceOf(Date); + expect(start.getHours()).toBe(8); + expect(end.getHours()).toBe(11); + }); + + it("sets minutes, seconds, and ms to 0 on start", () => { + const { start } = getStartEndDates(10, 14); + expect(start.getMinutes()).toBe(0); + expect(start.getSeconds()).toBe(0); + expect(start.getMilliseconds()).toBe(0); + }); + + it("uses provided date for start, defaults to 2024-01-01 for end", () => { + const custom = new Date("2025-06-15"); + const { start, end } = getStartEndDates(9, 12, custom); + expect(start.getFullYear()).toBe(2025); + expect(start.getMonth()).toBe(5); // June = 5 + expect(end.getFullYear()).toBe(2024); + }); +}); + +describe("getStartEnd", () => { + it("maps known morning/noon/afternoon/evening labels to hour ranges", () => { + const morning = getStartEnd("morning"); + expect(morning!.start.getHours()).toBe(8); + expect(morning!.end.getHours()).toBe(11); + + const noon = getStartEnd("noon"); + expect(noon!.start.getHours()).toBe(11); + expect(noon!.end.getHours()).toBe(14); + + const afternoon = getStartEnd("afternoon"); + expect(afternoon!.start.getHours()).toBe(14); + expect(afternoon!.end.getHours()).toBe(17); + + const evening = getStartEnd("evening"); + expect(evening!.start.getHours()).toBe(17); + expect(evening!.end.getHours()).toBe(20); + }); + + it("maps time-range string formats", () => { + const r1 = getStartEnd("08-11"); + expect(r1!.start.getHours()).toBe(8); + expect(r1!.end.getHours()).toBe(11); + + // "8:00 - 10:00" is mapped to startHour:8, endHour:11 in the source map + const r2 = getStartEnd("8:00 - 10:00"); + expect(r2!.start.getHours()).toBe(8); + expect(r2!.end.getHours()).toBe(11); + }); + + it("returns null for unrecognized or unavailability strings", () => { + expect(getStartEnd("not")).toBeNull(); + expect(getStartEnd("available")).toBeNull(); + expect(getStartEnd("verfügbar")).toBeNull(); + expect(getStartEnd("unknown")).toBeNull(); + }); +}); diff --git a/src/test/data/utils/passwd.test.ts b/src/test/data/utils/passwd.test.ts new file mode 100644 index 00000000..7df649fe --- /dev/null +++ b/src/test/data/utils/passwd.test.ts @@ -0,0 +1,44 @@ +import * as bcrypt from "bcrypt"; +import { describe, expect, it, vi } from "vitest"; +import { hashPassword, verifyPassword } from "../../../data/utils"; + +vi.mock("bcrypt"); + +describe("hashPassword", () => { + it("uses 10 salt rounds and returns the resulting hash", async () => { + vi.mocked(bcrypt.genSalt).mockResolvedValue("fakesalt" as any); + vi.mocked(bcrypt.hash).mockResolvedValue("$2b$10$fakehash" as any); + + const result = await hashPassword("mypassword"); + + expect(bcrypt.genSalt).toHaveBeenCalledWith(10); + expect(bcrypt.hash).toHaveBeenCalledWith("mypassword", "fakesalt"); + expect(result).toBe("$2b$10$fakehash"); + }); + + it("wraps bcrypt errors in a generic message", async () => { + vi.mocked(bcrypt.genSalt).mockRejectedValue(new Error("bcrypt internal failure")); + await expect(hashPassword("password")).rejects.toThrow("Could not hash password."); + }); +}); + +describe("verifyPassword", () => { + it("returns true when bcrypt.compare resolves to true", async () => { + vi.mocked(bcrypt.compare).mockResolvedValue(true as any); + + const result = await verifyPassword("plain", "$2b$10$hash"); + + expect(bcrypt.compare).toHaveBeenCalledWith("plain", "$2b$10$hash"); + expect(result).toBe(true); + }); + + it("returns false when bcrypt.compare resolves to false", async () => { + vi.mocked(bcrypt.compare).mockResolvedValue(false as any); + expect(await verifyPassword("wrong", "$2b$10$hash")).toBe(false); + }); + + it("wraps bcrypt errors in a generic message", async () => { + vi.mocked(bcrypt.compare).mockRejectedValue(new Error("bcrypt internal failure")); + await expect(verifyPassword("plain", "hash")).rejects.toThrow("Could not verify password."); + }); +}); From 71387ac6605766f7b03f4eff908628ac9a86c3ab Mon Sep 17 00:00:00 2001 From: arturasmckwcz <57557793+arturasmckwcz@users.noreply.github.com> Date: Thu, 18 Jun 2026 18:03:47 +0000 Subject: [PATCH 02/89] chore: sync shared CLAUDE rules --- .claude/shared-rules.md | 44 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .claude/shared-rules.md diff --git a/.claude/shared-rules.md b/.claude/shared-rules.md new file mode 100644 index 00000000..d4bbdf01 --- /dev/null +++ b/.claude/shared-rules.md @@ -0,0 +1,44 @@ +# Shared project rules + +These rules apply to **all three repos** (`be`, `fe`, `sdk`). This file is synced from the +org `.github` repo — do not edit it inside a downstream repo; change it at the source and let +the sync open a PR. Repo-specific rules live below the import in each repo's own `CLAUDE.md`. + +## API changes go through the SDK contract first + +The `sdk` is the single source of truth for the API contract. Any change to the API surface +(endpoints, request/response shapes, types, error codes) **MUST** follow this order: + +1. Define or update the contract in the `sdk` repo first. +2. Publish the new SDK version to npm. +3. Only then update `be` and `fe` to consume the change. + +**IMPORTANT:** `be` and `fe` MUST depend on the SDK as published on **npmjs.com** — never on the +local `sdk` checkout or a sibling folder. Do not use `file:../sdk`, `npm link`, workspace or +`link:` references, or any other local linking for the SDK dependency. Pin to a version that is +actually published. If the version you need isn't on npmjs.com yet, the work is **not ready** to +land in `be`/`fe` — finish and publish the SDK first. + +Do not implement or "stub" an API change in `be` or `fe` ahead of the contract. If the contract is +missing, wrong, or incomplete, fix it in `sdk` and publish — never work around it locally. + +Allways make sure all API related issues are based on the latest dependency "need4deed-sdk". + +## Reuse before you create + +Before adding any new util, helper, hook, component, or shared function, **first search** the +codebase (and the SDK) for something that already does the job. Prefer reusing or extending +existing code over writing a near-duplicate. If nothing fits and you must add a new one, state +briefly why the existing options didn't work. + +## Be conservative with database schema changes + +Before altering the database schema: + +- Confirm the change is **absolutely necessary** and cannot reasonably be solved without touching + the schema. +- Confirm it is **semantically correct** — names and structure must match existing modeling + conventions and clearly express what the data represents. + +Surface the proposed change and your reasoning *before* writing a migration. Schema changes are +deliberate decisions, not incidental side effects of a feature. From ccd59bfb9a665aca6196459c38a60f8cde286f78 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz Date: Fri, 19 Jun 2026 12:39:10 +0200 Subject: [PATCH 03/89] fix(test): align data-utils tests with real implementations The mocking approach didn't work under this repo's swc transform: vi.mock only intercepts inlined local modules, not externalized node builtins/deps (bcrypt, fs/promises), so those mocks were never applied and the real implementations ran. Also removed tests for a non-existent getStartEndDates function (only getStartEnd exists). - passwd: test real bcrypt hash/verify behaviour + error wrapping - fetch-json: read a real temp file for the file-path branches - get-start-end-dates: drop the getStartEndDates block Co-Authored-By: Claude Opus 4.8 --- src/test/data/utils/fetch-json.test.ts | 43 ++++++++++------ .../data/utils/get-start-end-dates.test.ts | 27 +--------- src/test/data/utils/passwd.test.ts | 49 +++++++++---------- 3 files changed, 52 insertions(+), 67 deletions(-) diff --git a/src/test/data/utils/fetch-json.test.ts b/src/test/data/utils/fetch-json.test.ts index ac8daec0..d719b702 100644 --- a/src/test/data/utils/fetch-json.test.ts +++ b/src/test/data/utils/fetch-json.test.ts @@ -1,17 +1,36 @@ -import * as fs from "fs/promises"; -import { describe, expect, it, vi } from "vitest"; +import { mkdtemp, rm, writeFile } from "fs/promises"; +import { tmpdir } from "os"; +import { join, relative } from "path"; +import { afterAll, beforeAll, describe, expect, it, vi } from "vitest"; import { fetchJsonFromUrl } from "../../../data/utils"; -vi.mock("fs/promises", () => ({ - readFile: vi.fn(), -})); +// `fs/promises` is an externalized node builtin and is not intercepted by +// `vi.mock` under the swc transform used here, so the file-path branches are +// tested against a real temp file rather than a mocked readFile. describe("fetchJsonFromUrl", () => { - it("reads and parses JSON from a file path", async () => { - vi.mocked(fs.readFile).mockResolvedValueOnce('{"key":"value"}'); - const result = await fetchJsonFromUrl("./data/seed.json"); + let dir: string; + let filePath: string; + + beforeAll(async () => { + dir = await mkdtemp(join(tmpdir(), "fetch-json-")); + filePath = join(dir, "data.json"); + await writeFile(filePath, '{"key":"value"}', "utf-8"); + }); + + afterAll(async () => { + await rm(dir, { recursive: true, force: true }); + }); + + it("reads and parses JSON from a dot-relative file path", async () => { + const relPath = `./${relative(process.cwd(), filePath)}`; + const result = await fetchJsonFromUrl(relPath); + expect(result).toEqual({ key: "value" }); + }); + + it("treats absolute paths as file system paths", async () => { + const result = await fetchJsonFromUrl(filePath); expect(result).toEqual({ key: "value" }); - expect(fs.readFile).toHaveBeenCalledWith("./data/seed.json", "utf-8"); }); it("fetches JSON from a URL", async () => { @@ -26,10 +45,4 @@ describe("fetchJsonFromUrl", () => { vi.unstubAllGlobals(); }); - - it("treats absolute paths as file system paths", async () => { - vi.mocked(fs.readFile).mockResolvedValueOnce('{"absolute":true}'); - const result = await fetchJsonFromUrl("/etc/config.json"); - expect(result).toEqual({ absolute: true }); - }); }); diff --git a/src/test/data/utils/get-start-end-dates.test.ts b/src/test/data/utils/get-start-end-dates.test.ts index ede37a8b..429d24fc 100644 --- a/src/test/data/utils/get-start-end-dates.test.ts +++ b/src/test/data/utils/get-start-end-dates.test.ts @@ -1,30 +1,5 @@ import { describe, expect, it } from "vitest"; -import { getStartEnd, getStartEndDates } from "../../../data/utils"; - -describe("getStartEndDates", () => { - it("returns start and end Date objects with correct hours", () => { - const { start, end } = getStartEndDates(8, 11); - expect(start).toBeInstanceOf(Date); - expect(end).toBeInstanceOf(Date); - expect(start.getHours()).toBe(8); - expect(end.getHours()).toBe(11); - }); - - it("sets minutes, seconds, and ms to 0 on start", () => { - const { start } = getStartEndDates(10, 14); - expect(start.getMinutes()).toBe(0); - expect(start.getSeconds()).toBe(0); - expect(start.getMilliseconds()).toBe(0); - }); - - it("uses provided date for start, defaults to 2024-01-01 for end", () => { - const custom = new Date("2025-06-15"); - const { start, end } = getStartEndDates(9, 12, custom); - expect(start.getFullYear()).toBe(2025); - expect(start.getMonth()).toBe(5); // June = 5 - expect(end.getFullYear()).toBe(2024); - }); -}); +import { getStartEnd } from "../../../data/utils"; describe("getStartEnd", () => { it("maps known morning/noon/afternoon/evening labels to hour ranges", () => { diff --git a/src/test/data/utils/passwd.test.ts b/src/test/data/utils/passwd.test.ts index 7df649fe..77af201a 100644 --- a/src/test/data/utils/passwd.test.ts +++ b/src/test/data/utils/passwd.test.ts @@ -1,44 +1,41 @@ -import * as bcrypt from "bcrypt"; -import { describe, expect, it, vi } from "vitest"; +import { describe, expect, it } from "vitest"; import { hashPassword, verifyPassword } from "../../../data/utils"; -vi.mock("bcrypt"); +// These tests exercise the real bcrypt implementation. Externalized node +// modules (like bcrypt) are not intercepted by `vi.mock` under the swc +// transform used here, so mocking bcrypt is not reliable — we test behaviour. describe("hashPassword", () => { - it("uses 10 salt rounds and returns the resulting hash", async () => { - vi.mocked(bcrypt.genSalt).mockResolvedValue("fakesalt" as any); - vi.mocked(bcrypt.hash).mockResolvedValue("$2b$10$fakehash" as any); - - const result = await hashPassword("mypassword"); - - expect(bcrypt.genSalt).toHaveBeenCalledWith(10); - expect(bcrypt.hash).toHaveBeenCalledWith("mypassword", "fakesalt"); - expect(result).toBe("$2b$10$fakehash"); + it("returns a bcrypt hash that differs from the plain text", async () => { + const hash = await hashPassword("mypassword"); + expect(typeof hash).toBe("string"); + expect(hash).not.toBe("mypassword"); + expect(hash.startsWith("$2")).toBe(true); }); it("wraps bcrypt errors in a generic message", async () => { - vi.mocked(bcrypt.genSalt).mockRejectedValue(new Error("bcrypt internal failure")); - await expect(hashPassword("password")).rejects.toThrow("Could not hash password."); + // bcrypt.hash throws when given non-string data, hitting the catch branch. + await expect(hashPassword(undefined as never)).rejects.toThrow( + "Could not hash password.", + ); }); }); describe("verifyPassword", () => { - it("returns true when bcrypt.compare resolves to true", async () => { - vi.mocked(bcrypt.compare).mockResolvedValue(true as any); - - const result = await verifyPassword("plain", "$2b$10$hash"); - - expect(bcrypt.compare).toHaveBeenCalledWith("plain", "$2b$10$hash"); - expect(result).toBe(true); + it("returns true when the password matches the hash", async () => { + const hash = await hashPassword("correct horse"); + expect(await verifyPassword("correct horse", hash)).toBe(true); }); - it("returns false when bcrypt.compare resolves to false", async () => { - vi.mocked(bcrypt.compare).mockResolvedValue(false as any); - expect(await verifyPassword("wrong", "$2b$10$hash")).toBe(false); + it("returns false when the password does not match the hash", async () => { + const hash = await hashPassword("correct horse"); + expect(await verifyPassword("wrong", hash)).toBe(false); }); it("wraps bcrypt errors in a generic message", async () => { - vi.mocked(bcrypt.compare).mockRejectedValue(new Error("bcrypt internal failure")); - await expect(verifyPassword("plain", "hash")).rejects.toThrow("Could not verify password."); + // bcrypt.compare throws when the hash argument is missing. + await expect(verifyPassword("plain", undefined as never)).rejects.toThrow( + "Could not verify password.", + ); }); }); From a1d083eccf2afc4567067ee185748661ebbb55ef Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz Date: Fri, 19 Jun 2026 13:29:52 +0200 Subject: [PATCH 04/89] chore(test): fix no-unused-vars lint errors in types.test.ts The compile-time type tests declare consts solely to trip their @ts-expect-error directives, so they are never read. Prefix them with `_` (the escape hatch the no-unused-vars rule is configured to allow) and apply Prettier formatting. Side effect: reference the shared .claude/shared-rules.md from CLAUDE.md. Co-Authored-By: Claude Opus 4.8 --- CLAUDE.md | 2 ++ src/test/server/utils/types.test.ts | 24 ++++++++++++++---------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 90458ff8..4b49eeb7 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,3 +1,5 @@ +@.claude/shared-rules.md + # CLAUDE.md This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. diff --git a/src/test/server/utils/types.test.ts b/src/test/server/utils/types.test.ts index d62037c4..5228fb4f 100644 --- a/src/test/server/utils/types.test.ts +++ b/src/test/server/utils/types.test.ts @@ -1,5 +1,9 @@ -import { describe, it, expect } from "vitest"; -import type { EnumValuesMap, ExtendWithEnumValues, DeeplyNestedObject } from "../../../server/utils"; +import { describe, expect, it } from "vitest"; +import type { + DeeplyNestedObject, + EnumValuesMap, + ExtendWithEnumValues, +} from "../../../server/utils"; describe("server/utils/types", () => { it("EnumValuesMap: maps enum values to V and enforces keys/types at compile time", () => { @@ -10,13 +14,13 @@ describe("server/utils/types", () => { expect(ok.a).toBe(1); // @ts-expect-error - missing key 'b' - const missingKey: M = { a: 1 }; + const _missingKey: M = { a: 1 }; // @ts-expect-error - extra key 'c' not allowed - const extraKey: M = { a: 1, b: 2, c: 3 }; + const _extraKey: M = { a: 1, b: 2, c: 3 }; // @ts-expect-error - wrong value type for 'a' - const wrongValue: M = { a: "no", b: 2 }; + const _wrongValue: M = { a: "no", b: 2 }; }); it("ExtendWithEnumValues: merges base and enum-derived keys", () => { @@ -28,10 +32,10 @@ describe("server/utils/types", () => { expect(ok.id).toBe(10); // @ts-expect-error - missing enum key 'y' - const missingEnum: R = { id: 1, x: true }; + const _missingEnum: R = { id: 1, x: true }; // @ts-expect-error - wrong type for enum key 'x' - const wrongEnumType: R = { id: 1, x: 1, y: false }; + const _wrongEnumType: R = { id: 1, x: 1, y: false }; }); it("DeeplyNestedObject: accepts primitives, nested plain objects and arrays; rejects disallowed types", () => { @@ -48,9 +52,9 @@ describe("server/utils/types", () => { expect((good.obj as any).inner.leaf).toBe("v"); // @ts-expect-error - functions are not allowed - const badFn: DeeplyNestedObject = { f: () => {} }; + const _badFn: DeeplyNestedObject = { f: () => {} }; // @ts-expect-error - Date (class instance) is not permitted by the type - const badDate: DeeplyNestedObject = { d: new Date() }; + const _badDate: DeeplyNestedObject = { d: new Date() }; }); -}); \ No newline at end of file +}); From d4add691d194e3397bb68d9f04152b7fb6465d3a Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Sun, 21 Jun 2026 11:41:07 +0000 Subject: [PATCH 05/89] add: reading port from env var --- docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 8f46ac37..24d832ef 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -22,7 +22,7 @@ services: - DB_NAME=postgres - DB_SCHEMA=public ports: - - 5000:5000 + - ${BE_PORT:-5000}:5000 volumes: - ./:/app command: ["yarn", "dev"] From 90654cb601ab88418f5780c709a2677d17128f11 Mon Sep 17 00:00:00 2001 From: Nadavos Date: Mon, 22 Jun 2026 12:07:37 +0200 Subject: [PATCH 06/89] Link opportunity contact person to agent_person on legacy form submit (#665) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ✨ link opportunity contact person to agent_person on legacy form submit When a legacy form submission creates an opportunity, the contact person is now also inserted into agent_person (VOLUNTEER_COORDINATOR) for the matched/created agent. This builds up the full list of known persons per agent over time without touching the existing representative. The submitter was already linked via getOrCreateSubmitterPerson; this covers the contact person which was previously only linked to the opportunity. Resolves https://github.com/need4deed-org/be/issues/664 Co-Authored-By: Claude Sonnet 4.6 * fix(#665): use getOrCreateSubmitterPerson for contact person — dedup by email + guarded agent_person insert Replace the plain parseContactPerson + unconditional AgentPerson save with getOrCreateSubmitterPerson, which email-deduplicates the Person record and only inserts agent_person when the link does not already exist. Also removes the duplicate Person + AgentPerson creation from findOrCreateAgent's new-agent transaction: the handler now owns person resolution for both contactPersonId and submittedByPersonId. A bare parseContactPerson fallback is kept for the no-email case (no dedup possible, no agent_person link). Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 Co-authored-by: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Co-authored-by: arturasmckwcz --- .../routes/opportunity/legacy.routes.ts | 55 ++++++++++--------- 1 file changed, 29 insertions(+), 26 deletions(-) diff --git a/src/server/routes/opportunity/legacy.routes.ts b/src/server/routes/opportunity/legacy.routes.ts index 14df7fcf..7945aec6 100644 --- a/src/server/routes/opportunity/legacy.routes.ts +++ b/src/server/routes/opportunity/legacy.routes.ts @@ -4,18 +4,16 @@ import { FastifyPluginOptions, } from "fastify"; import { - AgentRoleType, OpportunityLegacyFormData, OpportunityStatusType, } from "need4deed-sdk"; import { In } from "typeorm"; import { dataSource } from "../../../data/data-source"; import Address from "../../../data/entity/location/address.entity"; -import AgentPerson from "../../../data/entity/m2m/agent-person"; import Agent from "../../../data/entity/opportunity/agent.entity"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; import Person from "../../../data/entity/person.entity"; -import Comment from "../../../data/entity/comment.entity"; +import { getPostcode, getRepository } from "../../../data/utils"; import logger from "../../../logger"; import { accompanyingParserOpportunity, @@ -23,7 +21,6 @@ import { parseOpportunityLegacy, } from "../../../services"; import { dealParserOpportunity } from "../../../services/dto/parser-deal-opportunity"; -import { getPostcode, getRepository } from "../../../data/utils"; import { getAgentByAddress, getDistrictToOpportunityHandler, @@ -48,7 +45,9 @@ async function findOrCreateAgent( formData: OpportunityLegacyFormData, ): Promise { if (!formData.rac_address || !formData.rac_plz) { - logger.warn("Legacy form missing rac_address or rac_plz — falling back to orphanage agent"); + logger.warn( + "Legacy form missing rac_address or rac_plz — falling back to orphanage agent", + ); return getOpportunityOrphanageAgent(); } @@ -57,8 +56,12 @@ async function findOrCreateAgent( relations: ["address.postcode", "agentPostcode.postcode"], }); - const match = getAgentByAddress(agents, formData.rac_address, formData.rac_plz); - if (match) return match; + const match = getAgentByAddress( + agents, + formData.rac_address, + formData.rac_plz, + ); + if (match) {return match;} logger.info( `No agent found for address "${formData.rac_address}" ${formData.rac_plz} — creating new agent`, @@ -67,21 +70,18 @@ async function findOrCreateAgent( const postcode = await getPostcode(formData.rac_plz); return dataSource.manager.transaction(async (em) => { - const address = new Address({ street: formData.rac_address, postcodeId: postcode.id }); + const address = new Address({ + street: formData.rac_address, + postcodeId: postcode.id, + }); await em.save(address); - const person = parseContactPerson(formData); - await em.save(person); - - const agent = new Agent({ title: formData.rac_address, addressId: address.id }); + const agent = new Agent({ + title: formData.rac_address, + addressId: address.id, + }); await em.save(agent); - await em.save(new AgentPerson({ - agentId: agent.id, - personId: person.id, - role: AgentRoleType.VOLUNTEER_COORDINATOR, - })); - return agent; }); } @@ -107,21 +107,24 @@ export default async function opportunityLegacyRoutes( opportunity.agent = await findOrCreateAgent(request.body); - const personRepository = getRepository(dataSource, Person); - const contactPerson = parseContactPerson(request.body); - await personRepository.save(contactPerson); - opportunity.contactPersonId = contactPerson.id; - const { addDistrictToOpportunity } = getDistrictToOpportunityHandler(); Object.assign(opportunity, await addDistrictToOpportunity(opportunity)); if (opportunity.agent?.id) { - const submitter = await getOrCreateSubmitterPerson( + const person = await getOrCreateSubmitterPerson( request.body, opportunity.agent.id, ); - if (submitter) { - opportunity.submittedByPersonId = submitter.id; + if (person) { + opportunity.contactPersonId = person.id; + opportunity.submittedByPersonId = person.id; + } else { + // No rac_email on form — create a bare Person for contactPersonId + // without deduplication or an agent_person link. + const personRepository = getRepository(dataSource, Person); + const contactPerson = parseContactPerson(request.body); + await personRepository.save(contactPerson); + opportunity.contactPersonId = contactPerson.id; } } From d2039f88a54ebf070cebdf01b8ac27bdb4700c14 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Mon, 22 Jun 2026 13:45:35 +0200 Subject: [PATCH 07/89] fix(#701): add language querystring schema to GET/PATCH /volunteer/:id and POST /volunteer/ (#702) Exports langQuerySchema from querystring.ts and wires it into the three volunteer endpoints that accept a language param, so Swagger shows the parameter correctly. Co-authored-by: Claude Sonnet 4.6 --- src/server/routes/volunteer/volunteer.routes.ts | 4 ++++ src/server/schema/querystring.ts | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/src/server/routes/volunteer/volunteer.routes.ts b/src/server/routes/volunteer/volunteer.routes.ts index 2f1e7c7f..bf5f27f7 100644 --- a/src/server/routes/volunteer/volunteer.routes.ts +++ b/src/server/routes/volunteer/volunteer.routes.ts @@ -26,6 +26,7 @@ import { } from "../../../services"; import { idParamSchema, + langQuerySchema, responseErrors, responseSchema, volunteerListQuerySchema, @@ -137,6 +138,7 @@ export default async function volunteerRoutes( { schema: { params: idParamSchema, + querystring: langQuerySchema, response: responseSchema("volunteer-api-id#"), }, }, @@ -267,6 +269,7 @@ export default async function volunteerRoutes( onRequest: fastify.authenticate({ role: UserRole.COORDINATOR }), schema: { params: idParamSchema, + querystring: langQuerySchema, body: { $ref: "volunteer-api-id-part#" }, response: { 200: { @@ -442,6 +445,7 @@ export default async function volunteerRoutes( { onRequest: fastify.authenticate({ role: UserRole.COORDINATOR }), schema: { + querystring: langQuerySchema, body: { $ref: "volunteer-form-data" }, response: { 201: { diff --git a/src/server/schema/querystring.ts b/src/server/schema/querystring.ts index e80ecaf9..d29e185d 100644 --- a/src/server/schema/querystring.ts +++ b/src/server/schema/querystring.ts @@ -7,6 +7,11 @@ const paginationProps = { }; const langProp = { language: { type: "string" } }; +export const langQuerySchema = { + type: "object", + properties: langProp, +}; + const sortOrderProps = { sortOrder: { type: "string", From 6da69d807a98c7df51133882633b830d198f8870 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Mon, 22 Jun 2026 16:49:03 +0200 Subject: [PATCH 08/89] refactor(notify): extract shared email-template helper (#703) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * refactor(notify): extract shared email-template helper Introduces `email-template.ts` with `fillTemplate`, `createManifestLoader`, `resolveLocale`, and `resolveContent` so future email types (suggestions, reminders, matching notifications) reuse the same CDN-manifest + placeholder infrastructure without duplication. - `fillTemplate(content, vars)` replaces all `{{ key }}` placeholders via regex; unresolved keys are preserved in output and logged as warnings - `createManifestLoader(url)` is a factory with per-instance TTL cache and `resetCache()` for test isolation, replacing the module-level cache pattern - `email-verification.ts` reduced from 141 → 70 lines; all infrastructure imported from the new module, public API unchanged - 20 new tests in `email-template.test.ts`; all 26 tests pass Co-Authored-By: Claude Sonnet 4.6 * fix: widen TemplateVars to string|number, fix fake timer cleanup Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 --- src/services/notify/email-template.ts | 115 ++++++++++ .../notify/events/email-verification.ts | 105 ++------- .../services/notify/email-template.test.ts | 211 ++++++++++++++++++ 3 files changed, 347 insertions(+), 84 deletions(-) create mode 100644 src/services/notify/email-template.ts create mode 100644 src/test/services/notify/email-template.test.ts diff --git a/src/services/notify/email-template.ts b/src/services/notify/email-template.ts new file mode 100644 index 00000000..45fae72d --- /dev/null +++ b/src/services/notify/email-template.ts @@ -0,0 +1,115 @@ +import { Lang } from "need4deed-sdk"; +import { + emailTemplateFetchTimeoutMs, + emailTemplateTtlMs, +} from "../../config/constants"; +import { fetchJsonFromUrl } from "../../data/utils"; +import logger from "../../logger"; + +export interface LocaleContent { + subject: string; + html?: string; + text?: string; +} + +export type Manifest = Partial>; +export type TemplateVars = Record; + +const DEFAULT_LOCALE = Lang.EN; +const PLACEHOLDER_RE = /\{\{\s*(\w+)\s*\}\}/g; + +/** + * Replace all {{ key }} placeholders in the template content with values from + * vars. Handles optional whitespace around keys. Each placeholder that has no + * matching key in vars is left unchanged and a warning is logged so template + * mismatches surface early. + */ +export function fillTemplate( + content: LocaleContent, + vars: TemplateVars, +): { subject: string; html?: string; text?: string } { + const fill = (s: string): string => + s.replace(PLACEHOLDER_RE, (match, key: string) => { + if (!(key in vars)) { + logger.warn(`email template: unresolved placeholder {{${key}}}`); + return match; + } + return String(vars[key]); + }); + + return { + subject: fill(content.subject), + ...(content.html !== undefined ? { html: fill(content.html) } : {}), + ...(content.text !== undefined ? { text: fill(content.text) } : {}), + }; +} + +export function resolveLocale(language: string | undefined): Lang { + return language === Lang.DE + ? Lang.DE + : language === Lang.EN + ? Lang.EN + : DEFAULT_LOCALE; +} + +function isValid(content: LocaleContent | undefined): content is LocaleContent { + return Boolean(content?.subject && (content.html || content.text)); +} + +export function resolveContent( + manifest: Manifest | null, + locale: Lang, + builtin: Record, +): LocaleContent { + const candidates = [manifest?.[locale], manifest?.[DEFAULT_LOCALE]]; + return candidates.find(isValid) ?? builtin[locale] ?? builtin[DEFAULT_LOCALE]; +} + +async function withTimeout(promise: Promise, ms: number): Promise { + let timer: ReturnType; + const timeout = new Promise((_resolve, reject) => { + timer = setTimeout(() => reject(new Error(`timed out after ${ms}ms`)), ms); + }); + try { + return await Promise.race([promise, timeout]); + } finally { + clearTimeout(timer!); + } +} + +/** + * Returns a cached CDN manifest loader bound to a specific URL. Each email + * type creates its own loader; they share the same TTL/timeout config but keep + * separate caches. resetCache() is exposed for test isolation. + */ +export function createManifestLoader(url: string): { + load(): Promise; + resetCache(): void; +} { + let cache: { value: Manifest; expires: number } | null = null; + + return { + resetCache() { + cache = null; + }, + async load(): Promise { + const now = Date.now(); + if (cache && now < cache.expires) { + return cache.value; + } + try { + const value = (await withTimeout( + fetchJsonFromUrl(url), + emailTemplateFetchTimeoutMs, + )) as Manifest; + cache = { value, expires: now + emailTemplateTtlMs }; + return value; + } catch (err) { + logger.warn( + `email manifest fetch failed (${url}): ${err instanceof Error ? err.message : err}`, + ); + return cache?.value ?? null; + } + }, + }; +} diff --git a/src/services/notify/events/email-verification.ts b/src/services/notify/events/email-verification.ts index fda6fb8f..8a59eeb5 100644 --- a/src/services/notify/events/email-verification.ts +++ b/src/services/notify/events/email-verification.ts @@ -1,14 +1,18 @@ import type { JWT, TokenType } from "@fastify/jwt"; import { Lang } from "need4deed-sdk"; import { - emailTemplateFetchTimeoutMs, - emailTemplateTtlMs, emailVerificationManifestUrl, urlEmailVerification, } from "../../../config/constants"; import type User from "../../../data/entity/user.entity"; -import { fetchJsonFromUrl } from "../../../data/utils"; import logger from "../../../logger"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; import type { EmailMessage, EmailTransport } from "../types"; export interface EmailVerificationDeps { @@ -16,94 +20,24 @@ export interface EmailVerificationDeps { jwt: JWT; } -interface LocaleContent { - subject: string; - html?: string; - text?: string; -} -type VerificationManifest = Partial>; - -const URL_PLACEHOLDER = "{{verificationUrl}}"; -const DEFAULT_LOCALE = Lang.EN; - -// Built-in fallback used when the CDN manifest is missing/invalid, so a -// verification email always sends (and in the user's language where possible). const BUILTIN: Record = { [Lang.EN]: { subject: "Account Created", - text: `Your account has been created successfully. Please verify your email:\n${URL_PLACEHOLDER}`, - html: `

Your account has been created successfully. Please verify your email:

${URL_PLACEHOLDER}

`, + text: `Your account has been created successfully. Please verify your email:\n{{verificationUrl}}`, + html: `

Your account has been created successfully. Please verify your email:

{{verificationUrl}}

`, }, [Lang.DE]: { subject: "Konto erstellt", - text: `Dein Konto wurde erfolgreich erstellt. Bitte bestätige deine E-Mail:\n${URL_PLACEHOLDER}`, - html: `

Dein Konto wurde erfolgreich erstellt. Bitte bestätige deine E-Mail:

${URL_PLACEHOLDER}

`, + text: `Dein Konto wurde erfolgreich erstellt. Bitte bestätige deine E-Mail:\n{{verificationUrl}}`, + html: `

Dein Konto wurde erfolgreich erstellt. Bitte bestätige deine E-Mail:

{{verificationUrl}}

`, }, }; -let manifestCache: { value: VerificationManifest; expires: number } | null = - null; +const loader = createManifestLoader(emailVerificationManifestUrl); /** Test-only: drop the cached manifest so each test fetches fresh. */ export function resetVerificationTemplateCache(): void { - manifestCache = null; -} - -async function withTimeout(promise: Promise, ms: number): Promise { - let timer: ReturnType; - const timeout = new Promise((_resolve, reject) => { - timer = setTimeout(() => reject(new Error(`timed out after ${ms}ms`)), ms); - }); - try { - return await Promise.race([promise, timeout]); - } finally { - clearTimeout(timer!); - } -} - -/** - * Load the email manifest from the CDN, cached in-memory for emailTemplateTtlMs. - * On any failure, serve the last good value if we have one, else null (→ the - * caller falls back to BUILTIN). Never throws. - */ -async function loadManifest(): Promise { - const now = Date.now(); - if (manifestCache && now < manifestCache.expires) { - return manifestCache.value; - } - try { - const value = (await withTimeout( - fetchJsonFromUrl(emailVerificationManifestUrl), - emailTemplateFetchTimeoutMs, - )) as VerificationManifest; - manifestCache = { value, expires: now + emailTemplateTtlMs }; - return value; - } catch (err) { - logger.warn( - `email verification manifest fetch failed: ${err instanceof Error ? err.message : err}`, - ); - return manifestCache?.value ?? null; // last-good (stale) or built-in - } -} - -function resolveLocale(language: string | undefined): Lang { - return language === Lang.DE - ? Lang.DE - : language === Lang.EN - ? Lang.EN - : DEFAULT_LOCALE; -} - -function isValid(content: LocaleContent | undefined): content is LocaleContent { - return Boolean(content?.subject && (content.html || content.text)); -} - -function resolveContent( - manifest: VerificationManifest | null, - locale: Lang, -): LocaleContent { - const candidates = [manifest?.[locale], manifest?.[DEFAULT_LOCALE]]; - return candidates.find(isValid) ?? BUILTIN[locale] ?? BUILTIN[DEFAULT_LOCALE]; + loader.resetCache(); } export async function sendEmailVerification( @@ -124,16 +58,19 @@ export async function sendEmailVerification( logger.debug(`sendEmailVerification: ${user.email}, url: ${url}`); const content = resolveContent( - await loadManifest(), + await loader.load(), resolveLocale(user.language), + BUILTIN, ); - const fill = (s?: string) => s?.split(URL_PLACEHOLDER).join(url); + const { subject, html, text } = fillTemplate(content, { + verificationUrl: url, + }); const message: EmailMessage = { to: user.email, - subject: content.subject, - ...(content.text ? { text: fill(content.text) } : {}), - ...(content.html ? { html: fill(content.html) } : {}), + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), }; await email.send(message); diff --git a/src/test/services/notify/email-template.test.ts b/src/test/services/notify/email-template.test.ts new file mode 100644 index 00000000..4e5a18b3 --- /dev/null +++ b/src/test/services/notify/email-template.test.ts @@ -0,0 +1,211 @@ +import { Lang } from "need4deed-sdk"; +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; +import { fetchJsonFromUrl } from "../../../data/utils"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../../../services/notify/email-template"; + +vi.mock("../../../data/utils", () => ({ + fetchJsonFromUrl: vi.fn(), +})); + +// ─── fillTemplate ──────────────────────────────────────────────────────────── + +describe("fillTemplate", () => { + it("substitutes a single placeholder in all fields", () => { + const result = fillTemplate( + { + subject: "Hello {{name}}", + text: "Hi {{name}}, welcome!", + html: "

Hi {{name}}

", + }, + { name: "Alice" }, + ); + expect(result.subject).toBe("Hello Alice"); + expect(result.text).toBe("Hi Alice, welcome!"); + expect(result.html).toBe("

Hi Alice

"); + }); + + it("substitutes multiple distinct placeholders", () => { + const result = fillTemplate( + { + subject: "{{event}} confirmation", + html: "

Dear {{name}}, your {{event}} is on {{date}}.

", + text: "Dear {{name}}, your {{event}} is on {{date}}.", + }, + { name: "Bob", event: "appointment", date: "2026-07-01" }, + ); + expect(result.subject).toBe("appointment confirmation"); + expect(result.html).toBe( + "

Dear Bob, your appointment is on 2026-07-01.

", + ); + expect(result.text).toBe("Dear Bob, your appointment is on 2026-07-01."); + }); + + it("replaces the same placeholder appearing multiple times", () => { + const result = fillTemplate( + { subject: "link", html: '{{url}}' }, + { url: "https://example.com/verify" }, + ); + expect(result.html).toBe( + 'https://example.com/verify', + ); + expect(result.html).not.toContain("{{url}}"); + }); + + it("accepts {{ key }} with surrounding whitespace", () => { + const result = fillTemplate( + { subject: "{{ name }} joined" }, + { name: "Eve" }, + ); + expect(result.subject).toBe("Eve joined"); + }); + + it("omits html and text keys when absent from content", () => { + const result = fillTemplate({ subject: "plain" }, {}); + expect(result).toEqual({ subject: "plain" }); + expect("html" in result).toBe(false); + expect("text" in result).toBe(false); + }); + + it("preserves unresolved placeholders in output", () => { + const result = fillTemplate( + { subject: "Hi {{name}}", text: "Code: {{code}}" }, + { name: "Alice" }, + ); + expect(result.subject).toBe("Hi Alice"); + expect(result.text).toBe("Code: {{code}}"); + }); + + it("ignores extra vars that have no matching placeholder", () => { + const result = fillTemplate( + { subject: "Hello {{name}}" }, + { name: "Dave", unused: "x" }, + ); + expect(result.subject).toBe("Hello Dave"); + }); + + it("substitutes an empty string value correctly", () => { + const result = fillTemplate({ subject: "Hi {{name}}" }, { name: "" }); + expect(result.subject).toBe("Hi "); + }); +}); + +// ─── resolveLocale ─────────────────────────────────────────────────────────── + +describe("resolveLocale", () => { + it("returns DE for 'de'", () => { + expect(resolveLocale("de")).toBe(Lang.DE); + }); + + it("returns EN for 'en'", () => { + expect(resolveLocale("en")).toBe(Lang.EN); + }); + + it("falls back to EN for unknown languages", () => { + expect(resolveLocale("fr")).toBe(Lang.EN); + expect(resolveLocale(undefined)).toBe(Lang.EN); + }); +}); + +// ─── resolveContent ────────────────────────────────────────────────────────── + +const builtin: Record = { + [Lang.EN]: { subject: "Builtin EN", text: "builtin en text" }, + [Lang.DE]: { subject: "Builtin DE", text: "builtin de text" }, +}; + +describe("resolveContent", () => { + it("returns the manifest entry for the requested locale", () => { + const manifest = { + [Lang.EN]: { subject: "Manifest EN", html: "

en

" }, + [Lang.DE]: { subject: "Manifest DE", html: "

de

" }, + }; + expect(resolveContent(manifest, Lang.DE, builtin).subject).toBe( + "Manifest DE", + ); + }); + + it("falls back to EN manifest when requested locale is missing", () => { + const manifest = { + [Lang.EN]: { subject: "Manifest EN", html: "

en

" }, + }; + expect(resolveContent(manifest, Lang.DE, builtin).subject).toBe( + "Manifest EN", + ); + }); + + it("falls back to builtin when manifest is null", () => { + expect(resolveContent(null, Lang.DE, builtin).subject).toBe("Builtin DE"); + }); + + it("falls back to builtin when manifest entry is invalid (no body)", () => { + const manifest = { [Lang.EN]: { subject: "no body" } }; + expect(resolveContent(manifest, Lang.EN, builtin).subject).toBe( + "Builtin EN", + ); + }); +}); + +// ─── createManifestLoader ──────────────────────────────────────────────────── + +describe("createManifestLoader", () => { + const url = "https://cdn.example.com/emails/test.json"; + const manifest = { + [Lang.EN]: { subject: "Test", html: "

test

" }, + }; + + beforeEach(() => { + vi.clearAllMocks(); + }); + + afterEach(() => { + vi.useRealTimers(); + }); + + it("fetches and returns the manifest", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue(manifest); + const loader = createManifestLoader(url); + expect(await loader.load()).toEqual(manifest); + }); + + it("caches within TTL (single fetch across multiple calls)", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue(manifest); + const loader = createManifestLoader(url); + await loader.load(); + await loader.load(); + expect(fetchJsonFromUrl).toHaveBeenCalledTimes(1); + }); + + it("re-fetches after resetCache()", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue(manifest); + const loader = createManifestLoader(url); + await loader.load(); + loader.resetCache(); + await loader.load(); + expect(fetchJsonFromUrl).toHaveBeenCalledTimes(2); + }); + + it("returns null on fetch failure when no stale cache exists", async () => { + vi.mocked(fetchJsonFromUrl).mockRejectedValue(new Error("CDN down")); + const loader = createManifestLoader(url); + expect(await loader.load()).toBeNull(); + }); + + it("serves stale cache when a subsequent fetch fails after TTL expires", async () => { + vi.useFakeTimers(); + vi.mocked(fetchJsonFromUrl) + .mockResolvedValueOnce(manifest) + .mockRejectedValueOnce(new Error("CDN down")); + const loader = createManifestLoader(url); + + await loader.load(); // populates cache + vi.advanceTimersByTime(11 * 60 * 1000); // past default 10-min TTL + const result = await loader.load(); // fetch fails → returns stale + expect(result).toEqual(manifest); + }); +}); From 15ebb9d56017118c14b3345aff84b30c15461ee5 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Tue, 23 Jun 2026 18:15:13 +0200 Subject: [PATCH 09/89] feat(#679): add ActivityLog entity and CRUD endpoints (#704) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(#679): add ActivityLog entity and CRUD endpoints - ActivityLog entity (date + decimal hours) with FK → OpportunityVolunteer (CASCADE) - GET /opportunity-volunteer/:id/activity-log — returns entries + totalHours + count - POST /opportunity-volunteer/:id/activity-log — create entry - PATCH /activity-log/:id — update entry - DELETE /activity-log/:id — delete entry - All routes restricted to COORDINATOR | AGENT | ADMIN roles - SDK upgraded to 0.0.111 (ApiActivityLog* types) - Migration: add-activity-log Co-Authored-By: Claude Sonnet 4.6 * fix(#679): address review findings on ActivityLog endpoints - Add transformer to decimal `hours` column so pg driver string is coerced to number at entity level instead of leaking as "2.50" - Extract dtoActivityLogEntry / dtoActivityLogGet; route handlers now go through DTO instead of returning raw entities - Remove redundant id <= 0 guards (idParamSchema already enforces minimum: 1) - Restrict PATCH/DELETE to COORDINATOR role via per-route authenticate() option; AGENT retains GET/POST access only Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 --- docker-compose.yaml | 18 +- package.json | 2 +- src/data/data-source.ts | 2 + src/data/entity/m2m/activity-log.entity.ts | 50 + src/data/entity/m2m/opportunity-volunteer.ts | 17 +- .../1782222001656-add-activity-log.ts | 33 + src/server/index.ts | 8 + src/server/plugins/typeorm.ts | 2 + src/server/routes/activity-log.routes.ts | 89 ++ src/server/routes/m2m/activity-log.routes.ts | 105 +++ src/server/schema/sdk-types.json | 881 ++++++++++++++---- src/server/types/enums.ts | 1 + src/server/types/fastify.d.ts | 2 + src/services/dto/dto-activity-log.ts | 17 + yarn.lock | 8 +- 15 files changed, 1024 insertions(+), 211 deletions(-) create mode 100644 src/data/entity/m2m/activity-log.entity.ts create mode 100644 src/data/migrations/1782222001656-add-activity-log.ts create mode 100644 src/server/routes/activity-log.routes.ts create mode 100644 src/server/routes/m2m/activity-log.routes.ts create mode 100644 src/services/dto/dto-activity-log.ts diff --git a/docker-compose.yaml b/docker-compose.yaml index 24d832ef..8fa93b0a 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -14,7 +14,7 @@ services: environment: - NODE_ENV=${NODE_ENV} - RUN_MIGRATIONS=${RUN_MIGRATIONS:-true} - - PORT=5000 + - PORT=8000 - DB_HOST=db - DB_PORT=5432 - DB_USERNAME=postgres @@ -22,7 +22,9 @@ services: - DB_NAME=postgres - DB_SCHEMA=public ports: - - ${BE_PORT:-5000}:5000 + - ${BE_PORT:-5000}:${PORT:-8000} + networks: + - n4d-net volumes: - ./:/app command: ["yarn", "dev"] @@ -34,6 +36,8 @@ services: condition: service_healthy build: context: ./data-bootstrap + networks: + - n4d-net environment: - DB_HOST=db - DB_PORT=5432 @@ -44,7 +48,7 @@ services: db: container_name: db - image: postgres:17.2 + image: postgres:17.9 ports: - 5432:5432 environment: @@ -56,18 +60,14 @@ services: POSTGRES_DB: postgres volumes: - be_database:/var/lib/postgresql + networks: + - n4d-net healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 30s timeout: 10s retries: 3 start_period: 40s - localstack: - image: localstack/localstack - ports: - - "4566:4566" - environment: - - SERVICES=ses volumes: be_database: diff --git a/package.json b/package.json index 027cfd6c..39985132 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.110", + "need4deed-sdk": "0.0.111", "pg": "^8.14.1", "pino": "^10.3.1", "pino-pretty": "^13.0.0", diff --git a/src/data/data-source.ts b/src/data/data-source.ts index 05b02656..e476ff09 100644 --- a/src/data/data-source.ts +++ b/src/data/data-source.ts @@ -14,6 +14,7 @@ import LeadFrom from "./entity/lead.entity"; import Address from "./entity/location/address.entity"; import District from "./entity/location/district.entity"; import Postcode from "./entity/location/postcode.entity"; +import ActivityLog from "./entity/m2m/activity-log.entity"; import AgentLanguage from "./entity/m2m/agent-language"; import AgentPerson from "./entity/m2m/agent-person"; import AgentPostcode from "./entity/m2m/agent-postcode"; @@ -59,6 +60,7 @@ export const dataSource = new DataSource({ entities: [ Accompanying, Activity, + ActivityLog, Address, Agent, AgentLanguage, diff --git a/src/data/entity/m2m/activity-log.entity.ts b/src/data/entity/m2m/activity-log.entity.ts new file mode 100644 index 00000000..5093335c --- /dev/null +++ b/src/data/entity/m2m/activity-log.entity.ts @@ -0,0 +1,50 @@ +import { + Column, + CreateDateColumn, + Entity, + JoinColumn, + ManyToOne, + PrimaryGeneratedColumn, + UpdateDateColumn, +} from "typeorm"; +import OpportunityVolunteer from "./opportunity-volunteer"; + +@Entity() +export default class ActivityLog { + constructor(partial?: Partial) { + if (partial) { + Object.assign(this, partial); + } + } + + @PrimaryGeneratedColumn() + id: number; + + @Column({ type: "date" }) + date: Date; + + // Stored as decimal; transformer coerces the pg driver's string return to number. + @Column({ + type: "decimal", + precision: 5, + scale: 2, + transformer: { to: (v: number) => v, from: (v: string) => Number(v) }, + }) + hours: number; + + @ManyToOne(() => OpportunityVolunteer, (ov) => ov.activityLogs, { + nullable: false, + onDelete: "CASCADE", + }) + @JoinColumn({ name: "opportunity_volunteer_id" }) + opportunityVolunteer: OpportunityVolunteer; + + @Column() + opportunityVolunteerId: number; + + @CreateDateColumn() + createdAt: Date; + + @UpdateDateColumn() + updatedAt: Date; +} diff --git a/src/data/entity/m2m/opportunity-volunteer.ts b/src/data/entity/m2m/opportunity-volunteer.ts index ac22a48a..4e46846f 100644 --- a/src/data/entity/m2m/opportunity-volunteer.ts +++ b/src/data/entity/m2m/opportunity-volunteer.ts @@ -9,12 +9,14 @@ import { Entity, JoinColumn, ManyToOne, + OneToMany, PrimaryGeneratedColumn, Unique, UpdateDateColumn, } from "typeorm"; import Opportunity from "../opportunity/opportunity.entity"; import Volunteer from "../volunteer/volunteer.entity"; +import ActivityLog from "./activity-log.entity"; @Entity() @Unique(["opportunityId", "volunteerId"]) @@ -63,23 +65,32 @@ export default class OpportunityVolunteer { @Column() volunteerId: number; + @OneToMany(() => ActivityLog, (log) => log.opportunityVolunteer) + activityLogs: ActivityLog[]; + @AfterInsert() async afterInsertHook() { - const { updateVolunteerMatching, updateOpportunityMatching } = await import("../../utils"); + const { updateVolunteerMatching, updateOpportunityMatching } = await import( + "../../utils" + ); updateVolunteerMatching(this.volunteerId); updateOpportunityMatching(this.opportunityId); } @AfterUpdate() async afterUpdateHook() { - const { updateVolunteerMatching, updateOpportunityMatching } = await import("../../utils"); + const { updateVolunteerMatching, updateOpportunityMatching } = await import( + "../../utils" + ); updateVolunteerMatching(this.volunteerId); updateOpportunityMatching(this.opportunityId); } @AfterRemove() async afterRemoveHook() { - const { updateVolunteerMatching, updateOpportunityMatching } = await import("../../utils"); + const { updateVolunteerMatching, updateOpportunityMatching } = await import( + "../../utils" + ); updateVolunteerMatching(this.volunteerId); updateOpportunityMatching(this.opportunityId); } diff --git a/src/data/migrations/1782222001656-add-activity-log.ts b/src/data/migrations/1782222001656-add-activity-log.ts new file mode 100644 index 00000000..9eeb9fc4 --- /dev/null +++ b/src/data/migrations/1782222001656-add-activity-log.ts @@ -0,0 +1,33 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class AddActivityLog1782222001656 implements MigrationInterface { + name = "AddActivityLog1782222001656"; + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "opportunity" DROP CONSTRAINT "opportunity_contact_person_id_fkey"`, + ); + await queryRunner.query( + `CREATE TABLE "activity_log" ("id" SERIAL NOT NULL, "date" date NOT NULL, "hours" numeric(5,2) NOT NULL, "opportunity_volunteer_id" integer NOT NULL, "created_at" TIMESTAMP NOT NULL DEFAULT now(), "updated_at" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_067d761e2956b77b14e534fd6f1" PRIMARY KEY ("id"))`, + ); + await queryRunner.query( + `ALTER TABLE "activity_log" ADD CONSTRAINT "FK_7f5f4c33b2fbdc19b1f8460b5f0" FOREIGN KEY ("opportunity_volunteer_id") REFERENCES "opportunity_volunteer"("id") ON DELETE CASCADE ON UPDATE NO ACTION`, + ); + await queryRunner.query( + `ALTER TABLE "opportunity" ADD CONSTRAINT "FK_dad52d4b309d2e04b9663fbb36d" FOREIGN KEY ("contact_person_id") REFERENCES "person"("id") ON DELETE NO ACTION ON UPDATE NO ACTION`, + ); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "opportunity" DROP CONSTRAINT "FK_dad52d4b309d2e04b9663fbb36d"`, + ); + await queryRunner.query( + `ALTER TABLE "activity_log" DROP CONSTRAINT "FK_7f5f4c33b2fbdc19b1f8460b5f0"`, + ); + await queryRunner.query(`DROP TABLE "activity_log"`); + await queryRunner.query( + `ALTER TABLE "opportunity" ADD CONSTRAINT "opportunity_contact_person_id_fkey" FOREIGN KEY ("contact_person_id") REFERENCES "person"("id") ON DELETE SET NULL ON UPDATE NO ACTION`, + ); + } +} diff --git a/src/server/index.ts b/src/server/index.ts index 06b4dda0..62d87338 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -11,12 +11,14 @@ import cors, { corsOptions } from "./plugins/cors"; import jwtPlugin from "./plugins/jwt"; import notifyPlugin from "./plugins/notify"; import typeormPlugin from "./plugins/typeorm"; +import activityLogRoutes from "./routes/activity-log.routes"; import agentRoutes from "./routes/agent/agent.routes"; import appreciationRoutes from "./routes/appreciation.routes"; import authRoutes from "./routes/auth"; import commentRoutes from "./routes/comment"; import communicationRoutes from "./routes/communication.routes"; import healthRoutes from "./routes/health"; +import activityLogCollectionRoutes from "./routes/m2m/activity-log.routes"; import m2mOpportunityVolunteerRoutes from "./routes/m2m/opportunity-volunteer.routes"; import opportunityRoutes from "./routes/opportunity/opportunity.routes"; import optionRoutes from "./routes/option"; @@ -166,6 +168,9 @@ export async function createServer(): Promise { await fastifyInstance.register(communicationRoutes, { prefix: RoutePrefix.COMMUNICATION, }); + await fastifyInstance.register(activityLogRoutes, { + prefix: RoutePrefix.ACTIVITY_LOG, + }); await fastifyInstance.register(appreciationRoutes, { prefix: RoutePrefix.APPRECIATION, }); @@ -173,6 +178,9 @@ export async function createServer(): Promise { await fastifyInstance.register(m2mOpportunityVolunteerRoutes, { prefix: RoutePrefix.OPPORTUNITY_VOLUNTEER, }); + await fastifyInstance.register(activityLogCollectionRoutes, { + prefix: RoutePrefix.OPPORTUNITY_VOLUNTEER, + }); await fastifyInstance.register(organizationRoutes, { prefix: RoutePrefix.ORGANIZATION, }); diff --git a/src/server/plugins/typeorm.ts b/src/server/plugins/typeorm.ts index 97bc8af5..643d48c6 100644 --- a/src/server/plugins/typeorm.ts +++ b/src/server/plugins/typeorm.ts @@ -8,6 +8,7 @@ import Deal from "../../data/entity/deal.entity"; import Document from "../../data/entity/document.entity"; import FieldTranslation from "../../data/entity/field_translation.entity"; import Postcode from "../../data/entity/location/postcode.entity"; +import ActivityLog from "../../data/entity/m2m/activity-log.entity"; import AgentPerson from "../../data/entity/m2m/agent-person"; import OpportunityVolunteer from "../../data/entity/m2m/opportunity-volunteer"; import Agent from "../../data/entity/opportunity/agent.entity"; @@ -41,6 +42,7 @@ const typeormPlugin: FastifyPluginAsync = async (fastify) => { commentRepository: dataSource.getRepository(Comment), documentRepository: dataSource.getRepository(Document), communicationRepository: dataSource.getRepository(Communication), + activityLogRepository: dataSource.getRepository(ActivityLog), appreciationRepository: dataSource.getRepository(Appreciation), opportunityVolunteerRepository: dataSource.getRepository(OpportunityVolunteer), diff --git a/src/server/routes/activity-log.routes.ts b/src/server/routes/activity-log.routes.ts new file mode 100644 index 00000000..e541a3e8 --- /dev/null +++ b/src/server/routes/activity-log.routes.ts @@ -0,0 +1,89 @@ +import { FastifyInstance, FastifyPluginOptions } from "fastify"; +import { ApiActivityLogPatch, UserRole } from "need4deed-sdk"; +import { NotFoundError } from "../../config"; +import { dtoActivityLogEntry } from "../../services/dto/dto-activity-log"; +import { idParamSchema } from "../schema"; +import { ParamsId } from "../types"; + +export default async function activityLogRoutes( + fastify: FastifyInstance, + _options: FastifyPluginOptions, +) { + fastify.addHook("onRequest", fastify.authenticate()); + + // PATCH /activity-log/:id — COORDINATOR only (ADMIN bypasses) + fastify.patch<{ Params: ParamsId; Body: ApiActivityLogPatch }>( + "/:id", + { + onRequest: fastify.authenticate({ role: UserRole.COORDINATOR }), + schema: { + params: idParamSchema, + body: { $ref: "ApiActivityLogPatch#" }, + response: { + 200: { + type: "object", + properties: { + message: { type: "string" }, + data: { $ref: "ApiActivityLogEntry#" }, + }, + required: ["message", "data"], + }, + }, + }, + }, + async (request, reply) => { + const { id } = request.params; + + const log = await fastify.db.activityLogRepository.findOne({ + where: { id }, + }); + if (!log) { + throw new NotFoundError(`Activity log entry id:${id} not found`); + } + + const updated = await fastify.db.activityLogRepository.save({ + ...log, + ...request.body, + }); + + return reply.status(200).send({ + message: `Activity log entry id:${id} updated`, + data: dtoActivityLogEntry(updated), + }); + }, + ); + + // DELETE /activity-log/:id — COORDINATOR only (ADMIN bypasses) + fastify.delete<{ Params: ParamsId }>( + "/:id", + { + onRequest: fastify.authenticate({ role: UserRole.COORDINATOR }), + schema: { + params: idParamSchema, + response: { + 200: { + type: "object", + properties: { message: { type: "string" } }, + required: ["message"], + }, + }, + }, + }, + async (request, reply) => { + const { id } = request.params; + + const log = await fastify.db.activityLogRepository.findOne({ + where: { id }, + }); + if (!log) { + throw new NotFoundError(`Activity log entry id:${id} not found`); + } + + await fastify.db.activityLogRepository.remove(log); + + return reply.status(200).send({ + message: `Activity log entry id:${id} deleted`, + }); + }, + ); +} diff --git a/src/server/routes/m2m/activity-log.routes.ts b/src/server/routes/m2m/activity-log.routes.ts new file mode 100644 index 00000000..71f656db --- /dev/null +++ b/src/server/routes/m2m/activity-log.routes.ts @@ -0,0 +1,105 @@ +import { FastifyInstance, FastifyPluginOptions } from "fastify"; +import { ApiActivityLogPost, UserRole } from "need4deed-sdk"; +import { NotFoundError, UnauthorizedError } from "../../../config"; +import ActivityLog from "../../../data/entity/m2m/activity-log.entity"; +import { + dtoActivityLogEntry, + dtoActivityLogGet, +} from "../../../services/dto/dto-activity-log"; +import { idParamSchema } from "../../schema"; +import { ParamsId } from "../../types"; + +export default async function activityLogCollectionRoutes( + fastify: FastifyInstance, + _options: FastifyPluginOptions, +) { + fastify.addHook("onRequest", fastify.authenticate()); + + // GET /opportunity-volunteer/:id/activity-log + fastify.get<{ Params: ParamsId }>( + "/:id/activity-log", + { + schema: { + params: idParamSchema, + response: { + 200: { $ref: "ApiActivityLogGet#" }, + }, + }, + }, + async (request, reply) => { + const role = request.authUser?.role; + if ( + role !== UserRole.COORDINATOR && + role !== UserRole.AGENT && + role !== UserRole.ADMIN + ) { + throw new UnauthorizedError(); + } + + const { id } = request.params; + + const ov = await fastify.db.opportunityVolunteerRepository.findOne({ + where: { id }, + }); + if (!ov) { + throw new NotFoundError(`OpportunityVolunteer id:${id} not found`); + } + + const logs = await fastify.db.activityLogRepository.find({ + where: { opportunityVolunteerId: id }, + order: { date: "ASC" }, + }); + + return reply.status(200).send(dtoActivityLogGet(logs)); + }, + ); + + // POST /opportunity-volunteer/:id/activity-log + fastify.post<{ Params: ParamsId; Body: ApiActivityLogPost }>( + "/:id/activity-log", + { + schema: { + params: idParamSchema, + body: { $ref: "ApiActivityLogPost#" }, + response: { + 201: { + type: "object", + properties: { + message: { type: "string" }, + data: { $ref: "ApiActivityLogEntry#" }, + }, + required: ["message", "data"], + }, + }, + }, + }, + async (request, reply) => { + const role = request.authUser?.role; + if ( + role !== UserRole.COORDINATOR && + role !== UserRole.AGENT && + role !== UserRole.ADMIN + ) { + throw new UnauthorizedError(); + } + + const { id } = request.params; + + const ov = await fastify.db.opportunityVolunteerRepository.findOne({ + where: { id }, + }); + if (!ov) { + throw new NotFoundError(`OpportunityVolunteer id:${id} not found`); + } + + const log = await fastify.db.activityLogRepository.save( + new ActivityLog({ ...request.body, opportunityVolunteerId: id }), + ); + + return reply.status(201).send({ + message: `Activity log entry created for OpportunityVolunteer id:${id}`, + data: dtoActivityLogEntry(log), + }); + }, + ); +} diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index 336369f2..d6ff6446 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -7,6 +7,69 @@ "type": "string", "enum": ["weekends", "weekdays"] }, + "ApiActivityLogEntry": { + "$id": "ApiActivityLogEntry", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "date": { + "type": "string", + "format": "date" + }, + "hours": { + "type": "number" + } + }, + "required": ["id", "date", "hours"] + }, + "ApiActivityLogGet": { + "$id": "ApiActivityLogGet", + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "$ref": "ApiActivityLogEntry#" + } + }, + "totalHours": { + "type": "number" + }, + "count": { + "type": "integer" + } + }, + "required": ["data", "totalHours", "count"] + }, + "ApiActivityLogPost": { + "$id": "ApiActivityLogPost", + "type": "object", + "properties": { + "date": { + "type": "string", + "format": "date" + }, + "hours": { + "type": "number" + } + }, + "required": ["date", "hours"] + }, + "ApiActivityLogPatch": { + "$id": "ApiActivityLogPatch", + "type": "object", + "properties": { + "date": { + "type": "string", + "format": "date" + }, + "hours": { + "type": "number" + } + } + }, "Address": { "$id": "Address", "type": "object", @@ -147,15 +210,30 @@ "$id": "ApiComment", "type": "object", "properties": { - "id": { "type": "integer" }, - "content": { "type": "string" }, - "entityId": { "type": "number" }, - "entityType": { "type": "string" }, - "authorName": { "type": "string" }, - "timestamp": { "type": "string", "format": "date-time" }, + "id": { + "type": "integer" + }, + "content": { + "type": "string" + }, + "entityId": { + "type": "number" + }, + "entityType": { + "type": "string" + }, + "authorName": { + "type": "string" + }, + "timestamp": { + "type": "string", + "format": "date-time" + }, "taggedPersonIds": { "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } } } }, @@ -163,18 +241,38 @@ "$id": "ApiPerson", "type": "object", "properties": { - "id": { "type": "integer" }, - "avatarUrl": { "type": "string" }, - "firstName": { "type": "string" }, - "lastName": { "type": "string" }, - "middleName": { "type": "string" }, - "email": { "type": "string" }, - "phone": { "type": "string" }, - "landline": { "type": "string" }, - "address": { "$ref": "Address#" }, + "id": { + "type": "integer" + }, + "avatarUrl": { + "type": "string" + }, + "firstName": { + "type": "string" + }, + "lastName": { + "type": "string" + }, + "middleName": { + "type": "string" + }, + "email": { + "type": "string" + }, + "phone": { + "type": "string" + }, + "landline": { + "type": "string" + }, + "address": { + "$ref": "Address#" + }, "preferredComm": { "type": "array", - "items": { "$ref": "PreferredCommunicationType#" } + "items": { + "$ref": "PreferredCommunicationType#" + } } } }, @@ -265,8 +363,12 @@ "$id": "OptionItem", "type": "object", "properties": { - "title": { "type": "string" }, - "id": { "type": "integer" } + "title": { + "type": "string" + }, + "id": { + "type": "integer" + } }, "required": ["title", "id"], "additionalProperties": false @@ -294,7 +396,9 @@ "$id": "ApiAvailability", "type": "object", "properties": { - "id": { "type": "integer" }, + "id": { + "type": "integer" + }, "day": { "type": "string", "enum": [ @@ -370,12 +474,25 @@ "$id": "ApiDocumentGet", "type": "object", "properties": { - "id": { "type": "integer" }, - "type": { "$ref": "DocumentType#" }, - "originalName": { "type": "string" }, - "url": { "type": "string" }, - "mimeType": { "type": "string" }, - "createdAt": { "type": "string", "format": "date-time" } + "id": { + "type": "integer" + }, + "type": { + "$ref": "DocumentType#" + }, + "originalName": { + "type": "string" + }, + "url": { + "type": "string" + }, + "mimeType": { + "type": "string" + }, + "createdAt": { + "type": "string", + "format": "date-time" + } }, "required": ["id", "type", "originalName", "url", "mimeType"] }, @@ -383,9 +500,15 @@ "$id": "ApiDocumentPost", "type": "object", "properties": { - "type": { "$ref": "DocumentType#" }, - "originalName": { "type": "string" }, - "mimeType": { "type": "string" } + "type": { + "$ref": "DocumentType#" + }, + "originalName": { + "type": "string" + }, + "mimeType": { + "type": "string" + } }, "required": ["type", "originalName", "mimeType"] }, @@ -422,28 +545,54 @@ "$id": "ApiCommunication", "type": "object", "properties": { - "contactType": { "$ref": "ContactType#" }, - "contactMethod": { "$ref": "ContactMethodType#" }, - "communicationType": { "$ref": "CommunicationType#" }, - "date": { "type": "string", "format": "date-time" } + "contactType": { + "$ref": "ContactType#" + }, + "contactMethod": { + "$ref": "ContactMethodType#" + }, + "communicationType": { + "$ref": "CommunicationType#" + }, + "date": { + "type": "string", + "format": "date-time" + } } }, "ApiCommunicationGet": { "$id": "ApiCommunicationGet", "type": "object", "allOf": [ - { "$ref": "ApiCommunication#" }, + { + "$ref": "ApiCommunication#" + }, { "type": "object", "properties": { - "id": { "type": "integer" }, - "userId": { "type": "number" }, - "agentId": { "type": "integer" }, - "volunteerId": { "type": "integer" } + "id": { + "type": "integer" + }, + "userId": { + "type": "number" + }, + "agentId": { + "type": "integer" + }, + "volunteerId": { + "type": "integer" + } } } ], - "oneOf": [{ "required": ["agentId"] }, { "required": ["volunteerId"] }], + "oneOf": [ + { + "required": ["agentId"] + }, + { + "required": ["volunteerId"] + } + ], "required": ["id", "contactType", "contactMethod", "date", "userId"] }, "ApiCommunicationPost": { @@ -459,13 +608,29 @@ "$id": "ApiAppreciation", "type": "object", "properties": { - "id": { "type": "integer" }, - "title": { "$ref": "VolunteerStateAppreciationType#" }, - "dateDue": { "type": ["string", "null"], "format": "date-time" }, - "dateDelivery": { "type": ["string", "null"], "format": "date-time" }, - "userId": { "type": "number" }, - "opportunityId": { "type": "number" }, - "volunteerId": { "type": "number" } + "id": { + "type": "integer" + }, + "title": { + "$ref": "VolunteerStateAppreciationType#" + }, + "dateDue": { + "type": ["string", "null"], + "format": "date-time" + }, + "dateDelivery": { + "type": ["string", "null"], + "format": "date-time" + }, + "userId": { + "type": "number" + }, + "opportunityId": { + "type": "number" + }, + "volunteerId": { + "type": "number" + } } }, "ApiAppreciationGet": { @@ -493,11 +658,22 @@ "$id": "VolunteerOpportunity", "type": "object", "properties": { - "id": { "type": "integer" }, - "status": { "$ref": "OpportunityVolunteerStatusType#" }, - "opportunityId": { "type": "number" }, - "volunteerId": { "type": "number" }, - "updatedAt": { "type": "string", "format": "date-time" } + "id": { + "type": "integer" + }, + "status": { + "$ref": "OpportunityVolunteerStatusType#" + }, + "opportunityId": { + "type": "number" + }, + "volunteerId": { + "type": "number" + }, + "updatedAt": { + "type": "string", + "format": "date-time" + } } }, "OpportunityVolunteer": { @@ -508,11 +684,15 @@ "$id": "ApiVolunteerOpportunityGet", "type": "object", "allOf": [ - { "$ref": "VolunteerOpportunity#" }, + { + "$ref": "VolunteerOpportunity#" + }, { "type": "object", "properties": { - "title": { "type": "string" } + "title": { + "type": "string" + } } } ], @@ -529,31 +709,56 @@ "$id": "ApiOpportunityVolunteerGet", "type": "object", "allOf": [ - { "$ref": "VolunteerOpportunity#" }, + { + "$ref": "VolunteerOpportunity#" + }, { "type": "object", "properties": { - "name": { "type": "string" }, - "volunteeringType": { "$ref": "VolunteerStateTypeType#" }, - "engagement": { "$ref": "VolunteerStateEngagementType#" }, - "communication": { "$ref": "VolunteerStateCommunicationType#" }, - "avatarUrl": { "type": "string" }, + "name": { + "type": "string" + }, + "volunteeringType": { + "$ref": "VolunteerStateTypeType#" + }, + "engagement": { + "$ref": "VolunteerStateEngagementType#" + }, + "communication": { + "$ref": "VolunteerStateCommunicationType#" + }, + "avatarUrl": { + "type": "string" + }, "activities": { "type": "array", - "items": { "$ref": "OptionItem#" } + "items": { + "$ref": "OptionItem#" + } + }, + "skills": { + "type": "array", + "items": { + "$ref": "OptionItem#" + } }, - "skills": { "type": "array", "items": { "$ref": "OptionItem#" } }, "locations": { "type": "array", - "items": { "$ref": "OptionItem#" } + "items": { + "$ref": "OptionItem#" + } }, "availability": { "type": "array", - "items": { "$ref": "ApiAvailability#" } + "items": { + "$ref": "ApiAvailability#" + } }, "languages": { "type": "array", - "items": { "$ref": "ApiLanguage#" } + "items": { + "$ref": "ApiLanguage#" + } } } } @@ -575,46 +780,88 @@ "$id": "ApiVolunteerOpportunityPatch", "type": "object", "properties": { - "statusOpportunity": { "$ref": "OpportunityStatusType#" }, - "numberVolunteers": { "type": "integer" }, - "description": { "type": "string" }, + "statusOpportunity": { + "$ref": "OpportunityStatusType#" + }, + "numberVolunteers": { + "type": "integer" + }, + "description": { + "type": "string" + }, "languagesMain": { "type": "array", - "items": { "$ref": "OptionItem#" } + "items": { + "$ref": "OptionItem#" + } }, "languagesResidents": { "type": "array", - "items": { "$ref": "OptionItem#" } + "items": { + "$ref": "OptionItem#" + } + }, + "activities": { + "type": "array", + "items": { + "$ref": "OptionItem#" + } + }, + "skills": { + "type": "array", + "items": { + "$ref": "OptionItem#" + } }, - "activities": { "type": "array", "items": { "$ref": "OptionItem#" } }, - "skills": { "type": "array", "items": { "$ref": "OptionItem#" } }, "schedule": { "type": "array", - "items": { "$ref": "ApiAvailability#" } + "items": { + "$ref": "ApiAvailability#" + } }, "contact": { "type": "object", "properties": { - "id": { "type": "integer" }, - "name": { "type": "string" }, - "phone": { "type": "string" }, - "email": { "type": "string" }, + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "phone": { + "type": "string" + }, + "email": { + "type": "string" + }, "waysToContact": { "type": "array", - "items": { "$ref": "PreferredCommunicationType#" } + "items": { + "$ref": "PreferredCommunicationType#" + } } } }, "agent": { "type": "object", "properties": { - "id": { "type": "integer" }, - "name": { "type": "string" }, - "address": { "type": "string" }, - "district": { "type": "string" } + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "address": { + "type": "string" + }, + "district": { + "type": "string" + } } }, - "accompanyingDetails": { "$ref": "ApiAccompanyingPatch#" } + "accompanyingDetails": { + "$ref": "ApiAccompanyingPatch#" + } }, "additionalProperties": false }, @@ -622,9 +869,15 @@ "$id": "ApiVolunteerOpportunityPost", "type": "object", "properties": { - "opportunityId": { "type": "integer" }, - "volunteerId": { "type": "integer" }, - "status": { "$ref": "OpportunityVolunteerStatusType#" } + "opportunityId": { + "type": "integer" + }, + "volunteerId": { + "type": "integer" + }, + "status": { + "$ref": "OpportunityVolunteerStatusType#" + } }, "required": ["status"] }, @@ -660,31 +913,70 @@ "$id": "ApiOpportunityGetList", "type": "object", "properties": { - "id": { "type": "integer" }, - "title": { "type": "string" }, - "category": { "$ref": "OptionById#" }, - "district": { "$ref": "OptionById#" }, - "volunteerType": { "$ref": "VolunteerStateTypeType#" }, - "statusOpportunity": { "$ref": "OpportunityStatusType#" }, - "statusMatch": { "$ref": "OpportunityMatchStatusType#" }, - "numberOfVolunteers": { "type": "integer" }, - "createdAt": { "type": "string", "format": "date-time" }, + "id": { + "type": "integer" + }, + "title": { + "type": "string" + }, + "category": { + "$ref": "OptionById#" + }, + "district": { + "$ref": "OptionById#" + }, + "volunteerType": { + "$ref": "VolunteerStateTypeType#" + }, + "statusOpportunity": { + "$ref": "OpportunityStatusType#" + }, + "statusMatch": { + "$ref": "OpportunityMatchStatusType#" + }, + "numberOfVolunteers": { + "type": "integer" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, "activities": { "type": "array", - "items": { "$ref": "OptionById#" } + "items": { + "$ref": "OptionById#" + } }, "languages": { "type": "array", - "items": { "$ref": "ApiLanguage#" } + "items": { + "$ref": "ApiLanguage#" + } }, "availability": { "type": "array", - "items": { "$ref": "ApiAvailability#" } + "items": { + "$ref": "ApiAvailability#" + } + }, + "location": { + "type": "array", + "items": { + "$ref": "OptionById#" + } + }, + "accompanyingDetails": { + "$ref": "ApiAccompanying#" + }, + "agentTitle": { + "type": "string" }, - "location": { "type": "array", "items": { "$ref": "OptionById#" } }, - "accompanyingDetails": { "$ref": "ApiAccompanying#" }, - "agentTitle": { "type": "string" }, - "volunteerNames": { "type": "array", "items": { "type": "string" } } + "volunteerNames": { + "type": "array", + "items": { + "type": "string" + } + } }, "required": [ "id", @@ -707,39 +999,83 @@ "ApiOpportunityGet": { "$id": "ApiOpportunityGet", "allOf": [ - { "$ref": "ApiOpportunityGetList#" }, + { + "$ref": "ApiOpportunityGetList#" + }, { "type": "object", "properties": { - "createdAt": { "type": "string", "format": "date-time" }, - "description": { "type": "string" }, - "numberOfVolunteers": { "type": "integer" }, - "skills": { "type": "array", "items": { "$ref": "OptionById" } }, - "location": { "type": "array", "items": { "$ref": "OptionById" } }, + "createdAt": { + "type": "string", + "format": "date-time" + }, + "description": { + "type": "string" + }, + "numberOfVolunteers": { + "type": "integer" + }, + "skills": { + "type": "array", + "items": { + "$ref": "OptionById" + } + }, + "location": { + "type": "array", + "items": { + "$ref": "OptionById" + } + }, "contact": { "type": "object", "properties": { - "id": { "type": "integer" }, - "name": { "type": "string" }, - "phone": { "type": "string" }, - "email": { "type": "string" }, + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "phone": { + "type": "string" + }, + "email": { + "type": "string" + }, "waysToContact": { "type": "array", - "items": { "$ref": "PreferredCommunicationType#" } + "items": { + "$ref": "PreferredCommunicationType#" + } } } }, "agent": { "type": "object", "properties": { - "id": { "type": "integer" }, - "type": { "$ref": "AgentType#" }, - "name": { "type": "string" }, - "address": { "type": "string" }, - "district": { "$ref": "OptionById#" } + "id": { + "type": "integer" + }, + "type": { + "$ref": "AgentType#" + }, + "name": { + "type": "string" + }, + "address": { + "type": "string" + }, + "district": { + "$ref": "OptionById#" + } } }, - "comments": { "type": "array", "items": { "$ref": "ApiComment#" } } + "comments": { + "type": "array", + "items": { + "$ref": "ApiComment#" + } + } } } ] @@ -748,11 +1084,21 @@ "$id": "ApiAgentOpportunityVolunteer", "type": "object", "properties": { - "id": { "type": "integer" }, - "volunteerId": { "type": "integer" }, - "status": { "$ref": "OpportunityVolunteerStatusType#" }, - "name": { "type": "string" }, - "avatarUrl": { "type": "string" } + "id": { + "type": "integer" + }, + "volunteerId": { + "type": "integer" + }, + "status": { + "$ref": "OpportunityVolunteerStatusType#" + }, + "name": { + "type": "string" + }, + "avatarUrl": { + "type": "string" + } }, "required": ["id", "volunteerId", "status"] }, @@ -760,15 +1106,30 @@ "$id": "ApiAgentOpportunity", "type": "object", "properties": { - "id": { "type": "integer" }, - "title": { "type": "string" }, - "statusOpportunity": { "$ref": "OpportunityStatusType#" }, - "statusMatch": { "$ref": "OpportunityMatchStatusType#" }, - "numberOfVolunteers": { "type": "integer" }, - "createdAt": { "type": "string", "format": "date-time" }, + "id": { + "type": "integer" + }, + "title": { + "type": "string" + }, + "statusOpportunity": { + "$ref": "OpportunityStatusType#" + }, + "statusMatch": { + "$ref": "OpportunityMatchStatusType#" + }, + "numberOfVolunteers": { + "type": "integer" + }, + "createdAt": { + "type": "string", + "format": "date-time" + }, "volunteers": { "type": "array", - "items": { "$ref": "ApiAgentOpportunityVolunteer#" } + "items": { + "$ref": "ApiAgentOpportunityVolunteer#" + } } }, "required": [ @@ -877,17 +1238,35 @@ "$id": "AgentDetails", "type": "object", "properties": { - "about": { "type": "string" }, - "address": { "type": "string" }, - "addressStreet": { "type": ["string", "null"] }, - "addressPostcode": { "type": ["string", "null"] }, - "website": { "type": "string" }, - "organizationType": { "type": "string" }, - "operator": { "type": "string" }, - "services": { "type": "string" }, + "about": { + "type": "string" + }, + "address": { + "type": "string" + }, + "addressStreet": { + "type": ["string", "null"] + }, + "addressPostcode": { + "type": ["string", "null"] + }, + "website": { + "type": "string" + }, + "organizationType": { + "type": "string" + }, + "operator": { + "type": "string" + }, + "services": { + "type": "string" + }, "clientLanguages": { "type": "array", - "items": { "$ref": "OptionItem#" } + "items": { + "$ref": "OptionItem#" + } } } }, @@ -895,11 +1274,15 @@ "$id": "AgentRepresentative", "type": "object", "allOf": [ - { "$ref": "ApiPerson#" }, + { + "$ref": "ApiPerson#" + }, { "type": "object", "properties": { - "role": { "$ref": "AgentRoleType" } + "role": { + "$ref": "AgentRoleType" + } } } ] @@ -908,15 +1291,33 @@ "$id": "AgentList", "type": "object", "properties": { - "id": { "type": "integer" }, - "title": { "type": "string" }, - "type": { "$ref": "AgentType#" }, - "district": { "$ref": "Option#" }, - "trustLevel": { "$ref": "AgentTrustType#" }, - "activeVolunteers": { "type": "integer" }, - "numActiveVolunteers": { "type": "integer" }, - "email": { "type": "string" }, - "volunteerSearch": { "$ref": "AgentVolunteerSearchType#" } + "id": { + "type": "integer" + }, + "title": { + "type": "string" + }, + "type": { + "$ref": "AgentType#" + }, + "district": { + "$ref": "Option#" + }, + "trustLevel": { + "$ref": "AgentTrustType#" + }, + "activeVolunteers": { + "type": "integer" + }, + "numActiveVolunteers": { + "type": "integer" + }, + "email": { + "type": "string" + }, + "volunteerSearch": { + "$ref": "AgentVolunteerSearchType#" + } } }, "ApiAgentGetList": { @@ -937,32 +1338,65 @@ "$id": "AgentProps", "type": "object", "properties": { - "title": { "type": "string" }, - "type": { "$ref": "AgentType#" }, - "volunteerSearch": { "$ref": "AgentVolunteerSearchType#" }, - "trustLevel": { "$ref": "AgentTrustType#" }, + "title": { + "type": "string" + }, + "type": { + "$ref": "AgentType#" + }, + "volunteerSearch": { + "$ref": "AgentVolunteerSearchType#" + }, + "trustLevel": { + "$ref": "AgentTrustType#" + }, "serviceType": { "type": "array", - "items": { "$ref": "AgentService#" } - }, - "statusEngagement": { "$ref": "AgentEngagementStatusType#" }, - "about": { "type": "string" }, - "website": { "type": "string" }, - "addressStreet": { "type": "string" }, - "addressPostcode": { "type": "string" }, - "statusSearch": { "$ref": "AgentVolunteerSearchType#" }, + "items": { + "$ref": "AgentService#" + } + }, + "statusEngagement": { + "$ref": "AgentEngagementStatusType#" + }, + "about": { + "type": "string" + }, + "website": { + "type": "string" + }, + "addressStreet": { + "type": "string" + }, + "addressPostcode": { + "type": "string" + }, + "statusSearch": { + "$ref": "AgentVolunteerSearchType#" + }, "services": { "type": "array", - "items": { "$ref": "AgentService#" } + "items": { + "$ref": "AgentService#" + } + }, + "languages": { + "type": "array", + "items": { + "$ref": "OptionById#" + } }, - "languages": { "type": "array", "items": { "$ref": "OptionById#" } }, - "districtId": { "type": "number" } + "districtId": { + "type": "number" + } } }, "AgentId": { "$id": "AgentId", "allOf": [ - { "$ref": "AgentList#" }, + { + "$ref": "AgentList#" + }, { "type": "object", "properties": { @@ -974,18 +1408,35 @@ "type": "string", "format": "date-time" }, - "operator": { "type": "string" }, - "representative": { "$ref": "AgentRepresentative#" }, + "operator": { + "type": "string" + }, + "representative": { + "$ref": "AgentRepresentative#" + }, "serviceType": { "type": "array", - "items": { "$ref": "AgentService#" } + "items": { + "$ref": "AgentService#" + } + }, + "statusEngagement": { + "$ref": "AgentEngagementStatusType#" + }, + "agentDetails": { + "$ref": "AgentDetails#" + }, + "comments": { + "type": "array", + "items": { + "$ref": "ApiComment#" + } }, - "statusEngagement": { "$ref": "AgentEngagementStatusType#" }, - "agentDetails": { "$ref": "AgentDetails#" }, - "comments": { "type": "array", "items": { "$ref": "ApiComment#" } }, "languages": { "type": "array", - "items": { "$ref": "ApiLanguage#" } + "items": { + "$ref": "ApiLanguage#" + } } } } @@ -1018,35 +1469,69 @@ "$id": "ApiAccompanying", "type": "object", "properties": { - "appointmentAddress": { "type": "string" }, - "appointmentDate": { "type": "string" }, - "appointmentTime": { "type": "string" }, - "refugeeNumber": { "type": "string" }, - "refugeeName": { "type": "string" }, - "appointmentLanguage": { "$ref": "TranslatedIntoType#" }, + "appointmentAddress": { + "type": "string" + }, + "appointmentDate": { + "type": "string" + }, + "appointmentTime": { + "type": "string" + }, + "refugeeNumber": { + "type": "string" + }, + "refugeeName": { + "type": "string" + }, + "appointmentLanguage": { + "$ref": "TranslatedIntoType#" + }, "refugeeLanguage": { "type": "array", - "items": { "$ref": "OptionById#" } + "items": { + "$ref": "OptionById#" + } + }, + "appointmentPostcode": { + "type": "string" }, - "appointmentPostcode": { "type": "string" }, - "appointmentDistrict": { "$ref": "OptionById#" } + "appointmentDistrict": { + "$ref": "OptionById#" + } } }, "ApiAccompanyingPatch": { "$id": "ApiAccompanyingPatch", "type": "object", "properties": { - "appointmentAddress": { "type": "string" }, - "appointmentDate": { "type": "string" }, - "appointmentTime": { "type": "string" }, - "refugeeNumber": { "type": "string" }, - "refugeeName": { "type": "string" }, - "appointmentLanguage": { "$ref": "TranslatedIntoType#" }, + "appointmentAddress": { + "type": "string" + }, + "appointmentDate": { + "type": "string" + }, + "appointmentTime": { + "type": "string" + }, + "refugeeNumber": { + "type": "string" + }, + "refugeeName": { + "type": "string" + }, + "appointmentLanguage": { + "$ref": "TranslatedIntoType#" + }, "refugeeLanguage": { "type": "array", - "items": { "$ref": "OptionById#" } + "items": { + "$ref": "OptionById#" + } }, - "appointmentPostcode": { "type": "string" } + "appointmentPostcode": { + "type": "string" + } }, "additionalProperties": false }, @@ -1054,10 +1539,18 @@ "$id": "ApiOrganizationPatch", "type": "object", "properties": { - "title": { "type": "string" }, - "email": { "type": "string" }, - "phone": { "type": "string" }, - "website": { "type": "string" } + "title": { + "type": "string" + }, + "email": { + "type": "string" + }, + "phone": { + "type": "string" + }, + "website": { + "type": "string" + } } } } diff --git a/src/server/types/enums.ts b/src/server/types/enums.ts index 5d53840c..354d4cc8 100644 --- a/src/server/types/enums.ts +++ b/src/server/types/enums.ts @@ -1,4 +1,5 @@ export const RoutePrefix = { + ACTIVITY_LOG: "/activity-log", AGENT: "/agent", AUTH: "/auth", APPRECIATION: "/appreciation", diff --git a/src/server/types/fastify.d.ts b/src/server/types/fastify.d.ts index 1158c7d9..ea733a4b 100644 --- a/src/server/types/fastify.d.ts +++ b/src/server/types/fastify.d.ts @@ -10,6 +10,7 @@ import Deal from "../../data/entity/deal.entity"; import Document from "../../data/entity/document.entity"; import FieldTranslation from "../../data/entity/field_translation.entity"; import Postcode from "../../data/entity/location/postcode.entity"; +import ActivityLog from "../../data/entity/m2m/activity-log.entity"; import AgentPerson from "../../data/entity/m2m/agent-person"; import OpportunityVolunteer from "../../data/entity/m2m/opportunity-volunteer"; import Agent from "../../data/entity/opportunity/agent.entity"; @@ -35,6 +36,7 @@ declare module "fastify" { commentRepository: Repository; documentRepository: Repository; communicationRepository: Repository; + activityLogRepository: Repository; appreciationRepository: Repository; opportunityRepository: Repository; opportunityVolunteerRepository: Repository; diff --git a/src/services/dto/dto-activity-log.ts b/src/services/dto/dto-activity-log.ts new file mode 100644 index 00000000..9449f18a --- /dev/null +++ b/src/services/dto/dto-activity-log.ts @@ -0,0 +1,17 @@ +import { ApiActivityLogEntry, ApiActivityLogGet } from "need4deed-sdk"; +import ActivityLog from "../../data/entity/m2m/activity-log.entity"; + +export function dtoActivityLogEntry(log: ActivityLog): ApiActivityLogEntry { + return { + id: log.id, + date: log.date, + hours: log.hours, + }; +} + +export function dtoActivityLogGet(logs: ActivityLog[]): ApiActivityLogGet { + const data = logs.map(dtoActivityLogEntry); + const totalHours = + Math.round(logs.reduce((sum, l) => sum + l.hours, 0) * 100) / 100; + return { data, totalHours, count: data.length }; +} diff --git a/yarn.lock b/yarn.lock index 81149dca..3cacb52a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2937,10 +2937,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.110: - version "0.0.110" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.110.tgz#4428170ca81fddd35ec80f7a72825c3e6b29d8e7" - integrity sha512-kHa6B13x3CcHMhexam+9CBfRX9AV9/8K1RrUTDSAVdRcJ0PecNFs3JSscwBkJ7UWqjSKV89xaqVkN6N3qGQnAA== +need4deed-sdk@0.0.111: + version "0.0.111" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.111.tgz#1d30a2093ae66b891ffd61f1fb716894008cd2e4" + integrity sha512-p9dcuxiqkwNqCdCYPTWgwZPqfYNFJ9exBrOEqdcWpCGSP7zdaHHyOHXa71EbcFNYEubL2OXi+iZwNCx+LUO0oQ== no-case@^3.0.4: version "3.0.4" From f8a049064db6f338d6e6c363f00849aab90f1634 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Tue, 23 Jun 2026 22:09:09 +0200 Subject: [PATCH 10/89] feat: add read_at to comment_person; mark-as-read endpoint (#705) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add nullable `read_at TIMESTAMP` column to `comment_person` (migration) - Replace `ApiComment.taggedPersonIds: number[]` with `taggedPersons: { id, readAt }[]`; update commentSerializer and tests - Add `ApiCommentTaggedPerson` schema to sdk-types.json - PATCH /comment/:id/read — sets read_at = now() for the calling user's comment_person row; returns updated comment; 404 if user is not tagged - SDK upgraded to 0.0.112 Co-authored-by: Claude Sonnet 4.6 --- package.json | 2 +- src/data/entity/m2m/comment-person.ts | 3 + ...245067240-add-read-at-to-comment-person.ts | 19 +++++ src/server/routes/comment.ts | 69 +++++++++++++++++++ src/server/schema/sdk-types.json | 23 +++++-- src/services/dto/dto-comment.ts | 6 +- src/test/services/dto/dto-comment.test.ts | 19 +++-- yarn.lock | 8 +-- 8 files changed, 132 insertions(+), 17 deletions(-) create mode 100644 src/data/migrations/1782245067240-add-read-at-to-comment-person.ts diff --git a/package.json b/package.json index 39985132..040583e7 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.111", + "need4deed-sdk": "0.0.112", "pg": "^8.14.1", "pino": "^10.3.1", "pino-pretty": "^13.0.0", diff --git a/src/data/entity/m2m/comment-person.ts b/src/data/entity/m2m/comment-person.ts index 820351db..39422d57 100644 --- a/src/data/entity/m2m/comment-person.ts +++ b/src/data/entity/m2m/comment-person.ts @@ -41,4 +41,7 @@ export default class CommentPerson { @Column() personId: number; + + @Column({ type: "timestamp", nullable: true, default: null }) + readAt: Date | null; } diff --git a/src/data/migrations/1782245067240-add-read-at-to-comment-person.ts b/src/data/migrations/1782245067240-add-read-at-to-comment-person.ts new file mode 100644 index 00000000..80b7fcac --- /dev/null +++ b/src/data/migrations/1782245067240-add-read-at-to-comment-person.ts @@ -0,0 +1,19 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class AddReadAtToCommentPerson1782245067240 + implements MigrationInterface +{ + name = "AddReadAtToCommentPerson1782245067240"; + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "comment_person" ADD "read_at" TIMESTAMP`, + ); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "comment_person" DROP COLUMN "read_at"`, + ); + } +} diff --git a/src/server/routes/comment.ts b/src/server/routes/comment.ts index 57d91a95..d3d19f80 100644 --- a/src/server/routes/comment.ts +++ b/src/server/routes/comment.ts @@ -397,6 +397,75 @@ export default async function commentRoutes( }, ); + // + // PATCH /comment/:id/read + // + fastify.patch( + "/:id/read", + { + schema: { + response: { + 200: { + type: "object", + properties: { + message: { type: "string" }, + data: { $ref: "ApiComment#" }, + }, + required: ["message", "data"], + }, + ...responseErrors, + }, + }, + onRequest: [fastify.authenticate()], + }, + async (request, reply) => { + const id = Number((request.params as { id: string }).id); + if (isNaN(id) || id <= 0) { + return reply + .status(400) + .send({ message: "Invalid comment ID provided." }); + } + + const personId = request.authUser?.personId; + if (!personId) { + return reply + .status(403) + .send({ message: "No person linked to this user." }); + } + + const cpRepository = + fastify.db.commentRepository.manager.getRepository(CommentPerson); + const cp = await cpRepository.findOne({ + where: { commentId: id, personId }, + }); + if (!cp) { + return reply + .status(404) + .send({ + message: `No tag found for comment id:${id} on your person.`, + }); + } + + cp.readAt = new Date(); + await cpRepository.save(cp); + + const comment = await fastify.db.commentRepository.findOne({ + where: { id }, + relations: ["user", "user.person", "language", "commentPerson"], + }); + if (!comment) { + return reply + .status(404) + .send({ message: `Comment id:${id} not found.` }); + } + + return reply.status(200).send({ + message: `Comment id:${id} marked as read`, + data: commentSerializer(comment), + }); + }, + ); + fastify.delete( "/:id", { diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index d6ff6446..fdd3e13c 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -217,7 +217,7 @@ "type": "string" }, "entityId": { - "type": "number" + "type": "integer" }, "entityType": { "type": "string" @@ -229,13 +229,14 @@ "type": "string", "format": "date-time" }, - "taggedPersonIds": { + "taggedPersons": { "type": "array", "items": { - "type": "integer" + "$ref": "ApiCommentTaggedPerson#" } } - } + }, + "required": ["id", "content", "authorName", "timestamp", "taggedPersons"] }, "ApiPerson": { "$id": "ApiPerson", @@ -1552,6 +1553,20 @@ "type": "string" } } + }, + "ApiCommentTaggedPerson": { + "$id": "ApiCommentTaggedPerson", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "readAt": { + "type": ["string", "null"], + "format": "date-time" + } + }, + "required": ["id", "readAt"] } } } diff --git a/src/services/dto/dto-comment.ts b/src/services/dto/dto-comment.ts index a2a0368d..a042389c 100644 --- a/src/services/dto/dto-comment.ts +++ b/src/services/dto/dto-comment.ts @@ -9,7 +9,9 @@ export function commentSerializer(comment: Comment): ApiComment { entityType: comment.entityType, authorName: comment.user?.person?.name, timestamp: comment.updatedAt, - taggedPersonIds: - comment.commentPerson?.map((cp) => cp.personId).filter(Boolean) ?? [], + taggedPersons: + comment.commentPerson + ?.filter((cp) => cp.personId) + .map((cp) => ({ id: cp.personId, readAt: cp.readAt ?? null })) ?? [], }; } diff --git a/src/test/services/dto/dto-comment.test.ts b/src/test/services/dto/dto-comment.test.ts index 19bc8188..7f7acd87 100644 --- a/src/test/services/dto/dto-comment.test.ts +++ b/src/test/services/dto/dto-comment.test.ts @@ -21,11 +21,12 @@ describe("commentSerializer", () => { entityType: "volunteer", authorName: "Coordinator Jane", timestamp: comment.updatedAt, - taggedPersonIds: [], + taggedPersons: [], }); }); - it("maps commentPerson rows to taggedPersonIds", () => { + it("maps commentPerson rows to taggedPersons with readAt", () => { + const readAt = new Date("2025-04-01"); const comment = { id: 10, text: "Hey <@5> and <@9>", @@ -33,14 +34,20 @@ describe("commentSerializer", () => { entityType: "opportunity", updatedAt: new Date(), user: { person: { name: "Author" } }, - commentPerson: [{ personId: 5 }, { personId: 9 }], + commentPerson: [ + { personId: 5, readAt }, + { personId: 9, readAt: null }, + ], }; const result = commentSerializer(comment as any); - expect(result.taggedPersonIds).toEqual([5, 9]); + expect(result.taggedPersons).toEqual([ + { id: 5, readAt }, + { id: 9, readAt: null }, + ]); }); - it("returns an empty taggedPersonIds when commentPerson is missing", () => { + it("returns an empty taggedPersons when commentPerson is missing", () => { const comment = { id: 11, text: "no tags", @@ -51,7 +58,7 @@ describe("commentSerializer", () => { }; const result = commentSerializer(comment as any); - expect(result.taggedPersonIds).toEqual([]); + expect(result.taggedPersons).toEqual([]); }); it("returns undefined authorName when user has no person", () => { diff --git a/yarn.lock b/yarn.lock index 3cacb52a..b5af8676 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2937,10 +2937,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.111: - version "0.0.111" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.111.tgz#1d30a2093ae66b891ffd61f1fb716894008cd2e4" - integrity sha512-p9dcuxiqkwNqCdCYPTWgwZPqfYNFJ9exBrOEqdcWpCGSP7zdaHHyOHXa71EbcFNYEubL2OXi+iZwNCx+LUO0oQ== +need4deed-sdk@0.0.112: + version "0.0.112" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.112.tgz#85b60f3fc2ff0ab016c87377a26c5fa0b9a30548" + integrity sha512-bgWyvra5Mvyi6R/UfNyutQVMEGHAFY0uBJzVpu5S2ja2yHm0oVPm2vvG6Z2fikZwew2m2PH+pA28UjPXlQIEoQ== no-case@^3.0.4: version "3.0.4" From 62fd31fb19b8d93f5814780548ca707acfa9edd3 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Tue, 23 Jun 2026 22:31:50 +0200 Subject: [PATCH 11/89] feat(fe#570): expose agentId on opportunity list response (#706) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(fe#570): expose agentId on opportunity list response Add agentId to dtoOpportunityGetList and dtoOpportunityGet so the FE can compare each row's agentId against the authenticated user's agent and apply column masking for other orgs' opportunities. SDK → 0.0.113. Co-Authored-By: Claude Sonnet 4.6 * fix: agentId nullable in schema; SDK → 0.0.114 agentId type corrected to ["integer", "null"] to match the entity's nullable column. SDK bumped to 0.0.114 which carries the same fix. Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 --- package.json | 2 +- src/server/schema/sdk-types.json | 6 +++++- src/services/dto/dto-opportunity.ts | 2 ++ yarn.lock | 8 ++++---- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 040583e7..59586529 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.112", + "need4deed-sdk": "0.0.114", "pg": "^8.14.1", "pino": "^10.3.1", "pino-pretty": "^13.0.0", diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index fdd3e13c..eaed28a8 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -972,6 +972,9 @@ "agentTitle": { "type": "string" }, + "agentId": { + "type": ["integer", "null"] + }, "volunteerNames": { "type": "array", "items": { @@ -994,7 +997,8 @@ "availability", "location", "accompanyingDetails", - "agentTitle" + "agentTitle", + "agentId" ] }, "ApiOpportunityGet": { diff --git a/src/services/dto/dto-opportunity.ts b/src/services/dto/dto-opportunity.ts index 2fb9e20e..c3320732 100644 --- a/src/services/dto/dto-opportunity.ts +++ b/src/services/dto/dto-opportunity.ts @@ -82,6 +82,7 @@ export function dtoOpportunityGetList( availability: getAvailabilityTryCatch(opportunity.deal.dealTimeslot) ?? [], accompanyingDetails: dtoOpportunityAccompanying(opportunity.accompanying!), agentTitle: opportunity.agent?.title ?? "", + agentId: opportunity.agentId, // Names of the volunteers MATCHED to the opportunity (status opp-matched // only — not pending/active/past links). PII masking runs before this DTO, // so masked names pass through. Needs the @@ -143,6 +144,7 @@ export function dtoOpportunityGet( description: getOpportunityDescription(opportunityComments) ?? "", numberOfVolunteers: opportunityComments.numberVolunteers, agentTitle: opportunityComments.agent?.title ?? "", + agentId: opportunityComments.agentId, languages: opportunityComments.deal.dealLanguage .filter(Boolean) .map((pl) => ({ diff --git a/yarn.lock b/yarn.lock index b5af8676..51e0635a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2937,10 +2937,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.112: - version "0.0.112" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.112.tgz#85b60f3fc2ff0ab016c87377a26c5fa0b9a30548" - integrity sha512-bgWyvra5Mvyi6R/UfNyutQVMEGHAFY0uBJzVpu5S2ja2yHm0oVPm2vvG6Z2fikZwew2m2PH+pA28UjPXlQIEoQ== +need4deed-sdk@0.0.114: + version "0.0.114" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.114.tgz#6dee6f266310de84ba7ff790db58c09f40329467" + integrity sha512-KkHa+PSIZBJ8XoteoAL4xhlb/eV4nkU7ViPqXMFtemKWwXTKP7nNfsxEB/wmPQlkH9MjwcG9yz9NaccJx8WzIw== no-case@^3.0.4: version "3.0.4" From acfb250b79c910ceb18213ddc53affd6bfcfac05 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 24 Jun 2026 10:34:08 +0200 Subject: [PATCH 12/89] ci: add AITS deploy workflow (#707) Build and push ghcr.io/need4deed-org/be:develop on every merge to develop, then rollout restart the be deployment on the AITS VPS. Requires AITS_HOST and AITS_SSH_KEY repo secrets. Co-authored-by: Claude Sonnet 4.6 --- .github/workflows/deploy-aits.yaml | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/deploy-aits.yaml diff --git a/.github/workflows/deploy-aits.yaml b/.github/workflows/deploy-aits.yaml new file mode 100644 index 00000000..ec31fa60 --- /dev/null +++ b/.github/workflows/deploy-aits.yaml @@ -0,0 +1,36 @@ +name: deploy-aits + +on: + push: + branches: [develop] + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push image + uses: docker/build-push-action@v6 + with: + context: . + push: true + tags: ghcr.io/need4deed-org/be:develop + + - name: Roll out new image on AITS + uses: appleboy/ssh-action@v1 + with: + host: ${{ secrets.AITS_HOST }} + username: root + key: ${{ secrets.AITS_SSH_KEY }} + script: kubectl rollout restart deployment/be -n n4d-dev From 9844739ae0dd6dedebeaa6f8babfbd827ba36fc3 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 24 Jun 2026 12:57:25 +0200 Subject: [PATCH 13/89] ci: bootstrap image workflow + idempotent bootstrap (#708) * ci: add AITS deploy workflow Build and push ghcr.io/need4deed-org/be:develop on every merge to develop, then rollout restart the be deployment on the AITS VPS. Requires AITS_HOST and AITS_SSH_KEY repo secrets. Co-Authored-By: Claude Sonnet 4.6 * ci: build bootstrap image; make bootstrap idempotent - Add build-bootstrap.yaml workflow: builds ghcr.io/need4deed-org/bootstrap:latest on changes to data-bootstrap/ or manual dispatch - Make bootstrap.sh idempotent: skip if language table already exists Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 --- .github/workflows/build-bootstrap.yaml | 31 ++++++++++++++++++++++++++ data-bootstrap/bootstrap.sh | 20 ++++++++--------- 2 files changed, 41 insertions(+), 10 deletions(-) create mode 100644 .github/workflows/build-bootstrap.yaml diff --git a/.github/workflows/build-bootstrap.yaml b/.github/workflows/build-bootstrap.yaml new file mode 100644 index 00000000..59db02d0 --- /dev/null +++ b/.github/workflows/build-bootstrap.yaml @@ -0,0 +1,31 @@ +name: build-bootstrap + +on: + push: + branches: [develop] + paths: + - data-bootstrap/** + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push bootstrap image + uses: docker/build-push-action@v6 + with: + context: ./data-bootstrap + push: true + tags: ghcr.io/need4deed-org/bootstrap:latest diff --git a/data-bootstrap/bootstrap.sh b/data-bootstrap/bootstrap.sh index 04f7c4c1..46c26caf 100644 --- a/data-bootstrap/bootstrap.sh +++ b/data-bootstrap/bootstrap.sh @@ -2,20 +2,20 @@ set -e +# Idempotent: skip if the base schema is already loaded. +TABLE_EXISTS=$(PGPASSWORD="${DB_PASSWORD}" psql -q -h "${DB_HOST}" -p "${DB_PORT}" -U "${DB_USER}" -d "${DB_NAME}" -tAc \ + "SELECT EXISTS (SELECT FROM information_schema.tables WHERE table_schema='public' AND table_name='language')") + +if [ "$TABLE_EXISTS" = "t" ]; then + echo "Database already bootstrapped, skipping." + exit 0 +fi + echo "Importing database dump..." PGPASSWORD="${DB_PASSWORD}" psql -q -h "${DB_HOST}" -p "${DB_PORT}" -U "${DB_USER}" -d "${DB_NAME}" -f /app/dev.dump.sql +echo "Database import completed successfully" -if [ $? -eq 0 ]; then - echo "Database import completed successfully" - -else - echo "Import failed" - exit 1 -fi -# Clean up unset PGPASSWORD - -echo "" echo "Connection details for verification:" echo " psql -h $DB_HOST -p $DB_PORT -U $DB_USER -d $DB_NAME" exit 0 \ No newline at end of file From 21e9d24ef43c57296d197dec84ae0181c24c98a3 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 24 Jun 2026 12:59:08 +0200 Subject: [PATCH 14/89] chore: gitignore data-bootstrap/*.sql (#709) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ci: add AITS deploy workflow Build and push ghcr.io/need4deed-org/be:develop on every merge to develop, then rollout restart the be deployment on the AITS VPS. Requires AITS_HOST and AITS_SSH_KEY repo secrets. Co-Authored-By: Claude Sonnet 4.6 * chore: gitignore data-bootstrap/*.sql — may contain PII Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index be32ccb4..e036ea00 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# database dumps — may contain PII, never commit +data-bootstrap/*.sql + .idea/ .vscode/ node_modules/ From 87dcca5dea6d34d4df2e2dfe8d9b524e72cda2b5 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:21:40 +0200 Subject: [PATCH 15/89] chore: use scrambled dump for bootstrap; make idempotent (#710) - Switch bootstrap from dev.dump.sql (raw PII) to scrambled-dump.sql (agent.info stripped, person/volunteer data anonymized) - Add idempotency check: skip if language table already exists - Narrow .gitignore to dev.dump.sql only so scrambled-dump.sql can be tracked Co-authored-by: Claude Sonnet 4.6 --- .gitignore | 4 +- data-bootstrap/bootstrap.sh | 4 +- data-bootstrap/scrambled-dump.sql | 49010 ++++++++++++++++++++++++++++ 3 files changed, 49014 insertions(+), 4 deletions(-) create mode 100644 data-bootstrap/scrambled-dump.sql diff --git a/.gitignore b/.gitignore index e036ea00..7822e301 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ -# database dumps — may contain PII, never commit -data-bootstrap/*.sql +# raw database dump — contains real PII, never commit +data-bootstrap/dev.dump.sql .idea/ .vscode/ diff --git a/data-bootstrap/bootstrap.sh b/data-bootstrap/bootstrap.sh index 46c26caf..ed25dc31 100644 --- a/data-bootstrap/bootstrap.sh +++ b/data-bootstrap/bootstrap.sh @@ -12,10 +12,10 @@ if [ "$TABLE_EXISTS" = "t" ]; then fi echo "Importing database dump..." -PGPASSWORD="${DB_PASSWORD}" psql -q -h "${DB_HOST}" -p "${DB_PORT}" -U "${DB_USER}" -d "${DB_NAME}" -f /app/dev.dump.sql +PGPASSWORD="${DB_PASSWORD}" psql -q -h "${DB_HOST}" -p "${DB_PORT}" -U "${DB_USER}" -d "${DB_NAME}" -f /app/scrambled-dump.sql echo "Database import completed successfully" unset PGPASSWORD echo "Connection details for verification:" echo " psql -h $DB_HOST -p $DB_PORT -U $DB_USER -d $DB_NAME" -exit 0 \ No newline at end of file +exit 0 diff --git a/data-bootstrap/scrambled-dump.sql b/data-bootstrap/scrambled-dump.sql new file mode 100644 index 00000000..ae4f9ecb --- /dev/null +++ b/data-bootstrap/scrambled-dump.sql @@ -0,0 +1,49010 @@ +-- +-- PostgreSQL database dump +-- + +\restrict tlLwyqjBLnERANtbTgfiXv69sszKnM6xcnW4q2xEWfEye5sQHWCgOhgUwB0Jo9n + +-- Dumped from database version 17.2 +-- Dumped by pg_dump version 18.3 (Ubuntu 18.3-1.pgdg24.04+1) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET transaction_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: accompanying_language_to_translate_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.accompanying_language_to_translate_enum AS ENUM ( + 'deutsche', + 'englishOk', + 'noTranslation' +); + + +ALTER TYPE public.accompanying_language_to_translate_enum OWNER TO n4d_user; + +-- +-- Name: agent_engagement_status_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.agent_engagement_status_enum AS ENUM ( + 'agent-new', + 'agent-active', + 'agent-unresponsive', + 'agent-inactive' +); + + +ALTER TYPE public.agent_engagement_status_enum OWNER TO n4d_user; + +-- +-- Name: agent_person_role_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.agent_person_role_enum AS ENUM ( + 'social-worker', + 'volunteer-coordinator', + 'manager', + 'project-coordinator', + 'psychologist', + 'project-staff', + 'childcare-worker', + 'other' +); + + +ALTER TYPE public.agent_person_role_enum OWNER TO n4d_user; + +-- +-- Name: agent_search_status_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.agent_search_status_enum AS ENUM ( + 'agent-searching', + 'agent-not-needed', + 'agent-volunteers-found' +); + + +ALTER TYPE public.agent_search_status_enum OWNER TO n4d_user; + +-- +-- Name: agent_trust_level_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.agent_trust_level_enum AS ENUM ( + 'agent-high', + 'agent-low', + 'agent-unknown' +); + + +ALTER TYPE public.agent_trust_level_enum OWNER TO n4d_user; + +-- +-- Name: agent_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.agent_type_enum AS ENUM ( + 'AE', + 'GU1', + 'GU2', + 'GU2+', + 'GU3', + 'NU', + 'ASOG', + 'counseling-center', + 'tandem', + 'multiple-social-support' +); + + +ALTER TYPE public.agent_type_enum OWNER TO n4d_user; + +-- +-- Name: appreciation_title_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.appreciation_title_enum AS ENUM ( + 't-shirt', + 'benefit-card', + 'tote-bag' +); + + +ALTER TYPE public.appreciation_title_enum OWNER TO n4d_user; + +-- +-- Name: comment_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.comment_entity_type_enum AS ENUM ( + 'none', + 'activity', + 'agent', + 'comment', + 'category', + 'district', + 'language', + 'lead_from', + 'opportunity', + 'skill', + 'volunteer' +); + + +ALTER TYPE public.comment_entity_type_enum OWNER TO n4d_user; + +-- +-- Name: communication_communication_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.communication_communication_type_enum AS ENUM ( + 'briefed', + 'first-inquiry-sent', + 'opportunity-list-sent', + 'status-update', + 'post-match-followup' +); + + +ALTER TYPE public.communication_communication_type_enum OWNER TO n4d_user; + +-- +-- Name: communication_contact_method_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.communication_contact_method_enum AS ENUM ( + 'email', + 'phone-number', + 'telegram', + 'whatsapp', + 'signal', + 'sms', + 'voicenote' +); + + +ALTER TYPE public.communication_contact_method_enum OWNER TO n4d_user; + +-- +-- Name: communication_contact_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.communication_contact_type_enum AS ENUM ( + 'called', + 'tried-to-call', + 'texted-or-emailed', + 'other' +); + + +ALTER TYPE public.communication_contact_type_enum OWNER TO n4d_user; + +-- +-- Name: config_config_key_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.config_config_key_enum AS ENUM ( + 'schema', + 'reference_data', + 'master_data', + 'truncate-all' +); + + +ALTER TYPE public.config_config_key_enum OWNER TO n4d_user; + +-- +-- Name: deal_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.deal_type_enum AS ENUM ( + 'volunteer', + 'opportunity' +); + + +ALTER TYPE public.deal_type_enum OWNER TO n4d_user; + +-- +-- Name: document_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.document_type_enum AS ENUM ( + 'measles-vacc-cert', + 'good-conduct-cert', + 'CGC-application', + 'passport-copy' +); + + +ALTER TYPE public.document_type_enum OWNER TO n4d_user; + +-- +-- Name: event_n4d_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.event_n4d_type_enum AS ENUM ( + 'party', + 'workshop' +); + + +ALTER TYPE public.event_n4d_type_enum OWNER TO n4d_user; + +-- +-- Name: field_translation_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.field_translation_entity_type_enum AS ENUM ( + 'none', + 'activity', + 'agent', + 'comment', + 'category', + 'district', + 'language', + 'lead_from', + 'opportunity', + 'skill', + 'volunteer' +); + + +ALTER TYPE public.field_translation_entity_type_enum OWNER TO n4d_user; + +-- +-- Name: location_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.location_type_enum AS ENUM ( + 'postcode', + 'district', + 'address', + 'geolocation' +); + + +ALTER TYPE public.location_type_enum OWNER TO n4d_user; + +-- +-- Name: notion_relation_host_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.notion_relation_host_type_enum AS ENUM ( + 'none', + 'activity', + 'agent', + 'comment', + 'category', + 'district', + 'language', + 'lead_from', + 'opportunity', + 'skill', + 'volunteer' +); + + +ALTER TYPE public.notion_relation_host_type_enum OWNER TO n4d_user; + +-- +-- Name: notion_relation_tenant_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.notion_relation_tenant_type_enum AS ENUM ( + 'none', + 'activity', + 'agent', + 'comment', + 'category', + 'district', + 'language', + 'lead_from', + 'opportunity', + 'skill', + 'volunteer' +); + + +ALTER TYPE public.notion_relation_tenant_type_enum OWNER TO n4d_user; + +-- +-- Name: opportunity_status_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.opportunity_status_enum AS ENUM ( + 'opp-new', + 'opp-searching', + 'opp-active', + 'opp-past' +); + + +ALTER TYPE public.opportunity_status_enum OWNER TO n4d_user; + +-- +-- Name: opportunity_translation_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.opportunity_translation_type_enum AS ENUM ( + 'deutsche', + 'englishOk', + 'noTranslation' +); + + +ALTER TYPE public.opportunity_translation_type_enum OWNER TO n4d_user; + +-- +-- Name: opportunity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.opportunity_type_enum AS ENUM ( + 'accompanying', + 'regular', + 'events' +); + + +ALTER TYPE public.opportunity_type_enum OWNER TO n4d_user; + +-- +-- Name: opportunity_volunteer_status_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.opportunity_volunteer_status_enum AS ENUM ( + 'opp-pending', + 'opp-matched', + 'opp-active', + 'opp-past' +); + + +ALTER TYPE public.opportunity_volunteer_status_enum OWNER TO n4d_user; + +-- +-- Name: option_item_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.option_item_type_enum AS ENUM ( + 'none', + 'activity', + 'agent', + 'comment', + 'category', + 'district', + 'language', + 'lead_from', + 'opportunity', + 'skill', + 'volunteer' +); + + +ALTER TYPE public.option_item_type_enum OWNER TO n4d_user; + +-- +-- Name: profile_language_proficiency_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.profile_language_proficiency_enum AS ENUM ( + 'beginner', + 'intermediate', + 'advanced', + 'fluent', + 'native' +); + + +ALTER TYPE public.profile_language_proficiency_enum OWNER TO n4d_user; + +-- +-- Name: profile_language_purpose_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.profile_language_purpose_enum AS ENUM ( + 'general', + 'translation', + 'recipient' +); + + +ALTER TYPE public.profile_language_purpose_enum OWNER TO n4d_user; + +-- +-- Name: timeline_content_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.timeline_content_entity_type_enum AS ENUM ( + 'none', + 'activity', + 'agent', + 'comment', + 'category', + 'district', + 'language', + 'lead_from', + 'opportunity', + 'skill', + 'volunteer' +); + + +ALTER TYPE public.timeline_content_entity_type_enum OWNER TO n4d_user; + +-- +-- Name: timeline_content_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.timeline_content_type_enum AS ENUM ( + 'create', + 'update', + 'remove', + 'comment', + 'status', + 'matching' +); + + +ALTER TYPE public.timeline_content_type_enum OWNER TO n4d_user; + +-- +-- Name: timeline_source_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.timeline_source_entity_type_enum AS ENUM ( + 'none', + 'activity', + 'agent', + 'comment', + 'category', + 'district', + 'language', + 'lead_from', + 'opportunity', + 'skill', + 'volunteer' +); + + +ALTER TYPE public.timeline_source_entity_type_enum OWNER TO n4d_user; + +-- +-- Name: timeline_target_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.timeline_target_entity_type_enum AS ENUM ( + 'none', + 'activity', + 'agent', + 'comment', + 'category', + 'district', + 'language', + 'lead_from', + 'opportunity', + 'skill', + 'volunteer' +); + + +ALTER TYPE public.timeline_target_entity_type_enum OWNER TO n4d_user; + +-- +-- Name: timeslot_occasional_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.timeslot_occasional_enum AS ENUM ( + 'weekends', + 'weekdays' +); + + +ALTER TYPE public.timeslot_occasional_enum OWNER TO n4d_user; + +-- +-- Name: user_role_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.user_role_enum AS ENUM ( + 'user', + 'coordinator', + 'agent', + 'volunteer', + 'admin' +); + + +ALTER TYPE public.user_role_enum OWNER TO n4d_user; + +-- +-- Name: volunteer_status_appreciation_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.volunteer_status_appreciation_enum AS ENUM ( + 't-shirt', + 'benefit-card', + 'tote-bag' +); + + +ALTER TYPE public.volunteer_status_appreciation_enum OWNER TO n4d_user; + +-- +-- Name: volunteer_status_cgc_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.volunteer_status_cgc_enum AS ENUM ( + 'undefined', + 'yes', + 'no', + 'asked_to_apply', + 'applied_self', + 'applied_n4d' +); + + +ALTER TYPE public.volunteer_status_cgc_enum OWNER TO n4d_user; + +-- +-- Name: volunteer_status_cgc_process_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.volunteer_status_cgc_process_enum AS ENUM ( + 'uploaded', + 'missing' +); + + +ALTER TYPE public.volunteer_status_cgc_process_enum OWNER TO n4d_user; + +-- +-- Name: volunteer_status_communication_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.volunteer_status_communication_enum AS ENUM ( + 'called', + 'email-sent', + 'briefed', + 'tried-call', + 'not-responding' +); + + +ALTER TYPE public.volunteer_status_communication_enum OWNER TO n4d_user; + +-- +-- Name: volunteer_status_engagement_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.volunteer_status_engagement_enum AS ENUM ( + 'vol-new', + 'vol-active', + 'vol-available', + 'vol-temp-unavailable', + 'vol-inactive', + 'vol-unresponsive' +); + + +ALTER TYPE public.volunteer_status_engagement_enum OWNER TO n4d_user; + +-- +-- Name: volunteer_status_match_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.volunteer_status_match_enum AS ENUM ( + 'vol-no-matches', + 'vol-pending-match', + 'vol-matched', + 'vol-needs-rematch' +); + + +ALTER TYPE public.volunteer_status_match_enum OWNER TO n4d_user; + +-- +-- Name: volunteer_status_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.volunteer_status_type_enum AS ENUM ( + 'accompanying', + 'regular', + 'events', + 'regular-accompanying' +); + + +ALTER TYPE public.volunteer_status_type_enum OWNER TO n4d_user; + +-- +-- Name: volunteer_status_vaccination_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- + +CREATE TYPE public.volunteer_status_vaccination_enum AS ENUM ( + 'undefined', + 'yes', + 'no', + 'asked_to_apply', + 'applied_self', + 'applied_n4d' +); + + +ALTER TYPE public.volunteer_status_vaccination_enum OWNER TO n4d_user; + +-- +-- Name: validate_communication_types(text[]); Type: FUNCTION; Schema: public; Owner: n4d_user +-- + +CREATE FUNCTION public.validate_communication_types(data text[]) RETURNS boolean + LANGUAGE plpgsql IMMUTABLE + AS $$ + BEGIN + RETURN ( + SELECT bool_and(elem IN ('email','mobilePhone','whatsapp','telegram')) + FROM unnest(data) AS elem + ); + END; + $$; + + +ALTER FUNCTION public.validate_communication_types(data text[]) OWNER TO n4d_user; + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- Name: accompanying; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.accompanying ( + id integer NOT NULL, + address character varying NOT NULL, + name character varying NOT NULL, + phone character varying, + email character varying, + date timestamp with time zone NOT NULL, + language_to_translate public.accompanying_language_to_translate_enum +); + + +ALTER TABLE public.accompanying OWNER TO n4d_user; + +-- +-- Name: accompanying_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.accompanying_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.accompanying_id_seq OWNER TO n4d_user; + +-- +-- Name: accompanying_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.accompanying_id_seq OWNED BY public.accompanying.id; + + +-- +-- Name: activity; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.activity ( + id integer NOT NULL, + title character varying NOT NULL, + category_id integer +); + + +ALTER TABLE public.activity OWNER TO n4d_user; + +-- +-- Name: activity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.activity_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.activity_id_seq OWNER TO n4d_user; + +-- +-- Name: activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.activity_id_seq OWNED BY public.activity.id; + + +-- +-- Name: address; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.address ( + id integer NOT NULL, + title character varying, + street character varying, + postcode_id integer NOT NULL, + city character varying +); + + +ALTER TABLE public.address OWNER TO n4d_user; + +-- +-- Name: address_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.address_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.address_id_seq OWNER TO n4d_user; + +-- +-- Name: address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.address_id_seq OWNED BY public.address.id; + + +-- +-- Name: agent; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.agent ( + id integer NOT NULL, + title character varying NOT NULL, + type public.agent_type_enum, + website character varying, + trust_level public.agent_trust_level_enum DEFAULT 'agent-unknown'::public.agent_trust_level_enum NOT NULL, + search_status public.agent_search_status_enum DEFAULT 'agent-not-needed'::public.agent_search_status_enum NOT NULL, + services text[], + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + address_id integer, + district_id integer, + engagement_status public.agent_engagement_status_enum DEFAULT 'agent-new'::public.agent_engagement_status_enum NOT NULL, + info character varying, + organization_id integer +); + + +ALTER TABLE public.agent OWNER TO n4d_user; + +-- +-- Name: agent_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.agent_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.agent_id_seq OWNER TO n4d_user; + +-- +-- Name: agent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.agent_id_seq OWNED BY public.agent.id; + + +-- +-- Name: agent_language; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.agent_language ( + id integer NOT NULL, + agent_id integer NOT NULL, + language_id integer NOT NULL +); + + +ALTER TABLE public.agent_language OWNER TO n4d_user; + +-- +-- Name: agent_language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.agent_language_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.agent_language_id_seq OWNER TO n4d_user; + +-- +-- Name: agent_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.agent_language_id_seq OWNED BY public.agent_language.id; + + +-- +-- Name: agent_person; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.agent_person ( + id integer NOT NULL, + role public.agent_person_role_enum DEFAULT 'other'::public.agent_person_role_enum NOT NULL, + agent_id integer NOT NULL, + person_id integer NOT NULL +); + + +ALTER TABLE public.agent_person OWNER TO n4d_user; + +-- +-- Name: agent_person_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.agent_person_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.agent_person_id_seq OWNER TO n4d_user; + +-- +-- Name: agent_person_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.agent_person_id_seq OWNED BY public.agent_person.id; + + +-- +-- Name: agent_postcode; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.agent_postcode ( + id integer NOT NULL, + agent_id integer NOT NULL, + postcode_id integer NOT NULL +); + + +ALTER TABLE public.agent_postcode OWNER TO n4d_user; + +-- +-- Name: agent_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.agent_postcode_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.agent_postcode_id_seq OWNER TO n4d_user; + +-- +-- Name: agent_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.agent_postcode_id_seq OWNED BY public.agent_postcode.id; + + +-- +-- Name: appreciation; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.appreciation ( + id integer NOT NULL, + title public.appreciation_title_enum NOT NULL, + date_due timestamp without time zone, + date_delivery timestamp without time zone, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + opportunity_id integer, + volunteer_id integer NOT NULL, + user_id integer +); + + +ALTER TABLE public.appreciation OWNER TO n4d_user; + +-- +-- Name: appreciation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.appreciation_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.appreciation_id_seq OWNER TO n4d_user; + +-- +-- Name: appreciation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.appreciation_id_seq OWNED BY public.appreciation.id; + + +-- +-- Name: be_migrations; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.be_migrations ( + id integer NOT NULL, + "timestamp" bigint NOT NULL, + name character varying NOT NULL +); + + +ALTER TABLE public.be_migrations OWNER TO n4d_user; + +-- +-- Name: be_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.be_migrations_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.be_migrations_id_seq OWNER TO n4d_user; + +-- +-- Name: be_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.be_migrations_id_seq OWNED BY public.be_migrations.id; + + +-- +-- Name: category; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.category ( + id integer NOT NULL, + title character varying NOT NULL +); + + +ALTER TABLE public.category OWNER TO n4d_user; + +-- +-- Name: category_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.category_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.category_id_seq OWNER TO n4d_user; + +-- +-- Name: category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.category_id_seq OWNED BY public.category.id; + + +-- +-- Name: comment; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.comment ( + id integer NOT NULL, + text text NOT NULL, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + language_id integer, + user_id integer NOT NULL, + entity_type public.comment_entity_type_enum DEFAULT 'none'::public.comment_entity_type_enum NOT NULL, + entity_id integer NOT NULL +); + + +ALTER TABLE public.comment OWNER TO n4d_user; + +-- +-- Name: comment_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.comment_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.comment_id_seq OWNER TO n4d_user; + +-- +-- Name: comment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.comment_id_seq OWNED BY public.comment.id; + + +-- +-- Name: communication; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.communication ( + id integer NOT NULL, + contact_type public.communication_contact_type_enum NOT NULL, + contact_method public.communication_contact_method_enum NOT NULL, + communication_type public.communication_communication_type_enum, + date timestamp without time zone NOT NULL, + volunteer_id integer, + user_id integer, + agent_id integer, + CONSTRAINT "CHK_31faa29cb0aff6ef55be2b2146" CHECK ((( +CASE + WHEN (volunteer_id IS NOT NULL) THEN 1 + ELSE 0 +END + +CASE + WHEN (agent_id IS NOT NULL) THEN 1 + ELSE 0 +END) = 1)) +); + + +ALTER TABLE public.communication OWNER TO n4d_user; + +-- +-- Name: communication_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.communication_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.communication_id_seq OWNER TO n4d_user; + +-- +-- Name: communication_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.communication_id_seq OWNED BY public.communication.id; + + +-- +-- Name: config; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.config ( + id integer NOT NULL, + config_key public.config_config_key_enum NOT NULL, + config_value boolean +); + + +ALTER TABLE public.config OWNER TO n4d_user; + +-- +-- Name: config_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.config_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.config_id_seq OWNER TO n4d_user; + +-- +-- Name: config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.config_id_seq OWNED BY public.config.id; + + +-- +-- Name: deal; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.deal ( + id integer NOT NULL, + type public.deal_type_enum NOT NULL, + postcode_id integer NOT NULL, + time_id integer NOT NULL, + location_id integer NOT NULL, + profile_id integer +); + + +ALTER TABLE public.deal OWNER TO n4d_user; + +-- +-- Name: deal_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.deal_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.deal_id_seq OWNER TO n4d_user; + +-- +-- Name: deal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.deal_id_seq OWNED BY public.deal.id; + + +-- +-- Name: district; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.district ( + id integer NOT NULL, + title character varying NOT NULL +); + + +ALTER TABLE public.district OWNER TO n4d_user; + +-- +-- Name: district_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.district_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.district_id_seq OWNER TO n4d_user; + +-- +-- Name: district_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.district_id_seq OWNED BY public.district.id; + + +-- +-- Name: district_postcode; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.district_postcode ( + id integer NOT NULL, + district_id integer NOT NULL, + postcode_id integer NOT NULL +); + + +ALTER TABLE public.district_postcode OWNER TO n4d_user; + +-- +-- Name: district_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.district_postcode_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.district_postcode_id_seq OWNER TO n4d_user; + +-- +-- Name: district_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.district_postcode_id_seq OWNED BY public.district_postcode.id; + + +-- +-- Name: document; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.document ( + id integer NOT NULL, + type public.document_type_enum NOT NULL, + s3_key character varying NOT NULL, + original_name character varying NOT NULL, + mime_type character varying NOT NULL, + volunteer_id integer, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE public.document OWNER TO n4d_user; + +-- +-- Name: document_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.document_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.document_id_seq OWNER TO n4d_user; + +-- +-- Name: document_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.document_id_seq OWNED BY public.document.id; + + +-- +-- Name: event_n4d; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.event_n4d ( + id integer NOT NULL, + is_active boolean DEFAULT false NOT NULL, + date timestamp with time zone NOT NULL, + date_end timestamp with time zone, + type public.event_n4d_type_enum DEFAULT 'party'::public.event_n4d_type_enum NOT NULL, + pic character varying(256), + location_link character varying(256), + rsvp_link character varying(256) NOT NULL, + followup_link character varying(256), + address character varying(256) NOT NULL, + host_name character varying(256), + language_id integer +); + + +ALTER TABLE public.event_n4d OWNER TO n4d_user; + +-- +-- Name: event_n4d_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.event_n4d_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.event_n4d_id_seq OWNER TO n4d_user; + +-- +-- Name: event_n4d_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.event_n4d_id_seq OWNED BY public.event_n4d.id; + + +-- +-- Name: event_translation; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.event_translation ( + id integer NOT NULL, + title character varying(256), + subtitle character varying(256), + menu_title character varying(256), + time_str character varying(256), + location_comment character varying(256), + description text NOT NULL, + short_description character varying(512) NOT NULL, + additional_title character varying(256), + additional_info jsonb, + outro text, + followup_text character varying(256), + eventn4d_id integer, + language_id integer +); + + +ALTER TABLE public.event_translation OWNER TO n4d_user; + +-- +-- Name: event_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.event_translation_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.event_translation_id_seq OWNER TO n4d_user; + +-- +-- Name: event_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.event_translation_id_seq OWNED BY public.event_translation.id; + + +-- +-- Name: field_translation; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.field_translation ( + id integer NOT NULL, + field_name character varying DEFAULT 'title'::character varying NOT NULL, + language_id integer, + entity_type public.field_translation_entity_type_enum DEFAULT 'none'::public.field_translation_entity_type_enum NOT NULL, + entity_id integer NOT NULL, + translation text NOT NULL +); + + +ALTER TABLE public.field_translation OWNER TO n4d_user; + +-- +-- Name: field_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.field_translation_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.field_translation_id_seq OWNER TO n4d_user; + +-- +-- Name: field_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.field_translation_id_seq OWNED BY public.field_translation.id; + + +-- +-- Name: language; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.language ( + id integer NOT NULL, + iso_code character varying NOT NULL, + title character varying NOT NULL +); + + +ALTER TABLE public.language OWNER TO n4d_user; + +-- +-- Name: language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.language_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.language_id_seq OWNER TO n4d_user; + +-- +-- Name: language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.language_id_seq OWNED BY public.language.id; + + +-- +-- Name: lead_from; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.lead_from ( + id integer NOT NULL, + count integer DEFAULT 0 NOT NULL, + title character varying NOT NULL +); + + +ALTER TABLE public.lead_from OWNER TO n4d_user; + +-- +-- Name: lead_from_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.lead_from_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.lead_from_id_seq OWNER TO n4d_user; + +-- +-- Name: lead_from_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.lead_from_id_seq OWNED BY public.lead_from.id; + + +-- +-- Name: location; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.location ( + id integer NOT NULL, + type public.location_type_enum DEFAULT 'district'::public.location_type_enum NOT NULL, + info character varying +); + + +ALTER TABLE public.location OWNER TO n4d_user; + +-- +-- Name: location_address; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.location_address ( + id integer NOT NULL, + location_id integer NOT NULL, + address_id integer NOT NULL +); + + +ALTER TABLE public.location_address OWNER TO n4d_user; + +-- +-- Name: location_address_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.location_address_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.location_address_id_seq OWNER TO n4d_user; + +-- +-- Name: location_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.location_address_id_seq OWNED BY public.location_address.id; + + +-- +-- Name: location_district; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.location_district ( + id integer NOT NULL, + location_id integer NOT NULL, + district_id integer NOT NULL +); + + +ALTER TABLE public.location_district OWNER TO n4d_user; + +-- +-- Name: location_district_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.location_district_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.location_district_id_seq OWNER TO n4d_user; + +-- +-- Name: location_district_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.location_district_id_seq OWNED BY public.location_district.id; + + +-- +-- Name: location_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.location_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.location_id_seq OWNER TO n4d_user; + +-- +-- Name: location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.location_id_seq OWNED BY public.location.id; + + +-- +-- Name: location_postcode; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.location_postcode ( + id integer NOT NULL, + location_id integer NOT NULL, + postcode_id integer NOT NULL +); + + +ALTER TABLE public.location_postcode OWNER TO n4d_user; + +-- +-- Name: location_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.location_postcode_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.location_postcode_id_seq OWNER TO n4d_user; + +-- +-- Name: location_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.location_postcode_id_seq OWNED BY public.location_postcode.id; + + +-- +-- Name: notion_relation; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.notion_relation ( + id integer NOT NULL, + payroll character varying, + host_nid character varying NOT NULL, + host_type public.notion_relation_host_type_enum NOT NULL, + host_id integer NOT NULL, + tenant_nid character varying NOT NULL, + tenant_type public.notion_relation_tenant_type_enum NOT NULL, + tenant_id integer +); + + +ALTER TABLE public.notion_relation OWNER TO n4d_user; + +-- +-- Name: notion_relation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.notion_relation_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.notion_relation_id_seq OWNER TO n4d_user; + +-- +-- Name: notion_relation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.notion_relation_id_seq OWNED BY public.notion_relation.id; + + +-- +-- Name: opportunity; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.opportunity ( + id integer NOT NULL, + title character varying NOT NULL, + type public.opportunity_type_enum NOT NULL, + info character varying, + translation_type public.opportunity_translation_type_enum, + info_confidential character varying, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + deal_id integer, + agent_id integer, + status public.opportunity_status_enum DEFAULT 'opp-new'::public.opportunity_status_enum NOT NULL, + number_volunteers integer DEFAULT 1 NOT NULL, + accompanying_id integer +); + + +ALTER TABLE public.opportunity OWNER TO n4d_user; + +-- +-- Name: opportunity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.opportunity_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.opportunity_id_seq OWNER TO n4d_user; + +-- +-- Name: opportunity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.opportunity_id_seq OWNED BY public.opportunity.id; + + +-- +-- Name: opportunity_volunteer; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.opportunity_volunteer ( + id integer NOT NULL, + status public.opportunity_volunteer_status_enum NOT NULL, + opportunity_id integer NOT NULL, + volunteer_id integer NOT NULL, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE public.opportunity_volunteer OWNER TO n4d_user; + +-- +-- Name: opportunity_volunteer_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.opportunity_volunteer_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.opportunity_volunteer_id_seq OWNER TO n4d_user; + +-- +-- Name: opportunity_volunteer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.opportunity_volunteer_id_seq OWNED BY public.opportunity_volunteer.id; + + +-- +-- Name: option; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.option ( + id integer NOT NULL, + item_type public.option_item_type_enum NOT NULL, + item_id integer NOT NULL +); + + +ALTER TABLE public.option OWNER TO n4d_user; + +-- +-- Name: option_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.option_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.option_id_seq OWNER TO n4d_user; + +-- +-- Name: option_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.option_id_seq OWNED BY public.option.id; + + +-- +-- Name: organization; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.organization ( + id integer NOT NULL, + title character varying NOT NULL, + email character varying, + phone character varying, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + address_id integer NOT NULL, + person_id integer NOT NULL, + website character varying +); + + +ALTER TABLE public.organization OWNER TO n4d_user; + +-- +-- Name: organization_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.organization_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.organization_id_seq OWNER TO n4d_user; + +-- +-- Name: organization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.organization_id_seq OWNED BY public.organization.id; + + +-- +-- Name: person; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.person ( + id integer NOT NULL, + first_name character varying NOT NULL, + middle_name character varying, + last_name character varying, + email character varying, + phone character varying, + avatar_url character varying, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + address_id integer, + preferred_communication_type text[] DEFAULT '{mobilePhone}'::text[] NOT NULL, + landline character varying +); + + +ALTER TABLE public.person OWNER TO n4d_user; + +-- +-- Name: person_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.person_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.person_id_seq OWNER TO n4d_user; + +-- +-- Name: person_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.person_id_seq OWNED BY public.person.id; + + +-- +-- Name: postcode; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.postcode ( + id integer NOT NULL, + longitude numeric(10,7), + latitude numeric(9,7), + value character varying NOT NULL +); + + +ALTER TABLE public.postcode OWNER TO n4d_user; + +-- +-- Name: postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.postcode_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.postcode_id_seq OWNER TO n4d_user; + +-- +-- Name: postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.postcode_id_seq OWNED BY public.postcode.id; + + +-- +-- Name: profile; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.profile ( + id integer NOT NULL, + info character varying, + category_id integer +); + + +ALTER TABLE public.profile OWNER TO n4d_user; + +-- +-- Name: profile_activity; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.profile_activity ( + id integer NOT NULL, + profile_id integer NOT NULL, + activity_id integer NOT NULL +); + + +ALTER TABLE public.profile_activity OWNER TO n4d_user; + +-- +-- Name: profile_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.profile_activity_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.profile_activity_id_seq OWNER TO n4d_user; + +-- +-- Name: profile_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.profile_activity_id_seq OWNED BY public.profile_activity.id; + + +-- +-- Name: profile_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.profile_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.profile_id_seq OWNER TO n4d_user; + +-- +-- Name: profile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.profile_id_seq OWNED BY public.profile.id; + + +-- +-- Name: profile_language; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.profile_language ( + id integer NOT NULL, + proficiency public.profile_language_proficiency_enum DEFAULT 'advanced'::public.profile_language_proficiency_enum, + profile_id integer NOT NULL, + language_id integer NOT NULL, + purpose public.profile_language_purpose_enum DEFAULT 'general'::public.profile_language_purpose_enum +); + + +ALTER TABLE public.profile_language OWNER TO n4d_user; + +-- +-- Name: profile_language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.profile_language_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.profile_language_id_seq OWNER TO n4d_user; + +-- +-- Name: profile_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.profile_language_id_seq OWNED BY public.profile_language.id; + + +-- +-- Name: profile_skill; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.profile_skill ( + id integer NOT NULL, + profile_id integer NOT NULL, + skill_id integer NOT NULL +); + + +ALTER TABLE public.profile_skill OWNER TO n4d_user; + +-- +-- Name: profile_skill_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.profile_skill_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.profile_skill_id_seq OWNER TO n4d_user; + +-- +-- Name: profile_skill_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.profile_skill_id_seq OWNED BY public.profile_skill.id; + + +-- +-- Name: skill; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.skill ( + id integer NOT NULL, + title character varying NOT NULL +); + + +ALTER TABLE public.skill OWNER TO n4d_user; + +-- +-- Name: skill_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.skill_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.skill_id_seq OWNER TO n4d_user; + +-- +-- Name: skill_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.skill_id_seq OWNED BY public.skill.id; + + +-- +-- Name: testimonial; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.testimonial ( + id integer NOT NULL, + is_active boolean DEFAULT false NOT NULL, + name character varying(256), + pic character varying(256), + person_id integer, + language_id integer +); + + +ALTER TABLE public.testimonial OWNER TO n4d_user; + +-- +-- Name: testimonial_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.testimonial_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.testimonial_id_seq OWNER TO n4d_user; + +-- +-- Name: testimonial_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.testimonial_id_seq OWNED BY public.testimonial.id; + + +-- +-- Name: time; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public."time" ( + id integer NOT NULL, + info character varying +); + + +ALTER TABLE public."time" OWNER TO n4d_user; + +-- +-- Name: time_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.time_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.time_id_seq OWNER TO n4d_user; + +-- +-- Name: time_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.time_id_seq OWNED BY public."time".id; + + +-- +-- Name: time_timeslot; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.time_timeslot ( + id integer NOT NULL, + time_id integer NOT NULL, + timeslot_id integer NOT NULL +); + + +ALTER TABLE public.time_timeslot OWNER TO n4d_user; + +-- +-- Name: time_timeslot_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.time_timeslot_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.time_timeslot_id_seq OWNER TO n4d_user; + +-- +-- Name: time_timeslot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.time_timeslot_id_seq OWNED BY public.time_timeslot.id; + + +-- +-- Name: timeline; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.timeline ( + id integer NOT NULL, + source_entity_type public.timeline_source_entity_type_enum, + source_entity_id integer, + target_entity_type public.timeline_target_entity_type_enum NOT NULL, + target_entity_id integer NOT NULL, + content_entity_type public.timeline_content_entity_type_enum NOT NULL, + content_entity_id integer NOT NULL, + content_type public.timeline_content_type_enum NOT NULL, + "timestamp" timestamp without time zone DEFAULT now() NOT NULL, + content text NOT NULL +); + + +ALTER TABLE public.timeline OWNER TO n4d_user; + +-- +-- Name: timeline_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.timeline_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.timeline_id_seq OWNER TO n4d_user; + +-- +-- Name: timeline_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.timeline_id_seq OWNED BY public.timeline.id; + + +-- +-- Name: timeslot; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.timeslot ( + id integer NOT NULL, + info character varying, + rrule character varying, + start timestamp without time zone, + "end" timestamp without time zone, + occasional public.timeslot_occasional_enum +); + + +ALTER TABLE public.timeslot OWNER TO n4d_user; + +-- +-- Name: timeslot_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.timeslot_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.timeslot_id_seq OWNER TO n4d_user; + +-- +-- Name: timeslot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.timeslot_id_seq OWNED BY public.timeslot.id; + + +-- +-- Name: user; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public."user" ( + id integer NOT NULL, + email character varying NOT NULL, + password character varying NOT NULL, + is_active boolean DEFAULT false NOT NULL, + role public.user_role_enum DEFAULT 'user'::public.user_role_enum NOT NULL, + language character varying DEFAULT 'en'::character varying NOT NULL, + timezone character varying DEFAULT 'CET'::character varying NOT NULL, + person_id integer, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL +); + + +ALTER TABLE public."user" OWNER TO n4d_user; + +-- +-- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.user_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.user_id_seq OWNER TO n4d_user; + +-- +-- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.user_id_seq OWNED BY public."user".id; + + +-- +-- Name: volunteer; Type: TABLE; Schema: public; Owner: n4d_user +-- + +CREATE TABLE public.volunteer ( + id integer NOT NULL, + info_about character varying, + info_experience character varying, + status_engagement public.volunteer_status_engagement_enum DEFAULT 'vol-new'::public.volunteer_status_engagement_enum NOT NULL, + status_communication public.volunteer_status_communication_enum, + status_appreciation public.volunteer_status_appreciation_enum, + status_type public.volunteer_status_type_enum, + status_match public.volunteer_status_match_enum DEFAULT 'vol-no-matches'::public.volunteer_status_match_enum NOT NULL, + status_cgc_process public.volunteer_status_cgc_process_enum, + status_vaccination public.volunteer_status_vaccination_enum DEFAULT 'undefined'::public.volunteer_status_vaccination_enum NOT NULL, + status_cgc public.volunteer_status_cgc_enum DEFAULT 'undefined'::public.volunteer_status_cgc_enum NOT NULL, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + deal_id integer, + person_id integer, + preferred_communication_type text[] DEFAULT '{mobilePhone}'::text[] NOT NULL, + date_return timestamp without time zone +); + + +ALTER TABLE public.volunteer OWNER TO n4d_user; + +-- +-- Name: volunteer_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- + +CREATE SEQUENCE public.volunteer_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE public.volunteer_id_seq OWNER TO n4d_user; + +-- +-- Name: volunteer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- + +ALTER SEQUENCE public.volunteer_id_seq OWNED BY public.volunteer.id; + + +-- +-- Name: volunteer_list_mv; Type: MATERIALIZED VIEW; Schema: public; Owner: n4d_user +-- + +CREATE MATERIALIZED VIEW public.volunteer_list_mv AS + WITH aggregatedtimeslots AS ( + SELECT d_1.id AS deal_id, + array_agg(DISTINCT "substring"((t.rrule)::text, 'BYDAY=([A-Z,]+)'::text)) FILTER (WHERE (t.rrule IS NOT NULL)) AS available_days_array_raw, + array_agg(DISTINCT + CASE + WHEN ((EXTRACT(hour FROM t.start) >= (8)::numeric) AND (EXTRACT(hour FROM t."end") <= (11)::numeric)) THEN '08-11'::text + WHEN ((EXTRACT(hour FROM t.start) >= (11)::numeric) AND (EXTRACT(hour FROM t."end") <= (14)::numeric)) THEN '11-14'::text + WHEN ((EXTRACT(hour FROM t."end") <= (17)::numeric) AND (EXTRACT(hour FROM t.start) >= (14)::numeric)) THEN '14-17'::text + WHEN ((EXTRACT(hour FROM t."end") <= (20)::numeric) AND (EXTRACT(hour FROM t.start) >= (17)::numeric)) THEN '17-20'::text + ELSE NULL::text + END) FILTER (WHERE (t.rrule IS NOT NULL)) AS available_times_array, + array_agg(DISTINCT t.occasional) FILTER (WHERE (t.occasional IS NOT NULL)) AS available_occasional_array, + jsonb_agg(jsonb_build_object('start_hour', EXTRACT(hour FROM t.start), 'end_hour', EXTRACT(hour FROM t."end"), 'byday_part', COALESCE("substring"((t.rrule)::text, 'BYDAY=([A-Z,]+)'::text), ''::text), 'occasional', t.occasional)) AS timeslot_data + FROM (((public.timeslot t + JOIN public.time_timeslot tt ON ((t.id = tt.timeslot_id))) + JOIN public."time" tm ON ((tt.time_id = tm.id))) + JOIN public.deal d_1 ON ((tm.id = d_1.time_id))) + GROUP BY d_1.id + ), aggregatedlanguages AS ( + SELECT d_1.id AS deal_id, + array_agg(lang.id) AS language_ids, + array_agg(lang.title) AS language_titles + FROM (((public.language lang + JOIN public.profile_language pl ON ((lang.id = pl.language_id))) + JOIN public.profile p_1 ON ((pl.profile_id = p_1.id))) + JOIN public.deal d_1 ON ((p_1.id = d_1.profile_id))) + GROUP BY d_1.id + ), aggregateddistricts AS ( + SELECT d_1.id AS deal_id, + array_agg(dist.id) AS district_ids, + array_agg(dist.title) AS district_titles + FROM (((public.district dist + JOIN public.location_district ld ON ((dist.id = ld.district_id))) + JOIN public.location l_1 ON ((ld.location_id = l_1.id))) + JOIN public.deal d_1 ON ((l_1.id = d_1.location_id))) + GROUP BY d_1.id + ), aggregatedactivities AS ( + SELECT d_1.id AS deal_id, + array_agg(a.id) AS activity_ids, + array_agg(a.title) AS activity_titles + FROM (((public.activity a + JOIN public.profile_activity pa ON ((a.id = pa.activity_id))) + JOIN public.profile p_1 ON ((pa.profile_id = p_1.id))) + JOIN public.deal d_1 ON ((p_1.id = d_1.profile_id))) + GROUP BY d_1.id + ) + SELECT v.id AS volunteer_id, + d.id AS deal_id, + v.status_engagement, + v.status_type, + per.first_name, + per.last_name, + per.email, + per.phone, + per.avatar_url, + concat_ws(' '::text, NULLIF(TRIM(BOTH FROM per.first_name), ''::text), NULLIF(TRIM(BOTH FROM per.last_name), ''::text)) AS full_name, + ad.district_ids AS district_ids_array, + al.language_ids AS language_ids_array, + (al.language_ids @> ARRAY[( SELECT language.id + FROM public.language + WHERE ((language.iso_code)::text = 'de'::text) + LIMIT 1)]) AS has_german_language, + ( SELECT array_agg(x.x) AS array_agg + FROM unnest(at.available_days_array_raw) x(x)) AS available_days_array, + at.available_times_array, + at.available_occasional_array, + aa.activity_titles, + al.language_titles, + ad.district_titles, + at.timeslot_data + FROM ((((((((public.deal d + JOIN public.volunteer v ON ((d.id = v.deal_id))) + JOIN public.person per ON ((v.person_id = per.id))) + JOIN public.profile p ON ((d.profile_id = p.id))) + JOIN public.location l ON ((d.location_id = l.id))) + LEFT JOIN aggregatedactivities aa ON ((d.id = aa.deal_id))) + LEFT JOIN aggregatedlanguages al ON ((d.id = al.deal_id))) + LEFT JOIN aggregatedtimeslots at ON ((d.id = at.deal_id))) + LEFT JOIN aggregateddistricts ad ON ((d.id = ad.deal_id))) + WHERE (d.type = 'volunteer'::public.deal_type_enum) + WITH NO DATA; + + +ALTER MATERIALIZED VIEW public.volunteer_list_mv OWNER TO n4d_user; + +-- +-- Name: accompanying id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.accompanying ALTER COLUMN id SET DEFAULT nextval('public.accompanying_id_seq'::regclass); + + +-- +-- Name: activity id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.activity ALTER COLUMN id SET DEFAULT nextval('public.activity_id_seq'::regclass); + + +-- +-- Name: address id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.address ALTER COLUMN id SET DEFAULT nextval('public.address_id_seq'::regclass); + + +-- +-- Name: agent id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.agent ALTER COLUMN id SET DEFAULT nextval('public.agent_id_seq'::regclass); + + +-- +-- Name: agent_language id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.agent_language ALTER COLUMN id SET DEFAULT nextval('public.agent_language_id_seq'::regclass); + + +-- +-- Name: agent_person id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.agent_person ALTER COLUMN id SET DEFAULT nextval('public.agent_person_id_seq'::regclass); + + +-- +-- Name: agent_postcode id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.agent_postcode ALTER COLUMN id SET DEFAULT nextval('public.agent_postcode_id_seq'::regclass); + + +-- +-- Name: appreciation id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.appreciation ALTER COLUMN id SET DEFAULT nextval('public.appreciation_id_seq'::regclass); + + +-- +-- Name: be_migrations id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.be_migrations ALTER COLUMN id SET DEFAULT nextval('public.be_migrations_id_seq'::regclass); + + +-- +-- Name: category id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.category ALTER COLUMN id SET DEFAULT nextval('public.category_id_seq'::regclass); + + +-- +-- Name: comment id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.comment ALTER COLUMN id SET DEFAULT nextval('public.comment_id_seq'::regclass); + + +-- +-- Name: communication id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.communication ALTER COLUMN id SET DEFAULT nextval('public.communication_id_seq'::regclass); + + +-- +-- Name: config id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.config ALTER COLUMN id SET DEFAULT nextval('public.config_id_seq'::regclass); + + +-- +-- Name: deal id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.deal ALTER COLUMN id SET DEFAULT nextval('public.deal_id_seq'::regclass); + + +-- +-- Name: district id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.district ALTER COLUMN id SET DEFAULT nextval('public.district_id_seq'::regclass); + + +-- +-- Name: district_postcode id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.district_postcode ALTER COLUMN id SET DEFAULT nextval('public.district_postcode_id_seq'::regclass); + + +-- +-- Name: document id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.document ALTER COLUMN id SET DEFAULT nextval('public.document_id_seq'::regclass); + + +-- +-- Name: event_n4d id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.event_n4d ALTER COLUMN id SET DEFAULT nextval('public.event_n4d_id_seq'::regclass); + + +-- +-- Name: event_translation id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.event_translation ALTER COLUMN id SET DEFAULT nextval('public.event_translation_id_seq'::regclass); + + +-- +-- Name: field_translation id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.field_translation ALTER COLUMN id SET DEFAULT nextval('public.field_translation_id_seq'::regclass); + + +-- +-- Name: language id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.language ALTER COLUMN id SET DEFAULT nextval('public.language_id_seq'::regclass); + + +-- +-- Name: lead_from id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.lead_from ALTER COLUMN id SET DEFAULT nextval('public.lead_from_id_seq'::regclass); + + +-- +-- Name: location id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.location ALTER COLUMN id SET DEFAULT nextval('public.location_id_seq'::regclass); + + +-- +-- Name: location_address id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.location_address ALTER COLUMN id SET DEFAULT nextval('public.location_address_id_seq'::regclass); + + +-- +-- Name: location_district id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.location_district ALTER COLUMN id SET DEFAULT nextval('public.location_district_id_seq'::regclass); + + +-- +-- Name: location_postcode id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.location_postcode ALTER COLUMN id SET DEFAULT nextval('public.location_postcode_id_seq'::regclass); + + +-- +-- Name: notion_relation id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.notion_relation ALTER COLUMN id SET DEFAULT nextval('public.notion_relation_id_seq'::regclass); + + +-- +-- Name: opportunity id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.opportunity ALTER COLUMN id SET DEFAULT nextval('public.opportunity_id_seq'::regclass); + + +-- +-- Name: opportunity_volunteer id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.opportunity_volunteer ALTER COLUMN id SET DEFAULT nextval('public.opportunity_volunteer_id_seq'::regclass); + + +-- +-- Name: option id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.option ALTER COLUMN id SET DEFAULT nextval('public.option_id_seq'::regclass); + + +-- +-- Name: organization id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.organization ALTER COLUMN id SET DEFAULT nextval('public.organization_id_seq'::regclass); + + +-- +-- Name: person id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.person ALTER COLUMN id SET DEFAULT nextval('public.person_id_seq'::regclass); + + +-- +-- Name: postcode id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.postcode ALTER COLUMN id SET DEFAULT nextval('public.postcode_id_seq'::regclass); + + +-- +-- Name: profile id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.profile ALTER COLUMN id SET DEFAULT nextval('public.profile_id_seq'::regclass); + + +-- +-- Name: profile_activity id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.profile_activity ALTER COLUMN id SET DEFAULT nextval('public.profile_activity_id_seq'::regclass); + + +-- +-- Name: profile_language id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.profile_language ALTER COLUMN id SET DEFAULT nextval('public.profile_language_id_seq'::regclass); + + +-- +-- Name: profile_skill id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.profile_skill ALTER COLUMN id SET DEFAULT nextval('public.profile_skill_id_seq'::regclass); + + +-- +-- Name: skill id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.skill ALTER COLUMN id SET DEFAULT nextval('public.skill_id_seq'::regclass); + + +-- +-- Name: testimonial id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.testimonial ALTER COLUMN id SET DEFAULT nextval('public.testimonial_id_seq'::regclass); + + +-- +-- Name: time id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public."time" ALTER COLUMN id SET DEFAULT nextval('public.time_id_seq'::regclass); + + +-- +-- Name: time_timeslot id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.time_timeslot ALTER COLUMN id SET DEFAULT nextval('public.time_timeslot_id_seq'::regclass); + + +-- +-- Name: timeline id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.timeline ALTER COLUMN id SET DEFAULT nextval('public.timeline_id_seq'::regclass); + + +-- +-- Name: timeslot id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.timeslot ALTER COLUMN id SET DEFAULT nextval('public.timeslot_id_seq'::regclass); + + +-- +-- Name: user id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public."user" ALTER COLUMN id SET DEFAULT nextval('public.user_id_seq'::regclass); + + +-- +-- Name: volunteer id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- + +ALTER TABLE ONLY public.volunteer ALTER COLUMN id SET DEFAULT nextval('public.volunteer_id_seq'::regclass); + + +-- +-- Data for Name: accompanying; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.accompanying (id, address, name, phone, email, date, language_to_translate) FROM stdin; +1 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk +2 Wtksof Qswkteiz Yüklzt\fTiktfqdzlaggkrofqzgk\fdqoszg:qswkteiz.yxtklzt@epr.rt  \N \N 1970-01-01 00:00:00+00 deutsche +3 Wtksof Dnkzg Dxfigm-Wgossgz\fdqoszg:dnkzg.dxfigm-wgossgz@zqdqpq.rt\f+26 79045183982 \N \N 1970-01-01 00:00:00+00 deutsche +4 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +5 Wtksof xfafgvf \N \N 2024-09-24 00:00:00+00 deutsche +6 Wtksof xfafgvf \N \N 2024-09-17 00:00:00+00 deutsche +7 Wtksof xfafgvf \N \N 2024-09-24 12:10:00+00 deutsche +8 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk +9 Wtksof Tdokiqf \N \N 1970-01-01 00:00:00+00 englishOk +10 Wtksof Qswkteiz Yüklzt\fTiktfqdzlaggkrofqzgk\fRotflziqfrn: 5705 1512019\fdqoszg:qswkteiz.yxtklzt@epr.rt  \N \N 1970-01-01 00:00:00+00 deutsche +11 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +12 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +13 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +14 Ankozmtk Lzkqßt 28, Lhgkziqsst xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +15 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +16 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +17 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk +18 Wtksof Qsqq Qzoq 579353535933, dqoszg:sgsnad@oesgxr.egd \N 1970-01-01 00:00:00+00 englishOk +19 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +20 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +21 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +22 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +23 Wüsgvlzk 70, 75048 Dqko Oldqosn \N \N 2024-12-17 10:20:00+00 deutsche +24 DCM Qroxcqkt, Wqrlzk. 83, 78890 Wtksof Ugso Dgiqdqro Ixlwqfr Lqkcqk Aiqf Ltnyo 5701 87 571 257 \N 2024-11-21 09:50:00+00 deutsche +25 Eqdhxl Cokeigv-Asofoaxd\fIgeileixsqdwxsqfm yük Qxutfitosaxfrt\fDozztsqsstt 2; Tkrutleigll\fQxuxlztfwxkutk Hsqzm 7 - 78898 Wtksof Tcrgeioq Hqleqko, 5704 1208827 \N \N 2024-11-26 12:00:00+00 deutsche +26 Uxlzqct Toyyts Leixst\fIqffl Tolstklzkqllt 04-45\f75259 Wtksof xfafgvf \N \N 2024-11-07 10:00:00+00 deutsche +27 Igitfleiöfiqxltk Lzk. 33, 75816 Wtksof xfafgvf \N \N 2024-11-05 10:00:00+00 deutsche +28 Qd Qdzluqkztf 8, 79077 Aöfou Vxlztkiqxltf, 7.5 U. Galqfq Nxkeitfag \N \N 2024-11-06 11:10:00+00 deutsche +29 RKA Asofoatf Wtksof Vtlztfr\fLhqfrqxtk Rqdd 785, 72595 Wtksof Itkk Colokhqliq Fxzlqsgc xfr ltof Lgif Xdqkhqliq dqoszg:colokhqlqf@udqos.egd \N 2024-11-19 07:45:00+00 englishOk +30 Ukxftvqsrlzk 09, 75438 Wtksof Itkk Cgsgrndnk Lzqfagcnei Fg higft fxdwtk - fg higft \N 2024-11-07 15:15:00+00 englishOk +31 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-11-19 13:20:00+00 deutsche +32 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-11-13 14:00:00+00 deutsche +33 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-11-08 12:50:00+00 deutsche +34 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-11-29 15:00:00+00 deutsche +35 Egfkqroq Kqrogsguot\fLzxzzuqkztk Hs. 7, 75130 Wtksof Oxko Zxkexstz 579084598473 \N 2024-11-06 07:00:00+00 deutsche +36 Dqislrgkytk Ukxfrleixst qd Ytsrkqof\fYtsrkqof 20, 73138 Wtksof Dglqvo Ftmiqr \N \N 2024-11-06 08:00:00+00 deutsche +37 DCM Qroxcqkt Utlxfrwkxfftf/Dozzt, Wqrlzkqßt 83, 78890 Wtksof Zofq Iqmkqzo Yqzodt Iqmkqzo, rot Dxzztk - 57908 5672819 \N 2024-11-26 13:30:00+00 deutsche +38 CtfqMots - Ctftfmtfzkxd Wtksof Ykotrkoeilzkqßt\fYkotrkoeilzkqßt 69, 75770 Wtksof Lctzsqfq Lzgoqf dqoszg:lctzsqfqlzgqf87@udqos.egd, +26 701 77148769 \N 2024-11-13 13:35:00+00 englishOk +39 Roka Sqdht Yqeiqkmz yük Offtkt Dtromof xfr Uqlzkgtfztkgsguot \fKitoflzkqßt 3/8, 73796 Wtksof Oknfq Hkqcglxrgcnei +845143806732 \N 2024-11-07 08:00:00+00 deutsche +40 Ztszgvtk Rqdd 38. 72716 Wtksof Ykqx Yqkzxf Qwrxsst 570132705559 \N 2024-11-14 12:00:00+00 deutsche +41 Rtxzleitl Itkmmtfzkxd rtk Eiqkozè, Qxuxlztfwxkutk Hsqzm 7 78898 Wtksof Soxrdosq Lqkwqf 57046014428 grtk 579001335968\fOik Dqff Qstbto Kqrx 579087358846 \N 2024-11-25 12:15:00+00 englishOk +42 Wtmokalqdz Ftxaössf cgf Wtksof\fUtlxfritozlqdz\fRotflzutwäxrt: Uxzleidorzlzk. 87, 73896 Wtksof Ykqx Htkoiqf Gmzxka dqoszg:ig04985@udqos.egd\f57182933293 \N 2024-11-20 09:30:00+00 deutsche +43 Qxuxlztfwxkutk Hsqzm 7, 78898 Wtksof (Ofztkf: Dozztsqsstt, 8. Tzqut) Itkk Pxdwtk Zlowoktqc O qlatr ygk oz \N 2024-11-14 11:30:00+00 englishOk +44 Qxuxlztfwxkutk Hsqzm 7, 78898 Wtksof (Ofztkf: Dozztsqsstt 77, 8. Tzqut) Itkk Pxdwtk Zlowoktqc O qlatr ygk oz \N 2024-11-18 10:15:00+00 englishOk +45 Dozztsqsstt 2, 78898 Wtksof Qyqy Qztk Cqztk Qfql Qztk 570133110297 \N 2024-12-16 08:30:00+00 englishOk +46 Kxrgvtk Lzkqßt 24, 73897 Wtksof Rxklxf Rqu 57003939784 \N 2024-11-18 10:00:00+00 deutsche +47 Vqktftk Lzk. 0, 73148 Wtksof Ltntr Qdof Kqqro 570183316392, dqoszg:qdof.kqqroo@udqos.egd \N 2024-12-06 09:30:00+00 deutsche +48 Roqufglzoaxd Wtksof, Wtkudqfflzk. 9-0, 75617 Wtksof Mqkoy Dqidxro - \N 2024-12-03 10:05:00+00 englishOk +49 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk +50 Ztoeilzkqßt 19, Iqxl 2, 78250 Wtksof Dtidtz Nqltk Lteuof Dtidtz Lteuof (Egxlof cgf Dtidtz Nqltk Lteuof) +6559829505347 \N 2024-12-11 09:00:00+00 deutsche +51 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-12-10 12:00:00+00 deutsche +52 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-12-12 12:20:00+00 deutsche +53 Wxutfiqutflzkqßt 73, 75997 Wtksof Owkqiod Wqkrqai \N \N 2024-11-25 13:00:00+00 deutsche +54 Leixsrftk- xfr Oflgsctfmwtkqzxfu Ztdhtsigy-Leiöftwtku \fUtkdqfoqlzkqßt 74-35, 73566 Wtksof. Itkk Foegsqo Ftfozq Fg higft, egfzqez zikgxui lgeoqs vgkatkl \N 2024-12-05 13:00:00+00 deutsche +55 Wtksof xfafgvf \N \N 2024-12-13 00:00:00+00 deutsche +56 Ukxftvqsrlzkqllt 22, 75438 Wtksof\fLztyytf Axis Aofrtkqkmzhkqbol Fqzqsoq Qfrkoxlieitfag (Ukqfrdq) + 26 70142212408 \N 2024-12-20 12:00:00+00 deutsche +57 Wkxfftflzkqßt 715, 75779 Wtksof Fg ofyg wteqxlt oy rqzq ltexkozn Fg ofyg wteqxlt oy rqzq ltexkozn - egfzqez zikgxui zit lgeoqs vgkatk \N 2024-12-03 12:30:00+00 noTranslation +58 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +59 Rqkvoflzkqßt 72-74, 75946 Wtksof Lqfuq Dqodgxfq \N \N 2024-12-02 08:00:00+00 deutsche +60 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +61 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +62 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk +63 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk +64 Püroleitl Akqfatfiqxl \fItofm-Uqsoflao-Lzkqßt 7, 78820 Wtksof Dqkoq Lqkwqf 570180654753 \N 2024-12-09 09:40:00+00 deutsche +65 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk +66 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +67 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +68 Utkdqfoqlzk. 74, 73566 Wtksof Cgsgrndnk Cgoztfag 57184851373 \N 2024-12-12 15:00:00+00 deutsche +69 Eiqkozé Eqdhxl Wtfpqdof Ykqfasof\fIofrtfwxkurqdd 85, 73358 Wtksof Dk. Oliaiqf Hqfglnqf dqoszg:olibqfhqfglnqf@udqos.egd \f570142770155. \N 2024-12-10 08:30:00+00 englishOk +70 Eiqkozé Eqdhxl Wtfpqdof Ykqfasof\fIofrtfwxkurqdd 85, 73358 Wtksof Dk. Oliaiqf Hqfglnqf dqoszg:olibqfhqfglnqf@udqos.egd \f570142770155. \N 2024-12-17 08:00:00+00 englishOk +207 Wtksof xfafgvf \N \N 2025-09-12 15:00:00+00 deutsche +71 Lz. Pglty Akqfatfiqxl Vtoßtfltt,\fUqkztflzk. 7, 78544 Wtksof Qwrxs Jqltd Qmodo dqoszg:qmodojqlod7646@udqos.egd \f579085407680 \N 2024-12-17 13:30:00+00 deutsche +72 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +73 Eqwxvqmo Qszusotfoeat \fizzhl://vvv.uggust.egd/dqhl/hsqet//rqzq=!2d3!8d7!7l5b20q42198780tty07:5bew05e93ytr1yq94?lq=B&ctr=7z:4365&oezb=777 xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +74 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation +75 Wtksof xfafgvf \N \N 2024-12-18 12:00:00+00 englishOk +76 Kxrgvtk Lzkqßt 24, 73897 Wtksof Ftxaössf\fIqxl 35 Asofoa yük Qxutfitosaxfrt Ugs Pqf Lgszqfo xfr ltoft Ykqx Dqipqwof Lgszqfo 570183959650 \N 2024-12-18 07:45:00+00 englishOk +77 Eqdhxl Cokeigv Asofoaxd, Lzqzogf 77, Dozztsqsstt 2 (3 Tzqut), 78898 Wtksof Ykqx Lgfuüs Ofet +26 718 00 69 221 \N 2025-01-15 09:00:00+00 deutsche +78 Leixsrftkwtkqzxfu xfr Oflgsctfmwtkqzxfu Wtksof Ztdhtsigy Leiöftwtku RVLZM t.C.\f\fUtkdqfoqlzkqßt 74-35, 73566 Wtksof Fofq Eitwqzgkgcq +2670103222028\f+2670103793885 \N 2025-01-21 11:00:00+00 deutsche +79 Cokeigv Asofoaxd, Dozztsqsstt 2, Lzqzogf 77, 3 Tzqut\fQxuxlztfwxkutk Hsqzm 7, 78898 Wtksof\f\fizzhl://vvv.eiqkozt.rt/ltkcoet/squthsqf/hsqf/dqh/eca_dozztsqsstt_2/2/ Ngxlty Fqllty Cqztk cgf Ngxlty Itkk Qwx Qlqr Fqloy 5790 42384823 \N 2025-01-06 09:00:00+00 englishOk +80 Fqxdwxkutk Kofu 70 Liqodqq Fqltkqrttf Iqlqf Iqlqf 579082346125 \N 2025-01-20 14:00:00+00 deutsche +81 Aqhvtu 2, 78259 Wtksof Qfolltzzt, Fatfux 570135182558 \N 2025-01-21 14:00:00+00 deutsche +82 Lgffzqulzkqßt 7 Ctrqz Aosoe 5718 357 2543 \N 2025-01-22 14:30:00+00 deutsche +83 Ztoeilzkqßt 19 (Iqxl 2, 3. Tzqut) Aiqsts Qsdgiqdqr +84107428379 (Gfats fxk htk ViqzlQhh tkktoeiwqk) \N 2025-01-30 08:20:00+00 deutsche +84 Ftxt Wqifigylzkqßt 30 Lctzsqfq Lzgoqf 570144327563 \N 2025-01-28 09:30:00+00 englishOk +85 Asofoa yük Hlneioqzkot, Hlneigzitkqhot xfr Hlneiglgdqzoa | Akqfatfiqxl Itrvouliöit, Iöitflztou 7 Kqdorq Wxrqjgcq 5790-96 14 99 04 \N 2025-01-22 10:00:00+00 deutsche +86 Ldost Tntl :) Qxutfmtfzkxd Soeiztkytsrt Vtlz, Rkqatlzk. 87/83 Csqrnlsqc Eixcneiaof +24111677218 \N 2025-01-28 13:10:00+00 deutsche +87 Sqfrlwtkutk Qsstt 26, Iqxl 71, Wtksof Qnlt Wgmaqnq 57181354063 \N 2025-02-24 09:00:00+00 deutsche +88 Gkrtfldtolztklzkqßt 79-71 Fofq Eitwqzgkgcq +2670103222028 \N 2025-02-05 10:00:00+00 deutsche +89 Ztoeilzk. 19 Dqsqa Mqzgz +2679086447252 \N 2025-02-20 08:00:00+00 deutsche +90 Wsqleiagqsstt 83 Ykqx Iqdorqzgx 579373258846 \N 2025-02-10 09:00:00+00 deutsche +91 DCM Iqxzqkmz Ztdhtsigy, Ztdhtsigytk Rqdd 330 Jqrtk Owkqiodo 5790 41396202 \N 2025-02-27 16:55:00+00 deutsche +92 Hinlogztqd Iqfftl Iüwwt, Iteadqffxytk 2, 75660 Wtksof Itsof Etsoa (Dxzztk Iqzoet Etsoa) 57188612556 \N 2025-02-08 12:30:00+00 deutsche +93 Hinlogztqd Iqfftl Iüwwt, Iteadqffxytk 2, 75660 Wtksof Itsof Etsoa (Dxzztk Iqzoet Etsoa) 57188612556 \N 2025-02-15 12:30:00+00 deutsche +94 Hinlogztqd Iqfftl Iüwwt, Iteadqffxytk 2, 75660 Wtksof Itsof Etsoa (Dxzztk Iqzoet Etsoa) 57188612556 \N 2025-02-22 12:30:00+00 deutsche +95 Mtistfrgkytk Vtsst, Esqnqsstt 834-885 Cqstfznfq, 47 n.g. Fg higft \N 2025-02-05 10:40:00+00 deutsche +96 Sqfrlwtkutk Qsstt 26 Qsoktmq Eiocqto 570187584162 \N 2025-02-21 10:00:00+00 deutsche +97 Eqdhxl Eiqkozt Dozzt, Igeileixsqdwxsqfm DUQ-QDW Sxlotflzkqßt 12, Offq Ctktdoo 570132127973 \N 2025-02-19 12:00:00+00 deutsche +98 Leiqkfvtwtklzk. 72, 78259 Wtksof (WtkqzxfulEtfztk) Dgiqddqro, Dgiqddqr Qlty (utw. 57.57.7644) 5 \N 2025-03-03 10:00:00+00 deutsche +99 Leiqkfvtwtklzk. 72 Lqfq Nqko 5790 88180109 \N 2025-03-03 13:30:00+00 deutsche +100 DCM yük Yqdosotf Ltfutk UdwI, Agzzwxlltk Rqdd 12 Qfolq Ktpthgcq, (Cqztk Nldqnos Eiqkontc) Iqfrnfk. rtl Cqztkl: 57937 6979099 \N 2025-02-18 10:10:00+00 deutsche +101 Pgw Etfztk Lhqfrqx , Vgiskqwtrqdd 83,78136 Wtksof Lhqfrqx Wqmnstfag Ctfoqdof +26 7933 3679712 \N 2025-03-11 14:00:00+00 deutsche +102 Aöhtfoeatk Lzkqßt 742 Eiocqto, Qsoktmq T-Dqos: dqoszg:Qkdti_qkdti@nqigg.egd \N 2025-02-26 14:30:00+00 deutsche +103 Wtmokalqdz Ktofoeatfrgky, Qwz. Pxutfr x. Yqdosot, Ktuogfqstk Lgm. Rotflz,Fodkgrlzk. 2-72, Qxyuqfu Q Qsaiqsqy, Zqiq 570135125502 \N 2025-03-04 09:00:00+00 deutsche +104 Uglsqktk Xytk 79 Dqdxaqlicoso Rqzg +2670187193812 \N 2025-03-03 09:00:00+00 deutsche +105 Rotyytfwqeilzkqßt 7 Rtfol Ageq 5701 858 472 71\frtfomageq.18@oesgxr.egd \N 2025-03-26 08:45:00+00 deutsche +106 "DCM IQXZQKMZ Ztdhtsigy // Äkmztmtfzkxd Ztdhtsigytk Iqytf Ztdhtsigytk Rqdd 330 Jqrtk Owkqiodo 5790 41396202 \N 2025-04-30 13:00:00+00 deutsche +107 Qfaxfyzlmtfzkxd Ztuts (Gkqfotfwxkutk Lzkqßt 349, 78280) Ukxhht cgf Utysüeiztztf \N \N 2025-03-05 08:00:00+00 deutsche +108 Aqks-Dqkb-Lzkqßt 11 Heigsaq, Dnagsq +845600033277 \N 2025-03-14 09:30:00+00 deutsche +109 Aqks Dqkb Lzk. 07, 73528 Wtksof Qsogfq Lzgoqf +2670142815568 \N 2025-06-03 14:30:00+00 deutsche +110 Cocqfztl Asofoaxd of rtk Vqsrlzk. 41-65 Wtksof Ykqx Zxkqwo Yqk 585 258 12 5888 - lgeoqs vgkatk \N 2025-03-13 13:00:00+00 deutsche +111 Wtksof Yqnqz Aosofe 570137894619 \N 2025-03-13 08:00:00+00 deutsche +112 Tkalzk. 7q, Wtksof; IFG Rk. Mgvgrfn Fqyolq Dgfugkn +267188904115 \N 2025-03-19 11:20:00+00 deutsche +113 Rotyytfwqeilzkqßt 7, Wtksof Vqyqq QsLqqro 579082873159 \N 2025-03-19 00:00:00+00 deutsche +114 Roqufglzoaxd Wtkudqfflzkqßt Wtkudqfflzkqßt 9-0, 75617 Wtksof Rxklxf Rqu 570145008280 \N 2025-03-18 10:50:00+00 englishOk +115 Iofrtfwxkurqdd 85, 73358 Wtksof, Mtfzkqst Hqzotfztfqxyfqidt od TU, Tofuqfu Fgkr (Asofulgk/Wkqidlzkqllt)\fOfztkft Qrktllt: Eiqkozé Eqdhxl Wtfpqdof Ykqfasof\fLzqzogf: qfleisotßtfr 8. Lzgea Hqzotfztfdqfqutdtfz , Yqiklzüist 78 xfr 72 Kqxd 8728 Lqoyxk Kqidqf Qdofo 5704-0187492 (Hqzotfz) qd wtlztf htk ViqzlQhh \N 2025-03-18 08:30:00+00 deutsche +116 Zofg-Leivotkmofq-Lzkqßt 83, 78546 Wtksof Rot Tsztkf itoßtf Eiokq (rql Aofr Ougk Eiokq), lot vgiftf of rtk QLGU Xfztkaxfyz of Hqfagv. \N \N 2025-03-19 10:30:00+00 deutsche +117 Stikztk Lzkqßt 10, 75990 Wtksof xfafgvf \N \N 2025-03-19 14:00:00+00 deutsche +118 Vqktftk lzk 7 Iqwowq Jqmomqrt +2679087323891 \N 2025-05-07 12:35:00+00 deutsche +119 Rühhtslzk. 85/ Rtozdtklzk. 4 Qytz Qlaqkgcq 5797 39568393 \N 2025-03-24 12:00:00+00 deutsche +120 Sxoltflzkqßt 12 Qytz Qlaqkgcq 5797 39568393 \N 2025-03-21 12:30:00+00 deutsche +121 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +122 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche +123 Ukxfrleixst qf rtk Utoßtfvtort 75U73 Qdqfsolvtu 25 73149 Wtksof. Ixltspoe Qmxk 57 900 2448368 \N 2025-03-24 09:00:00+00 deutsche +124 Rotyytfwqeilzkqßt 7 Vqyqq QsLqqro 579082873159 \N 2025-03-19 11:00:00+00 deutsche +125 Aqfzlzkqßt 45 Tstfq Etwgzqkx 5 \N 2025-03-07 11:00:00+00 deutsche +126 Rtkdqzgeiokxkuot, Uqzgvtk Lzkqßt 767, 78969 Wtksof Ykqx Lctzsqfq Lzgoqf +2679049990859 \N 2025-03-20 11:30:00+00 deutsche +127 Tkalzk. 7q Fqyolq Dgfugkn +267188904115 \N 2025-03-19 11:00:00+00 deutsche +128 Ukxftvqsrlzk.1 Qfutsq Egrktqf 579081583689 \N 2025-03-27 08:30:00+00 deutsche +129 Ykotrkoei-Akqxlt-Xytk 32 Qztyq Jtnqd +2670930958052 \N 2025-03-27 11:30:00+00 deutsche +130 Sqfrlwtkutk Qsst 26 Kgmagcq, Qfrkoo +26 79794482540 \N 2025-04-14 12:45:00+00 englishOk +131 Kitoflzkqßt 8 73796 Oknfq Hkqcglxrgcnei 57159201256 \N 2025-04-03 08:00:00+00 englishOk +132 Htztklwxkutk Hsqzm 8 Eiocqto,Qsoktmq 570187584162 \N 2025-04-16 15:15:00+00 englishOk +208 Leiöflzk. 9-0 Cqaizqfu Qhozloqxko +2679047294732 \N 2025-08-13 10:30:00+00 deutsche +133 Toeiwgkfrqdd 379, 78280 Yqdosot Dgiqddqro 57183533902 \N 2025-04-28 10:15:00+00 deutsche +134 Itstft-Vtouts-Hsqzm 3 Lqlxsofq Qffq 57159201256 \N 2025-04-08 12:45:00+00 deutsche +135 Tkalzkqßt 7q, 73528 Wtksof, Fqyolq Dgfugkn 57188904115 \N 2025-04-11 10:00:00+00 deutsche +136 Pqfxlm-Agkemqa-Lzk. 83 Roqfq Egrktqfx (Dxzztk) 570100238613 \N 2025-06-04 07:00:00+00 deutsche +137 Rühhtslzkqßt 85 73718 xfafgvf \N \N 2025-04-07 12:45:00+00 englishOk +138 Aofg Exwob qd Qstbqfrtkhsqzm Ukxhht 585 378566515 \N 2025-04-23 08:00:00+00 deutsche +139 Ugkaolzkqßt 77- 37 Doiqso Itgkioo 570196762988 \N 2025-04-14 13:00:00+00 deutsche +140 Lnkofutfvtu 32 Dqkoqdq Rogxsrt, Wq 585386468593 \N 2025-04-17 11:00:00+00 deutsche +141 Qstt rtk Agldgfqxztf 36, 73147 Wtksof Fqzqsooq +26 7971 2871459 \N 2025-04-17 08:00:00+00 deutsche +142 Ktlortfmlzkqßt 69, 78256 Wtksof qidqr 579732484182 \N 2025-04-22 10:30:00+00 deutsche +143 Ztszgvtk Rqdd 87 Kqlgxso, Qwrts Lqsqd 5701-15431132 \N 2025-05-02 11:30:00+00 deutsche +144 Kqziqxl Vtoßtfltt/Pxutfrqdz Wtksoftk Qsstt 393-315 Qxkts-Uitgkuitx Kqrx 579371215797 \N 2025-05-13 08:30:00+00 deutsche +145 Aofrtkqkmz Rk. Aosutk, Aofrtkqkmzhkqbol qd Zkqcthsqzm, Düuutslzk. 33, 75320 Wtksof. xfafgvf \N \N 2025-04-22 11:00:00+00 englishOk +146 Vgzqflzkqßt 3-8 Estdtfl Rndat 585386468593 \N 2025-05-02 16:16:00+00 deutsche +147 Qxuxlztfwxkutk Hsqzm 7 Qsixllof Qsaiqkrqs Qdqfo +267136189249 \N 2025-05-28 07:00:00+00 deutsche +148 dttkqftk lzkqßt 0, Ltoymqrti Qwatfqk Qkqli 585386468593 \N 2025-05-05 08:00:00+00 deutsche +149 Cocqfztl Asofoaxd od Ykotrkoeiliqof, Sqfrlwtkutk Qsstt 26, 75326 Wtksof ( IFG-Qdwxsqfm, Iqxl 79, 9. Tzqut od Moddtk 75) Qfrkoo Kgmiagc +26 79794482540 \N 2025-07-21 07:00:00+00 englishOk +150 Lzqfrtlqdz Ktofoeatfrgky, Qfzgfnhsqzm 7 Wowo Dqknqd Ixllqofo 579094776975 \N 2025-05-19 11:00:00+00 deutsche +151 Sxoltflzk. 19 Qkdtf Uiqmqknqf 570183459720 \N 2025-05-28 11:45:00+00 deutsche +152 Ykqfm-Pqegw-Lzkqßt 75 Roqssg Qollqzgx Wtssq 585386468593 \N 2025-05-19 08:30:00+00 deutsche +153 Itstft-Vtouts-Hsqzm 3 Lqlxsofq Qffq 57159201256 \N 2025-05-15 09:15:00+00 deutsche +154 Löddtkofulzk. 32-31 Wstllot Guotwot 579712508357 \N 2025-05-21 08:30:00+00 deutsche +155 Qdzlutkoeiz Leiöftwtku, Ukxfrtvqsrlzk. 11/10 Zqdqk Wxzwqoq 5701 03274892 \N 2025-06-11 11:00:00+00 deutsche +156 Lzqfrtlqdz Ktofoeatfrgky, Qfzgfnhsqzm7 Liqifqm & Tldqko Dgiqddqro 5718 3533902 \N 2025-06-02 08:00:00+00 deutsche +157 Kxwtfllzkqßt 739, 73790 Wtksof Dxkqz Qlqfaxzsx 57189649297 \N 2025-05-21 13:00:00+00 deutsche +158 DCM Kqrogsguot Dqkmqif, Dtikgvtk Qsstt 33 Qwrgxs Aqrtk Uqdtft 5718 2212057 \N 2025-05-27 10:30:00+00 deutsche +159 Ykqfayxkztk Qsstt 777 Roqssg Qollqzgx Wtssq 579098063255 \N 2025-05-26 10:30:00+00 deutsche +160 Wtksoftk Qsstt 712 Stcqfo Agkatsoq 579004270236 \N 2025-05-28 12:30:00+00 deutsche +161 Lzktozlzkqßt.0 Lqwofq xfr Kozq Sqaqzgli 58535563168 \N 2025-06-20 11:00:00+00 deutsche +162 Lzgkagvtk Lzk.788,75250 Wtksof. Oknfq Hkqcglxrgcnei 57159201256 \N 2025-06-05 09:00:00+00 deutsche +163 Fotrlzkqßt 7-3 b 58546023115 \N 2025-06-03 10:30:00+00 deutsche +164 Utdtofleiqyzxfztkaxfyz Aqwsgvtk Vtu 46 - 73931 Wtksof Stgfqkrg +2679338358709 \N 2025-06-11 15:00:00+00 deutsche +165 Wtksof xfafgvf \N \N 2025-07-31 12:00:00+00 deutsche +166 Aofrtk xfr Pxutfrutlxfwritozlrotflz (APUR), Käeafozmtk Lztou, 4/4q Rtfnl Yqkaqli 585 3556 3168 \N 2025-06-16 10:00:00+00 deutsche +167 Ukgßt Iqdwxkutk Lzk.9-77 Letkwqf Mxsyoq +2670185805822 \N 2025-06-21 10:30:00+00 deutsche +168 Wtksof xfafgvf \N \N 2025-07-04 14:00:00+00 deutsche +169 dtiktkt dtiktkt 579799453180 \N 2025-06-23 10:50:00+00 deutsche +170 Iqxlcguztohsqzm 8, Zqzoqfq Etkqko 5790 0663008589 \N 2025-07-15 11:30:00+00 deutsche +171 Utiktflttlzk 66 Rqcznqf 570176487392 \N 2025-06-27 16:00:00+00 englishOk +172 Ftxt Leiöfigsmtk Lzk. 83 Ltkioo xfr Nqkglsqc (3 Leiüstk) 57069613054 \N 2025-07-22 13:00:00+00 deutsche +173 Lzqfrtlqdz Ktofoeatklrgky Hktrq Rqkoq 579097911363 \N 2025-06-30 11:00:00+00 deutsche +174 Wtksof xfafgvf \N \N 2025-07-01 00:00:00+00 deutsche +175 Wtksof xfafgvf \N \N 2025-07-11 12:00:00+00 deutsche +176 Wtksof xfafgvf \N \N 2025-07-11 18:00:00+00 deutsche +177 Vqktftk Lzk.0 Coqeitlsqc Zoxfgc 5790 02915846 \N 2025-07-08 10:00:00+00 deutsche +178 Vqsztkiöytklzkqßt 77, 72719 Wtksof Kqlgxso, Qwrts Lqsqd 5701-15431132 \N 2025-07-08 11:20:00+00 deutsche +179 Wxfrtlvtikakqfatfiqxl Wtksof, Leiqkfigklzlzkqßt 78, 75779 Wtksof Etsoa Nqlof +2670111133573 \N 2025-07-31 07:00:00+00 englishOk +180 Wtksof xfafgvf \N \N 2025-07-15 15:00:00+00 deutsche +181 Eiqkozé Eqdhxl Wtfpqdof Ykqfasof Iofrtfwxkurqdd 85 Soxrdnsq Dqkqaxzlq 579775534979 \N 2025-07-11 09:00:00+00 deutsche +182 Eqdhxl Wtfpqdof Ykqfasof (EWY) Iofrtfwxkurqdd 85, Ftxkgeiokxkuoleit Qdwxsqfm Iqxhziqxl: Dozztswqx 2. Twtft Wosqs Qdotkq 579379104766 \N 2025-07-29 10:00:00+00 englishOk +183 Hkqbol yük Uqlzkgtfztkgsguot - Rk. Dxfztfrgky, Ykqfayxkztk Qsstt 387 Cqloso Etwgzqk 5704 1376262 \N 2025-08-04 14:20:00+00 englishOk +184 Atozilzkqßt 72 Lcozsqfq Wxsqagcq +26 702 46 777 54 \N 2025-07-21 14:30:00+00 englishOk +185 Hktkgvtk Hsqzm 2 Sxloft Lqkulnqf 570183459720 \N 2025-07-17 11:00:00+00 englishOk +186 Woldqkealzkqßt 29-21 Sxloft Lqkulnqf 570183459720 \N 2025-07-22 11:15:00+00 englishOk +187 Ltnrtslzk 3-9 Gstfq Moiqstfag +845605389869 \N 2025-07-21 14:00:00+00 deutsche +188 Qszgfqtk Lzk. 05-03, Wtksof Galqfq Lihtkfqs +845 60 174 81 49 \N 2025-07-23 08:45:00+00 deutsche +189 Qxuxlztfwxkutkhsqzm 7 (Dozztsqsstt 77, TU) Coqeitlsqc Zoxfgc 5790 02915846 \N 2025-07-31 08:00:00+00 englishOk +190 Wtksof xfafgvf \N \N 2025-08-29 10:00:00+00 deutsche +191 Cocqfztl Asofoaxd od Ykotrkoeiliqof, Sqfrlwtkutk Qsstt 26, 75326 Wtksof ( IFG-Qdwxsqfm, Iqxl 79, 9. Tzqut od Moddtk 75) Qfrkoo Kgmiagc +26 79794482540 \N 2025-07-29 08:40:00+00 englishOk +192 Wtkqzxfullztsst Roqagfoleitl Vtka Lzqrzdozzt t.C. - Ghhtsftk Lzk. 24/26 Fofq Hqligcq 57152933262 \N 2025-07-24 14:00:00+00 deutsche +193 Kqroeatlzkqßt 99 Dqkofq +26 79917 894544 \N 2025-07-24 16:00:00+00 deutsche +194 Eiqkozé , Gfagsguot, Sxoltflzkqßt 78Q Mtsoiq Hgsqz +26 701 17768305 \N 2025-07-24 09:00:00+00 deutsche +195 Wtksof xfafgvf \N \N 2025-07-25 14:00:00+00 deutsche +196 Uqkwqznhs 7 liotf Qfckn 570191678866 \N 2025-08-12 17:10:00+00 noTranslation +197 Leiöfiqxltk Qsstt 774 Kqolq Hktrq 5790 88939163 \N 2025-08-14 13:45:00+00 deutsche +198 Pgwetfztk Zkthzgv-Aöhtfoea, Ukgß-Wtksoftk Rqdd 08 Q-T, 73240 Wtksof, Moddtk 8Q-58 Lqkrqk Vqso Qidqrmqo +26 79000963480 \N 2025-08-05 11:00:00+00 deutsche +199 Lzqssleiktowtklzk 73. KQIDQFO, Zqp Dgiqddqr 585171907365 \N 2025-07-30 15:00:00+00 deutsche +200 Wtksof xfafgvf \N \N 2025-08-22 14:30:00+00 deutsche +201 Rotyytfwqeilzkqßt 7 Qmqrti Iqjugg 57013860643 (Lgif Fqcor) \N 2025-09-05 09:50:00+00 englishOk +202 Roqagfoleitl Vtka Wtksof Lzqrdozzt t.C Ghhtsftk Lzk. 24-26 Cgkgfofq, Cqstfznfq 5701 877 84 329 \N 2025-07-31 14:00:00+00 deutsche +203 Wtksof xfafgvf \N \N 2025-08-22 15:00:00+00 deutsche +204 Yqffofutklzkqßt 83 Cqlosolq Egrktqf 579009751637 \N 2025-08-08 12:30:00+00 deutsche +205 Hkqbol Kqoftk Igyydqff, Wqrlzk. 77 Iqvkt Mkqk Kqdqriqf 570133091230 \N 2025-08-11 09:30:00+00 englishOk +206 Hqxs-Leivtfa-Lzkqßt 8-37 xfafgvf \N \N 2025-08-14 11:00:00+00 deutsche +209 Wtksof xfafgvf \N \N 2025-08-12 15:00:00+00 deutsche +210 Ykqxtfmtfzkxd Zkthzgv-Aöhtfoea, Kqroeatlzk. 99 Liakonq Ronqk Qwrxssqi Qwrxssqi +26 701 8309859 \N 2025-08-26 16:00:00+00 deutsche +211 Rk. dtr. Qstbqfrtk Agei Cgsatk Aqqzm - Leiöflzk. 9-0 Qhozloqxko Cqaizqfu +2679047294732 \N 2025-08-21 09:40:00+00 deutsche +212 Qd Kqziqxl 3 Lixwqi Lqkquziqkxd 5701 87774684 \N 2025-08-18 10:00:00+00 deutsche +213 Wtksof xfafgvf \N \N 2025-08-29 14:00:00+00 deutsche +214 Cokeigv Asofoaxd, Qxuxlztfwxkutkhsqzm 7, Dozztsqsstt 77, TU Coqeitlsqc Zoxfgc 5790 02915846 \N 2025-09-03 12:15:00+00 deutsche +215 Uktoylvqsrtk Lzk. 44 Letkwqf Mxsyoq 70185805822 \N 2025-09-09 14:15:00+00 deutsche +216 Sxrvouaokeilzkqßt 8 Qstbqfrkx Letkwqf 670185805822 \N 2025-09-05 12:00:00+00 deutsche +217 Wtksof xfafgvf \N \N 2025-09-01 15:00:00+00 deutsche +218 IWY Ustol 0 qf. Exwq Wgrleiqyz xfr mxkxea Eqsrtkgf Ctkuqkq 57021820163 \N 2025-08-19 12:50:00+00 englishOk +219 Kqrogsguot tcoroq Fükfwtkutk Lzkqßt 10 Soronq Agkfol 579712548696 \N 2025-08-29 10:40:00+00 deutsche +220 Rk. Iqlitdo, Leiqkfvtwtklzk.72 Qfutsq Egrktqf 5790 09123948 \N 2025-09-02 15:00:00+00 deutsche +221 Ztdhtsigytk Rqdd 73 Akozlqa, Nxkoo 57188288273 \N 2025-09-09 11:30:00+00 deutsche +222 ILQ Xfyqsseiokxkuot (Tofuqfu Fgkr Yqiklzüist 37/33)\fIofrtfwxkurqdd 85, 73358 Wtksof Dxkqz Qlqfaxzsx 5700 3814796 \N 2025-08-28 09:45:00+00 deutsche +223 HINLOGZTQD PQUTK Wqrtfleit Lzkqllt 36 Kqrx Ctkq (Dxzztk) 57040424069 \N 2025-08-27 18:20:00+00 deutsche +224 Axkyüklztfrqdd 704-706 Qfqlzqloq Eqsrqkqk 585 386468504 \N 2025-08-28 14:30:00+00 deutsche +225 Uqstflzkqßt 1 Qfqlzqloq Eqsrqkqk 585386468504 \N 2025-09-08 15:10:00+00 deutsche +226 Akqfatfiqxl Aöfouof Tsolqwtzi Itkmwtkut uUdwI Itkmwtkulzk. 06 Rqdoqf Qstpqfrkg (Aofr) 5851455065340 \N 2025-09-01 12:15:00+00 deutsche +227 Akqfatfiqxl Aöfouof Tsolqwtzi Itkmwtkut uUdwI Itkmwtkulzk. 06 75819 Wtksof Rqdoqf Qstpqfrkg 5851455065340 \N 2025-09-17 13:00:00+00 deutsche +228 Axkyüklztfrqdd 68 Ltkwtf Cqlost +267188927171 \N 2025-08-27 17:40:00+00 deutsche +229 Iqfl-Leidorz-Lzk. 71 Ykqx Lzqf 579799453180 \N 2025-09-05 08:00:00+00 deutsche +230 Hkqbol Lzthiqf Kgrrt Esqnqsstt 829 Dxiqddtr QsWqako 579712508357 \N 2025-09-17 16:00:00+00 deutsche +231 od Tcqfutsoleitf Vqsrakqfatfiqxl Lzqrzkqfrlzkqßt 999, Zio Fiqz fuxntf +2679377566499 \N 2025-09-01 14:00:00+00 noTranslation +232 Cocqfztl Asofoaxd qd Xkwqf, Rotyytfwqeilzkqßt 7 Lxszqf, Htsocqf 5790088828668 \N 2025-09-03 11:30:00+00 deutsche +233 Koeiqkr cgf Vtomläeatk Hsqzm 8, TU Dgiqddqr Pqcqr Qmtdo 5700 7808746 \N 2025-09-04 13:20:00+00 deutsche +234 Asglztklzk.82 Ftsoq Dnzkgcnei 5701 39509067 \N 2025-09-16 14:50:00+00 deutsche +235 Iqfl-Leidorz-Lzk. 75 Gstfq Rtkoxiofq +267063386285 \N 2025-09-12 10:00:00+00 deutsche +236 Hkqbolctkwxfr Wtksof - Vtofwtkulvtu 7, IFG Rk. Qrqd Stsq Kgrofqrmt (Tk/oid) +267040747845 \N 2025-09-08 15:45:00+00 deutsche +237 Wtkudqfflzk. 9-0 Gstfq Horrxwfq +845 69 741 2459 \N 2025-09-11 12:30:00+00 deutsche +238 Wtksof xfafgvf \N \N 2025-09-19 14:00:00+00 deutsche +239 Wtksof xfafgvf \N \N 2025-09-11 18:00:00+00 deutsche +240 Wtksof xfafgvf \N \N 2025-09-18 18:00:00+00 deutsche +241 Cocqfztl Asofoaxd od Ykotrkoeiliqof, Sqfrlwtkutk Qsstt 26 Yqdosot Qkoaqf 5701 18458006 \N 2025-09-30 09:00:00+00 deutsche +242 Stwtkqdwxsqfm (Dozztsqsstt 77) Qxuxlztfwxkutk Hsqzm 7 Coqeitlsqc Zoxfgc 5790 02915846 \N 2025-09-17 12:00:00+00 deutsche +243 Axkyüklztfrqdd 68 Gsuq Hstleq 5790 83161029 Hqcts Hstleq \N 2025-09-15 08:00:00+00 deutsche +244 IFG-Asofoa - Eiqkozt Eqdhxl Cokeigv-Asofoaxd, Dozztsqsstt 3, 78898 Wtksof Qsixllof Qsaiqkrqs Qdqfo +267136189249 \N 2025-09-17 08:00:00+00 deutsche +245 Dqkmqiftk Eiqxlltt 6 Fqkuom Dqddqrso 579000642482 \N 2025-10-14 11:10:00+00 deutsche +246 Rqkvoflzkqßt 72-74 Soroq Hktorq 585386468598 \N 2025-09-23 09:00:00+00 deutsche +247 Rxfeatklzk. 19 Tsztkfqwtfr +26 793 5366 8957 \N 2025-09-30 17:00:00+00 deutsche +248 Dgifvtu 35, 73932 Wtksof Wtlg Zlxkzlxdoq +26 701 17154377 \N 2025-09-25 17:00:00+00 deutsche +249 Cocqfztl DCM Vtrrofu, Düsstklzkqßt 786, 78898 Wtksof, 3. Tzqut - Qrohglozqlwtkqzxfullztsst Stsq Kgrofqrmt (Tk/oid) +26 7040747845 \N 2025-09-26 09:50:00+00 deutsche +250 Rk. dtr. Kglt Dqmiqko / Rk. Liokof Dqliqko Aqoltkrqdd 31 Zqkqznf, Qffq 7979205349 \N 2025-09-29 10:20:00+00 deutsche +251 Wtksof xfafgvf \N \N 2025-10-24 12:30:00+00 deutsche +252 Ugzsofrtlzk.68 Litceitfag, Gstloq +24063931435 \N 2025-10-10 10:30:00+00 deutsche +253 Wtksof xfafgvf \N \N 2025-12-11 14:00:00+00 deutsche +254 Ugzsofrtlzk.25 Kxlieiqa, Qkzxk +2679006779093 \N 2025-10-06 13:00:00+00 deutsche +255 Hkqbol Rk.Ködtk xfr Rk.Leitfats-Ködtk Wxfrtlqsstt 34 Konqri Kqdqrqf Gdqk Dgxlqn 57971 2508357 \N 2025-10-08 12:30:00+00 deutsche +256 Ltssq- Iqllt- Lzk. 39 Wtudnkqz Qzqwqssnntc +2679977586747 \N 2025-10-15 10:30:00+00 deutsche +257 Pgwetfztk Wtksof Hqfagv, Lzgkagvtk Lzk. 788 - Vqkztwtktoei 9.589 Foqmqo Wqiqk 568055262027 \N 2025-10-17 12:00:00+00 deutsche +258 Wtksof xfafgvf \N \N 2025-10-18 11:00:00+00 deutsche +259 RKA Asofoatf Wtksof Aöhtfoea. Asofoa yük Utwxkzliosyt. Lqscqrgk-Qsstfrt Lzk.3-4, 73996. Tkmfxaqtcq Mxikq 57186090371 \N 2025-10-23 10:00:00+00 deutsche +260 Pgwetfztk Zkthzgv-Aöhtfoea, Ukgß-Wtksoftk Rqdd 08 · 73240 Wtksof Qdofqzq Zkqgké 579377990757 \N 2025-11-04 10:45:00+00 deutsche +261 OddqfxtsAsofoa WtksofWxei, Sofrtfwtkutk Vtu 76, 78739 Wtksof - Lzqzogf 7, Iqxl 358 Ocqf RQF 5701 33584090 \N 2025-10-28 09:30:00+00 deutsche +262 Vositsdlzkqßt 38Q Axkixmgcq Oknfq +845665888451 \N 2025-10-27 10:30:00+00 deutsche +263 Qxuxlztfwxkutk Hsqzm 7 Qstalqfrkt Aqkzctsolicoso +2679095559173 \N 2025-10-31 11:30:00+00 deutsche +264 Ykqfayxkztk Qsstt 777 Lhqkaqllt Wtf Gdqk ,Qngxw 585386468593 \N 2025-11-03 10:00:00+00 noTranslation +265 LDO Ik. Rohs.-Dtr. Hytoytk, Lgmoqsdtromofoleitl Oflzozxz Wtksof, Vositsdlqxt 783 Cqlns Agcqs +845617480593 \N 2025-11-12 09:30:00+00 deutsche +266 Itkmwtkulzk. 06 Uüsümqk Lqiof 5797 32873809 \N 2025-11-04 13:00:00+00 deutsche +267 Sogf-Ytxeizvqfutk-Lzkqßt 37Q Soxwgco Egrktqf 5701 33734107 \N 2025-11-20 10:00:00+00 deutsche +268 Rk. Aqkqeq Wtkudqfflzkqßt 9 Sgkq Hstleg 57090255495 \N 2025-11-17 17:00:00+00 deutsche +269 Rk. dtr. Wqikqd Tsqio / Wtkudqfflzkqßt 9-0 Qlkq, Ugso 5701179292621 \N 2025-11-03 10:10:00+00 deutsche +270 Dnlsgvozmtk Lzk.26 Soqfq Colqtcq 57904 2322831 \N 2025-11-20 13:50:00+00 deutsche +271 Wtksof xfafgvf \N \N 2025-12-22 10:30:00+00 deutsche +272 Ugzsofrtlzk 68 Kgdqf Ukgigslano +845645171191 \N 2025-11-13 15:00:00+00 deutsche +273 Wkqwqfztk Lzk. 74-35 Qso Wqailio 555 \N 2025-11-11 10:00:00+00 deutsche +274 Pgwetfztk Wtksof Ftxaössf - Dqofmtk Lzk. 30 Lcoqzq Galqfq xfr Lcoqzno Gstalqfrk +845648355962 \N 2025-11-18 09:40:00+00 deutsche +275 \fEiqkozé Eqdhxl Cokeigv Esofoe\f Qxuxlztfwxkutk Hs. 7 Qfzgfofq Hktrq +267188927171 \N 2025-11-20 11:00:00+00 deutsche +276 Rgkgzitqlzk. 7 Liokof Qsomqrq 5797 79544497 \N 2025-11-10 14:30:00+00 englishOk +277 Cokeigv-Asofoaxd, Qxuxlztfwxkutk Hsqzm 7 / Dozztsqsstt 8 Zoxfgc, Coqeitlsqc 5790 02915846 \N 2025-11-20 13:45:00+00 deutsche +278 Dtromofmtfzkxd od Lqfq Asofoaxd, Ykqfayxkztk Qsstt 387Q Cqloso Etwgzqk 5701 02742030 \N 2025-11-24 14:15:00+00 deutsche +279 Ykqfayxkztk Qsstt 387Q Cqloso Etwgzqk 5701 02742030 \N 2025-11-27 14:40:00+00 deutsche +280 Wtksof xfafgvf \N \N 2025-12-11 13:43:00+00 deutsche +281 Eiqkozt - Eqdhxl Cokeigv-Asofoaxd (ECA) Qxuxlztfwxkutk Hsqzm. 7 - qdw. Qxutf GH Dozztsqsstt 2, 7 GU. Akqceitfag Gstalqfrtk +845609060536 \N 2025-11-21 09:45:00+00 deutsche +282 Kqrogsguoleitl Ctklgkuxfulmtfzkxd: Eiqksgzztfwxku qd Hqxsoftfakqfatfiqxl Roeatflvtu 39-86 Hkodq 585 378 566 360 \N 2025-11-19 13:45:00+00 noTranslation +283 Leiöflzk. 65 Cqstfznfq Axmdofq +2679391644233 \N 2025-11-17 09:15:00+00 noTranslation +284 Asglztklzkqßt 82-89, Dgiqdqr Aiqsoyt 579087763887 \N 2025-11-20 11:15:00+00 deutsche +285 Wükutkqdz Igitfmgsstkfrqdd - Igitfmgsstkfrqdd 700 Gstaloo Ixzfna 579732769514 \N 2025-12-03 10:15:00+00 deutsche +286 Asofoa yük Hlneioqzkot xfr Hlneigzitkqhot, Itofm-Uqsoflao-Lzkqßt 7 Ltdtfgcq, Nxsooq 579358035514 \N 2025-11-24 09:15:00+00 deutsche +287 Dqsztltk Dtromof yük Dtfleitf gift Akqfatfctkloeitkxfu Qqeitftk Lzk. 73, Rtizoqkgc Nxko 555 \N 2025-11-25 08:10:00+00 deutsche +288 Cocqfztl Ftxaössf, Ltoztftofuqfu Mqrtalzkqllt 98 / Teat Wqxdsäxytkvtu, Hqcossgf 77 Dokvqz Aiqstr Qidqr 5718 6322777 \N 2025-11-26 10:45:00+00 deutsche +289 Egsxdwoqrqdd 75 Fgei xfwtaqffz 777777777 \N 2030-01-01 01:01:00+00 englishOk +290 Leivqftwteatk Eiqxlltt 95 Aqztknfq Igkqo 570148241930 \N 2025-11-20 09:45:00+00 deutsche +291 Ykqxtfmtfzkxd Kqroeatlzk. 99 Galqfq Dqkznfxa +2679086552724 \N 2025-11-27 15:40:00+00 deutsche +292 LHH-Dozzt, Sofotflzkqßt 730 Ogf Zxkaqf 790 03886316 \N 2025-12-01 10:40:00+00 deutsche +293 Eqkozql-DCM od Kgztf Iqxl Wktozt Lzk. 21/20 Dqkoqfq Yqkyqeqko 585378566502 \N 2025-12-03 11:10:00+00 deutsche +294 Tkflz cgf Wtkudqff Asofoaxd Hgzlrqd, Eiqksgzztflzkqßt 03 Ixllqof Yglzgj 57971 2508357 \N 2026-01-21 09:10:00+00 deutsche +295 Wtksof xfafgvf \N \N 2025-12-17 12:00:00+00 deutsche +296 Qxuxlzt-Coazgkoq-Asofoaxd, Kxwtfllzk. 739, 73790 Wtksof Gstfq Einiknf +84561 251 14 43 \N 2025-12-03 12:00:00+00 deutsche +297 Sxfutfqkmzhkqbol Ztuts, Leisgßlzk. 9, 78950 Wtksof Gstfq Einiknf +84561 251 14 43 \N 2025-12-12 07:30:00+00 deutsche +298 Eiqkozt Qxutfasofoa Eqdhxl Cokeigv Qxuxlztfwxkutk Hsqzm 7, Dozztsqsstt 2, 7 Tzqut Gstalqfrtk Akqceitfag +845609060536 \N 2025-12-01 09:15:00+00 deutsche +299 Wtksof xfafgvf \N \N 2025-12-09 15:00:00+00 deutsche +300 Ftxkgsguoleit Yqeiasofoatf Hqkqetslxlkofu 1q 72920 Wttsozm-Itoslzäzztf Wosqs Qdotkq 579379104766 \N 2025-12-05 11:00:00+00 deutsche +301 Lqfq Asofoaxd Soeiztfwtku Liokof QSOMQRQ 5701 32895349 \N 2025-12-29 12:30:00+00 deutsche +302 izzhl://vvv.uggust.egd/cotvtk/hsqet?leq_tlc=984192wqr8y5we23&gxzhxz=ltqkei&dor=/u/77ubphjh05&lq=B&ctr=3qiXATvoJm9yQgMAKQbVFJyTRIt4oIcQJ4U5gQIgTEEXJQJ / Kotlqtk Lzkqßt 62 Tziodqz Pqsqs Pgxfro 579779544451 \N 2025-12-09 10:50:00+00 deutsche +303 Igeileixsqdwxsqfm yük Qssutdtofeiokxkuot (TU) Dozztsqsstt 2, Stcqfo Agkatsoq 5790 04270236 \N 2025-12-16 11:00:00+00 deutsche +304 Wtksof xfafgvf \N \N 2025-12-15 14:30:00+00 deutsche +305 Pgwetfztk Lhqfrqx, Qszgfqtk Lzk. 05/03 Qidtr Bqllqf 570117034884 \N 2025-12-22 10:00:00+00 deutsche +306 Rtxzleitl Itkmmtfzkxd rtk Eiqkozt Asofoa yük Aqkrogsguot, Dozztsqsstt 77 Gstfq Rqf 57042366140 \N 2025-12-15 08:00:00+00 deutsche +307 Rotyytfwqeilzkqßt 7 Kozq Eoxkqko 570172490209 \N 2025-12-29 12:30:00+00 deutsche +308 Qswkteizlzkqßt 66 Foegsqo Lzgoqf 57049610801 \N 2025-12-23 08:10:00+00 deutsche +309 Qf rtk Vxisitort 383q Gstfq Rtkoxiofq +267063386285 \N 2026-01-13 09:00:00+00 deutsche +310 Pgwetfztk Dozzt, Ltnrtslzk. 3-9 Gstalqfrk Akqceitfag 5845609060536 \N 2026-01-06 09:00:00+00 deutsche +311 Esqnqsstt 834 Axkixmgcq Oknfq +845665888451 \N 2026-01-29 07:30:00+00 deutsche +312 Itstft-Vtouts-Hsqzm 75 Qstalqfrkt Aqkzctsolicoso (rtk Lgif), Uogkuo Aqkzctsolicoso (rtk Cqztk) +2679095559173 \N 2026-01-05 13:00:00+00 deutsche +313 Sqfrlwtkutk Qsstt 358, 78599 Wtksof fqei Rk. Dqsagc qd Axkyüklztfrqdd 355, 75076 Wtksof Soxwgc Linhag +2685378 566-362 \N 2026-01-08 08:15:00+00 deutsche +314 Pgwetfztk wtksof Ztdhtsigy-Leiöftwtku, Qsqkoeilzk. 73-70, Cgk rtf Käxdtf 710-714 Lzoctf Lqrgclano +845144578293 \N 2025-12-29 13:00:00+00 deutsche +315 Asglztklzk.81 Tofuqfu Q Lqnqf Wqwtlax 5790 01320565 (Kxyfxddtk rtk Dxzztk) \N 2026-01-09 13:00:00+00 deutsche +316 Pgwetfztk Hqfagv Lzgkagvtk Lzk. 788 Dxlzqyq Tkuxs 585378566502 \N 2026-01-08 14:00:00+00 deutsche +317 Tkoei-Vtoftkz-Lzkqßt 1 Ltsqd Aoysgd 585378566502 \N 2026-01-20 08:30:00+00 deutsche +318 Pgwetfztk Wtksof Ztdhtsigy-Leiöftwtku, Qsqkoeilzk. 73-70, Rdnzkg Qkztdtfag. +845181934354 \N 2026-01-16 10:00:00+00 deutsche +319 Roeatflvtu 39-36 Axkixmgcq Oknfq +845665888451 \N 2026-02-13 10:20:00+00 deutsche +320 Ukxftvqsrlzk.22 Miqffq, Dnzkgcnei Rot Ztstygffxddtk rtk Dqdq sqxztz: 5718 0722728 \N 2026-01-19 11:20:00+00 deutsche +321 Asglztklzkqßt 81, Tofuqfu Q Kqats Kxlg 5700 4531011 Ztstygffxddtk cgf rtk dqdq cgf Kqats \N 2026-02-19 13:00:00+00 deutsche +322 Asglztklzk.81 Tofuqfu Q Aqkgsqof Kxlg 5700 4531011 \N 2026-01-14 13:00:00+00 deutsche +323 Igeileixsqdwxsqfm yük Qssutdtofeiokxkuot (TU) Dozztsqsstt 2, Stcqfo Agkatsoq 5790 04270236 \N 2026-01-06 13:30:00+00 deutsche +324 Rotyytfwqeilzkqßt 7 Kozq Eoxkqko 579009681768 \N 2026-01-12 13:30:00+00 deutsche +325 Iqfl-Leidorz-Lzkqßt 71, 73246 Wtksof Mxikq Tkmfxaqtcq +06598375718 \N 2026-01-15 15:00:00+00 deutsche +326 Zitgrgk- Itxll- Hsqzm 4 Kxwto Dqkooq xfr Kxwto Dnaiqosg +845142090326 \N 2026-01-23 13:00:00+00 englishOk +327 Wtksof xfafgvf \N \N 2026-01-15 16:00:00+00 deutsche +328 Pgwetfztk Wtksof Ztdhtsigy-Leiöftwtku, Qsqkoeilzk. 73 - 70 Lzoctf Lqrgclano +845144578293 \N 2026-02-19 11:30:00+00 deutsche +329 Gzzg-Lxik-Qsstt 60-66 Snltfag Soxwgc +845141839725 \N 2026-01-26 12:00:00+00 englishOk +330 Sqfrtlqdz yük Tofvqfrtkxfu, Ykotrkoei-Akqxlt-Xytk 3 Dqdiqs Qszqdodo 57973 7660489 \N 2026-01-19 07:45:00+00 noTranslation +331 Holzgkoxllzk. 788, Iqxl Q, Kqxd 774 Qstbqfrtk Leidorz 579790786897 \N 2026-01-26 13:45:00+00 deutsche +332 Iqfl-Leidorz-Lzkqßt 71 Kqwqw Qslqnr Gdqk 579378173964 \N 2026-02-02 13:00:00+00 deutsche +333 Pgwetfztk Wtksof Soeiztfwtku , Ugzsofrtlzk. 68, 75819 Wtksof Zndxk Dqsnli 571564511923 \N 2026-01-21 10:30:00+00 deutsche +334 Aqroftk Lzkqßt 38 Mxwqorq Qslqiso 570145419747 \N 2026-01-29 14:30:00+00 deutsche +335 Wtksof xfafgvf \N \N 2026-02-10 14:00:00+00 deutsche +336 Toeiaqdhlzkqßt 75 Kgmqsofq Hktorq 579001424417 \N 2026-02-05 13:00:00+00 deutsche +337 Pgw Etfztk Wtksof Zkthzgv-Agthtfoea, Ukgß-Wtksoftk Rqdd 08 Q - T Gxsqrt Lqsodqzgx +267001488904 \N 2026-02-05 10:00:00+00 deutsche +338 Wtksof xfafgvf \N \N 2026-01-23 16:00:00+00 deutsche +339 Cocqfztl Asofoaxd Qd Xkwqf / Rotyytfwqeilzkqßt 7 Kozq Eoxkqko 57186952545 \N 2026-02-03 10:30:00+00 deutsche +340 Pgwetfztk Wtksof Zkthzgv-aöhtfoea, Ukgß-Wtksoftk Rqdd 08Q-T, 73240 Wtksof Mtnf Tsrof Qddqko 570115600444 \N 2026-02-03 09:45:00+00 deutsche +341 Pgwetfztk Wtksof Zkthzgv-Aöhtfoea , Hyqkktk-Uggldqff-Lzk. 76 Gstalqfrk Hgfmts 55845605041838 \N 2026-02-17 08:30:00+00 deutsche +342 Toltfqeitk Lzk. 15/17 Snzcnfgc Oigk +2679094191802 \N 2026-02-02 16:00:00+00 deutsche +343 Eiqkozt Eqdhxl Cokeigv-Asofoaxd (ECA) Qxux - Igeileixsqdwxsqfm: VQX-QDW Qxutf-Igeileixsqdwxsqfm, Dozztsqsstt 2 TU Akqceitfag Gstalqfrtk 584 5609060536 \N 2026-02-09 09:40:00+00 deutsche +344 Gzzg-Lxik-Qsstt 60-66 Eiqhsnflano Ltkioo +267042054897 \N 2026-02-02 10:00:00+00 deutsche +345 Agsgfotlzkqßt 37 Ocqffq Zxotlinf +267001221906 \N 2026-02-16 12:30:00+00 englishOk +346 Lzqfrtlqdz Soeiztfwtku, Tugf-Tkvof-Aolei-Lzk. 751 Gdeq Hktorq +26 79044426384 \N 2026-02-04 09:30:00+00 deutsche +347 Rotyytfwqeilzk. 7 Qnlt Züka 570105248791 \N 2026-03-17 09:40:00+00 deutsche +348 Püroleitl Akqfatfiqxl Itofm-Uqsoflao-Lzkqßt 7 Oxko Dgkgm +2679393181382 \N 2026-02-10 16:20:00+00 deutsche +349 DCM Doftkcq Lztusozm Leisgßlzkqßt 25 Oxko Dgkgm +2679393181382 \N 2026-02-26 12:45:00+00 deutsche +350 Agsgfotlzkqßt 37 Zxotlinf Ocqffq +267001221906 \N 2026-02-27 08:00:00+00 englishOk +351 Vqkleiqxtk Lzk. 83 Rqkoq Aiqkoq +26 701 37583881 \N 2026-02-10 08:45:00+00 deutsche +352 Pgwetfztk Wtksof Hqfagv, Lzgkagvtk Lzk. 788, 75250 - Iqxl W Moddtk 8510 Stlieitfag Coazgkooq (Dxzztk) +845603892907 \N 2026-02-12 10:00:00+00 deutsche +353 Axkyüklztfrqdd 771w Cqstfzof Dxfztqf 5701 77363953 \N 2026-02-16 09:15:00+00 deutsche +354 Aqks-Dqkb-Lzkqßt 785 Dqzcto EOFX (Aofr), Coezgkoq Eofx (Dxzztk) 570172361992 \N 2026-02-13 09:50:00+00 deutsche +355 Ugsrwteavtu.39 Lgyooq Ygfzgli 5701 44317387 \N 2026-02-12 16:00:00+00 deutsche +356 Toltfqeitk Lzk. 15/17 Snzcnfgc Oigk +26709094191802 \N 2026-02-23 15:45:00+00 deutsche +357 Gzzg-Lxik-Qsstt 60-66, 75949 Wtksof Eiqhsnflano, Ltkioo +267042054897 \N 2026-02-13 12:00:00+00 deutsche +358 Pgwetfztk Zkthzgv-Aöhtfoea Gstalqfrk Hgfmts +845605041838 \N 2026-02-17 08:30:00+00 deutsche +359 EIQKOZÉ - XFOCTKLOZÄZLDTROMOF WTKSOF EE71 - Asofoa yük Iqsl- Fqltf - Giktfitosaxfrt Eqdhxl Dozzt IFG Qdwxsqfm - Sxoltflzk. 78 Ixzfna Gstaloo +2679732769514 \N 2026-05-18 10:45:00+00 deutsche +360 EIQKOZÉ - XFOCTKLOZÄZLDTROMOF WTKSOF EE71 - Asofoa yük Iqsl- Fqltf - Giktfitosaxfrt Eqdhxl Dozzt IFG Qdwxsqfm Sxoltflzk. 78 Gstaloo Ixzfna +2679732769514 \N 2026-05-18 10:30:00+00 deutsche +361 Wtksof xfafgvf \N \N 2026-02-13 10:00:00+00 englishOk +362 Qxuxlztfwxkutk Hsqzm 7 (Glzkofu 7, 7.GU - LHM) Qstalqfrkt Aqkzctsolicoso (rql Aofr), Uogkuo Aqkzctsolicoso (rtk Cqztk) +26 701 72382166 \N 2026-02-23 07:45:00+00 deutsche +363 Qdzlutkoeiz Leiöftwtku Ukxftvqsrlzk. 11/10 Moddtk 7 Zqzoqfq Etugstq 579009934917 \N 2026-03-05 09:00:00+00 deutsche +364 Itsstklrgkytk Lzkqßt 380 Dofq Kqrxeqf 570172366841 \N 2026-02-18 17:50:00+00 deutsche +365 Aqks-Dqkb-Lzkqßt 785 Hqcts Hktorq (Dxzztk: Hktorq Dqkoq, Cqztk: Zxkeqf Ogf). 570103779608; 79003886316 \N 2026-02-24 12:00:00+00 deutsche +366 Pgwetfztk Wtksof Ztdhtsigy-Leiöftwtku - Vgsykqdlzk. 46-63, 73759, Kqxd 757 Rdnzkg Qkztdtfag 55 \N 2026-02-27 11:00:00+00 deutsche +367 Gkzgsylzk 743 Rqkoq Aiqkoq +26 701 37583881 \N 2026-03-12 16:00:00+00 deutsche +368 Hqxs-Leivtfa-Lzkqßt 8-37 Uxkutf Lqkulnqf +2679373495653 \N 2026-02-25 14:00:00+00 deutsche +369 Zitgrgk- Itxll Hsqzm 4 Ykqx Wqsgu 579732473312 \N 2026-02-25 12:30:00+00 englishOk +370 Wtkudqfflzkqßt 9-0 Ocqffq Zxotlinf +267001221906 \N 2026-03-02 12:30:00+00 englishOk +371 Sxoltflzkqßt 78, 75770, - TU, K. 550 Qdwxsqfztl Utlxfritozlmtfzkxd rtk Eiqkozt- Hftxdgsguot Axkixmgcq Oknfq +267049741896 \N 2026-02-25 09:00:00+00 deutsche +372 Toltfqeitk Lzk. 15-17 Coazgkooq Zxotlinf +267001249018 \N 2026-02-26 15:00:00+00 englishOk +373 Gzzg-Lxik-Qsst 60-66 Ltkioo Eiqhsnflano 57042054897 \N 2026-03-03 12:00:00+00 deutsche +374 Gzzg-Lxik-Qsstt 60-66 Ftukt Kgdqd +2670177367268 \N 2026-03-06 12:20:00+00 deutsche +375 Ykqxtfqkmzhkqbol – Itkk Ngxllty Qsqso – Yqeiqkmz yük Unfäagsguot xfr Utwxkzliosyt Ageiiqfflzkqßt 1, 75326 Wtksof Ig Zio Wofi 5703 8526 295 \N 2026-03-03 11:15:00+00 deutsche +376 Qffq-Ltuitkl-Leixst Kqroeatlzk 28 Ltorxssqtc Kqaidqf 57184607086 \N 2026-03-02 10:00:00+00 deutsche +377 Lzqfrtlqdz Soeiztfwtku, Tugf-Tkvof-Aolei-Lzk. 751 Dglqvo Ftmiqr, Lqor Dxlzqyq 579084751960 \N 2026-03-03 16:00:00+00 englishOk +378 Laqsozmtk Lzkqßt 79 Sosoqfq Hktorq 57900664028649 \N 2026-03-30 16:00:00+00 deutsche +379 Qxuxlztfwxkutk Hsqzm 7 Gbqfq Eoxkqko 570177595576 \N 2026-03-03 15:00:00+00 deutsche +380 Pgw Etfztk Wtksof Zkthzgv-Agthtfoea, Ukgß-Wtksoftk Rqdd 08 Q - T Gxsqrt Lqsodqzgx +267001488904 \N 2026-03-12 10:00:00+00 deutsche +381 Qsstt rtk Agldgfqxztf 20 Sxeiatcnei Qfrkoo +267131664163 \N 2026-03-10 16:00:00+00 deutsche +382 Voestylzkqßt 99-91 Nxkoo Rtizoqkgc +267153203404 \N 2026-05-22 11:00:00+00 englishOk +383 Lqfozäzliqxl GVW gIU, Asglztklzkqßt 4-6 Qkqli Ltoymqrti Qwatfqk 57049255131 \N 2026-03-06 09:00:00+00 deutsche +384 Wtmokalqdz Dozzt cgf Wtksof, Lgmoqsqdz, Düsstklzk. 721, 78898 Wtksof, Moddtk 350 Gstfq xfr Cqlns RQF 5700 88 85 854 \N 2026-03-19 10:00:00+00 deutsche +385 Qhytsvoeastklzkqßt 2/1, 73148 Wtksof Dxiqddqr Lqrxsqtc (utw. 76.53.3576) +267002228946 \N 2026-03-04 08:00:00+00 deutsche +386 Wxfrtl Lzk. 755 Htztk Rgt 325-235 \N 2026-03-19 12:30:00+00 englishOk +387 Wtksof xfafgvf \N \N 2026-03-14 09:00:00+00 deutsche +388 Leiqkfvtwtklzkqßt 7/2 Galqfq Lcoqzq +845648355962 \N 2026-04-15 11:05:00+00 englishOk +389 Aqks-Dqkb-Lzk 30 Gstalqfrk Lcoqzno +845648355962 \N 2026-04-22 11:05:00+00 englishOk +390 Leisgßlzkqßt 37 Ocqffq Zxotlinf +267001221906 \N 2026-03-11 09:45:00+00 englishOk +391 Wtksof xfafgvf \N \N 2026-03-11 09:00:00+00 deutsche +392 Cocqfztl Asofoaxd od Ykotrkoeiliqof, Sqfrlwtkutk Qsstt 26 Sqkolq Dqsoe 570172282820 \N 2026-03-25 10:30:00+00 deutsche +393 Yqdosotfyökrtkmtfzkxd Hqfatiqxl Lgsroftk Lzkqßt 01, 78896 Wtksof Coazgkooq Stlieitfag +845603892907 \N 2026-03-12 15:00:00+00 deutsche +394 Pgwetfztk Wtksof-Hqfagv, Lzgkagvtk Lzk. 788, 75250 Wtksof, Iqxl W, Moddtk 8510 Anknsg Kqmxdgc 5718 419 84 93 \N 2026-03-16 11:00:00+00 deutsche +395 Wtksof xfafgvf \N \N 2026-03-17 14:30:00+00 deutsche +396 Wtksof xfafgvf \N \N 2026-04-07 10:30:00+00 deutsche +397 Woldqkealzkqßt 29-21 Aqztknfq Ixzfna 57159278832 \N 2026-05-18 13:30:00+00 englishOk +398 Gkqfotfrqdd 1-75/E Nqruqk Lzqk Lqwtk 57040303793 \N 2026-03-13 11:00:00+00 deutsche +399 Owltflzkqßt 70 Ykqx Qfrktq Ztolmstk 5703 8443613 \N 2026-03-17 10:00:00+00 deutsche +400 Wtksof xfafgvf \N \N 2026-03-17 14:30:00+00 deutsche +401 Wtksof xfafgvf \N \N 2026-04-07 10:30:00+00 deutsche +402 Lzgkagvtk Lzk. 757Q Dnagsq Hkgaghtfag 579779544433 \N 2026-03-16 11:30:00+00 deutsche +403 Wtksof xfafgvf \N \N 2026-07-02 10:00:00+00 deutsche +404 Wtksof xfafgvf \N \N 2026-06-05 14:30:00+00 deutsche +405 Eiqkozt Igeileixsqdwxsqfm Gkzighärot, Sxoltflzk. 12, 75770 Wtksof (Wtzztfigeiiqxl), Mtfzkqst Hqzotfztfqxyfqidt Stcqfo agkatsoq 57900 4270236 \N 2026-03-23 09:00:00+00 deutsche +406 Düsstk Lzk. 720 Gstalqfrk Akqceitfag +845609060536 \N 2026-03-17 10:30:00+00 englishOk +407 Lzqfrtlqdz Ftxaössf, Iqxl 9, Wsqleiagqsstt 83, Kqrx Ctkq +80814745744 \N 2026-03-16 11:00:00+00 deutsche +408 Qsqkoeilzk. 73 Rndzkg Qkztdtfag 57001082458 \N 2026-03-26 08:15:00+00 englishOk +409 Wtksoftklzkqßt 66, 78950 Wtksof Ktofoeatfrgky Znzneiag Aiknlznfq (dqoszg:akolzofqwqsofz40@udqos.egd) 570103554978 \N 2026-03-18 12:00:00+00 deutsche +410 Leisgßlzkqßt 37 Ocqffq Zxotlinf +267001221906 \N 2026-03-23 10:45:00+00 englishOk +411 Wgkfigsdtk Ukxfrleixst, Owltflzkqßt 70, 75286 Wtksof Kqxd 355 Ykqx Ztolmstk 5703 8443613 \N 2026-03-24 11:00:00+00 deutsche +412 Tc. Tsolqwtzi Asofoa, Süzmgvlzkqßt 32-31 Cqloso Etwgzqk 5701 72490830 \N 2026-03-23 12:30:00+00 deutsche +413 Lzqrzkqfrlzkqßt 999 Zqzoqfq Yqkqrptc 570175481492 \N 2026-03-23 09:15:00+00 deutsche +414 Wtksof xfafgvf \N \N 2026-03-23 15:00:00+00 deutsche +415 Ykotrtkoatlzkqßt 88 Lcozsqfq Ytltfag 57002187721 \N 2026-04-09 14:00:00+00 deutsche +416 DCM Lz. Itrvou-Akqfatfiqxl Wtksof Ukgßt Iqdwxkutk Lzkqßt 9-77 Gstalqfrk Lcoqzno +84 5648355962 \N 2026-04-07 10:00:00+00 englishOk +417 Qxuxlztfwxkutk Hsqzm 7 Qstalqfrkt Aqkzctsolicoso (rql Aofr), Uogkuo Aqkzctsolicoso (rtk Cqztk) 579779544497 \N 2026-03-26 08:00:00+00 deutsche +418 Esqnqsstt 339 Cozqsoo Hteitkozlq +2679004089057 \N 2026-04-01 11:40:00+00 englishOk +419 Aqks-Dqkb-Lzkqßt 791 Lqctsoo Wneitcno +267007891427 \N 2026-03-30 11:00:00+00 deutsche +420 Pgwetfztk Wtksof Hqfagv,Lzgkagvtk Lzk 788 Miqffq Rxhsofq +845604531306 \N 2026-04-16 11:45:00+00 deutsche +421 Pgwetfztk Wtksof Hqfagv,Lzgkagvtk Lzk 788 Miqffq Rxhsofq +845604531306 \N 2026-04-16 11:45:00+00 deutsche +422 Leisgßlzkqßt 31 Gstfq Einiknf +845612511443 \N 2026-04-09 17:10:00+00 deutsche +423 Ukxfrleixst qd Ztutsleitf Gkz, Utksofrtvtu 77-38 Lsgctflaq +2679377042671 \N 2026-04-15 13:20:00+00 deutsche +424 Ukxfrleixst qd Ztutsleitf Gkz, Utksofrtvtu 77-38 Mqhgkgmiqf +267183513378 \N 2026-04-15 13:40:00+00 deutsche +425 DCM Ftxaössf / Aqks-Dqkb-Lzkqßt 785 Dqkoq Hktorq +26718668531528 \N 2026-04-10 09:50:00+00 deutsche +426 Pgqf-Dokó-Ukxfrleixst (52U52), Ltaktzqkoqz, Tofuqfu R, Wstowzktxlzkqßt 28 75138 Wtksof Eitwgzqk Qfitsofq, Dqalnd xfr Roxroq Rqfots, Cqftllq 571561922803 \N 2026-04-13 08:15:00+00 deutsche +427 Qsstt rtk Agldgfqxztf 36 Qsolq Igiq +267049296359 \N 2026-04-21 09:30:00+00 englishOk +428 Qhytsvoeastklzkqßt 2/1 Aiqfoyq Lqrxsqtcq +267002228946 \N 2026-04-13 09:00:00+00 deutsche +429 Fükfwtkutk Lzkqßt 10 Gstalqfrk Lcoqzno +845648355962 \N 2026-04-07 18:00:00+00 englishOk +430 Cocqfztl DCM Sqfrlwtkutk Qsstt 26 Dnaiqosg Nqktdtfag 5701 68982824 \N 2026-04-13 14:00:00+00 deutsche +431 Tugf-Tkvof-Aolei-Lzk. 751 Pgiqofq Qs Dxiqddqr Qs-Qso 570137608887 \N 2026-04-09 10:00:00+00 deutsche +432 Pgwetfztk Wtksof Dqkmqif-Itsstklrgky, Wtoslztoftk Lzk. 778 Htzkg Hgh 57049296359 \N 2026-04-21 09:30:00+00 deutsche +433 Pgwetfztk Wtksof Dqkmqif-Itsstklrgky, Wtoslztoftk Lzk. 778 Qsolq Igiq 57049296359 \N 2026-04-21 10:00:00+00 deutsche +434 Hgzlrqdtk Eiqxllt 45 Tdoso Agkwxroqfo 57038499644 \N 2026-04-20 15:10:00+00 englishOk +435 Itofm-Uqsoflao Lzkqßt 7 Kqlior Aiqdwotc 570115579521 \N 2026-04-10 07:30:00+00 deutsche +436 Eiqkozt : Dozztsqsst 2 Akqceitfag Gstalqfrk +845609060536 \N 2026-04-13 08:20:00+00 deutsche +437 Itsstklrgkytk Lzk. 380 Kqdqzxssqi Lqstio 570183528842 \N 2026-04-23 12:00:00+00 deutsche +438 Leisgßlzkqßt 37 Ocqffq Zxotlinf +267001221906 \N 2026-04-15 11:00:00+00 englishOk +439 Wtksof xfafgvf \N \N 2026-05-05 14:00:00+00 deutsche +440 Qd Fgkrukqwtf 3 Uitqzi Pvqk 5555 \N 2026-04-22 09:15:00+00 deutsche +441 Hkofmtflzkqßt 61 Nxkoo Rtizoqkgc +2679792137701 \N 2026-04-17 11:00:00+00 noTranslation +442 Wtmokalqdz Dqkmqif-Itsstklrgky, Kotlqtklzkqßt 62 Altfooq Agcqstfag +845101181726 \N 2026-04-21 10:00:00+00 deutsche +443 Fükfwtkutk Lzkqßt 10, Wtksof Gstalqfrk Akqceitfag +845609060536 \N 2026-04-23 09:45:00+00 deutsche +444 Kgsqfrlzkqllt 89 , Iqxl W Kqxd W 357 Lnsvoq 585 \N 2026-04-27 14:30:00+00 deutsche +445 DCM Lhqfrqx Ftxaössf Aqks-Dqkb-Lzkqßt 785, 73528 Wtksof 7.GU Hktorq Dqkoq +26 718 8531 528 \N 2026-05-13 12:00:00+00 deutsche +446 Pqfxlm Agkemqa lzk 83 Lqrxsqtc Kxlsqf +26 7002228946 \N 2026-04-22 08:15:00+00 deutsche +447 Hktkgvtk Hsqzm 2 Sxloft Lqkulnqf +2670183459720 \N 2026-04-23 12:00:00+00 deutsche +448 lqrq rlrl 738738 \N 2026-09-19 10:52:00+00 deutsche +449 tsltflzkqWt 40 Fqrqc 579399881896 \N 2026-04-30 08:52:00+00 deutsche +450 Vqsrleixsqsstt 48 Qfutsoat Hgsoqagcq 579379504421 \N 2026-05-23 09:00:00+00 englishOk +451 Wstowzktxlzkqßt 28 Eitwgzqk +2671561922803 \N 2026-04-24 07:00:00+00 englishOk +453 Itkdqfflzkqllt 391-394 Kqidqzxssqi Lqstio 570183528842 \N 2026-05-08 08:30:00+00 deutsche +454 Uktoylvqsrtk Lzk.780 Tstfq Uqsqzqf 5790 04916706 \N 2026-04-27 12:25:00+00 deutsche +455 Pxutfrqdz Lztusozm Mtistfrgky Aokeilzkqßt 7-8, Kqxd R789 Itkk Qs-Qsqdkqfo, Ykqx Qs-Tjqwo 5526 85 25 81 25 204 \N 2026-04-28 09:00:00+00 deutsche +456 Wozztkytsrtk Lzkqßt 77/78 Qfo Ztfqrmt 579088552382 \N 2026-04-29 12:00:00+00 deutsche +452 Aofrtk- xfr Pxutfrutlxfritoz - Dqkmqif-Itsstklrgky Pqfxlm-Agkemqa-Lzkqßt 83, 73130 Wtksof Lqrxsqtc Kxlsqf +267002228946 \N 2026-05-27 09:35:00+00 deutsche +458 lxddnrkttz rxddn dxddn 75757575757 \N 2026-05-08 08:41:00+00 englishOk +459 Qzzosqlzkqßt 17-10 Oxko Yqkyqeqko +808 049 64 146 \N 2026-05-05 07:50:00+00 englishOk +460 Axkyüklztfrqdd 719 Dqknfq Sqaqzgli +845665869569 \N 2026-05-01 08:30:00+00 deutsche +457 Ugzsofrtlzkqßt 68, Pgwetfztk Wtksof-Soeiztfwtku Iqxl 7W, 0. Tzqut, Moddtk 088 Kgixssq Qdoko 5701 32895349 \N 2026-05-05 09:30:00+00 deutsche +461 Itofm-Uqsoflao-Lzkqßt 7 Fqzqsooq Wosgxl +845140070784 \N 2026-05-08 11:30:00+00 deutsche +462 Ztztkgvtk Kofu 27 Qyuqf Qsontc +2670142474314 \N 2026-06-05 07:15:00+00 deutsche +463 Hqxs-Leivtfa-Lzkqßt 8-37 Uxkutf Lqkulnqf +2679373495653 \N 2026-05-06 08:00:00+00 deutsche +464 Aöfoulzk. 18 Rgsoei, Ocqf +26 701 7277 1103 \N 2026-05-06 09:00:00+00 deutsche +465 Cocqfztl Asofoaxd Sqfrlwtkutk Qsstt 26 Mqatk Fqrtko 579374842519 \N 2026-05-12 10:00:00+00 deutsche +\. + + +-- +-- Data for Name: activity; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.activity (id, title, category_id) FROM stdin; +1 Daycare 2 +2 Sports 5 +3 Language café 1 +4 Translation 1 +5 Fillout German forms 1 +6 Arts 2 +7 Gardening 3 +8 One-day 4 +9 Playing 2 +10 Reading 1 +11 Activities-women 3 +12 Activities-men 3 +13 Tutoring 1 +14 Clothing Sorting 3 +15 Excursions 5 +16 Miscellaneous 3 +17 Mentorship 3 +18 Accompanying to government appointments 6 +19 Apartment viewing accompanying 6 +20 Schools meetings accompanying 6 +21 Accompanying 6 +22 Accompanying to doctors' 6 +\. + + +-- +-- Data for Name: address; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.address (id, title, street, postcode_id, city) FROM stdin; +1 Dummy \N 1 \N +2 \N 1 \N +3 \N 65 \N +4 \N 140 \N +5 \N 104 \N +6 \N 60 \N +7 \N 4 \N +8 \N 102 \N +9 \N 99 \N +10 \N 144 \N +11 \N 61 \N +12 \N 11 \N +13 \N 125 \N +14 \N 16 \N +15 \N 145 \N +16 \N 71 \N +17 \N 103 \N +18 \N 9 \N +19 \N 29 \N +20 \N 21 \N +21 \N 66 \N +22 \N 128 \N +23 \N 115 \N +24 \N 86 \N +25 \N 54 \N +26 \N 114 \N +27 \N 10 \N +28 \N 189 \N +29 \N 64 \N +30 \N 143 \N +31 \N 141 \N +32 \N 22 \N +33 \N 142 \N +34 \N 95 \N +35 \N 8 \N +36 \N 101 \N +37 \N 20 \N +38 \N 151 \N +39 \N 2 \N +40 \N 6 \N +41 \N 81 \N +42 \N 62 \N +43 \N 139 \N +44 \N 69 \N +45 \N 186 \N +46 \N 105 \N +47 \N 147 \N +48 \N 59 \N +49 \N 51 \N +50 \N 55 \N +51 \N 18 \N +52 \N 74 \N +53 \N 43 \N +54 \N 26 \N +55 \N 133 \N +56 \N 190 \N +57 \N 27 \N +58 \N 7 \N +59 \N 127 \N +60 \N 39 \N +61 \N 23 \N +62 \N 53 \N +63 \N 47 \N +64 \N 130 \N +65 \N 146 \N +66 \N 168 \N +67 \N 94 \N +68 \N 49 \N +69 \N 50 \N +70 \N 76 \N +71 \N 44 \N +72 \N 46 \N +73 \N 45 \N +74 \N 117 \N +75 \N 120 \N +76 \N 32 \N +77 \N 183 \N +78 \N 108 \N +79 \N 67 \N +80 \N 131 \N +81 \N 57 \N +82 \N 63 \N +83 \N 179 \N +84 \N 77 \N +85 \N 5 \N +86 \N 28 \N +87 \N 58 \N +88 \N 178 \N +89 \N 185 \N +90 \N 19 \N +91 \N 98 \N +92 \N 129 \N +93 \N 154 \N +94 \N 163 \N +96 \N 177 \N +97 \N 148 \N +98 \N 162 \N +99 \N 85 \N +100 \N 36 \N +101 \N 110 \N +102 \N 52 \N +103 \N 172 \N +104 \N 116 \N +105 \N 164 \N +106 \N 113 \N +107 \N 153 \N +108 \N 24 \N +109 \N 192 \N +110 \N 106 \N +111 \N 90 \N +112 \N 31 \N +113 \N 35 \N +114 \N 12 \N +115 \N 160 \N +116 \N 3 \N +117 \N 92 \N +118 \N 73 \N +119 \N 25 \N +120 \N 149 \N +121 \N 97 \N +122 \N 70 \N +123 \N 100 \N +124 \N 13 \N +125 \N 15 \N +126 \N 41 \N +127 \N 137 \N +128 \N 167 \N +129 \N 166 \N +130 \N 109 \N +131 \N 175 \N +132 \N 121 \N +133 \N 79 \N +134 \N 33 \N +135 \N 181 \N +136 \N 14 \N +137 \N 83 \N +138 \N 42 \N +139 \N 91 \N +140 \N 17 \N +141 \N 40 \N +142 \N 124 \N +143 \N 136 \N +144 \N 93 \N +145 \N 165 \N +146 \N 155 \N +147 \N 123 \N +148 \N 191 \N +149 \N 78 \N +150 \N 37 \N +151 \N 150 \N +152 \N \N 5 \N +153 \N \N 36 \N +154 \N \N 63 \N +155 \N Elsenstraße 87 101 Berlin +156 \N \N 72 \N +157 \N \N 72 \N +158 \N \N 101 \N +159 \N \N 82 \N +160 \N \N 63 \N +161 \N \N 19 \N +162 \N \N 36 \N +163 \N \N 114 \N +165 \N \N 8 \N +166 \N \N 140 \N +95 \N Berlin 56 10965 +167 \N \N 148 \N +164 \N Berlin 15 Berlin +\. + + +-- +-- Data for Name: agent; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.agent (id, title, type, website, trust_level, search_status, services, created_at, updated_at, address_id, district_id, engagement_status, info, organization_id) FROM stdin; +2 Eschenallee AE \N agent-low agent-not-needed {} 2026-04-14 16:09:52.586862 2026-04-14 16:09:52.586862 \N \N agent-new \N \N +3 Refugium Hausvaterweg NU \N agent-low agent-not-needed {} 2026-04-14 16:09:52.633775 2026-04-14 16:09:52.633775 \N \N agent-new \N \N +4 Rhinstr. (Refugium Lichtenberg) AE \N agent-high agent-not-needed {} 2026-04-14 16:09:52.780422 2026-04-14 16:09:52.780422 \N \N agent-new \N \N +5 Dingolfinger Str. AE \N agent-high agent-not-needed {} 2026-04-14 16:09:52.91112 2026-04-14 16:09:52.91112 \N \N agent-new \N \N +6 Blumberger Damm AE \N agent-high agent-not-needed {} 2026-04-14 16:09:53.112293 2026-04-14 16:09:53.112293 \N \N agent-new \N \N +7 Invalidenstraße (Hotel) AE \N agent-high agent-not-needed {} 2026-04-14 16:09:53.345283 2026-04-14 16:09:53.345283 \N \N agent-new \N \N +9 Buchholzer Str. AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:53.601135 2026-04-14 16:09:53.601135 \N \N agent-new \N \N +10 Siverstorpstraße AE \N agent-low agent-not-needed {} 2026-04-14 16:09:53.665485 2026-04-14 16:09:53.665485 \N \N agent-new \N \N +11 Groscurthstraße AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:53.732709 2026-04-14 16:09:53.732709 \N \N agent-new \N \N +12 Askanierring (AE) AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:53.770256 2026-04-14 16:09:53.770256 \N \N agent-new \N \N +41 Rudolf-Leonhard-Str. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:55.473192 2026-04-14 16:09:55.473192 \N \N agent-new \N \N +42 Albert-Kuntz-Str. \N \N agent-unknown agent-searching {} 2026-04-14 16:09:55.547443 2026-04-14 16:09:55.547443 \N \N agent-unresponsive \N \N +13 Kurt-Schumacher-Damm AE \N agent-high agent-not-needed {} 2026-04-14 16:09:53.815018 2026-04-14 16:09:53.815018 \N \N agent-new \N \N +14 Zum Heckeshorn AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:53.987686 2026-04-14 16:09:53.987686 \N \N agent-new \N \N +15 P3 AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.029794 2026-04-14 16:09:54.029794 \N \N agent-new \N \N +16 Hangar 1-3 (Columbiadamm 10) NU \N agent-high agent-not-needed {} 2026-04-14 16:09:54.054369 2026-04-14 16:09:54.054369 \N \N agent-new \N \N +17 Schwalbenweg AE \N agent-low agent-not-needed {} 2026-04-14 16:09:54.158142 2026-04-14 16:09:54.158142 \N \N agent-new \N \N +18 Kiefholzstr. 36 \N \N agent-high agent-not-needed {} 2026-04-14 16:09:54.239181 2026-04-14 16:09:54.239181 \N \N agent-new \N \N +19 Quittenweg AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.318179 2026-04-14 16:09:54.318179 \N \N agent-new \N \N +20 Soorstraße \N \N agent-low agent-not-needed {} 2026-04-14 16:09:54.379069 2026-04-14 16:09:54.379069 \N \N agent-new \N \N +21 Fritz-Wildung-Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.444622 2026-04-14 16:09:54.444622 \N \N agent-new \N \N +43 Zossener Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.588375 2026-04-14 16:09:55.588375 \N \N agent-new \N \N +69 Pichelswerder Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.679056 2026-04-14 16:09:56.679056 \N \N agent-new \N \N +90 Alfred-Randt-Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.692928 2026-04-14 16:09:57.692928 \N \N agent-new \N \N +91 Radickestr. \N \N agent-high agent-not-needed {} 2026-04-14 16:09:57.733236 2026-04-14 16:09:57.733236 \N \N agent-new \N \N +22 Brabanter Str. GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.487089 2026-04-14 16:09:54.487089 \N \N agent-new \N \N +23 Fritz-Wildung-Straße 20 GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.524335 2026-04-14 16:09:54.524335 \N \N agent-new \N \N +24 Zeughofstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.55155 2026-04-14 16:09:54.55155 \N \N agent-new \N \N +25 Alte Jakobstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.588288 2026-04-14 16:09:54.588288 \N \N agent-new \N \N +26 Stallschreiberstr. \N \N agent-high agent-not-needed {} 2026-04-14 16:09:54.615992 2026-04-14 16:09:54.615992 \N \N agent-new \N \N +27 Degnerstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.715886 2026-04-14 16:09:54.715886 \N \N agent-new \N \N +28 Bornitzstraße \N \N agent-high agent-not-needed {} 2026-04-14 16:09:54.779291 2026-04-14 16:09:54.779291 \N \N agent-new \N \N +29 Max-Brunnow-Straße \N \N agent-high agent-not-needed {} 2026-04-14 16:09:54.827742 2026-04-14 16:09:54.827742 \N \N agent-new \N \N +30 Konrad-Wolf-Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.872853 2026-04-14 16:09:54.872853 \N \N agent-new \N \N +31 Wollenberger Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.913999 2026-04-14 16:09:54.913999 \N \N agent-new \N \N +32 Gehrenseestr. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:54.945235 2026-04-14 16:09:54.945235 \N \N agent-new \N \N +33 Hagenower Ring \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.013093 2026-04-14 16:09:55.013093 \N \N agent-new \N \N +34 Wartenberger Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.115441 2026-04-14 16:09:55.115441 \N \N agent-new \N \N +35 Grafenauer Weg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.144021 2026-04-14 16:09:55.144021 \N \N agent-new \N \N +36 Seehausener Str. \N \N agent-high agent-not-needed {} 2026-04-14 16:09:55.166295 2026-04-14 16:09:55.166295 \N \N agent-new \N \N +37 Maxie-Wander-Str. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:55.296378 2026-04-14 16:09:55.296378 \N \N agent-new \N \N +38 Bitterfelder Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.362026 2026-04-14 16:09:55.362026 \N \N agent-new \N \N +39 Wittenberger Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.404611 2026-04-14 16:09:55.404611 \N \N agent-new \N \N +40 Paul-Schwenk-Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.434748 2026-04-14 16:09:55.434748 \N \N agent-new \N \N +67 Senftenberger Ring \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.63016 2026-04-14 16:09:56.63016 \N \N agent-new \N \N +68 Oranienburger Straße 285 NU \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.659097 2026-04-14 16:09:56.659097 \N \N agent-new \N \N +44 Murtzaner Ring \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.608238 2026-04-14 16:09:55.608238 \N \N agent-new \N \N +45 Haus Leo \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.663108 2026-04-14 16:09:55.663108 \N \N agent-new \N \N +46 Müllerstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.700784 2026-04-14 16:09:55.700784 \N \N agent-new \N \N +47 Chaussee Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.729201 2026-04-14 16:09:55.729201 \N \N agent-new \N \N +48 Vom Guten Hirten \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.784956 2026-04-14 16:09:55.784956 \N \N agent-new \N \N +49 Alt-Moabit \N \N agent-high agent-not-needed {} 2026-04-14 16:09:55.805057 2026-04-14 16:09:55.805057 \N \N agent-new \N \N +50 Haarlemer Str. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:55.859901 2026-04-14 16:09:55.859901 \N \N agent-new \N \N +51 Kiefholzstr. 71 \N \N agent-high agent-not-needed {} 2026-04-14 16:09:55.924917 2026-04-14 16:09:55.924917 \N \N agent-new \N \N +52 Karl-Marx-Str. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:55.984412 2026-04-14 16:09:55.984412 \N \N agent-new \N \N +53 Töpchiner Weg \N \N agent-low agent-not-needed {} 2026-04-14 16:09:56.050446 2026-04-14 16:09:56.050446 \N \N agent-new \N \N +54 Falkenberger Str. GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.120544 2026-04-14 16:09:56.120544 \N \N agent-new \N \N +55 Storkower Straße 118 ASOG \N agent-high agent-not-needed {} 2026-04-14 16:09:56.143773 2026-04-14 16:09:56.143773 \N \N agent-new \N \N +56 Mühlenstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.259061 2026-04-14 16:09:56.259061 \N \N agent-new \N \N +57 Straßburger Straße \N \N agent-low agent-not-needed {} 2026-04-14 16:09:56.289175 2026-04-14 16:09:56.289175 \N \N agent-new \N \N +58 Bühringstraße \N \N agent-high agent-not-needed {} 2026-04-14 16:09:56.385312 2026-04-14 16:09:56.385312 \N \N agent-new \N \N +59 Storkower Straße 139C \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.438809 2026-04-14 16:09:56.438809 \N \N agent-new \N \N +60 Treskowstr. 15-16 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.468351 2026-04-14 16:09:56.468351 \N \N agent-new \N \N +61 Wolfgang-Heinz-Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.48726 2026-04-14 16:09:56.48726 \N \N agent-new \N \N +62 Lindenberger Weg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.505462 2026-04-14 16:09:56.505462 \N \N agent-new \N \N +63 Rennbahnstr. 87 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.535375 2026-04-14 16:09:56.535375 \N \N agent-new \N \N +64 Rennbahnstr. 71-74 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.563065 2026-04-14 16:09:56.563065 \N \N agent-new \N \N +65 Eichborndamm \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.584088 2026-04-14 16:09:56.584088 \N \N agent-new \N \N +66 Bernauer Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.616602 2026-04-14 16:09:56.616602 \N \N agent-new \N \N +70 Am Oberhafen \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.707966 2026-04-14 16:09:56.707966 \N \N agent-new \N \N +71 Freudstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.725229 2026-04-14 16:09:56.725229 \N \N agent-new \N \N +72 Spandauer Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.78748 2026-04-14 16:09:56.78748 \N \N agent-new \N \N +73 Freiheit \N \N agent-low agent-not-needed {} 2026-04-14 16:09:56.815207 2026-04-14 16:09:56.815207 \N \N agent-new \N \N +74 Rauchstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.913681 2026-04-14 16:09:56.913681 \N \N agent-new \N \N +75 Hohentwielsteig \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.941955 2026-04-14 16:09:56.941955 \N \N agent-new \N \N +76 Ostpreußendamm \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.040411 2026-04-14 16:09:57.040411 \N \N agent-new \N \N +77 Bäkestr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.059441 2026-04-14 16:09:57.059441 \N \N agent-new \N \N +78 Leonorenstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.079917 2026-04-14 16:09:57.079917 \N \N agent-new \N \N +79 Am Beelitzhof \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.107474 2026-04-14 16:09:57.107474 \N \N agent-new \N \N +80 Osteweg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.16127 2026-04-14 16:09:57.16127 \N \N agent-new \N \N +81 Trachenbergring AE \N agent-high agent-not-needed {} 2026-04-14 16:09:57.228067 2026-04-14 16:09:57.228067 \N \N agent-new \N \N +82 Marienfelder Allee \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.276867 2026-04-14 16:09:57.276867 \N \N agent-new \N \N +83 Kirchhainer Damm \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.327113 2026-04-14 16:09:57.327113 \N \N agent-new \N \N +84 Colditzstraße \N \N agent-low agent-not-needed {} 2026-04-14 16:09:57.359613 2026-04-14 16:09:57.359613 \N \N agent-new \N \N +85 Großbeerenstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.454161 2026-04-14 16:09:57.454161 \N \N agent-new \N \N +86 Niedstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.484262 2026-04-14 16:09:57.484262 \N \N agent-new \N \N +87 Handjerystr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.516321 2026-04-14 16:09:57.516321 \N \N agent-new \N \N +88 Columbiadamm 84 \N \N agent-high agent-volunteers-found {} 2026-04-14 16:09:57.546219 2026-04-14 16:09:57.546219 \N \N agent-active \N \N +89 Rahnsdorf \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.648725 2026-04-14 16:09:57.648725 \N \N agent-new \N \N +92 Köpenicker Landstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.787954 2026-04-14 16:09:57.787954 \N \N agent-new \N \N +93 Chris-Gueffroy-Allee \N \N agent-high agent-not-needed {} 2026-04-14 16:09:57.822462 2026-04-14 16:09:57.822462 \N \N agent-new \N \N +94 Wassersportallee \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.875884 2026-04-14 16:09:57.875884 \N \N agent-new \N \N +95 Salvador-Allende-Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.931157 2026-04-14 16:09:57.931157 \N \N agent-new \N \N +96 Hassoweg GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.970086 2026-04-14 16:09:57.970086 \N \N agent-new \N \N +97 Kablower Weg \N \N agent-low agent-not-needed {} 2026-04-14 16:09:57.990349 2026-04-14 16:09:57.990349 \N \N agent-new \N \N +98 Bundesnetzwerk Bürgerschaftliches Engagement (BBE) multiple-social-support https://www.b-b-e.de agent-unknown agent-not-needed {consultation,voluntary-support} 2026-04-14 16:09:58.047811 2026-04-14 16:09:58.047811 \N \N agent-new \N \N +99 FreiwilligenAgentur Marzahn-Hellersdorf multiple-social-support https://aller-ehren-wert.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:09:58.074178 2026-04-14 16:09:58.074178 \N \N agent-new \N \N +100 Interkulturelles Haus Schöneberg \N https://ikhberlin.de agent-unknown agent-not-needed {} 2026-04-14 16:09:58.102302 2026-04-14 16:09:58.102302 \N \N agent-new \N \N +101 Quartiersmanagement Boulevard Kastanienallee \N https://boulevard-kastanienallee.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.122866 2026-04-14 16:09:58.122866 \N \N agent-new \N \N +102 Afrotak e.V. multiple-social-support https://afrotak.tv/ agent-unknown agent-not-needed {consultation,tutoring,welfare} 2026-04-14 16:09:58.143623 2026-04-14 16:09:58.143623 \N \N agent-new \N \N +103 LaLoka multiple-social-support https://www.berlin.de/ba-marzahn-hellersdorf/politik-und-verwaltung/beauftragte/integration/beratung/artikel.837488.php agent-unknown agent-not-needed {consultation,consultation,welfare,sport} 2026-04-14 16:09:58.163627 2026-04-14 16:09:58.163627 \N \N agent-new \N \N +104 Berlin Arrival Support multiple-social-support https://arrivalsupport.berlin/ agent-unknown agent-not-needed {consultation,consultation,voluntary-support,voluntary-support} 2026-04-14 16:09:58.189532 2026-04-14 16:09:58.189532 \N \N agent-new \N \N +105 Café Pink multiple-social-support https://www.pfh-berlin.de/de/cafepink agent-unknown agent-not-needed {refugee-accommodation,childcare,welfare,voluntary-support,tandem} 2026-04-14 16:09:58.211426 2026-04-14 16:09:58.211426 \N \N agent-new \N \N +106 Club Dialog e.V. multiple-social-support https://www.club-dialog.de/ agent-unknown agent-not-needed {consultation,consultation,voluntary-support,tandem,voluntary-support} 2026-04-14 16:09:58.236624 2026-04-14 16:09:58.236624 \N \N agent-new \N \N +107 DaMigra multiple-social-support https://www.damigra.de agent-unknown agent-not-needed {consultation,voluntary-support,tandem,welfare} 2026-04-14 16:09:58.265925 2026-04-14 16:09:58.265925 \N \N agent-new \N \N +108 Das Interkulturelle Frauenzentrum S.U.S.I. multiple-social-support susi-frauen-zentrum.com agent-unknown agent-not-needed {tutoring,consultation,tandem,voluntary-support,welfare,voluntary-support,sport,welfare} 2026-04-14 16:09:58.292967 2026-04-14 16:09:58.292967 \N \N agent-new \N \N +109 Dütti-Treff multiple-social-support https://duetti-treff.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.318787 2026-04-14 16:09:58.318787 \N \N agent-new \N \N +110 Elikia e.V. multiple-social-support https://www.elikia-ev.org agent-unknown agent-not-needed {} 2026-04-14 16:09:58.344365 2026-04-14 16:09:58.344365 \N \N agent-new \N \N +111 EMERGE e.V. multiple-social-support http://emergeev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.366357 2026-04-14 16:09:58.366357 \N \N agent-new \N \N +112 Feministisches Zentrum für Migrant*innen (FZM*) multiple-social-support https://fzm-berlin.com agent-unknown agent-not-needed {} 2026-04-14 16:09:58.378807 2026-04-14 16:09:58.378807 \N \N agent-new \N \N +113 Pro Asyl multiple-social-support https://www.proasyl.de/ehrenamtliches-engagement/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.401849 2026-04-14 16:09:58.401849 \N \N agent-new \N \N +114 Georgisches Haus multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.431862 2026-04-14 16:09:58.431862 \N \N agent-new \N \N +115 Berliner Georgische Gesellschaft multiple-social-support http://www.bggev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.457945 2026-04-14 16:09:58.457945 \N \N agent-new \N \N +116 Gesellschaftsspiele e.V. multiple-social-support https://gesellschaftsspiele.berlin/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.488058 2026-04-14 16:09:58.488058 \N \N agent-new \N \N +117 Gladt e.V. multiple-social-support https://gladt.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.51154 2026-04-14 16:09:58.51154 \N \N agent-new \N \N +118 Global New Generation Berlin multiple-social-support https://www.gngberlin.de agent-unknown agent-not-needed {} 2026-04-14 16:09:58.542487 2026-04-14 16:09:58.542487 \N \N agent-new \N \N +119 Imagine Fellows multiple-social-support https://imagine-fellows.com/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.571703 2026-04-14 16:09:58.571703 \N \N agent-new \N \N +120 Initiative Selbstständiger Immigrantinnen (I.S.I. e.V.) multiple-social-support https://isi-ev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.585376 2026-04-14 16:09:58.585376 \N \N agent-new \N \N +121 Inssan e.V. multiple-social-support inssan.de agent-unknown agent-not-needed {} 2026-04-14 16:09:58.614942 2026-04-14 16:09:58.614942 \N \N agent-new \N \N +122 Kiezspinne FAS multiple-social-support https://www.kiezspinne-fas.org agent-unknown agent-not-needed {consultation,tutoring,voluntary-support,welfare,voluntary-support} 2026-04-14 16:09:58.643125 2026-04-14 16:09:58.643125 \N \N agent-new \N \N +123 Anne Jerzak \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.669742 2026-04-14 16:09:58.669742 \N \N agent-new \N \N +124 Philipp Rhein \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.700173 2026-04-14 16:09:58.700173 \N \N agent-new \N \N +125 Julia Stadtfeld \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.728036 2026-04-14 16:09:58.728036 \N \N agent-new \N \N +126 Carolyn Kanja \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.756513 2026-04-14 16:09:58.756513 \N \N agent-new \N \N +127 Luise Budäus \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.784619 2026-04-14 16:09:58.784619 \N \N agent-new \N \N +128 Fabian Bork \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.811907 2026-04-14 16:09:58.811907 \N \N agent-new \N \N +129 Integrationsbüro Treptow-Köpenick \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.844722 2026-04-14 16:09:58.844722 \N \N agent-new \N \N +130 Senatsverwaltung für Arbeit, Soziales, Gleichstellung, Integration, Vielfalt und Antidiskriminierung (SenASGIVA) \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.869314 2026-04-14 16:09:58.869314 \N \N agent-new \N \N +131 Katarina Niewedzal \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.890139 2026-04-14 16:09:58.890139 \N \N agent-new \N \N +132 Elke Michauk \N https://www.berlin.de/ba-spandau/ueber-den-bezirk/artikel.269631.php agent-unknown agent-not-needed {} 2026-04-14 16:09:58.918782 2026-04-14 16:09:58.918782 \N \N agent-new \N \N +133 Güner Balci \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.94382 2026-04-14 16:09:58.94382 \N \N agent-new \N \N +134 Integrationsbüro Neukölln \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.968614 2026-04-14 16:09:58.968614 \N \N agent-new \N \N +135 Ehrenamtsbüro Tempelhof-Schöneberg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.990956 2026-04-14 16:09:58.990956 \N \N agent-new \N \N +136 Interflugs multiple-social-support https://www.interflugs.de agent-unknown agent-not-needed {} 2026-04-14 16:09:59.017673 2026-04-14 16:09:59.017673 \N \N agent-new \N \N +137 International Rescue Committee (IRC) multiple-social-support https://www.rescue.org/eu agent-unknown agent-not-needed {} 2026-04-14 16:09:59.042915 2026-04-14 16:09:59.042915 \N \N agent-new \N \N +138 JUMEN e.V.(Juristische Menschenrechtsarbeit in Deutschland) multiple-social-support https://jumen.org agent-unknown agent-not-needed {} 2026-04-14 16:09:59.066835 2026-04-14 16:09:59.066835 \N \N agent-new \N \N +139 Karuna e.V. multiple-social-support https://cms.karuna-ev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.100416 2026-04-14 16:09:59.100416 \N \N agent-new \N \N +140 KOK - Bundesweiter Koordinierungskreis gegen Menschenhandel e.V. multiple-social-support https://www.kok-gegen-menschenhandel.de/startseite agent-unknown agent-not-needed {} 2026-04-14 16:09:59.132225 2026-04-14 16:09:59.132225 \N \N agent-new \N \N +141 Kontakt- und Beratungsstelle für Flüchtlinge und Migrant_innen e.V. (KUB) multiple-social-support https://www.kub-berlin.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.156496 2026-04-14 16:09:59.156496 \N \N agent-new \N \N +142 LaruHelpsUkraine e.V. multiple-social-support https://laruhelpsukraine.com/de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.184161 2026-04-14 16:09:59.184161 \N \N agent-new \N \N +143 Refugees Welcome multiple-social-support https://www.refugees-welcome.net/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.211743 2026-04-14 16:09:59.211743 \N \N agent-new \N \N +144 Mingru Jipen e.V. multiple-social-support https://www.mingru-jipen.com/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.232281 2026-04-14 16:09:59.232281 \N \N agent-new \N \N +145 MitMachMusik – ein Weg zur Integration e.V. multiple-social-support https://www.mit-mach-musik.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.257189 2026-04-14 16:09:59.257189 \N \N agent-new \N \N +146 Mittelhof e.V. multiple-social-support https://www.mittelhof.org agent-unknown agent-not-needed {} 2026-04-14 16:09:59.284243 2026-04-14 16:09:59.284243 \N \N agent-new \N \N +147 Moabit hilft e.V. multiple-social-support https://www.moabit-hilft.com/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.313041 2026-04-14 16:09:59.313041 \N \N agent-new \N \N +148 TransInterQueer e.V. multiple-social-support https://www.transinterqueer.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.338521 2026-04-14 16:09:59.338521 \N \N agent-new \N \N +175 Ausbildungszentrum OTA gGmbH \N https://www.ausbildung-ota.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.97941 2026-04-14 16:09:59.97941 \N \N agent-new \N \N +149 moveGLOBAL e.V. multiple-social-support https://moveglobal.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.363478 2026-04-14 16:09:59.363478 \N \N agent-new \N \N +150 Paritätische Akademie Berlin gGmbH multiple-social-support https://akademie.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.390306 2026-04-14 16:09:59.390306 \N \N agent-new \N \N +151 PEACE TRAIN BERLIN e.V. multiple-social-support https://www.peace-train-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.415988 2026-04-14 16:09:59.415988 \N \N agent-new \N \N +152 Willkommensbündnis für Flüchtlinge in Steglitz-Zehlendorf multiple-social-support https://www.willkommensbuendnis-steglitz-zehlendorf.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.43625 2026-04-14 16:09:59.43625 \N \N agent-new \N \N +153 Pinel gGmbH multiple-social-support https://www.pinel.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.46082 2026-04-14 16:09:59.46082 \N \N agent-new \N \N +154 Quarteera e.V. multiple-social-support https://www.quarteera.de agent-unknown agent-not-needed {} 2026-04-14 16:09:59.487015 2026-04-14 16:09:59.487015 \N \N agent-new \N \N +155 Refugio Berlin multiple-social-support https://refugio.berlin/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.506714 2026-04-14 16:09:59.506714 \N \N agent-new \N \N +156 Reistrommel e.V. multiple-social-support https://www.reistrommel-ev.de agent-unknown agent-not-needed {} 2026-04-14 16:09:59.532666 2026-04-14 16:09:59.532666 \N \N agent-new \N \N +157 Sporting Club Horus e. V. multiple-social-support https://sc-horus.com agent-unknown agent-not-needed {} 2026-04-14 16:09:59.557297 2026-04-14 16:09:59.557297 \N \N agent-new \N \N +158 Hangar 1 multiple-social-support https://www.hangar1.de agent-unknown agent-not-needed {} 2026-04-14 16:09:59.580572 2026-04-14 16:09:59.580572 \N \N agent-new \N \N +159 SprachCafé Polnisch multiple-social-support https://sprachcafe-polnisch.org agent-unknown agent-not-needed {} 2026-04-14 16:09:59.603189 2026-04-14 16:09:59.603189 \N \N agent-new \N \N +160 TIK e.V. multiple-social-support https://www.tik-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.628029 2026-04-14 16:09:59.628029 \N \N agent-new \N \N +161 nachbarschafft e.V. multiple-social-support https://www.nachbarschafft-ev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.647935 2026-04-14 16:09:59.647935 \N \N agent-new \N \N +162 Türkischer Frauenverein Berlin e. V. multiple-social-support https://www.tuerkischerfrauenverein-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.675552 2026-04-14 16:09:59.675552 \N \N agent-new \N \N +163 Über den Teller multiple-social-support https://ueberdentellerrand.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.704462 2026-04-14 16:09:59.704462 \N \N agent-new \N \N +164 Xenion (Psychosoziale Hilfen für politisch Verfolgte e.V.) multiple-social-support https://www.xenion.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.729507 2026-04-14 16:09:59.729507 \N \N agent-new \N \N +165 Xochicuicatl e.V. multiple-social-support https://www.xochicuicatl.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.755033 2026-04-14 16:09:59.755033 \N \N agent-new \N \N +166 La Red e. V. multiple-social-support https://la-red.eu/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.778024 2026-04-14 16:09:59.778024 \N \N agent-new \N \N +167 YAAR e.V. multiple-social-support http://yaarberlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.801967 2026-04-14 16:09:59.801967 \N \N agent-new \N \N +168 Zaki e.V. multiple-social-support https://zaki-ev.de/ agent-unknown agent-not-needed {tandem,consultation,tandem,voluntary-support,voluntary-support} 2026-04-14 16:09:59.820816 2026-04-14 16:09:59.820816 \N \N agent-new \N \N +169 Zentral-Verband der Ukrainer in Deutschland (ZVUD) e.V. multiple-social-support https://bagiv.de/avada_portfolio/zentral-verband-der-ukrainer-in-deutschland-zvud-e-v/ agent-unknown agent-not-needed {tutoring,tandem,voluntary-support,voluntary-support} 2026-04-14 16:09:59.849366 2026-04-14 16:09:59.849366 \N \N agent-new \N \N +170 WIR - R-Lichtenberg multiple-social-support r-lichtenberg.de agent-unknown agent-not-needed {consultation,tutoring,voluntary-support,welfare,voluntary-support} 2026-04-14 16:09:59.873492 2026-04-14 16:09:59.873492 \N \N agent-new \N \N +171 Space2groW (Frauenkreise Berlin) multiple-social-support https://www.space2grow.de agent-unknown agent-not-needed {tandem,consultation,voluntary-support,voluntary-support,welfare} 2026-04-14 16:09:59.892569 2026-04-14 16:09:59.892569 \N \N agent-new \N \N +172 Irina Warkentin \N https://www.berlin.de/ba-marzahn-hellersdorf/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.916678 2026-04-14 16:09:59.916678 \N \N agent-new \N \N +173 DRK-Schule für soziale Berufe Berlin gGmbH \N https://www.drk-schule.berlin/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.940618 2026-04-14 16:09:59.940618 \N \N agent-new \N \N +174 Alice Salomon Hochschule Berlin \N https://www.ash-berlin.eu agent-unknown agent-not-needed {} 2026-04-14 16:09:59.959456 2026-04-14 16:09:59.959456 \N \N agent-new \N \N +176 Welcome Alliance multiple-social-support https://welcome-alliance.org agent-unknown agent-not-needed {tandem,tandem} 2026-04-14 16:09:59.998583 2026-04-14 16:09:59.998583 \N \N agent-new \N \N +177 Deutsche Stiftung für Engagement und Ehrenamt multiple-social-support https://www.deutsche-stiftung-engagement-und-ehrenamt.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:00.176784 2026-04-14 16:10:00.176784 \N \N agent-new \N \N +178 Easy German multiple-social-support https://www.easygerman.org/ agent-unknown agent-not-needed {tandem} 2026-04-14 16:10:00.215429 2026-04-14 16:10:00.215429 \N \N agent-new \N \N +179 Pestalozzi-Fröbel-Haus multiple-social-support https://www.pfh-berlin.de/de/startseite/das-pestalozzi-froebel-haus agent-unknown agent-not-needed {consultation,tutoring} 2026-04-14 16:10:00.246066 2026-04-14 16:10:00.246066 \N \N agent-new \N \N +180 Pegasus GmbH multiple-social-support https://www.tempelhoferfeld.de/entdecken-erleben/projekte-buergerschaftlichen-engagements/stadtacker/ agent-unknown agent-not-needed {tandem} 2026-04-14 16:10:00.27899 2026-04-14 16:10:00.27899 \N \N agent-new \N \N +181 Stiftung Berliner Leben multiple-social-support https://www.stiftung-berliner-leben.de/ agent-unknown agent-not-needed {tutoring,welfare,welfare} 2026-04-14 16:10:00.312787 2026-04-14 16:10:00.312787 \N \N agent-new \N \N +182 Vostel multiple-social-support https://vostel.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:00.336381 2026-04-14 16:10:00.336381 \N \N agent-new \N \N +183 Aşkın-Hayat Doğan multiple-social-support https://ask-dogan.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:00.361955 2026-04-14 16:10:00.361955 \N \N agent-new \N \N +184 JUMA e.V. multiple-social-support http://juma-ev.de/ agent-unknown agent-not-needed {welfare,tandem} 2026-04-14 16:10:00.382967 2026-04-14 16:10:00.382967 \N \N agent-new \N \N +185 Diakoniewerk Simeon multiple-social-support https://www.diakoniewerk-simeon.de agent-unknown agent-not-needed {consultation,tutoring,tutoring,voluntary-support} 2026-04-14 16:10:00.410251 2026-04-14 16:10:00.410251 \N \N agent-new \N \N +186 grenzgänge multiple-social-support https://grenzgaenge.net/ agent-unknown agent-not-needed {welfare,tutoring,youth} 2026-04-14 16:10:00.441626 2026-04-14 16:10:00.441626 \N \N agent-new \N \N +187 Das Afghanistan-Komitee für Frieden, Wiederaufbau und Kultur e.V. multiple-social-support https://afghanistankomitee.de/ agent-unknown agent-not-needed {tutoring,tandem} 2026-04-14 16:10:00.466527 2026-04-14 16:10:00.466527 \N \N agent-new \N \N +188 Die Akademie für Ehrenamtlichkeit multiple-social-support https://www.ehrenamt.de/ agent-unknown agent-not-needed {tutoring,voluntary-support} 2026-04-14 16:10:00.491108 2026-04-14 16:10:00.491108 \N \N agent-new \N \N +189 akinda multiple-social-support https://www.akinda-berlin.org agent-unknown agent-not-needed {tandem,consultation,childcare,voluntary-support,tutoring,voluntary-support} 2026-04-14 16:10:00.516208 2026-04-14 16:10:00.516208 \N \N agent-new \N \N +190 Amaro Foro e.V. multiple-social-support https://amaroforo.de/ agent-unknown agent-not-needed {consultation,voluntary-support,tandem,voluntary-support} 2026-04-14 16:10:00.542147 2026-04-14 16:10:00.542147 \N \N agent-new \N \N +191 AWO Südwest (Friedenau) multiple-social-support https://www.awo-suedwest.de/friedenau.html agent-unknown agent-not-needed {consultation,consultation,sport,youth} 2026-04-14 16:10:00.568445 2026-04-14 16:10:00.568445 \N \N agent-new \N \N +192 Ausländer mit uns - Verein zur Förderung interkultureller Begegnungen e. V. multiple-social-support https://amuberlin.de/ agent-unknown agent-not-needed {refugee-accommodation,voluntary-support,welfare,voluntary-support,tutoring} 2026-04-14 16:10:00.599404 2026-04-14 16:10:00.599404 \N \N agent-new \N \N +193 BDB - Bund für Antidiskriminierungs- und Bildungsarbeit e.V. multiple-social-support https://bdb-germany.de/ agent-unknown agent-not-needed {consultation,welfare,tandem} 2026-04-14 16:10:00.626357 2026-04-14 16:10:00.626357 \N \N agent-new \N \N +194 Berlin hilft multiple-social-support https://berlin-hilft.com/ agent-unknown agent-not-needed {consultation,tutoring,tandem} 2026-04-14 16:10:00.653048 2026-04-14 16:10:00.653048 \N \N agent-new \N \N +195 Berlin to Borders e.V. multiple-social-support https://www.berlintoborders.org/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:00.675442 2026-04-14 16:10:00.675442 \N \N agent-new \N \N +196 BEGspo multiple-social-support https://begspo.de/k agent-unknown agent-not-needed {childcare,sport,youth} 2026-04-14 16:10:00.703245 2026-04-14 16:10:00.703245 \N \N agent-new \N \N +197 Berliner Stadtmission multiple-social-support https://www.berliner-stadtmission.de/ehrenamt agent-unknown agent-not-needed {consultation,voluntary-support,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:00.73193 2026-04-14 16:10:00.73193 \N \N agent-new \N \N +198 Bundesarbeitsgemeinschaft der Freiwilligenagenturen e.V. multiple-social-support https://bagfa.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:00.76094 2026-04-14 16:10:00.76094 \N \N agent-new \N \N +199 BAfF e.V. multiple-social-support \N agent-unknown agent-not-needed {tutoring,voluntary-support} 2026-04-14 16:10:00.791474 2026-04-14 16:10:00.791474 \N \N agent-new \N \N +200 buntkicktgut gGmbH multiple-social-support https://buntkicktgut.org/ agent-unknown agent-not-needed {sport} 2026-04-14 16:10:00.832661 2026-04-14 16:10:00.832661 \N \N agent-new \N \N +201 Bus of Resources multiple-social-support https://www.busofresources.de agent-unknown agent-not-needed {consultation,voluntary-support,voluntary-support} 2026-04-14 16:10:00.902512 2026-04-14 16:10:00.902512 \N \N agent-new \N \N +202 Caritas Deutschland multiple-social-support https://www.caritas.de/fuerprofis/fachthemen/migration/ehrenamt-in-der-fluechtlingsarbeit/ehrenamt-in-der-fluechtlingsarbeit agent-unknown agent-not-needed {consultation,voluntary-support,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:00.93203 2026-04-14 16:10:00.93203 \N \N agent-new \N \N +203 Centre for Humanitarian Action (CHA) multiple-social-support https://www.chaberlin.org/ agent-unknown agent-not-needed {voluntary-support,tandem} 2026-04-14 16:10:00.97611 2026-04-14 16:10:00.97611 \N \N agent-new \N \N +204 LeaveNoOneBehind multiple-social-support https://lnob.net/ agent-unknown agent-not-needed {voluntary-support,tandem,voluntary-support} 2026-04-14 16:10:01.003564 2026-04-14 16:10:01.003564 \N \N agent-new \N \N +205 DaKS – Dachverband Berliner Kinder- und Schülerläden e. V. multiple-social-support https://www.daks-berlin.de/ agent-unknown agent-not-needed {welfare,childcare,tandem,welfare,youth} 2026-04-14 16:10:01.025908 2026-04-14 16:10:01.025908 \N \N agent-new \N \N +206 Dekabristen e.V. multiple-social-support https://dekabristen.org/ agent-unknown agent-not-needed {tutoring,tandem} 2026-04-14 16:10:01.055022 2026-04-14 16:10:01.055022 \N \N agent-new \N \N +207 Der Paritätische multiple-social-support https://www.der-paritaetische.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:01.086316 2026-04-14 16:10:01.086316 \N \N agent-new \N \N +208 djo-hilft multiple-social-support https://djo-hilft.de/ agent-unknown agent-not-needed {tutoring,childcare,voluntary-support,voluntary-support,youth} 2026-04-14 16:10:01.116932 2026-04-14 16:10:01.116932 \N \N agent-new \N \N +209 Ev. Kirchengemeinde Zum Guten Hirten multiple-social-support https://www.zum-guten-hirten-friedenau.de agent-unknown agent-not-needed {consultation,voluntary-support,welfare,tutoring} 2026-04-14 16:10:01.143419 2026-04-14 16:10:01.143419 \N \N agent-new \N \N +210 Fabrik Osloer Strasse e.V. multiple-social-support \N agent-unknown agent-not-needed {tutoring,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:01.234912 2026-04-14 16:10:01.234912 \N \N agent-new \N \N +211 Flüchtlingsrat Berlin e.V. multiple-social-support https://fluechtlingsrat-berlin.de/ agent-unknown agent-not-needed {consultation,tandem,voluntary-support} 2026-04-14 16:10:01.397787 2026-04-14 16:10:01.397787 \N \N agent-new \N \N +212 MIM - Migrantinnen in Marzahn e.V. multiple-social-support https://www.mimev.de agent-unknown agent-not-needed {welfare,voluntary-support,welfare} 2026-04-14 16:10:01.508297 2026-04-14 16:10:01.508297 \N \N agent-new \N \N +213 Freiwilligenagentur Steglitz-Zehlendorf multiple-social-support https://freiwilligenagentur.info agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:01.557044 2026-04-14 16:10:01.557044 \N \N agent-new \N \N +214 Goldnetz multiple-social-support https://www.goldnetz-berlin.de agent-unknown agent-not-needed {consultation,tutoring,job-coaching,welfare} 2026-04-14 16:10:01.591615 2026-04-14 16:10:01.591615 \N \N agent-new \N \N +215 gfp Gesellschaft für Pflege- und Sozialberufe gGmbH \N https://www.gfp-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:01.619283 2026-04-14 16:10:01.619283 \N \N agent-new \N \N +216 GoVolunteer multiple-social-support https://govolunteer.com/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:01.641774 2026-04-14 16:10:01.641774 \N \N agent-new \N \N +241 Schöneberg hilft e.V. multiple-social-support www.schoeneberg-hilft.de agent-unknown agent-not-needed {consultation,voluntary-support,tandem,voluntary-support,voluntary-support} 2026-04-14 16:10:02.919332 2026-04-14 16:10:02.919332 \N \N agent-new \N \N +217 Handicap International e.V. multiple-social-support https://handicap-international.de/ agent-unknown agent-not-needed {voluntary-support,tandem} 2026-04-14 16:10:01.675706 2026-04-14 16:10:01.675706 \N \N agent-new \N \N +218 Haus Babylon - Babel e.V. multiple-social-support http://www.haus-babylon.de agent-unknown agent-not-needed {consultation,consultation,welfare,childcare,tandem,youth} 2026-04-14 16:10:01.707365 2026-04-14 16:10:01.707365 \N \N agent-new \N \N +219 Salvation Army multiple-social-support https://www.heilsarmee.de/berlinsuedwest/ueber-uns.html agent-unknown agent-not-needed {consultation,welfare,voluntary-support,tutoring} 2026-04-14 16:10:01.734983 2026-04-14 16:10:01.734983 \N \N agent-new \N \N +220 Willkommen in Reinickendorf multiple-social-support https://wir-netzwerk.de agent-unknown agent-not-needed {welfare,voluntary-support,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:01.774936 2026-04-14 16:10:01.774936 \N \N agent-new \N \N +221 House of Resources multiple-social-support https://www.house-of-resources.berlin/ agent-unknown agent-not-needed {consultation,voluntary-support} 2026-04-14 16:10:01.838634 2026-04-14 16:10:01.838634 \N \N agent-new \N \N +222 Humanistischer Verband Deutschlands, Landesverband Berlin-Brandenburg multiple-social-support https://humanistisch.de/ agent-unknown agent-not-needed {consultation,welfare,tandem} 2026-04-14 16:10:01.920465 2026-04-14 16:10:01.920465 \N \N agent-new \N \N +223 OlamAid e.V. multiple-social-support https://www.olamaid.org/de agent-unknown agent-not-needed {consultation,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:02.115468 2026-04-14 16:10:02.115468 \N \N agent-new \N \N +224 Johanniter-Unfall-Hilfe e.V. multiple-social-support https://www.johanniter.de/ agent-unknown agent-not-needed {consultation,voluntary-support,voluntary-support} 2026-04-14 16:10:02.159162 2026-04-14 16:10:02.159162 \N \N agent-new \N \N +225 Kommunales Bildungswerk e. V. multiple-social-support https://www.kbw.de/ agent-unknown agent-not-needed {tutoring} 2026-04-14 16:10:02.228138 2026-04-14 16:10:02.228138 \N \N agent-new \N \N +226 LAGFA Berlin -Landesarbeitsgemeinschaft der Freiwilligenagenturen Berlin e.V. multiple-social-support https://www.lagfa.berlin agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:02.301198 2026-04-14 16:10:02.301198 \N \N agent-new \N \N +227 Landesfreiwilligenagentur multiple-social-support https://landesfreiwilligenagentur.berlin agent-unknown agent-not-needed {welfare,voluntary-support} 2026-04-14 16:10:02.33541 2026-04-14 16:10:02.33541 \N \N agent-new \N \N +228 Landesverband Berliner Rotes Kreuz e.V. multiple-social-support https://www.drk-berlin.de/ agent-unknown agent-not-needed {consultation,consultation,voluntary-support,voluntary-support,voluntary-support,voluntary-support} 2026-04-14 16:10:02.365708 2026-04-14 16:10:02.365708 \N \N agent-new \N \N +229 LARA - Verein gegen sexuelle Gewalt an Frauen e.V. multiple-social-support https://lara-berlin.de/home agent-unknown agent-not-needed {consultation,consultation,voluntary-support,voluntary-support,welfare} 2026-04-14 16:10:02.406575 2026-04-14 16:10:02.406575 \N \N agent-new \N \N +230 Lernlabor Berlin multiple-social-support https://lernlabor.berlin/about/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:02.484429 2026-04-14 16:10:02.484429 \N \N agent-new \N \N +231 Let’s Act e.V. multiple-social-support letsact.de agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:02.516812 2026-04-14 16:10:02.516812 \N \N agent-new \N \N +232 WiB e.V. (Wir im Brunnenviertel) multiple-social-support https://wib-jugend.org/ agent-unknown agent-not-needed {welfare,voluntary-support,welfare,voluntary-support,welfare} 2026-04-14 16:10:02.554625 2026-04-14 16:10:02.554625 \N \N agent-new \N \N +233 Malteser Hilfsdienst e.V. multiple-social-support https://www.malteser-berlin.de agent-unknown agent-not-needed {voluntary-support,voluntary-support,voluntary-support} 2026-04-14 16:10:02.593717 2026-04-14 16:10:02.593717 \N \N agent-new \N \N +234 Nachbarschaftshaus Friedenau multiple-social-support https://www.nbhs.de agent-unknown agent-not-needed {welfare,welfare} 2026-04-14 16:10:02.639667 2026-04-14 16:10:02.639667 \N \N agent-new \N \N +235 NEZ - Neuköllner EngagementZentrum multiple-social-support https://nez-neukoelln.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:02.68758 2026-04-14 16:10:02.68758 \N \N agent-new \N \N +236 oskar - Freiwilligenagentur multiple-social-support https://oskar.berlin/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:02.727771 2026-04-14 16:10:02.727771 \N \N agent-new \N \N +237 People Beyond Borders multiple-social-support https://peoplebeyondborders.org/ agent-unknown agent-not-needed {welfare,voluntary-support} 2026-04-14 16:10:02.787238 2026-04-14 16:10:02.787238 \N \N agent-new \N \N +238 ReDI School of Digital Integration multiple-social-support redi-school.org agent-unknown agent-not-needed {tutoring,childcare,voluntary-support,voluntary-support,youth} 2026-04-14 16:10:02.824149 2026-04-14 16:10:02.824149 \N \N agent-new \N \N +239 Refugee Law Clinic Berlin e.V. multiple-social-support https://www.rlc-berlin.org/ agent-unknown agent-not-needed {consultation,voluntary-support} 2026-04-14 16:10:02.852111 2026-04-14 16:10:02.852111 \N \N agent-new \N \N +240 Save the Children Deutschland multiple-social-support https://www.savethechildren.de/ agent-unknown agent-not-needed {voluntary-support,childcare,tandem} 2026-04-14 16:10:02.879299 2026-04-14 16:10:02.879299 \N \N agent-new \N \N +242 Landessportbund Berlin e.V. multiple-social-support www.sportbund.de agent-unknown agent-not-needed {consultation,childcare,sport,youth} 2026-04-14 16:10:02.951859 2026-04-14 16:10:02.951859 \N \N agent-new \N \N +243 Stadtteilzentrum Hellersdorf-Ost multiple-social-support https://www.ev-mittendrin.de/stadtteilzentrum-hellersdorf-ost/ agent-unknown agent-not-needed {welfare,tutoring} 2026-04-14 16:10:02.995589 2026-04-14 16:10:02.995589 \N \N agent-new \N \N +244 THFwelcome e.V. multiple-social-support https://thfwelcome.de/ agent-unknown agent-not-needed {childcare,voluntary-support,welfare,youth} 2026-04-14 16:10:03.028051 2026-04-14 16:10:03.028051 \N \N agent-new \N \N +245 Ulme35 – Interkulturanstalten Westend e.V. multiple-social-support https://interkulturanstalten.de agent-unknown agent-not-needed {tutoring,welfare,tandem,voluntary-support,welfare,voluntary-support,tutoring} 2026-04-14 16:10:03.063947 2026-04-14 16:10:03.063947 \N \N agent-new \N \N +246 VIA Berlin/Brandenburg multiple-social-support https://www.via-in-berlin.de/ agent-unknown agent-not-needed {consultation,voluntary-support,voluntary-support,voluntary-support} 2026-04-14 16:10:03.09314 2026-04-14 16:10:03.09314 \N \N agent-new \N \N +247 Wellbeing for Everyone gUG multiple-social-support https://www.wellbeing-company.com/ agent-unknown agent-not-needed {tutoring} 2026-04-14 16:10:03.126177 2026-04-14 16:10:03.126177 \N \N agent-new \N \N +248 Türöffner e.V. – Jobnetzwerk für Geflüchtete multiple-social-support https://tueroeffner-ev.de/ agent-unknown agent-not-needed {job-coaching,voluntary-support} 2026-04-14 16:10:03.150792 2026-04-14 16:10:03.150792 \N \N agent-new \N \N +249 Gemeinwesenverein Heerstraße Nord e.V. multiple-social-support https://gwv-heerstrasse.de/ agent-unknown agent-not-needed {consultation,voluntary-support,welfare,voluntary-support} 2026-04-14 16:10:03.178541 2026-04-14 16:10:03.178541 \N \N agent-new \N \N +250 BENN Wilmersdorf \N https://benn-wilmersdorf.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.214507 2026-04-14 16:10:03.214507 \N \N agent-new \N \N +251 BENN Hohenschönhausen Nord \N www.benn-hohenschoenhausen.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.246607 2026-04-14 16:10:03.246607 \N \N agent-new \N \N +252 BENN Fennpfuhl \N https://www.benn-fennpfuhl.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.270044 2026-04-14 16:10:03.270044 \N \N agent-new \N \N +253 BENN Alt-Hohenschönhausen \N https://www.benn-alt-hsh.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.293286 2026-04-14 16:10:03.293286 \N \N agent-new \N \N +254 BENN Wartenberg \N https://sozdia.de/taetigkeitsbereiche/gemeinwesen/benn-wartenberg/ueber-uns agent-unknown agent-not-needed {} 2026-04-14 16:10:03.319958 2026-04-14 16:10:03.319958 \N \N agent-new \N \N +255 BENN Blumberger Damm \N https://benn-blumbergerdamm.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.351432 2026-04-14 16:10:03.351432 \N \N agent-new \N \N +256 BENN Lewis-Lewin-Straße \N https://benn-lls.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.375151 2026-04-14 16:10:03.375151 \N \N agent-new \N \N +257 BENN Marzahn-Süd \N https://marzahn-sued.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.412043 2026-04-14 16:10:03.412043 \N \N agent-new \N \N +258 BENNplus Wittenberger Straße \N https://www.wittenberger-strasse.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.438509 2026-04-14 16:10:03.438509 \N \N agent-new \N \N +259 BENNplus Raoul-Wallenberg-Str. \N https://www.drk-berlin-nordost.de/benn-plus-raoul-wallenberg-strasse.html agent-unknown agent-not-needed {} 2026-04-14 16:10:03.464806 2026-04-14 16:10:03.464806 \N \N agent-new \N \N +260 BENN Britz \N https://benn-britz.com agent-unknown agent-not-needed {} 2026-04-14 16:10:03.494933 2026-04-14 16:10:03.494933 \N \N agent-new \N \N +261 BENN Buch \N https://www.benn-buch.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.522428 2026-04-14 16:10:03.522428 \N \N agent-new \N \N +262 BENN Weißensee \N https://benn-weissensee.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.545665 2026-04-14 16:10:03.545665 \N \N agent-new \N \N +263 BENN Märkisches Viertel \N https://www.bennimmv.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.56946 2026-04-14 16:10:03.56946 \N \N agent-new \N \N +264 BENN Tegel-Süd \N https://benn-tegelsued.de/index.php agent-unknown agent-not-needed {} 2026-04-14 16:10:03.593161 2026-04-14 16:10:03.593161 \N \N agent-new \N \N +265 BENN Wittenau-Süd \N https://wittenau-sued.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.619084 2026-04-14 16:10:03.619084 \N \N agent-new \N \N +266 BENN Hakenfelde \N https://benn-hakenfelde.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.64277 2026-04-14 16:10:03.64277 \N \N agent-new \N \N +267 BENN Staaken \N https://gwv-heerstrasse.de/orte/benn-staaken/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.664307 2026-04-14 16:10:03.664307 \N \N agent-new \N \N +268 BENN Hindenburgdamm \N https://www.benn-hindenburgdamm.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.693094 2026-04-14 16:10:03.693094 \N \N agent-new \N \N +269 BENN Mariendorf-Tempelhof \N https://www.benn-mariendorf-tempelhof.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.718367 2026-04-14 16:10:03.718367 \N \N agent-new \N \N +270 BENN Allende-Viertel \N https://www.benn-allende-viertel.de/de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.741345 2026-04-14 16:10:03.741345 \N \N agent-new \N \N +271 BENN Altglienicke \N https://www.benn-altglienicke.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.762968 2026-04-14 16:10:03.762968 \N \N agent-new \N \N +272 Laura El-Khatib \N https://www.berlin.de/ba-steglitz-zehlendorf/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.790933 2026-04-14 16:10:03.790933 \N \N agent-new \N \N +273 Nina Scholz (?) \N https://www.berlin.de/ba-steglitz-zehlendorf/auf-einen-blick/ehrenamt/aktuelles/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.822099 2026-04-14 16:10:03.822099 \N \N agent-new \N \N +274 Cem Gömüsay \N https://www.berlin.de/ba-charlottenburg-wilmersdorf/verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.848137 2026-04-14 16:10:03.848137 \N \N agent-new \N \N +275 Prisca Martaguet \N https://www.berlin.de/ba-charlottenburg-wilmersdorf/verwaltung/beauftragte/integration/das-integrationsbuero/artikel.663448.php agent-unknown agent-not-needed {} 2026-04-14 16:10:03.87333 2026-04-14 16:10:03.87333 \N \N agent-new \N \N +276 Sahra Nell \N https://www.berlin.de/ba-friedrichshain-kreuzberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.902424 2026-04-14 16:10:03.902424 \N \N agent-new \N \N +374 Schönwalder Allee \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.766126 2026-04-14 16:10:06.766126 \N \N agent-new \N \N +277 Forouzan Forough \N https://www.berlin.de/ba-friedrichshain-kreuzberg/politik-und-verwaltung/beauftragte/integration/team/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.929973 2026-04-14 16:10:03.929973 \N \N agent-new \N \N +278 Johanna Kösters \N https://www.berlin.de/ba-mitte/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.956532 2026-04-14 16:10:03.956532 \N \N agent-new \N \N +279 Noemi Majer \N https://www.berlin.de/ba-mitte/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.986055 2026-04-14 16:10:03.986055 \N \N agent-new \N \N +280 Fabian Nehring \N https://www.berlin.de/ba-lichtenberg/politik-und-verwaltung/beauftragte/integration/artikel.708493.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.0218 2026-04-14 16:10:04.0218 \N \N agent-new \N \N +281 Irina Plat \N https://www.berlin.de/ba-lichtenberg/politik-und-verwaltung/beauftragte/integration/artikel.708493.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.054515 2026-04-14 16:10:04.054515 \N \N agent-new \N \N +282 Zhanna Kramer \N https://www.berlin.de/ba-lichtenberg/politik-und-verwaltung/beauftragte/integration/artikel.708493.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.087144 2026-04-14 16:10:04.087144 \N \N agent-new \N \N +283 Gregor Postler \N https://www.berlin.de/ba-treptow-koepenick/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.122777 2026-04-14 16:10:04.122777 \N \N agent-new \N \N +284 Katharina Stökl \N https://www.berlin.de/ba-treptow-koepenick/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.147037 2026-04-14 16:10:04.147037 \N \N agent-new \N \N +285 Dr. Lisa Rüter \N https://www.berlin.de/ba-tempelhof-schoeneberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.175391 2026-04-14 16:10:04.175391 \N \N agent-new \N \N +286 Romy Powils \N https://www.berlin.de/ba-tempelhof-schoeneberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.207558 2026-04-14 16:10:04.207558 \N \N agent-new \N \N +287 Ariane Ortmann \N https://www.berlin.de/ba-tempelhof-schoeneberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.240831 2026-04-14 16:10:04.240831 \N \N agent-new \N \N +288 Dr. Max Meier \N https://www.berlin.de/ba-tempelhof-schoeneberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.268889 2026-04-14 16:10:04.268889 \N \N agent-new \N \N +289 Martin Peters \N https://www.berlin.de/ba-spandau/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.299558 2026-04-14 16:10:04.299558 \N \N agent-new \N \N +290 Christina Skirde \N https://www.berlin.de/ba-spandau/politik-und-verwaltung/beauftragte/integration/artikel.745181.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.335123 2026-04-14 16:10:04.335123 \N \N agent-new \N \N +291 Juliana Ramm \N https://www.berlin.de/ba-reinickendorf/politik-und-verwaltung/beauftragte/integration/artikel.601733.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.363987 2026-04-14 16:10:04.363987 \N \N agent-new \N \N +292 Anne Speck multiple-social-support https://www.berlin.de/ba-pankow/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.39571 2026-04-14 16:10:04.39571 \N \N agent-new \N \N +293 Türkische Bund Berlin - TBB multiple-social-support tbb-berlin.de agent-unknown agent-not-needed {consultation,job-coaching,voluntary-support} 2026-04-14 16:10:04.434673 2026-04-14 16:10:04.434673 \N \N agent-new \N \N +294 kein Abseits! e.V. multiple-social-support https://www.kein-abseits.de agent-unknown agent-not-needed {job-coaching,childcare,voluntary-support,sport,tutoring,voluntary-support} 2026-04-14 16:10:04.464097 2026-04-14 16:10:04.464097 \N \N agent-new \N \N +295 Torhaus Berlin e.V. multiple-social-support https://torhausberlin.de/ agent-unknown agent-not-needed {refugee-accommodation,welfare,voluntary-support,welfare} 2026-04-14 16:10:04.500752 2026-04-14 16:10:04.500752 \N \N agent-new \N \N +296 Interkular gGmbH multiple-social-support https://www.interkular.de/ agent-unknown agent-not-needed {refugee-accommodation,consultation,welfare,voluntary-support,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:04.524816 2026-04-14 16:10:04.524816 \N \N agent-new \N \N +297 Forough Ghiasi multiple-social-support https://www.berlin.de/ba-steglitz-zehlendorf/politik-und-verwaltung/beauftragte/integration/artikel.622675.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.553262 2026-04-14 16:10:04.553262 \N \N agent-new \N \N +298 lilipad e.V. multiple-social-support https://www.lilipadlibrary.org/ agent-unknown agent-not-needed {tutoring,childcare,tutoring} 2026-04-14 16:10:04.578019 2026-04-14 16:10:04.578019 \N \N agent-new \N \N +299 Pankow hilft e.V. multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:04.600243 2026-04-14 16:10:04.600243 \N \N agent-new \N \N +300 Clean Up Trepnick multiple-social-support https://www.cleanuptrepnick.de/en agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:04.628819 2026-04-14 16:10:04.628819 \N \N agent-new \N \N +301 Du für Berlin multiple-social-support https://dfb.govolunteer.com/ agent-unknown agent-not-needed {voluntary-support,voluntary-support,voluntary-support} 2026-04-14 16:10:04.649857 2026-04-14 16:10:04.649857 \N \N agent-new \N \N +302 Iranische Gemeinde in Deutschland e.V. multiple-social-support \N agent-unknown agent-not-needed {welfare,tandem,voluntary-support,sport,welfare} 2026-04-14 16:10:04.670515 2026-04-14 16:10:04.670515 \N \N agent-new \N \N +303 Kiezkiosk Open Tiny e.V.  multiple-social-support https://opentiny.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:04.730341 2026-04-14 16:10:04.730341 \N \N agent-new \N \N +304 Beratungsforum Engagement für Geflüchtete (BfE) Nord multiple-social-support https://beratungsforum-engagement.berlin/beratungsforum-team/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:04.794089 2026-04-14 16:10:04.794089 \N \N agent-new \N \N +305 Internationaler Bund (IB) Marzahn multiple-social-support www.ib.de agent-unknown agent-not-needed {consultation,voluntary-support,tutoring} 2026-04-14 16:10:04.820106 2026-04-14 16:10:04.820106 \N \N agent-new \N \N +306 Mobijob multiple-social-support https://www.mobijob-berlin.de agent-unknown agent-not-needed {consultation,job-coaching,voluntary-support} 2026-04-14 16:10:04.851287 2026-04-14 16:10:04.851287 \N \N agent-new \N \N +375 Seegefelder Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.785526 2026-04-14 16:10:06.785526 \N \N agent-new \N \N +307 Zentrum ÜBERLEBEN gGmbH multiple-social-support https://www.ueberleben.org/kontakt/kontakt/ agent-unknown agent-not-needed {consultation,tutoring,voluntary-support} 2026-04-14 16:10:04.87828 2026-04-14 16:10:04.87828 \N \N agent-new \N \N +308 Flamingo e.V. multiple-social-support https://flamingo-berlin.org/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.903888 2026-04-14 16:10:04.903888 \N \N agent-new \N \N +309 ALEP e.V. Außerschulisches Lernen und Erlebnispädagogik multiple-social-support https://alep-ev.de/ agent-unknown agent-not-needed {welfare,tutoring,tandem,childcare,voluntary-support,youth} 2026-04-14 16:10:04.914885 2026-04-14 16:10:04.914885 \N \N agent-new \N \N +310 FU Berlin student body multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:04.942919 2026-04-14 16:10:04.942919 \N \N agent-new \N \N +311 SBZ Motorenprüfstand \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:04.955007 2026-04-14 16:10:04.955007 \N \N agent-new \N \N +312 Medical School Berlin \N https://www.medicalschool-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.976933 2026-04-14 16:10:04.976933 \N \N agent-new \N \N +313 Internationale Hochschule \N https://www.iu-dualesstudium.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.987834 2026-04-14 16:10:04.987834 \N \N agent-new \N \N +314 \nHochschule für Soziale Arbeit und Pädagogik (HSAP) \N https://www.hsap.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.998457 2026-04-14 16:10:04.998457 \N \N agent-new \N \N +315 \nEvangelische Hochschule Berlin (EHB) \N https://www.eh-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:05.014155 2026-04-14 16:10:05.014155 \N \N agent-new \N \N +316 Mensa Adlershof HU \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.029233 2026-04-14 16:10:05.029233 \N \N agent-new \N \N +317 Humboldt Universität \N https://www.hu-berlin.de/de agent-unknown agent-not-needed {} 2026-04-14 16:10:05.043877 2026-04-14 16:10:05.043877 \N \N agent-new \N \N +318 Freie Universität Berlin \N https://www.fu-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:05.056251 2026-04-14 16:10:05.056251 \N \N agent-new \N \N +319 Technische Universität Berlin \N https://www.tu.berlin/ agent-unknown agent-not-needed {} 2026-04-14 16:10:05.070783 2026-04-14 16:10:05.070783 \N \N agent-new \N \N +320 Grünauer Straße \N \N agent-low agent-not-needed {} 2026-04-14 16:10:05.083635 2026-04-14 16:10:05.083635 \N \N agent-new \N \N +321 KinderKulturMonat multiple-social-support https://www.kinderkulturmonat.de agent-unknown agent-not-needed {welfare,childcare,voluntary-support,voluntary-support} 2026-04-14 16:10:05.136786 2026-04-14 16:10:05.136786 \N \N agent-new \N \N +322 Reforum Space multiple-social-support https://www.4freerussia.org/reforum-space/ agent-unknown agent-not-needed {consultation,tutoring} 2026-04-14 16:10:05.165509 2026-04-14 16:10:05.165509 \N \N agent-new \N \N +323 Berlin Scholars multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.189297 2026-04-14 16:10:05.189297 \N \N agent-new \N \N +324 VHS Lichtenberg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.201902 2026-04-14 16:10:05.201902 \N \N agent-new \N \N +325 VHS Pankow \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.223688 2026-04-14 16:10:05.223688 \N \N agent-new \N \N +326 VHS Spandau \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.245027 2026-04-14 16:10:05.245027 \N \N agent-new \N \N +327 VHS Reinikendorf \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.266117 2026-04-14 16:10:05.266117 \N \N agent-new \N \N +328 VHS Marzahn-Hellersdorf \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.286654 2026-04-14 16:10:05.286654 \N \N agent-new \N \N +329 VHS Treptow Köpenick \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.307917 2026-04-14 16:10:05.307917 \N \N agent-new \N \N +330 VHS Neukölln \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.328873 2026-04-14 16:10:05.328873 \N \N agent-new \N \N +331 VHS Tempelhof Schöneberg multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.348542 2026-04-14 16:10:05.348542 \N \N agent-new \N \N +332 paragraf 1 Soziale Dienste gGmbH multiple-social-support www.paragraf1.de agent-unknown agent-not-needed {consultation,tandem} 2026-04-14 16:10:05.370276 2026-04-14 16:10:05.370276 \N \N agent-new \N \N +333 Campus Hedwig SozDia Jugendhilfe, Bildung und Arbeit gGmbH multiple-social-support https://stadtteilzentren.de/orte/lichtenberg/stadtteilzentrum-campus-hedwig-sozdia-ggmbh/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:05.397369 2026-04-14 16:10:05.397369 \N \N agent-new \N \N +334 https://stadtteilzentren.de/orte/lichtenberg/interkultureller-garten-lichtenberg-sozdia-ggmbh/# multiple-social-support https://sozdia.de/taetigkeitsbereiche/gemeinwesen/interkultureller-garten/ueber-uns agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:05.408571 2026-04-14 16:10:05.408571 \N \N agent-new \N \N +335 Unabhängiges Jugendzentrum Pankow – JUP e. V. multiple-social-support https://www.jup-ev.org/haus/neuigkeiten.html agent-unknown agent-not-needed {} 2026-04-14 16:10:05.42001 2026-04-14 16:10:05.42001 \N \N agent-new \N \N +336 Bessemerstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.432673 2026-04-14 16:10:05.432673 \N \N agent-new \N \N +337 Röblingstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.459289 2026-04-14 16:10:05.459289 \N \N agent-new \N \N +338 Tamaja gGmbH multiple-social-support http://www.tamaja.de agent-unknown agent-not-needed {voluntary-support,voluntary-support} 2026-04-14 16:10:05.481369 2026-04-14 16:10:05.481369 \N \N agent-new \N \N +339 Mansio Mitte ASOG \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.5085 2026-04-14 16:10:05.5085 \N \N agent-new \N \N +340 Wohnheim Heider ASOG \N agent-low agent-not-needed {} 2026-04-14 16:10:05.525399 2026-04-14 16:10:05.525399 \N \N agent-new \N \N +372 Quedlinburger Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.700353 2026-04-14 16:10:06.700353 \N \N agent-new \N \N +341 bedcon - Berlin Education & Consulting multiple-social-support bedcon.net agent-unknown agent-not-needed {consultation,job-coaching,sport,voluntary-support,voluntary-support,welfare} 2026-04-14 16:10:05.54602 2026-04-14 16:10:05.54602 \N \N agent-new \N \N +342 Home and Beyond e.V. multiple-social-support https://www.homebeyond.org/ agent-unknown agent-not-needed {consultation,tutoring,voluntary-support,voluntary-support,welfare} 2026-04-14 16:10:05.571986 2026-04-14 16:10:05.571986 \N \N agent-new \N \N +343 Asyl in der Kirche e.V. multiple-social-support https://kirchenasyl.de agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:05.599958 2026-04-14 16:10:05.599958 \N \N agent-new \N \N +344 Aktion für Flüchtlingshilfe e.V. multiple-social-support https://aktion-fh.de agent-unknown agent-not-needed {tandem,welfare,tandem,voluntary-support} 2026-04-14 16:10:05.626455 2026-04-14 16:10:05.626455 \N \N agent-new \N \N +345 Berliner Aids-Hilfe e.V. multiple-social-support https://www.berlin-aidshilfe.de agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:05.653543 2026-04-14 16:10:05.653543 \N \N agent-new \N \N +346 BWK BildungsWerk in Kreuzberg GmbH multiple-social-support bwk-berlin.de agent-unknown agent-not-needed {tutoring,job-coaching} 2026-04-14 16:10:05.679404 2026-04-14 16:10:05.679404 \N \N agent-new \N \N +347 Verein iranischer Flüchtlinge in Berlin e.V. multiple-social-support https://iprberlin.com agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:05.706498 2026-04-14 16:10:05.706498 \N \N agent-new \N \N +348 Bona Peiser Sozio-kulturelle Projekträume - Wassertor e.V. multiple-social-support https://bona-peiser.de agent-unknown agent-not-needed {consultation,consultation,tutoring,tandem,welfare} 2026-04-14 16:10:05.728542 2026-04-14 16:10:05.728542 \N \N agent-new \N \N +349 Arrivo Berlin Hospitality multiple-social-support bildungsmarkt.de agent-unknown agent-not-needed {tutoring,refugee-accommodation} 2026-04-14 16:10:05.756134 2026-04-14 16:10:05.756134 \N \N agent-new \N \N +350 S27 – Kunst und Bildung multiple-social-support s27.de agent-unknown agent-not-needed {tutoring,refugee-accommodation,welfare,welfare,youth} 2026-04-14 16:10:05.7824 2026-04-14 16:10:05.7824 \N \N agent-new \N \N +351 woloho multiple-social-support https://woloho.com/unser-team/ agent-unknown agent-not-needed {} 2026-04-14 16:10:05.803306 2026-04-14 16:10:05.803306 \N \N agent-new \N \N +352 Vereinigung der Vietnamesen multiple-social-support https://vietnam-bb.de/de/home/ agent-unknown agent-not-needed {tandem,voluntary-support,voluntary-support} 2026-04-14 16:10:05.815294 2026-04-14 16:10:05.815294 \N \N agent-new \N \N +353 Somalischen Kultur und Hilfe Verein multiple-social-support https://somalis-berlin.de/ agent-unknown agent-not-needed {welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:05.850966 2026-04-14 16:10:05.850966 \N \N agent-new \N \N +354 Ankunftszentrum Tegel NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.873471 2026-04-14 16:10:05.873471 \N \N agent-new \N \N +355 Haus Kopernikus AE \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.897816 2026-04-14 16:10:05.897816 \N \N agent-new \N \N +356 Storkower Straße 160 (Hostel Generator) AE \N agent-high agent-not-needed {} 2026-04-14 16:10:05.981539 2026-04-14 16:10:05.981539 \N \N agent-new \N \N +357 Landsberger Allee 201-205 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.079559 2026-04-14 16:10:06.079559 \N \N agent-new \N \N +358 Bohnsdorfer Weg GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.179597 2026-04-14 16:10:06.179597 \N \N agent-new \N \N +359 Refugium Gotenburger Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.214602 2026-04-14 16:10:06.214602 \N \N agent-new \N \N +360 Wotanstraße AE \N agent-low agent-not-needed {} 2026-04-14 16:10:06.237378 2026-04-14 16:10:06.237378 \N \N agent-new \N \N +361 Albrechtstraße NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.30212 2026-04-14 16:10:06.30212 \N \N agent-new \N \N +362 Am Rudolfplatz (Frauenunterkunft) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.312986 2026-04-14 16:10:06.312986 \N \N agent-new \N \N +363 Askanierring (GU3) \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.333086 2026-04-14 16:10:06.333086 \N \N agent-new \N \N +364 Bülowstraße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.35539 2026-04-14 16:10:06.35539 \N \N agent-new \N \N +365 Eislebener Straße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.388175 2026-04-14 16:10:06.388175 \N \N agent-new \N \N +366 Glockenturmstraße (Hotel Alecsa) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.422586 2026-04-14 16:10:06.422586 \N \N agent-new \N \N +367 Hohenzollerndamm Albegro City (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.491199 2026-04-14 16:10:06.491199 \N \N agent-new \N \N +368 Kalischer Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.543679 2026-04-14 16:10:06.543679 \N \N agent-new \N \N +369 Knesebeckstraße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.576514 2026-04-14 16:10:06.576514 \N \N agent-new \N \N +370 Luckenwalder Straße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.617703 2026-04-14 16:10:06.617703 \N \N agent-new \N \N +371 Mariendorfer Weg (Sunpark) \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.660813 2026-04-14 16:10:06.660813 \N \N agent-new \N \N +373 Rudolstädter Straße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.744528 2026-04-14 16:10:06.744528 \N \N agent-new \N \N +376 Skutaristraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.8073 2026-04-14 16:10:06.8073 \N \N agent-new \N \N +377 Treskowstraße 14 AE AE \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.831289 2026-04-14 16:10:06.831289 \N \N agent-new \N \N +378 Hotel Plaza Inn (Sömmeringstraße) NU \N agent-high agent-not-needed {} 2026-04-14 16:10:06.908574 2026-04-14 16:10:06.908574 \N \N agent-new \N \N +379 Storkower Str. 101A \N \N agent-low agent-not-needed {} 2026-04-14 16:10:07.299496 2026-04-14 16:10:07.299496 \N \N agent-new \N \N +380 Rudowerstr. GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:07.372032 2026-04-14 16:10:07.372032 \N \N agent-new \N \N +381 Buckower Felder GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:07.39921 2026-04-14 16:10:07.39921 \N \N agent-new \N \N +382 DDA Destiny Diversity Academy GmbH multiple-social-support www.ddacademy.de agent-unknown agent-not-needed {consultation,welfare,tutoring,childcare,childcare,tandem,youth} 2026-04-14 16:10:07.434975 2026-04-14 16:10:07.434975 \N \N agent-new \N \N +383 Mistechko Berlin multiple-social-support kulturschafft.de agent-unknown agent-not-needed {tutoring,welfare,childcare,tandem,voluntary-support} 2026-04-14 16:10:07.467545 2026-04-14 16:10:07.467545 \N \N agent-new \N \N +384 STK 118 GmbH multiple-social-support www.stk118.de agent-unknown agent-not-needed {tutoring,voluntary-support,tandem,voluntary-support} 2026-04-14 16:10:07.501407 2026-04-14 16:10:07.501407 \N \N agent-new \N \N +385 KulturLeben Berlin - Schlüssel zur Kultur e.V. multiple-social-support https://kulturleben-berlin.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:07.534894 2026-04-14 16:10:07.534894 \N \N agent-new \N \N +386 Bundesverband russischsprachiger Eltern e.V. (BVRE) multiple-social-support www.bvre.de agent-unknown agent-not-needed {tutoring,tutoring,welfare,tandem,childcare,tandem,voluntary-support,youth} 2026-04-14 16:10:07.563538 2026-04-14 16:10:07.563538 \N \N agent-new \N \N +387 Stadteilmütter - Bethania Diakonie multiple-social-support https://bethania.de/stadtteilmuetter-in-mitte agent-unknown agent-not-needed {consultation,tandem,welfare} 2026-04-14 16:10:07.5968 2026-04-14 16:10:07.5968 \N \N agent-new \N \N +388 Kieztandem multiple-social-support \N agent-unknown agent-not-needed {welfare,childcare,voluntary-support,voluntary-support,sport,voluntary-support,youth} 2026-04-14 16:10:07.631312 2026-04-14 16:10:07.631312 \N \N agent-new \N \N +389 BUNT Stiftung multiple-social-support https://www.bunt-berlin.de/ agent-unknown agent-not-needed {tutoring,tutoring} 2026-04-14 16:10:07.672064 2026-04-14 16:10:07.672064 \N \N agent-new \N \N +390 MachBar - Schildkröte GmbH multiple-social-support https://www.schildkroete-berlin.de/angebote/machbar/ agent-unknown agent-not-needed {consultation,tandem} 2026-04-14 16:10:07.704096 2026-04-14 16:10:07.704096 \N \N agent-new \N \N +391 TIO e.V. — Treff-und Informationsort für Migrantinnen multiple-social-support www.tio-berlin.de agent-unknown agent-not-needed {consultation,tutoring,tandem,voluntary-support,tutoring,welfare,youth} 2026-04-14 16:10:07.734527 2026-04-14 16:10:07.734527 \N \N agent-new \N \N +392 agens Arbeitsmarktservice gGmbH multiple-social-support www.agens-berlin.de agent-unknown agent-not-needed {consultation,tutoring,job-coaching,voluntary-support} 2026-04-14 16:10:07.76243 2026-04-14 16:10:07.76243 \N \N agent-new \N \N +393 Sternenfischer Freiwilligenzentrum Treptow-Köpenick multiple-social-support www.sternenfischer.org agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:07.792543 2026-04-14 16:10:07.792543 \N \N agent-new \N \N +394 Internationaler Bund (IB) Berlin-Brandenburg gGmbH multiple-social-support www.ib-berlin.de agent-unknown agent-not-needed {tutoring,tutoring,welfare,childcare,childcare,voluntary-support,tandem,voluntary-support,youth} 2026-04-14 16:10:07.825404 2026-04-14 16:10:07.825404 \N \N agent-new \N \N +395 Gemeinsam für eine bessere Zukunft e.V. multiple-social-support www.gbz-germany.org agent-unknown agent-not-needed {tutoring,voluntary-support,sport,welfare} 2026-04-14 16:10:07.854893 2026-04-14 16:10:07.854893 \N \N agent-new \N \N +396 Etehad e.V. multiple-social-support https://etehadberlin.de agent-unknown agent-not-needed {tutoring,welfare,tutoring,childcare,tandem,voluntary-support,voluntary-support,sport} 2026-04-14 16:10:07.885445 2026-04-14 16:10:07.885445 \N \N agent-new \N \N +397 IPSO multiple-social-support https://ipsocontext.org/ agent-unknown agent-not-needed {consultation,tutoring} 2026-04-14 16:10:07.913974 2026-04-14 16:10:07.913974 \N \N agent-new \N \N +398 Vorspiel — Queerer Sportverein Berlin e.V. multiple-social-support https://www.vorspiel-berlin.de/# agent-unknown agent-not-needed {consultation,sport} 2026-04-14 16:10:07.941978 2026-04-14 16:10:07.941978 \N \N agent-new \N \N +399 ARTivisten e.V. multiple-social-support www.artivisten.org agent-unknown agent-not-needed {tutoring,welfare,tandem} 2026-04-14 16:10:07.972943 2026-04-14 16:10:07.972943 \N \N agent-new \N \N +400 BBK-Linde (Bildung-Beratung-Kultur) multiple-social-support www.salamkulturclub.de//aktuelles/ agent-unknown agent-not-needed {tutoring,refugee-accommodation,consultation,tandem,voluntary-support,welfare,voluntary-support} 2026-04-14 16:10:08.005711 2026-04-14 16:10:08.005711 \N \N agent-new \N \N +401 BENN Mierendorffinsel multiple-social-support www.benn-mierendorffinsel.de agent-unknown agent-not-needed {tandem,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:08.041792 2026-04-14 16:10:08.041792 \N \N agent-new \N \N +402 Offene Tür Für Menschen Aller Welt e.V. multiple-social-support www.offenetuer.net agent-unknown agent-not-needed {welfare,tandem} 2026-04-14 16:10:08.15337 2026-04-14 16:10:08.15337 \N \N agent-new \N \N +403 Wir Gestalten e.V. multiple-social-support https://www.wirgestaltenev.de/ agent-unknown agent-not-needed {consultation,tandem,childcare,tutoring,youth} 2026-04-14 16:10:08.177965 2026-04-14 16:10:08.177965 \N \N agent-new \N \N +404 AWO Kreisverband Berlin Spree-Wuhle e.V. multiple-social-support www.awo-spree-wuhle.de agent-unknown agent-not-needed {tutoring,childcare} 2026-04-14 16:10:08.209872 2026-04-14 16:10:08.209872 \N \N agent-new \N \N +405 Psychosozialen Verbundes (PSV) Treptow e.V. multiple-social-support www.psv-treptow.de agent-unknown agent-not-needed {welfare,welfare,tutoring,voluntary-support} 2026-04-14 16:10:08.244981 2026-04-14 16:10:08.244981 \N \N agent-new \N \N +406 Berliner Beratungsnetz für Zugewanderte (BfZ) \N www.beratungsnetz-migration.de agent-unknown agent-not-needed {consultation,tutoring,tandem,voluntary-support,voluntary-support} 2026-04-14 16:10:08.270492 2026-04-14 16:10:08.270492 \N \N agent-new \N \N +407 Zukunft Memorial multiple-social-support https://zukunft-memorial.org/ agent-unknown agent-not-needed {welfare,tutoring,tandem,youth} 2026-04-14 16:10:08.322187 2026-04-14 16:10:08.322187 \N \N agent-new \N \N +408 Clavis multiple-social-support www.clavis-schule.de agent-unknown agent-not-needed {} 2026-04-14 16:10:08.382098 2026-04-14 16:10:08.382098 \N \N agent-new \N \N +409 Warschauer Platz AE \N agent-low agent-not-needed {} 2026-04-14 16:10:08.412235 2026-04-14 16:10:08.412235 \N \N agent-new \N \N +410 Riwwel gUG multiple-social-support riwwel.eu agent-unknown agent-not-needed {welfare,tutoring,voluntary-support,tandem} 2026-04-14 16:10:08.440928 2026-04-14 16:10:08.440928 \N \N agent-new \N \N +411 Get Smart Akademie  multiple-social-support www.getsmart-gmbh.de agent-unknown agent-not-needed {tutoring,job-coaching} 2026-04-14 16:10:08.465895 2026-04-14 16:10:08.465895 \N \N agent-new \N \N +412 Perspektive Ausbildung multiple-social-support https://tueroeffner-ev.de/aktuelles/perspektive-ausbildung/ agent-unknown agent-not-needed {tutoring,job-coaching} 2026-04-14 16:10:08.498207 2026-04-14 16:10:08.498207 \N \N agent-new \N \N +413 Inpaed multiple-social-support www.inpaed-berlin.de agent-unknown agent-not-needed {tutoring,job-coaching,voluntary-support,welfare,youth} 2026-04-14 16:10:08.526897 2026-04-14 16:10:08.526897 \N \N agent-new \N \N +414 Sonnenallee \N \N agent-high agent-not-needed {} 2026-04-14 16:10:08.557184 2026-04-14 16:10:08.557184 \N \N agent-new \N \N +415 Wohngruppe Clayallee NU \N agent-high agent-not-needed {} 2026-04-14 16:10:08.618471 2026-04-14 16:10:08.618471 \N \N agent-new \N \N +416 Friederikestr. NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.646148 2026-04-14 16:10:08.646148 \N \N agent-new \N \N +417 Heerstraße AE \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.71188 2026-04-14 16:10:08.71188 \N \N agent-new \N \N +418 Rüsternallee \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.777286 2026-04-14 16:10:08.777286 \N \N agent-new \N \N +419 Potsdamerstraße 184 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.807953 2026-04-14 16:10:08.807953 \N \N agent-new \N \N +420 WohnContainerDorf Grünauer Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.8327 2026-04-14 16:10:08.8327 \N \N agent-new \N \N +421 Diesterwegstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.868742 2026-04-14 16:10:08.868742 \N \N agent-new \N \N +422 Kirchstraße GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.890437 2026-04-14 16:10:08.890437 \N \N agent-new \N \N +423 unknown multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.924093 2026-04-14 16:10:08.924093 \N \N agent-new \N \N +425 Kotti mobil multiple-social-support https://kotti-berlin.de/kotti-mobil/ agent-unknown agent-not-needed {tandem,consultation,job-coaching,welfare} 2026-04-14 16:10:08.946885 2026-04-14 16:10:08.946885 \N \N agent-new \N \N +426 KulturNest e.V. aus Berlin multiple-social-support www.kulturnest.org agent-unknown agent-not-needed {tutoring,tandem} 2026-04-14 16:10:08.980781 2026-04-14 16:10:08.980781 \N \N agent-new \N \N +427 Prolisok multiple-social-support https://cccc.charite.de/metas/person/person/address_detail/prolisok_selbsthilfegruppe_gesundheit_und_migration agent-unknown agent-not-needed {welfare,voluntary-support} 2026-04-14 16:10:09.009764 2026-04-14 16:10:09.009764 \N \N agent-new \N \N +428 Handbook Germany multiple-social-support https://handbookgermany.de/ agent-unknown agent-not-needed {tandem,voluntary-support,voluntary-support} 2026-04-14 16:10:09.047694 2026-04-14 16:10:09.047694 \N \N agent-new \N \N +429 Soziale Dienstleistungen GmbH multiple-social-support \N agent-unknown agent-not-needed {voluntary-support,voluntary-support} 2026-04-14 16:10:09.075124 2026-04-14 16:10:09.075124 \N \N agent-new \N \N +430 flotte multiple-social-support www.flotte-berlin.de agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:09.103466 2026-04-14 16:10:09.103466 \N \N agent-new \N \N +431 House of Resources Berlin multiple-social-support WWW.HOUSE-OF-RESOURCES.BERLIN agent-unknown agent-not-needed {tandem} 2026-04-14 16:10:09.137098 2026-04-14 16:10:09.137098 \N \N agent-new \N \N +432 Falkenberger Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:09.168348 2026-04-14 16:10:09.168348 \N \N agent-new \N \N +433 fair mieten fair wohnen multiple-social-support https://fairmieten-fairwohnen.de/kontakt/ agent-unknown agent-not-needed {tandem,voluntary-support,voluntary-support,tutoring} 2026-04-14 16:10:09.197776 2026-04-14 16:10:09.197776 \N \N agent-new \N \N +434 GIZ multiple-social-support https://giz.berlin/projects/wfr.htm agent-unknown agent-not-needed {consultation,job-coaching} 2026-04-14 16:10:09.231796 2026-04-14 16:10:09.231796 \N \N agent-new \N \N +435 Music for Identity multiple-social-support https://spore-initiative.org/en/ agent-unknown agent-not-needed {tutoring,voluntary-support,tandem} 2026-04-14 16:10:09.262156 2026-04-14 16:10:09.262156 \N \N agent-new \N \N +436 ADNB multiple-social-support https://www.adnb.de/de agent-unknown agent-not-needed {consultation,voluntary-support,voluntary-support} 2026-04-14 16:10:09.297582 2026-04-14 16:10:09.297582 \N \N agent-new \N \N +437 I-report multiple-social-support www.claim-allianz.de agent-unknown agent-not-needed {voluntary-support,voluntary-support} 2026-04-14 16:10:09.331455 2026-04-14 16:10:09.331455 \N \N agent-new \N \N +438 ADAS multiple-social-support https://adas-berlin.de/vorfall-melden/ agent-unknown agent-not-needed {voluntary-support,voluntary-support} 2026-04-14 16:10:09.362066 2026-04-14 16:10:09.362066 \N \N agent-new \N \N +439 Familien Büro multiple-social-support www.familienbuero-lichtenberg.de agent-unknown agent-not-needed {consultation,tutoring,childcare,childcare} 2026-04-14 16:10:09.391992 2026-04-14 16:10:09.391992 \N \N agent-new \N \N +440 MaMis en Movimiento e.V. multiple-social-support www.mamisenmovimiento.de agent-unknown agent-not-needed {tutoring,voluntary-support,welfare} 2026-04-14 16:10:09.425231 2026-04-14 16:10:09.425231 \N \N agent-new \N \N +441 Heerstraße 343 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:09.45063 2026-04-14 16:10:09.45063 \N \N agent-new \N \N +442 Volkssolidarität Berlin multiple-social-support https://volkssolidaritaet-berlin.de/uber-uns/fakten-werte-positionen/ agent-unknown agent-not-needed {welfare,welfare,tandem,voluntary-support} 2026-04-14 16:10:09.470321 2026-04-14 16:10:09.470321 \N \N agent-new \N \N +443 Kirchengemeinde Staaken multiple-social-support https://www.staaken-evangelisch.de/mitmachen agent-unknown agent-not-needed {welfare,refugee-accommodation,welfare,tandem,voluntary-support} 2026-04-14 16:10:09.503057 2026-04-14 16:10:09.503057 \N \N agent-new \N \N +444 Vista Berlin multiple-social-support https://vistaberlin.de/ agent-unknown agent-not-needed {welfare,consultation} 2026-04-14 16:10:09.540714 2026-04-14 16:10:09.540714 \N \N agent-new \N \N +445 Kungerkiezinitiative e.V. multiple-social-support https://kungerkiez.de/ agent-unknown agent-not-needed {tutoring,welfare,tandem,tandem,youth} 2026-04-14 16:10:09.569511 2026-04-14 16:10:09.569511 \N \N agent-new \N \N +446 KIEZKLUB Allende e.V. multiple-social-support https://www.kiezklub-allende-ev.de/ agent-unknown agent-not-needed {welfare,tandem,welfare} 2026-04-14 16:10:09.598471 2026-04-14 16:10:09.598471 \N \N agent-new \N \N +447 Bezirksamt Mitte (Ehrenamtsbüro) multiple-social-support https://www.berlin.de/ba-mitte/politik-und-verwaltung/aemter/amt-fuer-soziales/ehrenamtsbuero/ agent-unknown agent-not-needed {welfare,welfare,tandem} 2026-04-14 16:10:09.628702 2026-04-14 16:10:09.628702 \N \N agent-new \N \N +448 Mehr Generation House multiple-social-support https://www.mehrgenerationenhaeuser.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:09.662354 2026-04-14 16:10:09.662354 \N \N agent-new \N \N +449 Community Empowerment multiple-social-support community-empowerment.de agent-unknown agent-not-needed {welfare,consultation,voluntary-support,consultation} 2026-04-14 16:10:09.692588 2026-04-14 16:10:09.692588 \N \N agent-new \N \N +450 VNN Bundesverband Nachhilfe- und Nachmittagsschulen e. V. multiple-social-support https://nachhilfeschulen.org/ agent-unknown agent-not-needed {tutoring,childcare,tandem} 2026-04-14 16:10:09.71462 2026-04-14 16:10:09.71462 \N \N agent-new \N \N +451 Haus der Statistik multiple-social-support https://hausderstatistik.org/ agent-unknown agent-not-needed {tutoring,welfare,tutoring} 2026-04-14 16:10:09.742309 2026-04-14 16:10:09.742309 \N \N agent-new \N \N +452 moment mal e.V. multiple-social-support https://www.moment-mal.org/ agent-unknown agent-not-needed {childcare,tutoring,sport} 2026-04-14 16:10:09.765488 2026-04-14 16:10:09.765488 \N \N agent-new \N \N +453 Kultur Schaft multiple-social-support https://kulturschafft.de agent-unknown agent-not-needed {welfare,welfare} 2026-04-14 16:10:09.793082 2026-04-14 16:10:09.793082 \N \N agent-new \N \N +454 IQ - Netzwerk multiple-social-support https://netzwerk-iq.de/ agent-unknown agent-not-needed {job-coaching,tandem} 2026-04-14 16:10:09.822613 2026-04-14 16:10:09.822613 \N \N agent-new \N \N +455 PANDA PLATFORMA multiple-social-support https://panda-platforma.berlin/ agent-unknown agent-not-needed {tutoring,welfare} 2026-04-14 16:10:09.841119 2026-04-14 16:10:09.841119 \N \N agent-new \N \N +456 GESOBAU multiple-social-support https://www.gesobau.de/ueber-uns/ agent-unknown agent-not-needed {tandem,welfare} 2026-04-14 16:10:09.870375 2026-04-14 16:10:09.870375 \N \N agent-new \N \N +457 KWB multiple-social-support https://www.kompetenz-wasser.de/en agent-unknown agent-not-needed {tandem} 2026-04-14 16:10:09.898369 2026-04-14 16:10:09.898369 \N \N agent-new \N \N +458 KJHV multiple-social-support https://kjhv-bb.de/ agent-unknown agent-not-needed {consultation,tandem,youth} 2026-04-14 16:10:09.927101 2026-04-14 16:10:09.927101 \N \N agent-new \N \N +459 BEMA - Berlin multiple-social-support https://bema.berlin/ agent-unknown agent-not-needed {tandem,voluntary-support,consultation} 2026-04-14 16:10:09.955448 2026-04-14 16:10:09.955448 \N \N agent-new \N \N +460 Ringsum begleiten multiple-social-support https://thessa-ev.de/ringsum-begleiten agent-unknown agent-not-needed {consultation,childcare} 2026-04-14 16:10:09.973162 2026-04-14 16:10:09.973162 \N \N agent-new \N \N +461 check up multiple-social-support http://www.checkup-info.de/ agent-unknown agent-not-needed {tutoring,youth} 2026-04-14 16:10:10.003546 2026-04-14 16:10:10.003546 \N \N agent-new \N \N +462 Hürdenspringer multiple-social-support https://www.huerdenspringer.unionhilfswerk.de/ agent-unknown agent-not-needed {tutoring,voluntary-support,youth} 2026-04-14 16:10:10.049347 2026-04-14 16:10:10.049347 \N \N agent-new \N \N +463 Stiftung Stadtkultur multiple-social-support https://www.stiftung-stadtkultur.de/ agent-unknown agent-not-needed {welfare,tutoring,tandem} 2026-04-14 16:10:10.086921 2026-04-14 16:10:10.086921 \N \N agent-new \N \N +464 STK118 multiple-social-support https://www.stk118.de/ agent-unknown agent-not-needed {welfare,welfare} 2026-04-14 16:10:10.104661 2026-04-14 16:10:10.104661 \N \N agent-new \N \N +465 Prisod multiple-social-support https://www.prisod.de/prisod/ agent-unknown agent-not-needed {tandem,voluntary-support,welfare} 2026-04-14 16:10:10.128241 2026-04-14 16:10:10.128241 \N \N agent-new \N \N +466 Unionhilfswerk multiple-social-support https://www.unionhilfswerk.de/ agent-unknown agent-not-needed {welfare,voluntary-support} 2026-04-14 16:10:10.156615 2026-04-14 16:10:10.156615 \N \N agent-new \N \N +467 Amnesty International multiple-social-support https://www.amnesty.org/en/ agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:10.185611 2026-04-14 16:10:10.185611 \N \N agent-new \N \N +468 Deutsches Kinderhilfswerk multiple-social-support https://www.dkhw.de/ agent-unknown agent-not-needed {childcare,welfare} 2026-04-14 16:10:10.203519 2026-04-14 16:10:10.203519 \N \N agent-new \N \N +469 Children of Gutenberg multiple-social-support https://childrenofgutenberg.de/ agent-unknown agent-not-needed {tutoring} 2026-04-14 16:10:10.235277 2026-04-14 16:10:10.235277 \N \N agent-new \N \N +470 Beratung zu Bildung & Beruf multiple-social-support www.kos-qualitaet.de agent-unknown agent-not-needed {tutoring,job-coaching,voluntary-support} 2026-04-14 16:10:10.264955 2026-04-14 16:10:10.264955 \N \N agent-new \N \N +471 P12 multiple-social-support https://outreach.berlin/p12/ agent-unknown agent-not-needed {tandem,consultation,tutoring,youth} 2026-04-14 16:10:10.296783 2026-04-14 16:10:10.296783 \N \N agent-new \N \N +472 Interaxion multiple-social-support https://www.interaxion-tk.de/ agent-unknown agent-not-needed {voluntary-support,voluntary-support,welfare,refugee-accommodation} 2026-04-14 16:10:10.314927 2026-04-14 16:10:10.314927 \N \N agent-new \N \N +473 Sylvestar e.V. multiple-social-support https://www.sylvester-ev.de/ agent-unknown agent-not-needed {childcare,childcare} 2026-04-14 16:10:10.346882 2026-04-14 16:10:10.346882 \N \N agent-new \N \N +474 Türöffner e.V. multiple-social-support https://tueroeffner-ev.de/ agent-unknown agent-not-needed {job-coaching,voluntary-support} 2026-04-14 16:10:10.375767 2026-04-14 16:10:10.375767 \N \N agent-new \N \N +475 Treptow e.V. multiple-social-support https://www.psv-treptow.de/startseite-psv-treptow.html agent-unknown agent-not-needed {tutoring,welfare} 2026-04-14 16:10:10.403495 2026-04-14 16:10:10.403495 \N \N agent-new \N \N +476 HEILHAUS-STIFTUNG URSA PAUL multiple-social-support https://www.heilhaus.org/ agent-unknown agent-not-needed {welfare,childcare,welfare} 2026-04-14 16:10:10.4212 2026-04-14 16:10:10.4212 \N \N agent-new \N \N +478 Heerstr. 110 (Hotel Carat) AE \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.443736 2026-04-14 16:10:10.443736 \N \N agent-new \N \N +479 Soziales Berlin \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.461655 2026-04-14 16:10:10.461655 \N \N agent-new \N \N +480 Stützrad multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.49352 2026-04-14 16:10:10.49352 \N \N agent-new \N \N +481 Stadtteilmütter Treptow-Köpenick multiple-social-support \N agent-high agent-not-needed {} 2026-04-14 16:10:10.527479 2026-04-14 16:10:10.527479 \N \N agent-new \N \N +482 BZSL multiple-social-support \N agent-high agent-not-needed {} 2026-04-14 16:10:10.586499 2026-04-14 16:10:10.586499 \N \N agent-new \N \N +483 Primo-Levi-Gymnasium \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.612338 2026-04-14 16:10:10.612338 \N \N agent-new \N \N +484 reinhold-burger schule \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.638257 2026-04-14 16:10:10.638257 \N \N agent-new \N \N +485 sibuz \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.665037 2026-04-14 16:10:10.665037 \N \N agent-new \N \N +486 RAC or Consultation center multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.674392 2026-04-14 16:10:10.674392 \N \N agent-new \N \N +487 Kronprinzendamm NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.795453 2026-04-14 16:10:10.795453 \N \N agent-new \N \N +1 Fritz-Wildung-Straße 21 \N \N agent-unknown agent-not-needed \N 2026-04-14 16:09:52.577512 2026-04-20 13:37:23.778294 \N 9 agent-new \N \N +488 Orphanage For Opportunities \N \N agent-unknown agent-not-needed \N 2026-04-21 12:59:39.104073 2026-04-21 12:59:39.104073 \N \N agent-new \N \N +8 Buschkrugallee (Hotel Centro) NU \N agent-high agent-not-needed {} 2026-04-14 16:09:53.49409 2026-04-23 09:47:15.781953 \N \N agent-new \N \N +\. + + +-- +-- Data for Name: agent_language; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.agent_language (id, agent_id, language_id) FROM stdin; +\. + + +-- +-- Data for Name: agent_person; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.agent_person (id, role, agent_id, person_id) FROM stdin; +1 manager 2 4 +2 volunteer-coordinator 2 5 +3 manager 3 6 +4 volunteer-coordinator 3 7 +5 manager 4 8 +6 volunteer-coordinator 4 9 +7 manager 5 10 +8 volunteer-coordinator 5 11 +9 social-worker 5 12 +10 manager 6 13 +11 volunteer-coordinator 6 14 +12 social-worker 6 15 +13 manager 7 16 +14 volunteer-coordinator 7 17 +15 manager 8 18 +16 volunteer-coordinator 8 19 +17 manager 9 1 +18 social-worker 9 1 +19 manager 10 20 +20 volunteer-coordinator 10 21 +21 manager 11 22 +22 volunteer-coordinator 11 23 +23 manager 12 24 +24 social-worker 12 25 +25 manager 13 26 +26 volunteer-coordinator 13 27 +27 social-worker 13 28 +28 manager 14 29 +29 volunteer-coordinator 14 30 +30 other 15 31 +31 manager 16 32 +32 volunteer-coordinator 16 33 +33 manager 17 34 +34 volunteer-coordinator 17 35 +35 manager 18 36 +36 volunteer-coordinator 18 37 +37 social-worker 18 38 +38 manager 19 39 +39 volunteer-coordinator 19 40 +40 manager 20 41 +41 volunteer-coordinator 20 42 +42 social-worker 20 43 +43 manager 21 44 +44 volunteer-coordinator 21 45 +45 manager 22 46 +46 manager 23 47 +47 manager 24 48 +48 volunteer-coordinator 24 49 +49 manager 25 50 +50 manager 26 51 +51 volunteer-coordinator 26 52 +52 social-worker 26 53 +53 manager 27 54 +54 volunteer-coordinator 27 55 +55 manager 28 56 +56 volunteer-coordinator 28 57 +57 manager 29 58 +58 volunteer-coordinator 29 59 +59 manager 30 60 +60 volunteer-coordinator 30 61 +61 manager 31 62 +62 other 31 63 +63 manager 32 64 +64 manager 33 65 +65 volunteer-coordinator 33 66 +66 manager 34 67 +67 volunteer-coordinator 34 68 +68 manager 35 69 +69 manager 36 70 +70 volunteer-coordinator 36 71 +71 social-worker 36 72 +72 manager 37 73 +73 volunteer-coordinator 37 74 +74 manager 38 75 +75 volunteer-coordinator 38 76 +76 manager 39 77 +77 volunteer-coordinator 39 78 +78 manager 40 79 +79 manager 41 80 +80 volunteer-coordinator 41 81 +81 social-worker 41 82 +82 manager 42 83 +83 manager 43 84 +84 volunteer-coordinator 44 85 +85 manager 45 86 +86 volunteer-coordinator 45 87 +87 manager 46 88 +88 volunteer-coordinator 46 89 +89 manager 47 90 +90 volunteer-coordinator 47 91 +91 manager 48 92 +92 manager 49 93 +93 volunteer-coordinator 49 94 +94 manager 50 95 +95 volunteer-coordinator 50 96 +96 manager 51 97 +97 volunteer-coordinator 51 98 +98 manager 52 99 +99 volunteer-coordinator 52 100 +100 manager 53 101 +101 volunteer-coordinator 53 102 +102 social-worker 53 103 +103 manager 54 104 +104 manager 55 105 +105 volunteer-coordinator 55 106 +106 social-worker 55 107 +107 manager 56 108 +108 volunteer-coordinator 56 109 +109 manager 57 110 +110 volunteer-coordinator 57 111 +111 social-worker 57 112 +112 manager 58 113 +113 volunteer-coordinator 58 114 +114 other 59 115 +115 other 59 116 +116 manager 60 117 +117 manager 61 118 +118 manager 62 119 +119 volunteer-coordinator 62 120 +120 manager 63 121 +121 volunteer-coordinator 63 122 +122 manager 64 123 +123 manager 65 124 +124 volunteer-coordinator 65 125 +125 manager 67 126 +126 volunteer-coordinator 67 127 +127 manager 68 128 +128 manager 69 129 +129 other 69 130 +130 manager 71 131 +131 volunteer-coordinator 71 132 +132 social-worker 71 133 +133 manager 72 134 +134 volunteer-coordinator 72 135 +135 manager 73 136 +136 volunteer-coordinator 73 137 +137 social-worker 73 138 +138 manager 74 139 +139 manager 75 140 +140 volunteer-coordinator 75 141 +141 other 76 142 +142 manager 77 143 +143 manager 78 144 +144 volunteer-coordinator 78 145 +145 manager 79 146 +146 volunteer-coordinator 79 147 +147 manager 80 148 +148 volunteer-coordinator 80 149 +149 manager 81 150 +150 volunteer-coordinator 81 151 +151 manager 82 152 +152 volunteer-coordinator 82 153 +153 manager 83 154 +154 volunteer-coordinator 83 155 +155 manager 84 156 +156 volunteer-coordinator 84 157 +157 social-worker 84 158 +158 manager 85 159 +159 volunteer-coordinator 85 160 +160 manager 86 161 +161 manager 87 162 +162 volunteer-coordinator 87 163 +163 manager 88 164 +164 volunteer-coordinator 88 165 +165 social-worker 88 166 +166 manager 89 167 +167 manager 91 168 +168 volunteer-coordinator 91 169 +169 manager 92 170 +170 volunteer-coordinator 92 171 +171 manager 93 172 +172 volunteer-coordinator 93 173 +173 manager 94 174 +174 volunteer-coordinator 94 169 +175 social-worker 94 175 +176 manager 95 176 +177 volunteer-coordinator 95 177 +178 manager 96 178 +179 manager 97 179 +180 volunteer-coordinator 97 180 +181 other 98 1 +182 other 98 181 +183 other 99 1 +184 other 99 182 +185 other 100 183 +186 other 101 184 +187 other 102 185 +188 other 103 1 +189 other 103 186 +190 other 104 187 +191 other 105 1 +192 other 105 188 +193 other 106 1 +194 other 106 189 +195 other 107 1 +196 other 107 190 +197 other 108 1 +198 other 108 191 +199 other 109 1 +200 other 109 192 +201 other 110 193 +202 other 112 194 +203 other 113 1 +204 other 113 195 +205 other 114 1 +206 other 114 196 +207 other 115 1 +208 other 115 197 +209 other 116 198 +210 other 117 1 +211 other 117 199 +212 other 118 1 +213 other 118 200 +214 other 120 1 +215 other 120 201 +216 other 121 1 +217 other 121 202 +218 other 122 1 +219 other 122 203 +220 other 123 1 +221 other 123 204 +222 other 124 1 +223 other 124 205 +224 other 125 1 +225 other 125 206 +226 other 126 1 +227 other 126 207 +228 other 127 1 +229 other 127 208 +230 other 128 1 +231 other 128 209 +232 other 128 210 +233 other 129 1 +234 other 129 211 +235 other 130 212 +236 other 131 1 +237 other 131 213 +238 other 132 1 +239 other 132 214 +240 other 133 1 +241 other 133 215 +242 other 134 216 +243 other 135 1 +244 other 135 217 +245 other 136 1 +246 other 136 218 +247 other 137 1 +248 other 137 219 +249 other 138 1 +250 other 138 220 +251 other 139 1 +252 other 139 221 +253 other 140 1 +254 other 140 222 +255 other 141 1 +256 other 141 223 +257 other 142 1 +258 other 142 224 +259 other 143 225 +260 other 144 1 +261 other 144 226 +262 other 145 1 +263 other 145 227 +264 other 146 1 +265 other 146 228 +266 other 147 1 +267 other 147 229 +268 other 148 1 +269 other 148 230 +270 other 149 1 +271 other 149 231 +272 other 150 1 +273 other 150 232 +274 other 151 233 +275 other 152 1 +276 other 152 234 +277 other 153 1 +278 other 153 235 +279 other 154 236 +280 other 155 1 +281 other 155 237 +282 other 156 1 +283 other 156 238 +284 other 157 239 +285 other 158 240 +286 other 159 1 +287 other 159 241 +288 other 160 242 +289 other 161 1 +290 other 161 243 +291 other 162 1 +292 other 162 244 +293 other 163 1 +294 other 163 245 +295 other 164 246 +296 other 165 1 +297 other 165 247 +298 other 166 1 +299 other 166 248 +300 other 167 249 +301 other 168 1 +302 other 168 250 +303 other 169 1 +304 other 169 251 +305 other 170 252 +306 other 171 1 +307 other 171 253 +308 other 172 1 +309 other 172 254 +310 other 173 255 +311 other 174 256 +312 other 175 257 +313 other 176 258 +314 other 177 1 +315 other 177 259 +316 other 178 260 +317 other 179 1 +318 other 179 261 +319 other 180 262 +320 other 181 263 +321 other 182 1 +322 other 182 264 +323 other 183 265 +324 other 184 1 +325 other 184 266 +326 other 185 1 +327 other 185 267 +328 other 186 1 +329 other 186 268 +330 other 187 1 +331 other 187 269 +332 other 188 1 +333 other 188 270 +334 other 189 1 +335 other 189 271 +336 other 190 1 +337 other 190 272 +338 other 191 1 +339 other 191 273 +340 other 192 1 +341 other 192 274 +342 other 193 1 +343 other 193 275 +344 other 194 276 +345 other 195 1 +346 other 195 277 +347 other 196 1 +348 other 196 278 +349 other 197 1 +350 other 197 279 +351 other 198 1 +352 other 198 280 +353 other 199 1 +354 other 199 281 +355 other 200 1 +356 other 200 282 +357 other 201 1 +358 other 201 283 +359 other 202 1 +360 other 202 284 +361 other 203 1 +362 other 203 285 +363 other 204 286 +364 other 205 1 +365 other 205 287 +366 other 206 1 +367 other 206 288 +368 other 207 1 +369 other 207 289 +370 other 208 290 +371 other 209 1 +372 other 209 291 +373 other 210 1 +374 other 210 292 +375 other 211 1 +376 other 211 293 +377 other 212 1 +378 other 212 294 +379 other 213 1 +380 other 213 295 +381 other 214 1 +382 other 214 296 +383 other 215 297 +384 other 216 1 +385 other 216 298 +386 other 217 1 +387 other 217 299 +388 other 218 1 +389 other 218 300 +390 other 219 1 +391 other 219 301 +392 other 220 1 +393 other 220 302 +394 other 221 1 +395 other 221 303 +396 other 222 1 +397 other 222 304 +398 other 223 305 +399 other 224 1 +400 other 224 306 +401 other 225 1 +402 other 225 307 +403 other 226 1 +404 other 226 308 +405 other 227 1 +406 other 227 309 +407 other 228 310 +408 other 229 1 +409 other 229 311 +410 other 230 312 +411 other 231 1 +412 other 231 313 +413 other 232 314 +414 other 233 1 +415 other 233 315 +416 other 234 1 +417 other 234 316 +418 other 235 1 +419 other 235 317 +420 other 236 1 +421 other 236 318 +422 other 237 319 +423 other 238 320 +424 other 239 321 +425 other 240 1 +426 other 240 322 +427 other 241 323 +428 other 242 1 +429 other 242 324 +430 other 243 1 +431 other 243 325 +432 other 244 326 +433 other 245 327 +434 other 246 1 +435 other 246 328 +436 other 247 329 +437 other 248 330 +438 other 249 1 +439 other 249 331 +440 other 250 332 +441 other 251 333 +442 other 252 334 +443 other 253 335 +444 other 254 336 +445 other 255 337 +446 other 256 338 +447 other 257 339 +448 other 258 340 +449 other 259 341 +450 other 260 342 +451 other 261 343 +452 other 262 344 +453 other 263 345 +454 other 264 346 +455 other 265 347 +456 other 266 348 +457 other 267 349 +458 other 268 350 +459 other 269 351 +460 other 270 352 +461 other 271 353 +462 other 272 1 +463 other 272 354 +464 other 273 1 +465 other 273 355 +466 other 274 356 +467 other 275 1 +468 other 275 357 +469 other 276 1 +470 other 276 358 +471 other 277 1 +472 other 277 359 +473 other 278 1 +474 other 278 360 +475 other 279 1 +476 other 279 361 +477 other 280 1 +478 other 280 362 +479 other 281 1 +480 other 281 363 +481 other 282 1 +482 other 282 364 +483 other 283 1 +484 other 283 211 +485 other 284 1 +486 other 284 365 +487 other 285 1 +488 other 285 366 +489 other 286 1 +490 other 286 367 +491 other 287 1 +492 other 287 368 +493 other 288 1 +494 other 288 369 +495 other 289 1 +496 other 289 370 +497 other 290 1 +498 other 290 371 +499 other 291 1 +500 other 291 372 +501 other 292 1 +502 other 292 373 +503 other 292 374 +504 other 293 1 +505 other 293 375 +506 other 294 1 +507 other 294 376 +508 other 295 377 +509 other 296 1 +510 other 296 378 +511 other 297 379 +512 other 298 380 +513 other 299 381 +514 other 300 382 +515 other 301 383 +516 other 302 1 +517 other 302 384 +518 other 303 385 +519 other 304 1 +520 other 304 386 +521 other 305 1 +522 other 305 387 +523 other 306 1 +524 other 306 388 +525 other 307 1 +526 other 307 389 +527 other 309 1 +528 other 309 390 +529 other 311 391 +530 manager 320 392 +531 volunteer-coordinator 320 393 +532 other 321 1 +533 other 321 394 +534 other 322 395 +535 other 324 396 +536 other 325 397 +537 other 326 398 +538 other 327 399 +539 other 328 400 +540 other 329 401 +541 other 330 402 +542 other 331 403 +543 other 332 1 +544 other 332 404 +545 manager 336 405 +546 manager 337 406 +547 other 338 1 +548 other 338 407 +549 manager 339 1 +550 manager 340 408 +551 other 341 1 +552 other 341 409 +553 other 342 1 +554 other 342 410 +555 other 343 1 +556 other 343 411 +557 other 344 1 +558 other 344 412 +559 other 345 1 +560 other 345 413 +561 other 346 1 +562 other 346 414 +563 other 347 415 +564 other 348 1 +565 other 348 416 +566 other 349 1 +567 other 349 417 +568 other 350 418 +569 other 352 1 +570 other 352 419 +571 other 353 420 +572 manager 355 421 +573 volunteer-coordinator 355 422 +574 other 355 1 +575 volunteer-coordinator 356 423 +576 volunteer-coordinator 356 424 +577 manager 357 425 +578 volunteer-coordinator 357 426 +579 social-worker 357 1 +580 manager 358 427 +581 manager 359 428 +582 manager 360 429 +583 other 360 1 +584 manager 362 430 +585 manager 363 431 +586 manager 364 432 +587 other 364 433 +588 manager 365 434 +589 volunteer-coordinator 365 435 +590 manager 366 436 +591 volunteer-coordinator 366 437 +592 manager 367 438 +593 volunteer-coordinator 367 439 +594 manager 368 1 +595 volunteer-coordinator 368 440 +596 manager 369 432 +597 volunteer-coordinator 369 441 +598 manager 370 442 +599 volunteer-coordinator 370 433 +600 manager 371 443 +601 volunteer-coordinator 371 444 +602 manager 372 445 +603 volunteer-coordinator 372 446 +604 social-worker 372 447 +605 manager 373 448 +606 manager 374 443 +607 manager 375 449 +608 manager 376 450 +609 manager 377 451 +610 volunteer-coordinator 377 452 +611 social-worker 377 453 +612 volunteer-coordinator 378 454 +613 social-worker 378 455 +614 manager 379 456 +615 volunteer-coordinator 379 457 +616 manager 380 458 +617 manager 381 459 +618 other 381 460 +619 other 382 1 +620 other 382 461 +621 other 383 1 +622 other 383 462 +623 other 384 1 +624 other 384 463 +625 other 385 1 +626 other 385 464 +627 other 386 1 +628 other 386 465 +629 other 387 1 +630 other 387 466 +631 other 388 1 +632 other 388 467 +633 other 389 1 +634 other 389 468 +635 other 390 1 +636 other 390 469 +637 other 391 1 +638 other 391 470 +639 other 392 1 +640 other 392 471 +641 other 393 1 +642 other 393 472 +643 other 394 1 +644 other 394 473 +645 other 395 1 +646 other 395 474 +647 other 396 1 +648 other 396 475 +649 other 397 1 +650 other 397 476 +651 other 398 1 +652 other 398 477 +653 other 399 1 +654 other 399 478 +655 other 400 1 +656 other 400 479 +657 other 401 1 +658 other 401 480 +659 other 402 481 +660 other 403 1 +661 other 403 482 +662 other 404 1 +663 other 404 483 +664 other 405 484 +665 other 406 1 +666 other 406 485 +667 other 407 486 +668 other 408 1 +669 other 408 487 +670 manager 409 488 +671 other 410 489 +672 other 411 1 +673 other 411 490 +674 other 412 1 +675 other 412 491 +676 other 413 1 +677 other 413 492 +678 manager 414 493 +679 volunteer-coordinator 414 494 +680 volunteer-coordinator 415 495 +681 manager 416 496 +682 manager 417 497 +683 volunteer-coordinator 417 498 +684 social-worker 417 499 +685 manager 418 500 +686 manager 419 501 +687 manager 420 502 +688 volunteer-coordinator 420 503 +689 manager 421 504 +690 manager 422 505 +691 other 425 1 +692 other 425 506 +693 other 426 507 +694 other 427 1 +695 other 427 508 +696 other 428 509 +697 other 429 1 +698 other 429 138 +699 other 430 1 +700 other 430 510 +701 other 431 1 +702 other 431 511 +703 manager 432 512 +704 other 433 1 +705 other 433 513 +706 other 434 1 +707 other 434 514 +708 other 435 1 +709 other 435 515 +710 other 436 1 +711 other 436 516 +712 other 437 1 +713 other 437 517 +714 other 438 1 +715 other 438 518 +716 other 439 1 +717 other 439 519 +718 other 440 520 +719 manager 441 449 +720 other 442 1 +721 other 442 521 +722 other 443 1 +723 other 443 522 +724 other 444 1 +725 other 444 523 +726 other 445 1 +727 other 445 524 +728 other 446 1 +729 other 446 525 +730 other 447 1 +731 other 447 526 +732 other 448 1 +733 other 448 527 +734 other 449 528 +735 other 450 1 +736 other 450 529 +737 other 451 530 +738 other 452 1 +739 other 452 531 +740 other 453 1 +741 other 453 532 +742 other 454 1 +743 other 455 1 +744 other 455 533 +745 other 456 1 +746 other 456 534 +747 other 457 1 +748 other 457 535 +749 other 458 1 +750 other 458 536 +751 other 459 1 +752 other 460 1 +753 other 460 537 +754 other 461 1 +755 other 461 538 +756 other 462 1 +757 other 462 539 +758 other 463 1 +759 other 464 1 +760 other 464 105 +761 other 465 1 +762 other 465 540 +763 other 466 1 +764 other 466 541 +765 other 467 1 +766 other 468 1 +767 other 468 542 +768 other 469 1 +769 other 469 543 +770 other 470 1 +771 other 470 544 +772 other 471 1 +773 other 472 1 +774 other 472 545 +775 other 473 1 +776 other 473 546 +777 other 474 1 +778 other 474 547 +779 other 475 1 +780 other 476 1 +781 volunteer-coordinator 478 437 +782 social-worker 479 548 +783 social-worker 480 549 +784 social-worker 481 550 +785 other 483 551 +786 other 484 552 +787 other 486 1 +788 volunteer-coordinator 487 553 +789 volunteer-coordinator 1 2 +\. + + +-- +-- Data for Name: agent_postcode; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.agent_postcode (id, agent_id, postcode_id) FROM stdin; +1 2 174 +2 3 128 +3 4 11 +4 5 121 +5 6 119 +6 7 2 +7 8 100 +8 9 138 +9 10 133 +10 11 133 +11 12 164 +12 13 149 +13 14 181 +14 15 71 +15 16 71 +16 17 107 +17 18 101 +18 19 106 +19 20 174 +20 21 190 +21 22 39 +22 23 190 +23 24 59 +24 25 58 +25 26 58 +26 27 126 +27 28 15 +28 29 17 +29 30 127 +30 31 126 +31 32 126 +32 33 129 +33 34 126 +34 35 13 +35 36 128 +36 37 114 +37 38 120 +38 39 124 +39 40 122 +40 41 118 +41 42 117 +42 43 118 +43 44 120 +44 45 27 +45 46 142 +46 47 2 +47 48 151 +48 49 26 +49 50 100 +50 51 68 +51 52 68 +52 53 95 +53 54 131 +54 55 19 +55 56 139 +56 57 18 +57 58 130 +58 59 19 +59 60 132 +60 61 133 +61 62 133 +62 63 130 +63 64 130 +64 65 148 +65 66 160 +66 67 152 +67 68 153 +68 69 170 +69 70 170 +70 71 166 +71 72 167 +72 73 170 +73 74 165 +74 75 183 +75 76 85 +76 77 85 +77 78 87 +78 79 182 +79 80 185 +80 81 88 +81 82 89 +82 83 93 +83 84 70 +84 85 74 +85 86 77 +86 87 78 +87 88 56 +88 89 113 +89 90 111 +90 91 105 +91 92 102 +92 93 102 +93 94 108 +94 95 111 +95 96 106 +96 97 107 +97 98 6 +98 99 120 +99 100 53 +100 101 117 +101 102 3 +102 103 117 +103 104 1 +104 105 45 +105 106 5 +106 107 66 +107 108 44 +108 109 57 +109 110 90 +110 111 69 +111 112 44 +112 113 1 +113 114 40 +114 115 1 +115 116 22 +116 117 47 +117 118 7 +118 119 177 +119 120 47 +120 121 58 +121 122 15 +122 123 117 +123 124 1 +124 125 153 +125 126 24 +126 127 101 +127 128 105 +128 129 105 +129 130 58 +130 131 47 +131 132 1 +132 133 61 +133 134 61 +134 135 51 +135 136 32 +136 137 145 +137 138 70 +138 139 151 +139 140 47 +140 141 58 +141 142 49 +142 143 141 +143 144 151 +144 145 42 +145 146 183 +146 147 28 +147 148 9 +148 149 66 +149 150 3 +150 151 1 +151 152 79 +152 153 50 +153 154 21 +154 155 63 +155 156 120 +156 157 49 +157 158 71 +158 159 139 +159 160 72 +160 161 40 +161 162 57 +162 163 53 +163 164 79 +164 165 18 +165 166 150 +166 167 144 +167 168 66 +168 169 41 +169 170 13 +170 171 4 +171 172 117 +172 173 120 +173 174 117 +174 175 15 +175 176 1 +176 177 1 +177 178 4 +178 179 59 +179 180 47 +180 181 28 +181 182 69 +182 183 144 +183 184 24 +184 185 66 +185 186 66 +186 187 34 +187 188 7 +188 189 56 +189 190 55 +190 191 77 +191 192 53 +192 193 144 +193 194 78 +194 195 2 +195 196 35 +196 197 27 +197 198 47 +198 199 79 +199 200 66 +200 201 64 +201 202 151 +202 203 6 +203 204 58 +204 205 52 +205 206 22 +206 207 5 +207 208 26 +208 209 78 +209 210 147 +210 211 18 +211 212 119 +212 213 81 +213 214 79 +214 215 120 +215 216 6 +216 217 39 +217 218 118 +218 219 77 +219 220 153 +220 221 7 +221 222 6 +222 223 3 +223 224 47 +224 225 131 +225 226 57 +226 227 3 +227 228 1 +228 229 43 +229 230 1 +230 231 1 +231 232 146 +232 233 30 +233 234 78 +234 235 67 +235 236 12 +236 237 1 +237 238 54 +238 239 3 +239 240 37 +240 241 53 +241 242 53 +242 243 117 +243 244 56 +244 245 174 +245 246 9 +246 247 47 +247 248 109 +248 249 168 +249 250 39 +250 251 128 +251 252 17 +252 253 126 +253 254 129 +254 255 119 +255 256 130 +256 257 119 +257 258 120 +258 259 123 +259 260 100 +260 261 133 +261 262 130 +262 263 154 +263 264 1 +264 265 148 +265 266 165 +266 267 167 +267 268 83 +268 269 75 +269 270 110 +270 271 106 +271 272 83 +272 273 87 +273 274 29 +274 275 29 +275 276 56 +276 277 56 +277 278 24 +278 279 24 +279 280 1 +280 281 1 +281 282 1 +282 283 105 +283 284 105 +284 285 51 +285 286 51 +286 287 51 +287 288 53 +288 289 170 +289 290 170 +290 291 1 +291 292 139 +292 293 58 +293 294 144 +294 295 71 +295 296 64 +296 297 83 +297 298 60 +298 299 1 +299 300 1 +300 301 6 +301 302 41 +302 303 69 +303 304 3 +304 305 120 +305 306 1 +306 307 28 +307 308 1 +308 309 183 +309 310 1 +310 311 105 +311 312 1 +312 313 1 +313 314 1 +314 315 1 +315 316 105 +316 317 1 +317 318 1 +318 319 1 +319 320 110 +320 321 65 +321 322 60 +322 323 1 +323 324 1 +324 325 1 +325 326 1 +326 327 1 +327 328 1 +328 329 1 +329 330 1 +330 331 1 +331 332 160 +332 333 126 +333 334 126 +334 335 139 +335 336 72 +336 337 73 +337 338 76 +338 339 6 +339 340 6 +340 341 144 +341 342 169 +342 343 54 +343 344 170 +344 345 47 +345 346 59 +346 347 63 +347 348 58 +348 349 24 +349 350 59 +350 351 1 +351 352 15 +352 353 148 +353 354 149 +354 355 7 +355 356 19 +356 357 127 +357 358 106 +358 359 147 +359 360 15 +360 361 81 +361 362 8 +362 363 164 +363 364 46 +364 365 49 +365 366 192 +366 367 39 +367 368 39 +368 369 32 +369 370 55 +370 371 65 +371 372 117 +372 373 39 +373 374 165 +374 375 163 +375 376 75 +376 377 116 +377 378 31 +378 379 19 +379 380 96 +380 381 95 +381 382 145 +382 383 54 +383 384 19 +384 385 101 +385 386 5 +386 387 146 +387 388 110 +388 389 65 +389 390 145 +390 391 66 +391 392 65 +392 393 110 +393 394 88 +394 395 66 +395 396 11 +396 397 44 +397 398 44 +398 399 101 +399 400 153 +400 401 31 +401 402 142 +402 403 144 +403 404 59 +404 405 101 +405 406 9 +406 407 3 +407 408 18 +408 409 1 +409 410 72 +410 411 37 +411 412 109 +412 413 71 +413 414 62 +414 415 188 +415 416 159 +416 417 192 +417 418 174 +418 419 46 +419 420 110 +420 421 18 +421 422 137 +422 425 60 +423 426 127 +424 427 105 +425 428 47 +426 429 170 +427 430 56 +428 431 7 +429 432 131 +430 433 58 +431 434 170 +432 435 65 +433 436 10 +434 437 58 +435 438 78 +436 439 127 +437 440 19 +438 441 168 +439 442 19 +440 443 168 +441 444 61 +442 445 101 +443 446 111 +444 447 144 +445 448 1 +446 449 164 +447 450 190 +448 451 5 +449 452 27 +450 453 54 +451 454 150 +452 455 21 +453 456 139 +454 457 51 +455 458 146 +456 459 70 +457 460 97 +458 461 58 +459 462 61 +460 463 13 +461 464 19 +462 465 3 +463 466 56 +464 467 69 +465 468 3 +466 469 13 +467 470 6 +468 471 58 +469 472 191 +470 473 109 +471 474 109 +472 475 101 +473 476 1 +474 478 192 +475 479 1 +476 480 1 +477 481 1 +478 484 139 +479 487 38 +\. + + +-- +-- Data for Name: appreciation; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.appreciation (id, title, date_due, date_delivery, created_at, updated_at, opportunity_id, volunteer_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: be_migrations; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.be_migrations (id, "timestamp", name) FROM stdin; +1 1763036250587 UpdateVolunteerListMv1763036250587 +2 1763636303849 AddEventEntity1763636303849 +3 1765976202270 AddCityToAddressEntity1765976202270 +4 1766003754834 AddPreferredCommToVolunteerEntity1766003754834 +5 1766352158945 ChangeVolunteerPreferredCommToArray1766352158945 +6 1767357208920 AddDocumentEntity1767357208920 +7 1767816732428 AddCommunicationEntity1767816732428 +8 1768772092135 AddAppreciationEntity1768772092135 +9 1769012055276 CatchTsJan211769012055276 +10 1769183878914 AddVolunteerReturnDate1769183878914 +11 1769606450859 SyncAndUpdateOppVolM2m1769606450859 +12 1770126767598 UpdateOppProfile1770126767598 +13 1770226586693 UpdateOppTypeEnum1770226586693 +14 1770655462205 AddAccomponyingEntity1770655462205 +15 1770713139121 AddConfigKey1770713139121 +16 1771086827549 UpdateAgentEntity1771086827549 +17 1771201168124 UpdateAgentEntity21771201168124 +18 1771505596306 UpdateAgentEntity31771505596306 +19 1771858452728 UpdateAgentEntity41771858452728 +20 1772005888557 UpdateOppProfileProfLang1772005888557 +21 1772019993181 UpdateCommentEtity1772019993181 +22 1772052519214 UpdatePersonEntity1772052519214 +23 1772545971802 MoveAccompanyingToOpportunity1772545971802 +24 1772609767417 CheckIfInSync1772609767417 +25 1773268076415 UpdateAgentEntity6AgentPerson1773268076415 +26 1773413991868 UpdatePersonEntityAddLandline1773413991868 +27 1773423834140 UpdateAgentEntity71773423834140 +28 1773438090614 UpdateCommunicationEntity1773438090614 +29 1773746534596 UpdateCommentEtity21773746534596 +30 1774135672526 AddNotionRelationEntity1774135672526 +31 1776035229092 AddVolIndeces1776035229092 +32 1776321570996 UpdateOppOrphanage1776321570996 +33 1776699111911 UpdateAgentEntity1776699111911 +\. + + +-- +-- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.category (id, title) FROM stdin; +1 de-lng-support +2 child-care +3 skills-based +4 events +5 sport-activities +6 accompanying +\. + + +-- +-- Data for Name: comment; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.comment (id, text, created_at, updated_at, language_id, user_id, entity_type, entity_id) FROM stdin; +418 vig ol ziol uxn? 2026-04-21 09:49:36.209348 2026-04-21 09:49:36.209348 \N 4 volunteer 797 +420 it ol q foet uxn 2026-04-21 10:08:09.900538 2026-04-21 10:08:09.900538 \N 5 volunteer 797 +421 TYM wtqfzkqutf. 2026-04-21 10:10:59.149693 2026-04-21 10:10:59.149693 \N 9 volunteer 789 +422 TYM wtqfzkqutf. 2026-04-21 10:12:49.207042 2026-04-21 10:12:49.207042 \N 9 volunteer 760 +423 Rql TYM vxkrt qd 79.52.3531 wtqfzkquz. 2026-04-21 10:15:41.60944 2026-04-21 10:15:41.60944 \N 9 volunteer 785 +424 Rql TYM vxkrt qd 72.52.3531 wtqfzkquz. 2026-04-21 10:18:59.887798 2026-04-21 10:18:59.887798 \N 9 volunteer 782 +425 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:21:10.073317 2026-04-21 10:21:10.073317 \N 9 volunteer 751 +426 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:21:34.880124 2026-04-21 10:21:34.880124 \N 9 volunteer 772 +427 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:22:02.374942 2026-04-21 10:22:02.374942 \N 9 volunteer 756 +428 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:22:27.972908 2026-04-21 10:22:27.972908 \N 9 volunteer 778 +429 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:24:49.126072 2026-04-21 10:24:49.126072 \N 9 volunteer 767 +430 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:25:23.586742 2026-04-21 10:25:23.586742 \N 9 volunteer 776 +431 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:25:41.488079 2026-04-21 10:25:41.488079 \N 9 volunteer 770 +435 Rql TYM-Rgaxdtfz vxkrt qd 78. Qhkos tkiqsztf. 2026-04-21 10:31:27.421725 2026-04-21 10:31:27.421725 \N 9 volunteer 692 +436 Rql TYM vxkrt qd 53.52.3531 wtqfzkquz. 2026-04-21 10:32:55.758766 2026-04-21 10:32:55.758766 \N 9 volunteer 765 +437 Atfmq: RT fqzoct, ZK qfr TF ysxtfz. Lit ol dqofsn ofztktlztr of Wtustozxfu. Ygk ktuxsqk cgsxfzttkofu, lit egxsr odquoft rgofu lhgkzl qfr stqrofu gf wqlatzwqss. Lit ol ofztktlztr of uqkrtfofu wxz oy lit ol zgsr viqz zg rg. Lit ol qcqosqwst Ykorqnl qss rqn, Dgfrqnl lzqkzofu 73i, Zxtlrqnl wtzvttf 6i qfr 73i qfr quqof qyztk 71i qfr Zixklrqnl wtzvttf 6 qfr 73. Lit iql zit dtqlstl cqeeoft qfr qf TYM ykgd Lthztdwtk. 2026-04-21 12:27:43.17342 2026-04-21 12:27:43.17342 \N 5 volunteer 799 +438 Ltfnq eiteatr of zgrqn qfr Xsso lqor Sqxknf ol ktuxsqksn cgsxfzttkofu. 2026-04-21 14:02:43.99929 2026-04-21 14:02:43.99929 \N 5 volunteer 684 +441 Qfzkqulztsstk*of: Ytktlizq Pqyqko, pqyqko@mqao-tc.rt, 5799 90569811 2026-04-21 15:00:09.864574 2026-04-21 15:00:09.864574 \N 7 opportunity 804 +443 oei qxei 2026-04-21 16:12:53.211037 2026-04-21 16:12:53.211037 \N 4 opportunity 810 +444 ztlz 2026-04-21 16:13:33.046839 2026-04-21 16:13:33.046839 \N 4 opportunity 809 +445 Rql olz tof Agddtfzqk rtl Tfzvoeastkl 2026-04-21 17:23:53.644011 2026-04-21 17:23:53.644011 \N 1 volunteer 798 +446 Fq 2026-04-21 20:45:59.930379 2026-04-21 20:45:59.930379 \N 4 volunteer 797 +447 Eitea-of: Zgutzitk vozi Ltuxf zitn qkt gyytkofu q lhgkzqfutwgz tctkn Zixklrqn. 2026-04-22 07:21:36.247263 2026-04-22 07:21:36.247263 \N 5 volunteer 685 +442 Atfmq: Ofztktlztr of cgsxfzttkofu vozi eiosrktf, vgkatr 8 ntqkl ql q wqwn lozztk qfr iql lowsoful. Lit eqf qslg itsh vozi yossofu rgexdtfzl, lit lhtqal RT & TF. Lg qslg ofztktlztr of Lhkqeieqytl. Soctl of Ftxaössf (Itkddqfhsqzm). Lzxrotl Ofztkfqzogfqs Wxloftll Dqfqutdtfz. Lit ol ystbowst gf Zixklrqnl qfr Ykorqnl. 2026-04-21 15:09:06.420064 2026-04-22 07:36:31.574 \N 5 volunteer 794 +448 rxddn@qvg-dozzt.rt<|>rxddn ztlz<|>rxddnlzkttz<|>73829 2026-04-22 08:41:24.343342 2026-04-22 08:41:24.343342 \N 1 opportunity 811 +449 u 2026-04-22 08:42:22.02148 2026-04-22 08:42:22.02148 \N 4 opportunity 811 +450 l 2026-04-22 08:56:16.98197 2026-04-22 08:56:16.98197 \N 4 opportunity 811 +451 moddtkdqff@qvg-dozzt.rt<|>Qdn Moddtkdqff<|>Akgfhkofmtfrqdd 7<|>75077 2026-04-22 09:48:10.04167 2026-04-22 09:48:10.04167 \N 1 opportunity 812 +452 vlh@rka-dxtuutslhktt.rt<|>Aofqfq Ltodxqq<|>Vqlltklhgkzqsstt 91-94<|>73930 2026-04-22 11:13:26.002539 2026-04-22 11:13:26.002539 \N 1 opportunity 813 +453 uogkuo.sgaiolicoso@ow.rt<|>Uogkuo Sgaiolicoso<|>Ktofoeatfrgky Lzk. 29<|>78890 2026-04-22 13:22:00.81108 2026-04-22 13:22:00.81108 \N 1 opportunity 814 +454 Rtk Ztkdof olz xd 75:85 2026-04-22 13:24:13.4216 2026-04-22 13:24:13.4216 \N 7 opportunity 814 +455 Koeizout Ofygl: 51.59.3531 xd 77.85 Xik! 2026-04-22 14:11:09.888319 2026-04-22 14:11:09.888319 \N 7 opportunity 810 +456 Atfmq: Ysxtfz of Utkdqf (wgkf qfr kqoltr itkt), ofztkdtroqzt Qswqfoqf qfr Lhqfoli. Ofztktlztr of zxzgkofu, gkuqfolofu qezocozotl ql lit qsktqrn rgtl ziqz vozi q lzxrtfz gkuqfolqzogf qz itk xfoctklozn. Lit ol qslg ofztktlztr of qeegdhqfnofu wxz ygk Qswqfoqf oz rthtfrl vioei aofr gy qhhgofzdtfzl zitn qkt. Lit afgvl q sgz gy htghst vig lhtqa Qswqfoqf ysxtfzsn vig egxsr rg ziol wtzztk ziqf itk. Lit soctl of Ztdhtsigy qfr eqf ug zg zit rolzkoezl dtfzogftr qwgctr of zit ygkd. Qcqosqwst gf Ykorqnl qfr vttatfrl qfr lit iql zit dtqlstl cqeeoft. 2026-04-23 08:41:57.328635 2026-04-23 08:41:57.328635 \N 5 volunteer 796 +458 Ftv higft fxdwtk: 579386157536 2026-04-23 08:53:32.952096 2026-04-23 08:53:32.952096 \N 7 volunteer 475 +459 Rtk Ztkdof olz xd 6:95 Xik. 2026-04-23 10:07:07.31761 2026-04-23 10:07:07.31761 \N 7 opportunity 813 +460 Atfmq: lzxrtfz, ol zknofu zg yofr cgsxfzttkofu ghhgkzxfozotl wxz oz qsvqnl rgtlfz vgka ygk zodofu ktqlgfl. Rxkofu zit vtta ol royyoexsz wteqxlt lit iql zg wt q sgz qz zit xfoctklozn, lg vttatfrl qkt wtzztk ygk itk. Lit qsktqrn uqct fqeiiosoyt of dqzi qfr tfusoli. Lit soatl eiosrktf, gkuqfolofu tctfzl. Lit ol qslg qcqosqwst tctkn zxtlrqn qyztk 79i qfr soctl of Lztusozm. 2026-04-23 10:36:25.035341 2026-04-23 10:36:25.035341 \N 5 volunteer 798 +461 Atfmq: Lgzokol qfr Cqlosoao qkt q egxhst qfr zitn vqfz zg cgsxfzttk zgutzitk. Cqlosoao vqlfz qcqosqwst ygk zit higft eqss lg Lgzokol vql zqsaofu gf zit wtiqsy gy zit zvg gy zitd. Zitn dgctr zvg vttal qug zg Wtksof, rgfz lhtqa Utkdqf qfr soct of Eiqksgzztfwxku. Cqlosoao ol q wogsguolz, Lgzokol ol q dxloeoqf. Lgzokol ol qcqosqwst gf Dgfrqnl, Vtrftlrqnl qfr Ykorqnl qyztkfggf. Zitn qkt wgzi uggr vozi aorl wxz fg tbhtkzolt. Lgzokol iql Qfdtsrxfu (lg vt eqf qhhsn ygk iol TYM) wxz Cqlosoao rgtlfz (lit iql zg qhhsn of Ukttet). It ol qslg ofztktlztr of tctfzl: lg wqea of Ukttet, it ror lgxfr tfuofttk qfr ltz xh, lg it egxsr itsh vozi iqfrsofu zit doekghigftl. Zitn eqf egddxzt vozi woatl qfr hxwsoe zkqflhgkzqzogfl. 2026-04-23 10:45:41.212523 2026-04-23 10:45:41.212523 \N 5 volunteer 801 +462 Atfmq: Atfmq: Gfsn zqsatr zg Lgzokol itk wgnykotfr. Cqlosoao vqlf'z qcqosqwst ygk zit higft eqss lg Lgzokol vql zqsaofu gf zit wtiqsy gy zit zvg gy zitd. Zitn dgctr zvg vttal qug zg Wtksof, rgfz lhtqa Utkdqf qfr soct of Eiqksgzztfwxku. Cqlosoao ol q wogsguolz, Lgzokol ol q dxloeoqf. Lgzokol ol qcqosqwst gf Dgfrqnl, Vtrftlrqnl qfr Ykorqnl qyztkfggf. Zitn qkt wgzi uggr vozi aorl wxz fg tbhtkzolt. Lgzokol iql Qfdtsrxfu (lg vt eqf qhhsn ygk iol TYM) wxz Cqlosoao rgtlfz (lit iql zg qhhsn of Ukttet). It ol qslg ofztktlztr of tctfzl: lg wqea of Ukttet, it ror lgxfr tfuofttk qfr ltz xh, lg it egxsr itsh vozi iqfrsofu zit doekghigftl. Zitn eqf egddxzt vozi woatl qfr hxwsoe zkqflhgkzqzogfl. 2026-04-23 10:49:33.44694 2026-04-23 10:49:33.44694 \N 5 volunteer 793 +463 lcozsqfq.gzkqrfgcq@ow.rt<|>Lcozsqfq Gzkqrfgcq<|>Ktofoeatfrgkytklzkqßt 29, Wtksof<|>78890 2026-04-23 11:29:13.19035 2026-04-23 11:29:13.19035 \N 1 opportunity 815 +464 moddtkdqff@qvg-dozzt.rt<|>Qdn Moddtkdqff<|>Usgeatfzxkdlzkqßt 85<|>72599 2026-04-23 12:39:33.458193 2026-04-23 12:39:33.458193 \N 1 opportunity 816 +465 Rot Ofygl: Itkk Lqstio vxkrt qf rot Gkzighärot üwtkvotltf, xd toft dtromofoleit Wtxkztosxfu cgd Qkmz mx igstf. Tk vokr rot Üwtkvtolxfu mxd Ztkdof dozwkofutf. Rqkof lofr rot Qfsotutf xfr Iofztkuküfrt qxei qxlyüiksoeitk wtleikotwtf. 2026-04-23 12:46:02.407052 2026-04-23 12:46:02.407052 \N 7 opportunity 804 +457 Dqzof aqff rot Wtustozxfu fqei rtd Wkotyofu üwtkftidtf. 2026-04-23 08:50:50.477412 2026-04-23 12:46:24.958 \N 7 opportunity 804 +466 Rtk Ztkdof yofrtz qd 85.52. xd 6:89 Xik lzqzz. 2026-04-23 12:58:40.090168 2026-04-23 12:58:40.090168 \N 7 opportunity 802 +467 dqkoaq.fqftolicoso@itkgtxkght.egd<|>Dqkoaq Fqftolicoso<|>Wsxdwtkutk Rqdd 718<|>73149 2026-04-23 14:09:03.70705 2026-04-23 14:09:03.70705 \N 1 opportunity 817 +468 Atfmq: it ol q htklgfqs zkqoftk, itqkr qwgxz xl ykgd q esotfz. Qsvqnl vqfztr zg cgsxfzttk. It eqf gyytk eqsolzitfoel vioei ngx gfsn fttr ngxk wgrn vtouiz ygk. It eqf qslg itsh vozi eggaofu qfr rgofu qkzl. It ol ykgd Wkqlos, 2 ntqkl of Wtksof. Soctl of Vqkleiqxtk Lzk lg eqf ug zg Ftxaössf, Aktxmwtku, Ykotrkoeiliqof qfr Soeiztfwtku. Lhtqal ysxtfz Hgkzxuxtlt, Lhqfoli qfr Tfusoli. Utkdqf Q3. O qlatr oy it eqf qslg rg zioful vozi aorl qfr it lqor zitn qkt eiqsstfuofu wxz it ol xh ygk oz. Qcqosqwst dglz dgkfoful wxz zxtlrqnl qfr zixklrqn ygk lxkt. It ol q ykttsqfetk lg it rgtlfz iqct q yobtr leitrxst. 2026-04-23 14:25:58.732924 2026-04-23 14:25:58.732924 \N 5 volunteer 804 +469 leikgtzztk@dozztsigy.gku<|>Xskoat Leiközztk<|>Esqnqsstt 63<|>72769 2026-04-23 15:08:40.853081 2026-04-23 15:08:40.853081 \N 1 opportunity 818 +470 dqkoaq.fqftolicoso@itkgtxkght.egd<|>Dqkoaq Fqftolicoso<|>Hqxs-Leivtfa-Lzkqßt 8-37<|>73149 2026-04-24 07:46:05.95657 2026-04-24 07:46:05.95657 \N 1 opportunity 819 +472 _ 2026-04-24 10:48:52.489451 2026-04-24 10:48:52.489451 \N 4 volunteer 797 +473 Uvtf-wxteiftk@udb.rt<|>Uvtfinyqk Wüeiftk<|>Ykotrtkoatflzk. 88<|>78959 2026-04-24 11:14:06.398438 2026-04-24 11:14:06.398438 \N 1 opportunity 820 +474 Uvtf-wxteiftk@udb.rt<|>Uvtfinyqk Wüeiftk<|>Igitfmgsstkfrqdd 88<|>75078 2026-04-24 11:18:28.535456 2026-04-24 11:18:28.535456 \N 1 opportunity 821 +471 Rtk Ztkdof yofrtz qd 59.59. xd 56:79 lzqzz. Rql Yqeiutwotz olz Lzgdqzgsguot. Rtk Ztkdof olz yük Uxzqeizxfu. 2026-04-24 10:48:17.039937 2026-04-24 12:39:47.341 \N 7 opportunity 817 +476 Rtk Ztkdof yofrtz xd 75 Xik lzqzz. Wto rtd Ztkdof utiz tl xd rot Wtuxzqeizxfu. Rtk Wtvgiftk iqz toftf Qfzkqu qxy Hystut wto SQY utlztssz. Rtliqsw agddz tof Dozqkwtoztk qslg tof Uxzqeiztk xfr lztssz tofout Ykqutf üwtk ltoft Utlxfritoz qf rtf Wtvgiftk. 2026-04-24 12:41:12.435781 2026-04-24 12:41:12.435781 \N 7 opportunity 819 +477 ltfnq qlatr oy higft zkqflsqzogf ol hgllowst lzoss fg kthsn 2026-04-24 13:44:42.8481 2026-04-24 13:44:42.8481 \N 4 opportunity 819 +478 Xhrqzt: Qz zit dgdtfz O’d fgz qcqosqwst rxkofu zit vtta zoss 72:55. Wxz O’r wt iqhhn zg lxhhgkz oy qfn qhhgofzdtfzl yqss gf zit ltegfr hqkz gy zit rqn. 2026-04-24 13:57:07.933292 2026-04-24 13:57:07.933292 \N 7 volunteer 85 +479 Dqkot aqff rot Wtustozxfu foeiz üwtkftidtf, Rqkoq iqz qxy dtoft T-Dqos foeiz utqfzvgkztz. 2026-04-24 14:29:32.98711 2026-04-24 14:29:32.98711 \N 7 opportunity 813 +480 Vok wkqxeitf fgei dtik Ofygkdqzogftf rqmx, oei iqwt Lcozsqfq rotlwtmüusoei qfutleikotwtf. 2026-04-24 14:30:42.986067 2026-04-24 14:30:42.986067 \N 7 opportunity 815 +481 Fgz fttrtr qfndgkt. 2026-04-24 14:54:03.437164 2026-04-24 14:54:03.437164 \N 7 opportunity 809 +482 Tssofq.Anlisqk@syu-w.rt<|>Tssofq Anlisqk<|>UX sqfrlwtkutk Qsstt 357-359<|>78599 2026-04-27 14:46:11.760312 2026-04-27 14:46:11.760312 \N 1 opportunity 822 +483 Oei iqwt toft Qwlqut utleioeaz. 2026-04-27 15:03:43.557084 2026-04-27 15:08:21.703 \N 9 opportunity 822 +484 fggk@mqao-tc.rt<|>Zqdqf Fggk<|>Leiöfysotlltk Lzk. 0<|>75286 2026-04-27 15:22:05.58204 2026-04-27 15:22:05.58204 \N 1 opportunity 823 +485 Oei iqwt rot Qwlqut utleioeaz. 2026-04-27 15:31:01.176923 2026-04-27 15:31:01.176923 \N 9 opportunity 813 +486 Oei iqwt rot Qwlqut utleioeaz. 2026-04-27 15:48:17.417422 2026-04-27 15:48:17.417422 \N 9 opportunity 823 +487 Ztzoqfq iqz cots Tkyqikxfu qsl Tiktfqdzsoeit of rtk Xakqoft (Zitqztk, Zqfmtf). Qxei of Wtksof vqk lot od Dozztsigy tiktfqdzsoei zäzou xfr iqz rgkz od Lgddtk 3539 TYM tkiqsztf.\fOf oiktk Aofritoz vxkrt lot ututf Dqltkf utodhyz, ptrgei mtouzt tof Qfzoaökhtkztlz, rqll atof qxlktoeitfrtk Leixzm dtik wtlztiz. Rqitk olz toft Qxyykoleixfulodhyxfu tkygkrtksoei.\fOikt Rtxzleiatffzfollt sotutf qxy rtd Foctqx W7. Lot dqeiz fgei Ytistk, aqff loei qwtk ctklzäfroutf. (Lot iqz wtktozl toft Yqdosot qd 33.52.3531 mx toftd Aofrtkqkmzztkdof wtustoztz)\fLot olz wtktoz, od Kqxd Dqkmqif-Itsstklrgky tiktfqdzsoei zäzou mx vtkrtf. Wtlgfrtkl utkf vükrt lot doz Aofrtkf qkwtoztf, m. W. Zqfm qfwotztf grtk astoft Qazocozäztf od Kqidtf rtk Wtzktxxfu rxkeiyüiktf. 2026-04-27 16:15:47.774451 2026-04-27 16:15:47.774451 \N 9 volunteer 802 +\. + + +-- +-- Data for Name: communication; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.communication (id, contact_type, contact_method, communication_type, date, volunteer_id, user_id, agent_id) FROM stdin; +1 tried-to-call phone-number \N 2026-04-21 10:26:10.203 800 5 \N +2 tried-to-call phone-number \N 2026-04-21 10:29:26.029 794 5 \N +3 tried-to-call phone-number \N 2026-04-21 10:30:41.511 791 5 \N +4 tried-to-call phone-number \N 2026-04-21 10:32:03.91 795 5 \N +5 called phone-number \N 2026-04-21 12:17:20.8 799 5 \N +8 tried-to-call phone-number \N 2026-04-22 09:19:26.33 802 5 \N +9 texted-or-emailed email \N 2026-04-22 09:24:05.828 803 5 \N +10 tried-to-call phone-number \N 2026-04-22 09:34:06.801 804 5 \N +11 called phone-number \N 2026-04-23 08:39:43.795 796 5 \N +12 texted-or-emailed email \N 2026-04-23 08:52:49.308 475 7 \N +6 called phone-number \N 2026-04-22 22:00:00 798 5 \N +7 called phone-number \N 2026-04-22 22:00:00 801 5 \N +13 tried-to-call phone-number \N 2026-04-23 14:14:34.505 803 5 \N +14 called phone-number \N 2026-04-23 14:23:20.211 804 5 \N +15 tried-to-call phone-number \N 2026-04-23 14:28:21.959 805 5 \N +16 other whatsapp briefed 2026-04-24 13:24:53.849 475 4 \N +17 called phone-number \N 2026-04-27 15:57:51.986 802 9 \N +\. + + +-- +-- Data for Name: config; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.config (id, config_key, config_value) FROM stdin; +1 truncate-all t +\. + + +-- +-- Data for Name: deal; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.deal (id, type, postcode_id, time_id, location_id, profile_id) FROM stdin; +1 opportunity 1 1 1 1 +2 opportunity 1 2 2 2 +3 opportunity 149 3 3 3 +4 opportunity 1 4 4 4 +5 opportunity 1 5 5 5 +6 opportunity 1 6 6 6 +7 opportunity 1 7 7 7 +8 opportunity 1 8 8 8 +9 opportunity 1 9 9 9 +10 opportunity 1 10 10 10 +11 opportunity 1 11 11 11 +12 opportunity 1 12 12 12 +13 opportunity 1 13 13 13 +14 opportunity 100 14 14 14 +15 opportunity 1 15 15 15 +16 opportunity 1 16 16 16 +17 opportunity 1 17 17 17 +18 opportunity 1 18 18 18 +19 opportunity 1 19 19 19 +20 opportunity 1 21 20 21 +21 opportunity 1 22 21 22 +22 opportunity 1 23 22 23 +23 opportunity 1 25 23 25 +24 opportunity 1 27 24 27 +25 opportunity 1 28 25 28 +26 opportunity 1 29 26 29 +27 opportunity 1 30 27 30 +28 opportunity 1 31 28 31 +29 opportunity 1 32 29 32 +30 opportunity 1 33 30 33 +31 opportunity 1 34 31 34 +32 opportunity 1 35 32 35 +33 opportunity 1 36 33 36 +34 opportunity 1 37 34 37 +35 opportunity 1 38 35 38 +36 opportunity 1 39 36 39 +37 opportunity 1 40 37 40 +38 opportunity 1 41 38 41 +39 opportunity 149 42 39 42 +40 opportunity 1 44 40 44 +41 opportunity 1 45 41 45 +42 opportunity 1 46 42 46 +43 opportunity 1 47 43 47 +44 opportunity 1 48 44 48 +45 opportunity 1 49 45 49 +46 opportunity 1 50 46 50 +47 opportunity 1 51 47 51 +48 opportunity 1 52 48 52 +49 opportunity 1 53 49 53 +50 opportunity 1 54 50 54 +51 opportunity 1 55 51 55 +52 opportunity 1 56 52 56 +53 opportunity 1 57 53 57 +54 opportunity 1 58 54 58 +55 opportunity 1 59 55 59 +56 opportunity 1 60 56 60 +57 opportunity 1 61 57 61 +58 opportunity 1 62 58 62 +59 opportunity 1 63 59 63 +60 opportunity 1 64 60 64 +61 opportunity 1 65 61 65 +62 opportunity 1 66 62 66 +63 opportunity 1 67 63 67 +64 opportunity 1 68 64 68 +65 opportunity 1 69 65 69 +66 opportunity 1 70 66 70 +67 opportunity 1 71 67 71 +68 opportunity 1 72 68 72 +69 opportunity 1 73 69 73 +70 opportunity 1 74 70 74 +71 opportunity 1 75 71 75 +72 opportunity 1 76 72 76 +73 opportunity 1 77 73 77 +74 opportunity 1 78 74 78 +75 opportunity 1 79 75 79 +76 opportunity 1 80 76 80 +77 opportunity 1 81 77 81 +78 opportunity 1 82 78 82 +79 opportunity 1 83 79 83 +80 opportunity 1 84 80 84 +81 opportunity 1 85 81 85 +82 opportunity 1 86 82 86 +83 opportunity 1 88 83 88 +84 opportunity 1 89 84 89 +85 opportunity 1 90 85 90 +86 opportunity 1 91 86 91 +87 opportunity 1 92 87 92 +88 opportunity 1 93 88 93 +89 opportunity 1 94 89 94 +90 opportunity 1 95 90 95 +91 opportunity 1 96 91 96 +92 opportunity 1 98 92 98 +93 opportunity 1 99 93 99 +94 opportunity 1 100 94 100 +95 opportunity 1 101 95 101 +96 opportunity 1 102 96 102 +97 opportunity 1 103 97 103 +98 opportunity 1 104 98 104 +99 opportunity 1 105 99 105 +100 opportunity 1 106 100 106 +101 opportunity 1 107 101 107 +102 opportunity 11 108 102 108 +103 opportunity 1 109 103 109 +104 opportunity 183 110 104 110 +105 opportunity 183 111 105 111 +106 opportunity 183 112 106 112 +107 opportunity 1 113 107 113 +108 opportunity 1 114 108 114 +109 opportunity 1 115 109 115 +110 opportunity 1 117 110 117 +111 opportunity 1 118 111 118 +112 opportunity 1 119 112 119 +113 opportunity 1 120 113 120 +114 opportunity 1 121 114 121 +115 opportunity 1 122 115 122 +116 opportunity 1 123 116 123 +117 opportunity 1 124 117 124 +118 opportunity 1 125 118 125 +119 opportunity 1 126 119 126 +120 opportunity 1 127 120 127 +121 opportunity 1 128 121 128 +122 opportunity 1 129 122 129 +123 opportunity 1 130 123 130 +124 opportunity 1 131 124 131 +125 opportunity 1 132 125 132 +126 opportunity 1 133 126 133 +127 opportunity 1 134 127 134 +128 opportunity 1 135 128 135 +129 opportunity 1 136 129 136 +130 opportunity 1 137 130 137 +131 opportunity 1 138 131 138 +132 opportunity 1 139 132 139 +133 opportunity 1 140 133 140 +134 opportunity 1 141 134 141 +135 opportunity 1 142 135 142 +136 opportunity 1 143 136 143 +137 opportunity 1 144 137 144 +138 opportunity 1 145 138 145 +139 opportunity 1 146 139 146 +140 opportunity 1 147 140 147 +141 opportunity 1 148 141 148 +142 opportunity 1 149 142 149 +143 opportunity 1 150 143 150 +144 opportunity 1 151 144 151 +145 opportunity 1 152 145 152 +146 opportunity 1 153 146 153 +147 opportunity 1 154 147 154 +148 opportunity 1 155 148 155 +149 opportunity 1 156 149 156 +150 opportunity 1 157 150 157 +151 opportunity 1 158 151 158 +152 opportunity 1 159 152 159 +153 opportunity 1 160 153 160 +154 opportunity 1 161 154 161 +155 opportunity 1 162 155 162 +156 opportunity 1 163 156 163 +157 opportunity 1 164 157 164 +158 opportunity 1 165 158 165 +159 opportunity 1 166 159 166 +160 opportunity 1 167 160 167 +161 opportunity 1 168 161 168 +162 opportunity 1 169 162 169 +163 opportunity 1 170 163 170 +164 opportunity 1 171 164 171 +165 opportunity 1 172 165 172 +166 opportunity 1 173 166 173 +167 opportunity 1 174 167 174 +168 opportunity 1 175 168 175 +169 opportunity 1 176 169 176 +170 opportunity 1 177 170 177 +171 opportunity 1 178 171 178 +172 opportunity 1 179 172 179 +173 opportunity 1 180 173 180 +174 opportunity 1 181 174 181 +175 opportunity 19 182 175 182 +176 opportunity 1 183 176 183 +177 opportunity 1 184 177 184 +178 opportunity 1 185 178 185 +179 opportunity 1 186 179 186 +180 opportunity 1 187 180 187 +181 opportunity 1 188 181 188 +182 opportunity 1 189 182 189 +183 opportunity 1 190 183 190 +184 opportunity 1 191 184 191 +185 opportunity 1 192 185 192 +186 opportunity 1 193 186 193 +187 opportunity 1 194 187 194 +188 opportunity 1 195 188 195 +189 opportunity 1 196 189 196 +190 opportunity 1 197 190 197 +191 opportunity 1 198 191 198 +192 opportunity 1 199 192 199 +193 opportunity 1 200 193 200 +194 opportunity 1 201 194 201 +195 opportunity 1 202 195 202 +196 opportunity 1 203 196 203 +197 opportunity 1 204 197 204 +198 opportunity 105 205 198 205 +199 opportunity 1 206 199 206 +200 opportunity 1 207 200 207 +201 opportunity 1 208 201 208 +202 opportunity 1 209 202 209 +203 opportunity 1 210 203 210 +204 opportunity 101 211 204 211 +205 opportunity 101 212 205 212 +206 opportunity 144 213 206 213 +207 opportunity 70 214 207 214 +208 opportunity 144 215 208 215 +209 opportunity 68 216 209 216 +210 opportunity 120 217 210 217 +211 opportunity 149 218 211 218 +212 opportunity 126 219 212 219 +213 opportunity 15 220 213 220 +214 opportunity 119 221 214 221 +215 opportunity 8 222 215 222 +216 opportunity 150 223 216 223 +217 opportunity 95 224 217 224 +218 opportunity 68 225 218 225 +219 opportunity 100 226 219 226 +220 opportunity 68 227 220 227 +221 opportunity 68 228 221 228 +222 opportunity 11 229 222 229 +223 opportunity 8 230 223 230 +224 opportunity 11 231 224 231 +225 opportunity 107 232 225 232 +226 opportunity 170 233 226 233 +227 opportunity 19 234 227 234 +228 opportunity 19 235 228 235 +229 opportunity 185 236 229 236 +230 opportunity 183 237 230 237 +231 opportunity 185 238 231 238 +232 opportunity 185 239 232 239 +233 opportunity 84 240 233 240 +234 opportunity 68 241 234 241 +235 opportunity 10 242 235 242 +236 opportunity 68 243 236 243 +237 opportunity 70 244 237 244 +238 opportunity 150 245 238 245 +239 opportunity 71 246 239 246 +240 opportunity 100 247 240 247 +241 opportunity 70 248 241 248 +242 opportunity 59 249 242 249 +243 opportunity 59 250 243 250 +244 opportunity 59 251 244 251 +245 opportunity 1 252 245 252 +246 opportunity 111 253 246 253 +247 opportunity 186 254 247 254 +248 opportunity 10 255 248 255 +249 opportunity 56 256 249 256 +250 opportunity 185 257 250 257 +251 opportunity 149 258 251 258 +252 opportunity 160 259 252 259 +253 opportunity 149 260 253 260 +254 opportunity 57 261 254 261 +255 opportunity 170 262 255 262 +256 opportunity 185 263 256 263 +257 opportunity 185 264 257 264 +258 opportunity 121 265 258 265 +259 opportunity 88 266 259 266 +260 opportunity 88 267 260 267 +261 opportunity 58 268 261 268 +262 opportunity 15 269 262 269 +263 opportunity 149 270 263 270 +264 opportunity 31 271 264 271 +265 opportunity 57 272 265 272 +266 opportunity 128 273 266 273 +267 opportunity 7 274 267 274 +268 opportunity 121 275 268 275 +269 opportunity 153 276 269 276 +270 opportunity 11 277 270 277 +271 opportunity 11 278 271 278 +272 opportunity 71 279 272 279 +273 opportunity 31 280 273 280 +274 opportunity 100 281 274 281 +275 opportunity 111 282 275 282 +276 opportunity 126 283 276 283 +277 opportunity 126 284 277 284 +278 opportunity 19 285 278 285 +279 opportunity 100 286 279 286 +280 opportunity 148 287 280 287 +281 opportunity 1 288 281 288 +282 opportunity 61 289 282 289 +283 opportunity 57 290 283 290 +284 opportunity 54 291 284 291 +285 opportunity 83 292 285 292 +286 opportunity 132 293 286 293 +287 opportunity 27 294 287 294 +288 opportunity 121 295 288 295 +289 opportunity 110 296 289 296 +290 opportunity 111 297 290 297 +291 opportunity 111 298 291 298 +292 opportunity 128 299 292 299 +293 opportunity 70 300 293 300 +294 opportunity 183 301 294 301 +295 opportunity 121 302 295 302 +296 opportunity 58 303 296 303 +297 opportunity 55 304 297 304 +298 opportunity 101 305 298 305 +299 opportunity 149 306 299 306 +300 opportunity 100 307 300 307 +301 opportunity 18 308 301 308 +302 opportunity 80 309 302 309 +303 opportunity 144 310 303 310 +304 opportunity 10 312 304 312 +305 opportunity 19 313 305 313 +306 opportunity 10 314 306 314 +307 opportunity 31 315 307 315 +308 opportunity 149 316 308 316 +309 opportunity 19 317 309 317 +310 opportunity 18 318 310 318 +311 opportunity 117 319 311 319 +312 opportunity 79 320 312 320 +313 opportunity 68 321 313 321 +314 opportunity 170 322 314 322 +315 opportunity 170 323 315 323 +316 opportunity 160 324 316 324 +317 opportunity 19 325 317 325 +318 opportunity 11 326 318 326 +319 opportunity 88 327 319 327 +320 opportunity 127 328 320 328 +321 opportunity 121 329 321 329 +322 opportunity 126 330 322 330 +323 opportunity 18 331 323 331 +324 opportunity 186 332 324 332 +325 opportunity 101 333 325 333 +326 opportunity 19 334 326 334 +327 opportunity 19 335 327 335 +328 opportunity 126 336 328 336 +329 opportunity 126 337 329 337 +330 opportunity 126 338 330 338 +331 opportunity 126 339 331 339 +332 opportunity 19 340 332 340 +333 opportunity 127 341 333 341 +334 opportunity 113 342 334 342 +335 opportunity 15 343 335 343 +336 opportunity 31 344 336 344 +337 opportunity 89 345 337 345 +338 opportunity 113 346 338 346 +339 opportunity 120 347 339 347 +340 opportunity 56 348 340 348 +341 opportunity 56 349 341 349 +342 opportunity 170 350 342 350 +343 opportunity 119 351 343 351 +344 opportunity 2 352 344 352 +345 opportunity 17 353 345 353 +346 opportunity 120 354 346 354 +347 opportunity 56 355 347 355 +348 opportunity 132 356 348 356 +349 opportunity 31 357 349 357 +350 opportunity 149 358 350 358 +351 opportunity 149 359 351 359 +352 opportunity 120 360 352 360 +353 opportunity 120 361 353 361 +354 opportunity 19 362 354 362 +355 opportunity 122 363 355 363 +356 opportunity 66 364 356 364 +357 opportunity 15 365 357 365 +358 opportunity 18 366 358 366 +359 opportunity 18 367 359 367 +360 opportunity 57 368 360 368 +361 opportunity 131 369 361 369 +362 opportunity 2 370 362 370 +363 opportunity 17 371 363 371 +364 opportunity 2 372 364 372 +365 opportunity 170 373 365 373 +366 opportunity 127 374 366 374 +367 opportunity 130 375 367 375 +368 opportunity 19 376 368 376 +369 opportunity 77 377 369 377 +370 opportunity 107 378 370 378 +371 opportunity 107 379 371 379 +372 opportunity 17 380 372 380 +373 opportunity 107 381 373 381 +374 opportunity 2 382 374 382 +375 opportunity 170 383 375 383 +376 opportunity 121 384 376 384 +377 opportunity 132 385 377 385 +378 opportunity 107 386 378 386 +379 opportunity 3 387 379 387 +380 opportunity 126 388 380 388 +381 opportunity 139 389 381 389 +382 opportunity 121 390 382 390 +383 opportunity 31 391 383 391 +384 opportunity 111 392 384 392 +385 opportunity 111 393 385 393 +386 opportunity 121 394 386 394 +387 opportunity 185 395 387 395 +388 opportunity 2 396 388 396 +389 opportunity 11 397 389 397 +390 opportunity 31 398 390 398 +391 opportunity 83 399 391 399 +392 opportunity 31 400 392 400 +393 opportunity 15 401 393 401 +394 opportunity 48 402 394 402 +395 opportunity 2 403 395 403 +396 opportunity 125 404 396 404 +397 opportunity 128 405 397 405 +398 opportunity 100 406 398 406 +399 opportunity 53 407 399 407 +400 opportunity 106 408 400 408 +401 opportunity 185 409 401 409 +402 opportunity 144 410 402 410 +403 opportunity 126 411 403 411 +404 opportunity 102 412 404 412 +405 opportunity 126 413 405 413 +406 opportunity 58 414 406 414 +407 opportunity 121 415 407 415 +408 opportunity 170 416 408 416 +409 opportunity 56 417 409 417 +410 opportunity 105 418 410 418 +411 opportunity 3 419 411 419 +412 opportunity 149 420 412 420 +413 opportunity 31 421 413 421 +414 opportunity 31 422 414 422 +415 opportunity 31 423 415 423 +416 opportunity 139 424 416 424 +417 opportunity 22 425 417 425 +418 opportunity 104 426 418 426 +419 opportunity 58 427 419 427 +420 opportunity 126 428 420 428 +421 opportunity 57 429 421 429 +422 opportunity 59 430 422 430 +423 opportunity 105 431 423 431 +424 opportunity 15 432 424 432 +425 opportunity 58 433 425 433 +426 opportunity 146 434 426 434 +427 opportunity 120 435 427 435 +428 opportunity 149 436 428 436 +429 opportunity 19 437 429 437 +430 opportunity 19 438 430 438 +431 opportunity 107 439 431 439 +432 opportunity 130 440 432 440 +433 opportunity 11 441 433 441 +434 opportunity 105 443 434 443 +435 opportunity 130 444 435 444 +436 opportunity 51 445 436 445 +437 opportunity 122 446 437 446 +438 opportunity 144 447 438 447 +439 opportunity 20 448 439 448 +440 opportunity 42 449 440 449 +441 opportunity 19 450 441 450 +442 opportunity 1 451 442 451 +443 opportunity 15 452 443 452 +444 opportunity 48 453 444 453 +445 opportunity 149 454 445 454 +446 opportunity 56 455 446 455 +447 opportunity 26 456 447 456 +448 opportunity 19 457 448 457 +449 opportunity 40 458 449 458 +450 opportunity 36 459 450 459 +451 opportunity 170 460 451 460 +452 opportunity 15 461 452 461 +453 opportunity 11 462 453 462 +454 opportunity 37 463 454 463 +455 opportunity 105 464 455 464 +456 opportunity 186 465 456 465 +457 opportunity 182 466 457 466 +458 opportunity 121 467 458 467 +459 opportunity 57 468 459 468 +460 opportunity 52 469 460 469 +461 opportunity 162 470 461 470 +462 opportunity 105 471 462 471 +463 opportunity 1 472 463 472 +464 opportunity 54 473 464 473 +465 opportunity 109 474 465 474 +466 opportunity 31 475 466 475 +467 opportunity 31 476 467 476 +468 opportunity 145 477 468 477 +469 opportunity 130 478 469 478 +470 opportunity 183 479 470 479 +471 opportunity 183 480 471 480 +472 opportunity 10 481 472 481 +473 opportunity 144 482 473 482 +474 opportunity 37 483 474 483 +475 opportunity 31 484 475 484 +476 opportunity 11 485 476 485 +477 opportunity 31 486 477 486 +478 opportunity 62 487 478 487 +479 opportunity 71 488 479 488 +480 opportunity 1 489 480 489 +481 opportunity 71 490 481 490 +482 opportunity 9 491 482 491 +483 opportunity 106 492 483 492 +484 opportunity 144 493 484 493 +485 opportunity 145 494 485 494 +486 opportunity 178 495 486 495 +487 opportunity 117 496 487 496 +488 opportunity 15 497 488 497 +489 opportunity 117 498 489 498 +490 opportunity 117 499 490 499 +491 opportunity 15 500 491 500 +492 opportunity 133 501 492 501 +493 opportunity 31 502 493 502 +494 opportunity 123 503 494 503 +495 opportunity 19 504 495 504 +496 opportunity 31 505 496 505 +497 opportunity 111 506 497 506 +498 opportunity 126 507 498 507 +499 opportunity 170 508 499 508 +500 opportunity 2 509 500 509 +501 opportunity 104 510 501 510 +502 opportunity 133 511 502 511 +503 opportunity 168 512 503 512 +504 opportunity 144 513 504 513 +505 opportunity 18 514 505 514 +506 opportunity 89 515 506 515 +507 opportunity 89 516 507 516 +508 opportunity 18 517 508 517 +509 opportunity 15 518 509 518 +510 opportunity 40 519 510 519 +511 opportunity 15 520 511 520 +512 opportunity 114 521 512 521 +513 opportunity 54 522 513 522 +514 opportunity 54 523 514 523 +515 opportunity 122 524 515 524 +516 opportunity 102 525 516 525 +517 opportunity 102 526 517 526 +518 opportunity 70 527 518 527 +519 opportunity 88 528 519 528 +520 opportunity 17 529 520 529 +521 opportunity 15 530 521 530 +522 opportunity 70 531 522 531 +523 opportunity 39 532 523 532 +524 opportunity 66 533 524 533 +525 opportunity 144 534 525 534 +526 opportunity 13 535 526 535 +527 opportunity 122 536 527 536 +528 opportunity 107 537 528 537 +529 opportunity 15 538 529 538 +530 opportunity 15 539 530 539 +531 opportunity 122 540 531 540 +532 opportunity 103 541 532 541 +533 opportunity 31 542 533 542 +534 opportunity 166 543 534 543 +535 opportunity 68 544 535 544 +536 opportunity 192 545 536 545 +537 opportunity 19 546 537 546 +538 opportunity 19 547 538 547 +539 opportunity 130 548 539 548 +540 opportunity 162 549 540 549 +541 opportunity 39 550 541 550 +542 opportunity 183 551 542 551 +543 opportunity 128 552 543 552 +544 opportunity 141 553 544 553 +545 opportunity 39 554 545 554 +546 opportunity 96 555 546 555 +547 opportunity 71 556 547 556 +548 opportunity 1 557 548 557 +549 opportunity 105 558 549 558 +550 opportunity 66 559 550 559 +551 opportunity 2 560 551 560 +552 opportunity 61 561 552 561 +553 opportunity 132 562 553 562 +554 opportunity 139 563 554 563 +555 opportunity 1 564 555 564 +556 opportunity 170 565 556 565 +557 opportunity 192 566 557 566 +558 opportunity 31 567 558 567 +559 opportunity 192 568 559 568 +560 opportunity 192 569 560 569 +561 opportunity 130 570 561 570 +562 opportunity 68 571 562 571 +563 opportunity 159 572 563 572 +564 opportunity 160 573 564 573 +565 opportunity 31 574 565 574 +566 opportunity 11 575 566 575 +567 opportunity 148 576 567 576 +568 opportunity 1 577 568 577 +569 opportunity 128 578 569 578 +570 opportunity 117 579 570 579 +571 opportunity 58 580 571 580 +572 opportunity 58 581 572 581 +573 opportunity 100 582 573 582 +574 opportunity 144 583 574 583 +575 opportunity 188 584 575 584 +576 opportunity 39 585 576 585 +577 opportunity 100 586 577 586 +578 opportunity 162 587 578 587 +579 opportunity 68 588 579 588 +580 opportunity 19 589 580 589 +581 opportunity 57 590 581 590 +582 opportunity 68 591 582 591 +583 opportunity 17 592 583 592 +584 opportunity 183 593 584 593 +585 opportunity 95 594 585 594 +586 opportunity 81 595 586 595 +587 opportunity 103 596 587 596 +588 opportunity 3 597 588 597 +589 opportunity 71 598 589 598 +590 opportunity 186 599 590 599 +591 opportunity 126 600 591 600 +592 opportunity 120 601 592 601 +593 opportunity 15 602 593 602 +594 opportunity 128 603 594 603 +595 opportunity 166 604 595 604 +596 opportunity 26 605 596 605 +597 opportunity 73 606 597 606 +598 opportunity 170 607 598 607 +599 opportunity 19 608 599 608 +600 opportunity 23 609 600 609 +601 opportunity 73 610 601 610 +602 opportunity 132 611 602 611 +603 opportunity 192 612 603 612 +604 opportunity 51 613 604 613 +605 opportunity 162 614 605 614 +606 opportunity 162 615 606 615 +607 opportunity 149 616 607 616 +608 opportunity 57 617 608 617 +609 opportunity 130 618 609 618 +610 opportunity 130 619 610 619 +611 opportunity 105 620 611 620 +612 opportunity 175 621 612 621 +613 opportunity 183 622 613 622 +614 opportunity 73 623 614 623 +615 opportunity 29 624 615 624 +616 opportunity 127 625 616 625 +617 opportunity 144 626 617 626 +618 opportunity 127 627 618 627 +619 opportunity 127 628 619 628 +620 opportunity 119 629 620 629 +621 opportunity 2 630 621 630 +622 opportunity 2 631 622 631 +623 opportunity 130 632 623 632 +624 opportunity 121 633 624 633 +625 opportunity 105 634 625 634 +626 opportunity 105 635 626 635 +627 opportunity 107 636 627 636 +628 opportunity 15 637 628 637 +629 opportunity 121 638 629 638 +630 opportunity 7 639 630 639 +631 opportunity 11 640 631 640 +632 opportunity 192 641 632 641 +633 opportunity 104 642 633 642 +634 opportunity 62 643 634 643 +635 opportunity 105 644 635 644 +636 opportunity 57 645 636 645 +637 opportunity 105 646 637 646 +638 opportunity 105 647 638 647 +639 opportunity 58 648 639 648 +640 opportunity 50 649 640 649 +641 opportunity 144 650 641 650 +642 opportunity 29 651 642 651 +643 opportunity 147 652 643 652 +644 opportunity 129 653 644 653 +645 opportunity 57 654 645 654 +646 opportunity 141 655 646 655 +647 opportunity 80 656 647 656 +648 opportunity 147 657 648 657 +649 opportunity 7 658 649 658 +650 opportunity 19 659 650 659 +651 opportunity 19 660 651 660 +652 opportunity 19 661 652 661 +653 opportunity 19 662 653 662 +654 opportunity 38 663 654 663 +655 opportunity 61 664 655 664 +656 opportunity 101 665 656 665 +657 opportunity 101 666 657 666 +658 opportunity 171 667 658 667 +659 opportunity 50 668 659 668 +660 opportunity 29 669 660 669 +661 opportunity 31 670 661 670 +662 opportunity 31 671 662 671 +663 opportunity 31 672 663 672 +664 opportunity 101 673 664 673 +665 opportunity 144 674 665 674 +666 opportunity 50 675 666 675 +667 opportunity 117 676 667 676 +668 opportunity 176 677 668 677 +669 opportunity 149 678 669 678 +670 opportunity 61 679 670 679 +671 opportunity 31 680 671 680 +672 opportunity 106 681 672 681 +673 opportunity 122 682 673 682 +674 opportunity 175 683 674 683 +675 opportunity 54 684 675 684 +676 opportunity 3 685 676 685 +677 opportunity 50 686 677 686 +678 opportunity 176 687 678 687 +679 opportunity 29 688 679 688 +680 opportunity 29 689 680 689 +681 opportunity 10 690 681 690 +682 opportunity 68 691 682 691 +683 opportunity 105 692 683 692 +684 opportunity 129 693 684 693 +685 opportunity 60 694 685 694 +686 opportunity 144 695 686 695 +687 opportunity 1 696 687 696 +688 opportunity 120 697 688 697 +689 opportunity 31 698 689 698 +690 opportunity 62 699 690 699 +691 opportunity 71 700 691 700 +692 opportunity 71 701 692 701 +693 opportunity 71 702 693 702 +694 opportunity 162 703 694 703 +695 opportunity 100 704 695 704 +696 opportunity 100 705 696 705 +697 opportunity 100 706 697 706 +698 opportunity 144 707 698 707 +699 opportunity 121 708 699 708 +700 opportunity 26 709 700 709 +701 opportunity 1 710 701 710 +702 opportunity 1 711 702 711 +703 opportunity 1 712 703 712 +704 opportunity 2 713 704 713 +705 opportunity 1 714 705 714 +706 opportunity 2 715 706 715 +707 opportunity 149 716 707 716 +708 opportunity 61 717 708 717 +709 opportunity 126 718 709 718 +710 opportunity 79 719 710 719 +711 opportunity 39 720 711 720 +712 opportunity 39 721 712 721 +713 opportunity 127 722 713 722 +714 opportunity 10 723 714 723 +715 opportunity 147 724 715 724 +716 opportunity 65 725 716 725 +717 opportunity 19 726 717 726 +718 opportunity 107 727 718 727 +719 opportunity 31 728 719 728 +720 opportunity 31 729 720 729 +721 opportunity 31 730 721 730 +722 opportunity 89 731 722 731 +723 opportunity 133 732 723 732 +724 opportunity 133 733 724 733 +725 opportunity 34 734 725 734 +726 opportunity 157 735 726 735 +727 opportunity 23 736 727 736 +728 opportunity 31 737 728 737 +729 opportunity 31 738 729 738 +730 opportunity 31 739 730 739 +731 opportunity 132 740 731 740 +732 opportunity 19 741 732 741 +733 opportunity 132 742 733 742 +734 opportunity 119 743 734 743 +735 opportunity 119 744 735 744 +736 opportunity 3 745 736 745 +737 opportunity 144 746 737 746 +738 opportunity 100 747 738 747 +739 opportunity 73 748 739 748 +740 opportunity 160 749 740 749 +741 opportunity 183 750 741 750 +742 opportunity 183 751 742 751 +743 opportunity 183 752 743 752 +744 opportunity 79 753 744 753 +745 opportunity 18 754 745 754 +746 opportunity 23 755 746 755 +747 opportunity 47 756 747 756 +748 opportunity 166 757 748 757 +749 opportunity 19 758 749 758 +750 opportunity 107 759 750 759 +751 opportunity 146 760 751 760 +752 opportunity 2 761 752 761 +753 opportunity 128 762 753 762 +754 opportunity 188 763 754 763 +755 opportunity 61 764 755 764 +756 opportunity 146 765 756 765 +757 opportunity 19 766 757 766 +758 opportunity 160 767 758 767 +759 opportunity 68 768 759 768 +760 opportunity 29 769 760 769 +761 opportunity 159 770 761 770 +762 opportunity 159 771 762 771 +763 opportunity 93 772 763 772 +764 opportunity 31 773 764 773 +765 opportunity 61 774 765 774 +766 opportunity 32 775 766 775 +767 opportunity 120 776 767 776 +768 opportunity 121 777 768 777 +769 opportunity 121 778 769 778 +770 opportunity 48 779 770 779 +771 opportunity 1 780 771 780 +772 opportunity 129 781 772 781 +773 opportunity 129 782 773 782 +774 opportunity 38 783 774 783 +775 opportunity 174 784 775 784 +776 opportunity 129 785 776 785 +777 opportunity 146 786 777 786 +778 opportunity 129 787 778 787 +779 opportunity 146 788 779 788 +780 opportunity 129 789 780 789 +781 opportunity 182 790 781 790 +782 opportunity 141 791 782 791 +783 opportunity 146 792 783 792 +784 opportunity 71 793 784 793 +785 opportunity 117 794 785 794 +786 opportunity 79 795 786 795 +787 opportunity 1 796 787 796 +788 opportunity 11 797 788 797 +789 opportunity 165 798 789 798 +790 opportunity 58 799 790 799 +791 opportunity 117 800 791 800 +792 opportunity 48 801 792 801 +793 opportunity 136 802 793 802 +794 opportunity 61 803 794 803 +795 opportunity 121 804 795 804 +796 opportunity 128 805 796 805 +797 volunteer 1 806 797 806 +798 volunteer 1 807 798 807 +799 volunteer 1 808 799 808 +800 volunteer 1 809 800 809 +801 volunteer 1 810 801 810 +802 volunteer 1 811 802 811 +803 volunteer 1 812 803 812 +804 volunteer 1 813 804 813 +805 volunteer 1 814 805 814 +806 volunteer 1 815 806 815 +807 volunteer 1 816 807 816 +808 volunteer 1 817 808 817 +809 volunteer 1 818 809 818 +810 volunteer 1 819 810 819 +811 volunteer 1 820 811 820 +812 volunteer 1 821 812 821 +813 volunteer 1 822 813 822 +814 volunteer 1 823 814 823 +815 volunteer 1 824 815 824 +816 volunteer 1 825 816 825 +817 volunteer 1 826 817 826 +818 volunteer 1 827 818 827 +819 volunteer 1 828 819 828 +820 volunteer 1 829 820 829 +821 volunteer 1 830 821 830 +822 volunteer 1 831 822 831 +823 volunteer 1 832 823 832 +824 volunteer 1 833 824 833 +825 volunteer 1 834 825 834 +826 volunteer 1 835 826 835 +827 volunteer 1 836 827 836 +828 volunteer 1 837 828 837 +829 volunteer 1 838 829 838 +830 volunteer 1 839 830 839 +831 volunteer 1 840 831 840 +832 volunteer 1 841 832 841 +833 volunteer 1 842 833 842 +834 volunteer 1 843 834 843 +835 volunteer 1 844 835 844 +836 volunteer 1 845 836 845 +837 volunteer 1 846 837 846 +838 volunteer 1 847 838 847 +839 volunteer 1 848 839 848 +840 volunteer 1 849 840 849 +841 volunteer 1 850 841 850 +842 volunteer 1 851 842 851 +843 volunteer 1 852 843 852 +844 volunteer 1 853 844 853 +845 volunteer 1 854 845 854 +846 volunteer 1 855 846 855 +847 volunteer 1 856 847 856 +848 volunteer 1 857 848 857 +849 volunteer 1 858 849 858 +850 volunteer 1 859 850 859 +851 volunteer 1 860 851 860 +852 volunteer 1 861 852 861 +853 volunteer 1 862 853 862 +854 volunteer 1 863 854 863 +855 volunteer 1 864 855 864 +856 volunteer 1 865 856 865 +857 volunteer 1 866 857 866 +858 volunteer 1 867 858 867 +859 volunteer 1 868 859 868 +860 volunteer 1 869 860 869 +861 volunteer 1 870 861 870 +862 volunteer 1 871 862 871 +863 volunteer 1 872 863 872 +864 volunteer 1 873 864 873 +865 volunteer 1 874 865 874 +866 volunteer 65 875 866 875 +867 volunteer 1 876 867 876 +868 volunteer 1 877 868 877 +869 volunteer 1 878 869 878 +870 volunteer 1 879 870 879 +871 volunteer 1 880 871 880 +872 volunteer 1 881 872 881 +873 volunteer 1 882 873 882 +874 volunteer 1 883 874 883 +875 volunteer 1 884 875 884 +876 volunteer 1 885 876 885 +877 volunteer 1 886 877 886 +878 volunteer 1 887 878 887 +879 volunteer 1 888 879 888 +880 volunteer 1 889 880 889 +881 volunteer 1 890 881 890 +882 volunteer 1 891 882 891 +883 volunteer 1 892 883 892 +884 volunteer 1 893 884 893 +885 volunteer 1 894 885 894 +886 volunteer 1 895 886 895 +887 volunteer 1 896 887 896 +888 volunteer 1 897 888 897 +889 volunteer 1 898 889 898 +890 volunteer 1 899 890 899 +891 volunteer 1 900 891 900 +892 volunteer 1 901 892 901 +893 volunteer 1 902 893 902 +894 volunteer 1 903 894 903 +895 volunteer 1 904 895 904 +896 volunteer 1 905 896 905 +897 volunteer 1 906 897 906 +898 volunteer 140 907 898 907 +899 volunteer 1 908 899 908 +900 volunteer 1 909 900 909 +901 volunteer 1 910 901 910 +902 volunteer 1 911 902 911 +903 volunteer 1 912 903 912 +904 volunteer 1 913 904 913 +905 volunteer 1 914 905 914 +906 volunteer 1 915 906 915 +907 volunteer 1 916 907 916 +908 volunteer 1 917 908 917 +909 volunteer 1 918 909 918 +910 volunteer 1 919 910 919 +911 volunteer 1 920 911 920 +912 volunteer 1 921 912 921 +913 volunteer 104 922 913 922 +914 volunteer 1 923 914 923 +915 volunteer 1 924 915 924 +916 volunteer 1 925 916 925 +917 volunteer 1 926 917 926 +918 volunteer 1 927 918 927 +919 volunteer 1 928 919 928 +920 volunteer 1 929 920 929 +921 volunteer 1 930 921 930 +922 volunteer 1 931 922 931 +923 volunteer 1 932 923 932 +924 volunteer 1 933 924 933 +925 volunteer 1 934 925 934 +926 volunteer 1 935 926 935 +927 volunteer 1 936 927 936 +928 volunteer 1 937 928 937 +929 volunteer 1 938 929 938 +930 volunteer 1 939 930 939 +931 volunteer 1 940 931 940 +932 volunteer 1 941 932 941 +933 volunteer 1 942 933 942 +934 volunteer 1 943 934 943 +935 volunteer 1 944 935 944 +936 volunteer 1 945 936 945 +937 volunteer 1 946 937 946 +938 volunteer 1 947 938 947 +939 volunteer 1 948 939 948 +940 volunteer 1 949 940 949 +941 volunteer 1 950 941 950 +942 volunteer 1 951 942 951 +943 volunteer 1 952 943 952 +944 volunteer 1 953 944 953 +945 volunteer 1 954 945 954 +946 volunteer 1 955 946 955 +947 volunteer 1 956 947 956 +948 volunteer 1 957 948 957 +949 volunteer 1 958 949 958 +950 volunteer 1 959 950 959 +951 volunteer 1 960 951 960 +952 volunteer 60 961 952 961 +953 volunteer 1 962 953 962 +954 volunteer 1 963 954 963 +955 volunteer 4 964 955 964 +956 volunteer 1 965 956 965 +957 volunteer 1 966 957 966 +958 volunteer 1 967 958 967 +959 volunteer 1 968 959 968 +960 volunteer 1 969 960 969 +961 volunteer 1 970 961 970 +962 volunteer 1 971 962 971 +963 volunteer 1 972 963 972 +964 volunteer 1 973 964 973 +965 volunteer 1 974 965 974 +966 volunteer 1 975 966 975 +967 volunteer 1 976 967 976 +968 volunteer 1 977 968 977 +969 volunteer 1 978 969 978 +970 volunteer 1 979 970 979 +971 volunteer 1 980 971 980 +972 volunteer 1 981 972 981 +973 volunteer 1 982 973 982 +974 volunteer 1 983 974 983 +975 volunteer 1 984 975 984 +976 volunteer 1 985 976 985 +977 volunteer 1 986 977 986 +978 volunteer 1 987 978 987 +979 volunteer 1 988 979 988 +980 volunteer 1 989 980 989 +981 volunteer 1 990 981 990 +982 volunteer 1 991 982 991 +983 volunteer 1 992 983 992 +984 volunteer 1 993 984 993 +985 volunteer 1 994 985 994 +986 volunteer 1 995 986 995 +987 volunteer 1 996 987 996 +988 volunteer 1 997 988 997 +989 volunteer 1 998 989 998 +990 volunteer 1 999 990 999 +991 volunteer 1 1000 991 1000 +992 volunteer 1 1001 992 1001 +993 volunteer 1 1002 993 1002 +994 volunteer 1 1003 994 1003 +995 volunteer 1 1004 995 1004 +996 volunteer 1 1005 996 1005 +997 volunteer 1 1006 997 1006 +998 volunteer 1 1007 998 1007 +999 volunteer 1 1008 999 1008 +1000 volunteer 1 1009 1000 1009 +1001 volunteer 1 1010 1001 1010 +1002 volunteer 1 1011 1002 1011 +1003 volunteer 1 1012 1003 1012 +1004 volunteer 1 1013 1004 1013 +1005 volunteer 1 1014 1005 1014 +1006 volunteer 1 1015 1006 1015 +1007 volunteer 1 1016 1007 1016 +1008 volunteer 1 1017 1008 1017 +1009 volunteer 1 1018 1009 1018 +1010 volunteer 1 1019 1010 1019 +1011 volunteer 1 1020 1011 1020 +1012 volunteer 1 1021 1012 1021 +1013 volunteer 102 1022 1013 1022 +1014 volunteer 1 1023 1014 1023 +1015 volunteer 1 1024 1015 1024 +1016 volunteer 1 1025 1016 1025 +1017 volunteer 1 1026 1017 1026 +1018 volunteer 1 1027 1018 1027 +1019 volunteer 1 1028 1019 1028 +1020 volunteer 1 1029 1020 1029 +1021 volunteer 1 1030 1021 1030 +1022 volunteer 1 1031 1022 1031 +1023 volunteer 1 1032 1023 1032 +1024 volunteer 1 1033 1024 1033 +1025 volunteer 1 1034 1025 1034 +1026 volunteer 1 1035 1026 1035 +1027 volunteer 1 1036 1027 1036 +1028 volunteer 1 1037 1028 1037 +1029 volunteer 99 1038 1029 1038 +1030 volunteer 1 1039 1030 1039 +1031 volunteer 1 1040 1031 1040 +1032 volunteer 1 1041 1032 1041 +1033 volunteer 1 1042 1033 1042 +1034 volunteer 1 1043 1034 1043 +1035 volunteer 1 1044 1035 1044 +1036 volunteer 1 1045 1036 1045 +1037 volunteer 1 1046 1037 1046 +1038 volunteer 1 1047 1038 1047 +1039 volunteer 1 1048 1039 1048 +1040 volunteer 1 1049 1040 1049 +1041 volunteer 1 1050 1041 1050 +1042 volunteer 1 1051 1042 1051 +1043 volunteer 1 1052 1043 1052 +1044 volunteer 1 1053 1044 1053 +1045 volunteer 1 1054 1045 1054 +1046 volunteer 1 1055 1046 1055 +1047 volunteer 1 1056 1047 1056 +1048 volunteer 1 1057 1048 1057 +1049 volunteer 1 1058 1049 1058 +1050 volunteer 1 1059 1050 1059 +1051 volunteer 1 1060 1051 1060 +1052 volunteer 1 1061 1052 1061 +1053 volunteer 1 1062 1053 1062 +1054 volunteer 1 1063 1054 1063 +1055 volunteer 1 1064 1055 1064 +1056 volunteer 1 1065 1056 1065 +1057 volunteer 1 1066 1057 1066 +1058 volunteer 1 1067 1058 1067 +1059 volunteer 1 1068 1059 1068 +1060 volunteer 1 1069 1060 1069 +1061 volunteer 1 1070 1061 1070 +1062 volunteer 1 1071 1062 1071 +1063 volunteer 1 1072 1063 1072 +1064 volunteer 1 1073 1064 1073 +1065 volunteer 1 1074 1065 1074 +1066 volunteer 1 1075 1066 1075 +1067 volunteer 1 1076 1067 1076 +1068 volunteer 1 1077 1068 1077 +1069 volunteer 1 1078 1069 1078 +1070 volunteer 1 1079 1070 1079 +1071 volunteer 1 1080 1071 1080 +1072 volunteer 1 1081 1072 1081 +1073 volunteer 1 1082 1073 1082 +1074 volunteer 1 1083 1074 1083 +1075 volunteer 1 1084 1075 1084 +1076 volunteer 1 1085 1076 1085 +1077 volunteer 1 1086 1077 1086 +1078 volunteer 1 1087 1078 1087 +1079 volunteer 1 1088 1079 1088 +1080 volunteer 1 1089 1080 1089 +1081 volunteer 1 1090 1081 1090 +1082 volunteer 1 1091 1082 1091 +1083 volunteer 1 1092 1083 1092 +1084 volunteer 1 1093 1084 1093 +1085 volunteer 1 1094 1085 1094 +1086 volunteer 1 1095 1086 1095 +1087 volunteer 1 1096 1087 1096 +1088 volunteer 1 1097 1088 1097 +1089 volunteer 1 1098 1089 1098 +1090 volunteer 1 1099 1090 1099 +1091 volunteer 1 1100 1091 1100 +1092 volunteer 1 1101 1092 1101 +1093 volunteer 1 1102 1093 1102 +1094 volunteer 1 1103 1094 1103 +1095 volunteer 1 1104 1095 1104 +1096 volunteer 1 1105 1096 1105 +1097 volunteer 1 1106 1097 1106 +1098 volunteer 1 1107 1098 1107 +1099 volunteer 1 1108 1099 1108 +1100 volunteer 1 1109 1100 1109 +1101 volunteer 1 1110 1101 1110 +1102 volunteer 102 1111 1102 1111 +1103 volunteer 144 1112 1103 1112 +1104 volunteer 61 1113 1104 1113 +1105 volunteer 1 1114 1105 1114 +1106 volunteer 1 1115 1106 1115 +1107 volunteer 11 1116 1107 1116 +1108 volunteer 125 1117 1108 1117 +1109 volunteer 16 1118 1109 1118 +1110 volunteer 145 1119 1110 1119 +1111 volunteer 71 1120 1111 1120 +1112 volunteer 103 1121 1112 1121 +1113 volunteer 1 1122 1113 1122 +1114 volunteer 9 1123 1114 1123 +1115 volunteer 29 1124 1115 1124 +1116 volunteer 21 1125 1116 1125 +1117 volunteer 66 1126 1117 1126 +1118 volunteer 128 1127 1118 1127 +1119 volunteer 115 1128 1119 1128 +1120 volunteer 86 1129 1120 1129 +1121 volunteer 54 1130 1121 1130 +1122 volunteer 114 1131 1122 1131 +1123 volunteer 10 1132 1123 1132 +1124 volunteer 140 1133 1124 1133 +1125 volunteer 189 1134 1125 1134 +1126 volunteer 64 1135 1126 1135 +1127 volunteer 143 1136 1127 1136 +1128 volunteer 54 1137 1128 1137 +1129 volunteer 141 1138 1129 1138 +1130 volunteer 22 1139 1130 1139 +1131 volunteer 142 1140 1131 1140 +1132 volunteer 95 1141 1132 1141 +1133 volunteer 8 1142 1133 1142 +1134 volunteer 101 1143 1134 1143 +1135 volunteer 20 1144 1135 1144 +1136 volunteer 151 1145 1136 1145 +1137 volunteer 2 1146 1137 1146 +1138 volunteer 6 1147 1138 1147 +1139 volunteer 81 1148 1139 1148 +1140 volunteer 62 1149 1140 1149 +1141 volunteer 62 1150 1141 1150 +1142 volunteer 8 1151 1142 1151 +1143 volunteer 2 1152 1143 1152 +1144 volunteer 103 1153 1144 1153 +1145 volunteer 139 1154 1145 1154 +1146 volunteer 69 1155 1146 1155 +1147 volunteer 141 1156 1147 1156 +1148 volunteer 186 1157 1148 1157 +1149 volunteer 8 1158 1149 1158 +1150 volunteer 105 1159 1150 1159 +1151 volunteer 147 1160 1151 1160 +1152 volunteer 59 1161 1152 1161 +1153 volunteer 51 1162 1153 1162 +1154 volunteer 54 1163 1154 1163 +1155 volunteer 55 1164 1155 1164 +1156 volunteer 18 1165 1156 1165 +1157 volunteer 74 1166 1157 1166 +1158 volunteer 29 1167 1158 1167 +1159 volunteer 43 1168 1159 1168 +1160 volunteer 26 1169 1160 1169 +1161 volunteer 133 1170 1161 1170 +1162 volunteer 190 1171 1162 1171 +1163 volunteer 27 1172 1163 1172 +1164 volunteer 1 1173 1164 1173 +1165 volunteer 62 1174 1165 1174 +1166 volunteer 7 1175 1166 1175 +1167 volunteer 69 1176 1167 1176 +1168 volunteer 6 1177 1168 1177 +1169 volunteer 6 1178 1169 1178 +1170 volunteer 6 1179 1170 1179 +1171 volunteer 127 1180 1171 1180 +1172 volunteer 7 1181 1172 1181 +1173 volunteer 39 1182 1173 1182 +1174 volunteer 23 1183 1174 1183 +1175 volunteer 53 1184 1175 1184 +1176 volunteer 9 1185 1176 1185 +1177 volunteer 144 1186 1177 1186 +1178 volunteer 47 1187 1178 1187 +1179 volunteer 60 1188 1179 1188 +1180 volunteer 130 1189 1180 1189 +1181 volunteer 1 1190 1181 1190 +1182 volunteer 62 1191 1182 1191 +1183 volunteer 65 1192 1183 1192 +1184 volunteer 146 1193 1184 1193 +1185 volunteer 189 1194 1185 1194 +1186 volunteer 168 1195 1186 1195 +1187 volunteer 94 1196 1187 1196 +1188 volunteer 49 1197 1188 1197 +1189 volunteer 50 1198 1189 1198 +1190 volunteer 104 1199 1190 1199 +1191 volunteer 53 1200 1191 1200 +1192 volunteer 54 1201 1192 1201 +1193 volunteer 76 1202 1193 1202 +1194 volunteer 1 1203 1194 1203 +1195 volunteer 44 1204 1195 1204 +1196 volunteer 46 1205 1196 1205 +1197 volunteer 46 1206 1197 1206 +1198 volunteer 45 1207 1198 1207 +1199 volunteer 65 1208 1199 1208 +1200 volunteer 9 1209 1200 1209 +1201 volunteer 117 1210 1201 1210 +1202 volunteer 27 1211 1202 1211 +1203 volunteer 50 1212 1203 1212 +1204 volunteer 101 1213 1204 1213 +1205 volunteer 1 1214 1205 1214 +1206 volunteer 65 1215 1206 1215 +1207 volunteer 6 1216 1207 1216 +1208 volunteer 50 1217 1208 1217 +1209 volunteer 120 1218 1209 1218 +1210 volunteer 32 1219 1210 1219 +1211 volunteer 183 1220 1211 1220 +1212 volunteer 141 1221 1212 1221 +1213 volunteer 147 1222 1213 1222 +1214 volunteer 76 1223 1214 1223 +1215 volunteer 108 1224 1215 1224 +1216 volunteer 9 1225 1216 1225 +1217 volunteer 18 1226 1217 1226 +1218 volunteer 60 1227 1218 1227 +1219 volunteer 127 1228 1219 1228 +1220 volunteer 67 1229 1220 1229 +1221 volunteer 139 1230 1221 1230 +1222 volunteer 108 1231 1222 1231 +1223 volunteer 65 1232 1223 1232 +1224 volunteer 131 1233 1224 1233 +1225 volunteer 57 1234 1225 1234 +1226 volunteer 143 1235 1226 1235 +1227 volunteer 63 1236 1227 1236 +1228 volunteer 179 1237 1228 1237 +1229 volunteer 64 1238 1229 1238 +1230 volunteer 101 1239 1230 1239 +1231 volunteer 6 1240 1231 1240 +1232 volunteer 57 1241 1232 1241 +1233 volunteer 2 1242 1233 1242 +1234 volunteer 77 1243 1234 1243 +1235 volunteer 8 1244 1235 1244 +1236 volunteer 59 1245 1236 1245 +1237 volunteer 63 1246 1237 1246 +1238 volunteer 5 1247 1238 1247 +1239 volunteer 23 1248 1239 1248 +1240 volunteer 66 1249 1240 1249 +1241 volunteer 28 1250 1241 1250 +1242 volunteer 8 1251 1242 1251 +1243 volunteer 58 1252 1243 1252 +1244 volunteer 59 1253 1244 1253 +1245 volunteer 9 1254 1245 1254 +1246 volunteer 43 1255 1246 1255 +1247 volunteer 81 1256 1247 1256 +1248 volunteer 60 1257 1248 1257 +1249 volunteer 55 1258 1249 1258 +1250 volunteer 58 1259 1250 1259 +1251 volunteer 26 1260 1251 1260 +1252 volunteer 59 1261 1252 1261 +1253 volunteer 178 1262 1253 1262 +1254 volunteer 7 1263 1254 1263 +1255 volunteer 59 1264 1255 1264 +1256 volunteer 185 1265 1256 1265 +1257 volunteer 19 1266 1257 1266 +1258 volunteer 98 1267 1258 1267 +1259 volunteer 11 1268 1259 1268 +1260 volunteer 62 1269 1260 1269 +1261 volunteer 6 1270 1261 1270 +1262 volunteer 1 1271 1262 1271 +1263 volunteer 129 1272 1263 1272 +1264 volunteer 59 1273 1264 1273 +1265 volunteer 154 1274 1265 1274 +1266 volunteer 23 1275 1266 1275 +1267 volunteer 26 1276 1267 1276 +1268 volunteer 57 1277 1268 1277 +1269 volunteer 163 1278 1269 1278 +1270 volunteer 144 1279 1270 1279 +1271 volunteer 56 1280 1271 1280 +1272 volunteer 1 1281 1272 1281 +1273 volunteer 60 1282 1273 1282 +1274 volunteer 23 1283 1274 1283 +1275 volunteer 177 1284 1275 1284 +1276 volunteer 148 1285 1276 1285 +1277 volunteer 162 1286 1277 1286 +1278 volunteer 144 1287 1278 1287 +1279 volunteer 85 1288 1279 1288 +1280 volunteer 9 1289 1280 1289 +1281 volunteer 51 1290 1281 1290 +1282 volunteer 36 1291 1282 1291 +1283 volunteer 10 1292 1283 1292 +1284 volunteer 141 1293 1284 1293 +1285 volunteer 147 1294 1285 1294 +1286 volunteer 110 1295 1286 1295 +1287 volunteer 52 1296 1287 1296 +1288 volunteer 18 1297 1288 1297 +1289 volunteer 172 1298 1289 1298 +1290 volunteer 143 1299 1290 1299 +1291 volunteer 116 1300 1291 1300 +1292 volunteer 27 1301 1292 1301 +1293 volunteer 164 1302 1293 1302 +1294 volunteer 113 1303 1294 1303 +1295 volunteer 153 1304 1295 1304 +1296 volunteer 28 1305 1296 1305 +1297 volunteer 11 1306 1297 1306 +1298 volunteer 139 1307 1298 1307 +1299 volunteer 64 1308 1299 1308 +1300 volunteer 44 1309 1300 1309 +1301 volunteer 65 1310 1301 1310 +1302 volunteer 60 1311 1302 1311 +1303 volunteer 164 1312 1303 1312 +1304 volunteer 8 1313 1304 1313 +1305 volunteer 24 1314 1305 1314 +1306 volunteer 11 1315 1306 1315 +1307 volunteer 8 1316 1307 1316 +1308 volunteer 1 1317 1308 1317 +1309 volunteer 189 1318 1309 1318 +1310 volunteer 192 1319 1310 1319 +1311 volunteer 4 1320 1311 1320 +1312 volunteer 147 1321 1312 1321 +1313 volunteer 106 1322 1313 1322 +1314 volunteer 90 1323 1314 1323 +1315 volunteer 105 1324 1315 1324 +1316 volunteer 103 1325 1316 1325 +1317 volunteer 7 1326 1317 1326 +1318 volunteer 1 1327 1318 1327 +1319 volunteer 140 1328 1319 1328 +1320 volunteer 22 1329 1320 1329 +1321 volunteer 31 1330 1321 1330 +1322 volunteer 23 1331 1322 1331 +1323 volunteer 23 1332 1323 1332 +1324 volunteer 190 1333 1324 1333 +1325 volunteer 101 1334 1325 1334 +1326 volunteer 23 1335 1326 1335 +1327 volunteer 32 1336 1327 1336 +1328 volunteer 35 1337 1328 1337 +1329 volunteer 12 1338 1329 1338 +1330 volunteer 160 1339 1330 1339 +1331 volunteer 3 1340 1331 1340 +1332 volunteer 57 1341 1332 1341 +1333 volunteer 61 1342 1333 1342 +1334 volunteer 141 1343 1334 1343 +1335 volunteer 92 1344 1335 1344 +1336 volunteer 144 1345 1336 1345 +1337 volunteer 58 1346 1337 1346 +1338 volunteer 28 1347 1338 1347 +1339 volunteer 73 1348 1339 1348 +1340 volunteer 7 1349 1340 1349 +1341 volunteer 66 1350 1341 1350 +1342 volunteer 130 1351 1342 1351 +1343 volunteer 23 1352 1343 1352 +1344 volunteer 25 1353 1344 1353 +1345 volunteer 52 1354 1345 1354 +1346 volunteer 131 1355 1346 1355 +1347 volunteer 149 1356 1347 1356 +1348 volunteer 8 1357 1348 1357 +1349 volunteer 9 1358 1349 1358 +1350 volunteer 81 1359 1350 1359 +1351 volunteer 18 1360 1351 1360 +1352 volunteer 97 1361 1352 1361 +1353 volunteer 70 1362 1353 1362 +1354 volunteer 168 1363 1354 1363 +1355 volunteer 3 1364 1355 1364 +1356 volunteer 100 1365 1356 1365 +1357 volunteer 11 1366 1357 1366 +1358 volunteer 4 1367 1358 1367 +1359 volunteer 164 1368 1359 1368 +1360 volunteer 58 1369 1360 1369 +1361 volunteer 25 1370 1361 1370 +1362 volunteer 164 1371 1362 1371 +1363 volunteer 1 1372 1363 1372 +1364 volunteer 28 1373 1364 1373 +1365 volunteer 7 1374 1365 1374 +1366 volunteer 21 1375 1366 1375 +1367 volunteer 26 1376 1367 1376 +1368 volunteer 28 1377 1368 1377 +1369 volunteer 9 1378 1369 1378 +1370 volunteer 28 1379 1370 1379 +1371 volunteer 13 1380 1371 1380 +1372 volunteer 67 1381 1372 1381 +1373 volunteer 15 1382 1373 1382 +1374 volunteer 59 1383 1374 1383 +1375 volunteer 7 1384 1375 1384 +1376 volunteer 69 1385 1376 1385 +1377 volunteer 25 1386 1377 1386 +1378 volunteer 35 1387 1378 1387 +1379 volunteer 18 1388 1379 1388 +1380 volunteer 60 1389 1380 1389 +1381 volunteer 36 1390 1381 1390 +1382 volunteer 6 1391 1382 1391 +1383 volunteer 13 1392 1383 1392 +1384 volunteer 53 1393 1384 1393 +1385 volunteer 65 1394 1385 1394 +1386 volunteer 41 1395 1386 1395 +1387 volunteer 63 1396 1387 1396 +1388 volunteer 52 1397 1388 1397 +1389 volunteer 39 1398 1389 1398 +1390 volunteer 71 1399 1390 1399 +1391 volunteer 10 1400 1391 1400 +1392 volunteer 77 1401 1392 1401 +1393 volunteer 56 1402 1393 1402 +1394 volunteer 63 1403 1394 1403 +1395 volunteer 13 1404 1395 1404 +1396 volunteer 3 1405 1396 1405 +1397 volunteer 54 1406 1397 1406 +1398 volunteer 50 1407 1398 1407 +1399 volunteer 185 1408 1399 1408 +1400 volunteer 15 1409 1400 1409 +1401 volunteer 9 1410 1401 1410 +1402 volunteer 20 1411 1402 1411 +1403 volunteer 77 1412 1403 1412 +1404 volunteer 39 1413 1404 1413 +1405 volunteer 137 1414 1405 1414 +1406 volunteer 25 1415 1406 1415 +1407 volunteer 167 1416 1407 1416 +1408 volunteer 166 1417 1408 1417 +1409 volunteer 166 1418 1409 1418 +1410 volunteer 109 1419 1410 1419 +1411 volunteer 175 1420 1411 1420 +1412 volunteer 148 1421 1412 1421 +1413 volunteer 61 1422 1413 1422 +1414 volunteer 151 1423 1414 1423 +1415 volunteer 65 1424 1415 1424 +1416 volunteer 10 1425 1416 1425 +1417 volunteer 2 1426 1417 1426 +1418 volunteer 77 1427 1418 1427 +1419 volunteer 13 1428 1419 1428 +1420 volunteer 146 1429 1420 1429 +1421 volunteer 65 1430 1421 1430 +1422 volunteer 121 1431 1422 1431 +1423 volunteer 71 1432 1423 1432 +1424 volunteer 186 1433 1424 1433 +1425 volunteer 79 1434 1425 1434 +1426 volunteer 142 1435 1426 1435 +1427 volunteer 11 1436 1427 1436 +1428 volunteer 139 1437 1428 1437 +1429 volunteer 147 1438 1429 1438 +1430 volunteer 50 1439 1430 1439 +1431 volunteer 63 1440 1431 1440 +1432 volunteer 7 1441 1432 1441 +1433 volunteer 3 1442 1433 1442 +1434 volunteer 70 1443 1434 1443 +1435 volunteer 4 1444 1435 1444 +1436 volunteer 33 1445 1436 1445 +1437 volunteer 66 1446 1437 1446 +1438 volunteer 33 1447 1438 1447 +1439 volunteer 13 1448 1439 1448 +1440 volunteer 181 1449 1440 1449 +1441 volunteer 14 1450 1441 1450 +1442 volunteer 22 1451 1442 1451 +1443 volunteer 23 1452 1443 1452 +1444 volunteer 66 1453 1444 1453 +1445 volunteer 54 1454 1445 1454 +1446 volunteer 151 1455 1446 1455 +1447 volunteer 83 1456 1447 1456 +1448 volunteer 4 1457 1448 1457 +1449 volunteer 4 1458 1449 1458 +1450 volunteer 147 1459 1450 1459 +1451 volunteer 6 1460 1451 1460 +1452 volunteer 60 1461 1452 1461 +1453 volunteer 67 1462 1453 1462 +1454 volunteer 42 1463 1454 1463 +1455 volunteer 144 1464 1455 1464 +1456 volunteer 39 1465 1456 1465 +1457 volunteer 91 1466 1457 1466 +1458 volunteer 14 1467 1458 1467 +1459 volunteer 91 1468 1459 1468 +1460 volunteer 130 1469 1460 1469 +1461 volunteer 146 1470 1461 1470 +1462 volunteer 21 1471 1462 1471 +1463 volunteer 151 1472 1463 1472 +1464 volunteer 17 1473 1464 1473 +1465 volunteer 18 1474 1465 1474 +1466 volunteer 7 1475 1466 1475 +1467 volunteer 192 1476 1467 1476 +1468 volunteer 125 1477 1468 1477 +1469 volunteer 40 1478 1469 1478 +1470 volunteer 64 1479 1470 1479 +1471 volunteer 49 1480 1471 1480 +1472 volunteer 101 1481 1472 1481 +1473 volunteer 62 1482 1473 1482 +1474 volunteer 3 1483 1474 1483 +1475 volunteer 8 1484 1475 1484 +1476 volunteer 67 1485 1476 1485 +1477 volunteer 124 1486 1477 1486 +1478 volunteer 52 1487 1478 1487 +1479 volunteer 17 1488 1479 1488 +1480 volunteer 69 1489 1480 1489 +1481 volunteer 54 1490 1481 1490 +1482 volunteer 21 1491 1482 1491 +1483 volunteer 136 1492 1483 1492 +1484 volunteer 31 1493 1484 1493 +1485 volunteer 13 1494 1485 1494 +1486 volunteer 61 1495 1486 1495 +1487 volunteer 131 1496 1487 1496 +1488 volunteer 20 1497 1488 1497 +1489 volunteer 67 1498 1489 1498 +1490 volunteer 1 1499 1490 1499 +1491 volunteer 177 1500 1491 1500 +1492 volunteer 64 1501 1492 1501 +1493 volunteer 21 1502 1493 1502 +1494 volunteer 121 1503 1494 1503 +1495 volunteer 67 1504 1495 1504 +1496 volunteer 67 1505 1496 1505 +1497 volunteer 50 1506 1497 1506 +1498 volunteer 65 1507 1498 1507 +1499 volunteer 131 1508 1499 1508 +1500 volunteer 93 1509 1500 1509 +1501 volunteer 168 1510 1501 1510 +1502 volunteer 85 1511 1502 1511 +1503 volunteer 101 1512 1503 1512 +1504 volunteer 85 1513 1504 1513 +1505 volunteer 6 1514 1505 1514 +1506 volunteer 7 1515 1506 1515 +1507 volunteer 165 1516 1507 1516 +1508 volunteer 103 1517 1508 1517 +1509 volunteer 65 1518 1509 1518 +1510 volunteer 6 1519 1510 1519 +1511 volunteer 12 1520 1511 1520 +1512 volunteer 109 1521 1512 1521 +1513 volunteer 9 1522 1513 1522 +1514 volunteer 54 1523 1514 1523 +1515 volunteer 103 1524 1515 1524 +1516 volunteer 155 1525 1516 1525 +1517 volunteer 45 1526 1517 1526 +1518 volunteer 60 1527 1518 1527 +1519 volunteer 1 1528 1519 1528 +1520 volunteer 61 1529 1520 1529 +1521 volunteer 19 1530 1521 1530 +1522 volunteer 16 1531 1522 1531 +1523 volunteer 12 1532 1523 1532 +1524 volunteer 145 1533 1524 1533 +1525 volunteer 64 1534 1525 1534 +1526 volunteer 186 1535 1526 1535 +1527 volunteer 4 1536 1527 1536 +1528 volunteer 144 1537 1528 1537 +1529 volunteer 123 1538 1529 1538 +1530 volunteer 8 1539 1530 1539 +1531 volunteer 45 1540 1531 1540 +1532 volunteer 124 1541 1532 1541 +1533 volunteer 144 1542 1533 1542 +1534 volunteer 160 1543 1534 1543 +1535 volunteer 22 1544 1535 1544 +1536 volunteer 141 1545 1536 1545 +1537 volunteer 21 1546 1537 1546 +1538 volunteer 18 1547 1538 1547 +1539 volunteer 140 1548 1539 1548 +1540 volunteer 97 1549 1540 1549 +1541 volunteer 105 1550 1541 1550 +1542 volunteer 57 1551 1542 1551 +1543 volunteer 56 1552 1543 1552 +1544 volunteer 23 1553 1544 1553 +1545 volunteer 8 1554 1545 1554 +1546 volunteer 54 1555 1546 1555 +1547 volunteer 40 1556 1547 1556 +1548 volunteer 15 1557 1548 1557 +1549 volunteer 63 1558 1549 1558 +1550 volunteer 114 1559 1550 1559 +1551 volunteer 53 1560 1551 1560 +1552 volunteer 52 1561 1552 1561 +1553 volunteer 27 1562 1553 1562 +1554 volunteer 191 1563 1554 1563 +1555 volunteer 35 1564 1555 1564 +1556 volunteer 186 1565 1556 1565 +1557 volunteer 131 1566 1557 1566 +1558 volunteer 144 1567 1558 1567 +1559 volunteer 78 1568 1559 1568 +1560 volunteer 61 1569 1560 1569 +1561 volunteer 37 1570 1561 1570 +1562 volunteer 60 1571 1562 1571 +1563 volunteer 28 1572 1563 1572 +1564 volunteer 62 1573 1564 1573 +1565 volunteer 165 1574 1565 1574 +1566 volunteer 2 1575 1566 1575 +1567 volunteer 25 1576 1567 1576 +1568 volunteer 66 1577 1568 1577 +1569 volunteer 27 1578 1569 1578 +1570 volunteer 69 1579 1570 1579 +1571 volunteer 141 1580 1571 1580 +1572 volunteer 77 1581 1572 1581 +1573 volunteer 144 1582 1573 1582 +1574 volunteer 150 1583 1574 1583 +1575 volunteer 7 1584 1575 1584 +1576 volunteer 2 1585 1576 1585 +1577 volunteer 31 1586 1577 1586 +1578 volunteer 18 1587 1578 1587 +1579 volunteer 25 1588 1579 1588 +1580 volunteer 47 1589 1580 1589 +1581 volunteer 12 1590 1581 1590 +1582 volunteer 129 1591 1582 1591 +1583 volunteer 102 1592 1583 1592 +1584 volunteer 65 1593 1584 1593 +1585 volunteer 94 1594 1585 1594 +1586 volunteer 10 1595 1586 1595 +1587 volunteer 29 1596 1587 1596 +1588 volunteer 128 1597 1588 1597 +1589 volunteer 128 1598 1589 1598 +1590 volunteer 5 1599 1590 1599 +1591 volunteer 192 1600 1591 1600 +1592 volunteer 192 1601 1592 1601 +1593 volunteer 39 1602 1593 1602 +1594 volunteer 121 1603 1594 1603 +1595 volunteer 39 1604 1595 1604 +1596 volunteer 66 1605 1596 1605 +1597 volunteer 102 1606 1597 1606 +1598 volunteer 36 1607 1598 1607 +1599 volunteer 63 1608 1599 1608 +1600 volunteer 122 1609 1600 1609 +1601 volunteer 182 1610 1601 1610 +1602 volunteer 120 1611 1602 1611 +1603 volunteer 2 1612 1603 1612 +1604 volunteer 72 1613 1604 1613 +1605 volunteer 72 1614 1605 1614 +1606 volunteer 101 1615 1606 1615 +1607 volunteer 82 1616 1607 1616 +1608 volunteer 63 1617 1608 1617 +1609 volunteer 19 1618 1609 1618 +1610 volunteer 36 1619 1610 1619 +1611 volunteer 114 1620 1611 1620 +1612 volunteer 128 1621 1612 1621 +1613 volunteer 15 1622 1613 1622 +1614 volunteer 8 1623 1614 1623 +1615 volunteer 1 1624 1615 1624 +1616 volunteer 38 1625 1616 1625 +1617 volunteer 108 1626 1617 1626 +1618 volunteer 146 1627 1618 1627 +1619 volunteer 140 1628 1619 1628 +1620 volunteer 146 1629 1620 1629 +1621 volunteer 192 1630 1621 1630 +1622 volunteer 122 1631 1622 1631 +1623 volunteer 188 1632 1623 1632 +1624 volunteer 122 1633 1624 1633 +1625 volunteer 159 1634 1625 1634 +1626 volunteer 39 1635 1626 1635 +1627 volunteer 148 1636 1627 1636 +1628 volunteer 127 1637 1628 1637 +1629 volunteer 201 1638 1629 1638 +\. + + +-- +-- Data for Name: district; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.district (id, title) FROM stdin; +1 Mitte +2 Friedrichshain-Kreuzberg +3 Pankow +4 Charlottenburg-Wilmersdorf +5 Spandau +6 Steglitz-Zehlendorf +7 Tempelhof-Schöneberg +8 Neukölln +9 Treptow-Köpenick +10 Marzahn-Hellersdorf +11 Lichtenberg +12 Reinickendorf +13 Hellersdorf +14 Treptow +15 Marzahn +16 Schöneberg +17 Tempelhof +18 Berlin +19 Friedrichshain +20 Marienfelde +21 Charlottenburg +22 Tegel +23 Köpenick +24 Moabit +25 Prenzlauer Berg +26 Zehlendorf +27 Wilmersdorf +28 Remote +29 Königs Wusterhausen +30 Kreuzberg +31 Steglitz +32 Weißensee +33 Wedding +34 Rudow +35 Potsdam +36 Remotely +37 Freidrichshain +38 Phone translation +39 Telefonisch +\. + + +-- +-- Data for Name: district_postcode; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.district_postcode (id, district_id, postcode_id) FROM stdin; +1 1 2 +2 1 28 +3 1 145 +4 1 3 +5 1 32 +6 1 146 +7 1 4 +8 1 47 +9 1 147 +10 1 5 +11 1 48 +12 1 149 +13 1 6 +14 1 55 +15 1 150 +16 1 21 +17 1 58 +18 1 151 +19 1 24 +20 1 141 +21 1 25 +22 1 142 +23 1 26 +24 1 143 +25 1 27 +26 1 144 +27 2 6 +28 2 57 +29 2 7 +30 2 58 +31 2 8 +32 2 59 +33 2 9 +34 2 60 +35 2 10 +36 2 62 +37 2 16 +38 2 47 +39 2 54 +40 2 55 +41 2 56 +42 3 4 +43 3 126 +44 3 139 +45 3 9 +46 3 130 +47 3 140 +48 3 10 +49 3 131 +50 3 18 +51 3 132 +52 3 19 +53 3 133 +54 3 20 +55 3 134 +56 3 21 +57 3 135 +58 3 22 +59 3 136 +60 3 23 +61 3 137 +62 3 125 +63 3 138 +64 4 25 +65 4 38 +66 4 144 +67 4 177 +68 4 29 +69 4 39 +70 4 170 +71 4 188 +72 4 30 +73 4 40 +74 4 172 +75 4 189 +76 4 31 +77 4 41 +78 4 173 +79 4 190 +80 4 32 +81 4 42 +82 4 174 +83 4 33 +84 4 43 +85 4 175 +86 4 34 +87 4 44 +88 4 176 +89 4 35 +90 4 48 +91 4 192 +92 4 36 +93 4 49 +94 4 178 +95 4 37 +96 4 51 +97 4 179 +98 5 162 +99 5 172 +100 5 163 +101 5 173 +102 5 164 +103 5 175 +104 5 165 +105 5 180 +106 5 166 +107 5 167 +108 5 168 +109 5 169 +110 5 170 +111 5 171 +112 6 76 +113 6 87 +114 6 177 +115 6 78 +116 6 88 +117 6 188 +118 6 79 +119 6 89 +120 6 189 +121 6 80 +122 6 90 +123 6 190 +124 6 81 +125 6 181 +126 6 82 +127 6 182 +128 6 83 +129 6 183 +130 6 84 +131 6 184 +132 6 85 +133 6 185 +134 6 86 +135 6 186 +136 7 43 +137 7 53 +138 7 78 +139 7 189 +140 7 44 +141 7 56 +142 7 79 +143 7 45 +144 7 70 +145 7 82 +146 7 46 +147 7 71 +148 7 88 +149 7 47 +150 7 72 +151 7 89 +152 7 48 +153 7 73 +154 7 90 +155 7 49 +156 7 74 +157 7 91 +158 7 50 +159 7 75 +160 7 92 +161 7 51 +162 7 76 +163 7 93 +164 7 52 +165 7 77 +166 7 94 +167 8 56 +168 8 69 +169 8 100 +170 8 57 +171 8 70 +172 8 61 +173 8 74 +174 8 62 +175 8 91 +176 8 63 +177 8 94 +178 8 64 +179 8 95 +180 8 65 +181 8 96 +182 8 66 +183 8 97 +184 8 67 +185 8 98 +186 8 68 +187 8 99 +188 9 101 +189 9 110 +190 9 102 +191 9 111 +192 9 191 +193 9 112 +194 9 103 +195 9 113 +196 9 104 +197 9 116 +198 9 105 +199 9 106 +200 9 107 +201 9 108 +202 9 109 +203 10 109 +204 10 123 +205 10 114 +206 10 124 +207 10 115 +208 10 116 +209 10 117 +210 10 118 +211 10 119 +212 10 120 +213 10 121 +214 10 122 +215 11 11 +216 11 128 +217 11 12 +218 11 129 +219 11 13 +220 11 14 +221 11 15 +222 11 16 +223 11 17 +224 11 125 +225 11 126 +226 11 127 +227 12 148 +228 12 158 +229 12 149 +230 12 159 +231 12 150 +232 12 160 +233 12 151 +234 12 161 +235 12 152 +236 12 171 +237 12 153 +238 12 173 +239 12 154 +240 12 155 +241 12 156 +242 12 157 +\. + + +-- +-- Data for Name: document; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.document (id, type, s3_key, original_name, mime_type, volunteer_id, created_at, updated_at) FROM stdin; +\. + + +-- +-- Data for Name: event_n4d; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.event_n4d (id, is_active, date, date_end, type, pic, location_link, rsvp_link, followup_link, address, host_name, language_id) FROM stdin; +\. + + +-- +-- Data for Name: event_translation; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.event_translation (id, title, subtitle, menu_title, time_str, location_comment, description, short_description, additional_title, additional_info, outro, followup_text, eventn4d_id, language_id) FROM stdin; +\. + + +-- +-- Data for Name: field_translation; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.field_translation (id, field_name, language_id, entity_type, entity_id, translation) FROM stdin; +1 title 1833 language 1540 German +2 title 1540 language 1540 Deutsch +3 title 1833 language 1833 English +4 title 1540 language 1833 Englisch +5 title 1833 language 345 Arabic +6 title 1540 language 345 Arabisch +7 title 1833 language 1910 Farsi/Dari +8 title 1540 language 1910 Farsi/Dari +9 title 1833 language 6644 Turkish +10 title 1540 language 6644 Türkisch +11 title 1833 language 5677 Russian +12 title 1540 language 5677 Russisch +13 title 1833 language 6769 Ukrainian +14 title 1540 language 6769 Ukrainisch +15 title 1833 language 1954 French +16 title 1540 language 1954 Französisch +17 title 1833 language 3151 Kurmanji +18 title 1540 language 3151 Kurmanci +19 title 1833 language 1200 Sorani +20 title 1540 language 1200 Sorani +21 title 1833 language 2521 Armenian +22 title 1540 language 2521 Armenisch +23 title 1833 language 618 Belarusian +24 title 1540 language 618 Weißrussisch +25 title 1833 language 1230 Chechen +26 title 1540 language 1230 Tschetschenisch +27 title 1833 language 7790 Chinese +28 title 1540 language 7790 Chinesisch +29 title 1833 language 1215 Czech +30 title 1540 language 1215 Tschechisch +31 title 1833 language 1482 Dari +32 title 1540 language 1482 Dari +33 title 1833 language 4698 Dutch +34 title 1540 language 4698 Niederländisch +35 title 1833 language 2854 Georgian +36 title 1540 language 2854 Georgisch +37 title 1833 language 1807 Greek +38 title 1540 language 1807 Griechisch +39 title 1833 language 2366 Hebrew +40 title 1540 language 2366 Hebräisch +41 title 1833 language 2388 Hindi +42 title 1540 language 2388 Hindi +43 title 1833 language 2665 Italian +44 title 1540 language 2665 Italienisch +45 title 1833 language 5445 Pashto +46 title 1540 language 5445 Paschtu +47 title 1833 language 5351 Polish +48 title 1540 language 5351 Polnisch +49 title 1833 language 5140 Punjabi +50 title 1540 language 5140 Punjabi +51 title 1833 language 5641 Romanes +52 title 1540 language 5641 Romanes +53 title 1833 language 5642 Romanian +54 title 1540 language 5642 Rumänisch +55 title 1833 language 6059 Serbian +56 title 1540 language 6059 Serbisch +57 title 1833 language 5998 Somali +58 title 1540 language 5998 Somali +59 title 1833 language 6011 Spanish +60 title 1540 language 6011 Spanisch +61 title 1833 language 6148 Swedish +62 title 1540 language 6148 Schwedisch +63 title 1833 language 6819 Urdu +64 title 1540 language 6819 Urdu +65 title 1833 language 6894 Vietnamese +66 title 1540 language 6894 Vietnamesisch +67 title 1833 language 7922 Other +68 title 1540 language 7922 Andere +69 title 1833 comment 1 German Language Support +70 title 1540 comment 1 Deutsche Unterstützung +71 description 1833 comment 1 Fluent in German? Support refugees by teaching german at language cafes and tutoring privately or in groups. +72 description 1540 comment 1 Sprichst du fließend Deutsch? Unterstütze Geflüchtete, indem du in Sprachcafés unterrichtest oder Nachhilfe gibst – privat oder in Gruppen. +73 title 1833 comment 2 Childcare +74 title 1540 comment 2 Kinderbetreuung +75 description 1833 comment 2 We are looking for volunteers to support children in refugee accommodation centers by assisting in daycare or helping with homework. Experience with children is a plus! +76 description 1540 comment 2 Hilf Kindern in Unterkünften – bei der Betreuung am Tag oder den Hausaufgaben. Erfahrung mit Kindern ist ein Plus! +77 title 1833 comment 3 Skills Based Volunteering +78 title 1540 comment 3 Ehrenamt mit Fachkenntnissen +79 description 1833 comment 3 Some opportunities may offer a chance to use your special expertise, such as bike repair, gardening, musical skills, or organizational savvy. +80 description 1540 comment 3 Nutze deine Fähigkeiten – z. B. Fahrradreparatur, Gartenarbeit oder Musik. +81 title 1833 comment 4 Events +82 title 1540 comment 4 Veranstaltungen +83 description 1833 comment 4 Occasionally events require unique support from volunteers. These might be festivals, dinners, outings, cultural activities, a day of setting up a clothes sorting station, gardening, or a workshop. +84 description 1540 comment 4 Manche Events brauchen extra Hilfe – Festivals, Ausflüge, Gartenarbeit oder Kleiderkammer einrichten. +85 title 1833 comment 5 Sport activities +86 title 1540 comment 5 Sportliche Aktivitäten +87 description 1833 comment 5 We are always looking for volunteers either for tandem, clothes sorting or to help organize sports activities for children, teenagers or adults in accommodation centers. +88 description 1540 comment 5 Hilf mit Kleiderkammer, Tandem oder Sportangebote für Kinder, Jugendliche oder Erwachsene in Unterkünften zu organisieren. +89 title 1833 comment 6 Accompany a Refugee +90 title 1540 comment 6 Flüchtlingen begleiten +91 description 1833 comment 6 Fluent in German and a second language? Support individuals in dealing with bureaucracy at appointments - going with them to the doctor, Job Centre or otherwise. +92 description 1540 comment 6 Sprichst du fließend Deutsch und eine weitere Sprache? Begleite Geflüchtete zu Ämtern, Ärzt:innen oder anderen Terminen. +93 title 1833 activity 1 Daycare +94 title 1540 activity 1 Kinderbetreuung +95 title 1833 activity 2 Sports +96 title 1540 activity 2 Sport +97 title 1833 activity 3 German language Cafe +98 title 1540 activity 3 Sprachcafé +99 title 1833 activity 4 Translation at Accommodation Centers +100 title 1540 activity 4 Sprachmittlung in Unterkünften +101 title 1833 activity 5 Fillout German forms +102 title 1540 activity 5 Ausfüllhilfe +103 title 1833 activity 6 Arts & Crafts +104 title 1540 activity 6 Basteln +105 title 1833 activity 7 Gardening +106 title 1540 activity 7 Gartenarbeit +107 title 1833 activity 8 One-day Volunteering (e.g. Festivals, Cleanups) +108 title 1540 activity 8 Eintägiges Engagement (z. B. Feier, Aufräumaktionen) +109 title 1833 activity 9 Playing board games +110 title 1540 activity 9 Brettspiele spielen +111 title 1833 activity 10 Reading books for children +112 title 1540 activity 10 Bücher vorlesen für Kinder +113 title 1833 activity 11 Activities for women +114 title 1540 activity 11 Aktivitäten für Frauen* +115 title 1833 activity 12 Activities for men +116 title 1540 activity 12 Aktivitäten für Männer* +117 title 1833 activity 13 Assist with homework +118 title 1540 activity 13 Nachhilfe +119 title 1833 activity 14 Sorting clothing +120 title 1540 activity 14 Kleiderkammer +121 title 1833 activity 15 Organizing excursions +122 title 1540 activity 15 Ausflüge organisieren +123 title 1833 activity 16 Miscellaneous +124 title 1540 activity 16 Sonstiges +125 title 1833 activity 17 Mentorship +126 title 1540 activity 17 Mentoren +127 title 1833 activity 18 Accompanying to government appointments +128 title 1540 activity 18 Begleitung: Termine bei Behörden* +129 title 1833 activity 19 Apartment viewing accompanying +130 title 1540 activity 19 Begleitung: Wohnungsbesichtigungen +131 title 1833 activity 20 Schools meetings accompanying +132 title 1540 activity 20 Begleitung: Termine in Schulen und Kitas +133 title 1833 activity 21 Accompanying +134 title 1540 activity 21 Wegbegleitung +135 title 1833 activity 22 Accompanying to doctors' +136 title 1540 activity 22 Begleitung: Arzttermine +137 title 1540 skill 1 Holzverarbeitung +138 title 1833 skill 1 Holzverarbeitung +139 title 1540 skill 2 Zeichnen +140 title 1833 skill 2 Zeichnen +141 title 1540 skill 3 Malen +142 title 1833 skill 3 Malen +143 title 1540 skill 4 Nähen +144 title 1833 skill 4 Nähen +145 title 1540 skill 5 Stricken +146 title 1833 skill 5 Stricken +147 title 1540 skill 6 Reparaturen +148 title 1833 skill 6 Reparaturen +149 title 1540 skill 7 Kochen +150 title 1833 skill 7 Kochen +151 title 1540 skill 8 Lehren +152 title 1833 skill 8 Lehren +153 title 1540 skill 9 Programmieren +154 title 1833 skill 9 Programmieren +155 title 1540 skill 10 Öffentliches Sprechen +156 title 1833 skill 10 Öffentliches Sprechen +157 title 1540 skill 11 Gartenarbeit +158 title 1833 skill 11 Gartenarbeit +159 title 1540 skill 12 Landschaftsgestaltung +160 title 1833 skill 12 Landschaftsgestaltung +161 title 1540 skill 13 Tischlerei +162 title 1833 skill 13 Tischlerei +163 title 1540 skill 14 Dekorieren +164 title 1833 skill 14 Dekorieren +165 title 1540 skill 15 Fahrradreparaturen +166 title 1833 skill 15 Fahrradreparaturen +167 title 1540 skill 16 Fotografie +168 title 1833 skill 16 Fotografie +169 title 1540 skill 17 Videografie +170 title 1833 skill 17 Videografie +171 title 1540 skill 18 Make-up +172 title 1833 skill 18 Make-up +173 title 1540 skill 19 Kreatives Schreiben +174 title 1833 skill 19 Kreatives Schreiben +175 title 1540 skill 20 Yoga +176 title 1833 skill 20 Yoga +177 title 1540 skill 21 Fitness +178 title 1833 skill 21 Fitness +179 title 1540 skill 22 Fußball +180 title 1833 skill 22 Fußball +181 title 1540 skill 23 Basketball +182 title 1833 skill 23 Basketball +183 title 1540 skill 24 Tanzen +184 title 1833 skill 24 Tanzen +185 title 1540 skill 25 Schach +186 title 1833 skill 25 Schach +187 title 1540 skill 26 Management +188 title 1833 skill 26 Management +189 title 1540 skill 27 Social-Media-Management (SMM) +190 title 1833 skill 27 Social-Media-Management (SMM) +191 title 1540 skill 28 Mediation +192 title 1833 skill 28 Mediation +193 title 1540 skill 29 Veranstaltungsplanung +194 title 1833 skill 29 Veranstaltungsplanung +195 title 1540 skill 30 Coaching +196 title 1833 skill 30 Coaching +197 title 1540 skill 31 Gitarre +198 title 1833 skill 31 Gitarre +199 title 1540 skill 32 Klavier +200 title 1833 skill 32 Klavier +201 title 1540 skill 33 Singen +202 title 1833 skill 33 Singen +203 title 1833 lead_from 1 Volunteering platform +204 title 1540 lead_from 1 Plattform für Freiwilligenarbeit +205 title 1833 lead_from 2 Social media +206 title 1540 lead_from 2 Soziale Medien +207 title 1833 lead_from 3 A newsletter +208 title 1540 lead_from 3 Ein Newsletter +209 title 1833 lead_from 4 Web search +210 title 1540 lead_from 4 Websuche +211 title 1833 lead_from 5 Friends +212 title 1540 lead_from 5 Freunde +213 title 1833 lead_from 6 Volunteer fair +214 title 1540 lead_from 6 Freiwilligenmesse +215 title 1833 lead_from 7 Flyer/Poster +216 title 1540 lead_from 7 Flyer/Plakat +\. + + +-- +-- Data for Name: language; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.language (id, iso_code, title) FROM stdin; +1 aaa Ghotuo +2 aab Alumu-Tesu +3 aac Ari +4 aad Amal +5 aae Arbëreshë Albanian +6 aaf Aranadan +7 aag Ambrak +8 aah Abu' Arapesh +9 aai Arifama-Miniafia +10 aak Ankave +11 aal Afade +12 aan Anambé +13 aao Algerian Saharan Arabic +14 aap Pará Arára +15 aaq Eastern Abnaki +16 aa Afar +17 aas Aasáx +18 aat Arvanitika Albanian +19 aau Abau +20 aaw Solong +21 aax Mandobo Atas +22 aaz Amarasi +23 aba Abé +24 abb Bankon +25 abc Ambala Ayta +26 abd Manide +27 abe Western Abnaki +28 abf Abai Sungai +29 abg Abaga +30 abh Tajiki Arabic +31 abi Abidji +32 abj Aka-Bea +33 ab Abkhazian +34 abl Lampung Nyo +35 abm Abanyom +36 abn Abua +37 abo Abon +38 abp Abellen Ayta +39 abq Abaza +40 abr Abron +41 abs Ambonese Malay +42 abt Ambulas +43 abu Abure +44 abv Baharna Arabic +45 abw Pal +46 abx Inabaknon +47 aby Aneme Wake +48 abz Abui +49 aca Achagua +50 acb Áncá +51 acd Gikyode +52 ace Achinese +53 acf Saint Lucian Creole French +54 ach Acoli +55 aci Aka-Cari +56 ack Aka-Kora +57 acl Akar-Bale +58 acm Mesopotamian Arabic +59 acn Achang +60 acp Eastern Acipa +61 acq Ta'izzi-Adeni Arabic +62 acr Achi +63 acs Acroá +64 act Achterhoeks +65 acu Achuar-Shiwiar +66 acv Achumawi +67 acw Hijazi Arabic +68 acx Omani Arabic +69 acy Cypriot Arabic +70 acz Acheron +71 ada Adangme +72 adb Atauran +73 add Lidzonka +74 ade Adele +75 adf Dhofari Arabic +76 adg Andegerebinha +77 adh Adhola +78 adi Adi +79 adj Adioukrou +80 adl Galo +81 adn Adang +82 ado Abu +83 adq Adangbe +84 adr Adonara +85 ads Adamorobe Sign Language +86 adt Adnyamathanha +87 adu Aduge +88 adw Amundava +89 adx Amdo Tibetan +90 ady Adyghe +91 adz Adzera +92 aea Areba +93 aeb Tunisian Arabic +94 aec Saidi Arabic +95 aed Argentine Sign Language +96 aee Northeast Pashai +97 aek Haeke +98 ael Ambele +99 aem Arem +100 aen Armenian Sign Language +101 aeq Aer +102 aer Eastern Arrernte +103 aes Alsea +104 aeu Akeu +105 aew Ambakich +106 aey Amele +107 aez Aeka +108 afb Gulf Arabic +109 afd Andai +110 afe Putukwam +111 afg Afghan Sign Language +112 afh Afrihili +113 afi Akrukay +114 afk Nanubae +115 afn Defaka +116 afo Eloyi +117 afp Tapei +118 af Afrikaans +119 afs Afro-Seminole Creole +120 aft Afitti +121 afu Awutu +122 afz Obokuitai +123 aga Aguano +124 agb Legbo +125 agc Agatu +126 agd Agarabi +127 age Angal +128 agf Arguni +129 agg Angor +130 agh Ngelima +131 agi Agariya +132 agj Argobba +133 agk Isarog Agta +134 agl Fembe +135 agm Angaataha +136 agn Agutaynen +137 ago Tainae +138 agq Aghem +139 agr Aguaruna +140 ags Esimbi +141 agt Central Cagayan Agta +142 agu Aguacateco +143 agv Remontado Dumagat +144 agw Kahua +145 agx Aghul +146 agy Southern Alta +147 agz Mt. Iriga Agta +148 aha Ahanta +149 ahb Axamb +150 ahg Qimant +151 ahh Aghu +152 ahi Tiagbamrin Aizi +153 ahk Akha +154 ahl Igo +155 ahm Mobumrin Aizi +156 ahn Àhà n +157 aho Ahom +158 ahp Aproumu Aizi +159 ahr Ahirani +160 ahs Ashe +161 aht Ahtena +162 aia Arosi +163 aib Ainu (China) +164 aic Ainbai +165 aid Alngith +166 aie Amara +167 aif Agi +336 aqd Ampari Dogon +168 aig Antigua and Barbuda Creole English +169 aih Ai-Cham +170 aii Assyrian Neo-Aramaic +171 aij Lishanid Noshan +172 aik Ake +173 ail Aimele +174 aim Aimol +175 ain Ainu (Japan) +176 aio Aiton +177 aip Burumakok +178 aiq Aimaq +179 air Airoran +180 ait Arikem +181 aiw Aari +182 aix Aighon +183 aiy Ali +184 aja Aja (South Sudan) +185 ajg Aja (Benin) +186 aji Ajië +187 ajn Andajin +188 ajs Algerian Jewish Sign Language +189 aju Judeo-Moroccan Arabic +190 ajw Ajawa +191 ajz Amri Karbi +192 ak Akan +193 akb Batak Angkola +194 akc Mpur +195 akd Ukpet-Ehom +196 ake Akawaio +197 akf Akpa +198 akg Anakalangu +199 akh Angal Heneng +200 aki Aiome +201 akj Aka-Jeru +202 akk Akkadian +203 akl Aklanon +204 akm Aka-Bo +205 ako Akurio +206 akp Siwu +207 akq Ak +208 akr Araki +209 aks Akaselem +210 akt Akolet +211 aku Akum +212 akv Akhvakh +213 akw Akwa +214 akx Aka-Kede +215 aky Aka-Kol +216 akz Alabama +217 ala Alago +218 alc Qawasqar +219 ald Alladian +220 ale Aleut +221 alf Alege +222 alh Alawa +223 ali Amaimon +224 alj Alangan +225 alk Alak +226 all Allar +227 alm Amblong +228 aln Gheg Albanian +229 alo Larike-Wakasihu +230 alp Alune +231 alq Algonquin +232 alr Alutor +233 als Tosk Albanian +234 alt Southern Altai +235 alu 'Are'are +236 alw Alaba-K’abeena +237 alx Amol +238 aly Alyawarr +239 alz Alur +240 ama Amanayé +241 amb Ambo +242 amc Amahuaca +243 ame Yanesha' +244 amf Hamer-Banna +245 amg Amurdak +246 am Amharic +247 ami Amis +248 amj Amdang +249 amk Ambai +250 aml War-Jaintia +251 amm Ama (Papua New Guinea) +252 amn Amanab +253 amo Amo +254 amp Alamblak +255 amq Amahai +256 amr Amarakaeri +257 ams Southern Amami-Oshima +258 amt Amto +259 amu Guerrero Amuzgo +260 amv Ambelau +261 amw Western Neo-Aramaic +262 amx Anmatyerre +263 amy Ami +264 amz Atampaya +265 ana Andaqui +266 anb Andoa +267 anc Ngas +268 and Ansus +269 ane Xârâcùù +270 anf Animere +271 ang Old English (ca. 450-1100) +272 anh Nend +273 ani Andi +274 anj Anor +275 ank Goemai +276 anl Anu-Hkongso Chin +277 anm Anal +278 ann Obolo +279 ano Andoque +280 anp Angika +281 anq Jarawa (India) +282 anr Andh +283 ans Anserma +284 ant Antakarinya +285 anu Anuak +286 anv Denya +287 anw Anaang +288 anx Andra-Hus +289 any Anyin +290 anz Anem +291 aoa Angolar +292 aob Abom +293 aoc Pemon +294 aod Andarum +295 aoe Angal Enen +296 aof Bragat +297 aog Angoram +298 aoi Anindilyakwa +299 aoj Mufian +300 aok Arhö +301 aol Alor +302 aom Ömie +303 aon Bumbita Arapesh +304 aor Aore +305 aos Taikat +306 aot Atong (India) +307 aou A'ou +308 aox Atorada +309 aoz Uab Meto +310 apb Sa'a +311 apc Levantine Arabic +312 apd Sudanese Arabic +313 ape Bukiyip +314 apf Pahanan Agta +315 apg Ampanang +316 aph Athpariya +317 api Apiaká +318 apj Jicarilla Apache +319 apk Kiowa Apache +320 apl Lipan Apache +321 apm Mescalero-Chiricahua Apache +322 apn Apinayé +323 apo Ambul +324 app Apma +325 apq A-Pucikwar +326 apr Arop-Lokep +327 aps Arop-Sissano +328 apt Apatani +329 apu Apurinã +330 apv Alapmunte +331 apw Western Apache +332 apx Aputai +333 apy Apalaí +334 apz Safeyoka +335 aqc Archi +337 aqg Arigidi +338 aqk Aninka +339 aqm Atohwaim +340 aqn Northern Alta +341 aqp Atakapa +342 aqr Arhâ +343 aqt Angaité +344 aqz Akuntsu +345 ar Arabic +346 arb Standard Arabic +347 arc Official Aramaic (700-300 BCE) +348 ard Arabana +349 are Western Arrarnta +350 an Aragonese +351 arh Arhuaco +352 ari Arikara +353 arj Arapaso +354 ark Arikapú +355 arl Arabela +356 arn Mapudungun +357 aro Araona +358 arp Arapaho +359 arq Algerian Arabic +360 arr Karo (Brazil) +361 ars Najdi Arabic +362 aru Aruá (Amazonas State) +363 arv Arbore +364 arw Arawak +365 arx Aruá (Rodonia State) +366 ary Moroccan Arabic +367 arz Egyptian Arabic +368 asa Asu (Tanzania) +369 asb Assiniboine +370 asc Casuarina Coast Asmat +371 ase American Sign Language +372 asf Auslan +373 asg Cishingini +374 ash Abishira +375 asi Buruwai +376 asj Sari +377 ask Ashkun +378 asl Asilulu +379 as Assamese +380 asn Xingú Asuriní +381 aso Dano +382 asp Algerian Sign Language +383 asq Austrian Sign Language +384 asr Asuri +385 ass Ipulo +386 ast Asturian +387 asu Tocantins Asurini +388 asv Asoa +389 asw Australian Aborigines Sign Language +390 asx Muratayak +391 asy Yaosakor Asmat +392 asz As +393 ata Pele-Ata +394 atb Zaiwa +395 atc Atsahuaca +396 atd Ata Manobo +397 ate Atemble +398 atg Ivbie North-Okpela-Arhe +399 ati Attié +400 atj Atikamekw +401 atk Ati +402 atl Mt. Iraya Agta +403 atm Ata +404 atn Ashtiani +405 ato Atong (Cameroon) +406 atp Pudtol Atta +407 atq Aralle-Tabulahan +408 atr Waimiri-Atroari +409 ats Gros Ventre +410 att Pamplona Atta +411 atu Reel +412 atv Northern Altai +413 atw Atsugewi +414 atx Arutani +415 aty Aneityum +416 atz Arta +417 aua Asumboa +418 aub Alugu +419 auc Waorani +420 aud Anuta +421 aug Aguna +422 auh Aushi +423 aui Anuki +424 auj Awjilah +425 auk Heyo +426 aul Aulua +427 aum Asu (Nigeria) +428 aun Molmo One +429 auo Auyokawa +430 aup Makayam +431 auq Anus +432 aur Aruek +433 aut Austral +434 auu Auye +435 auw Awyi +436 aux Aurá +437 auy Awiyaana +438 auz Uzbeki Arabic +439 av Avaric +440 avb Avau +441 avd Alviri-Vidari +442 ae Avestan +443 avi Avikam +444 avk Kotava +445 avl Eastern Egyptian Bedawi Arabic +446 avm Angkamuthi +447 avn Avatime +448 avo Agavotaguerra +449 avs Aushiri +450 avt Au +451 avu Avokaya +452 avv Avá-Canoeiro +453 awa Awadhi +454 awb Awa (Papua New Guinea) +455 awc Cicipu +456 awe Awetí +457 awg Anguthimri +458 awh Awbono +459 awi Aekyom +460 awk Awabakal +461 awm Arawum +462 awn Awngi +463 awo Awak +464 awr Awera +465 aws South Awyu +466 awt Araweté +467 awu Central Awyu +468 awv Jair Awyu +469 aww Awun +470 awx Awara +471 awy Edera Awyu +472 axb Abipon +473 axe Ayerrerenge +474 axg Mato Grosso Arára +475 axk Yaka (Central African Republic) +476 axl Lower Southern Aranda +477 axm Middle Armenian +478 axx Xârâgurè +479 aya Awar +480 ayb Ayizo Gbe +481 ayc Southern Aymara +482 ayd Ayabadhu +483 aye Ayere +484 ayg Ginyanga +485 ayh Hadrami Arabic +486 ayi Leyigha +487 ayk Akuku +488 ayl Libyan Arabic +489 ay Aymara +490 ayn Sanaani Arabic +491 ayo Ayoreo +492 ayp North Mesopotamian Arabic +493 ayq Ayi (Papua New Guinea) +494 ayr Central Aymara +495 ays Sorsogon Ayta +496 ayt Magbukun Ayta +497 ayu Ayu +498 ayz Mai Brat +499 aza Azha +500 azb South Azerbaijani +501 azd Eastern Durango Nahuatl +502 az Azerbaijani +503 azg San Pedro Amuzgos Amuzgo +504 azj North Azerbaijani +505 azm Ipalapa Amuzgo +506 azn Western Durango Nahuatl +507 azo Awing +508 azt Faire Atta +509 azz Highland Puebla Nahuatl +510 baa Babatana +511 bab Bainouk-Gunyuño +512 bac Badui +513 bae Baré +514 baf Nubaca +515 bag Tuki +516 bah Bahamas Creole English +517 baj Barakai +518 ba Bashkir +519 bal Baluchi +520 bm Bambara +521 ban Balinese +522 bao Waimaha +523 bap Bantawa +524 bar Bavarian +525 bas Basa (Cameroon) +526 bau Bada (Nigeria) +527 bav Vengo +528 baw Bambili-Bambui +529 bax Bamun +530 bay Batuley +531 bba Baatonum +532 bbb Barai +533 bbc Batak Toba +534 bbd Bau +535 bbe Bangba +536 bbf Baibai +537 bbg Barama +538 bbh Bugan +539 bbi Barombi +540 bbj Ghomálá' +541 bbk Babanki +542 bbl Bats +543 bbm Babango +544 bbn Uneapa +545 bbo Northern Bobo Madaré +546 bbp West Central Banda +547 bbq Bamali +548 bbr Girawa +549 bbs Bakpinka +550 bbt Mburku +551 bbu Kulung (Nigeria) +552 bbv Karnai +553 bbw Baba +554 bbx Bubia +555 bby Befang +556 bca Central Bai +557 bcb Bainouk-Samik +558 bcc Southern Balochi +559 bcd North Babar +560 bce Bamenyam +561 bcf Bamu +562 bcg Baga Pokur +563 bch Bariai +564 bci Baoulé +565 bcj Bardi +566 bck Bunuba +567 bcl Central Bikol +568 bcm Bannoni +569 bcn Bali (Nigeria) +570 bco Kaluli +571 bcp Bali (Democratic Republic of Congo) +572 bcq Bench +573 bcr Babine +574 bcs Kohumono +575 bct Bendi +576 bcu Awad Bing +577 bcv Shoo-Minda-Nye +578 bcw Bana +579 bcy Bacama +580 bcz Bainouk-Gunyaamolo +581 bda Bayot +582 bdb Basap +583 bdc Emberá-Baudó +584 bdd Bunama +585 bde Bade +586 bdf Biage +587 bdg Bonggi +588 bdh Baka (South Sudan) +589 bdi Burun +590 bdj Bai (South Sudan) +591 bdk Budukh +592 bdl Indonesian Bajau +593 bdm Buduma +594 bdn Baldemu +595 bdo Morom +596 bdp Bende +597 bdq Bahnar +598 bdr West Coast Bajau +599 bds Burunge +600 bdt Bokoto +601 bdu Oroko +602 bdv Bodo Parja +603 bdw Baham +604 bdx Budong-Budong +605 bdy Bandjalang +606 bdz Badeshi +607 bea Beaver +608 beb Bebele +609 bec Iceve-Maci +610 bed Bedoanas +611 bee Byangsi +612 bef Benabena +613 beg Belait +614 beh Biali +615 bei Bekati' +616 bej Beja +617 bek Bebeli +618 be Belarusian +619 bem Bemba (Zambia) +620 bn Bengali +621 beo Beami +622 bep Besoa +623 beq Beembe +624 bes Besme +625 bet Guiberoua Béte +626 beu Blagar +627 bev Daloa Bété +628 bew Betawi +629 bex Jur Modo +630 bey Beli (Papua New Guinea) +631 bez Bena (Tanzania) +632 bfa Bari +633 bfb Pauri Bareli +634 bfc Panyi Bai +635 bfd Bafut +636 bfe Betaf +637 bff Bofi +638 bfg Busang Kayan +639 bfh Blafe +640 bfi British Sign Language +641 bfj Bafanji +642 bfk Ban Khor Sign Language +643 bfl Banda-Ndélé +644 bfm Mmen +645 bfn Bunak +646 bfo Malba Birifor +647 bfp Beba +648 bfq Badaga +649 bfr Bazigar +650 bfs Southern Bai +651 bft Balti +652 bfu Gahri +653 bfw Bondo +654 bfx Bantayanon +655 bfy Bagheli +656 bfz Mahasu Pahari +657 bga Gwamhi-Wuri +658 bgb Bobongko +659 bgc Haryanvi +660 bgd Rathwi Bareli +661 bge Bauria +662 bgf Bangandu +663 bgg Bugun +664 bgi Giangan +665 bgj Bangolan +666 bgk Bit +667 bgl Bo (Laos) +668 bgn Western Balochi +669 bgo Baga Koga +670 bgp Eastern Balochi +671 bgq Bagri +672 bgr Bawm Chin +673 bgs Tagabawa +674 bgt Bughotu +675 bgu Mbongno +676 bgv Warkay-Bipim +677 bgw Bhatri +678 bgx Balkan Gagauz Turkish +679 bgy Benggoi +680 bgz Banggai +681 bha Bharia +682 bhb Bhili +683 bhc Biga +684 bhd Bhadrawahi +685 bhe Bhaya +686 bhf Odiai +687 bhg Binandere +688 bhh Bukharic +689 bhi Bhilali +690 bhj Bahing +691 bhl Bimin +692 bhm Bathari +693 bhn Bohtan Neo-Aramaic +694 bho Bhojpuri +695 bhp Bima +696 bhq Tukang Besi South +697 bhr Bara Malagasy +698 bhs Buwal +699 bht Bhattiyali +700 bhu Bhunjia +701 bhv Bahau +702 bhw Biak +703 bhx Bhalay +704 bhy Bhele +705 bhz Bada (Indonesia) +706 bia Badimaya +707 bib Bissa +708 bid Bidiyo +709 bie Bepour +710 bif Biafada +711 big Biangai +712 bik Bikol +713 bil Bile +714 bim Bimoba +715 bin Bini +716 bio Nai +717 bip Bila +718 biq Bipi +719 bir Bisorio +720 bi Bislama +721 bit Berinomo +722 biu Biete +723 biv Southern Birifor +724 biw Kol (Cameroon) +725 bix Bijori +726 biy Birhor +727 biz Baloi +728 bja Budza +729 bjb Banggarla +730 bjc Bariji +731 bje Biao-Jiao Mien +732 bjf Barzani Jewish Neo-Aramaic +733 bjg Bidyogo +734 bjh Bahinemo +735 bji Burji +736 bjj Kanauji +737 bjk Barok +738 bjl Bulu (Papua New Guinea) +739 bjm Bajelani +740 bjn Banjar +741 bjo Mid-Southern Banda +742 bjp Fanamaket +743 bjr Binumarien +744 bjs Bajan +745 bjt Balanta-Ganja +746 bju Busuu +747 bjv Bedjond +748 bjw Bakwé +749 bjx Banao Itneg +750 bjy Bayali +751 bjz Baruga +752 bka Kyak +753 bkc Baka (Cameroon) +754 bkd Binukid +755 bkf Beeke +756 bkg Buraka +757 bkh Bakoko +758 bki Baki +759 bkj Pande +760 bkk Brokskat +761 bkl Berik +762 bkm Kom (Cameroon) +763 bkn Bukitan +764 bko Kwa' +765 bkp Boko (Democratic Republic of Congo) +766 bkq Bakairí +767 bkr Bakumpai +768 bks Northern Sorsoganon +769 bkt Boloki +770 bku Buhid +771 bkv Bekwarra +772 bkw Bekwel +773 bkx Baikeno +774 bky Bokyi +775 bkz Bungku +776 bla Siksika +777 blb Bilua +778 blc Bella Coola +779 bld Bolango +780 ble Balanta-Kentohe +781 blf Buol +782 blh Kuwaa +783 bli Bolia +784 blj Bolongan +785 blk Pa'o Karen +786 bll Biloxi +787 blm Beli (South Sudan) +788 bln Southern Catanduanes Bikol +789 blo Anii +790 blp Blablanga +791 blq Baluan-Pam +792 blr Blang +793 bls Balaesang +794 blt Tai Dam +795 blv Kibala +796 blw Balangao +797 blx Mag-Indi Ayta +798 bly Notre +799 blz Balantak +800 bma Lame +801 bmb Bembe +802 bmc Biem +803 bmd Baga Manduri +804 bme Limassa +805 bmf Bom-Kim +806 bmg Bamwe +807 bmh Kein +808 bmi Bagirmi +809 bmj Bote-Majhi +810 bmk Ghayavi +811 bml Bomboli +812 bmm Northern Betsimisaraka Malagasy +813 bmn Bina (Papua New Guinea) +814 bmo Bambalang +815 bmp Bulgebi +816 bmq Bomu +817 bmr Muinane +818 bms Bilma Kanuri +819 bmt Biao Mon +820 bmu Somba-Siawari +821 bmv Bum +822 bmw Bomwali +823 bmx Baimak +824 bmz Baramu +825 bna Bonerate +826 bnb Bookan +827 bnc Bontok +828 bnd Banda (Indonesia) +829 bne Bintauna +830 bnf Masiwang +831 bng Benga +832 bni Bangi +833 bnj Eastern Tawbuid +834 bnk Bierebo +835 bnl Boon +836 bnm Batanga +837 bnn Bunun +838 bno Bantoanon +839 bnp Bola +840 bnq Bantik +841 bnr Butmas-Tur +842 bns Bundeli +843 bnu Bentong +844 bnv Bonerif +845 bnw Bisis +846 bnx Bangubangu +847 bny Bintulu +848 bnz Beezen +849 boa Bora +850 bob Aweer +851 bo Tibetan +852 boe Mundabli +853 bof Bolon +854 bog Bamako Sign Language +855 boh Boma +856 boi Barbareño +857 boj Anjam +858 bok Bonjo +859 bol Bole +860 bom Berom +861 bon Bine +862 boo Tiemacèwè Bozo +863 bop Bonkiman +864 boq Bogaya +865 bor Borôro +866 bs Bosnian +867 bot Bongo +868 bou Bondei +869 bov Tuwuli +870 bow Rema +871 box Buamu +872 boy Bodo (Central African Republic) +873 boz Tiéyaxo Bozo +874 bpa Daakaka +875 bpc Mbuk +876 bpd Banda-Banda +877 bpe Bauni +878 bpg Bonggo +879 bph Botlikh +880 bpi Bagupi +881 bpj Binji +882 bpk Orowe +883 bpl Broome Pearling Lugger Pidgin +884 bpm Biyom +885 bpn Dzao Min +886 bpo Anasi +887 bpp Kaure +888 bpq Banda Malay +889 bpr Koronadal Blaan +890 bps Sarangani Blaan +891 bpt Barrow Point +892 bpu Bongu +893 bpv Bian Marind +894 bpw Bo (Papua New Guinea) +895 bpx Palya Bareli +896 bpy Bishnupriya +897 bpz Bilba +898 bqa Tchumbuli +899 bqb Bagusa +900 bqc Boko (Benin) +901 bqd Bung +902 bqf Baga Kaloum +903 bqg Bago-Kusuntu +904 bqh Baima +905 bqi Bakhtiari +906 bqj Bandial +907 bqk Banda-Mbrès +908 bql Bilakura +909 bqm Wumboko +910 bqn Bulgarian Sign Language +911 bqo Balo +912 bqp Busa +913 bqq Biritai +914 bqr Burusu +915 bqs Bosngun +916 bqt Bamukumbit +917 bqu Boguru +918 bqv Koro Wachi +919 bqw Buru (Nigeria) +920 bqx Baangi +921 bqy Bengkala Sign Language +922 bqz Bakaka +923 bra Braj +924 brb Brao +925 brc Berbice Creole Dutch +926 brd Baraamu +927 br Breton +928 brf Bira +929 brg Baure +930 brh Brahui +931 bri Mokpwe +932 brj Bieria +933 brk Birked +934 brl Birwa +935 brm Barambu +936 brn Boruca +937 bro Brokkat +938 brp Barapasi +939 brq Breri +940 brr Birao +941 brs Baras +942 brt Bitare +943 bru Eastern Bru +944 brv Western Bru +945 brw Bellari +946 brx Bodo (India) +947 bry Burui +948 brz Bilbil +949 bsa Abinomn +950 bsb Brunei Bisaya +951 bsc Bassari +952 bse Wushi +953 bsf Bauchi +954 bsg Bashkardi +955 bsh Kati +956 bsi Bassossi +957 bsj Bangwinji +958 bsk Burushaski +959 bsl Basa-Gumna +960 bsm Busami +961 bsn Barasana-Eduria +962 bso Buso +963 bsp Baga Sitemu +964 bsq Bassa +965 bsr Bassa-Kontagora +966 bss Akoose +967 bst Basketo +968 bsu Bahonsuai +969 bsv Baga Sobané +970 bsw Baiso +971 bsx Yangkam +972 bsy Sabah Bisaya +973 bta Bata +974 btc Bati (Cameroon) +975 btd Batak Dairi +976 bte Gamo-Ningi +977 btf Birgit +978 btg Gagnoa Bété +979 bth Biatah Bidayuh +980 bti Burate +981 btj Bacanese Malay +982 btm Batak Mandailing +983 btn Ratagnon +984 bto Rinconada Bikol +985 btp Budibud +986 btq Batek +987 btr Baetora +988 bts Batak Simalungun +989 btt Bete-Bendi +990 btu Batu +991 btv Bateri +992 btw Butuanon +993 btx Batak Karo +994 bty Bobot +995 btz Batak Alas-Kluet +996 bua Buriat +997 bub Bua +998 buc Bushi +999 bud Ntcham +1000 bue Beothuk +1001 buf Bushoong +1002 bug Buginese +1003 buh Younuo Bunu +1004 bui Bongili +1005 buj Basa-Gurmana +1006 buk Bugawac +1007 bg Bulgarian +1008 bum Bulu (Cameroon) +1009 bun Sherbro +1010 buo Terei +1011 bup Busoa +1012 buq Brem +1013 bus Bokobaru +1014 but Bungain +1015 buu Budu +1016 buv Bun +1017 buw Bubi +1018 bux Boghom +1019 buy Bullom So +1020 buz Bukwen +1021 bva Barein +1022 bvb Bube +1023 bvc Baelelea +1024 bvd Baeggu +1025 bve Berau Malay +1026 bvf Boor +1027 bvg Bonkeng +1028 bvh Bure +1029 bvi Belanda Viri +1030 bvj Baan +1031 bvk Bukat +1032 bvl Bolivian Sign Language +1033 bvm Bamunka +1034 bvn Buna +1035 bvo Bolgo +1036 bvp Bumang +1037 bvq Birri +1038 bvr Burarra +1039 bvt Bati (Indonesia) +1040 bvu Bukit Malay +1041 bvv Baniva +1042 bvw Boga +1043 bvx Dibole +1044 bvy Baybayanon +1045 bvz Bauzi +1046 bwa Bwatoo +1047 bwb Namosi-Naitasiri-Serua +1048 bwc Bwile +1049 bwd Bwaidoka +1050 bwe Bwe Karen +1051 bwf Boselewa +1052 bwg Barwe +1053 bwh Bishuo +1054 bwi Baniwa +1055 bwj Láá Láá Bwamu +1056 bwk Bauwaki +1057 bwl Bwela +1058 bwm Biwat +1059 bwn Wunai Bunu +1060 bwo Boro (Ethiopia) +1061 bwp Mandobo Bawah +1062 bwq Southern Bobo Madaré +1063 bwr Bura-Pabir +1064 bws Bomboma +1065 bwt Bafaw-Balong +1066 bwu Buli (Ghana) +1067 bww Bwa +1068 bwx Bu-Nao Bunu +1069 bwy Cwi Bwamu +1070 bwz Bwisi +1071 bxa Tairaha +1072 bxb Belanda Bor +1073 bxc Molengue +1074 bxd Pela +1075 bxe Birale +1076 bxf Bilur +1077 bxg Bangala +1078 bxh Buhutu +1079 bxi Pirlatapa +1080 bxj Bayungu +1081 bxk Bukusu +1082 bxl Jalkunan +1083 bxm Mongolia Buriat +1084 bxn Burduna +1085 bxo Barikanchi +1086 bxp Bebil +1087 bxq Beele +1088 bxr Russia Buriat +1089 bxs Busam +1090 bxu China Buriat +1091 bxv Berakou +1092 bxw Bankagooma +1093 bxz Binahari +1094 bya Batak +1095 byb Bikya +1096 byc Ubaghara +1097 byd Benyadu' +1098 bye Pouye +1099 byf Bete +1100 byg Baygo +1101 byh Bhujel +1102 byi Buyu +1103 byj Bina (Nigeria) +1104 byk Biao +1105 byl Bayono +1106 bym Bidjara +1107 byn Bilin +1108 byo Biyo +1109 byp Bumaji +1110 byq Basay +1111 byr Baruya +1112 bys Burak +1113 byt Berti +1114 byv Medumba +1115 byw Belhariya +1116 byx Qaqet +1117 byz Banaro +1118 bza Bandi +1119 bzb Andio +1120 bzc Southern Betsimisaraka Malagasy +1121 bzd Bribri +1122 bze Jenaama Bozo +1123 bzf Boikin +1124 bzg Babuza +1125 bzh Mapos Buang +1126 bzi Bisu +1127 bzj Belize Kriol English +1128 bzk Nicaragua Creole English +1129 bzl Boano (Sulawesi) +1130 bzm Bolondo +1131 bzn Boano (Maluku) +1132 bzo Bozaba +1133 bzp Kemberano +1134 bzq Buli (Indonesia) +1135 bzr Biri +1136 bzs Brazilian Sign Language +1137 bzt Brithenig +1138 bzu Burmeso +1139 bzv Naami +1140 bzw Basa (Nigeria) +1141 bzx KÉ›lÉ›ngaxo Bozo +1142 bzy Obanliku +1143 bzz Evant +1144 caa Chortí +1145 cab Garifuna +1146 cac Chuj +1147 cad Caddo +1148 cae Lehar +1149 caf Southern Carrier +1150 cag Nivaclé +1151 cah Cahuarano +1152 caj Chané +1153 cak Kaqchikel +1154 cal Carolinian +1155 cam Cemuhî +1156 can Chambri +1157 cao Chácobo +1158 cap Chipaya +1159 caq Car Nicobarese +1160 car Galibi Carib +1161 cas Tsimané +1162 ca Catalan +1163 cav Cavineña +1164 caw Callawalla +1165 cax Chiquitano +1166 cay Cayuga +1167 caz Canichana +1168 cbb Cabiyarí +1169 cbc Carapana +1170 cbd Carijona +1171 cbg Chimila +1172 cbi Chachi +1173 cbj Ede Cabe +1174 cbk Chavacano +1175 cbl Bualkhaw Chin +1176 cbn Nyahkur +1177 cbo Izora +1178 cbq Tsucuba +1179 cbr Cashibo-Cacataibo +1180 cbs Cashinahua +1181 cbt Chayahuita +1182 cbu Candoshi-Shapra +1183 cbv Cacua +1184 cbw Kinabalian +1185 cby Carabayo +1186 ccc Chamicuro +1187 ccd Cafundo Creole +1188 cce Chopi +1189 ccg Samba Daka +1190 cch Atsam +1191 ccj Kasanga +1192 ccl Cutchi-Swahili +1193 ccm Malaccan Creole Malay +1194 cco Comaltepec Chinantec +1195 ccp Chakma +1196 ccr Cacaopera +1197 cda Choni +1198 cde Chenchu +1199 cdf Chiru +1200 cdh Chambeali +1201 cdi Chodri +1202 cdj Churahi +1203 cdm Chepang +1204 cdn Chaudangsi +1205 cdo Min Dong Chinese +1206 cdr Cinda-Regi-Tiyal +1207 cds Chadian Sign Language +1208 cdy Chadong +1209 cdz Koda +1210 cea Lower Chehalis +1211 ceb Cebuano +1212 ceg Chamacoco +1213 cek Eastern Khumi Chin +1214 cen Cen +1215 cs Czech +1216 cet Centúúm +1217 cey Ekai Chin +1218 cfa Dijim-Bwilim +1219 cfd Cara +1220 cfg Como Karim +1221 cfm Falam Chin +1222 cga Changriwa +1223 cgc Kagayanen +1224 cgg Chiga +1225 cgk Chocangacakha +1226 ch Chamorro +1227 chb Chibcha +1228 chc Catawba +1229 chd Highland Oaxaca Chontal +1230 ce Chechen +1231 chf Tabasco Chontal +1232 chg Chagatai +1233 chh Chinook +1234 chj Ojitlán Chinantec +1235 chk Chuukese +1236 chl Cahuilla +1237 chm Mari (Russia) +1238 chn Chinook jargon +1239 cho Choctaw +1240 chp Chipewyan +1241 chq Quiotepec Chinantec +1242 chr Cherokee +1243 cht Cholón +1244 cu Church Slavic +1245 cv Chuvash +1246 chw Chuwabu +1247 chx Chantyal +1248 chy Cheyenne +1249 chz Ozumacín Chinantec +1250 cia Cia-Cia +1251 cib Ci Gbe +1252 cic Chickasaw +1253 cid Chimariko +1254 cie Cineni +1255 cih Chinali +1256 cik Chitkuli Kinnauri +1257 cim Cimbrian +1258 cin Cinta Larga +1259 cip Chiapanec +1260 cir Tiri +1261 ciw Chippewa +1262 ciy Chaima +1263 cja Western Cham +1264 cje Chru +1265 cjh Upper Chehalis +1266 cji Chamalal +1267 cjk Chokwe +1268 cjm Eastern Cham +1269 cjn Chenapian +1270 cjo Ashéninka Pajonal +1271 cjp Cabécar +1272 cjs Shor +1273 cjv Chuave +1274 cjy Jinyu Chinese +1275 ckb Central Kurdish +1276 ckh Chak +1277 ckl Cibak +1278 ckm Chakavian +1279 ckn Kaang Chin +1280 cko Anufo +1281 ckq Kajakse +1282 ckr Kairak +1283 cks Tayo +1284 ckt Chukot +1285 cku Koasati +1286 ckv Kavalan +1287 ckx Caka +1288 cky Cakfem-Mushere +1289 ckz Cakchiquel-Quiché Mixed Language +1290 cla Ron +1291 clc Chilcotin +1292 cld Chaldean Neo-Aramaic +1293 cle Lealao Chinantec +1294 clh Chilisso +1295 cli Chakali +1296 clj Laitu Chin +1297 clk Idu-Mishmi +1298 cll Chala +1299 clm Clallam +1300 clo Lowland Oaxaca Chontal +1301 cls Classical Sanskrit +1302 clt Lautu Chin +1303 clu Caluyanun +1304 clw Chulym +1305 cly Eastern Highland Chatino +1306 cma Maa +1307 cme Cerma +1308 cmg Classical Mongolian +1309 cmi Emberá-Chamí +1310 cml Campalagian +1311 cmm Michigamea +1312 cmn Mandarin Chinese +1313 cmo Central Mnong +1314 cmr Mro-Khimi Chin +1315 cms Messapic +1316 cmt Camtho +1317 cna Changthang +1318 cnb Chinbon Chin +1319 cnc Côông +1320 cng Northern Qiang +1321 cnh Hakha Chin +1322 cni Asháninka +1323 cnk Khumi Chin +1324 cnl Lalana Chinantec +1325 cno Con +1326 cnp Northern Ping Chinese +1327 cnq Chung +1328 cnr Montenegrin +1329 cns Central Asmat +1330 cnt Tepetotutla Chinantec +1331 cnu Chenoua +1332 cnw Ngawn Chin +1333 cnx Middle Cornish +1334 coa Cocos Islands Malay +1335 cob Chicomuceltec +1336 coc Cocopa +1337 cod Cocama-Cocamilla +1338 coe Koreguaje +1339 cof Colorado +1340 cog Chong +1341 coh Chonyi-Dzihana-Kauma +1342 coj Cochimi +1343 cok Santa Teresa Cora +1344 col Columbia-Wenatchi +1345 com Comanche +1346 con Cofán +1347 coo Comox +1348 cop Coptic +1349 coq Coquille +1350 kw Cornish +1351 co Corsican +1352 cot Caquinte +1353 cou Wamey +1354 cov Cao Miao +1355 cow Cowlitz +1356 cox Nanti +1357 coz Chochotec +1358 cpa Palantla Chinantec +1359 cpb Ucayali-Yurúa Ashéninka +1360 cpc Ajyíninka Apurucayali +1361 cpg Cappadocian Greek +1362 cpi Chinese Pidgin English +1363 cpn Cherepon +1364 cpo Kpeego +1365 cps Capiznon +1366 cpu Pichis Ashéninka +1367 cpx Pu-Xian Chinese +1368 cpy South Ucayali Ashéninka +1369 cqd Chuanqiandian Cluster Miao +1370 cra Chara +1371 crb Island Carib +1372 crc Lonwolwol +1373 crd Coeur d'Alene +1374 cr Cree +1375 crf Caramanta +1376 crg Michif +1377 crh Crimean Tatar +1378 cri Sãotomense +1379 crj Southern East Cree +1380 crk Plains Cree +1381 crl Northern East Cree +1382 crm Moose Cree +1383 crn El Nayar Cora +1384 cro Crow +1385 crq Iyo'wujwa Chorote +1386 crr Carolina Algonquian +1387 crs Seselwa Creole French +1388 crt Iyojwa'ja Chorote +1389 crv Chaura +1390 crw Chrau +1391 crx Carrier +1392 cry Cori +1393 crz Cruzeño +1394 csa Chiltepec Chinantec +1395 csb Kashubian +1396 csc Catalan Sign Language +1397 csd Chiangmai Sign Language +1398 cse Czech Sign Language +1399 csf Cuba Sign Language +1400 csg Chilean Sign Language +1401 csh Asho Chin +1402 csi Coast Miwok +1403 csj Songlai Chin +1404 csk Jola-Kasa +1405 csl Chinese Sign Language +1406 csm Central Sierra Miwok +1407 csn Colombian Sign Language +1408 cso Sochiapam Chinantec +1409 csp Southern Ping Chinese +1410 csq Croatia Sign Language +1411 csr Costa Rican Sign Language +1412 css Southern Ohlone +1413 cst Northern Ohlone +1414 csv Sumtu Chin +1415 csw Swampy Cree +1416 csx Cambodian Sign Language +1417 csy Siyin Chin +1418 csz Coos +1419 cta Tataltepec Chatino +1420 ctc Chetco +1421 ctd Tedim Chin +1422 cte Tepinapa Chinantec +1423 ctg Chittagonian +1424 cth Thaiphum Chin +1425 ctl Tlacoatzintepec Chinantec +1426 ctm Chitimacha +1427 ctn Chhintange +1428 cto Emberá-Catío +1429 ctp Western Highland Chatino +1430 cts Northern Catanduanes Bikol +1431 ctt Wayanad Chetti +1432 ctu Chol +1433 cty Moundadan Chetty +1434 ctz Zacatepec Chatino +1435 cua Cua +1436 cub Cubeo +1437 cuc Usila Chinantec +1438 cuh Chuka +1439 cui Cuiba +1440 cuj Mashco Piro +1441 cuk San Blas Kuna +1442 cul Culina +1443 cuo Cumanagoto +1444 cup Cupeño +1445 cuq Cun +1446 cur Chhulung +1447 cut Teutila Cuicatec +1448 cuu Tai Ya +1449 cuv Cuvok +1450 cuw Chukwa +1451 cux Tepeuxila Cuicatec +1452 cuy Cuitlatec +1453 cvg Chug +1454 cvn Valle Nacional Chinantec +1455 cwa Kabwa +1456 cwb Maindo +1457 cwd Woods Cree +1458 cwe Kwere +1459 cwg Chewong +1460 cwt Kuwaataay +1461 cxh Cha'ari +1462 cya Nopala Chatino +1463 cyb Cayubaba +1464 cy Welsh +1465 cyo Cuyonon +1466 czh Huizhou Chinese +1467 czk Knaanic +1468 czn Zenzontepec Chatino +1469 czo Min Zhong Chinese +1470 czt Zotung Chin +1471 daa Dangaléat +1472 dac Dambi +1473 dad Marik +1474 dae Duupa +1475 dag Dagbani +1476 dah Gwahatike +1477 dai Day +1478 daj Dar Fur Daju +1479 dak Dakota +1480 dal Dahalo +1481 dam Damakawa +1482 da Danish +1483 dao Daai Chin +1484 daq Dandami Maria +1485 dar Dargwa +1486 das Daho-Doo +1487 dau Dar Sila Daju +1488 dav Taita +1489 daw Davawenyo +1490 dax Dayi +1491 daz Dao +1492 dba Bangime +1493 dbb Deno +1494 dbd Dadiya +1495 dbe Dabe +1496 dbf Edopi +1497 dbg Dogul Dom Dogon +1498 dbi Doka +1499 dbj Ida'an +1500 dbl Dyirbal +1501 dbm Duguri +1502 dbn Duriankere +1503 dbo Dulbu +1504 dbp Duwai +1505 dbq Daba +1506 dbr Dabarre +1507 dbt Ben Tey Dogon +1508 dbu Bondum Dom Dogon +1509 dbv Dungu +1510 dbw Bankan Tey Dogon +1511 dby Dibiyaso +1512 dcc Deccan +1513 dcr Negerhollands +1514 dda Dadi Dadi +1515 ddd Dongotono +1516 dde Doondo +1517 ddg Fataluku +1518 ddi West Goodenough +1519 ddj Jaru +1520 ddn Dendi (Benin) +1521 ddo Dido +1522 ddr Dhudhuroa +1523 dds Donno So Dogon +1524 ddw Dawera-Daweloor +1525 dec Dagik +1526 ded Dedua +1527 dee Dewoin +1528 def Dezfuli +1529 deg Degema +1530 deh Dehwari +1531 dei Demisa +1532 dek Dek +1533 del Delaware +1534 dem Dem +1535 den Slave (Athapascan) +1536 dep Pidgin Delaware +1537 deq Dendi (Central African Republic) +1538 der Deori +1539 des Desano +1540 de German +1541 dev Domung +1542 dez Dengese +1543 dga Southern Dagaare +1544 dgb Bunoge Dogon +1545 dgc Casiguran Dumagat Agta +1546 dgd Dagaari Dioula +1547 dge Degenan +1548 dgg Doga +1549 dgh Dghwede +1550 dgi Northern Dagara +1551 dgk Dagba +1552 dgl Andaandi +1553 dgn Dagoman +1554 dgo Dogri (individual language) +1555 dgr Tlicho +1556 dgs Dogoso +1557 dgt Ndra'ngith +1558 dgw Daungwurrung +1559 dgx Doghoro +1560 dgz Daga +1561 dhd Dhundari +1562 dhg Dhangu-Djangu +1563 dhi Dhimal +1564 dhl Dhalandji +1565 dhm Zemba +1566 dhn Dhanki +1567 dho Dhodia +1568 dhr Dhargari +1569 dhs Dhaiso +1570 dhu Dhurga +1571 dhv Dehu +1572 dhw Dhanwar (Nepal) +1573 dhx Dhungaloo +1574 dia Dia +1575 dib South Central Dinka +1576 dic Lakota Dida +1577 did Didinga +1578 dif Dieri +1579 dig Digo +1580 dih Kumiai +1581 dii Dimbong +1582 dij Dai +1583 dik Southwestern Dinka +1584 dil Dilling +1585 dim Dime +1586 din Dinka +1587 dio Dibo +1588 dip Northeastern Dinka +1589 diq Dimli (individual language) +1590 dir Dirim +1591 dis Dimasa +1592 diu Diriku +1593 dv Dhivehi +1594 diw Northwestern Dinka +1595 dix Dixon Reef +1596 diy Diuwe +1597 diz Ding +1598 dja Djadjawurrung +1599 djb Djinba +1600 djc Dar Daju Daju +1601 djd Djamindjung +1602 dje Zarma +1603 djf Djangun +1604 dji Djinang +1605 djj Djeebbana +1606 djk Eastern Maroon Creole +1607 djm Jamsay Dogon +1608 djn Jawoyn +1609 djo Jangkang +1610 djr Djambarrpuyngu +1611 dju Kapriman +1612 djw Djawi +1613 dka Dakpakha +1614 dkg Kadung +1615 dkk Dakka +1616 dkr Kuijau +1617 dks Southeastern Dinka +1618 dkx Mazagway +1619 dlg Dolgan +1620 dlk Dahalik +1621 dlm Dalmatian +1622 dln Darlong +1623 dma Duma +1624 dmb Mombo Dogon +1625 dmc Gavak +1626 dmd Madhi Madhi +1627 dme Dugwor +1628 dmf Medefaidrin +1629 dmg Upper Kinabatangan +1630 dmk Domaaki +1631 dml Dameli +1632 dmm Dama +1633 dmo Kemedzung +1634 dmr East Damar +1635 dms Dampelas +1636 dmu Dubu +1637 dmv Dumpas +1638 dmw Mudburra +1639 dmx Dema +1640 dmy Demta +1641 dna Upper Grand Valley Dani +1642 dnd Daonda +1643 dne Ndendeule +1644 dng Dungan +1645 dni Lower Grand Valley Dani +1646 dnj Dan +1647 dnk Dengka +1648 dnn Dzùùngoo +1649 dno Ndrulo +1650 dnr Danaru +1651 dnt Mid Grand Valley Dani +1652 dnu Danau +1653 dnv Danu +1654 dnw Western Dani +1655 dny Dení +1656 doa Dom +1657 dob Dobu +1658 doc Northern Dong +1659 doe Doe +1660 dof Domu +1661 doh Dong +1662 doi Dogri (macrolanguage) +1663 dok Dondo +1664 dol Doso +1665 don Toura (Papua New Guinea) +1666 doo Dongo +1667 dop Lukpa +1668 doq Dominican Sign Language +1669 dor Dori'o +1670 dos Dogosé +1671 dot Dass +1672 dov Dombe +1673 dow Doyayo +1674 dox Bussa +1675 doy Dompo +1676 doz Dorze +1677 dpp Papar +1678 drb Dair +1679 drc Minderico +1680 drd Darmiya +1681 dre Dolpo +1682 drg Rungus +1683 dri C'Lela +1684 drl Paakantyi +1685 drn West Damar +1686 dro Daro-Matu Melanau +1687 drq Dura +1688 drs Gedeo +1689 drt Drents +1690 dru Rukai +1691 dry Darai +1692 dsb Lower Sorbian +1693 dse Dutch Sign Language +1694 dsh Daasanach +1695 dsi Disa +1696 dsk Dokshi +1697 dsl Danish Sign Language +1698 dsn Dusner +1699 dso Desiya +1700 dsq Tadaksahak +1701 dsz Mardin Sign Language +1702 dta Daur +1703 dtb Labuk-Kinabatangan Kadazan +1704 dtd Ditidaht +1705 dth Adithinngithigh +1706 dti Ana Tinga Dogon +1707 dtk Tene Kan Dogon +1708 dtm Tomo Kan Dogon +1709 dtn Daatsʼíin +1710 dto Tommo So Dogon +1711 dtp Kadazan Dusun +1712 dtr Lotud +1713 dts Toro So Dogon +1714 dtt Toro Tegu Dogon +1715 dtu Tebul Ure Dogon +1716 dty Dotyali +1717 dua Duala +1718 dub Dubli +1719 duc Duna +1720 due Umiray Dumaget Agta +1721 duf Dumbea +1722 dug Duruma +1723 duh Dungra Bhil +1724 dui Dumun +1725 duk Uyajitaya +1726 dul Alabat Island Agta +1727 dum Middle Dutch (ca. 1050-1350) +1728 dun Dusun Deyah +1729 duo Dupaninan Agta +1730 dup Duano +1731 duq Dusun Malang +1732 dur Dii +1733 dus Dumi +1734 duu Drung +1735 duv Duvle +1736 duw Dusun Witu +1737 dux Duungooma +1738 duy Dicamay Agta +1739 duz Duli-Gey +1740 dva Duau +1741 dwa Diri +1742 dwk Dawik Kui +1743 dwr Dawro +1744 dws Dutton World Speedwords +1745 dwu Dhuwal +1746 dww Dawawa +1747 dwy Dhuwaya +1748 dwz Dewas Rai +1749 dya Dyan +1750 dyb Dyaberdyaber +1751 dyd Dyugun +1752 dyg Villa Viciosa Agta +1753 dyi Djimini Senoufo +1754 dym Yanda Dom Dogon +1755 dyn Dyangadi +1756 dyo Jola-Fonyi +1757 dyr Dyarim +1758 dyu Dyula +1759 dyy Djabugay +1760 dza Tunzu +1761 dzd Daza +1762 dze Djiwarli +1763 dzg Dazaga +1764 dzl Dzalakha +1765 dzn Dzando +1766 dz Dzongkha +1767 eaa Karenggapa +1768 ebc Beginci +1769 ebg Ebughu +1770 ebk Eastern Bontok +1771 ebo Teke-Ebo +1772 ebr Ebrié +1773 ebu Embu +1774 ecr Eteocretan +1775 ecs Ecuadorian Sign Language +1776 ecy Eteocypriot +1777 eee E +1778 efa Efai +1779 efe Efe +1780 efi Efik +1781 ega Ega +1782 egl Emilian +1783 egm Benamanga +1784 ego Eggon +1785 egy Egyptian (Ancient) +1786 ehs Miyakubo Sign Language +1787 ehu Ehueun +1788 eip Eipomek +1789 eit Eitiep +1790 eiv Askopan +1791 eja Ejamat +1792 eka Ekajuk +1793 eke Ekit +1794 ekg Ekari +1795 eki Eki +1796 ekk Standard Estonian +1797 ekl Kol (Bangladesh) +1798 ekm Elip +1799 eko Koti +1800 ekp Ekpeye +1801 ekr Yace +1802 eky Eastern Kayah +1803 ele Elepi +1804 elh El Hugeirat +1805 eli Nding +1806 elk Elkei +1807 el Modern Greek (1453-) +1808 elm Eleme +1809 elo El Molo +1810 elu Elu +1811 elx Elamite +1812 ema Emai-Iuleha-Ora +1813 emb Embaloh +1814 eme Emerillon +1815 emg Eastern Meohang +1816 emi Mussau-Emira +1817 emk Eastern Maninkakan +1818 emm Mamulique +1819 emn Eman +1820 emp Northern Emberá +1821 emq Eastern Minyag +1822 ems Pacific Gulf Yupik +1823 emu Eastern Muria +1824 emw Emplawas +1825 emx Erromintxela +1826 emy Epigraphic Mayan +1827 emz Mbessa +1828 ena Apali +1829 enb Markweeta +1830 enc En +1831 end Ende +1832 enf Forest Enets +1833 en English +1834 enh Tundra Enets +1835 enl Enlhet +1836 enm Middle English (1100-1500) +1837 enn Engenni +1838 eno Enggano +1839 enq Enga +1840 enr Emumu +1841 enu Enu +1842 env Enwan (Edo State) +1843 enw Enwan (Akwa Ibom State) +1844 enx Enxet +1845 eot Beti (Côte d'Ivoire) +1846 epi Epie +1847 eo Esperanto +1848 era Eravallan +1849 erg Sie +1850 erh Eruwa +1851 eri Ogea +1852 erk South Efate +1853 ero Horpa +1854 err Erre +1855 ers Ersu +1856 ert Eritai +1857 erw Erokwanas +1858 ese Ese Ejja +1859 esg Aheri Gondi +1860 esh Eshtehardi +1861 esi North Alaskan Inupiatun +1862 esk Northwest Alaska Inupiatun +1863 esl Egypt Sign Language +1864 esm Esuma +1865 esn Salvadoran Sign Language +1866 eso Estonian Sign Language +1867 esq Esselen +1868 ess Central Siberian Yupik +1869 et Estonian +1870 esu Central Yupik +1871 esy Eskayan +1872 etb Etebi +1873 etc Etchemin +1874 eth Ethiopian Sign Language +1875 etn Eton (Vanuatu) +1876 eto Eton (Cameroon) +1877 etr Edolo +1878 ets Yekhee +1879 ett Etruscan +1880 etu Ejagham +1881 etx Eten +1882 etz Semimi +1883 eud Eudeve +1884 eu Basque +1885 eve Even +1886 evh Uvbie +1887 evn Evenki +1888 ee Ewe +1889 ewo Ewondo +1890 ext Extremaduran +1891 eya Eyak +1892 eyo Keiyo +1893 eza Ezaa +1894 eze Uzekwe +1895 faa Fasu +1896 fab Fa d'Ambu +1897 fad Wagi +1898 faf Fagani +1899 fag Finongan +1900 fah Baissa Fali +1901 fai Faiwol +1902 faj Faita +1903 fak Fang (Cameroon) +1904 fal South Fali +1905 fam Fam +1906 fan Fang (Equatorial Guinea) +1907 fo Faroese +1908 fap Paloor +1909 far Fataleka +1910 fa Persian +1911 fat Fanti +1912 fau Fayu +1913 fax Fala +1914 fay Southwestern Fars +1915 faz Northwestern Fars +1916 fbl West Albay Bikol +1917 fcs Quebec Sign Language +1918 fer Feroge +1919 ffi Foia Foia +1920 ffm Maasina Fulfulde +1921 fgr Fongoro +1922 fia Nobiin +1923 fie Fyer +1924 fif Faifi +1925 fj Fijian +1926 fil Filipino +1927 fi Finnish +1928 fip Fipa +1929 fir Firan +1930 fit Tornedalen Finnish +1931 fiw Fiwaga +1932 fkk Kirya-KonzÉ™l +1933 fkv Kven Finnish +1934 fla Kalispel-Pend d'Oreille +1935 flh Foau +1936 fli Fali +1937 fll North Fali +1938 fln Flinders Island +1939 flr Fuliiru +1940 fly Flaaitaal +1941 fmp Fe'fe' +1942 fmu Far Western Muria +1943 fnb Fanbak +1944 fng Fanagalo +1945 fni Fania +1946 fod Foodo +1947 foi Foi +1948 fom Foma +1949 fon Fon +1950 for Fore +1951 fos Siraya +1952 fpe Fernando Po Creole English +1953 fqs Fas +1954 fr French +1955 frc Cajun French +1956 frd Fordata +1957 frk Frankish +1958 frm Middle French (ca. 1400-1600) +1959 fro Old French (842-ca. 1400) +1960 frp Arpitan +1961 frq Forak +1962 frr Northern Frisian +1963 frs Eastern Frisian +1964 frt Fortsenal +1965 fy Western Frisian +1966 fse Finnish Sign Language +1967 fsl French Sign Language +1968 fss Finland-Swedish Sign Language +1969 fub Adamawa Fulfulde +1970 fuc Pulaar +1971 fud East Futuna +1972 fue Borgu Fulfulde +1973 fuf Pular +1974 fuh Western Niger Fulfulde +1975 fui Bagirmi Fulfulde +1976 fuj Ko +1977 ff Fulah +1978 fum Fum +1979 fun Fulniô +1980 fuq Central-Eastern Niger Fulfulde +1981 fur Friulian +1982 fut Futuna-Aniwa +1983 fuu Furu +1984 fuv Nigerian Fulfulde +1985 fuy Fuyug +1986 fvr Fur +1987 fwa Fwâi +1988 fwe Fwe +1989 gaa Ga +1990 gab Gabri +1991 gac Mixed Great Andamanese +1992 gad Gaddang +1993 gae Guarequena +1994 gaf Gende +1995 gag Gagauz +1996 gah Alekano +1997 gai Borei +1998 gaj Gadsup +1999 gak Gamkonora +2000 gal Galolen +2001 gam Kandawo +2002 gan Gan Chinese +2003 gao Gants +2004 gap Gal +2005 gaq Gata' +2006 gar Galeya +2007 gas Adiwasi Garasia +2008 gat Kenati +2009 gau Mudhili Gadaba +2010 gaw Nobonob +2011 gax Borana-Arsi-Guji Oromo +2012 gay Gayo +2013 gaz West Central Oromo +2014 gba Gbaya (Central African Republic) +2015 gbb Kaytetye +2016 gbd Karajarri +2017 gbe Niksek +2018 gbf Gaikundi +2019 gbg Gbanziri +2020 gbh Defi Gbe +2021 gbi Galela +2022 gbj Bodo Gadaba +2023 gbk Gaddi +2024 gbl Gamit +2025 gbm Garhwali +2026 gbn Mo'da +2027 gbo Northern Grebo +2028 gbp Gbaya-Bossangoa +2029 gbq Gbaya-Bozoum +2030 gbr Gbagyi +2031 gbs Gbesi Gbe +2032 gbu Gagadu +2033 gbv Gbanu +2034 gbw Gabi-Gabi +2035 gbx Eastern Xwla Gbe +2036 gby Gbari +2037 gbz Zoroastrian Dari +2038 gcc Mali +2039 gcd Ganggalida +2040 gce Galice +2041 gcf Guadeloupean Creole French +2042 gcl Grenadian Creole English +2043 gcn Gaina +2044 gcr Guianese Creole French +2045 gct Colonia Tovar German +2046 gda Gade Lohar +2047 gdb Pottangi Ollar Gadaba +2048 gdc Gugu Badhun +2049 gdd Gedaged +2050 gde Gude +2051 gdf Guduf-Gava +2052 gdg Ga'dang +2053 gdh Gadjerawang +2054 gdi Gundi +2055 gdj Gurdjar +2056 gdk Gadang +2057 gdl Dirasha +2058 gdm Laal +2059 gdn Umanakaina +2060 gdo Ghodoberi +2061 gdq Mehri +2062 gdr Wipi +2063 gds Ghandruk Sign Language +2064 gdt Kungardutyi +2065 gdu Gudu +2066 gdx Godwari +2067 gea Geruma +2068 geb Kire +2069 gec Gboloo Grebo +2070 ged Gade +2071 gef Gerai +2072 geg Gengle +2073 geh Hutterite German +2074 gei Gebe +2075 gej Gen +2076 gek Ywom +2077 gel ut-Ma'in +2078 geq Geme +2079 ges Geser-Gorom +2080 gev Eviya +2081 gew Gera +2082 gex Garre +2083 gey Enya +2084 gez Geez +2085 gfk Patpatar +2086 gft Gafat +2087 gga Gao +2088 ggb Gbii +2089 ggd Gugadj +2090 gge Gurr-goni +2091 ggg Gurgula +2092 ggk Kungarakany +2093 ggl Ganglau +2094 ggt Gitua +2095 ggu Gagu +2096 ggw Gogodala +2097 gha Ghadamès +2098 ghc Hiberno-Scottish Gaelic +2099 ghe Southern Ghale +2100 ghh Northern Ghale +2101 ghk Geko Karen +2102 ghl Ghulfan +2103 ghn Ghanongga +2104 gho Ghomara +2105 ghr Ghera +2106 ghs Guhu-Samane +2107 ght Kuke +2108 gia Kija +2109 gib Gibanawa +2110 gic Gail +2111 gid Gidar +2112 gie GaÉ“ogbo +2113 gig Goaria +2114 gih Githabul +2115 gii Girirra +2116 gil Gilbertese +2117 gim Gimi (Eastern Highlands) +2118 gin Hinukh +2119 gip Gimi (West New Britain) +2120 giq Green Gelao +2121 gir Red Gelao +2122 gis North Giziga +2123 git Gitxsan +2124 giu Mulao +2125 giw White Gelao +2126 gix Gilima +2127 giy Giyug +2128 giz South Giziga +2129 gjk Kachi Koli +2130 gjm Gunditjmara +2131 gjn Gonja +2132 gjr Gurindji Kriol +2133 gju Gujari +2134 gka Guya +2135 gkd Magɨ (Madang Province) +2136 gke Ndai +2137 gkn Gokana +2138 gko Kok-Nar +2139 gkp Guinea Kpelle +2140 gku Ç‚Ungkue +2141 gd Scottish Gaelic +2142 glb Belning +2143 glc Bon Gula +2144 gld Nanai +2145 ga Irish +2146 gl Galician +2147 glh Northwest Pashai +2148 glj Gula Iro +2149 glk Gilaki +2150 gll Garlali +2151 glo Galambu +2152 glr Glaro-Twabo +2153 glu Gula (Chad) +2154 gv Manx +2155 glw Glavda +2156 gly Gule +2157 gma Gambera +2158 gmb Gula'alaa +2159 gmd Mághdì +2160 gmg Magɨyi +2161 gmh Middle High German (ca. 1050-1500) +2162 gml Middle Low German +2163 gmm Gbaya-Mbodomo +2164 gmn Gimnime +2165 gmr Mirning +2166 gmu Gumalu +2167 gmv Gamo +2168 gmx Magoma +2169 gmy Mycenaean Greek +2170 gmz Mgbolizhia +2171 gna Kaansa +2172 gnb Gangte +2173 gnc Guanche +2174 gnd Zulgo-Gemzek +2175 gne Ganang +2176 gng Ngangam +2177 gnh Lere +2178 gni Gooniyandi +2179 gnj Ngen +2180 gnk ǁGana +2181 gnl Gangulu +2182 gnm Ginuman +2183 gnn Gumatj +2184 gno Northern Gondi +2185 gnq Gana +2186 gnr Gureng Gureng +2187 gnt Guntai +2188 gnu Gnau +2189 gnw Western Bolivian Guaraní +2190 gnz Ganzi +2191 goa Guro +2192 gob Playero +2193 goc Gorakor +2194 god Godié +2195 goe Gongduk +2196 gof Gofa +2197 gog Gogo +2198 goh Old High German (ca. 750-1050) +2199 goi Gobasi +2200 goj Gowlan +2201 gok Gowli +2202 gol Gola +2203 gom Goan Konkani +2204 gon Gondi +2205 goo Gone Dau +2206 gop Yeretuar +2207 goq Gorap +2208 gor Gorontalo +2209 gos Gronings +2210 got Gothic +2211 gou Gavar +2212 gov Goo +2213 gow Gorowa +2214 gox Gobu +2215 goy Goundo +2216 goz Gozarkhani +2217 gpa Gupa-Abawa +2218 gpe Ghanaian Pidgin English +2219 gpn Taiap +2220 gqa Ga'anda +2221 gqi Guiqiong +2222 gqn Guana (Brazil) +2223 gqr Gor +2224 gqu Qau +2225 gra Rajput Garasia +2226 grb Grebo +2227 grc Ancient Greek (to 1453) +2228 grd Guruntum-Mbaaru +2229 grg Madi +2230 grh Gbiri-Niragu +2231 gri Ghari +2232 grj Southern Grebo +2233 grm Kota Marudu Talantang +2234 gn Guarani +2235 gro Groma +2236 grq Gorovu +2237 grr Taznatit +2238 grs Gresi +2239 grt Garo +2240 gru Kistane +2241 grv Central Grebo +2242 grw Gweda +2243 grx Guriaso +2244 gry Barclayville Grebo +2245 grz Guramalum +2246 gse Ghanaian Sign Language +2247 gsg German Sign Language +2248 gsl Gusilay +2249 gsm Guatemalan Sign Language +2250 gsn Nema +2251 gso Southwest Gbaya +2252 gsp Wasembo +2253 gss Greek Sign Language +2254 gsw Swiss German +2255 gta Guató +2256 gtu Aghu-Tharnggala +2257 gua Shiki +2258 gub Guajajára +2259 guc Wayuu +2260 gud Yocoboué Dida +2261 gue Gurindji +2262 guf Gupapuyngu +2263 gug Paraguayan Guaraní +2264 guh Guahibo +2265 gui Eastern Bolivian Guaraní +2266 gu Gujarati +2267 guk Gumuz +2268 gul Sea Island Creole English +2269 gum Guambiano +2270 gun Mbyá Guaraní +2271 guo Guayabero +2272 gup Gunwinggu +2273 guq Aché +2274 gur Farefare +2275 gus Guinean Sign Language +2276 gut Maléku Jaíka +2277 guu Yanomamö +2278 guw Gun +2279 gux Gourmanchéma +2280 guz Gusii +2281 gva Guana (Paraguay) +2282 gvc Guanano +2283 gve Duwet +2284 gvf Golin +2285 gvj Guajá +2286 gvl Gulay +2287 gvm Gurmana +2288 gvn Kuku-Yalanji +2289 gvo Gavião Do Jiparaná +2290 gvp Pará Gavião +2291 gvr Gurung +2292 gvs Gumawana +2293 gvy Guyani +2294 gwa Mbato +2295 gwb Gwa +2296 gwc Gawri +2297 gwd Gawwada +2298 gwe Gweno +2299 gwf Gowro +2300 gwg Moo +2301 gwi Gwichʼin +2302 gwj Ç€Gwi +2303 gwm Awngthim +2304 gwn Gwandara +2305 gwr Gwere +2306 gwt Gawar-Bati +2307 gwu Guwamu +2308 gww Kwini +2309 gwx Gua +2310 gxx Wè Southern +2311 gya Northwest Gbaya +2312 gyb Garus +2313 gyd Kayardild +2314 gye Gyem +2315 gyf Gungabula +2316 gyg Gbayi +2317 gyi Gyele +2318 gyl Gayil +2319 gym Ngäbere +2320 gyn Guyanese Creole English +2321 gyo Gyalsumdo +2322 gyr Guarayu +2323 gyy Gunya +2324 gyz Geji +2325 gza Ganza +2326 gzi Gazi +2327 gzn Gane +2328 haa Han +2329 hab Hanoi Sign Language +2330 hac Gurani +2331 had Hatam +2332 hae Eastern Oromo +2333 haf Haiphong Sign Language +2334 hag Hanga +2335 hah Hahon +2336 hai Haida +2337 haj Hajong +2338 hak Hakka Chinese +2339 hal Halang +2340 ham Hewa +2341 han Hangaza +2342 hao Hakö +2343 hap Hupla +2344 haq Ha +2345 har Harari +2346 has Haisla +2347 ht Haitian +2348 ha Hausa +2349 hav Havu +2350 haw Hawaiian +2351 hax Southern Haida +2352 hay Haya +2353 haz Hazaragi +2354 hba Hamba +2355 hbb Huba +2356 hbn Heiban +2357 hbo Ancient Hebrew +2358 sh Serbo-Croatian +2359 hbu Habu +2360 hca Andaman Creole Hindi +2361 hch Huichol +2362 hdn Northern Haida +2363 hds Honduras Sign Language +2364 hdy Hadiyya +2365 hea Northern Qiandong Miao +2366 he Hebrew +2367 hed Herdé +2368 heg Helong +2369 heh Hehe +2370 hei Heiltsuk +2371 hem Hemba +2372 hz Herero +2373 hgm Haiǁom +2374 hgw Haigwai +2375 hhi Hoia Hoia +2376 hhr Kerak +2377 hhy Hoyahoya +2378 hia Lamang +2379 hib Hibito +2380 hid Hidatsa +2381 hif Fiji Hindi +2382 hig Kamwe +2383 hih Pamosu +2384 hii Hinduri +2385 hij Hijuk +2386 hik Seit-Kaitetu +2387 hil Hiligaynon +2388 hi Hindi +2389 hio Tsoa +2390 hir Himarimã +2391 hit Hittite +2392 hiw Hiw +2393 hix Hixkaryána +2394 hji Haji +2395 hka Kahe +2396 hke Hunde +2397 hkh Khah +2398 hkk Hunjara-Kaina Ke +2399 hkn Mel-Khaonh +2400 hks Hong Kong Sign Language +2401 hla Halia +2402 hlb Halbi +2403 hld Halang Doan +2404 hle Hlersu +2405 hlt Matu Chin +2406 hlu Hieroglyphic Luwian +2407 hma Southern Mashan Hmong +2408 hmb Humburi Senni Songhay +2409 hmc Central Huishui Hmong +2410 hmd Large Flowery Miao +2411 hme Eastern Huishui Hmong +2412 hmf Hmong Don +2413 hmg Southwestern Guiyang Hmong +2414 hmh Southwestern Huishui Hmong +2415 hmi Northern Huishui Hmong +2416 hmj Ge +2417 hmk Maek +2418 hml Luopohe Hmong +2419 hmm Central Mashan Hmong +2420 hmn Hmong +2421 ho Hiri Motu +2422 hmp Northern Mashan Hmong +2423 hmq Eastern Qiandong Miao +2424 hmr Hmar +2425 hms Southern Qiandong Miao +2426 hmt Hamtai +2427 hmu Hamap +2428 hmv Hmong Dô +2429 hmw Western Mashan Hmong +2430 hmy Southern Guiyang Hmong +2431 hmz Hmong Shua +2432 hna Mina (Cameroon) +2433 hnd Southern Hindko +2434 hne Chhattisgarhi +2435 hng Hungu +2436 hnh ǁAni +2437 hni Hani +2438 hnj Hmong Njua +2439 hnn Hanunoo +2440 hno Northern Hindko +2441 hns Caribbean Hindustani +2442 hnu Hung +2443 hoa Hoava +2444 hob Mari (Madang Province) +2445 hoc Ho +2446 hod Holma +2447 hoe Horom +2448 hoh Hobyót +2449 hoi Holikachuk +2450 hoj Hadothi +2451 hol Holu +2452 hom Homa +2453 hoo Holoholo +2454 hop Hopi +2455 hor Horo +2456 hos Ho Chi Minh City Sign Language +2457 hot Hote +2458 hov Hovongan +2459 how Honi +2460 hoy Holiya +2461 hoz Hozo +2462 hpo Hpon +2463 hps Hawai'i Sign Language (HSL) +2464 hra Hrangkhol +2465 hrc Niwer Mil +2466 hre Hre +2467 hrk Haruku +2468 hrm Horned Miao +2469 hro Haroi +2470 hrp Nhirrpi +2471 hrt Hértevin +2472 hru Hruso +2473 hr Croatian +2474 hrw Warwar Feni +2475 hrx Hunsrik +2476 hrz Harzani +2477 hsb Upper Sorbian +2478 hsh Hungarian Sign Language +2479 hsl Hausa Sign Language +2480 hsn Xiang Chinese +2481 hss Harsusi +2482 hti Hoti +2483 hto Minica Huitoto +2484 hts Hadza +2485 htu Hitu +2486 htx Middle Hittite +2487 hub Huambisa +2488 huc Ç‚Hua +2489 hud Huaulu +2490 hue San Francisco Del Mar Huave +2491 huf Humene +2492 hug Huachipaeri +2493 huh Huilliche +2494 hui Huli +2495 huj Northern Guiyang Hmong +2496 huk Hulung +2497 hul Hula +2498 hum Hungana +2499 hu Hungarian +2500 huo Hu +2501 hup Hupa +2502 huq Tsat +2503 hur Halkomelem +2504 hus Huastec +2505 hut Humla +2506 huu Murui Huitoto +2507 huv San Mateo Del Mar Huave +2508 huw Hukumina +2509 hux Nüpode Huitoto +2510 huy Hulaulá +2511 huz Hunzib +2512 hvc Haitian Vodoun Culture Language +2513 hve San Dionisio Del Mar Huave +2514 hvk Haveke +2515 hvn Sabu +2516 hvv Santa María Del Mar Huave +2517 hwa Wané +2518 hwc Hawai'i Creole English +2519 hwo Hwana +2520 hya Hya +2521 hy Armenian +2522 hyw Western Armenian +2523 iai Iaai +2524 ian Iatmul +2525 iar Purari +2526 iba Iban +2527 ibb Ibibio +2528 ibd Iwaidja +2529 ibe Akpes +2530 ibg Ibanag +2531 ibh Bih +2532 ibl Ibaloi +2533 ibm Agoi +2534 ibn Ibino +2535 ig Igbo +2536 ibr Ibuoro +2537 ibu Ibu +2538 iby Ibani +2539 ica Ede Ica +2540 ich Etkywan +2541 icl Icelandic Sign Language +2542 icr Islander Creole English +2543 ida Idakho-Isukha-Tiriki +2544 idb Indo-Portuguese +2545 idc Idon +2546 idd Ede Idaca +2547 ide Idere +2548 idi Idi +2549 io Ido +2550 idr Indri +2551 ids Idesa +2552 idt Idaté +2553 idu Idoma +2554 ifa Amganad Ifugao +2555 ifb Batad Ifugao +2556 ife Ifè +2557 iff Ifo +2558 ifk Tuwali Ifugao +2559 ifm Teke-Fuumu +2560 ifu Mayoyao Ifugao +2561 ify Keley-I Kallahan +2562 igb Ebira +2563 ige Igede +2564 igg Igana +2565 igl Igala +2566 igm Kanggape +2567 ign Ignaciano +2568 igo Isebe +2569 igs Interglossa +2570 igw Igwe +2571 ihb Iha Based Pidgin +2572 ihi Ihievbe +2573 ihp Iha +2574 ihw Bidhawal +2575 ii Sichuan Yi +2576 iin Thiin +2577 ijc Izon +2578 ije Biseni +2579 ijj Ede Ije +2580 ijn Kalabari +2581 ijs Southeast Ijo +2582 ike Eastern Canadian Inuktitut +2583 ikh Ikhin-Arokho +2584 iki Iko +2585 ikk Ika +2586 ikl Ikulu +2587 iko Olulumo-Ikom +2588 ikp Ikpeshi +2589 ikr Ikaranggal +2590 iks Inuit Sign Language +2591 ikt Inuinnaqtun +2592 iu Inuktitut +2593 ikv Iku-Gora-Ankwa +2594 ikw Ikwere +2595 ikx Ik +2596 ikz Ikizu +2597 ila Ile Ape +2598 ilb Ila +2599 ie Interlingue +2600 ilg Garig-Ilgar +2601 ili Ili Turki +2602 ilk Ilongot +2603 ilm Iranun (Malaysia) +2604 ilo Iloko +2605 ilp Iranun (Philippines) +2606 ils International Sign +2607 ilu Ili'uun +2608 ilv Ilue +2609 ima Mala Malasar +2610 imi Anamgura +2611 iml Miluk +2612 imn Imonda +2613 imo Imbongu +2614 imr Imroing +2615 ims Marsian +2616 imt Imotong +2617 imy Milyan +2618 ia Interlingua (International Auxiliary Language Association) +2619 inb Inga +2620 id Indonesian +2621 ing Degexit'an +2622 inh Ingush +2623 inj Jungle Inga +2624 inl Indonesian Sign Language +2625 inm Minaean +2626 inn Isinai +2627 ino Inoke-Yate +2628 inp Iñapari +2629 ins Indian Sign Language +2630 int Intha +2631 inz Ineseño +2632 ior Inor +2633 iou Tuma-Irumu +2634 iow Iowa-Oto +2635 ipi Ipili +2636 ik Inupiaq +2637 ipo Ipiko +2638 iqu Iquito +2639 iqw Ikwo +2640 ire Iresim +2641 irh Irarutu +2642 iri Rigwe +2643 irk Iraqw +2644 irn Irántxe +2645 irr Ir +2646 iru Irula +2647 irx Kamberau +2648 iry Iraya +2649 isa Isabi +2650 isc Isconahua +2651 isd Isnag +2652 ise Italian Sign Language +2653 isg Irish Sign Language +2654 ish Esan +2655 isi Nkem-Nkum +2656 isk Ishkashimi +2657 is Icelandic +2658 ism Masimasi +2659 isn Isanzu +2660 iso Isoko +2661 isr Israeli Sign Language +2662 ist Istriot +2663 isu Isu (Menchum Division) +2664 isv Interslavic +2665 it Italian +2666 itb Binongan Itneg +2667 itd Southern Tidung +2668 ite Itene +2669 iti Inlaod Itneg +2670 itk Judeo-Italian +2671 itl Itelmen +2672 itm Itu Mbon Uzo +2673 ito Itonama +2674 itr Iteri +2675 its Isekiri +2676 itt Maeng Itneg +2677 itv Itawit +2678 itw Ito +2679 itx Itik +2680 ity Moyadan Itneg +2681 itz Itzá +2682 ium Iu Mien +2683 ivb Ibatan +2684 ivv Ivatan +2685 iwk I-Wak +2686 iwm Iwam +2687 iwo Iwur +2688 iws Sepik Iwam +2689 ixc Ixcatec +2690 ixl Ixil +2691 iya Iyayu +2692 iyo Mesaka +2693 iyx Yaka (Congo) +2694 izh Ingrian +2695 izm Kizamani +2696 izr Izere +2697 izz Izii +2698 jaa Jamamadí +2699 jab Hyam +2700 jac Popti' +2701 jad Jahanka +2702 jae Yabem +2703 jaf Jara +2704 jah Jah Hut +2705 jaj Zazao +2706 jak Jakun +2707 jal Yalahatan +2708 jam Jamaican Creole English +2709 jan Jandai +2710 jao Yanyuwa +2711 jaq Yaqay +2712 jas New Caledonian Javanese +2713 jat Jakati +2714 jau Yaur +2715 jv Javanese +2716 jax Jambi Malay +2717 jay Yan-nhangu +2718 jaz Jawe +2719 jbe Judeo-Berber +2720 jbi Badjiri +2721 jbj Arandai +2722 jbk Barikewa +2723 jbm Bijim +2724 jbn Nafusi +2725 jbo Lojban +2726 jbr Jofotek-Bromnya +2727 jbt Jabutí +2728 jbu Jukun Takum +2729 jbw Yawijibaya +2730 jcs Jamaican Country Sign Language +2731 jct Krymchak +2732 jda Jad +2733 jdg Jadgali +2734 jdt Judeo-Tat +2735 jeb Jebero +2736 jee Jerung +2737 jeh Jeh +2738 jei Yei +2739 jek Jeri Kuo +2740 jel Yelmek +2741 jen Dza +2742 jer Jere +2743 jet Manem +2744 jeu Jonkor Bourmataguil +2745 jgb Ngbee +2746 jge Judeo-Georgian +2747 jgk Gwak +2748 jgo Ngomba +2749 jhi Jehai +2750 jhs Jhankot Sign Language +2751 jia Jina +2752 jib Jibu +2753 jic Tol +2754 jid Bu (Kaduna State) +2755 jie Jilbe +2756 jig Jingulu +2757 jih sTodsde +2758 jii Jiiddu +2759 jil Jilim +2760 jim Jimi (Cameroon) +2761 jio Jiamao +2762 jiq Guanyinqiao +2763 jit Jita +2764 jiu Youle Jinuo +2765 jiv Shuar +2766 jiy Buyuan Jinuo +2767 jje Jejueo +2768 jjr Bankal +2769 jka Kaera +2770 jkm Mobwa Karen +2771 jko Kubo +2772 jkp Paku Karen +2773 jkr Koro (India) +2774 jks Amami Koniya Sign Language +2775 jku Labir +2776 jle Ngile +2777 jls Jamaican Sign Language +2778 jma Dima +2779 jmb Zumbun +2780 jmc Machame +2781 jmd Yamdena +2782 jmi Jimi (Nigeria) +2783 jml Jumli +2784 jmn Makuri Naga +2785 jmr Kamara +2786 jms Mashi (Nigeria) +2787 jmw Mouwase +2788 jmx Western Juxtlahuaca Mixtec +2789 jna Jangshung +2790 jnd Jandavra +2791 jng Yangman +2792 jni Janji +2793 jnj Yemsa +2794 jnl Rawat +2795 jns Jaunsari +2796 job Joba +2797 jod Wojenaka +2798 jog Jogi +2799 jor Jorá +2800 jos Jordanian Sign Language +2801 jow Jowulu +2802 jpa Jewish Palestinian Aramaic +2803 ja Japanese +2804 jpr Judeo-Persian +2805 jqr Jaqaru +2806 jra Jarai +2807 jrb Judeo-Arabic +2808 jrr Jiru +2809 jrt Jakattoe +2810 jru Japrería +2811 jsl Japanese Sign Language +2812 jua Júma +2813 jub Wannu +2814 juc Jurchen +2815 jud Worodougou +2816 juh Hõne +2817 jui Ngadjuri +2818 juk Wapan +2819 jul Jirel +2820 jum Jumjum +2821 jun Juang +2822 juo Jiba +2823 jup Hupdë +2824 jur Jurúna +2825 jus Jumla Sign Language +2826 jut Jutish +2827 juu Ju +2828 juw Wãpha +2829 juy Juray +2830 jvd Javindo +2831 jvn Caribbean Javanese +2832 jwi Jwira-Pepesa +2833 jya Jiarong +2834 jye Judeo-Yemeni Arabic +2835 jyy Jaya +2836 kaa Kara-Kalpak +2837 kab Kabyle +2838 kac Kachin +2839 kad Adara +2840 kae Ketangalan +2841 kaf Katso +2842 kag Kajaman +2843 kah Kara (Central African Republic) +2844 kai Karekare +2845 kaj Jju +2846 kak Kalanguya +2847 kl Kalaallisut +2848 kam Kamba (Kenya) +2849 kn Kannada +2850 kao Xaasongaxango +2851 kap Bezhta +2852 kaq Capanahua +2853 ks Kashmiri +2854 ka Georgian +2855 kr Kanuri +2856 kav Katukína +2857 kaw Kawi +2858 kax Kao +2859 kay Kamayurá +2860 kk Kazakh +2861 kba Kalarko +2862 kbb Kaxuiâna +2863 kbc Kadiwéu +2864 kbd Kabardian +2865 kbe Kanju +2866 kbg Khamba +2867 kbh Camsá +2868 kbi Kaptiau +2869 kbj Kari +2870 kbk Grass Koiari +2871 kbl Kanembu +2872 kbm Iwal +2873 kbn Kare (Central African Republic) +2874 kbo Keliko +2875 kbp Kabiyè +2876 kbq Kamano +2877 kbr Kafa +2878 kbs Kande +2879 kbt Abadi +2880 kbu Kabutra +2881 kbv Dera (Indonesia) +2882 kbw Kaiep +2883 kbx Ap Ma +2884 kby Manga Kanuri +2885 kbz Duhwa +2886 kca Khanty +2887 kcb Kawacha +2888 kcc Lubila +2889 kcd Ngkâlmpw Kanum +2890 kce Kaivi +2891 kcf Ukaan +2892 kcg Tyap +2893 kch Vono +2894 kci Kamantan +2895 kcj Kobiana +2896 kck Kalanga +2897 kcl Kela (Papua New Guinea) +2898 kcm Gula (Central African Republic) +2899 kcn Nubi +2900 kco Kinalakna +2901 kcp Kanga +2902 kcq Kamo +2903 kcr Katla +2904 kcs Koenoem +2905 kct Kaian +2906 kcu Kami (Tanzania) +2907 kcv Kete +2908 kcw Kabwari +2909 kcx Kachama-Ganjule +2910 kcy Korandje +2911 kcz Konongo +2912 kda Worimi +2913 kdc Kutu +2914 kdd Yankunytjatjara +2915 kde Makonde +2916 kdf Mamusi +2917 kdg Seba +2918 kdh Tem +2919 kdi Kumam +2920 kdj Karamojong +2921 kdk Numèè +2922 kdl Tsikimba +2923 kdm Kagoma +2924 kdn Kunda +2925 kdp Kaningdon-Nindem +2926 kdq Koch +2927 kdr Karaim +2928 kdt Kuy +2929 kdu Kadaru +2930 kdw Koneraw +2931 kdx Kam +2932 kdy Keder +2933 kdz Kwaja +2934 kea Kabuverdianu +2935 keb Kélé +2936 kec Keiga +2937 ked Kerewe +2938 kee Eastern Keres +2939 kef Kpessi +2940 keg Tese +2941 keh Keak +2942 kei Kei +2943 kej Kadar +2944 kek Kekchí +2945 kel Kela (Democratic Republic of Congo) +2946 kem Kemak +2947 ken Kenyang +2948 keo Kakwa +2949 kep Kaikadi +2950 keq Kamar +2951 ker Kera +2952 kes Kugbo +2953 ket Ket +2954 keu Akebu +2955 kev Kanikkaran +2956 kew West Kewa +2957 kex Kukna +2958 key Kupia +2959 kez Kukele +2960 kfa Kodava +2961 kfb Northwestern Kolami +2962 kfc Konda-Dora +2963 kfd Korra Koraga +2964 kfe Kota (India) +2965 kff Koya +2966 kfg Kudiya +2967 kfh Kurichiya +2968 kfi Kannada Kurumba +2969 kfj Kemiehua +2970 kfk Kinnauri +2971 kfl Kung +2972 kfm Khunsari +2973 kfn Kuk +2974 kfo Koro (Côte d'Ivoire) +2975 kfp Korwa +2976 kfq Korku +2977 kfr Kachhi +2978 kfs Bilaspuri +2979 kft Kanjari +2980 kfu Katkari +2981 kfv Kurmukar +2982 kfw Kharam Naga +2983 kfx Kullu Pahari +2984 kfy Kumaoni +2985 kfz Koromfé +2986 kga Koyaga +2987 kgb Kawe +2988 kge Komering +2989 kgf Kube +2990 kgg Kusunda +2991 kgi Selangor Sign Language +2992 kgj Gamale Kham +2993 kgk Kaiwá +2994 kgl Kunggari +2995 kgn Karingani +2996 kgo Krongo +2997 kgp Kaingang +2998 kgq Kamoro +2999 kgr Abun +3000 kgs Kumbainggar +3001 kgt Somyev +3002 kgu Kobol +3003 kgv Karas +3004 kgw Karon Dori +3005 kgx Kamaru +3006 kgy Kyerung +3007 kha Khasi +3008 khb Lü +3009 khc Tukang Besi North +3010 khd Bädi Kanum +3011 khe Korowai +3012 khf Khuen +3013 khg Khams Tibetan +3014 khh Kehu +3015 khj Kuturmi +3016 khk Halh Mongolian +3017 khl Lusi +3018 km Khmer +3019 khn Khandesi +3020 kho Khotanese +3021 khp Kapori +3022 khq Koyra Chiini Songhay +3023 khr Kharia +3024 khs Kasua +3025 kht Khamti +3026 khu Nkhumbi +3027 khv Khvarshi +3028 khw Khowar +3029 khx Kanu +3030 khy Kele (Democratic Republic of Congo) +3031 khz Keapara +3032 kia Kim +3033 kib Koalib +3034 kic Kickapoo +3035 kid Koshin +3036 kie Kibet +3037 kif Eastern Parbate Kham +3038 kig Kimaama +3039 kih Kilmeri +3040 kii Kitsai +3041 kij Kilivila +3042 ki Kikuyu +3043 kil Kariya +3044 kim Karagas +3045 rw Kinyarwanda +3046 kio Kiowa +3047 kip Sheshi Kham +3048 kiq Kosadle +3049 ky Kirghiz +3050 kis Kis +3051 kit Agob +3052 kiu Kirmanjki (individual language) +3053 kiv Kimbu +3054 kiw Northeast Kiwai +3055 kix Khiamniungan Naga +3056 kiy Kirikiri +3057 kiz Kisi +3058 kja Mlap +3059 kjb Q'anjob'al +3060 kjc Coastal Konjo +3061 kjd Southern Kiwai +3062 kje Kisar +3063 kjg Khmu +3064 kjh Khakas +3065 kji Zabana +3066 kjj Khinalugh +3067 kjk Highland Konjo +3068 kjl Western Parbate Kham +3069 kjm Kháng +3070 kjn Kunjen +3071 kjo Harijan Kinnauri +3072 kjp Pwo Eastern Karen +3073 kjq Western Keres +3074 kjr Kurudu +3075 kjs East Kewa +3076 kjt Phrae Pwo Karen +3077 kju Kashaya +3078 kjv Kaikavian Literary Language +3079 kjx Ramopa +3080 kjy Erave +3081 kjz Bumthangkha +3082 kka Kakanda +3083 kkb Kwerisa +3084 kkc Odoodee +3085 kkd Kinuku +3086 kke Kakabe +3087 kkf Kalaktang Monpa +3088 kkg Mabaka Valley Kalinga +3089 kkh Khün +3090 kki Kagulu +3091 kkj Kako +3092 kkk Kokota +3093 kkl Kosarek Yale +3094 kkm Kiong +3095 kkn Kon Keu +3096 kko Karko +3097 kkp Gugubera +3098 kkq Kaeku +3099 kkr Kir-Balar +3100 kks Giiwo +3101 kkt Koi +3102 kku Tumi +3103 kkv Kangean +3104 kkw Teke-Kukuya +3105 kkx Kohin +3106 kky Guugu Yimidhirr +3107 kkz Kaska +3108 kla Klamath-Modoc +3109 klb Kiliwa +3110 klc Kolbila +3111 kld Gamilaraay +3112 kle Kulung (Nepal) +3113 klf Kendeje +3114 klg Tagakaulo +3115 klh Weliki +3116 kli Kalumpang +3117 klj Khalaj +3118 klk Kono (Nigeria) +3119 kll Kagan Kalagan +3120 klm Migum +3121 kln Kalenjin +3122 klo Kapya +3123 klp Kamasa +3124 klq Rumu +3125 klr Khaling +3126 kls Kalasha +3127 klt Nukna +3128 klu Klao +3129 klv Maskelynes +3130 klw Tado +3131 klx Koluwawa +3132 kly Kalao +3133 klz Kabola +3134 kma Konni +3135 kmb Kimbundu +3136 kmc Southern Dong +3137 kmd Majukayang Kalinga +3138 kme Bakole +3139 kmf Kare (Papua New Guinea) +3140 kmg Kâte +3141 kmh Kalam +3142 kmi Kami (Nigeria) +3143 kmj Kumarbhag Paharia +3144 kmk Limos Kalinga +3145 kml Tanudan Kalinga +3146 kmm Kom (India) +3147 kmn Awtuw +3148 kmo Kwoma +3149 kmp Gimme +3150 kmq Kwama +3151 kmr Northern Kurdish +3152 kms Kamasau +3153 kmt Kemtuik +3154 kmu Kanite +3155 kmv Karipúna Creole French +3156 kmw Komo (Democratic Republic of Congo) +3157 kmx Waboda +3158 kmy Koma +3159 kmz Khorasani Turkish +3160 kna Dera (Nigeria) +3161 knb Lubuagan Kalinga +3162 knc Central Kanuri +3163 knd Konda +3164 kne Kankanaey +3165 knf Mankanya +3166 kng Koongo +3167 kni Kanufi +3168 knj Western Kanjobal +3169 knk Kuranko +3170 knl Keninjal +3171 knm Kanamarí +3172 knn Konkani (individual language) +3173 kno Kono (Sierra Leone) +3174 knp Kwanja +3175 knq Kintaq +3176 knr Kaningra +3177 kns Kensiu +3178 knt Panoan Katukína +3179 knu Kono (Guinea) +3180 knv Tabo +3181 knw Kung-Ekoka +3182 knx Kendayan +3183 kny Kanyok +3184 knz Kalamsé +3185 koa Konomala +3186 koc Kpati +3187 kod Kodi +3188 koe Kacipo-Bale Suri +3189 kof Kubi +3190 kog Cogui +3191 koh Koyo +3192 koi Komi-Permyak +3193 kok Konkani (macrolanguage) +3194 kol Kol (Papua New Guinea) +3195 kv Komi +3196 kg Kongo +3197 koo Konzo +3198 kop Waube +3199 koq Kota (Gabon) +3200 ko Korean +3201 kos Kosraean +3202 kot Lagwan +3203 kou Koke +3204 kov Kudu-Camo +3205 kow Kugama +3206 koy Koyukon +3207 koz Korak +3208 kpa Kutto +3209 kpb Mullu Kurumba +3210 kpc Curripaco +3211 kpd Koba +3212 kpe Kpelle +3213 kpf Komba +3214 kpg Kapingamarangi +3215 kph Kplang +3216 kpi Kofei +3217 kpj Karajá +3218 kpk Kpan +3219 kpl Kpala +3220 kpm Koho +3221 kpn Kepkiriwát +3222 kpo Ikposo +3223 kpq Korupun-Sela +3224 kpr Korafe-Yegha +3225 kps Tehit +3226 kpt Karata +3227 kpu Kafoa +3228 kpv Komi-Zyrian +3229 kpw Kobon +3230 kpx Mountain Koiali +3231 kpy Koryak +3232 kpz Kupsabiny +3233 kqa Mum +3234 kqb Kovai +3235 kqc Doromu-Koki +3236 kqd Koy Sanjaq Surat +3237 kqe Kalagan +3238 kqf Kakabai +3239 kqg Khe +3240 kqh Kisankasa +3241 kqi Koitabu +3242 kqj Koromira +3243 kqk Kotafon Gbe +3244 kql Kyenele +3245 kqm Khisa +3246 kqn Kaonde +3247 kqo Eastern Krahn +3248 kqp Kimré +3249 kqq Krenak +3250 kqr Kimaragang +3251 kqs Northern Kissi +3252 kqt Klias River Kadazan +3253 kqu Seroa +3254 kqv Okolod +3255 kqw Kandas +3256 kqx Mser +3257 kqy Koorete +3258 kqz Korana +3259 kra Kumhali +3260 krb Karkin +3261 krc Karachay-Balkar +3262 krd Kairui-Midiki +3263 kre Panará +3264 krf Koro (Vanuatu) +3265 krh Kurama +3266 kri Krio +3267 krj Kinaray-A +3268 krk Kerek +3269 krl Karelian +3270 krn Sapo +3271 krp Durop +3272 krr Krung +3273 krs Gbaya (Sudan) +3274 krt Tumari Kanuri +3275 kru Kurukh +3276 krv Kavet +3277 krw Western Krahn +3278 krx Karon +3279 kry Kryts +3280 krz Sota Kanum +3281 ksb Shambala +3282 ksc Southern Kalinga +3283 ksd Kuanua +3284 kse Kuni +3285 ksf Bafia +3286 ksg Kusaghe +3287 ksh Kölsch +3288 ksi Krisa +3289 ksj Uare +3290 ksk Kansa +3291 ksl Kumalu +3292 ksm Kumba +3293 ksn Kasiguranin +3294 kso Kofa +3295 ksp Kaba +3296 ksq Kwaami +3297 ksr Borong +3298 kss Southern Kisi +3299 kst Winyé +3300 ksu Khamyang +3301 ksv Kusu +3302 ksw S'gaw Karen +3303 ksx Kedang +3304 ksy Kharia Thar +3305 ksz Kodaku +3306 kta Katua +3307 ktb Kambaata +3308 ktc Kholok +3309 ktd Kokata +3310 kte Nubri +3311 ktf Kwami +3312 ktg Kalkutung +3313 kth Karanga +3314 kti North Muyu +3315 ktj Plapo Krumen +3316 ktk Kaniet +3317 ktl Koroshi +3318 ktm Kurti +3319 ktn Karitiâna +3320 kto Kuot +3321 ktp Kaduo +3322 ktq Katabaga +3323 kts South Muyu +3324 ktt Ketum +3325 ktu Kituba (Democratic Republic of Congo) +3326 ktv Eastern Katu +3327 ktw Kato +3328 ktx Kaxararí +3329 kty Kango (Bas-Uélé District) +3330 ktz Juǀʼhoan +3331 kj Kuanyama +3332 kub Kutep +3333 kuc Kwinsu +3334 kud 'Auhelawa +3335 kue Kuman (Papua New Guinea) +3336 kuf Western Katu +3337 kug Kupa +3338 kuh Kushi +3339 kui Kuikúro-Kalapálo +3340 kuj Kuria +3341 kuk Kepo' +3342 kul Kulere +3343 kum Kumyk +3344 kun Kunama +3345 kuo Kumukio +3346 kup Kunimaipa +3347 kuq Karipuna +3348 ku Kurdish +3349 kus Kusaal +3350 kut Kutenai +3351 kuu Upper Kuskokwim +3352 kuv Kur +3353 kuw Kpagua +3354 kux Kukatja +3355 kuy Kuuku-Ya'u +3356 kuz Kunza +3357 kva Bagvalal +3358 kvb Kubu +3359 kvc Kove +3360 kvd Kui (Indonesia) +3361 kve Kalabakan +3362 kvf Kabalai +3363 kvg Kuni-Boazi +3364 kvh Komodo +3365 kvi Kwang +3366 kvj Psikye +3367 kvk Korean Sign Language +3368 kvl Kayaw +3369 kvm Kendem +3370 kvn Border Kuna +3371 kvo Dobel +3372 kvp Kompane +3373 kvq Geba Karen +3374 kvr Kerinci +3375 kvt Lahta Karen +3376 kvu Yinbaw Karen +3377 kvv Kola +3378 kvw Wersing +3379 kvx Parkari Koli +3380 kvy Yintale Karen +3381 kvz Tsakwambo +3382 kwa Dâw +3383 kwb Kwa +3384 kwc Likwala +3385 kwd Kwaio +3386 kwe Kwerba +3387 kwf Kwara'ae +3388 kwg Sara Kaba Deme +3389 kwh Kowiai +3390 kwi Awa-Cuaiquer +3391 kwj Kwanga +3392 kwk Kwakiutl +3393 kwl Kofyar +3394 kwm Kwambi +3395 kwn Kwangali +3396 kwo Kwomtari +3397 kwp Kodia +3398 kwr Kwer +3399 kws Kwese +3400 kwt Kwesten +3401 kwu Kwakum +3402 kwv Sara Kaba Náà +3403 kww Kwinti +3404 kwx Khirwar +3405 kwy San Salvador Kongo +3406 kwz Kwadi +3407 kxa Kairiru +3408 kxb Krobu +3409 kxc Konso +3410 kxd Brunei +3411 kxf Manumanaw Karen +3412 kxh Karo (Ethiopia) +3413 kxi Keningau Murut +3414 kxj Kulfa +3415 kxk Zayein Karen +3416 kxm Northern Khmer +3417 kxn Kanowit-Tanjong Melanau +3418 kxo Kanoé +3419 kxp Wadiyara Koli +3420 kxq Smärky Kanum +3421 kxr Koro (Papua New Guinea) +3422 kxs Kangjia +3423 kxt Koiwat +3424 kxv Kuvi +3425 kxw Konai +3426 kxx Likuba +3427 kxy Kayong +3428 kxz Kerewo +3429 kya Kwaya +3430 kyb Butbut Kalinga +3431 kyc Kyaka +3432 kyd Karey +3433 kye Krache +3434 kyf Kouya +3435 kyg Keyagana +3436 kyh Karok +3437 kyi Kiput +3438 kyj Karao +3439 kyk Kamayo +3440 kyl Kalapuya +3441 kym Kpatili +3442 kyn Northern Binukidnon +3443 kyo Kelon +3444 kyp Kang +3445 kyq Kenga +3446 kyr Kuruáya +3447 kys Baram Kayan +3448 kyt Kayagar +3449 kyu Western Kayah +3450 kyv Kayort +3451 kyw Kudmali +3452 kyx Rapoisi +3453 kyy Kambaira +3454 kyz Kayabí +3455 kza Western Karaboro +3456 kzb Kaibobo +3457 kzc Bondoukou Kulango +3458 kzd Kadai +3459 kze Kosena +3460 kzf Da'a Kaili +3461 kzg Kikai +3462 kzi Kelabit +3463 kzk Kazukuru +3464 kzl Kayeli +3465 kzm Kais +3466 kzn Kokola +3467 kzo Kaningi +3468 kzp Kaidipang +3469 kzq Kaike +3470 kzr Karang +3471 kzs Sugut Dusun +3472 kzu Kayupulau +3473 kzv Komyandaret +3474 kzw Karirí-Xocó +3475 kzx Kamarian +3476 kzy Kango (Tshopo District) +3477 kzz Kalabra +3478 laa Southern Subanen +3479 lab Linear A +3480 lac Lacandon +3481 lad Ladino +3482 lae Pattani +3483 laf Lafofa +3484 lag Rangi +3485 lah Lahnda +3486 lai Lambya +3487 laj Lango (Uganda) +3488 lal Lalia +3489 lam Lamba +3490 lan Laru +3491 lo Lao +3492 lap Laka (Chad) +3493 laq Qabiao +3494 lar Larteh +3495 las Lama (Togo) +3496 la Latin +3497 lau Laba +3498 lv Latvian +3499 law Lauje +3500 lax Tiwa +3501 lay Lama Bai +3502 laz Aribwatsa +3503 lbb Label +3504 lbc Lakkia +3505 lbe Lak +3506 lbf Tinani +3507 lbg Laopang +3508 lbi La'bi +3509 lbj Ladakhi +3510 lbk Central Bontok +3511 lbl Libon Bikol +3512 lbm Lodhi +3513 lbn Rmeet +3514 lbo Laven +3515 lbq Wampar +3516 lbr Lohorung +3517 lbs Libyan Sign Language +3518 lbt Lachi +3519 lbu Labu +3520 lbv Lavatbura-Lamusong +3521 lbw Tolaki +3522 lbx Lawangan +3523 lby Lamalama +3524 lbz Lardil +3525 lcc Legenyem +3526 lcd Lola +3527 lce Loncong +3528 lcf Lubu +3529 lch Luchazi +3530 lcl Lisela +3531 lcm Tungag +3532 lcp Western Lawa +3533 lcq Luhu +3534 lcs Lisabata-Nuniali +3535 lda Kla-Dan +3536 ldb Dũya +3537 ldd Luri +3538 ldg Lenyima +3539 ldh Lamja-Dengsa-Tola +3540 ldi Laari +3541 ldj Lemoro +3542 ldk Leelau +3543 ldl Kaan +3544 ldm Landoma +3545 ldn Láadan +3546 ldo Loo +3547 ldp Tso +3548 ldq Lufu +3549 lea Lega-Shabunda +3550 leb Lala-Bisa +3551 lec Leco +3552 led Lendu +3553 lee Lyélé +3554 lef Lelemi +3555 leh Lenje +3556 lei Lemio +3557 lej Lengola +3558 lek Leipon +3559 lel Lele (Democratic Republic of Congo) +3560 lem Nomaande +3561 len Lenca +3562 leo Leti (Cameroon) +3563 lep Lepcha +3564 leq Lembena +3565 ler Lenkau +3566 les Lese +3567 let Lesing-Gelimi +3568 leu Kara (Papua New Guinea) +3569 lev Lamma +3570 lew Ledo Kaili +3571 lex Luang +3572 ley Lemolang +3573 lez Lezghian +3574 lfa Lefa +3575 lfn Lingua Franca Nova +3576 lga Lungga +3577 lgb Laghu +3578 lgg Lugbara +3579 lgh Laghuu +3580 lgi Lengilu +3581 lgk Lingarak +3582 lgl Wala +3583 lgm Lega-Mwenga +3584 lgn T'apo +3585 lgo Lango (South Sudan) +3586 lgq Logba +3587 lgr Lengo +3588 lgs Guinea-Bissau Sign Language +3589 lgt Pahi +3590 lgu Longgu +3591 lgz Ligenza +3592 lha Laha (Viet Nam) +3593 lhh Laha (Indonesia) +3594 lhi Lahu Shi +3595 lhl Lahul Lohar +3596 lhm Lhomi +3597 lhn Lahanan +3598 lhp Lhokpu +3599 lhs Mlahsö +3600 lht Lo-Toga +3601 lhu Lahu +3602 lia West-Central Limba +3603 lib Likum +3604 lic Hlai +3605 lid Nyindrou +3606 lie Likila +3607 lif Limbu +3608 lig Ligbi +3609 lih Lihir +3610 lij Ligurian +3611 lik Lika +3612 lil Lillooet +3613 li Limburgan +3614 ln Lingala +3615 lio Liki +3616 lip Sekpele +3617 liq Libido +3618 lir Liberian English +3619 lis Lisu +3620 lt Lithuanian +3621 liu Logorik +3622 liv Liv +3623 liw Col +3624 lix Liabuku +3625 liy Banda-Bambari +3626 liz Libinza +3627 lja Golpa +3628 lje Rampi +3629 lji Laiyolo +3630 ljl Li'o +3631 ljp Lampung Api +3632 ljw Yirandali +3633 ljx Yuru +3634 lka Lakalei +3635 lkb Kabras +3636 lkc Kucong +3637 lkd Lakondê +3638 lke Kenyi +3639 lkh Lakha +3640 lki Laki +3641 lkj Remun +3642 lkl Laeko-Libuat +3643 lkm Kalaamaya +3644 lkn Lakon +3645 lko Khayo +3646 lkr Päri +3647 lks Kisa +3648 lkt Lakota +3649 lku Kungkari +3650 lky Lokoya +3651 lla Lala-Roba +3652 llb Lolo +3653 llc Lele (Guinea) +3654 lld Ladin +3655 lle Lele (Papua New Guinea) +3656 llf Hermit +3657 llg Lole +3658 llh Lamu +3659 lli Teke-Laali +3660 llj Ladji Ladji +3661 llk Lelak +3662 lll Lilau +3663 llm Lasalimu +3664 lln Lele (Chad) +3665 llp North Efate +3666 llq Lolak +3667 lls Lithuanian Sign Language +3668 llu Lau +3669 llx Lauan +3670 lma East Limba +3671 lmb Merei +3672 lmc Limilngan +3673 lmd Lumun +3674 lme Pévé +3675 lmf South Lembata +3676 lmg Lamogai +3677 lmh Lambichhong +3678 lmi Lombi +3679 lmj West Lembata +3680 lmk Lamkang +3681 lml Hano +3682 lmn Lambadi +3683 lmo Lombard +3684 lmp Limbum +3685 lmq Lamatuka +3686 lmr Lamalera +3687 lmu Lamenu +3688 lmv Lomaiviti +3689 lmw Lake Miwok +3690 lmx Laimbue +3691 lmy Lamboya +3692 lna Langbashe +3693 lnb Mbalanhu +3694 lnd Lundayeh +3695 lng Langobardic +3696 lnh Lanoh +3697 lni Daantanai' +3698 lnj Leningitij +3699 lnl South Central Banda +3700 lnm Langam +3701 lnn Lorediakarkar +3702 lns Lamnso' +3703 lnu Longuda +3704 lnw Lanima +3705 lnz Lonzo +3706 loa Loloda +3707 lob Lobi +3708 loc Inonhan +3709 loe Saluan +3710 lof Logol +3711 log Logo +3712 loh Laarim +3713 loi Loma (Côte d'Ivoire) +3714 loj Lou +3715 lok Loko +3716 lol Mongo +3717 lom Loma (Liberia) +3718 lon Malawi Lomwe +3719 loo Lombo +3720 lop Lopa +3721 loq Lobala +3722 lor Téén +3723 los Loniu +3724 lot Otuho +3725 lou Louisiana Creole +3726 lov Lopi +3727 low Tampias Lobu +3728 lox Loun +3729 loy Loke +3730 loz Lozi +3731 lpa Lelepa +3732 lpe Lepki +3733 lpn Long Phuri Naga +3734 lpo Lipo +3735 lpx Lopit +3736 lqr Logir +3737 lra Rara Bakati' +3738 lrc Northern Luri +3739 lre Laurentian +3740 lrg Laragia +3741 lri Marachi +3742 lrk Loarki +3743 lrl Lari +3744 lrm Marama +3745 lrn Lorang +3746 lro Laro +3747 lrr Southern Yamphu +3748 lrt Larantuka Malay +3749 lrv Larevat +3750 lrz Lemerig +3751 lsa Lasgerdi +3752 lsb Burundian Sign Language +3753 lsc Albarradas Sign Language +3754 lsd Lishana Deni +3755 lse Lusengo +3756 lsh Lish +3757 lsi Lashi +3758 lsl Latvian Sign Language +3759 lsm Saamia +3760 lsn Tibetan Sign Language +3761 lso Laos Sign Language +3762 lsp Panamanian Sign Language +3763 lsr Aruop +3764 lss Lasi +3765 lst Trinidad and Tobago Sign Language +3766 lsv Sivia Sign Language +3767 lsw Seychelles Sign Language +3768 lsy Mauritian Sign Language +3769 ltc Late Middle Chinese +3770 ltg Latgalian +3771 lth Thur +3772 lti Leti (Indonesia) +3773 ltn Latundê +3774 lto Tsotso +3775 lts Tachoni +3776 ltu Latu +3777 lb Luxembourgish +3778 lua Luba-Lulua +3779 lu Luba-Katanga +3780 luc Aringa +3781 lud Ludian +3782 lue Luvale +3783 luf Laua +3784 lg Ganda +3785 lui Luiseno +3786 luj Luna +3787 luk Lunanakha +3788 lul Olu'bo +3789 lum Luimbi +3790 lun Lunda +3791 luo Luo (Kenya and Tanzania) +3792 lup Lumbu +3793 luq Lucumi +3794 lur Laura +3795 lus Lushai +3796 lut Lushootseed +3797 luu Lumba-Yakkha +3798 luv Luwati +3799 luw Luo (Cameroon) +3800 luy Luyia +3801 luz Southern Luri +3802 lva Maku'a +3803 lvi Lavi +3804 lvk Lavukaleve +3805 lvl Lwel +3806 lvs Standard Latvian +3807 lvu Levuka +3808 lwa Lwalu +3809 lwe Lewo Eleng +3810 lwg Wanga +3811 lwh White Lachi +3812 lwl Eastern Lawa +3813 lwm Laomian +3814 lwo Luwo +3815 lws Malawian Sign Language +3816 lwt Lewotobi +3817 lwu Lawu +3818 lww Lewo +3819 lxm Lakurumau +3820 lya Layakha +3821 lyg Lyngngam +3822 lyn Luyana +3823 lzh Literary Chinese +3824 lzl Litzlitz +3825 lzn Leinong Naga +3826 lzz Laz +3827 maa San Jerónimo Tecóatl Mazatec +3828 mab Yutanduchi Mixtec +3829 mad Madurese +3830 mae Bo-Rukul +3831 maf Mafa +3832 mag Magahi +3833 mh Marshallese +3834 mai Maithili +3835 maj Jalapa De Díaz Mazatec +3836 mak Makasar +3837 ml Malayalam +3838 mam Mam +3839 man Mandingo +3840 maq Chiquihuitlán Mazatec +3841 mr Marathi +3842 mas Masai +3843 mat San Francisco Matlatzinca +3844 mau Huautla Mazatec +3845 mav Sateré-Mawé +3846 maw Mampruli +3847 max North Moluccan Malay +3848 maz Central Mazahua +3849 mba Higaonon +3850 mbb Western Bukidnon Manobo +3851 mbc Macushi +3852 mbd Dibabawon Manobo +3853 mbe Molale +3854 mbf Baba Malay +3855 mbh Mangseng +3856 mbi Ilianen Manobo +3857 mbj Nadëb +3858 mbk Malol +3859 mbl Maxakalí +3860 mbm Ombamba +3861 mbn Macaguán +3862 mbo Mbo (Cameroon) +3863 mbp Malayo +3864 mbq Maisin +3865 mbr Nukak Makú +3866 mbs Sarangani Manobo +3867 mbt Matigsalug Manobo +3868 mbu Mbula-Bwazza +3869 mbv Mbulungish +3870 mbw Maring +3871 mbx Mari (East Sepik Province) +3872 mby Memoni +3873 mbz Amoltepec Mixtec +3874 mca Maca +3875 mcb Machiguenga +3876 mcc Bitur +3877 mcd Sharanahua +3878 mce Itundujia Mixtec +3879 mcf Matsés +3880 mcg Mapoyo +3881 mch Maquiritari +3882 mci Mese +3883 mcj Mvanip +3884 mck Mbunda +3885 mcl Macaguaje +3886 mcm Malaccan Creole Portuguese +3887 mcn Masana +3888 mco Coatlán Mixe +3889 mcp Makaa +3890 mcq Ese +3891 mcr Menya +3892 mcs Mambai +3893 mct Mengisa +3894 mcu Cameroon Mambila +3895 mcv Minanibai +3896 mcw Mawa (Chad) +3897 mcx Mpiemo +3898 mcy South Watut +3899 mcz Mawan +3900 mda Mada (Nigeria) +3901 mdb Morigi +3902 mdc Male (Papua New Guinea) +3903 mdd Mbum +3904 mde Maba (Chad) +3905 mdf Moksha +3906 mdg Massalat +3907 mdh Maguindanaon +3908 mdi Mamvu +3909 mdj Mangbetu +3910 mdk Mangbutu +3911 mdl Maltese Sign Language +3912 mdm Mayogo +3913 mdn Mbati +3914 mdp Mbala +3915 mdq Mbole +3916 mdr Mandar +3917 mds Maria (Papua New Guinea) +3918 mdt Mbere +3919 mdu Mboko +3920 mdv Santa Lucía Monteverde Mixtec +3921 mdw Mbosi +3922 mdx Dizin +3923 mdy Male (Ethiopia) +3924 mdz Suruí Do Pará +3925 mea Menka +3926 meb Ikobi +3927 mec Marra +3928 med Melpa +3929 mee Mengen +3930 mef Megam +3931 meh Southwestern Tlaxiaco Mixtec +3932 mei Midob +3933 mej Meyah +3934 mek Mekeo +3935 mel Central Melanau +3936 mem Mangala +3937 men Mende (Sierra Leone) +3938 meo Kedah Malay +3939 mep Miriwoong +3940 meq Merey +3941 mer Meru +3942 mes Masmaje +3943 met Mato +3944 meu Motu +3945 mev Mano +3946 mew Maaka +3947 mey Hassaniyya +3948 mez Menominee +3949 mfa Pattani Malay +3950 mfb Bangka +3951 mfc Mba +3952 mfd Mendankwe-Nkwen +3953 mfe Morisyen +3954 mff Naki +3955 mfg Mogofin +3956 mfh Matal +3957 mfi Wandala +3958 mfj Mefele +3959 mfk North Mofu +3960 mfl Putai +3961 mfm Marghi South +3962 mfn Cross River Mbembe +3963 mfo Mbe +3964 mfp Makassar Malay +3965 mfq Moba +3966 mfr Marrithiyel +3967 mfs Mexican Sign Language +3968 mft Mokerang +3969 mfu Mbwela +3970 mfv Mandjak +3971 mfw Mulaha +3972 mfx Melo +3973 mfy Mayo +3974 mfz Mabaan +3975 mga Middle Irish (900-1200) +3976 mgb Mararit +3977 mgc Morokodo +3978 mgd Moru +3979 mge Mango +3980 mgf Maklew +3981 mgg Mpumpong +3982 mgh Makhuwa-Meetto +3983 mgi Lijili +3984 mgj Abureni +3985 mgk Mawes +3986 mgl Maleu-Kilenge +3987 mgm Mambae +3988 mgn Mbangi +3989 mgo Meta' +3990 mgp Eastern Magar +3991 mgq Malila +3992 mgr Mambwe-Lungu +3993 mgs Manda (Tanzania) +3994 mgt Mongol +3995 mgu Mailu +3996 mgv Matengo +3997 mgw Matumbi +3998 mgy Mbunga +3999 mgz Mbugwe +4000 mha Manda (India) +4001 mhb Mahongwe +4002 mhc Mocho +4003 mhd Mbugu +4004 mhe Besisi +4005 mhf Mamaa +4006 mhg Margu +4007 mhi Ma'di +4008 mhj Mogholi +4009 mhk Mungaka +4010 mhl Mauwake +4011 mhm Makhuwa-Moniga +4012 mhn Mócheno +4013 mho Mashi (Zambia) +4014 mhp Balinese Malay +4015 mhq Mandan +4016 mhr Eastern Mari +4017 mhs Buru (Indonesia) +4018 mht Mandahuaca +4019 mhu Digaro-Mishmi +4020 mhw Mbukushu +4021 mhx Maru +4022 mhy Ma'anyan +4023 mhz Mor (Mor Islands) +4024 mia Miami +4025 mib Atatláhuca Mixtec +4026 mic Mi'kmaq +4027 mid Mandaic +4028 mie Ocotepec Mixtec +4029 mif Mofu-Gudur +4030 mig San Miguel El Grande Mixtec +4031 mih Chayuco Mixtec +4032 mii Chigmecatitlán Mixtec +4033 mij Abar +4034 mik Mikasuki +4035 mil Peñoles Mixtec +4036 mim Alacatlatzala Mixtec +4037 min Minangkabau +4038 mio Pinotepa Nacional Mixtec +4039 mip Apasco-Apoala Mixtec +4040 miq Mískito +4041 mir Isthmus Mixe +4042 mis Uncoded languages +4043 mit Southern Puebla Mixtec +4044 miu Cacaloxtepec Mixtec +4045 miw Akoye +4046 mix Mixtepec Mixtec +4047 miy Ayutla Mixtec +4048 miz Coatzospan Mixtec +4049 mjb Makalero +4050 mjc San Juan Colorado Mixtec +4051 mjd Northwest Maidu +4052 mje Muskum +4053 mjg Tu +4054 mjh Mwera (Nyasa) +4055 mji Kim Mun +4056 mjj Mawak +4057 mjk Matukar +4058 mjl Mandeali +4059 mjm Medebur +4060 mjn Ma (Papua New Guinea) +4061 mjo Malankuravan +4062 mjp Malapandaram +4063 mjq Malaryan +4064 mjr Malavedan +4065 mjs Miship +4066 mjt Sauria Paharia +4067 mju Manna-Dora +4068 mjv Mannan +4069 mjw Karbi +4070 mjx Mahali +4071 mjy Mahican +4072 mjz Majhi +4073 mka Mbre +4074 mkb Mal Paharia +4075 mkc Siliput +4076 mk Macedonian +4077 mke Mawchi +4078 mkf Miya +4079 mkg Mak (China) +4080 mki Dhatki +4081 mkj Mokilese +4082 mkk Byep +4083 mkl Mokole +4084 mkm Moklen +4085 mkn Kupang Malay +4086 mko Mingang Doso +4087 mkp Moikodi +4088 mkq Bay Miwok +4089 mkr Malas +4090 mks Silacayoapan Mixtec +4091 mkt Vamale +4092 mku Konyanka Maninka +4093 mkv Mafea +4094 mkw Kituba (Congo) +4095 mkx Kinamiging Manobo +4096 mky East Makian +4097 mkz Makasae +4098 mla Malo +4099 mlb Mbule +4100 mlc Cao Lan +4101 mle Manambu +4102 mlf Mal +4103 mg Malagasy +4104 mlh Mape +4105 mli Malimpung +4106 mlj Miltu +4107 mlk Ilwana +4108 mll Malua Bay +4109 mlm Mulam +4110 mln Malango +4111 mlo Mlomp +4112 mlp Bargam +4113 mlq Western Maninkakan +4114 mlr Vame +4115 mls Masalit +4116 mt Maltese +4117 mlu To'abaita +4118 mlv Motlav +4119 mlw Moloko +4120 mlx Malfaxal +4121 mlz Malaynon +4122 mma Mama +4123 mmb Momina +4124 mmc Michoacán Mazahua +4125 mmd Maonan +4126 mme Mae +4127 mmf Mundat +4128 mmg North Ambrym +4129 mmh Mehináku +4130 mmi Musar +4131 mmj Majhwar +4132 mmk Mukha-Dora +4133 mml Man Met +4134 mmm Maii +4135 mmn Mamanwa +4136 mmo Mangga Buang +4137 mmp Siawi +4138 mmq Musak +4139 mmr Western Xiangxi Miao +4140 mmt Malalamai +4141 mmu Mmaala +4142 mmv Miriti +4143 mmw Emae +4144 mmx Madak +4145 mmy Migaama +4146 mmz Mabaale +4147 mna Mbula +4148 mnb Muna +4149 mnc Manchu +4150 mnd Mondé +4151 mne Naba +4152 mnf Mundani +4153 mng Eastern Mnong +4154 mnh Mono (Democratic Republic of Congo) +4155 mni Manipuri +4156 mnj Munji +4157 mnk Mandinka +4158 mnl Tiale +4159 mnm Mapena +4160 mnn Southern Mnong +4161 mnp Min Bei Chinese +4162 mnq Minriq +4163 mnr Mono (USA) +4164 mns Mansi +4165 mnu Mer +4166 mnv Rennell-Bellona +4167 mnw Mon +4168 mnx Manikion +4169 mny Manyawa +4170 mnz Moni +4171 moa Mwan +4172 moc Mocoví +4173 mod Mobilian +4174 moe Innu +4175 mog Mongondow +4176 moh Mohawk +4177 moi Mboi +4178 moj Monzombo +4179 mok Morori +4180 mom Mangue +4181 mn Mongolian +4182 moo Monom +4183 mop Mopán Maya +4184 moq Mor (Bomberai Peninsula) +4185 mor Moro +4186 mos Mossi +4187 mot Barí +4188 mou Mogum +4189 mov Mohave +4190 mow Moi (Congo) +4191 mox Molima +4192 moy Shekkacho +4193 moz Mukulu +4194 mpa Mpoto +4195 mpb Malak Malak +4196 mpc Mangarrayi +4197 mpd Machinere +4198 mpe Majang +4199 mpg Marba +4200 mph Maung +4201 mpi Mpade +4202 mpj Martu Wangka +4203 mpk Mbara (Chad) +4204 mpl Middle Watut +4205 mpm Yosondúa Mixtec +4206 mpn Mindiri +4207 mpo Miu +4208 mpp Migabac +4209 mpq Matís +4210 mpr Vangunu +4211 mps Dadibi +4212 mpt Mian +4213 mpu Makuráp +4214 mpv Mungkip +4215 mpw Mapidian +4216 mpx Misima-Panaeati +4217 mpy Mapia +4218 mpz Mpi +4219 mqa Maba (Indonesia) +4220 mqb Mbuko +4221 mqc Mangole +4222 mqe Matepi +4223 mqf Momuna +4224 mqg Kota Bangun Kutai Malay +4225 mqh Tlazoyaltepec Mixtec +4226 mqi Mariri +4227 mqj Mamasa +4228 mqk Rajah Kabunsuwan Manobo +4229 mql Mbelime +4230 mqm South Marquesan +4231 mqn Moronene +4232 mqo Modole +4233 mqp Manipa +4234 mqq Minokok +4235 mqr Mander +4236 mqs West Makian +4237 mqt Mok +4238 mqu Mandari +4239 mqv Mosimo +4240 mqw Murupi +4241 mqx Mamuju +4242 mqy Manggarai +4243 mqz Pano +4244 mra Mlabri +4245 mrb Marino +4246 mrc Maricopa +4247 mrd Western Magar +4248 mre Martha's Vineyard Sign Language +4249 mrf Elseng +4250 mrg Mising +4251 mrh Mara Chin +4252 mi Maori +4253 mrj Western Mari +4254 mrk Hmwaveke +4255 mrl Mortlockese +4256 mrm Merlav +4257 mrn Cheke Holo +4258 mro Mru +4259 mrp Morouas +4260 mrq North Marquesan +4261 mrr Maria (India) +4262 mrs Maragus +4263 mrt Marghi Central +4264 mru Mono (Cameroon) +4265 mrv Mangareva +4266 mrw Maranao +4267 mrx Maremgi +4268 mry Mandaya +4269 mrz Marind +4270 ms Malay (macrolanguage) +4271 msb Masbatenyo +4272 msc Sankaran Maninka +4273 msd Yucatec Maya Sign Language +4274 mse Musey +4275 msf Mekwei +4276 msg Moraid +4277 msh Masikoro Malagasy +4278 msi Sabah Malay +4279 msj Ma (Democratic Republic of Congo) +4280 msk Mansaka +4281 msl Molof +4282 msm Agusan Manobo +4283 msn Vurës +4284 mso Mombum +4285 msp Maritsauá +4286 msq Caac +4287 msr Mongolian Sign Language +4288 mss West Masela +4289 msu Musom +4290 msv Maslam +4291 msw Mansoanka +4292 msx Moresada +4293 msy Aruamu +4294 msz Momare +4295 mta Cotabato Manobo +4296 mtb Anyin Morofo +4297 mtc Munit +4298 mtd Mualang +4299 mte Mono (Solomon Islands) +4300 mtf Murik (Papua New Guinea) +4301 mtg Una +4302 mth Munggui +4303 mti Maiwa (Papua New Guinea) +4304 mtj Moskona +4305 mtk Mbe' +4306 mtl Montol +4307 mtm Mator +4308 mtn Matagalpa +4309 mto Totontepec Mixe +4310 mtp Wichí Lhamtés Nocten +4311 mtq Muong +4312 mtr Mewari +4313 mts Yora +4314 mtt Mota +4315 mtu Tututepec Mixtec +4316 mtv Asaro'o +4317 mtw Southern Binukidnon +4318 mtx Tidaá Mixtec +4319 mty Nabi +4320 mua Mundang +4321 mub Mubi +4322 muc Ajumbu +4323 mud Mednyj Aleut +4324 mue Media Lengua +4325 mug Musgu +4326 muh Mündü +4327 mui Musi +4328 muj Mabire +4329 muk Mugom +4330 mul Multiple languages +4331 mum Maiwala +4332 muo Nyong +4333 mup Malvi +4334 muq Eastern Xiangxi Miao +4335 mur Murle +4336 mus Creek +4337 mut Western Muria +4338 muu Yaaku +4339 muv Muthuvan +4340 mux Bo-Ung +4341 muy Muyang +4342 muz Mursi +4343 mva Manam +4344 mvb Mattole +4345 mvd Mamboru +4346 mve Marwari (Pakistan) +4347 mvf Peripheral Mongolian +4348 mvg Yucuañe Mixtec +4349 mvh Mulgi +4350 mvi Miyako +4351 mvk Mekmek +4352 mvl Mbara (Australia) +4353 mvn Minaveha +4354 mvo Marovo +4355 mvp Duri +4356 mvq Moere +4357 mvr Marau +4358 mvs Massep +4359 mvt Mpotovoro +4360 mvu Marfa +4361 mvv Tagal Murut +4362 mvw Machinga +4363 mvx Meoswar +4364 mvy Indus Kohistani +4365 mvz Mesqan +4366 mwa Mwatebu +4367 mwb Juwal +4368 mwc Are +4369 mwe Mwera (Chimwera) +4370 mwf Murrinh-Patha +4371 mwg Aiklep +4372 mwh Mouk-Aria +4373 mwi Labo +4374 mwk Kita Maninkakan +4375 mwl Mirandese +4376 mwm Sar +4377 mwn Nyamwanga +4378 mwo Central Maewo +4379 mwp Kala Lagaw Ya +4380 mwq Mün Chin +4381 mwr Marwari +4382 mws Mwimbi-Muthambi +4383 mwt Moken +4384 mwu Mittu +4385 mwv Mentawai +4386 mww Hmong Daw +4387 mwz Moingi +4388 mxa Northwest Oaxaca Mixtec +4389 mxb Tezoatlán Mixtec +4390 mxc Manyika +4391 mxd Modang +4392 mxe Mele-Fila +4393 mxf Malgbe +4394 mxg Mbangala +4395 mxh Mvuba +4396 mxi Mozarabic +4397 mxj Miju-Mishmi +4398 mxk Monumbo +4399 mxl Maxi Gbe +4400 mxm Meramera +4401 mxn Moi (Indonesia) +4402 mxo Mbowe +4403 mxp Tlahuitoltepec Mixe +4404 mxq Juquila Mixe +4405 mxr Murik (Malaysia) +4406 mxs Huitepec Mixtec +4407 mxt Jamiltepec Mixtec +4408 mxu Mada (Cameroon) +4409 mxv Metlatónoc Mixtec +4410 mxw Namo +4411 mxx Mahou +4412 mxy Southeastern Nochixtlán Mixtec +4413 mxz Central Masela +4414 my Burmese +4415 myb Mbay +4416 myc Mayeka +4417 mye Myene +4418 myf Bambassi +4419 myg Manta +4420 myh Makah +4421 myj Mangayat +4422 myk Mamara Senoufo +4423 myl Moma +4424 mym Me'en +4425 myo Anfillo +4426 myp Pirahã +4427 myr Muniche +4428 mys Mesmes +4429 myu Mundurukú +4430 myv Erzya +4431 myw Muyuw +4432 myx Masaaba +4433 myy Macuna +4434 myz Classical Mandaic +4435 mza Santa María Zacatepec Mixtec +4436 mzb Tumzabt +4437 mzc Madagascar Sign Language +4438 mzd Malimba +4439 mze Morawa +4440 mzg Monastic Sign Language +4441 mzh Wichí Lhamtés Güisnay +4442 mzi Ixcatlán Mazatec +4443 mzj Manya +4444 mzk Nigeria Mambila +4445 mzl Mazatlán Mixe +4446 mzm Mumuye +4447 mzn Mazanderani +4448 mzo Matipuhy +4449 mzp Movima +4450 mzq Mori Atas +4451 mzr Marúbo +4452 mzs Macanese +4453 mzt Mintil +4454 mzu Inapang +4455 mzv Manza +4456 mzw Deg +4457 mzx Mawayana +4458 mzy Mozambican Sign Language +4459 mzz Maiadomu +4460 naa Namla +4461 nab Southern Nambikuára +4462 nac Narak +4463 nae Naka'ela +4464 naf Nabak +4465 nag Naga Pidgin +4466 naj Nalu +4467 nak Nakanai +4468 nal Nalik +4469 nam Ngan'gityemerri +4470 nan Min Nan Chinese +4471 nao Naaba +4472 nap Neapolitan +4473 naq Khoekhoe +4474 nar Iguta +4475 nas Naasioi +4476 nat Ca̱hungwa̱rya̱ +4477 na Nauru +4478 nv Navajo +4479 naw Nawuri +4480 nax Nakwi +4481 nay Ngarrindjeri +4482 naz Coatepec Nahuatl +4483 nba Nyemba +4484 nbb Ndoe +4485 nbc Chang Naga +4486 nbd Ngbinda +4487 nbe Konyak Naga +4488 nbg Nagarchal +4489 nbh Ngamo +4490 nbi Mao Naga +4491 nbj Ngarinyman +4492 nbk Nake +4493 nr South Ndebele +4494 nbm Ngbaka Ma'bo +4495 nbn Kuri +4496 nbo Nkukoli +4497 nbp Nnam +4498 nbq Nggem +4499 nbr Numana +4500 nbs Namibian Sign Language +4501 nbt Na +4502 nbu Rongmei Naga +4503 nbv Ngamambo +4504 nbw Southern Ngbandi +4505 nby Ningera +4506 nca Iyo +4507 ncb Central Nicobarese +4508 ncc Ponam +4509 ncd Nachering +4510 nce Yale +4511 ncf Notsi +4512 ncg Nisga'a +4513 nch Central Huasteca Nahuatl +4514 nci Classical Nahuatl +4515 ncj Northern Puebla Nahuatl +4516 nck Na-kara +4517 ncl Michoacán Nahuatl +4518 ncm Nambo +4519 ncn Nauna +4520 nco Sibe +4521 ncq Northern Katang +4522 ncr Ncane +4523 ncs Nicaraguan Sign Language +4524 nct Chothe Naga +4525 ncu Chumburung +4526 ncx Central Puebla Nahuatl +4527 ncz Natchez +4528 nda Ndasa +4529 ndb Kenswei Nsei +4530 ndc Ndau +4531 ndd Nde-Nsele-Nta +4532 nd North Ndebele +4533 ndf Nadruvian +4534 ndg Ndengereko +4535 ndh Ndali +4536 ndi Samba Leko +4537 ndj Ndamba +4538 ndk Ndaka +4539 ndl Ndolo +4540 ndm Ndam +4541 ndn Ngundi +4542 ng Ndonga +4543 ndp Ndo +4544 ndq Ndombe +4545 ndr Ndoola +4546 nds Low German +4547 ndt Ndunga +4548 ndu Dugun +4549 ndv Ndut +4550 ndw Ndobo +4551 ndx Nduga +4552 ndy Lutos +4553 ndz Ndogo +4554 nea Eastern Ngad'a +4555 neb Toura (Côte d'Ivoire) +4556 nec Nedebang +4557 ned Nde-Gbite +4558 nee Nêlêmwa-Nixumwak +4559 nef Nefamese +4560 neg Negidal +4561 neh Nyenkha +4562 nei Neo-Hittite +4563 nej Neko +4564 nek Neku +4565 nem Nemi +4566 nen Nengone +4567 neo Ná-Meo +4568 ne Nepali (macrolanguage) +4569 neq North Central Mixe +4570 ner Yahadian +4571 nes Bhoti Kinnauri +4572 net Nete +4573 neu Neo +4574 nev Nyaheun +4575 new Newari +4576 nex Neme +4577 ney Neyo +4578 nez Nez Perce +4579 nfa Dhao +4580 nfd Ahwai +4581 nfl Ayiwo +4582 nfr Nafaanra +4583 nfu Mfumte +4584 nga Ngbaka +4585 ngb Northern Ngbandi +4586 ngc Ngombe (Democratic Republic of Congo) +4587 ngd Ngando (Central African Republic) +4588 nge Ngemba +4589 ngg Ngbaka Manza +4590 ngh Nǁng +4591 ngi Ngizim +4592 ngj Ngie +4593 ngk Dalabon +4594 ngl Lomwe +4595 ngm Ngatik Men's Creole +4596 ngn Ngwo +4597 ngp Ngulu +4598 ngq Ngurimi +4599 ngr Engdewu +4600 ngs Gvoko +4601 ngt Kriang +4602 ngu Guerrero Nahuatl +4603 ngv Nagumi +4604 ngw Ngwaba +4605 ngx Nggwahyi +4606 ngy Tibea +4607 ngz Ngungwel +4608 nha Nhanda +4609 nhb Beng +4610 nhc Tabasco Nahuatl +4611 nhd Chiripá +4612 nhe Eastern Huasteca Nahuatl +4613 nhf Nhuwala +4614 nhg Tetelcingo Nahuatl +4615 nhh Nahari +4616 nhi Zacatlán-Ahuacatlán-Tepetzintla Nahuatl +4617 nhk Isthmus-Cosoleacaque Nahuatl +4618 nhm Morelos Nahuatl +4619 nhn Central Nahuatl +4620 nho Takuu +4621 nhp Isthmus-Pajapan Nahuatl +4622 nhq Huaxcaleca Nahuatl +4623 nhr Naro +4624 nht Ometepec Nahuatl +4625 nhu Noone +4626 nhv Temascaltepec Nahuatl +4627 nhw Western Huasteca Nahuatl +4628 nhx Isthmus-Mecayapan Nahuatl +4629 nhy Northern Oaxaca Nahuatl +4630 nhz Santa María La Alta Nahuatl +4631 nia Nias +4632 nib Nakame +4633 nid Ngandi +4634 nie Niellim +4635 nif Nek +4636 nig Ngalakgan +4637 nih Nyiha (Tanzania) +4638 nii Nii +4639 nij Ngaju +4640 nik Southern Nicobarese +4641 nil Nila +4642 nim Nilamba +4643 nin Ninzo +4644 nio Nganasan +4645 niq Nandi +4646 nir Nimboran +4647 nis Nimi +4648 nit Southeastern Kolami +4649 niu Niuean +4650 niv Gilyak +4651 niw Nimo +4652 nix Hema +4653 niy Ngiti +4654 niz Ningil +4655 nja Nzanyi +4656 njb Nocte Naga +4657 njd Ndonde Hamba +4658 njh Lotha Naga +4659 nji Gudanji +4660 njj Njen +4661 njl Njalgulgule +4662 njm Angami Naga +4663 njn Liangmai Naga +4664 njo Ao Naga +4665 njr Njerep +4666 njs Nisa +4667 njt Ndyuka-Trio Pidgin +4668 nju Ngadjunmaya +4669 njx Kunyi +4670 njy Njyem +4671 njz Nyishi +4672 nka Nkoya +4673 nkb Khoibu Naga +4674 nkc Nkongho +4675 nkd Koireng +4676 nke Duke +4677 nkf Inpui Naga +4678 nkg Nekgini +4679 nkh Khezha Naga +4680 nki Thangal Naga +4681 nkj Nakai +4682 nkk Nokuku +4683 nkm Namat +4684 nkn Nkangala +4685 nko Nkonya +4686 nkp Niuatoputapu +4687 nkq Nkami +4688 nkr Nukuoro +4689 nks North Asmat +4690 nkt Nyika (Tanzania) +4691 nku Bouna Kulango +4692 nkv Nyika (Malawi and Zambia) +4693 nkw Nkutu +4694 nkx Nkoroo +4695 nkz Nkari +4696 nla Ngombale +4697 nlc Nalca +4698 nl Dutch +4699 nle East Nyala +4700 nlg Gela +4701 nli Grangali +4702 nlj Nyali +4703 nlk Ninia Yali +4704 nll Nihali +4705 nlm Mankiyali +4706 nlo Ngul +4707 nlq Lao Naga +4708 nlu Nchumbulu +4709 nlv Orizaba Nahuatl +4710 nlw Walangama +4711 nlx Nahali +4712 nly Nyamal +4713 nlz Nalögo +4714 nma Maram Naga +4715 nmb Big Nambas +4716 nmc Ngam +4717 nmd Ndumu +4718 nme Mzieme Naga +4719 nmf Tangkhul Naga (India) +4720 nmg Kwasio +4721 nmh Monsang Naga +4722 nmi Nyam +4723 nmj Ngombe (Central African Republic) +4724 nmk Namakura +4725 nml Ndemli +4726 nmm Manangba +4727 nmn ǃXóõ +4728 nmo Moyon Naga +4729 nmp Nimanbur +4730 nmq Nambya +4731 nmr Nimbari +4732 nms Letemboi +4733 nmt Namonuito +4734 nmu Northeast Maidu +4735 nmv Ngamini +4736 nmw Nimoa +4737 nmx Nama (Papua New Guinea) +4738 nmy Namuyi +4739 nmz Nawdm +4740 nna Nyangumarta +4741 nnb Nande +4742 nnc Nancere +4743 nnd West Ambae +4744 nne Ngandyera +4745 nnf Ngaing +4746 nng Maring Naga +4747 nnh Ngiemboon +4748 nni North Nuaulu +4749 nnj Nyangatom +4750 nnk Nankina +4751 nnl Northern Rengma Naga +4752 nnm Namia +4753 nnn Ngete +4754 nn Norwegian Nynorsk +4755 nnp Wancho Naga +4756 nnq Ngindo +4757 nnr Narungga +4758 nnt Nanticoke +4759 nnu Dwang +4760 nnv Nugunu (Australia) +4761 nnw Southern Nuni +4762 nny Nyangga +4763 nnz Nda'nda' +4764 noa Woun Meu +4765 nb Norwegian BokmÃ¥l +4766 noc Nuk +4767 nod Northern Thai +4768 noe Nimadi +4769 nof Nomane +4770 nog Nogai +4771 noh Nomu +4772 noi Noiri +4773 noj Nonuya +4774 nok Nooksack +4775 nol Nomlaki +4776 non Old Norse +4777 nop Numanggang +4778 noq Ngongo +4779 no Norwegian +4780 nos Eastern Nisu +4781 not Nomatsiguenga +4782 nou Ewage-Notu +4783 nov Novial +4784 now Nyambo +4785 noy Noy +4786 noz Nayi +4787 npa Nar Phu +4788 npb Nupbikha +4789 npg Ponyo-Gongwang Naga +4790 nph Phom Naga +4791 npi Nepali (individual language) +4792 npl Southeastern Puebla Nahuatl +4793 npn Mondropolon +4794 npo Pochuri Naga +4795 nps Nipsan +4796 npu Puimei Naga +4797 npx Noipx +4798 npy Napu +4799 nqg Southern Nago +4800 nqk Kura Ede Nago +4801 nql Ngendelengo +4802 nqm Ndom +4803 nqn Nen +4804 nqo N'Ko +4805 nqq Kyan-Karyaw Naga +4806 nqt Nteng +4807 nqy Akyaung Ari Naga +4808 nra Ngom +4809 nrb Nara +4810 nrc Noric +4811 nre Southern Rengma Naga +4812 nrf Jèrriais +4813 nrg Narango +4814 nri Chokri Naga +4815 nrk Ngarla +4816 nrl Ngarluma +4817 nrm Narom +4818 nrn Norn +4819 nrp North Picene +4820 nrr Norra +4821 nrt Northern Kalapuya +4822 nru Narua +4823 nrx Ngurmbur +4824 nrz Lala +4825 nsa Sangtam Naga +4826 nsb Lower Nossob +4827 nsc Nshi +4828 nsd Southern Nisu +4829 nse Nsenga +4830 nsf Northwestern Nisu +4831 nsg Ngasa +4832 nsh Ngoshie +4833 nsi Nigerian Sign Language +4834 nsk Naskapi +4835 nsl Norwegian Sign Language +4836 nsm Sumi Naga +4837 nsn Nehan +4838 nso Pedi +4839 nsp Nepalese Sign Language +4840 nsq Northern Sierra Miwok +4841 nsr Maritime Sign Language +4842 nss Nali +4843 nst Tase Naga +4844 nsu Sierra Negra Nahuatl +4845 nsv Southwestern Nisu +4846 nsw Navut +4847 nsx Nsongo +4848 nsy Nasal +4849 nsz Nisenan +4850 ntd Northern Tidung +4851 nte Nathembo +4852 ntg Ngantangarra +4853 nti Natioro +4854 ntj Ngaanyatjarra +4855 ntk Ikoma-Nata-Isenye +4856 ntm Nateni +4857 nto Ntomba +4858 ntp Northern Tepehuan +4859 ntr Delo +4860 ntu Natügu +4861 ntw Nottoway +4862 ntx Tangkhul Naga (Myanmar) +4863 nty Mantsi +4864 ntz Natanzi +4865 nua Yuanga +4866 nuc Nukuini +4867 nud Ngala +4868 nue Ngundu +4869 nuf Nusu +4870 nug Nungali +4871 nuh Ndunda +4872 nui Ngumbi +4873 nuj Nyole +4874 nuk Nuu-chah-nulth +4875 nul Nusa Laut +4876 num Niuafo'ou +4877 nun Anong +4878 nuo Nguôn +4879 nup Nupe-Nupe-Tako +4880 nuq Nukumanu +4881 nur Nukuria +4882 nus Nuer +4883 nut Nung (Viet Nam) +4884 nuu Ngbundu +4885 nuv Northern Nuni +4886 nuw Nguluwan +4887 nux Mehek +4888 nuy Nunggubuyu +4889 nuz Tlamacazapa Nahuatl +4890 nvh Nasarian +4891 nvm Namiae +4892 nvo Nyokon +4893 nwa Nawathinehena +4894 nwb Nyabwa +4895 nwc Classical Newari +4896 nwe Ngwe +4897 nwg Ngayawung +4898 nwi Southwest Tanna +4899 nwm Nyamusa-Molo +4900 nwo Nauo +4901 nwr Nawaru +4902 nww Ndwewe +4903 nwx Middle Newar +4904 nwy Nottoway-Meherrin +4905 nxa Nauete +4906 nxd Ngando (Democratic Republic of Congo) +4907 nxe Nage +4908 nxg Ngad'a +4909 nxi Nindi +4910 nxk Koki Naga +4911 nxl South Nuaulu +4912 nxm Numidian +4913 nxn Ngawun +4914 nxo Ndambomo +4915 nxq Naxi +4916 nxr Ninggerum +4917 nxx Nafri +4918 ny Nyanja +4919 nyb Nyangbo +4920 nyc Nyanga-li +4921 nyd Nyore +4922 nye Nyengo +4923 nyf Giryama +4924 nyg Nyindu +4925 nyh Nyikina +4926 nyi Ama (Sudan) +4927 nyj Nyanga +4928 nyk Nyaneka +4929 nyl Nyeu +4930 nym Nyamwezi +4931 nyn Nyankole +4932 nyo Nyoro +4933 nyp Nyang'i +4934 nyq Nayini +4935 nyr Nyiha (Malawi) +4936 nys Nyungar +4937 nyt Nyawaygi +4938 nyu Nyungwe +4939 nyv Nyulnyul +4940 nyw Nyaw +4941 nyx Nganyaywana +4942 nyy Nyakyusa-Ngonde +4943 nza Tigon Mbembe +4944 nzb Njebi +4945 nzd Nzadi +4946 nzi Nzima +4947 nzk Nzakara +4948 nzm Zeme Naga +4949 nzr Dir-Nyamzak-Mbarimi +4950 nzs New Zealand Sign Language +4951 nzu Teke-Nzikou +4952 nzy Nzakambay +4953 nzz Nanga Dama Dogon +4954 oaa Orok +4955 oac Oroch +4956 oar Old Aramaic (up to 700 BCE) +4957 oav Old Avar +4958 obi Obispeño +4959 obk Southern Bontok +4960 obl Oblo +4961 obm Moabite +4962 obo Obo Manobo +4963 obr Old Burmese +4964 obt Old Breton +4965 obu Obulom +4966 oca Ocaina +4967 och Old Chinese +4968 oc Occitan (post 1500) +4969 ocm Old Cham +4970 oco Old Cornish +4971 ocu Atzingo Matlatzinca +4972 oda Odut +4973 odk Od +4974 odt Old Dutch +4975 odu Odual +4976 ofo Ofo +4977 ofs Old Frisian +4978 ofu Efutop +4979 ogb Ogbia +4980 ogc Ogbah +4981 oge Old Georgian +4982 ogg Ogbogolo +4983 ogo Khana +4984 ogu Ogbronuagum +4985 oht Old Hittite +4986 ohu Old Hungarian +4987 oia Oirata +4988 oie Okolie +4989 oin Inebu One +4990 ojb Northwestern Ojibwa +4991 ojc Central Ojibwa +4992 ojg Eastern Ojibwa +4993 oj Ojibwa +4994 ojp Old Japanese +4995 ojs Severn Ojibwa +4996 ojv Ontong Java +4997 ojw Western Ojibwa +4998 oka Okanagan +4999 okb Okobo +5000 okc Kobo +5001 okd Okodia +5002 oke Okpe (Southwestern Edo) +5003 okg Koko Babangk +5004 okh Koresh-e Rostam +5005 oki Okiek +5006 okj Oko-Juwoi +5007 okk Kwamtim One +5008 okl Old Kentish Sign Language +5009 okm Middle Korean (10th-16th cent.) +5010 okn Oki-No-Erabu +5011 oko Old Korean (3rd-9th cent.) +5012 okr Kirike +5013 oks Oko-Eni-Osayen +5014 oku Oku +5015 okv Orokaiva +5016 okx Okpe (Northwestern Edo) +5017 okz Old Khmer +5018 ola Walungge +5019 old Mochi +5020 ole Olekha +5021 olk Olkol +5022 olm Oloma +5023 olo Livvi +5024 olr Olrat +5025 olt Old Lithuanian +5026 olu Kuvale +5027 oma Omaha-Ponca +5028 omb East Ambae +5029 omc Mochica +5030 omg Omagua +5031 omi Omi +5032 omk Omok +5033 oml Ombo +5034 omn Minoan +5035 omo Utarmbung +5036 omp Old Manipuri +5037 omr Old Marathi +5038 omt Omotik +5039 omu Omurano +5040 omw South Tairora +5041 omx Old Mon +5042 omy Old Malay +5043 ona Ona +5044 onb Lingao +5045 one Oneida +5046 ong Olo +5047 oni Onin +5048 onj Onjob +5049 onk Kabore One +5050 onn Onobasulu +5051 ono Onondaga +5052 onp Sartang +5053 onr Northern One +5054 ons Ono +5055 ont Ontenu +5056 onu Unua +5057 onw Old Nubian +5058 onx Onin Based Pidgin +5059 ood Tohono O'odham +5060 oog Ong +5061 oon Önge +5062 oor Oorlams +5063 oos Old Ossetic +5064 opa Okpamheri +5065 opk Kopkaka +5066 opm Oksapmin +5067 opo Opao +5068 opt Opata +5069 opy Ofayé +5070 ora Oroha +5071 orc Orma +5072 ore Orejón +5073 org Oring +5074 orh Oroqen +5075 or Oriya (macrolanguage) +5076 om Oromo +5077 orn Orang Kanaq +5078 oro Orokolo +5079 orr Oruma +5080 ors Orang Seletar +5081 ort Adivasi Oriya +5082 oru Ormuri +5083 orv Old Russian +5084 orw Oro Win +5085 orx Oro +5086 ory Odia +5087 orz Ormu +5088 osa Osage +5089 osc Oscan +5090 osi Osing +5091 osn Old Sundanese +5092 oso Ososo +5093 osp Old Spanish +5094 os Ossetian +5095 ost Osatu +5096 osu Southern One +5097 osx Old Saxon +5098 ota Ottoman Turkish (1500-1928) +5099 otb Old Tibetan +5100 otd Ot Danum +5101 ote Mezquital Otomi +5102 oti Oti +5103 otk Old Turkish +5104 otl Tilapa Otomi +5105 otm Eastern Highland Otomi +5106 otn Tenango Otomi +5107 otq Querétaro Otomi +5108 otr Otoro +5109 ots Estado de México Otomi +5110 ott Temoaya Otomi +5111 otu Otuke +5112 otw Ottawa +5113 otx Texcatepec Otomi +5114 oty Old Tamil +5115 otz Ixtenco Otomi +5116 oua Tagargrent +5117 oub Glio-Oubi +5118 oue Oune +5119 oui Old Uighur +5120 oum Ouma +5121 ovd Elfdalian +5122 owi Owiniga +5123 owl Old Welsh +5124 oyb Oy +5125 oyd Oyda +5126 oym Wayampi +5127 oyy Oya'oya +5128 ozm Koonzime +5129 pab Parecís +5130 pac Pacoh +5131 pad Paumarí +5132 pae Pagibete +5133 paf Paranawát +5134 pag Pangasinan +5135 pah Tenharim +5136 pai Pe +5137 pak Parakanã +5138 pal Pahlavi +5139 pam Pampanga +5140 pa Panjabi +5141 pao Northern Paiute +5142 pap Papiamento +5143 paq Parya +5144 par Panamint +5145 pas Papasena +5146 pau Palauan +5147 pav Pakaásnovos +5148 paw Pawnee +5149 pax Pankararé +5150 pay Pech +5151 paz Pankararú +5152 pbb Páez +5153 pbc Patamona +5154 pbe Mezontla Popoloca +5155 pbf Coyotepec Popoloca +5156 pbg Paraujano +5157 pbh E'ñapa Woromaipu +5158 pbi Parkwa +5159 pbl Mak (Nigeria) +5160 pbm Puebla Mazatec +5161 pbn Kpasam +5162 pbo Papel +5163 pbp Badyara +5164 pbr Pangwa +5165 pbs Central Pame +5166 pbt Southern Pashto +5167 pbu Northern Pashto +5168 pbv Pnar +5169 pby Pyu (Papua New Guinea) +5170 pca Santa Inés Ahuatempan Popoloca +5171 pcb Pear +5172 pcc Bouyei +5173 pcd Picard +5174 pce Ruching Palaung +5175 pcf Paliyan +5176 pcg Paniya +5177 pch Pardhan +5178 pci Duruwa +5179 pcj Parenga +5180 pck Paite Chin +5181 pcl Pardhi +5182 pcm Nigerian Pidgin +5183 pcn Piti +5184 pcp Pacahuara +5185 pcw Pyapun +5186 pda Anam +5187 pdc Pennsylvania German +5188 pdi Pa Di +5189 pdn Podena +5190 pdo Padoe +5191 pdt Plautdietsch +5192 pdu Kayan +5193 pea Peranakan Indonesian +5194 peb Eastern Pomo +5195 ped Mala (Papua New Guinea) +5196 pee Taje +5197 pef Northeastern Pomo +5198 peg Pengo +5199 peh Bonan +5200 pei Chichimeca-Jonaz +5201 pej Northern Pomo +5202 pek Penchal +5203 pel Pekal +5204 pem Phende +5205 peo Old Persian (ca. 600-400 B.C.) +5206 pep Kunja +5207 peq Southern Pomo +5208 pes Iranian Persian +5209 pev Pémono +5210 pex Petats +5211 pey Petjo +5212 pez Eastern Penan +5213 pfa Pááfang +5214 pfe Pere +5215 pfl Pfaelzisch +5216 pga Sudanese Creole Arabic +5217 pgd GāndhārÄ« +5218 pgg Pangwali +5219 pgi Pagi +5220 pgk Rerep +5221 pgl Primitive Irish +5222 pgn Paelignian +5223 pgs Pangseng +5224 pgu Pagu +5225 pgz Papua New Guinean Sign Language +5226 pha Pa-Hng +5227 phd Phudagi +5228 phg Phuong +5229 phh Phukha +5230 phj Pahari +5231 phk Phake +5232 phl Phalura +5233 phm Phimbi +5234 phn Phoenician +5235 pho Phunoi +5236 phq Phana' +5237 phr Pahari-Potwari +5238 pht Phu Thai +5239 phu Phuan +5240 phv Pahlavani +5241 phw Phangduwali +5242 pia Pima Bajo +5243 pib Yine +5244 pic Pinji +5245 pid Piaroa +5246 pie Piro +5247 pif Pingelapese +5248 pig Pisabo +5249 pih Pitcairn-Norfolk +5250 pij Pijao +5251 pil Yom +5252 pim Powhatan +5253 pin Piame +5254 pio Piapoco +5255 pip Pero +5256 pir Piratapuyo +5257 pis Pijin +5258 pit Pitta Pitta +5259 piu Pintupi-Luritja +5260 piv Pileni +5261 piw Pimbwe +5262 pix Piu +5263 piy Piya-Kwonci +5264 piz Pije +5265 pjt Pitjantjatjara +5266 pka ArdhamāgadhÄ« Prākrit +5267 pkb Pokomo +5268 pkc Paekche +5269 pkg Pak-Tong +5270 pkh Pankhu +5271 pkn Pakanha +5272 pko Pökoot +5273 pkp Pukapuka +5274 pkr Attapady Kurumba +5275 pks Pakistan Sign Language +5276 pkt Maleng +5277 pku Paku +5278 pla Miani +5279 plb Polonombauk +5280 plc Central Palawano +5281 pld Polari +5282 ple Palu'e +5283 plg Pilagá +5284 plh Paulohi +5285 pi Pali +5286 plk Kohistani Shina +5287 pll Shwe Palaung +5288 pln Palenquero +5289 plo Oluta Popoluca +5290 plq Palaic +5291 plr Palaka Senoufo +5292 pls San Marcos Tlacoyalco Popoloca +5293 plt Plateau Malagasy +5294 plu Palikúr +5295 plv Southwest Palawano +5296 plw Brooke's Point Palawano +5297 ply Bolyu +5298 plz Paluan +5299 pma Paama +5300 pmb Pambia +5301 pmd Pallanganmiddang +5302 pme Pwaamei +5303 pmf Pamona +5304 pmh Māhārāṣṭri Prākrit +5305 pmi Northern Pumi +5306 pmj Southern Pumi +5307 pml Lingua Franca +5308 pmm Pomo +5309 pmn Pam +5310 pmo Pom +5311 pmq Northern Pame +5312 pmr Paynamar +5313 pms Piemontese +5314 pmt Tuamotuan +5315 pmw Plains Miwok +5316 pmx Poumei Naga +5317 pmy Papuan Malay +5318 pmz Southern Pame +5319 pna Punan Bah-Biau +5320 pnb Western Panjabi +5321 pnc Pannei +5322 pnd Mpinda +5323 pne Western Penan +5324 png Pangu +5325 pnh Penrhyn +5326 pni Aoheng +5327 pnj Pinjarup +5328 pnk Paunaka +5329 pnl Paleni +5330 pnm Punan Batu 1 +5331 pnn Pinai-Hagahai +5332 pno Panobo +5333 pnp Pancana +5334 pnq Pana (Burkina Faso) +5335 pnr Panim +5336 pns Ponosakan +5337 pnt Pontic +5338 pnu Jiongnai Bunu +5339 pnv Pinigura +5340 pnw Banyjima +5341 pnx Phong-Kniang +5342 pny Pinyin +5343 pnz Pana (Central African Republic) +5344 poc Poqomam +5345 poe San Juan Atzingo Popoloca +5346 pof Poke +5347 pog Potiguára +5348 poh Poqomchi' +5349 poi Highland Popoluca +5350 pok Pokangá +5351 pl Polish +5352 pom Southeastern Pomo +5353 pon Pohnpeian +5354 poo Central Pomo +5355 pop Pwapwâ +5356 poq Texistepec Popoluca +5357 pt Portuguese +5358 pos Sayula Popoluca +5359 pot Potawatomi +5360 pov Upper Guinea Crioulo +5361 pow San Felipe Otlaltepec Popoloca +5362 pox Polabian +5363 poy Pogolo +5364 ppe Papi +5365 ppi Paipai +5366 ppk Uma +5367 ppl Pipil +5368 ppm Papuma +5369 ppn Papapana +5370 ppo Folopa +5371 ppp Pelende +5372 ppq Pei +5373 pps San Luís Temalacayuca Popoloca +5374 ppt Pare +5375 ppu Papora +5376 pqa Pa'a +5377 pqm Malecite-Passamaquoddy +5378 prc Parachi +5379 prd Parsi-Dari +5380 pre Principense +5381 prf Paranan +5382 prg Prussian +5383 prh Porohanon +5384 pri Paicî +5385 prk Parauk +5386 prl Peruvian Sign Language +5387 prm Kibiri +5388 prn Prasuni +5389 pro Old Provençal (to 1500) +5390 prq Ashéninka Perené +5391 prr Puri +5392 prs Dari +5393 prt Phai +5394 pru Puragi +5395 prw Parawen +5396 prx Purik +5397 prz Providencia Sign Language +5398 psa Asue Awyu +5399 psc Iranian Sign Language +5400 psd Plains Indian Sign Language +5401 pse Central Malay +5402 psg Penang Sign Language +5403 psh Southwest Pashai +5404 psi Southeast Pashai +5405 psl Puerto Rican Sign Language +5406 psm Pauserna +5407 psn Panasuan +5408 pso Polish Sign Language +5409 psp Philippine Sign Language +5410 psq Pasi +5411 psr Portuguese Sign Language +5412 pss Kaulong +5413 pst Central Pashto +5414 psu Sauraseni Prākrit +5415 psw Port Sandwich +5416 psy Piscataway +5417 pta Pai Tavytera +5418 pth Pataxó Hã-Ha-Hãe +5419 pti Pindiini +5420 ptn Patani +5421 pto Zo'é +5422 ptp Patep +5423 ptq Pattapu +5424 ptr Piamatsina +5425 ptt Enrekang +5426 ptu Bambam +5427 ptv Port Vato +5428 ptw Pentlatch +5429 pty Pathiya +5430 pua Western Highland Purepecha +5431 pub Purum +5432 puc Punan Merap +5433 pud Punan Aput +5434 pue Puelche +5435 puf Punan Merah +5436 pug Phuie +5437 pui Puinave +5438 puj Punan Tubu +5439 pum Puma +5440 puo Puoc +5441 pup Pulabu +5442 puq Puquina +5443 pur Puruborá +5444 pus Pashto +5445 ps Pushto +5446 put Putoh +5447 puu Punu +5448 puw Puluwatese +5449 pux Puare +5450 puy Purisimeño +5451 pwa Pawaia +5452 pwb Panawa +5453 pwg Gapapaiwa +5454 pwi Patwin +5455 pwm Molbog +5456 pwn Paiwan +5457 pwo Pwo Western Karen +5458 pwr Powari +5459 pww Pwo Northern Karen +5460 pxm Quetzaltepec Mixe +5461 pye Pye Krumen +5462 pym Fyam +5463 pyn Poyanáwa +5464 pys Paraguayan Sign Language +5465 pyu Puyuma +5466 pyx Pyu (Myanmar) +5467 pyy Pyen +5468 pze Pesse +5469 pzh Pazeh +5470 pzn Jejara Naga +5471 qua Quapaw +5472 qub Huallaga Huánuco Quechua +5473 quc K'iche' +5474 qud Calderón Highland Quichua +5475 qu Quechua +5476 quf Lambayeque Quechua +5477 qug Chimborazo Highland Quichua +5478 quh South Bolivian Quechua +5479 qui Quileute +5480 quk Chachapoyas Quechua +5481 qul North Bolivian Quechua +5482 qum Sipacapense +5483 qun Quinault +5484 qup Southern Pastaza Quechua +5485 quq Quinqui +5486 qur Yanahuanca Pasco Quechua +5487 qus Santiago del Estero Quichua +5488 quv Sacapulteco +5489 quw Tena Lowland Quichua +5490 qux Yauyos Quechua +5491 quy Ayacucho Quechua +5492 quz Cusco Quechua +5493 qva Ambo-Pasco Quechua +5494 qvc Cajamarca Quechua +5495 qve Eastern Apurímac Quechua +5496 qvh Huamalíes-Dos de Mayo Huánuco Quechua +5497 qvi Imbabura Highland Quichua +5498 qvj Loja Highland Quichua +5499 qvl Cajatambo North Lima Quechua +5500 qvm Margos-Yarowilca-Lauricocha Quechua +5501 qvn North Junín Quechua +5502 qvo Napo Lowland Quechua +5503 qvp Pacaraos Quechua +5504 qvs San Martín Quechua +5505 qvw Huaylla Wanca Quechua +5506 qvy Queyu +5507 qvz Northern Pastaza Quichua +5508 qwa Corongo Ancash Quechua +5509 qwc Classical Quechua +5510 qwh Huaylas Ancash Quechua +5511 qwm Kuman (Russia) +5512 qws Sihuas Ancash Quechua +5513 qwt Kwalhioqua-Tlatskanai +5514 qxa Chiquián Ancash Quechua +5515 qxc Chincha Quechua +5516 qxh Panao Huánuco Quechua +5517 qxl Salasaca Highland Quichua +5518 qxn Northern Conchucos Ancash Quechua +5519 qxo Southern Conchucos Ancash Quechua +5520 qxp Puno Quechua +5521 qxq Qashqa'i +5522 qxr Cañar Highland Quichua +5523 qxs Southern Qiang +5524 qxt Santa Ana de Tusi Pasco Quechua +5525 qxu Arequipa-La Unión Quechua +5526 qxw Jauja Wanca Quechua +5527 qya Quenya +5528 qyp Quiripi +5529 raa Dungmali +5530 rab Camling +5531 rac Rasawa +5532 rad Rade +5533 raf Western Meohang +5534 rag Logooli +5535 rah Rabha +5536 rai Ramoaaina +5537 raj Rajasthani +5538 rak Tulu-Bohuai +5539 ral Ralte +5540 ram Canela +5541 ran Riantana +5542 rao Rao +5543 rap Rapanui +5544 raq Saam +5545 rar Rarotongan +5546 ras Tegali +5547 rat Razajerdi +5548 rau Raute +5549 rav Sampang +5550 raw Rawang +5551 rax Rang +5552 ray Rapa +5553 raz Rahambuu +5554 rbb Rumai Palaung +5555 rbk Northern Bontok +5556 rbl Miraya Bikol +5557 rbp Barababaraba +5558 rcf Réunion Creole French +5559 rdb Rudbari +5560 rea Rerau +5561 reb Rembong +5562 ree Rejang Kayan +5563 reg Kara (Tanzania) +5564 rei Reli +5565 rej Rejang +5566 rel Rendille +5567 rem Remo +5568 ren Rengao +5569 rer Rer Bare +5570 res Reshe +5571 ret Retta +5572 rey Reyesano +5573 rga Roria +5574 rge Romano-Greek +5575 rgk Rangkas +5576 rgn Romagnol +5577 rgr Resígaro +5578 rgs Southern Roglai +5579 rgu Ringgou +5580 rhg Rohingya +5581 rhp Yahang +5582 ria Riang (India) +5583 rib Bribri Sign Language +5584 rif Tarifit +5585 ril Riang Lang +5586 rim Nyaturu +5587 rin Nungu +5588 rir Ribun +5589 rit Ritharrngu +5590 riu Riung +5591 rjg Rajong +5592 rji Raji +5593 rjs Rajbanshi +5594 rka Kraol +5595 rkb Rikbaktsa +5596 rkh Rakahanga-Manihiki +5597 rki Rakhine +5598 rkm Marka +5599 rkt Rangpuri +5600 rkw Arakwal +5601 rma Rama +5602 rmb Rembarrnga +5603 rmc Carpathian Romani +5604 rmd Traveller Danish +5605 rme Angloromani +5606 rmf Kalo Finnish Romani +5607 rmg Traveller Norwegian +5608 rmh Murkim +5609 rmi Lomavren +5610 rmk Romkun +5611 rml Baltic Romani +5612 rmm Roma +5613 rmn Balkan Romani +5614 rmo Sinte Romani +5615 rmp Rempi +5616 rmq Caló +5617 rms Romanian Sign Language +5618 rmt Domari +5619 rmu Tavringer Romani +5620 rmv Romanova +5621 rmw Welsh Romani +5622 rmx Romam +5623 rmy Vlax Romani +5624 rmz Marma +5625 rnb Brunca Sign Language +5626 rnd Ruund +5627 rng Ronga +5628 rnl Ranglong +5629 rnn Roon +5630 rnp Rongpo +5631 rnr Nari Nari +5632 rnw Rungwa +5633 rob Tae' +5634 roc Cacgia Roglai +5635 rod Rogo +5636 roe Ronji +5637 rof Rombo +5638 rog Northern Roglai +5639 rm Romansh +5640 rol Romblomanon +5641 rom Romany +5642 ro Romanian +5643 roo Rotokas +5644 rop Kriol +5645 ror Rongga +5646 rou Runga +5647 row Dela-Oenale +5648 rpn Repanbitip +5649 rpt Rapting +5650 rri Ririo +5651 rrm Moriori +5652 rro Waima +5653 rrt Arritinngithigh +5654 rsb Romano-Serbian +5655 rsk Ruthenian +5656 rsl Russian Sign Language +5657 rsm Miriwoong Sign Language +5658 rsn Rwandan Sign Language +5659 rsw Rishiwa +5660 rtc Rungtu Chin +5661 rth Ratahan +5662 rtm Rotuman +5663 rts Yurats +5664 rtw Rathawi +5665 rub Gungu +5666 ruc Ruuli +5667 rue Rusyn +5668 ruf Luguru +5669 rug Roviana +5670 ruh Ruga +5671 rui Rufiji +5672 ruk Che +5673 rn Rundi +5674 ruo Istro Romanian +5675 rup Macedo-Romanian +5676 ruq Megleno Romanian +5677 ru Russian +5678 rut Rutul +5679 ruu Lanas Lobu +5680 ruy Mala (Nigeria) +5681 ruz Ruma +5682 rwa Rawo +5683 rwk Rwa +5684 rwl Ruwila +5685 rwm Amba (Uganda) +5686 rwo Rawa +5687 rwr Marwari (India) +5688 rxd Ngardi +5689 rxw Karuwali +5690 ryn Northern Amami-Oshima +5691 rys Yaeyama +5692 ryu Central Okinawan +5693 rzh Rāziḥī +5694 saa Saba +5695 sab Buglere +5696 sac Meskwaki +5697 sad Sandawe +5698 sae Sabanê +5699 saf Safaliba +5700 sg Sango +5701 sah Yakut +5702 saj Sahu +5703 sak Sake +5704 sam Samaritan Aramaic +5705 sa Sanskrit +5706 sao Sause +5707 saq Samburu +5708 sar Saraveca +5709 sas Sasak +5710 sat Santali +5711 sau Saleman +5712 sav Saafi-Saafi +5713 saw Sawi +5714 sax Sa +5715 say Saya +5716 saz Saurashtra +5717 sba Ngambay +5718 sbb Simbo +5719 sbc Kele (Papua New Guinea) +5720 sbd Southern Samo +5721 sbe Saliba +5722 sbf Chabu +5723 sbg Seget +5724 sbh Sori-Harengan +5725 sbi Seti +5726 sbj Surbakhal +5727 sbk Safwa +5728 sbl Botolan Sambal +5729 sbm Sagala +5730 sbn Sindhi Bhil +5731 sbo Sabüm +5732 sbp Sangu (Tanzania) +5733 sbq Sileibi +5734 sbr Sembakung Murut +5735 sbs Subiya +5736 sbt Kimki +5737 sbu Stod Bhoti +5738 sbv Sabine +5739 sbw Simba +5740 sbx Seberuang +5741 sby Soli +5742 sbz Sara Kaba +5743 scb Chut +5744 sce Dongxiang +5745 scf San Miguel Creole French +5746 scg Sanggau +5747 sch Sakachep +5748 sci Sri Lankan Creole Malay +5749 sck Sadri +5750 scl Shina +5751 scn Sicilian +5752 sco Scots +5753 scp Hyolmo +5754 scq Sa'och +5755 scs North Slavey +5756 sct Southern Katang +5757 scu Shumcho +5758 scv Sheni +5759 scw Sha +5760 scx Sicel +5761 sda Toraja-Sa'dan +5762 sdb Shabak +5763 sdc Sassarese Sardinian +5764 sde Surubu +5765 sdf Sarli +5766 sdg Savi +5767 sdh Southern Kurdish +5768 sdj Suundi +5769 sdk Sos Kundi +5770 sdl Saudi Arabian Sign Language +5771 sdn Gallurese Sardinian +5772 sdo Bukar-Sadung Bidayuh +5773 sdp Sherdukpen +5774 sdq Semandang +5775 sdr Oraon Sadri +5776 sds Sened +5777 sdt Shuadit +5778 sdu Sarudu +5779 sdx Sibu Melanau +5780 sdz Sallands +5781 sea Semai +5782 seb Shempire Senoufo +5783 sec Sechelt +5784 sed Sedang +5785 see Seneca +5786 sef Cebaara Senoufo +5787 seg Segeju +5788 seh Sena +5789 sei Seri +5790 sej Sene +5791 sek Sekani +5792 sel Selkup +5793 sen Nanerigé Sénoufo +5794 seo Suarmin +5795 sep Sìcìté Sénoufo +5796 seq Senara Sénoufo +5797 ser Serrano +5798 ses Koyraboro Senni Songhai +5799 set Sentani +5800 seu Serui-Laut +5801 sev Nyarafolo Senoufo +5802 sew Sewa Bay +5803 sey Secoya +5804 sez Senthang Chin +5805 sfb Langue des signes de Belgique Francophone +5806 sfe Eastern Subanen +5807 sfm Small Flowery Miao +5808 sfs South African Sign Language +5809 sfw Sehwi +5810 sga Old Irish (to 900) +5811 sgb Mag-antsi Ayta +5812 sgc Kipsigis +5813 sgd Surigaonon +5814 sge Segai +5815 sgg Swiss-German Sign Language +5816 sgh Shughni +5817 sgi Suga +5818 sgj Surgujia +5819 sgk Sangkong +5820 sgm Singa +5821 sgp Singpho +5822 sgr Sangisari +5823 sgs Samogitian +5824 sgt Brokpake +5825 sgu Salas +5826 sgw Sebat Bet Gurage +5827 sgx Sierra Leone Sign Language +5828 sgy Sanglechi +5829 sgz Sursurunga +5830 sha Shall-Zwall +5831 shb Ninam +5832 shc Sonde +5833 shd Kundal Shahi +5834 she Sheko +5835 shg Shua +5836 shh Shoshoni +5837 shi Tachelhit +5838 shj Shatt +5839 shk Shilluk +5840 shl Shendu +5841 shm Shahrudi +5842 shn Shan +5843 sho Shanga +5844 shp Shipibo-Conibo +5845 shq Sala +5846 shr Shi +5847 shs Shuswap +5848 sht Shasta +5849 shu Chadian Arabic +5850 shv Shehri +5851 shw Shwai +5852 shx She +5853 shy Tachawit +5854 shz Syenara Senoufo +5855 sia Akkala Sami +5856 sib Sebop +5857 sid Sidamo +5858 sie Simaa +5859 sif Siamou +5860 sig Paasaal +5861 sih Zire +5862 sii Shom Peng +5863 sij Numbami +5864 sik Sikiana +5865 sil Tumulung Sisaala +5866 sim Mende (Papua New Guinea) +5867 si Sinhala +5868 sip Sikkimese +5869 siq Sonia +5870 sir Siri +5871 sis Siuslaw +5872 siu Sinagen +5873 siv Sumariup +5874 siw Siwai +5875 six Sumau +5876 siy Sivandi +5877 siz Siwi +5878 sja Epena +5879 sjb Sajau Basap +5880 sjd Kildin Sami +5881 sje Pite Sami +5882 sjg Assangori +5883 sjk Kemi Sami +5884 sjl Sajalong +5885 sjm Mapun +5886 sjn Sindarin +5887 sjo Xibe +5888 sjp Surjapuri +5889 sjr Siar-Lak +5890 sjs Senhaja De Srair +5891 sjt Ter Sami +5892 sju Ume Sami +5893 sjw Shawnee +5894 ska Skagit +5895 skb Saek +5896 skc Ma Manda +5897 skd Southern Sierra Miwok +5898 ske Seke (Vanuatu) +5899 skf Sakirabiá +5900 skg Sakalava Malagasy +5901 skh Sikule +5902 ski Sika +5903 skj Seke (Nepal) +5904 skm Kutong +5905 skn Kolibugan Subanon +5906 sko Seko Tengah +5907 skp Sekapan +5908 skq Sininkere +5909 skr Saraiki +5910 sks Maia +5911 skt Sakata +5912 sku Sakao +5913 skv Skou +5914 skw Skepi Creole Dutch +5915 skx Seko Padang +5916 sky Sikaiana +5917 skz Sekar +5918 slc Sáliba +5919 sld Sissala +5920 sle Sholaga +5921 slf Swiss-Italian Sign Language +5922 slg Selungai Murut +5923 slh Southern Puget Sound Salish +5924 sli Lower Silesian +5925 slj Salumá +5926 sk Slovak +5927 sll Salt-Yui +5928 slm Pangutaran Sama +5929 sln Salinan +5930 slp Lamaholot +5931 slr Salar +5932 sls Singapore Sign Language +5933 slt Sila +5934 slu Selaru +5935 sl Slovenian +5936 slw Sialum +5937 slx Salampasu +5938 sly Selayar +5939 slz Ma'ya +5940 sma Southern Sami +5941 smb Simbari +5942 smc Som +5943 se Northern Sami +5944 smf Auwe +5945 smg Simbali +5946 smh Samei +5947 smj Lule Sami +5948 smk Bolinao +5949 sml Central Sama +5950 smm Musasa +5951 smn Inari Sami +5952 sm Samoan +5953 smp Samaritan +5954 smq Samo +5955 smr Simeulue +5956 sms Skolt Sami +5957 smt Simte +5958 smu Somray +5959 smv Samvedi +5960 smw Sumbawa +5961 smx Samba +5962 smy Semnani +5963 smz Simeku +5964 sn Shona +5965 snc Sinaugoro +5966 sd Sindhi +5967 sne Bau Bidayuh +5968 snf Noon +5969 sng Sanga (Democratic Republic of Congo) +5970 sni Sensi +5971 snj Riverain Sango +5972 snk Soninke +5973 snl Sangil +5974 snm Southern Ma'di +5975 snn Siona +5976 sno Snohomish +5977 snp Siane +5978 snq Sangu (Gabon) +5979 snr Sihan +5980 sns South West Bay +5981 snu Senggi +5982 snv Sa'ban +5983 snw Selee +5984 snx Sam +5985 sny Saniyo-Hiyewe +5986 snz Kou +5987 soa Thai Song +5988 sob Sobei +5989 soc So (Democratic Republic of Congo) +5990 sod Songoora +5991 soe Songomeno +5992 sog Sogdian +5993 soh Aka +5994 soi Sonha +5995 soj Soi +5996 sok Sokoro +5997 sol Solos +5998 so Somali +5999 soo Songo +6000 sop Songe +6001 soq Kanasi +6002 sor Somrai +6003 sos Seeku +6004 st Southern Sotho +6005 sou Southern Thai +6006 sov Sonsorol +6007 sow Sowanda +6008 sox Swo +6009 soy Miyobe +6010 soz Temi +6011 es Spanish +6012 spb Sepa (Indonesia) +6013 spc Sapé +6014 spd Saep +6015 spe Sepa (Papua New Guinea) +6016 spg Sian +6017 spi Saponi +6018 spk Sengo +6019 spl Selepet +6020 spm Akukem +6021 spn Sanapaná +6022 spo Spokane +6023 spp Supyire Senoufo +6024 spq Loreto-Ucayali Spanish +6025 spr Saparua +6026 sps Saposa +6027 spt Spiti Bhoti +6028 spu Sapuan +6029 spv Sambalpuri +6030 spx South Picene +6031 spy Sabaot +6032 sqa Shama-Sambuga +6033 sqh Shau +6034 sq Albanian +6035 sqk Albanian Sign Language +6036 sqm Suma +6037 sqn Susquehannock +6038 sqo Sorkhei +6039 sqq Sou +6040 sqr Siculo Arabic +6041 sqs Sri Lankan Sign Language +6042 sqt Soqotri +6043 squ Squamish +6044 sqx Kufr Qassem Sign Language (KQSL) +6045 sra Saruga +6046 srb Sora +6047 src Logudorese Sardinian +6048 sc Sardinian +6049 sre Sara +6050 srf Nafi +6051 srg Sulod +6052 srh Sarikoli +6053 sri Siriano +6054 srk Serudung Murut +6055 srl Isirawa +6056 srm Saramaccan +6057 srn Sranan Tongo +6058 sro Campidanese Sardinian +6059 sr Serbian +6060 srq Sirionó +6061 srr Serer +6062 srs Sarsi +6063 srt Sauri +6064 sru Suruí +6065 srv Southern Sorsoganon +6066 srw Serua +6067 srx Sirmauri +6068 sry Sera +6069 srz Shahmirzadi +6070 ssb Southern Sama +6071 ssc Suba-Simbiti +6072 ssd Siroi +6073 sse Balangingi +6074 ssf Thao +6075 ssg Seimat +6076 ssh Shihhi Arabic +6077 ssi Sansi +6078 ssj Sausi +6079 ssk Sunam +6080 ssl Western Sisaala +6081 ssm Semnam +6082 ssn Waata +6083 sso Sissano +6084 ssp Spanish Sign Language +6085 ssq So'a +6086 ssr Swiss-French Sign Language +6087 sss Sô +6088 sst Sinasina +6089 ssu Susuami +6090 ssv Shark Bay +6091 ss Swati +6092 ssx Samberigi +6093 ssy Saho +6094 ssz Sengseng +6095 sta Settla +6096 stb Northern Subanen +6097 std Sentinel +6098 ste Liana-Seti +6099 stf Seta +6100 stg Trieng +6101 sth Shelta +6102 sti Bulo Stieng +6103 stj Matya Samo +6104 stk Arammba +6105 stl Stellingwerfs +6106 stm Setaman +6107 stn Owa +6108 sto Stoney +6109 stp Southeastern Tepehuan +6110 stq Saterfriesisch +6111 str Straits Salish +6112 sts Shumashti +6113 stt Budeh Stieng +6114 stu Samtao +6115 stv Silt'e +6116 stw Satawalese +6117 sty Siberian Tatar +6118 sua Sulka +6119 sub Suku +6120 suc Western Subanon +6121 sue Suena +6122 sug Suganga +6123 sui Suki +6124 suj Shubi +6125 suk Sukuma +6126 su Sundanese +6127 suo Bouni +6128 suq Tirmaga-Chai Suri +6129 sur Mwaghavul +6130 sus Susu +6131 sut Subtiaba +6132 suv Puroik +6133 suw Sumbwa +6134 sux Sumerian +6135 suy Suyá +6136 suz Sunwar +6137 sva Svan +6138 svb Ulau-Suain +6139 svc Vincentian Creole English +6140 sve Serili +6141 svk Slovakian Sign Language +6142 svm Slavomolisano +6143 svs Savosavo +6144 svx Skalvian +6145 sw Swahili (macrolanguage) +6146 swb Maore Comorian +6147 swc Congo Swahili +6148 sv Swedish +6149 swf Sere +6150 swg Swabian +6151 swh Swahili (individual language) +6152 swi Sui +6153 swj Sira +6154 swk Malawi Sena +6155 swl Swedish Sign Language +6156 swm Samosa +6157 swn Sawknah +6158 swo Shanenawa +6159 swp Suau +6160 swq Sharwa +6161 swr Saweru +6162 sws Seluwasan +6163 swt Sawila +6164 swu Suwawa +6165 swv Shekhawati +6166 sww Sowa +6167 swx Suruahá +6168 swy Sarua +6169 sxb Suba +6170 sxc Sicanian +6171 sxe Sighu +6172 sxg Shuhi +6173 sxk Southern Kalapuya +6174 sxl Selian +6175 sxm Samre +6176 sxn Sangir +6177 sxo Sorothaptic +6178 sxr Saaroa +6179 sxs Sasaru +6180 sxu Upper Saxon +6181 sxw Saxwe Gbe +6182 sya Siang +6183 syb Central Subanen +6184 syc Classical Syriac +6185 syi Seki +6186 syk Sukur +6187 syl Sylheti +6188 sym Maya Samo +6189 syn Senaya +6190 syo Suoy +6191 syr Syriac +6192 sys Sinyar +6193 syw Kagate +6194 syx Samay +6195 syy Al-Sayyid Bedouin Sign Language +6196 sza Semelai +6197 szb Ngalum +6198 szc Semaq Beri +6199 sze Seze +6200 szg Sengele +6201 szl Silesian +6202 szn Sula +6203 szp Suabo +6204 szs Solomon Islands Sign Language +6205 szv Isu (Fako Division) +6206 szw Sawai +6207 szy Sakizaya +6208 taa Lower Tanana +6209 tab Tabassaran +6210 tac Lowland Tarahumara +6211 tad Tause +6212 tae Tariana +6213 taf Tapirapé +6214 tag Tagoi +6215 ty Tahitian +6216 taj Eastern Tamang +6217 tak Tala +6218 tal Tal +6219 ta Tamil +6220 tan Tangale +6221 tao Yami +6222 tap Taabwa +6223 taq Tamasheq +6224 tar Central Tarahumara +6225 tas Tay Boi +6226 tt Tatar +6227 tau Upper Tanana +6228 tav Tatuyo +6229 taw Tai +6230 tax Tamki +6231 tay Atayal +6232 taz Tocho +6233 tba Aikanã +6234 tbc Takia +6235 tbd Kaki Ae +6236 tbe Tanimbili +6237 tbf Mandara +6238 tbg North Tairora +6239 tbh Dharawal +6240 tbi Gaam +6241 tbj Tiang +6242 tbk Calamian Tagbanwa +6243 tbl Tboli +6244 tbm Tagbu +6245 tbn Barro Negro Tunebo +6246 tbo Tawala +6247 tbp Taworta +6248 tbr Tumtum +6249 tbs Tanguat +6250 tbt Tembo (Kitembo) +6251 tbu Tubar +6252 tbv Tobo +6253 tbw Tagbanwa +6254 tbx Kapin +6255 tby Tabaru +6256 tbz Ditammari +6257 tca Ticuna +6258 tcb Tanacross +6259 tcc Datooga +6260 tcd Tafi +6261 tce Southern Tutchone +6262 tcf Malinaltepec Me'phaa +6263 tcg Tamagario +6264 tch Turks And Caicos Creole English +6265 tci Wára +6266 tck Tchitchege +6267 tcl Taman (Myanmar) +6268 tcm Tanahmerah +6269 tcn Tichurong +6270 tco Taungyo +6271 tcp Tawr Chin +6272 tcq Kaiy +6273 tcs Torres Strait Creole +6274 tct T'en +6275 tcu Southeastern Tarahumara +6276 tcw Tecpatlán Totonac +6277 tcx Toda +6278 tcy Tulu +6279 tcz Thado Chin +6280 tda Tagdal +6281 tdb Panchpargania +6282 tdc Emberá-Tadó +6283 tdd Tai Nüa +6284 tde Tiranige Diga Dogon +6285 tdf Talieng +6286 tdg Western Tamang +6287 tdh Thulung +6288 tdi Tomadino +6289 tdj Tajio +6290 tdk Tambas +6291 tdl Sur +6292 tdm Taruma +6293 tdn Tondano +6294 tdo Teme +6295 tdq Tita +6296 tdr Todrah +6297 tds Doutai +6298 tdt Tetun Dili +6299 tdv Toro +6300 tdx Tandroy-Mahafaly Malagasy +6301 tdy Tadyawan +6302 tea Temiar +6303 teb Tetete +6304 tec Terik +6305 ted Tepo Krumen +6306 tee Huehuetla Tepehua +6307 tef Teressa +6308 teg Teke-Tege +6309 teh Tehuelche +6310 tei Torricelli +6311 tek Ibali Teke +6312 te Telugu +6313 tem Timne +6314 ten Tama (Colombia) +6315 teo Teso +6316 tep Tepecano +6317 teq Temein +6318 ter Tereno +6319 tes Tengger +6320 tet Tetum +6321 teu Soo +6322 tev Teor +6323 tew Tewa (USA) +6324 tex Tennet +6325 tey Tulishi +6326 tez Tetserret +6327 tfi Tofin Gbe +6328 tfn Tanaina +6329 tfo Tefaro +6330 tfr Teribe +6331 tft Ternate +6332 tga Sagalla +6333 tgb Tobilung +6334 tgc Tigak +6335 tgd Ciwogai +6336 tge Eastern Gorkha Tamang +6337 tgf Chalikha +6338 tgh Tobagonian Creole English +6339 tgi Lawunuia +6340 tgj Tagin +6341 tg Tajik +6342 tl Tagalog +6343 tgn Tandaganon +6344 tgo Sudest +6345 tgp Tangoa +6346 tgq Tring +6347 tgr Tareng +6348 tgs Nume +6349 tgt Central Tagbanwa +6350 tgu Tanggu +6351 tgv Tingui-Boto +6352 tgw Tagwana Senoufo +6353 tgx Tagish +6354 tgy Togoyo +6355 tgz Tagalaka +6356 th Thai +6357 thd Kuuk Thaayorre +6358 the Chitwania Tharu +6359 thf Thangmi +6360 thh Northern Tarahumara +6361 thi Tai Long +6362 thk Tharaka +6363 thl Dangaura Tharu +6364 thm Aheu +6365 thn Thachanadan +6366 thp Thompson +6367 thq Kochila Tharu +6368 thr Rana Tharu +6369 ths Thakali +6370 tht Tahltan +6371 thu Thuri +6372 thv Tahaggart Tamahaq +6373 thy Tha +6374 thz Tayart Tamajeq +6375 tia Tidikelt Tamazight +6376 tic Tira +6377 tif Tifal +6378 tig Tigre +6379 tih Timugon Murut +6380 tii Tiene +6381 tij Tilung +6382 tik Tikar +6383 til Tillamook +6384 tim Timbe +6385 tin Tindi +6386 tio Teop +6387 tip Trimuris +6388 tiq Tiéfo +6389 ti Tigrinya +6390 tis Masadiit Itneg +6391 tit Tinigua +6392 tiu Adasen +6393 tiv Tiv +6394 tiw Tiwi +6395 tix Southern Tiwa +6396 tiy Tiruray +6397 tiz Tai Hongjin +6398 tja Tajuasohn +6399 tjg Tunjung +6400 tji Northern Tujia +6401 tjj Tjungundji +6402 tjl Tai Laing +6403 tjm Timucua +6404 tjn Tonjon +6405 tjo Temacine Tamazight +6406 tjp Tjupany +6407 tjs Southern Tujia +6408 tju Tjurruru +6409 tjw Djabwurrung +6410 tka Truká +6411 tkb Buksa +6412 tkd Tukudede +6413 tke Takwane +6414 tkf Tukumanféd +6415 tkg Tesaka Malagasy +6416 tkl Tokelau +6417 tkm Takelma +6418 tkn Toku-No-Shima +6419 tkp Tikopia +6420 tkq Tee +6421 tkr Tsakhur +6422 tks Takestani +6423 tkt Kathoriya Tharu +6424 tku Upper Necaxa Totonac +6425 tkv Mur Pano +6426 tkw Teanu +6427 tkx Tangko +6428 tkz Takua +6429 tla Southwestern Tepehuan +6430 tlb Tobelo +6431 tlc Yecuatla Totonac +6432 tld Talaud +6433 tlf Telefol +6434 tlg Tofanma +6435 tlh Klingon +6436 tli Tlingit +6437 tlj Talinga-Bwisi +6438 tlk Taloki +6439 tll Tetela +6440 tlm Tolomako +6441 tln Talondo' +6442 tlo Talodi +6443 tlp Filomena Mata-Coahuitlán Totonac +6444 tlq Tai Loi +6445 tlr Talise +6446 tls Tambotalo +6447 tlt Sou Nama +6448 tlu Tulehu +6449 tlv Taliabu +6450 tlx Khehek +6451 tly Talysh +6452 tma Tama (Chad) +6453 tmb Katbol +6454 tmc Tumak +6455 tmd Haruai +6456 tme Tremembé +6457 tmf Toba-Maskoy +6458 tmg Ternateño +6459 tmh Tamashek +6460 tmi Tutuba +6461 tmj Samarokena +6462 tml Tamnim Citak +6463 tmm Tai Thanh +6464 tmn Taman (Indonesia) +6465 tmo Temoq +6466 tmq Tumleo +6467 tmr Jewish Babylonian Aramaic (ca. 200-1200 CE) +6468 tms Tima +6469 tmt Tasmate +6470 tmu Iau +6471 tmv Tembo (Motembo) +6472 tmw Temuan +6473 tmy Tami +6474 tmz Tamanaku +6475 tna Tacana +6476 tnb Western Tunebo +6477 tnc Tanimuca-Retuarã +6478 tnd Angosturas Tunebo +6479 tng Tobanga +6480 tnh Maiani +6481 tni Tandia +6482 tnk Kwamera +6483 tnl Lenakel +6484 tnm Tabla +6485 tnn North Tanna +6486 tno Toromono +6487 tnp Whitesands +6488 tnq Taino +6489 tnr Ménik +6490 tns Tenis +6491 tnt Tontemboan +6492 tnu Tay Khang +6493 tnv Tangchangya +6494 tnw Tonsawang +6495 tnx Tanema +6496 tny Tongwe +6497 tnz Ten'edn +6498 tob Toba +6499 toc Coyutla Totonac +6500 tod Toma +6501 tof Gizrra +6502 tog Tonga (Nyasa) +6503 toh Gitonga +6504 toi Tonga (Zambia) +6505 toj Tojolabal +6506 tok Toki Pona +6507 tol Tolowa +6508 tom Tombulu +6509 to Tonga (Tonga Islands) +6510 too Xicotepec De Juárez Totonac +6511 top Papantla Totonac +6512 toq Toposa +6513 tor Togbo-Vara Banda +6514 tos Highland Totonac +6515 tou Tho +6516 tov Upper Taromi +6517 tow Jemez +6518 tox Tobian +6519 toy Topoiyo +6520 toz To +6521 tpa Taupota +6522 tpc Azoyú Me'phaa +6523 tpe Tippera +6524 tpf Tarpia +6525 tpg Kula +6526 tpi Tok Pisin +6527 tpj Tapieté +6528 tpk Tupinikin +6529 tpl Tlacoapa Me'phaa +6530 tpm Tampulma +6531 tpn Tupinambá +6532 tpo Tai Pao +6533 tpp Pisaflores Tepehua +6534 tpq Tukpa +6535 tpr Tuparí +6536 tpt Tlachichilco Tepehua +6537 tpu Tampuan +6538 tpv Tanapag +6539 tpx Acatepec Me'phaa +6540 tpy Trumai +6541 tpz Tinputz +6542 tqb Tembé +6543 tql Lehali +6544 tqm Turumsa +6545 tqn Tenino +6546 tqo Toaripi +6547 tqp Tomoip +6548 tqq Tunni +6549 tqr Torona +6550 tqt Western Totonac +6551 tqu Touo +6552 tqw Tonkawa +6553 tra Tirahi +6554 trb Terebu +6555 trc Copala Triqui +6556 trd Turi +6557 tre East Tarangan +6558 trf Trinidadian Creole English +6559 trg Lishán Didán +6560 trh Turaka +6561 tri Trió +6562 trj Toram +6563 trl Traveller Scottish +6564 trm Tregami +6565 trn Trinitario +6566 tro Tarao Naga +6567 trp Kok Borok +6568 trq San Martín Itunyoso Triqui +6569 trr Taushiro +6570 trs Chicahuaxtla Triqui +6571 trt Tunggare +6572 tru Turoyo +6573 trv Sediq +6574 trw Torwali +6575 trx Tringgus-Sembaan Bidayuh +6576 try Turung +6577 trz Torá +6578 tsa Tsaangi +6579 tsb Tsamai +6580 tsc Tswa +6581 tsd Tsakonian +6582 tse Tunisian Sign Language +6583 tsg Tausug +6584 tsh Tsuvan +6585 tsi Tsimshian +6586 tsj Tshangla +6587 tsk Tseku +6588 tsl Ts'ün-Lao +6589 tsm Turkish Sign Language +6590 tn Tswana +6591 ts Tsonga +6592 tsp Northern Toussian +6593 tsq Thai Sign Language +6594 tsr Akei +6595 tss Taiwan Sign Language +6596 tst Tondi Songway Kiini +6597 tsu Tsou +6598 tsv Tsogo +6599 tsw Tsishingini +6600 tsx Mubami +6601 tsy Tebul Sign Language +6602 tsz Purepecha +6603 tta Tutelo +6604 ttb Gaa +6605 ttc Tektiteko +6606 ttd Tauade +6607 tte Bwanabwana +6608 ttf Tuotomb +6609 ttg Tutong +6610 tth Upper Ta'oih +6611 tti Tobati +6612 ttj Tooro +6613 ttk Totoro +6614 ttl Totela +6615 ttm Northern Tutchone +6616 ttn Towei +6617 tto Lower Ta'oih +6618 ttp Tombelala +6619 ttq Tawallammat Tamajaq +6620 ttr Tera +6621 tts Northeastern Thai +6622 ttt Muslim Tat +6623 ttu Torau +6624 ttv Titan +6625 ttw Long Wat +6626 tty Sikaritai +6627 ttz Tsum +6628 tua Wiarumus +6629 tub Tübatulabal +6630 tuc Mutu +6631 tud Tuxá +6632 tue Tuyuca +6633 tuf Central Tunebo +6634 tug Tunia +6635 tuh Taulil +6636 tui Tupuri +6637 tuj Tugutil +6638 tk Turkmen +6639 tul Tula +6640 tum Tumbuka +6641 tun Tunica +6642 tuo Tucano +6643 tuq Tedaga +6644 tr Turkish +6645 tus Tuscarora +6646 tuu Tututni +6647 tuv Turkana +6648 tux Tuxináwa +6649 tuy Tugen +6650 tuz Turka +6651 tva Vaghua +6652 tvd Tsuvadi +6653 tve Te'un +6654 tvi Tulai +6655 tvk Southeast Ambrym +6656 tvl Tuvalu +6657 tvm Tela-Masbuar +6658 tvn Tavoyan +6659 tvo Tidore +6660 tvs Taveta +6661 tvt Tutsa Naga +6662 tvu Tunen +6663 tvw Sedoa +6664 tvx Taivoan +6665 tvy Timor Pidgin +6666 twa Twana +6667 twb Western Tawbuid +6668 twc Teshenawa +6669 twd Twents +6670 twe Tewa (Indonesia) +6671 twf Northern Tiwa +6672 twg Tereweng +6673 twh Tai Dón +6674 tw Twi +6675 twl Tawara +6676 twm Tawang Monpa +6677 twn Twendi +6678 two Tswapong +6679 twp Ere +6680 twq Tasawaq +6681 twr Southwestern Tarahumara +6682 twt Turiwára +6683 twu Termanu +6684 tww Tuwari +6685 twx Tewe +6686 twy Tawoyan +6687 txa Tombonuo +6688 txb Tokharian B +6689 txc Tsetsaut +6690 txe Totoli +6691 txg Tangut +6692 txh Thracian +6693 txi Ikpeng +6694 txj Tarjumo +6695 txm Tomini +6696 txn West Tarangan +6697 txo Toto +6698 txq Tii +6699 txr Tartessian +6700 txs Tonsea +6701 txt Citak +6702 txu Kayapó +6703 txx Tatana +6704 txy Tanosy Malagasy +6705 tya Tauya +6706 tye Kyanga +6707 tyh O'du +6708 tyi Teke-Tsaayi +6709 tyj Tai Do +6710 tyl Thu Lao +6711 tyn Kombai +6712 typ Thaypan +6713 tyr Tai Daeng +6714 tys Tà y Sa Pa +6715 tyt Tà y Tac +6716 tyu Kua +6717 tyv Tuvinian +6718 tyx Teke-Tyee +6719 tyy Tiyaa +6720 tyz Tà y +6721 tza Tanzanian Sign Language +6722 tzh Tzeltal +6723 tzj Tz'utujil +6724 tzl Talossan +6725 tzm Central Atlas Tamazight +6726 tzn Tugun +6727 tzo Tzotzil +6728 tzx Tabriak +6729 uam Uamué +6730 uan Kuan +6731 uar Tairuma +6732 uba Ubang +6733 ubi Ubi +6734 ubl Buhi'non Bikol +6735 ubr Ubir +6736 ubu Umbu-Ungu +6737 uby Ubykh +6738 uda Uda +6739 ude Udihe +6740 udg Muduga +6741 udi Udi +6742 udj Ujir +6743 udl Wuzlam +6744 udm Udmurt +6745 udu Uduk +6746 ues Kioko +6747 ufi Ufim +6748 uga Ugaritic +6749 ugb Kuku-Ugbanh +6750 uge Ughele +6751 ugh Kubachi +6752 ugn Ugandan Sign Language +6753 ugo Ugong +6754 ugy Uruguayan Sign Language +6755 uha Uhami +6756 uhn Damal +6757 ug Uighur +6758 uis Uisai +6759 uiv Iyive +6760 uji Tanjijili +6761 uka Kaburi +6762 ukg Ukuriguma +6763 ukh Ukhwejo +6764 uki Kui (India) +6765 ukk Muak Sa-aak +6766 ukl Ukrainian Sign Language +6767 ukp Ukpe-Bayobiri +6768 ukq Ukwa +6769 uk Ukrainian +6770 uks Urubú-Kaapor Sign Language +6771 uku Ukue +6772 ukv Kuku +6773 ukw Ukwuani-Aboh-Ndoni +6774 uky Kuuk-Yak +6775 ula Fungwa +6776 ulb Ulukwumi +6777 ulc Ulch +6778 ule Lule +6779 ulf Usku +6780 uli Ulithian +6781 ulk Meriam Mir +6782 ull Ullatan +6783 ulm Ulumanda' +6784 uln Unserdeutsch +6785 ulu Uma' Lung +6786 ulw Ulwa +6787 uly Buli +6788 uma Umatilla +6789 umb Umbundu +6790 umc Marrucinian +6791 umd Umbindhamu +6792 umg Morrobalama +6793 umi Ukit +6794 umm Umon +6795 umn Makyan Naga +6796 umo Umotína +6797 ump Umpila +6798 umr Umbugarla +6799 ums Pendau +6800 umu Munsee +6801 una North Watut +6802 und Undetermined +6803 une Uneme +6804 ung Ngarinyin +6805 uni Uni +6806 unk Enawené-Nawé +6807 unm Unami +6808 unn Kurnai +6809 unr Mundari +6810 unu Unubahe +6811 unx Munda +6812 unz Unde Kaili +6813 uon Kulon +6814 upi Umeda +6815 upv Uripiv-Wala-Rano-Atchin +6816 ura Urarina +6817 urb Urubú-Kaapor +6818 urc Urningangg +6819 ur Urdu +6820 ure Uru +6821 urf Uradhi +6822 urg Urigina +6823 urh Urhobo +6824 uri Urim +6825 urk Urak Lawoi' +6826 url Urali +6827 urm Urapmin +6828 urn Uruangnirin +6829 uro Ura (Papua New Guinea) +6830 urp Uru-Pa-In +6831 urr Lehalurup +6832 urt Urat +6833 uru Urumi +6834 urv Uruava +6835 urw Sop +6836 urx Urimo +6837 ury Orya +6838 urz Uru-Eu-Wau-Wau +6839 usa Usarufa +6840 ush Ushojo +6841 usi Usui +6842 usk Usaghade +6843 usp Uspanteco +6844 uss us-Saare +6845 usu Uya +6846 uta Otank +6847 ute Ute-Southern Paiute +6848 uth ut-Hun +6849 utp Amba (Solomon Islands) +6850 utr Etulo +6851 utu Utu +6852 uum Urum +6853 uur Ura (Vanuatu) +6854 uuu U +6855 uve West Uvean +6856 uvh Uri +6857 uvl Lote +6858 uwa Kuku-Uwanh +6859 uya Doko-Uyanga +6860 uz Uzbek +6861 uzn Northern Uzbek +6862 uzs Southern Uzbek +6863 vaa Vaagri Booli +6864 vae Vale +6865 vaf Vafsi +6866 vag Vagla +6867 vah Varhadi-Nagpuri +6868 vai Vai +6869 vaj Sekele +6870 val Vehes +6871 vam Vanimo +6872 van Valman +6873 vao Vao +6874 vap Vaiphei +6875 var Huarijio +6876 vas Vasavi +6877 vau Vanuma +6878 vav Varli +6879 vay Wayu +6880 vbb Southeast Babar +6881 vbk Southwestern Bontok +6882 vec Venetian +6883 ved Veddah +6884 vel Veluws +6885 vem Vemgo-Mabas +6886 ve Venda +6887 veo Ventureño +6888 vep Veps +6889 ver Mom Jango +6890 vgr Vaghri +6891 vgt Vlaamse Gebarentaal +6892 vic Virgin Islands Creole English +6893 vid Vidunda +6894 vi Vietnamese +6895 vif Vili +6896 vig Viemo +6897 vil Vilela +6898 vin Vinza +6899 vis Vishavan +6900 vit Viti +6901 viv Iduna +6902 vjk Bajjika +6903 vka Kariyarra +6904 vkj Kujarge +6905 vkk Kaur +6906 vkl Kulisusu +6907 vkm Kamakan +6908 vkn Koro Nulu +6909 vko Kodeoha +6910 vkp Korlai Creole Portuguese +6911 vkt Tenggarong Kutai Malay +6912 vku Kurrama +6913 vkz Koro Zuba +6914 vlp Valpei +6915 vls Vlaams +6916 vma Martuyhunira +6917 vmb Barbaram +6918 vmc Juxtlahuaca Mixtec +6919 vmd Mudu Koraga +6920 vme East Masela +6921 vmf Mainfränkisch +6922 vmg Lungalunga +6923 vmh Maraghei +6924 vmi Miwa +6925 vmj Ixtayutla Mixtec +6926 vmk Makhuwa-Shirima +6927 vml Malgana +6928 vmm Mitlatongo Mixtec +6929 vmp Soyaltepec Mazatec +6930 vmq Soyaltepec Mixtec +6931 vmr Marenje +6932 vms Moksela +6933 vmu Muluridyi +6934 vmv Valley Maidu +6935 vmw Makhuwa +6936 vmx Tamazola Mixtec +6937 vmy Ayautla Mazatec +6938 vmz Mazatlán Mazatec +6939 vnk Vano +6940 vnm Vinmavis +6941 vnp Vunapu +6942 vo Volapük +6943 vor Voro +6944 vot Votic +6945 vra Vera'a +6946 vro Võro +6947 vrs Varisi +6948 vrt Burmbar +6949 vsi Moldova Sign Language +6950 vsl Venezuelan Sign Language +6951 vsn Vedic Sanskrit +6952 vsv Valencian Sign Language +6953 vto Vitou +6954 vum Vumbu +6955 vun Vunjo +6956 vut Vute +6957 vwa Awa (China) +6958 waa Walla Walla +6959 wab Wab +6960 wac Wasco-Wishram +6961 wad Wamesa +6962 wae Walser +6963 waf Wakoná +6964 wag Wa'ema +6965 wah Watubela +6966 wai Wares +6967 waj Waffa +6968 wal Wolaytta +6969 wam Wampanoag +6970 wan Wan +6971 wao Wappo +6972 wap Wapishana +6973 waq Wagiman +6974 war Waray (Philippines) +6975 was Washo +6976 wat Kaninuwa +6977 wau Waurá +6978 wav Waka +6979 waw Waiwai +6980 wax Watam +6981 way Wayana +6982 waz Wampur +6983 wba Warao +6984 wbb Wabo +6985 wbe Waritai +6986 wbf Wara +6987 wbh Wanda +6988 wbi Vwanji +6989 wbj Alagwa +6990 wbk Waigali +6991 wbl Wakhi +6992 wbm Wa +6993 wbp Warlpiri +6994 wbq Waddar +6995 wbr Wagdi +6996 wbs West Bengal Sign Language +6997 wbt Warnman +6998 wbv Wajarri +6999 wbw Woi +7000 wca Yanomámi +7001 wci Waci Gbe +7002 wdd Wandji +7003 wdg Wadaginam +7004 wdj Wadjiginy +7005 wdk Wadikali +7006 wdt Wendat +7007 wdu Wadjigu +7008 wdy Wadjabangayi +7009 wea Wewaw +7010 wec Wè Western +7011 wed Wedau +7012 weg Wergaia +7013 weh Weh +7014 wei Kiunum +7015 wem Weme Gbe +7016 weo Wemale +7017 wep Westphalien +7018 wer Weri +7019 wes Cameroon Pidgin +7020 wet Perai +7021 weu Rawngtu Chin +7022 wew Wejewa +7023 wfg Yafi +7024 wga Wagaya +7025 wgb Wagawaga +7026 wgg Wangkangurru +7027 wgi Wahgi +7028 wgo Waigeo +7029 wgu Wirangu +7030 wgy Warrgamay +7031 wha Sou Upaa +7032 whg North Wahgi +7033 whk Wahau Kenyah +7034 whu Wahau Kayan +7035 wib Southern Toussian +7036 wic Wichita +7037 wie Wik-Epa +7038 wif Wik-Keyangan +7039 wig Wik Ngathan +7040 wih Wik-Me'anha +7041 wii Minidien +7042 wij Wik-Iiyanh +7043 wik Wikalkan +7044 wil Wilawila +7045 wim Wik-Mungkan +7046 win Ho-Chunk +7047 wir Wiraféd +7048 wiu Wiru +7049 wiv Vitu +7050 wiy Wiyot +7051 wja Waja +7052 wji Warji +7053 wka Kw'adza +7054 wkb Kumbaran +7055 wkd Wakde +7056 wkl Kalanadi +7057 wkr Keerray-Woorroong +7058 wku Kunduvadi +7059 wkw Wakawaka +7060 wky Wangkayutyuru +7061 wla Walio +7062 wlc Mwali Comorian +7063 wle Wolane +7064 wlg Kunbarlang +7065 wlh Welaun +7066 wli Waioli +7067 wlk Wailaki +7068 wll Wali (Sudan) +7069 wlm Middle Welsh +7070 wa Walloon +7071 wlo Wolio +7072 wlr Wailapa +7073 wls Wallisian +7074 wlu Wuliwuli +7075 wlv Wichí Lhamtés Vejoz +7076 wlw Walak +7077 wlx Wali (Ghana) +7078 wly Waling +7079 wma Mawa (Nigeria) +7080 wmb Wambaya +7081 wmc Wamas +7082 wmd Mamaindé +7083 wme Wambule +7084 wmg Western Minyag +7085 wmh Waima'a +7086 wmi Wamin +7087 wmm Maiwa (Indonesia) +7088 wmn Waamwang +7089 wmo Wom (Papua New Guinea) +7090 wms Wambon +7091 wmt Walmajarri +7092 wmw Mwani +7093 wmx Womo +7094 wnb Mokati +7095 wnc Wantoat +7096 wnd Wandarang +7097 wne Waneci +7098 wng Wanggom +7099 wni Ndzwani Comorian +7100 wnk Wanukaka +7101 wnm Wanggamala +7102 wnn Wunumara +7103 wno Wano +7104 wnp Wanap +7105 wnu Usan +7106 wnw Wintu +7107 wny Wanyi +7108 woa Kuwema +7109 wob Wè Northern +7110 woc Wogeo +7111 wod Wolani +7112 woe Woleaian +7113 wof Gambian Wolof +7114 wog Wogamusin +7115 woi Kamang +7116 wok Longto +7117 wo Wolof +7118 wom Wom (Nigeria) +7119 won Wongo +7120 woo Manombai +7121 wor Woria +7122 wos Hanga Hundi +7123 wow Wawonii +7124 woy Weyto +7125 wpc Maco +7126 wrb Waluwarra +7127 wrg Warungu +7128 wrh Wiradjuri +7129 wri Wariyangga +7130 wrk Garrwa +7131 wrl Warlmanpa +7132 wrm Warumungu +7133 wrn Warnang +7134 wro Worrorra +7135 wrp Waropen +7136 wrr Wardaman +7137 wrs Waris +7138 wru Waru +7139 wrv Waruna +7140 wrw Gugu Warra +7141 wrx Wae Rana +7142 wry Merwari +7143 wrz Waray (Australia) +7144 wsa Warembori +7145 wsg Adilabad Gondi +7146 wsi Wusi +7147 wsk Waskia +7148 wsr Owenia +7149 wss Wasa +7150 wsu Wasu +7151 wsv Wotapuri-Katarqalai +7152 wtb Matambwe +7153 wtf Watiwa +7154 wth Wathawurrung +7155 wti Berta +7156 wtk Watakataui +7157 wtm Mewati +7158 wtw Wotu +7159 wua Wikngenchera +7160 wub Wunambal +7161 wud Wudu +7162 wuh Wutunhua +7163 wul Silimo +7164 wum Wumbvu +7165 wun Bungu +7166 wur Wurrugu +7167 wut Wutung +7168 wuu Wu Chinese +7169 wuv Wuvulu-Aua +7170 wux Wulna +7171 wuy Wauyai +7172 wwa Waama +7173 wwb Wakabunga +7174 wwo Wetamut +7175 wwr Warrwa +7176 www Wawa +7177 wxa Waxianghua +7178 wxw Wardandi +7179 wyb Wangaaybuwan-Ngiyambaa +7180 wyi Woiwurrung +7181 wym Wymysorys +7182 wyn Wyandot +7183 wyr Wayoró +7184 wyy Western Fijian +7185 xaa Andalusian Arabic +7186 xab Sambe +7187 xac Kachari +7188 xad Adai +7189 xae Aequian +7190 xag Aghwan +7191 xai Kaimbé +7192 xaj Ararandewára +7193 xak Máku +7194 xal Kalmyk +7195 xam Ç€Xam +7196 xan Xamtanga +7197 xao Khao +7198 xap Apalachee +7199 xaq Aquitanian +7200 xar Karami +7201 xas Kamas +7202 xat Katawixi +7203 xau Kauwera +7204 xav Xavánte +7205 xaw Kawaiisu +7206 xay Kayan Mahakam +7207 xbb Lower Burdekin +7208 xbc Bactrian +7209 xbd Bindal +7210 xbe Bigambal +7211 xbg Bunganditj +7212 xbi Kombio +7213 xbj Birrpayi +7214 xbm Middle Breton +7215 xbn Kenaboi +7216 xbo Bolgarian +7217 xbp Bibbulman +7218 xbr Kambera +7219 xbw Kambiwá +7220 xby Batjala +7221 xcb Cumbric +7222 xcc Camunic +7223 xce Celtiberian +7224 xcg Cisalpine Gaulish +7225 xch Chemakum +7226 xcl Classical Armenian +7227 xcm Comecrudo +7228 xcn Cotoname +7229 xco Chorasmian +7230 xcr Carian +7231 xct Classical Tibetan +7232 xcu Curonian +7233 xcv Chuvantsy +7234 xcw Coahuilteco +7235 xcy Cayuse +7236 xda Darkinyung +7237 xdc Dacian +7238 xdk Dharuk +7239 xdm Edomite +7240 xdo Kwandu +7241 xdq Kaitag +7242 xdy Malayic Dayak +7243 xeb Eblan +7244 xed Hdi +7245 xeg ǁXegwi +7246 xel Kelo +7247 xem Kembayan +7248 xep Epi-Olmec +7249 xer Xerénte +7250 xes Kesawai +7251 xet Xetá +7252 xeu Keoru-Ahia +7253 xfa Faliscan +7254 xga Galatian +7255 xgb Gbin +7256 xgd Gudang +7257 xgf Gabrielino-Fernandeño +7258 xgg Goreng +7259 xgi Garingbal +7260 xgl Galindan +7261 xgm Dharumbal +7262 xgr Garza +7263 xgu Unggumi +7264 xgw Guwa +7265 xha Harami +7266 xhc Hunnic +7267 xhd Hadrami +7268 xhe Khetrani +7269 xhm Middle Khmer (1400 to 1850 CE) +7270 xh Xhosa +7271 xhr Hernican +7272 xht Hattic +7273 xhu Hurrian +7274 xhv Khua +7275 xib Iberian +7276 xii Xiri +7277 xil Illyrian +7278 xin Xinca +7279 xir Xiriâna +7280 xis Kisan +7281 xiv Indus Valley Language +7282 xiy Xipaya +7283 xjb Minjungbal +7284 xjt Jaitmatang +7285 xka Kalkoti +7286 xkb Northern Nago +7287 xkc Kho'ini +7288 xkd Mendalam Kayan +7289 xke Kereho +7290 xkf Khengkha +7291 xkg Kagoro +7292 xki Kenyan Sign Language +7293 xkj Kajali +7294 xkk Kachok +7295 xkl Mainstream Kenyah +7296 xkn Kayan River Kayan +7297 xko Kiorr +7298 xkp Kabatei +7299 xkq Koroni +7300 xkr Xakriabá +7301 xks Kumbewaha +7302 xkt Kantosi +7303 xku Kaamba +7304 xkv Kgalagadi +7305 xkw Kembra +7306 xkx Karore +7307 xky Uma' Lasan +7308 xkz Kurtokha +7309 xla Kamula +7310 xlb Loup B +7311 xlc Lycian +7312 xld Lydian +7313 xle Lemnian +7314 xlg Ligurian (Ancient) +7315 xli Liburnian +7316 xln Alanic +7317 xlo Loup A +7318 xlp Lepontic +7319 xls Lusitanian +7320 xlu Cuneiform Luwian +7321 xly Elymian +7322 xma Mushungulu +7323 xmb Mbonga +7324 xmc Makhuwa-Marrevone +7325 xmd Mbudum +7326 xme Median +7327 xmf Mingrelian +7328 xmg Mengaka +7329 xmh Kugu-Muminh +7330 xmj Majera +7331 xmk Ancient Macedonian +7332 xml Malaysian Sign Language +7333 xmm Manado Malay +7334 xmn Manichaean Middle Persian +7335 xmo Morerebi +7336 xmp Kuku-Mu'inh +7337 xmq Kuku-Mangk +7338 xmr Meroitic +7339 xms Moroccan Sign Language +7340 xmt Matbat +7341 xmu Kamu +7342 xmv Antankarana Malagasy +7343 xmw Tsimihety Malagasy +7344 xmx Salawati +7345 xmy Mayaguduna +7346 xmz Mori Bawah +7347 xna Ancient North Arabian +7348 xnb Kanakanabu +7349 xng Middle Mongolian +7350 xnh Kuanhua +7351 xni Ngarigu +7352 xnj Ngoni (Tanzania) +7353 xnk Nganakarti +7354 xnm Ngumbarl +7355 xnn Northern Kankanay +7356 xno Anglo-Norman +7357 xnq Ngoni (Mozambique) +7358 xnr Kangri +7359 xns Kanashi +7360 xnt Narragansett +7361 xnu Nukunul +7362 xny Nyiyaparli +7363 xnz Kenzi +7364 xoc O'chi'chi' +7365 xod Kokoda +7366 xog Soga +7367 xoi Kominimung +7368 xok Xokleng +7369 xom Komo (Sudan) +7370 xon Konkomba +7371 xoo Xukurú +7372 xop Kopar +7373 xor Korubo +7374 xow Kowaki +7375 xpa Pirriya +7376 xpb Northeastern Tasmanian +7377 xpc Pecheneg +7378 xpd Oyster Bay Tasmanian +7379 xpe Liberia Kpelle +7380 xpf Southeast Tasmanian +7381 xpg Phrygian +7382 xph North Midlands Tasmanian +7383 xpi Pictish +7384 xpj Mpalitjanh +7385 xpk Kulina Pano +7386 xpl Port Sorell Tasmanian +7387 xpm Pumpokol +7388 xpn Kapinawá +7389 xpo Pochutec +7390 xpp Puyo-Paekche +7391 xpq Mohegan-Pequot +7392 xpr Parthian +7393 xps Pisidian +7394 xpt Punthamara +7395 xpu Punic +7396 xpv Northern Tasmanian +7397 xpw Northwestern Tasmanian +7398 xpx Southwestern Tasmanian +7399 xpy Puyo +7400 xpz Bruny Island Tasmanian +7401 xqa Karakhanid +7402 xqt Qatabanian +7403 xra Krahô +7404 xrb Eastern Karaboro +7405 xrd Gundungurra +7406 xre Kreye +7407 xrg Minang +7408 xri Krikati-Timbira +7409 xrm Armazic +7410 xrn Arin +7411 xrr Raetic +7412 xrt Aranama-Tamique +7413 xru Marriammu +7414 xrw Karawa +7415 xsa Sabaean +7416 xsb Sambal +7417 xsc Scythian +7418 xsd Sidetic +7419 xse Sempan +7420 xsh Shamang +7421 xsi Sio +7422 xsj Subi +7423 xsl South Slavey +7424 xsm Kasem +7425 xsn Sanga (Nigeria) +7426 xso Solano +7427 xsp Silopi +7428 xsq Makhuwa-Saka +7429 xsr Sherpa +7430 xsu Sanumá +7431 xsv Sudovian +7432 xsy Saisiyat +7433 xta Alcozauca Mixtec +7434 xtb Chazumba Mixtec +7435 xtc Katcha-Kadugli-Miri +7436 xtd Diuxi-Tilantongo Mixtec +7437 xte Ketengban +7438 xtg Transalpine Gaulish +7439 xth Yitha Yitha +7440 xti Sinicahua Mixtec +7441 xtj San Juan Teita Mixtec +7442 xtl Tijaltepec Mixtec +7443 xtm Magdalena Peñasco Mixtec +7444 xtn Northern Tlaxiaco Mixtec +7445 xto Tokharian A +7446 xtp San Miguel Piedras Mixtec +7447 xtq Tumshuqese +7448 xtr Early Tripuri +7449 xts Sindihui Mixtec +7450 xtt Tacahua Mixtec +7451 xtu Cuyamecalco Mixtec +7452 xtv Thawa +7453 xtw Tawandê +7454 xty Yoloxochitl Mixtec +7455 xua Alu Kurumba +7456 xub Betta Kurumba +7457 xud Umiida +7458 xug Kunigami +7459 xuj Jennu Kurumba +7460 xul Ngunawal +7461 xum Umbrian +7462 xun Unggaranggu +7463 xuo Kuo +7464 xup Upper Umpqua +7465 xur Urartian +7466 xut Kuthant +7467 xuu Kxoe +7468 xve Venetic +7469 xvi Kamviri +7470 xvn Vandalic +7471 xvo Volscian +7472 xvs Vestinian +7473 xwa Kwaza +7474 xwc Woccon +7475 xwd Wadi Wadi +7476 xwe Xwela Gbe +7477 xwg Kwegu +7478 xwj Wajuk +7479 xwk Wangkumara +7480 xwl Western Xwla Gbe +7481 xwo Written Oirat +7482 xwr Kwerba Mamberamo +7483 xwt Wotjobaluk +7484 xww Wemba Wemba +7485 xxb Boro (Ghana) +7486 xxk Ke'o +7487 xxm Minkin +7488 xxr Koropó +7489 xxt Tambora +7490 xya Yaygir +7491 xyb Yandjibara +7492 xyj Mayi-Yapi +7493 xyk Mayi-Kulan +7494 xyl Yalakalore +7495 xyt Mayi-Thakurti +7496 xyy Yorta Yorta +7497 xzh Zhang-Zhung +7498 xzm Zemgalian +7499 xzp Ancient Zapotec +7500 yaa Yaminahua +7501 yab Yuhup +7502 yac Pass Valley Yali +7503 yad Yagua +7504 yae Pumé +7505 yaf Yaka (Democratic Republic of Congo) +7506 yag Yámana +7507 yah Yazgulyam +7508 yai Yagnobi +7509 yaj Banda-Yangere +7510 yak Yakama +7511 yal Yalunka +7512 yam Yamba +7513 yan Mayangna +7514 yao Yao +7515 yap Yapese +7516 yaq Yaqui +7517 yar Yabarana +7518 yas Nugunu (Cameroon) +7519 yat Yambeta +7520 yau Yuwana +7521 yav Yangben +7522 yaw Yawalapití +7523 yax Yauma +7524 yay Agwagwune +7525 yaz Lokaa +7526 yba Yala +7527 ybb Yemba +7528 ybe West Yugur +7529 ybh Yakha +7530 ybi Yamphu +7531 ybj Hasha +7532 ybk Bokha +7533 ybl Yukuben +7534 ybm Yaben +7535 ybn Yabaâna +7536 ybo Yabong +7537 ybx Yawiyo +7538 yby Yaweyuha +7539 ych Chesu +7540 ycl Lolopo +7541 ycn Yucuna +7542 ycp Chepya +7543 ycr Yilan Creole +7544 yda Yanda +7545 ydd Eastern Yiddish +7546 yde Yangum Dey +7547 ydg Yidgha +7548 ydk Yoidik +7549 yea Ravula +7550 yec Yeniche +7551 yee Yimas +7552 yei Yeni +7553 yej Yevanic +7554 yel Yela +7555 yer Tarok +7556 yes Nyankpa +7557 yet Yetfa +7558 yeu Yerukula +7559 yev Yapunda +7560 yey Yeyi +7561 yga Malyangapa +7562 ygi Yiningayi +7563 ygl Yangum Gel +7564 ygm Yagomi +7565 ygp Gepo +7566 ygr Yagaria +7567 ygs YolÅ‹u Sign Language +7568 ygu Yugul +7569 ygw Yagwoia +7570 yha Baha Buyang +7571 yhd Judeo-Iraqi Arabic +7572 yhl Hlepho Phowa +7573 yhs Yan-nhaÅ‹u Sign Language +7574 yia Yinggarda +7575 yi Yiddish +7576 yif Ache +7577 yig Wusa Nasu +7578 yih Western Yiddish +7579 yii Yidiny +7580 yij Yindjibarndi +7581 yik Dongshanba Lalo +7582 yil Yindjilandji +7583 yim Yimchungru Naga +7584 yin Riang Lai +7585 yip Pholo +7586 yiq Miqie +7587 yir North Awyu +7588 yis Yis +7589 yit Eastern Lalu +7590 yiu Awu +7591 yiv Northern Nisu +7592 yix Axi Yi +7593 yiz Azhe +7594 yka Yakan +7595 ykg Northern Yukaghir +7596 ykh Khamnigan Mongol +7597 yki Yoke +7598 ykk Yakaikeke +7599 ykl Khlula +7600 ykm Kap +7601 ykn Kua-nsi +7602 yko Yasa +7603 ykr Yekora +7604 ykt Kathu +7605 yku Kuamasi +7606 yky Yakoma +7607 yla Yaul +7608 ylb Yaleba +7609 yle Yele +7610 ylg Yelogu +7611 yli Angguruk Yali +7612 yll Yil +7613 ylm Limi +7614 yln Langnian Buyang +7615 ylo Naluo Yi +7616 ylr Yalarnnga +7617 ylu Aribwaung +7618 yly Nyâlayu +7619 ymb Yambes +7620 ymc Southern Muji +7621 ymd Muda +7622 yme Yameo +7623 ymg Yamongeri +7624 ymh Mili +7625 ymi Moji +7626 ymk Makwe +7627 yml Iamalele +7628 ymm Maay +7629 ymn Yamna +7630 ymo Yangum Mon +7631 ymp Yamap +7632 ymq Qila Muji +7633 ymr Malasar +7634 yms Mysian +7635 ymx Northern Muji +7636 ymz Muzi +7637 yna Aluo +7638 ynd Yandruwandha +7639 yne Lang'e +7640 yng Yango +7641 ynk Naukan Yupik +7642 ynl Yangulam +7643 ynn Yana +7644 yno Yong +7645 ynq Yendang +7646 yns Yansi +7647 ynu Yahuna +7648 yob Yoba +7649 yog Yogad +7650 yoi Yonaguni +7651 yok Yokuts +7652 yol Yola +7653 yom Yombe +7654 yon Yongkom +7655 yo Yoruba +7656 yot Yotti +7657 yox Yoron +7658 yoy Yoy +7659 ypa Phala +7660 ypb Labo Phowa +7661 ypg Phola +7662 yph Phupha +7663 ypm Phuma +7664 ypn Ani Phowa +7665 ypo Alo Phola +7666 ypp Phupa +7667 ypz Phuza +7668 yra Yerakai +7669 yrb Yareba +7670 yre Yaouré +7671 yrk Nenets +7672 yrl Nhengatu +7673 yrm Yirrk-Mel +7674 yrn Yerong +7675 yro Yaroamë +7676 yrs Yarsun +7677 yrw Yarawata +7678 yry Yarluyandi +7679 ysc Yassic +7680 ysd Samatao +7681 ysg Sonaga +7682 ysl Yugoslavian Sign Language +7683 ysm Myanmar Sign Language +7684 ysn Sani +7685 yso Nisi (China) +7686 ysp Southern Lolopo +7687 ysr Sirenik Yupik +7688 yss Yessan-Mayo +7689 ysy Sanie +7690 yta Talu +7691 ytl Tanglang +7692 ytp Thopho +7693 ytw Yout Wam +7694 yty Yatay +7695 yua Yucateco +7696 yub Yugambal +7697 yuc Yuchi +7698 yud Judeo-Tripolitanian Arabic +7699 yue Yue Chinese +7700 yuf Havasupai-Walapai-Yavapai +7701 yug Yug +7702 yui Yurutí +7703 yuj Karkar-Yuri +7704 yuk Yuki +7705 yul Yulu +7706 yum Quechan +7707 yun Bena (Nigeria) +7708 yup Yukpa +7709 yuq Yuqui +7710 yur Yurok +7711 yut Yopno +7712 yuw Yau (Morobe Province) +7713 yux Southern Yukaghir +7714 yuy East Yugur +7715 yuz Yuracare +7716 yva Yawa +7717 yvt Yavitero +7718 ywa Kalou +7719 ywg Yinhawangka +7720 ywl Western Lalu +7721 ywn Yawanawa +7722 ywq Wuding-Luquan Yi +7723 ywr Yawuru +7724 ywt Xishanba Lalo +7725 ywu Wumeng Nasu +7726 yww Yawarawarga +7727 yxa Mayawali +7728 yxg Yagara +7729 yxl Yardliyawarra +7730 yxm Yinwum +7731 yxu Yuyu +7732 yxy Yabula Yabula +7733 yyr Yir Yoront +7734 yyu Yau (Sandaun Province) +7735 yyz Ayizi +7736 yzg E'ma Buyang +7737 yzk Zokhuo +7738 zaa Sierra de Juárez Zapotec +7739 zab Western Tlacolula Valley Zapotec +7740 zac Ocotlán Zapotec +7741 zad Cajonos Zapotec +7742 zae Yareni Zapotec +7743 zaf Ayoquesco Zapotec +7744 zag Zaghawa +7745 zah Zangwal +7746 zai Isthmus Zapotec +7747 zaj Zaramo +7748 zak Zanaki +7749 zal Zauzou +7750 zam Miahuatlán Zapotec +7751 zao Ozolotepec Zapotec +7752 zap Zapotec +7753 zaq Aloápam Zapotec +7754 zar Rincón Zapotec +7755 zas Santo Domingo Albarradas Zapotec +7756 zat Tabaa Zapotec +7757 zau Zangskari +7758 zav Yatzachi Zapotec +7759 zaw Mitla Zapotec +7760 zax Xadani Zapotec +7761 zay Zayse-Zergulla +7762 zaz Zari +7763 zba Balaibalan +7764 zbc Central Berawan +7765 zbe East Berawan +7766 zbl Blissymbols +7767 zbt Batui +7768 zbu Bu (Bauchi State) +7769 zbw West Berawan +7770 zca Coatecas Altas Zapotec +7771 zcd Las Delicias Zapotec +7772 zch Central Hongshuihe Zhuang +7773 zdj Ngazidja Comorian +7774 zea Zeeuws +7775 zeg Zenag +7776 zeh Eastern Hongshuihe Zhuang +7777 zem Zeem +7778 zen Zenaga +7779 zga Kinga +7780 zgb Guibei Zhuang +7781 zgh Standard Moroccan Tamazight +7782 zgm Minz Zhuang +7783 zgn Guibian Zhuang +7784 zgr Magori +7785 za Zhuang +7786 zhb Zhaba +7787 zhd Dai Zhuang +7788 zhi Zhire +7789 zhn Nong Zhuang +7790 zh Chinese +7791 zhw Zhoa +7792 zia Zia +7793 zib Zimbabwe Sign Language +7794 zik Zimakani +7795 zil Zialo +7796 zim Mesme +7797 zin Zinza +7798 ziw Zigula +7799 ziz Zizilivakan +7800 zka Kaimbulawa +7801 zkd Kadu +7802 zkg Koguryo +7803 zkh Khorezmian +7804 zkk Karankawa +7805 zkn Kanan +7806 zko Kott +7807 zkp São Paulo Kaingáng +7808 zkr Zakhring +7809 zkt Kitan +7810 zku Kaurna +7811 zkv Krevinian +7812 zkz Khazar +7813 zla Zula +7814 zlj Liujiang Zhuang +7815 zlm Malay (individual language) +7816 zln Lianshan Zhuang +7817 zlq Liuqian Zhuang +7818 zlu Zul +7819 zma Manda (Australia) +7820 zmb Zimba +7821 zmc Margany +7822 zmd Maridan +7823 zme Mangerr +7824 zmf Mfinu +7825 zmg Marti Ke +7826 zmh Makolkol +7827 zmi Negeri Sembilan Malay +7828 zmj Maridjabin +7829 zmk Mandandanyi +7830 zml Matngala +7831 zmm Marimanindji +7832 zmn Mbangwe +7833 zmo Molo +7834 zmp Mpuono +7835 zmq Mituku +7836 zmr Maranunggu +7837 zms Mbesa +7838 zmt Maringarr +7839 zmu Muruwari +7840 zmv Mbariman-Gudhinma +7841 zmw Mbo (Democratic Republic of Congo) +7842 zmx Bomitaba +7843 zmy Mariyedi +7844 zmz Mbandja +7845 zna Zan Gula +7846 zne Zande (individual language) +7847 zng Mang +7848 znk Manangkari +7849 zns Mangas +7850 zoc Copainalá Zoque +7851 zoh Chimalapa Zoque +7852 zom Zou +7853 zoo Asunción Mixtepec Zapotec +7854 zoq Tabasco Zoque +7855 zor Rayón Zoque +7856 zos Francisco León Zoque +7857 zpa Lachiguiri Zapotec +7858 zpb Yautepec Zapotec +7859 zpc Choapan Zapotec +7860 zpd Southeastern Ixtlán Zapotec +7861 zpe Petapa Zapotec +7862 zpf San Pedro Quiatoni Zapotec +7863 zpg Guevea De Humboldt Zapotec +7864 zph Totomachapan Zapotec +7865 zpi Santa María Quiegolani Zapotec +7866 zpj Quiavicuzas Zapotec +7867 zpk Tlacolulita Zapotec +7868 zpl Lachixío Zapotec +7869 zpm Mixtepec Zapotec +7870 zpn Santa Inés Yatzechi Zapotec +7871 zpo Amatlán Zapotec +7872 zpp El Alto Zapotec +7873 zpq Zoogocho Zapotec +7874 zpr Santiago Xanica Zapotec +7875 zps Coatlán Zapotec +7876 zpt San Vicente Coatlán Zapotec +7877 zpu Yalálag Zapotec +7878 zpv Chichicapan Zapotec +7879 zpw Zaniza Zapotec +7880 zpx San Baltazar Loxicha Zapotec +7881 zpy Mazaltepec Zapotec +7882 zpz Texmelucan Zapotec +7883 zqe Qiubei Zhuang +7884 zra Kara (Korea) +7885 zrg Mirgan +7886 zrn Zerenkel +7887 zro Záparo +7888 zrp Zarphatic +7889 zrs Mairasi +7890 zsa Sarasira +7891 zsk Kaskean +7892 zsl Zambian Sign Language +7893 zsm Standard Malay +7894 zsr Southern Rincon Zapotec +7895 zsu Sukurum +7896 zte Elotepec Zapotec +7897 ztg Xanaguía Zapotec +7898 ztl Lapaguía-Guivini Zapotec +7899 ztm San Agustín Mixtepec Zapotec +7900 ztn Santa Catarina Albarradas Zapotec +7901 ztp Loxicha Zapotec +7902 ztq Quioquitani-Quierí Zapotec +7903 zts Tilquiapan Zapotec +7904 ztt Tejalapan Zapotec +7905 ztu Güilá Zapotec +7906 ztx Zaachila Zapotec +7907 zty Yatee Zapotec +7908 zuh Tokano +7909 zu Zulu +7910 zum Kumzari +7911 zun Zuni +7912 zuy Zumaya +7913 zwa Zay +7914 zxx No linguistic content +7915 zyb Yongbei Zhuang +7916 zyg Yang Zhuang +7917 zyj Youjiang Zhuang +7918 zyn Yongnan Zhuang +7919 zyp Zyphe Chin +7920 zza Zaza +7921 zzj Zuojiang Zhuang +7922 zzz Other +\. + + +-- +-- Data for Name: lead_from; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.lead_from (id, count, title) FROM stdin; +3 0 newsletter +6 0 fair +1 2 platform +4 1 search +5 4 Friends +2 4 media +7 3 Flyer +\. + + +-- +-- Data for Name: location; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.location (id, type, info) FROM stdin; +1 district \N +2 district \N +3 district \N +4 district \N +5 district \N +6 district \N +7 district \N +8 district \N +9 district \N +10 district \N +11 district \N +12 district \N +13 district \N +14 district \N +15 district \N +16 district \N +17 district \N +18 district \N +19 district \N +20 district \N +21 district \N +22 district \N +23 district \N +24 district \N +25 district \N +26 district \N +27 district \N +28 district \N +29 district \N +30 district \N +31 district \N +32 district \N +33 district \N +34 district \N +35 district \N +36 district \N +37 district \N +38 district \N +39 district \N +40 district \N +41 district \N +42 district \N +43 district \N +44 district \N +45 district \N +46 district \N +47 district \N +48 district \N +49 district \N +50 district \N +51 district \N +52 district \N +53 district \N +54 district \N +55 district \N +56 district \N +57 district \N +58 district \N +59 district \N +60 district \N +61 district \N +62 district \N +63 district \N +64 district \N +65 district \N +66 district \N +67 district \N +68 district \N +69 district \N +70 district \N +71 district \N +72 district \N +73 district \N +74 district \N +75 district \N +76 district \N +77 district \N +78 district \N +79 district \N +80 district \N +81 district \N +82 district \N +83 district \N +84 district \N +85 district \N +86 district \N +87 district \N +88 district \N +89 district \N +90 district \N +91 district \N +92 district \N +93 district \N +94 district \N +95 district \N +96 district \N +97 district \N +98 district \N +99 district \N +100 district \N +101 district \N +102 district \N +103 district \N +104 district \N +105 district \N +106 district \N +107 district \N +108 district \N +109 district \N +110 district \N +111 district \N +112 district \N +113 district \N +114 district \N +115 district \N +116 district \N +117 district \N +118 district \N +119 district \N +120 district \N +121 district \N +122 district \N +123 district \N +124 district \N +125 district \N +126 district \N +127 district \N +128 district \N +129 district \N +130 district \N +131 district \N +132 district \N +133 district \N +134 district \N +135 district \N +136 district \N +137 district \N +138 district \N +139 district \N +140 district \N +141 district \N +142 district \N +143 district \N +144 district \N +145 district \N +146 district \N +147 district \N +148 district \N +149 district \N +150 district \N +151 district \N +152 district \N +153 district \N +154 district \N +155 district \N +156 district \N +157 district \N +158 district \N +159 district \N +160 district \N +161 district \N +162 district \N +163 district \N +164 district \N +165 district \N +166 district \N +167 district \N +168 district \N +169 district \N +170 district \N +171 district \N +172 district \N +173 district \N +174 district \N +175 district \N +176 district \N +177 district \N +178 district \N +179 district \N +180 district \N +181 district \N +182 district \N +183 district \N +184 district \N +185 district \N +186 district \N +187 district \N +188 district \N +189 district \N +190 district \N +191 district \N +192 district \N +193 district \N +194 district \N +195 district \N +196 district \N +197 district \N +198 district \N +199 district \N +200 district \N +201 district \N +202 district \N +203 district \N +204 district \N +205 district \N +206 district \N +207 district \N +208 district \N +209 district \N +210 district \N +211 district \N +212 district \N +213 district \N +214 district \N +215 district \N +216 district \N +217 district \N +218 district \N +219 district \N +220 district \N +221 district \N +222 district \N +223 district \N +224 district \N +225 district \N +226 district \N +227 district \N +228 district \N +229 district \N +230 district \N +231 district \N +232 district \N +233 district \N +234 district \N +235 district \N +236 district \N +237 district \N +238 district \N +239 district \N +240 district \N +241 district \N +242 district \N +243 district \N +244 district \N +245 district \N +246 district \N +247 district \N +248 district \N +249 district \N +250 district \N +251 district \N +252 district \N +253 district \N +254 district \N +255 district \N +256 district \N +257 district \N +258 district \N +259 district \N +260 district \N +261 district \N +262 district \N +263 district \N +264 district \N +265 district \N +266 district \N +267 district \N +268 district \N +269 district \N +270 district \N +271 district \N +272 district \N +273 district \N +274 district \N +275 district \N +276 district \N +277 district \N +278 district \N +279 district \N +280 district \N +281 district \N +282 district \N +283 district \N +284 district \N +285 district \N +286 district \N +287 district \N +288 district \N +289 district \N +290 district \N +291 district \N +292 district \N +293 district \N +294 district \N +295 district \N +296 district \N +297 district \N +298 district \N +299 district \N +300 district \N +301 district \N +302 district \N +303 district \N +304 district \N +305 district \N +306 district \N +307 district \N +308 district \N +309 district \N +310 district \N +311 district \N +312 district \N +313 district \N +314 district \N +315 district \N +316 district \N +317 district \N +318 district \N +319 district \N +320 district \N +321 district \N +322 district \N +323 district \N +324 district \N +325 district \N +326 district \N +327 district \N +328 district \N +329 district \N +330 district \N +331 district \N +332 district \N +333 district \N +334 district \N +335 district \N +336 district \N +337 district \N +338 district \N +339 district \N +340 district \N +341 district \N +342 district \N +343 district \N +344 district \N +345 district \N +346 district \N +347 district \N +348 district \N +349 district \N +350 district \N +351 district \N +352 district \N +353 district \N +354 district \N +355 district \N +356 district \N +357 district \N +358 district \N +359 district \N +360 district \N +361 district \N +362 district \N +363 district \N +364 district \N +365 district \N +366 district \N +367 district \N +368 district \N +369 district \N +370 district \N +371 district \N +372 district \N +373 district \N +374 district \N +375 district \N +376 district \N +377 district \N +378 district \N +379 district \N +380 district \N +381 district \N +382 district \N +383 district \N +384 district \N +385 district \N +386 district \N +387 district \N +388 district \N +389 district \N +390 district \N +391 district \N +392 district \N +393 district \N +394 district \N +395 district \N +396 district \N +397 district \N +398 district \N +399 district \N +400 district \N +401 district \N +402 district \N +403 district \N +404 district \N +405 district \N +406 district \N +407 district \N +408 district \N +409 district \N +410 district \N +411 district \N +412 district \N +413 district \N +414 district \N +415 district \N +416 district \N +417 district \N +418 district \N +419 district \N +420 district \N +421 district \N +422 district \N +423 district \N +424 district \N +425 district \N +426 district \N +427 district \N +428 district \N +429 district \N +430 district \N +431 district \N +432 district \N +433 district \N +434 district \N +435 district \N +436 district \N +437 district \N +438 district \N +439 district \N +440 district \N +441 district \N +442 district \N +443 district \N +444 district \N +445 district \N +446 district \N +447 district \N +448 district \N +449 district \N +450 district \N +451 district \N +452 district \N +453 district \N +454 district \N +455 district \N +456 district \N +457 district \N +458 district \N +459 district \N +460 district \N +461 district \N +462 district \N +463 district \N +464 district \N +465 district \N +466 district \N +467 district \N +468 district \N +469 district \N +470 district \N +471 district \N +472 district \N +473 district \N +474 district \N +475 district \N +476 district \N +477 district \N +478 district \N +479 district \N +480 district \N +481 district \N +482 district \N +483 district \N +484 district \N +485 district \N +486 district \N +487 district \N +488 district \N +489 district \N +490 district \N +491 district \N +492 district \N +493 district \N +494 district \N +495 district \N +496 district \N +497 district \N +498 district \N +499 district \N +500 district \N +501 district \N +502 district \N +503 district \N +504 district \N +505 district \N +506 district \N +507 district \N +508 district \N +509 district \N +510 district \N +511 district \N +512 district \N +513 district \N +514 district \N +515 district \N +516 district \N +517 district \N +518 district \N +519 district \N +520 district \N +521 district \N +522 district \N +523 district \N +524 district \N +525 district \N +526 district \N +527 district \N +528 district \N +529 district \N +530 district \N +531 district \N +532 district \N +533 district \N +534 district \N +535 district \N +536 district \N +537 district \N +538 district \N +539 district \N +540 district \N +541 district \N +542 district \N +543 district \N +544 district \N +545 district \N +546 district \N +547 district \N +548 district \N +549 district \N +550 district \N +551 district \N +552 district \N +553 district \N +554 district \N +555 district \N +556 district \N +557 district \N +558 district \N +559 district \N +560 district \N +561 district \N +562 district \N +563 district \N +564 district \N +565 district \N +566 district \N +567 district \N +568 district \N +569 district \N +570 district \N +571 district \N +572 district \N +573 district \N +574 district \N +575 district \N +576 district \N +577 district \N +578 district \N +579 district \N +580 district \N +581 district \N +582 district \N +583 district \N +584 district \N +585 district \N +586 district \N +587 district \N +588 district \N +589 district \N +590 district \N +591 district \N +592 district \N +593 district \N +594 district \N +595 district \N +596 district \N +597 district \N +598 district \N +599 district \N +600 district \N +601 district \N +602 district \N +603 district \N +604 district \N +605 district \N +606 district \N +607 district \N +608 district \N +609 district \N +610 district \N +611 district \N +612 district \N +613 district \N +614 district \N +615 district \N +616 district \N +617 district \N +618 district \N +619 district \N +620 district \N +621 district \N +622 district \N +623 district \N +624 district \N +625 district \N +626 district \N +627 district \N +628 district \N +629 district \N +630 district \N +631 district \N +632 district \N +633 district \N +634 district \N +635 district \N +636 district \N +637 district \N +638 district \N +639 district \N +640 district \N +641 district \N +642 district \N +643 district \N +644 district \N +645 district \N +646 district \N +647 district \N +648 district \N +649 district \N +650 district \N +651 district \N +652 district \N +653 district \N +654 district \N +655 district \N +656 district \N +657 district \N +658 district \N +659 district \N +660 district \N +661 district \N +662 district \N +663 district \N +664 district \N +665 district \N +666 district \N +667 district \N +668 district \N +669 district \N +670 district \N +671 district \N +672 district \N +673 district \N +674 district \N +675 district \N +676 district \N +677 district \N +678 district \N +679 district \N +680 district \N +681 district \N +682 district \N +683 district \N +684 district \N +685 district \N +686 district \N +687 district \N +688 district \N +689 district \N +690 district \N +691 district \N +692 district \N +693 district \N +694 district \N +695 district \N +696 district \N +697 district \N +698 district \N +699 district \N +700 district \N +701 district \N +702 district \N +703 district \N +704 district \N +705 district \N +706 district \N +707 district \N +708 district \N +709 district \N +710 district \N +711 district \N +712 district \N +713 district \N +714 district \N +715 district \N +716 district \N +717 district \N +718 district \N +719 district \N +720 district \N +721 district \N +722 district \N +723 district \N +724 district \N +725 district \N +726 district \N +727 district \N +728 district \N +729 district \N +730 district \N +731 district \N +732 district \N +733 district \N +734 district \N +735 district \N +736 district \N +737 district \N +738 district \N +739 district \N +740 district \N +741 district \N +742 district \N +743 district \N +744 district \N +745 district \N +746 district \N +747 district \N +748 district \N +749 district \N +750 district \N +751 district \N +752 district \N +753 district \N +754 district \N +755 district \N +756 district \N +757 district \N +758 district \N +759 district \N +760 district \N +761 district \N +762 district \N +763 district \N +764 district \N +765 district \N +766 district \N +767 district \N +768 district \N +769 district \N +770 district \N +771 district \N +772 district \N +773 district \N +774 district \N +775 district \N +776 district \N +777 district \N +778 district \N +779 district \N +780 district \N +781 district \N +782 district \N +783 district \N +784 district \N +785 district \N +786 district \N +787 district \N +788 district \N +789 district \N +790 district \N +791 district \N +792 district \N +793 district \N +794 district \N +795 district \N +796 district \N +797 district \N +798 district \N +799 district \N +800 district \N +801 district \N +802 district \N +803 district \N +804 district \N +805 district \N +806 district \N +807 district \N +808 district \N +809 district \N +810 district \N +811 district \N +812 district \N +813 district \N +814 district \N +815 district \N +816 district \N +817 district \N +818 district \N +819 district \N +820 district \N +821 district \N +822 district \N +823 district \N +824 district \N +825 district \N +826 district \N +827 district \N +828 district \N +829 district \N +830 district \N +831 district \N +832 district \N +833 district \N +834 district \N +835 district \N +836 district \N +837 district \N +838 district \N +839 district \N +840 district \N +841 district \N +842 district \N +843 district \N +844 district \N +845 district \N +846 district \N +847 district \N +848 district \N +849 district \N +850 district \N +851 district \N +852 district \N +853 district \N +854 district \N +855 district \N +856 district \N +857 district \N +858 district \N +859 district \N +860 district \N +861 district \N +862 district \N +863 district \N +864 district \N +865 district \N +866 district \N +867 district \N +868 district \N +869 district \N +870 district \N +871 district \N +872 district \N +873 district \N +874 district \N +875 district \N +876 district \N +877 district \N +878 district \N +879 district \N +880 district \N +881 district \N +882 district \N +883 district \N +884 district \N +885 district \N +886 district \N +887 district \N +888 district \N +889 district \N +890 district \N +891 district \N +892 district \N +893 district \N +894 district \N +895 district \N +896 district \N +897 district \N +898 district \N +899 district \N +900 district \N +901 district \N +902 district \N +903 district \N +904 district \N +905 district \N +906 district \N +907 district \N +908 district \N +909 district \N +910 district \N +911 district \N +912 district \N +913 district \N +914 district \N +915 district \N +916 district \N +917 district \N +918 district \N +919 district \N +920 district \N +921 district \N +922 district \N +923 district \N +924 district \N +925 district \N +926 district \N +927 district \N +928 district \N +929 district \N +930 district \N +931 district \N +932 district \N +933 district \N +934 district \N +935 district \N +936 district \N +937 district \N +938 district \N +939 district \N +940 district \N +941 district \N +942 district \N +943 district \N +944 district \N +945 district \N +946 district \N +947 district \N +948 district \N +949 district \N +950 district \N +951 district \N +952 district \N +953 district \N +954 district \N +955 district \N +956 district \N +957 district \N +958 district \N +959 district \N +960 district \N +961 district \N +962 district \N +963 district \N +964 district \N +965 district \N +966 district \N +967 district \N +968 district \N +969 district \N +970 district \N +971 district \N +972 district \N +973 district \N +974 district \N +975 district \N +976 district \N +977 district \N +978 district \N +979 district \N +980 district \N +981 district \N +982 district \N +983 district \N +984 district \N +985 district \N +986 district \N +987 district \N +988 district \N +989 district \N +990 district \N +991 district \N +992 district \N +993 district \N +994 district \N +995 district \N +996 district \N +997 district \N +998 district \N +999 district \N +1000 district \N +1001 district \N +1002 district \N +1003 district \N +1004 district \N +1005 district \N +1006 district \N +1007 district \N +1008 district \N +1009 district \N +1010 district \N +1011 district \N +1012 district \N +1013 district \N +1014 district \N +1015 district \N +1016 district \N +1017 district \N +1018 district \N +1019 district \N +1020 district \N +1021 district \N +1022 district \N +1023 district \N +1024 district \N +1025 district \N +1026 district \N +1027 district \N +1028 district \N +1029 district \N +1030 district \N +1031 district \N +1032 district \N +1033 district \N +1034 district \N +1035 district \N +1036 district \N +1037 district \N +1038 district \N +1039 district \N +1040 district \N +1041 district \N +1042 district \N +1043 district \N +1044 district \N +1045 district \N +1046 district \N +1047 district \N +1048 district \N +1049 district \N +1050 district \N +1051 district \N +1052 district \N +1053 district \N +1054 district \N +1055 district \N +1056 district \N +1057 district \N +1058 district \N +1059 district \N +1060 district \N +1061 district \N +1062 district \N +1063 district \N +1064 district \N +1065 district \N +1066 district \N +1067 district \N +1068 district \N +1069 district \N +1070 district \N +1071 district \N +1072 district \N +1073 district \N +1074 district \N +1075 district \N +1076 district \N +1077 district \N +1078 district \N +1079 district \N +1080 district \N +1081 district \N +1082 district \N +1083 district \N +1084 district \N +1085 district \N +1086 district \N +1087 district \N +1088 district \N +1089 district \N +1090 district \N +1091 district \N +1092 district \N +1093 district \N +1094 district \N +1095 district \N +1096 district \N +1097 district \N +1098 district \N +1099 district \N +1100 district \N +1101 district \N +1102 district \N +1103 district \N +1104 district \N +1105 district \N +1106 district \N +1107 district \N +1108 district \N +1109 district \N +1110 district \N +1111 district \N +1112 district \N +1113 district \N +1114 district \N +1115 district \N +1116 district \N +1117 district \N +1118 district \N +1119 district \N +1120 district \N +1121 district \N +1122 district \N +1123 district \N +1124 district \N +1125 district \N +1126 district \N +1127 district \N +1128 district \N +1129 district \N +1130 district \N +1131 district \N +1132 district \N +1133 district \N +1134 district \N +1135 district \N +1136 district \N +1137 district \N +1138 district \N +1139 district \N +1140 district \N +1141 district \N +1142 district \N +1143 district \N +1144 district \N +1145 district \N +1146 district \N +1147 district \N +1148 district \N +1149 district \N +1150 district \N +1151 district \N +1152 district \N +1153 district \N +1154 district \N +1155 district \N +1156 district \N +1157 district \N +1158 district \N +1159 district \N +1160 district \N +1161 district \N +1162 district \N +1163 district \N +1164 district \N +1165 district \N +1166 district \N +1167 district \N +1168 district \N +1169 district \N +1170 district \N +1171 district \N +1172 district \N +1173 district \N +1174 district \N +1175 district \N +1176 district \N +1177 district \N +1178 district \N +1179 district \N +1180 district \N +1181 district \N +1182 district \N +1183 district \N +1184 district \N +1185 district \N +1186 district \N +1187 district \N +1188 district \N +1189 district \N +1190 district \N +1191 district \N +1192 district \N +1193 district \N +1194 district \N +1195 district \N +1196 district \N +1197 district \N +1198 district \N +1199 district \N +1200 district \N +1201 district \N +1202 district \N +1203 district \N +1204 district \N +1205 district \N +1206 district \N +1207 district \N +1208 district \N +1209 district \N +1210 district \N +1211 district \N +1212 district \N +1213 district \N +1214 district \N +1215 district \N +1216 district \N +1217 district \N +1218 district \N +1219 district \N +1220 district \N +1221 district \N +1222 district \N +1223 district \N +1224 district \N +1225 district \N +1226 district \N +1227 district \N +1228 district \N +1229 district \N +1230 district \N +1231 district \N +1232 district \N +1233 district \N +1234 district \N +1235 district \N +1236 district \N +1237 district \N +1238 district \N +1239 district \N +1240 district \N +1241 district \N +1242 district \N +1243 district \N +1244 district \N +1245 district \N +1246 district \N +1247 district \N +1248 district \N +1249 district \N +1250 district \N +1251 district \N +1252 district \N +1253 district \N +1254 district \N +1255 district \N +1256 district \N +1257 district \N +1258 district \N +1259 district \N +1260 district \N +1261 district \N +1262 district \N +1263 district \N +1264 district \N +1265 district \N +1266 district \N +1267 district \N +1268 district \N +1269 district \N +1270 district \N +1271 district \N +1272 district \N +1273 district \N +1274 district \N +1275 district \N +1276 district \N +1277 district \N +1278 district \N +1279 district \N +1280 district \N +1281 district \N +1282 district \N +1283 district \N +1284 district \N +1285 district \N +1286 district \N +1287 district \N +1288 district \N +1289 district \N +1290 district \N +1291 district \N +1292 district \N +1293 district \N +1294 district \N +1295 district \N +1296 district \N +1297 district \N +1298 district \N +1299 district \N +1300 district \N +1301 district \N +1302 district \N +1303 district \N +1304 district \N +1305 district \N +1306 district \N +1307 district \N +1308 district \N +1309 district \N +1310 district \N +1311 district \N +1312 district \N +1313 district \N +1314 district \N +1315 district \N +1316 district \N +1317 district \N +1318 district \N +1319 district \N +1320 district \N +1321 district \N +1322 district \N +1323 district \N +1324 district \N +1325 district \N +1326 district \N +1327 district \N +1328 district \N +1329 district \N +1330 district \N +1331 district \N +1332 district \N +1333 district \N +1334 district \N +1335 district \N +1336 district \N +1337 district \N +1338 district \N +1339 district \N +1340 district \N +1341 district \N +1342 district \N +1343 district \N +1344 district \N +1345 district \N +1346 district \N +1347 district \N +1348 district \N +1349 district \N +1350 district \N +1351 district \N +1352 district \N +1353 district \N +1354 district \N +1355 district \N +1356 district \N +1357 district \N +1358 district \N +1359 district \N +1360 district \N +1361 district \N +1362 district \N +1363 district \N +1364 district \N +1365 district \N +1366 district \N +1367 district \N +1368 district \N +1369 district \N +1370 district \N +1371 district \N +1372 district \N +1373 district \N +1374 district \N +1375 district \N +1376 district \N +1377 district \N +1378 district \N +1379 district \N +1380 district \N +1381 district \N +1382 district \N +1383 district \N +1384 district \N +1385 district \N +1386 district \N +1387 district \N +1388 district \N +1389 district \N +1390 district \N +1391 district \N +1392 district \N +1393 district \N +1394 district \N +1395 district \N +1396 district \N +1397 district \N +1398 district \N +1399 district \N +1400 district \N +1401 district \N +1402 district \N +1403 district \N +1404 district \N +1405 district \N +1406 district \N +1407 district \N +1408 district \N +1409 district \N +1410 district \N +1411 district \N +1412 district \N +1413 district \N +1414 district \N +1415 district \N +1416 district \N +1417 district \N +1418 district \N +1419 district \N +1420 district \N +1421 district \N +1422 district \N +1423 district \N +1424 district \N +1425 district \N +1426 district \N +1427 district \N +1428 district \N +1429 district \N +1430 district \N +1431 district \N +1432 district \N +1433 district \N +1434 district \N +1435 district \N +1436 district \N +1437 district \N +1438 district \N +1439 district \N +1440 district \N +1441 district \N +1442 district \N +1443 district \N +1444 district \N +1445 district \N +1446 district \N +1447 district \N +1448 district \N +1449 district \N +1450 district \N +1451 district \N +1452 district \N +1453 district \N +1454 district \N +1455 district \N +1456 district \N +1457 district \N +1458 district \N +1459 district \N +1460 district \N +1461 district \N +1462 district \N +1463 district \N +1464 district \N +1465 district \N +1466 district \N +1467 district \N +1468 district \N +1469 district \N +1470 district \N +1471 district \N +1472 district \N +1473 district \N +1474 district \N +1475 district \N +1476 district \N +1477 district \N +1478 district \N +1479 district \N +1480 district \N +1481 district \N +1482 district \N +1483 district \N +1484 district \N +1485 district \N +1486 district \N +1487 district \N +1488 district \N +1489 district \N +1490 district \N +1491 district \N +1492 district \N +1493 district \N +1494 district \N +1495 district \N +1496 district \N +1497 district \N +1498 district \N +1499 district \N +1500 district \N +1501 district \N +1502 district \N +1503 district \N +1504 district \N +1505 district \N +1506 district \N +1507 district \N +1508 district \N +1509 district \N +1510 district \N +1511 district \N +1512 district \N +1513 district \N +1514 district \N +1515 district \N +1516 district \N +1517 district \N +1518 district \N +1519 district \N +1520 district \N +1521 district \N +1522 district \N +1523 district \N +1524 district \N +1525 district \N +1526 district \N +1527 district \N +1528 district \N +1529 district \N +1530 district \N +1531 district \N +1532 district \N +1533 district \N +1534 district \N +1535 district \N +1536 district \N +1537 district \N +1538 district \N +1539 district \N +1540 district \N +1541 district \N +1542 district \N +1543 district \N +1544 district \N +1545 district \N +1546 district \N +1547 district \N +1548 district \N +1549 district \N +1550 district \N +1551 district \N +1552 district \N +1553 district \N +1554 district \N +1555 district \N +1556 district \N +1557 district \N +1558 district \N +1559 district \N +1560 district \N +1561 district \N +1562 district \N +1563 district \N +1564 district \N +1565 district \N +1566 district \N +1567 district \N +1568 district \N +1569 district \N +1570 district \N +1571 district \N +1572 district \N +1573 district \N +1574 district \N +1575 district \N +1576 district \N +1577 district \N +1578 district \N +1579 district \N +1580 district \N +1581 district \N +1582 district \N +1583 district \N +1584 district \N +1585 district \N +1586 district \N +1587 district \N +1588 district \N +1589 district \N +1590 district \N +1591 district \N +1592 district \N +1593 district \N +1594 district \N +1595 district \N +1596 district \N +1597 district \N +1598 district \N +1599 district \N +1600 district \N +1601 district \N +1602 district \N +1603 district \N +1604 district \N +1605 district \N +1606 district \N +1607 district \N +1608 district \N +1609 district \N +1610 district \N +1611 district \N +1612 district \N +1613 district \N +1614 district \N +1615 district \N +1616 district \N +1617 district \N +1618 district \N +1619 district \N +1620 district \N +1621 district \N +1622 district \N +1623 district \N +1624 district \N +1625 district \N +1626 district \N +1627 district \N +1628 district \N +1629 district \N +\. + + +-- +-- Data for Name: location_address; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.location_address (id, location_id, address_id) FROM stdin; +\. + + +-- +-- Data for Name: location_district; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.location_district (id, location_id, district_id) FROM stdin; +1 1 11 +2 2 11 +3 3 12 +4 4 13 +5 5 13 +6 6 13 +7 7 13 +8 8 14 +9 9 15 +10 10 13 +11 11 1 +12 12 1 +13 13 8 +14 14 8 +15 15 8 +16 16 3 +17 17 3 +18 18 3 +19 19 3 +20 20 16 +21 20 17 +22 21 11 +23 22 17 +24 23 3 +25 24 14 +26 25 3 +27 26 15 +28 27 11 +29 28 18 +30 29 18 +31 30 13 +32 30 14 +33 31 11 +34 32 13 +35 33 13 +36 33 11 +37 34 11 +38 35 11 +39 36 13 +40 37 13 +41 38 16 +42 39 12 +43 40 13 +44 41 13 +45 42 17 +46 43 17 +47 44 13 +48 45 15 +49 46 8 +50 47 8 +51 48 19 +52 48 17 +53 49 8 +54 50 17 +55 51 17 +56 52 17 +57 53 1 +58 54 20 +59 55 8 +60 56 11 +61 57 3 +62 58 15 +63 59 8 +64 60 12 +65 61 1 +66 62 3 +67 63 16 +68 64 1 +69 65 1 +70 66 3 +71 67 11 +72 68 11 +73 69 1 +74 70 16 +75 71 8 +76 72 21 +77 73 22 +78 74 11 +79 75 11 +80 76 11 +81 77 23 +82 78 15 +83 79 13 +84 80 8 +85 81 3 +86 82 3 +87 84 18 +88 85 11 +89 86 1 +90 87 5 +91 88 8 +92 89 8 +93 90 8 +94 91 14 +95 92 23 +96 93 13 +97 94 24 +98 95 24 +99 96 24 +100 97 25 +101 98 18 +102 99 11 +103 100 11 +104 101 26 +105 102 11 +106 103 8 +107 104 26 +108 105 26 +109 106 26 +110 107 26 +111 108 3 +112 109 3 +113 110 25 +114 111 13 +115 112 27 +116 113 27 +117 114 27 +118 115 27 +119 116 27 +120 117 25 +121 118 27 +122 119 11 +123 120 11 +124 121 8 +125 122 8 +126 123 14 +127 124 8 +128 125 14 +129 126 3 +130 126 28 +131 127 11 +132 128 15 +133 129 11 +134 130 5 +135 131 15 +136 132 15 +137 133 11 +138 134 26 +139 135 3 +140 136 3 +141 137 17 +142 138 3 +143 139 15 +144 140 15 +145 141 21 +146 142 11 +147 143 16 +148 144 23 +149 144 14 +150 145 23 +151 145 14 +152 146 23 +153 146 14 +154 147 14 +155 148 17 +156 149 1 +157 150 1 +158 151 25 +159 152 11 +160 153 29 +161 154 21 +162 155 16 +163 156 1 +164 157 1 +165 158 1 +166 159 1 +167 160 21 +168 161 13 +169 162 1 +170 163 1 +171 164 16 +172 165 23 +173 166 1 +174 167 8 +175 168 1 +176 169 1 +177 170 1 +178 171 8 +179 172 11 +180 173 13 +181 174 30 +182 175 3 +183 176 12 +184 177 1 +185 178 1 +186 179 1 +187 180 17 +188 181 15 +189 182 16 +190 183 26 +191 184 27 +192 185 21 +193 186 11 +194 187 11 +195 188 11 +196 189 27 +197 190 1 +198 191 17 +199 192 17 +200 193 11 +201 194 17 +202 195 31 +203 196 31 +204 197 32 +205 198 14 +206 199 14 +207 200 14 +208 201 3 +209 201 25 +210 202 11 +211 203 8 +212 204 14 +213 205 14 +214 206 1 +215 207 17 +216 208 33 +217 209 14 +218 210 13 +219 211 12 +220 212 11 +221 213 11 +222 214 15 +223 215 19 +224 216 12 +225 217 8 +226 218 8 +227 219 8 +228 220 8 +229 221 8 +230 222 11 +231 223 19 +232 224 11 +233 225 14 +234 226 5 +235 227 3 +236 227 25 +237 228 3 +238 228 25 +239 229 26 +240 230 26 +241 231 26 +242 232 26 +243 233 31 +244 234 8 +245 235 11 +246 236 8 +247 237 17 +248 238 12 +249 239 17 +250 240 8 +251 241 17 +252 242 30 +253 243 30 +254 244 30 +255 245 11 +256 246 23 +257 246 14 +258 247 26 +259 248 19 +260 249 1 +261 250 31 +262 250 26 +263 251 12 +264 252 12 +265 253 12 +266 254 8 +267 255 5 +268 256 26 +269 257 26 +270 258 34 +271 259 17 +272 260 17 +273 261 30 +274 262 11 +275 263 12 +276 264 14 +277 265 30 +278 266 11 +279 268 13 +280 268 15 +281 269 15 +282 269 22 +283 270 11 +284 271 11 +285 272 30 +286 272 16 +287 272 17 +288 273 21 +289 273 27 +290 274 8 +291 275 23 +292 276 11 +293 277 11 +294 278 25 +295 279 8 +296 280 15 +297 281 15 +298 282 8 +299 283 30 +300 284 30 +301 285 31 +302 286 3 +303 287 1 +304 288 15 +305 289 23 +306 289 14 +307 292 11 +308 293 17 +309 294 26 +310 296 30 +311 298 14 +312 301 8 +313 304 19 +314 305 16 +315 306 19 +316 307 21 +317 307 27 +318 308 12 +319 309 15 +320 310 8 +321 311 13 +322 312 31 +323 313 8 +324 314 5 +325 315 5 +326 316 22 +327 317 25 +328 318 11 +329 319 16 +330 319 17 +331 320 13 +332 321 15 +333 322 11 +334 323 1 +335 324 26 +336 325 14 +337 326 32 +338 327 25 +339 328 11 +340 329 11 +341 330 11 +342 331 11 +343 332 17 +344 333 19 +345 334 14 +346 336 1 +347 337 17 +348 338 23 +349 339 15 +350 340 17 +351 341 17 +352 342 19 +353 343 12 +354 344 1 +355 346 15 +356 347 17 +357 348 32 +358 349 21 +359 350 16 +360 351 12 +361 352 15 +362 353 15 +363 354 16 +364 355 15 +365 356 8 +366 357 19 +367 358 25 +368 359 25 +369 360 1 +370 360 8 +371 360 25 +372 360 16 +373 360 17 +374 361 32 +375 362 1 +376 363 11 +377 364 1 +378 366 11 +379 367 3 +380 369 16 +381 371 23 +382 371 14 +383 372 11 +384 373 23 +385 373 14 +386 374 1 +387 377 32 +388 379 1 +389 380 3 +390 381 3 +391 382 12 +392 383 21 +393 384 23 +394 385 23 +395 386 13 +396 387 26 +397 388 1 +398 389 11 +399 390 31 +400 391 31 +401 392 21 +402 393 11 +403 394 16 +404 395 1 +405 396 3 +406 397 21 +407 398 1 +408 399 5 +409 400 23 +410 401 31 +411 401 26 +412 402 1 +413 403 11 +414 404 14 +415 405 11 +416 406 30 +417 407 15 +418 408 19 +419 409 30 +420 410 14 +421 411 1 +422 412 12 +423 412 22 +424 413 21 +425 413 27 +426 414 21 +427 414 27 +428 415 21 +429 416 3 +430 417 3 +431 418 14 +432 419 30 +433 420 11 +434 421 30 +435 422 30 +436 423 14 +437 424 11 +438 425 30 +439 426 1 +440 427 15 +441 428 12 +442 428 22 +443 429 25 +444 430 25 +445 431 14 +446 432 3 +447 433 11 +448 434 14 +449 435 3 +450 436 16 +451 437 15 +452 438 1 +453 439 25 +454 440 27 +455 441 25 +456 442 18 +457 443 11 +458 444 21 +459 445 12 +460 446 17 +461 447 24 +462 448 31 +463 449 27 +464 450 27 +465 451 5 +466 452 11 +467 453 11 +468 454 27 +469 455 14 +470 456 26 +471 457 26 +472 458 5 +473 459 30 +474 460 16 +475 461 5 +476 462 14 +477 463 1 +478 464 30 +479 465 14 +480 466 21 +481 467 21 +482 468 1 +483 469 33 +484 470 26 +485 471 26 +486 472 19 +487 473 1 +488 474 21 +489 475 1 +490 476 11 +491 477 21 +492 478 8 +493 479 17 +494 480 17 +495 481 17 +496 482 3 +497 483 14 +498 484 33 +499 485 1 +500 486 21 +501 487 13 +502 488 11 +503 489 13 +504 490 13 +505 491 11 +506 492 3 +507 493 27 +508 494 15 +509 495 3 +510 496 21 +511 497 23 +512 498 11 +513 499 5 +514 500 1 +515 501 14 +516 502 3 +517 503 5 +518 504 33 +519 505 3 +520 506 17 +521 507 17 +522 508 3 +523 510 27 +524 511 11 +525 512 13 +526 513 30 +527 514 30 +528 515 15 +529 516 23 +530 516 14 +531 517 23 +532 517 14 +533 518 17 +534 519 16 +535 519 17 +536 520 11 +537 521 11 +538 522 17 +539 523 21 +540 524 8 +541 525 33 +542 526 11 +543 527 33 +544 528 23 +545 528 14 +546 529 11 +547 530 11 +548 531 15 +549 532 23 +550 533 33 +551 534 5 +552 535 8 +553 536 21 +554 537 25 +555 538 3 +556 538 25 +557 539 32 +558 540 5 +559 541 27 +560 542 26 +561 543 11 +562 544 1 +563 545 27 +564 546 8 +565 549 14 +566 550 8 +567 551 1 +568 552 18 +569 553 3 +570 554 3 +571 555 35 +572 556 5 +573 557 21 +574 558 21 +575 559 21 +576 560 21 +577 561 23 +578 561 14 +579 562 14 +580 563 16 +581 564 12 +582 565 1 +583 566 11 +584 567 12 +585 569 11 +586 570 15 +587 571 30 +588 572 30 +589 573 8 +590 574 33 +591 575 26 +592 576 21 +593 576 27 +594 577 8 +595 578 5 +596 579 8 +597 580 1 +598 581 30 +599 582 8 +600 583 11 +601 584 26 +602 585 8 +603 586 31 +604 587 14 +605 588 1 +606 589 17 +607 590 26 +608 591 11 +609 592 15 +610 593 11 +611 594 11 +612 595 5 +613 596 24 +614 597 17 +615 598 5 +616 599 3 +617 600 3 +618 601 17 +619 602 3 +620 603 21 +621 604 16 +622 605 5 +623 606 5 +624 607 1 +625 608 30 +626 609 3 +627 609 32 +628 610 3 +629 610 32 +630 611 14 +631 612 21 +632 613 26 +633 614 17 +634 615 21 +635 616 11 +636 617 21 +637 618 11 +638 619 11 +639 620 15 +640 621 1 +641 622 1 +642 623 3 +643 624 15 +644 625 14 +645 626 14 +646 627 14 +647 628 11 +648 629 15 +649 630 19 +650 631 11 +651 632 21 +652 633 14 +653 634 8 +654 635 23 +655 635 14 +656 636 30 +657 637 14 +658 638 14 +659 639 30 +660 640 16 +661 641 1 +662 642 21 +663 643 1 +664 644 11 +665 645 30 +666 646 1 +667 647 31 +668 648 1 +669 649 19 +670 650 3 +671 651 25 +672 652 25 +673 653 3 +674 654 27 +675 655 8 +676 656 8 +677 656 14 +678 657 8 +679 657 14 +680 658 5 +681 659 16 +682 660 21 +683 661 14 +684 662 1 +685 663 1 +686 664 1 +687 665 1 +688 666 16 +689 667 13 +690 668 21 +691 668 5 +692 669 12 +693 670 8 +694 671 16 +695 672 14 +696 673 15 +697 674 21 +698 675 30 +699 676 1 +700 677 16 +701 678 21 +702 678 5 +703 679 21 +704 680 21 +705 681 19 +706 682 8 +707 683 14 +708 684 11 +709 685 30 +710 686 33 +711 687 14 +712 688 15 +713 690 8 +714 691 16 +715 691 17 +716 692 16 +717 692 17 +718 693 17 +719 694 5 +720 695 8 +721 696 8 +722 697 8 +723 698 1 +724 699 15 +725 700 24 +726 702 30 +727 702 24 +728 702 3 +729 702 25 +730 702 33 +731 703 30 +732 704 17 +733 705 21 +734 706 1 +735 707 12 +736 708 8 +737 709 11 +738 710 31 +739 711 27 +740 712 27 +741 713 11 +742 714 19 +743 715 33 +744 716 8 +745 717 3 +746 718 14 +747 719 21 +748 720 21 +749 721 21 +750 722 17 +751 723 3 +752 724 3 +753 725 21 +754 726 12 +755 727 3 +756 728 21 +757 729 21 +758 730 21 +759 731 3 +760 731 25 +761 732 3 +762 733 3 +763 733 25 +764 734 15 +765 735 15 +766 736 1 +767 737 1 +768 738 8 +769 739 17 +770 740 12 +771 741 26 +772 742 26 +773 743 26 +774 744 31 +775 745 25 +776 747 1 +777 748 5 +778 749 25 +779 750 23 +780 752 1 +781 754 26 +782 755 8 +783 756 3 +784 757 3 +785 758 22 +786 759 21 +787 759 36 +788 760 21 +789 761 22 +790 762 22 +791 763 16 +792 763 17 +793 764 21 +794 765 8 +795 766 21 +796 766 27 +797 767 13 +798 767 15 +799 768 15 +800 769 13 +801 770 16 +802 771 19 +803 772 11 +804 773 11 +805 774 21 +806 774 27 +807 775 21 +808 776 11 +809 777 13 +810 777 15 +811 778 11 +812 779 13 +813 779 15 +814 780 11 +815 781 31 +816 781 26 +817 782 1 +818 783 1 +819 784 17 +820 785 13 +821 786 31 +822 787 30 +823 787 24 +824 787 8 +825 788 11 +826 790 30 +827 791 13 +828 791 15 +829 792 16 +830 793 3 +831 794 8 +832 797 21 +833 797 19 +834 797 30 +835 797 23 +836 797 11 +837 797 1 +838 797 24 +839 797 8 +840 797 3 +841 797 25 +842 797 16 +843 797 17 +844 797 14 +845 797 33 +846 797 32 +847 797 27 +848 798 8 +849 799 1 +850 799 16 +851 800 8 +852 801 1 +853 801 24 +854 801 33 +855 802 21 +856 802 19 +857 802 30 +858 802 1 +859 802 8 +860 802 25 +861 802 16 +862 802 5 +863 802 17 +864 802 27 +865 803 16 +866 803 17 +867 804 30 +868 804 1 +869 804 3 +870 804 25 +871 805 19 +872 805 1 +873 805 3 +874 805 25 +875 805 33 +876 806 21 +877 806 19 +878 806 13 +879 806 30 +880 806 23 +881 806 11 +882 806 15 +883 806 1 +884 806 24 +885 806 8 +886 806 3 +887 806 25 +888 806 12 +889 806 34 +890 806 16 +891 806 5 +892 806 31 +893 806 22 +894 806 17 +895 806 14 +896 806 33 +897 806 32 +898 806 27 +899 806 26 +900 807 19 +901 807 30 +902 807 1 +903 807 33 +904 808 30 +905 808 8 +906 808 16 +907 809 21 +908 809 19 +909 809 30 +910 809 11 +911 809 1 +912 809 24 +913 809 8 +914 809 3 +915 809 25 +916 809 16 +917 809 17 +918 809 14 +919 809 33 +920 809 32 +921 809 27 +922 810 19 +923 810 30 +924 810 1 +925 810 8 +926 810 14 +927 811 21 +928 811 19 +929 811 30 +930 811 1 +931 811 24 +932 811 25 +933 811 31 +934 811 33 +935 811 27 +936 811 26 +937 812 19 +938 812 30 +939 812 11 +940 812 1 +941 812 8 +942 813 23 +943 813 11 +944 813 1 +945 813 8 +946 813 3 +947 813 14 +948 813 33 +949 813 32 +950 814 19 +951 814 11 +952 814 1 +953 815 19 +954 815 30 +955 815 1 +956 815 24 +957 815 3 +958 815 25 +959 815 33 +960 815 32 +961 816 8 +962 816 14 +963 817 19 +964 817 30 +965 817 23 +966 817 11 +967 817 1 +968 817 8 +969 817 25 +970 817 17 +971 817 14 +972 818 19 +973 818 30 +974 818 1 +975 818 16 +976 818 17 +977 819 21 +978 819 19 +979 819 30 +980 819 1 +981 819 24 +982 819 8 +983 819 16 +984 819 5 +985 819 31 +986 819 17 +987 819 33 +988 819 27 +989 820 19 +990 820 30 +991 820 1 +992 820 8 +993 820 25 +994 821 19 +995 821 30 +996 821 1 +997 821 25 +998 822 30 +999 822 8 +1000 822 17 +1001 823 19 +1002 823 30 +1003 823 1 +1004 823 8 +1005 823 16 +1006 823 17 +1007 823 14 +1008 824 19 +1009 824 30 +1010 824 1 +1011 824 25 +1012 825 1 +1013 825 3 +1014 825 25 +1015 826 21 +1016 826 30 +1017 826 1 +1018 826 8 +1019 826 16 +1020 826 31 +1021 826 17 +1022 826 26 +1023 827 21 +1024 827 19 +1025 827 13 +1026 827 30 +1027 827 23 +1028 827 11 +1029 827 15 +1030 827 1 +1031 827 24 +1032 827 8 +1033 827 3 +1034 827 25 +1035 827 12 +1036 827 34 +1037 827 16 +1038 827 5 +1039 827 31 +1040 827 22 +1041 827 17 +1042 827 14 +1043 827 33 +1044 827 32 +1045 827 27 +1046 827 26 +1047 828 21 +1048 828 19 +1049 828 13 +1050 828 30 +1051 828 11 +1052 828 15 +1053 828 1 +1054 828 25 +1055 828 16 +1056 828 32 +1057 829 21 +1058 829 15 +1059 829 1 +1060 829 3 +1061 829 5 +1062 829 33 +1063 830 19 +1064 830 11 +1065 830 8 +1066 830 34 +1067 830 17 +1068 830 14 +1069 831 1 +1070 831 8 +1071 832 19 +1072 832 1 +1073 832 3 +1074 832 25 +1075 832 32 +1076 833 19 +1077 833 30 +1078 834 19 +1079 834 30 +1080 834 1 +1081 834 24 +1082 834 3 +1083 834 25 +1084 835 13 +1085 835 11 +1086 835 15 +1087 836 30 +1088 836 8 +1089 836 17 +1090 837 21 +1091 837 19 +1092 837 30 +1093 837 1 +1094 837 24 +1095 837 3 +1096 837 25 +1097 837 33 +1098 837 32 +1099 837 27 +1100 838 19 +1101 838 30 +1102 838 11 +1103 838 1 +1104 838 25 +1105 839 1 +1106 839 3 +1107 839 25 +1108 839 32 +1109 840 19 +1110 840 30 +1111 840 8 +1112 840 16 +1113 841 21 +1114 841 19 +1115 841 30 +1116 841 11 +1117 841 1 +1118 841 24 +1119 841 8 +1120 841 3 +1121 841 25 +1122 841 12 +1123 841 16 +1124 841 5 +1125 841 31 +1126 841 17 +1127 841 33 +1128 841 32 +1129 841 27 +1130 841 26 +1131 842 19 +1132 842 30 +1133 842 11 +1134 842 8 +1135 842 25 +1136 842 33 +1137 843 21 +1138 843 19 +1139 843 30 +1140 843 1 +1141 843 24 +1142 843 3 +1143 843 25 +1144 843 12 +1145 843 5 +1146 843 31 +1147 843 22 +1148 843 33 +1149 843 32 +1150 843 27 +1151 844 21 +1152 844 19 +1153 844 13 +1154 844 30 +1155 844 23 +1156 844 11 +1157 844 15 +1158 844 1 +1159 844 24 +1160 844 8 +1161 844 3 +1162 844 25 +1163 844 12 +1164 844 34 +1165 844 16 +1166 844 5 +1167 844 31 +1168 844 22 +1169 844 17 +1170 844 14 +1171 844 33 +1172 844 32 +1173 844 27 +1174 844 26 +1175 845 19 +1176 845 30 +1177 845 8 +1178 845 25 +1179 845 17 +1180 845 14 +1181 846 19 +1182 846 30 +1183 846 1 +1184 846 8 +1185 846 3 +1186 846 25 +1187 846 16 +1188 846 17 +1189 847 1 +1190 847 3 +1191 847 25 +1192 847 33 +1193 848 19 +1194 848 30 +1195 848 1 +1196 848 24 +1197 848 8 +1198 848 3 +1199 848 25 +1200 848 33 +1201 848 32 +1202 849 30 +1203 849 1 +1204 850 21 +1205 850 19 +1206 850 13 +1207 850 30 +1208 850 23 +1209 850 11 +1210 850 15 +1211 850 1 +1212 850 24 +1213 850 8 +1214 850 3 +1215 850 25 +1216 850 12 +1217 850 34 +1218 850 16 +1219 850 5 +1220 850 31 +1221 850 22 +1222 850 17 +1223 850 14 +1224 850 33 +1225 850 32 +1226 850 27 +1227 850 26 +1228 851 19 +1229 851 1 +1230 851 24 +1231 851 5 +1232 851 31 +1233 851 22 +1234 851 17 +1235 851 33 +1236 851 26 +1237 852 19 +1238 852 30 +1239 852 8 +1240 852 3 +1241 852 17 +1242 852 33 +1243 852 27 +1244 853 21 +1245 853 13 +1246 853 11 +1247 853 1 +1248 853 24 +1249 853 3 +1250 853 25 +1251 853 16 +1252 853 33 +1253 854 21 +1254 854 19 +1255 854 30 +1256 854 8 +1257 854 3 +1258 854 25 +1259 854 16 +1260 854 17 +1261 854 14 +1262 854 33 +1263 854 32 +1264 855 1 +1265 855 24 +1266 855 12 +1267 855 33 +1268 856 30 +1269 856 1 +1270 856 8 +1271 857 1 +1272 857 3 +1273 857 25 +1274 857 33 +1275 858 1 +1276 859 21 +1277 859 30 +1278 859 24 +1279 859 16 +1280 860 21 +1281 860 19 +1282 860 30 +1283 860 1 +1284 860 24 +1285 860 17 +1286 861 14 +1287 862 21 +1288 862 19 +1289 862 13 +1290 862 30 +1291 862 23 +1292 862 11 +1293 862 15 +1294 862 1 +1295 862 24 +1296 862 8 +1297 862 3 +1298 862 25 +1299 862 12 +1300 862 34 +1301 862 16 +1302 862 5 +1303 862 31 +1304 862 22 +1305 862 17 +1306 862 14 +1307 862 33 +1308 862 32 +1309 862 27 +1310 862 26 +1311 863 21 +1312 863 1 +1313 863 24 +1314 863 16 +1315 863 31 +1316 863 17 +1317 863 33 +1318 863 27 +1319 864 21 +1320 864 19 +1321 864 13 +1322 864 30 +1323 864 23 +1324 864 11 +1325 864 15 +1326 864 1 +1327 864 24 +1328 864 8 +1329 864 3 +1330 864 25 +1331 864 12 +1332 864 34 +1333 864 16 +1334 864 5 +1335 864 31 +1336 864 22 +1337 864 17 +1338 864 14 +1339 864 33 +1340 864 32 +1341 864 27 +1342 864 26 +1343 865 1 +1344 865 3 +1345 865 25 +1346 865 33 +1347 865 32 +1348 866 8 +1349 866 16 +1350 866 17 +1351 867 21 +1352 867 12 +1353 867 5 +1354 867 31 +1355 867 22 +1356 868 14 +1357 869 11 +1358 869 15 +1359 869 3 +1360 869 25 +1361 870 19 +1362 870 1 +1363 870 16 +1364 870 17 +1365 871 21 +1366 871 19 +1367 871 30 +1368 871 1 +1369 871 24 +1370 871 25 +1371 871 16 +1372 871 33 +1373 871 27 +1374 872 21 +1375 872 19 +1376 872 13 +1377 872 30 +1378 872 23 +1379 872 11 +1380 872 15 +1381 872 1 +1382 872 24 +1383 872 8 +1384 872 3 +1385 872 25 +1386 872 12 +1387 872 34 +1388 872 16 +1389 872 5 +1390 872 31 +1391 872 22 +1392 872 17 +1393 872 14 +1394 872 33 +1395 872 32 +1396 872 27 +1397 872 26 +1398 873 21 +1399 873 30 +1400 873 15 +1401 873 1 +1402 873 3 +1403 873 16 +1404 873 32 +1405 874 19 +1406 874 30 +1407 874 1 +1408 874 3 +1409 874 25 +1410 874 33 +1411 874 32 +1412 875 30 +1413 875 1 +1414 875 16 +1415 875 33 +1416 876 21 +1417 876 19 +1418 876 30 +1419 876 1 +1420 876 24 +1421 876 8 +1422 876 16 +1423 876 5 +1424 876 31 +1425 876 17 +1426 876 33 +1427 876 27 +1428 876 26 +1429 877 30 +1430 877 8 +1431 878 19 +1432 878 30 +1433 878 1 +1434 878 24 +1435 878 12 +1436 878 22 +1437 878 33 +1438 879 19 +1439 879 30 +1440 879 11 +1441 879 1 +1442 879 8 +1443 879 17 +1444 880 19 +1445 880 30 +1446 880 11 +1447 880 1 +1448 880 25 +1449 880 14 +1450 881 19 +1451 881 30 +1452 881 1 +1453 881 25 +1454 881 16 +1455 882 8 +1456 882 16 +1457 882 31 +1458 882 17 +1459 883 21 +1460 883 19 +1461 883 13 +1462 883 30 +1463 883 23 +1464 883 11 +1465 883 15 +1466 883 1 +1467 883 24 +1468 883 8 +1469 883 3 +1470 883 25 +1471 883 12 +1472 883 34 +1473 883 16 +1474 883 5 +1475 883 31 +1476 883 22 +1477 883 17 +1478 883 14 +1479 883 33 +1480 883 32 +1481 883 27 +1482 883 26 +1483 886 1 +1484 887 30 +1485 887 1 +1486 887 24 +1487 887 25 +1488 887 33 +1489 888 19 +1490 888 1 +1491 888 25 +1492 889 11 +1493 889 3 +1494 889 25 +1495 889 32 +1496 890 3 +1497 890 25 +1498 891 30 +1499 891 1 +1500 891 8 +1501 891 16 +1502 891 17 +1503 892 19 +1504 892 30 +1505 892 14 +1506 893 21 +1507 893 19 +1508 893 30 +1509 893 1 +1510 893 16 +1511 893 17 +1512 893 27 +1513 894 21 +1514 894 19 +1515 894 13 +1516 894 30 +1517 894 23 +1518 894 11 +1519 894 15 +1520 894 1 +1521 894 24 +1522 894 8 +1523 894 3 +1524 894 25 +1525 894 16 +1526 894 5 +1527 894 31 +1528 894 17 +1529 894 14 +1530 894 33 +1531 894 32 +1532 894 27 +1533 894 26 +1534 895 21 +1535 895 19 +1536 895 13 +1537 895 30 +1538 895 23 +1539 895 11 +1540 895 15 +1541 895 1 +1542 895 24 +1543 895 8 +1544 895 3 +1545 895 25 +1546 895 12 +1547 895 34 +1548 895 16 +1549 895 5 +1550 895 31 +1551 895 22 +1552 895 17 +1553 895 14 +1554 895 33 +1555 895 32 +1556 895 27 +1557 895 26 +1558 896 1 +1559 896 24 +1560 896 3 +1561 896 25 +1562 896 31 +1563 896 33 +1564 896 32 +1565 897 8 +1566 897 17 +1567 898 30 +1568 898 1 +1569 898 24 +1570 898 3 +1571 898 25 +1572 898 33 +1573 899 30 +1574 899 8 +1575 900 37 +1576 901 17 +1577 902 1 +1578 902 8 +1579 903 21 +1580 903 19 +1581 903 30 +1582 903 1 +1583 903 24 +1584 903 8 +1585 903 25 +1586 903 34 +1587 903 16 +1588 903 5 +1589 903 17 +1590 903 33 +1591 904 30 +1592 904 8 +1593 904 14 +1594 905 21 +1595 905 19 +1596 905 13 +1597 905 30 +1598 905 23 +1599 905 11 +1600 905 15 +1601 905 8 +1602 905 3 +1603 905 25 +1604 905 12 +1605 905 34 +1606 905 16 +1607 905 5 +1608 905 31 +1609 905 22 +1610 905 17 +1611 905 14 +1612 905 33 +1613 905 32 +1614 905 27 +1615 905 26 +1616 906 1 +1617 906 16 +1618 906 31 +1619 906 26 +1620 907 38 +1621 908 19 +1622 908 30 +1623 908 11 +1624 908 1 +1625 908 8 +1626 908 3 +1627 908 25 +1628 909 21 +1629 909 1 +1630 909 38 +1631 909 16 +1632 909 5 +1633 909 22 +1634 909 33 +1635 909 27 +1636 910 30 +1637 910 1 +1638 910 8 +1639 911 19 +1640 911 30 +1641 911 1 +1642 911 8 +1643 911 25 +1644 911 16 +1645 911 17 +1646 912 25 +1647 913 34 +1648 913 14 +1649 914 19 +1650 914 30 +1651 914 11 +1652 914 1 +1653 914 14 +1654 915 19 +1655 915 30 +1656 915 1 +1657 915 25 +1658 916 16 +1659 917 19 +1660 917 11 +1661 917 1 +1662 917 25 +1663 918 15 +1664 919 30 +1665 919 8 +1666 919 38 +1667 919 16 +1668 919 17 +1669 920 21 +1670 920 19 +1671 920 30 +1672 920 1 +1673 920 24 +1674 920 8 +1675 920 3 +1676 920 25 +1677 920 12 +1678 920 33 +1679 920 32 +1680 921 11 +1681 921 17 +1682 922 30 +1683 923 30 +1684 923 1 +1685 923 36 +1686 923 16 +1687 923 17 +1688 924 21 +1689 925 36 +1690 926 19 +1691 926 1 +1692 926 24 +1693 926 3 +1694 926 25 +1695 926 36 +1696 926 33 +1697 926 32 +1698 927 11 +1699 928 17 +1700 929 30 +1701 929 1 +1702 929 8 +1703 929 16 +1704 930 19 +1705 930 30 +1706 930 1 +1707 930 25 +1708 930 36 +1709 930 33 +1710 931 30 +1711 931 1 +1712 931 16 +1713 931 31 +1714 931 17 +1715 931 26 +1716 932 21 +1717 932 17 +1718 932 27 +1719 933 19 +1720 933 13 +1721 933 30 +1722 933 11 +1723 933 1 +1724 933 8 +1725 933 25 +1726 933 33 +1727 933 32 +1728 934 23 +1729 934 8 +1730 934 34 +1731 934 14 +1732 935 36 +1733 936 19 +1734 936 30 +1735 936 1 +1736 936 8 +1737 936 14 +1738 937 21 +1739 937 30 +1740 937 1 +1741 937 12 +1742 937 5 +1743 938 19 +1744 939 19 +1745 939 30 +1746 939 1 +1747 939 8 +1748 939 25 +1749 939 36 +1750 939 16 +1751 939 14 +1752 940 19 +1753 940 11 +1754 940 3 +1755 940 25 +1756 940 36 +1757 940 33 +1758 940 32 +1759 941 1 +1760 941 24 +1761 941 8 +1762 941 36 +1763 941 33 +1764 942 30 +1765 942 8 +1766 942 36 +1767 942 16 +1768 942 31 +1769 942 26 +1770 943 16 +1771 943 31 +1772 943 17 +1773 943 27 +1774 943 26 +1775 944 30 +1776 944 36 +1777 944 16 +1778 945 21 +1779 945 36 +1780 945 16 +1781 945 27 +1782 946 19 +1783 946 30 +1784 946 1 +1785 946 8 +1786 946 33 +1787 947 21 +1788 947 1 +1789 947 8 +1790 947 16 +1791 947 31 +1792 947 17 +1793 948 21 +1794 948 19 +1795 948 30 +1796 948 1 +1797 948 8 +1798 948 25 +1799 948 16 +1800 948 17 +1801 949 21 +1802 949 16 +1803 949 27 +1804 950 8 +1805 950 14 +1806 951 8 +1807 951 36 +1808 951 16 +1809 951 17 +1810 952 19 +1811 952 30 +1812 952 1 +1813 952 8 +1814 952 36 +1815 953 5 +1816 954 21 +1817 954 19 +1818 954 30 +1819 954 23 +1820 954 11 +1821 954 1 +1822 954 24 +1823 954 8 +1824 954 25 +1825 954 12 +1826 955 30 +1827 955 1 +1828 955 8 +1829 955 25 +1830 955 33 +1831 956 36 +1832 956 31 +1833 957 21 +1834 957 19 +1835 957 1 +1836 957 16 +1837 957 31 +1838 957 22 +1839 957 27 +1840 957 26 +1841 958 21 +1842 958 1 +1843 958 36 +1844 958 16 +1845 958 31 +1846 958 27 +1847 958 26 +1848 959 8 +1849 960 21 +1850 960 1 +1851 960 24 +1852 960 36 +1853 960 31 +1854 960 33 +1855 960 27 +1856 961 1 +1857 961 3 +1858 961 25 +1859 961 33 +1860 962 19 +1861 962 13 +1862 962 30 +1863 962 23 +1864 962 11 +1865 962 15 +1866 962 1 +1867 962 24 +1868 962 8 +1869 962 3 +1870 962 25 +1871 962 16 +1872 962 17 +1873 962 14 +1874 962 33 +1875 963 21 +1876 963 19 +1877 963 30 +1878 963 23 +1879 963 11 +1880 963 10 +1881 963 1 +1882 963 24 +1883 963 8 +1884 963 3 +1885 963 25 +1886 963 16 +1887 963 5 +1888 963 31 +1889 963 22 +1890 963 39 +1891 963 17 +1892 963 14 +1893 963 33 +1894 963 27 +1895 963 26 +1896 964 21 +1897 964 19 +1898 964 30 +1899 964 23 +1900 964 11 +1901 964 10 +1902 964 24 +1903 964 8 +1904 964 3 +1905 964 25 +1906 964 12 +1907 964 34 +1908 964 16 +1909 964 5 +1910 964 31 +1911 964 22 +1912 964 39 +1913 964 17 +1914 964 14 +1915 964 33 +1916 964 32 +1917 964 27 +1918 964 26 +1919 965 1 +1920 965 3 +1921 965 25 +1922 966 36 +1923 967 23 +1924 967 36 +1925 967 34 +1926 967 14 +1927 968 30 +1928 968 8 +1929 968 17 +1930 969 36 +1931 970 21 +1932 970 19 +1933 970 13 +1934 970 30 +1935 970 23 +1936 970 11 +1937 970 15 +1938 970 1 +1939 970 24 +1940 970 8 +1941 970 3 +1942 970 25 +1943 970 12 +1944 970 34 +1945 970 16 +1946 970 5 +1947 970 31 +1948 970 22 +1949 970 17 +1950 970 14 +1951 970 33 +1952 970 32 +1953 970 27 +1954 970 26 +1955 971 21 +1956 971 19 +1957 971 30 +1958 971 11 +1959 971 1 +1960 971 24 +1961 971 8 +1962 971 3 +1963 971 25 +1964 971 12 +1965 971 16 +1966 971 31 +1967 971 22 +1968 971 17 +1969 971 33 +1970 971 27 +1971 972 19 +1972 972 30 +1973 972 1 +1974 972 8 +1975 972 16 +1976 973 1 +1977 973 24 +1978 973 3 +1979 973 25 +1980 974 8 +1981 975 21 +1982 975 30 +1983 975 1 +1984 975 8 +1985 975 25 +1986 975 16 +1987 975 17 +1988 976 21 +1989 976 30 +1990 976 1 +1991 976 25 +1992 976 33 +1993 980 23 +1994 980 34 +1995 980 16 +1996 980 17 +1997 980 14 +1998 980 27 +1999 981 30 +2000 981 1 +2001 981 8 +2002 981 36 +2003 982 26 +2004 983 19 +2005 983 30 +2006 983 1 +2007 983 8 +2008 983 16 +2009 983 17 +2010 984 19 +2011 984 30 +2012 984 10 +2013 984 1 +2014 984 24 +2015 984 34 +2016 985 21 +2017 985 16 +2018 985 31 +2019 985 17 +2020 985 27 +2021 985 26 +2022 986 30 +2023 986 1 +2024 986 8 +2025 986 25 +2026 987 31 +2027 987 17 +2028 987 26 +2029 988 21 +2030 988 19 +2031 988 30 +2032 988 1 +2033 988 24 +2034 988 8 +2035 988 3 +2036 988 25 +2037 988 16 +2038 988 17 +2039 988 33 +2040 989 21 +2041 989 19 +2042 989 13 +2043 989 30 +2044 989 23 +2045 989 11 +2046 989 15 +2047 989 1 +2048 989 24 +2049 989 8 +2050 989 3 +2051 989 25 +2052 989 12 +2053 989 36 +2054 989 34 +2055 989 16 +2056 989 5 +2057 989 31 +2058 989 22 +2059 989 17 +2060 989 14 +2061 989 33 +2062 989 32 +2063 989 27 +2064 989 26 +2065 990 21 +2066 990 19 +2067 990 30 +2068 990 8 +2069 990 34 +2070 990 16 +2071 990 31 +2072 990 17 +2073 990 14 +2074 990 27 +2075 991 21 +2076 991 19 +2077 991 13 +2078 991 30 +2079 991 23 +2080 991 11 +2081 991 15 +2082 991 1 +2083 991 24 +2084 991 8 +2085 991 3 +2086 991 25 +2087 991 12 +2088 991 36 +2089 991 34 +2090 991 16 +2091 991 5 +2092 991 31 +2093 991 22 +2094 991 17 +2095 991 14 +2096 991 33 +2097 991 32 +2098 991 27 +2099 991 26 +2100 992 19 +2101 992 11 +2102 992 1 +2103 992 3 +2104 992 25 +2105 992 36 +2106 993 8 +2107 994 21 +2108 994 16 +2109 994 31 +2110 994 17 +2111 994 27 +2112 994 26 +2113 995 1 +2114 995 31 +2115 995 17 +2116 996 8 +2117 996 14 +2118 997 21 +2119 997 30 +2120 997 5 +2121 997 31 +2122 997 17 +2123 997 27 +2124 997 26 +2125 998 19 +2126 998 30 +2127 998 25 +2128 998 16 +2129 998 5 +2130 998 17 +2131 999 21 +2132 999 19 +2133 999 30 +2134 999 24 +2135 999 3 +2136 999 32 +2137 1000 21 +2138 1000 27 +2139 1001 19 +2140 1001 30 +2141 1001 11 +2142 1001 15 +2143 1001 8 +2144 1001 14 +2145 1002 1 +2146 1002 24 +2147 1002 16 +2148 1002 33 +2149 1003 30 +2150 1003 8 +2151 1003 36 +2152 1004 36 +2153 1004 5 +2154 1005 19 +2155 1005 30 +2156 1005 1 +2157 1005 8 +2158 1005 16 +2159 1005 17 +2160 1006 19 +2161 1006 30 +2162 1006 11 +2163 1006 1 +2164 1006 8 +2165 1006 3 +2166 1006 25 +2167 1006 36 +2168 1006 33 +2169 1006 32 +2170 1007 19 +2171 1007 30 +2172 1007 11 +2173 1007 1 +2174 1007 36 +2175 1008 19 +2176 1008 30 +2177 1008 8 +2178 1008 25 +2179 1008 17 +2180 1008 14 +2181 1008 33 +2182 1009 21 +2183 1009 30 +2184 1009 1 +2185 1009 8 +2186 1009 3 +2187 1009 34 +2188 1009 16 +2189 1009 5 +2190 1009 17 +2191 1009 14 +2192 1009 33 +2193 1009 26 +2194 1010 21 +2195 1010 19 +2196 1010 30 +2197 1010 1 +2198 1010 24 +2199 1010 8 +2200 1010 3 +2201 1010 25 +2202 1010 12 +2203 1010 36 +2204 1010 16 +2205 1010 5 +2206 1010 22 +2207 1010 33 +2208 1010 32 +2209 1010 27 +2210 1011 1 +2211 1012 21 +2212 1012 19 +2213 1012 30 +2214 1012 24 +2215 1012 25 +2216 1012 36 +2217 1012 16 +2218 1012 5 +2219 1012 31 +2220 1012 32 +2221 1012 27 +2222 1012 26 +2223 1013 27 +2224 1014 30 +2225 1014 1 +2226 1014 8 +2227 1015 19 +2228 1015 30 +2229 1016 19 +2230 1016 1 +2231 1016 25 +2232 1017 19 +2233 1017 30 +2234 1017 1 +2235 1017 8 +2236 1017 25 +2237 1018 19 +2238 1018 30 +2239 1018 23 +2240 1018 8 +2241 1018 14 +2242 1019 19 +2243 1019 11 +2244 1019 1 +2245 1019 8 +2246 1019 3 +2247 1019 25 +2248 1019 33 +2249 1019 32 +2250 1020 1 +2251 1020 24 +2252 1020 3 +2253 1020 25 +2254 1020 12 +2255 1020 36 +2256 1020 22 +2257 1020 33 +2258 1020 32 +2259 1021 23 +2260 1021 1 +2261 1021 14 +2262 1022 19 +2263 1022 30 +2264 1022 1 +2265 1022 36 +2266 1023 21 +2267 1023 19 +2268 1023 30 +2269 1023 23 +2270 1023 11 +2271 1023 10 +2272 1023 1 +2273 1023 24 +2274 1023 8 +2275 1023 3 +2276 1023 25 +2277 1023 12 +2278 1023 34 +2279 1023 16 +2280 1023 5 +2281 1023 31 +2282 1023 22 +2283 1023 17 +2284 1023 14 +2285 1023 33 +2286 1023 32 +2287 1023 27 +2288 1023 26 +2289 1024 16 +2290 1025 21 +2291 1025 19 +2292 1025 13 +2293 1025 30 +2294 1025 23 +2295 1025 11 +2296 1025 15 +2297 1025 1 +2298 1025 24 +2299 1025 8 +2300 1025 3 +2301 1025 25 +2302 1025 12 +2303 1025 34 +2304 1025 16 +2305 1025 5 +2306 1025 31 +2307 1025 22 +2308 1025 17 +2309 1025 14 +2310 1025 33 +2311 1025 32 +2312 1025 27 +2313 1025 26 +2314 1026 30 +2315 1026 8 +2316 1026 16 +2317 1026 17 +2318 1027 11 +2319 1028 21 +2320 1028 1 +2321 1028 36 +2322 1028 16 +2323 1028 33 +2324 1028 27 +2325 1029 21 +2326 1029 30 +2327 1029 8 +2328 1029 36 +2329 1029 34 +2330 1029 17 +2331 1030 21 +2332 1030 30 +2333 1030 16 +2334 1030 31 +2335 1030 39 +2336 1030 17 +2337 1030 27 +2338 1030 26 +2339 1031 21 +2340 1031 19 +2341 1031 13 +2342 1031 30 +2343 1031 23 +2344 1031 11 +2345 1031 15 +2346 1031 24 +2347 1031 8 +2348 1031 3 +2349 1031 25 +2350 1031 12 +2351 1031 34 +2352 1031 16 +2353 1031 5 +2354 1031 31 +2355 1031 22 +2356 1031 17 +2357 1031 14 +2358 1031 33 +2359 1031 32 +2360 1031 27 +2361 1031 26 +2362 1032 21 +2363 1032 19 +2364 1032 13 +2365 1032 30 +2366 1032 23 +2367 1032 11 +2368 1032 15 +2369 1032 1 +2370 1032 24 +2371 1032 8 +2372 1032 3 +2373 1032 25 +2374 1032 12 +2375 1032 36 +2376 1032 34 +2377 1032 16 +2378 1032 5 +2379 1032 31 +2380 1032 22 +2381 1032 17 +2382 1032 14 +2383 1032 33 +2384 1032 32 +2385 1032 27 +2386 1032 26 +2387 1033 21 +2388 1033 24 +2389 1033 12 +2390 1033 5 +2391 1033 22 +2392 1033 33 +2393 1033 27 +2394 1034 19 +2395 1034 30 +2396 1034 11 +2397 1034 1 +2398 1034 8 +2399 1034 25 +2400 1035 1 +2401 1035 24 +2402 1035 33 +2403 1036 30 +2404 1036 1 +2405 1036 8 +2406 1036 16 +2407 1036 31 +2408 1036 17 +2409 1037 30 +2410 1037 8 +2411 1037 16 +2412 1037 17 +2413 1038 1 +2414 1038 3 +2415 1038 25 +2416 1039 1 +2417 1039 3 +2418 1039 25 +2419 1039 33 +2420 1039 32 +2421 1040 31 +2422 1041 5 +2423 1042 30 +2424 1042 1 +2425 1042 25 +2426 1043 16 +2427 1043 31 +2428 1043 26 +2429 1044 30 +2430 1044 1 +2431 1044 16 +2432 1044 31 +2433 1044 17 +2434 1044 26 +2435 1045 19 +2436 1045 30 +2437 1045 11 +2438 1045 1 +2439 1045 8 +2440 1045 17 +2441 1045 14 +2442 1046 21 +2443 1046 19 +2444 1046 30 +2445 1046 1 +2446 1046 24 +2447 1046 8 +2448 1046 3 +2449 1046 25 +2450 1046 16 +2451 1046 5 +2452 1046 31 +2453 1046 17 +2454 1046 33 +2455 1046 32 +2456 1046 27 +2457 1046 26 +2458 1047 19 +2459 1047 30 +2460 1047 23 +2461 1047 1 +2462 1047 8 +2463 1047 25 +2464 1047 17 +2465 1047 14 +2466 1048 1 +2467 1048 24 +2468 1048 3 +2469 1048 33 +2470 1049 19 +2471 1049 11 +2472 1049 15 +2473 1049 8 +2474 1049 36 +2475 1049 14 +2476 1050 19 +2477 1050 11 +2478 1050 15 +2479 1050 8 +2480 1050 14 +2481 1051 21 +2482 1051 24 +2483 1051 16 +2484 1052 37 +2485 1052 30 +2486 1052 1 +2487 1052 25 +2488 1053 1 +2489 1053 24 +2490 1053 3 +2491 1053 12 +2492 1053 33 +2493 1054 19 +2494 1054 30 +2495 1054 11 +2496 1054 8 +2497 1054 25 +2498 1055 19 +2499 1055 30 +2500 1055 11 +2501 1055 8 +2502 1055 25 +2503 1055 36 +2504 1055 17 +2505 1056 23 +2506 1056 11 +2507 1056 14 +2508 1057 23 +2509 1057 11 +2510 1057 14 +2511 1058 21 +2512 1058 19 +2513 1058 30 +2514 1058 1 +2515 1058 24 +2516 1058 8 +2517 1058 25 +2518 1058 17 +2519 1058 14 +2520 1058 33 +2521 1059 19 +2522 1059 30 +2523 1059 1 +2524 1059 24 +2525 1059 8 +2526 1059 36 +2527 1060 19 +2528 1060 30 +2529 1060 23 +2530 1060 11 +2531 1060 8 +2532 1060 34 +2533 1060 17 +2534 1060 14 +2535 1061 19 +2536 1061 13 +2537 1061 11 +2538 1061 15 +2539 1061 1 +2540 1061 36 +2541 1062 16 +2542 1062 31 +2543 1062 26 +2544 1063 21 +2545 1063 1 +2546 1063 3 +2547 1063 25 +2548 1063 27 +2549 1064 21 +2550 1064 30 +2551 1064 23 +2552 1064 11 +2553 1064 1 +2554 1064 24 +2555 1064 8 +2556 1064 25 +2557 1064 12 +2558 1064 34 +2559 1064 16 +2560 1064 5 +2561 1064 31 +2562 1064 22 +2563 1064 39 +2564 1064 17 +2565 1064 14 +2566 1064 33 +2567 1064 32 +2568 1064 27 +2569 1065 30 +2570 1066 19 +2571 1066 30 +2572 1066 23 +2573 1066 1 +2574 1066 8 +2575 1066 3 +2576 1066 25 +2577 1066 16 +2578 1066 17 +2579 1066 14 +2580 1067 1 +2581 1067 3 +2582 1067 25 +2583 1068 30 +2584 1068 8 +2585 1068 17 +2586 1069 19 +2587 1069 30 +2588 1069 1 +2589 1069 24 +2590 1069 8 +2591 1069 25 +2592 1069 16 +2593 1069 31 +2594 1069 17 +2595 1069 33 +2596 1069 32 +2597 1069 27 +2598 1070 21 +2599 1070 19 +2600 1070 30 +2601 1070 23 +2602 1070 1 +2603 1070 24 +2604 1070 8 +2605 1070 36 +2606 1070 17 +2607 1070 14 +2608 1071 19 +2609 1071 30 +2610 1071 11 +2611 1071 15 +2612 1071 1 +2613 1071 24 +2614 1071 8 +2615 1071 3 +2616 1071 25 +2617 1071 12 +2618 1071 17 +2619 1071 14 +2620 1071 33 +2621 1071 32 +2622 1072 8 +2623 1072 34 +2624 1072 17 +2625 1073 19 +2626 1073 30 +2627 1073 1 +2628 1073 8 +2629 1073 36 +2630 1074 19 +2631 1074 30 +2632 1074 11 +2633 1074 10 +2634 1074 1 +2635 1074 24 +2636 1074 8 +2637 1074 3 +2638 1074 25 +2639 1074 16 +2640 1074 17 +2641 1074 14 +2642 1074 33 +2643 1074 32 +2644 1075 21 +2645 1075 19 +2646 1075 30 +2647 1075 23 +2648 1075 1 +2649 1075 24 +2650 1075 8 +2651 1075 3 +2652 1075 25 +2653 1075 16 +2654 1075 31 +2655 1075 17 +2656 1075 14 +2657 1075 33 +2658 1075 32 +2659 1075 27 +2660 1075 26 +2661 1076 19 +2662 1076 30 +2663 1076 23 +2664 1076 11 +2665 1076 1 +2666 1076 8 +2667 1076 3 +2668 1076 25 +2669 1076 14 +2670 1077 11 +2671 1078 1 +2672 1078 24 +2673 1078 3 +2674 1078 12 +2675 1078 33 +2676 1078 32 +2677 1079 19 +2678 1079 30 +2679 1079 23 +2680 1079 1 +2681 1079 8 +2682 1079 36 +2683 1079 14 +2684 1080 19 +2685 1080 30 +2686 1080 1 +2687 1080 8 +2688 1080 36 +2689 1081 21 +2690 1081 19 +2691 1081 30 +2692 1081 11 +2693 1081 1 +2694 1081 24 +2695 1081 8 +2696 1081 36 +2697 1081 16 +2698 1081 31 +2699 1081 17 +2700 1081 14 +2701 1081 33 +2702 1081 32 +2703 1082 21 +2704 1082 19 +2705 1082 30 +2706 1082 1 +2707 1082 8 +2708 1082 3 +2709 1082 25 +2710 1082 27 +2711 1083 19 +2712 1083 11 +2713 1083 8 +2714 1083 36 +2715 1084 30 +2716 1084 8 +2717 1084 36 +2718 1085 30 +2719 1085 1 +2720 1085 8 +2721 1085 16 +2722 1085 17 +2723 1086 19 +2724 1086 30 +2725 1086 23 +2726 1086 11 +2727 1086 17 +2728 1086 14 +2729 1087 21 +2730 1087 1 +2731 1087 24 +2732 1087 16 +2733 1087 31 +2734 1087 17 +2735 1087 33 +2736 1087 27 +2737 1087 26 +2738 1088 37 +2739 1089 12 +2740 1089 33 +2741 1090 19 +2742 1090 30 +2743 1090 1 +2744 1090 3 +2745 1090 25 +2746 1091 19 +2747 1091 30 +2748 1091 11 +2749 1091 8 +2750 1091 14 +2751 1092 19 +2752 1092 30 +2753 1092 1 +2754 1092 8 +2755 1092 17 +2756 1093 19 +2757 1093 30 +2758 1093 1 +2759 1093 24 +2760 1093 8 +2761 1093 25 +2762 1093 16 +2763 1093 5 +2764 1093 17 +2765 1093 14 +2766 1093 33 +2767 1093 32 +2768 1094 19 +2769 1094 30 +2770 1094 11 +2771 1094 1 +2772 1094 24 +2773 1094 8 +2774 1094 3 +2775 1094 25 +2776 1094 14 +2777 1094 33 +2778 1094 32 +2779 1095 21 +2780 1095 1 +2781 1095 24 +2782 1095 5 +2783 1096 1 +2784 1096 12 +2785 1097 30 +2786 1097 8 +2787 1098 8 +2788 1098 34 +2789 1099 1 +2790 1099 24 +2791 1099 16 +2792 1099 33 +2793 1100 19 +2794 1100 13 +2795 1100 11 +2796 1100 15 +2797 1100 1 +2798 1100 24 +2799 1100 3 +2800 1100 25 +2801 1100 36 +2802 1100 33 +2803 1100 32 +2804 1101 1 +2805 1101 24 +2806 1102 23 +2807 1103 1 +2808 1103 24 +2809 1103 3 +2810 1103 25 +2811 1103 33 +2812 1104 30 +2813 1104 8 +2814 1104 17 +2815 1105 30 +2816 1105 1 +2817 1105 8 +2818 1106 31 +2819 1106 39 +2820 1106 26 +2821 1107 19 +2822 1107 11 +2823 1107 15 +2824 1107 36 +2825 1108 13 +2826 1108 11 +2827 1108 15 +2828 1108 36 +2829 1108 32 +2830 1109 19 +2831 1109 30 +2832 1109 11 +2833 1109 1 +2834 1109 8 +2835 1109 25 +2836 1109 32 +2837 1110 30 +2838 1110 1 +2839 1110 8 +2840 1110 25 +2841 1110 33 +2842 1111 21 +2843 1111 30 +2844 1111 1 +2845 1111 24 +2846 1111 8 +2847 1111 16 +2848 1111 31 +2849 1111 17 +2850 1111 33 +2851 1111 27 +2852 1112 21 +2853 1112 19 +2854 1112 13 +2855 1112 30 +2856 1112 23 +2857 1112 11 +2858 1112 15 +2859 1112 1 +2860 1112 24 +2861 1112 25 +2862 1112 12 +2863 1112 22 +2864 1112 17 +2865 1112 14 +2866 1112 33 +2867 1113 11 +2868 1113 14 +2869 1114 19 +2870 1114 30 +2871 1114 1 +2872 1114 25 +2873 1115 21 +2874 1115 1 +2875 1115 27 +2876 1116 19 +2877 1116 30 +2878 1116 1 +2879 1116 8 +2880 1116 3 +2881 1116 25 +2882 1116 33 +2883 1117 19 +2884 1117 30 +2885 1117 1 +2886 1117 8 +2887 1117 25 +2888 1117 36 +2889 1117 16 +2890 1117 17 +2891 1118 21 +2892 1118 13 +2893 1118 30 +2894 1118 11 +2895 1118 15 +2896 1118 1 +2897 1118 8 +2898 1118 25 +2899 1118 33 +2900 1118 32 +2901 1119 19 +2902 1119 13 +2903 1119 23 +2904 1119 11 +2905 1119 15 +2906 1120 1 +2907 1120 31 +2908 1121 30 +2909 1121 11 +2910 1121 8 +2911 1121 16 +2912 1121 22 +2913 1121 17 +2914 1122 13 +2915 1122 11 +2916 1122 15 +2917 1123 19 +2918 1123 3 +2919 1123 25 +2920 1123 14 +2921 1124 1 +2922 1124 24 +2923 1124 3 +2924 1124 25 +2925 1124 33 +2926 1125 36 +2927 1125 27 +2928 1126 19 +2929 1126 30 +2930 1126 1 +2931 1126 8 +2932 1126 25 +2933 1126 16 +2934 1126 14 +2935 1127 21 +2936 1127 1 +2937 1127 24 +2938 1127 25 +2939 1127 16 +2940 1127 33 +2941 1128 21 +2942 1128 19 +2943 1128 13 +2944 1128 30 +2945 1128 23 +2946 1128 11 +2947 1128 1 +2948 1128 24 +2949 1128 8 +2950 1128 25 +2951 1128 12 +2952 1128 36 +2953 1128 34 +2954 1128 16 +2955 1128 31 +2956 1128 22 +2957 1128 17 +2958 1128 14 +2959 1128 33 +2960 1128 27 +2961 1128 26 +2962 1129 1 +2963 1129 24 +2964 1129 25 +2965 1129 33 +2966 1130 1 +2967 1130 3 +2968 1130 25 +2969 1130 33 +2970 1130 32 +2971 1131 21 +2972 1131 19 +2973 1131 30 +2974 1131 1 +2975 1131 8 +2976 1131 33 +2977 1132 1 +2978 1132 8 +2979 1132 16 +2980 1133 19 +2981 1133 30 +2982 1133 1 +2983 1134 30 +2984 1134 8 +2985 1134 14 +2986 1135 3 +2987 1136 30 +2988 1136 1 +2989 1136 25 +2990 1136 33 +2991 1137 21 +2992 1137 30 +2993 1137 1 +2994 1137 24 +2995 1137 31 +2996 1137 33 +2997 1138 1 +2998 1139 21 +2999 1139 3 +3000 1139 16 +3001 1139 31 +3002 1139 17 +3003 1139 27 +3004 1140 19 +3005 1140 30 +3006 1140 8 +3007 1141 30 +3008 1141 8 +3009 1141 14 +3010 1142 19 +3011 1142 30 +3012 1142 11 +3013 1142 1 +3014 1142 8 +3015 1143 21 +3016 1143 19 +3017 1143 13 +3018 1143 30 +3019 1143 23 +3020 1143 11 +3021 1143 15 +3022 1143 1 +3023 1143 24 +3024 1143 8 +3025 1143 3 +3026 1143 25 +3027 1143 12 +3028 1143 36 +3029 1143 34 +3030 1143 16 +3031 1143 5 +3032 1143 31 +3033 1143 22 +3034 1143 17 +3035 1143 14 +3036 1143 33 +3037 1143 32 +3038 1143 27 +3039 1143 26 +3040 1144 19 +3041 1144 30 +3042 1144 23 +3043 1144 11 +3044 1144 1 +3045 1144 8 +3046 1144 25 +3047 1144 22 +3048 1144 17 +3049 1144 14 +3050 1145 19 +3051 1145 30 +3052 1145 1 +3053 1145 24 +3054 1145 3 +3055 1145 25 +3056 1145 33 +3057 1145 32 +3058 1146 30 +3059 1146 8 +3060 1147 24 +3061 1147 33 +3062 1148 31 +3063 1148 26 +3064 1149 21 +3065 1149 19 +3066 1149 13 +3067 1149 30 +3068 1149 23 +3069 1149 11 +3070 1149 15 +3071 1149 1 +3072 1149 24 +3073 1149 8 +3074 1149 3 +3075 1149 25 +3076 1149 36 +3077 1149 16 +3078 1149 17 +3079 1149 14 +3080 1149 33 +3081 1149 32 +3082 1150 23 +3083 1150 17 +3084 1150 14 +3085 1151 1 +3086 1151 24 +3087 1151 3 +3088 1151 25 +3089 1151 36 +3090 1151 14 +3091 1151 33 +3092 1152 19 +3093 1152 30 +3094 1152 1 +3095 1152 8 +3096 1152 36 +3097 1153 21 +3098 1153 1 +3099 1153 24 +3100 1153 8 +3101 1153 16 +3102 1153 17 +3103 1154 30 +3104 1154 1 +3105 1155 17 +3106 1156 19 +3107 1156 30 +3108 1156 1 +3109 1156 3 +3110 1156 25 +3111 1157 8 +3112 1157 36 +3113 1157 17 +3114 1157 14 +3115 1158 21 +3116 1158 19 +3117 1158 30 +3118 1158 11 +3119 1158 1 +3120 1158 16 +3121 1158 33 +3122 1158 27 +3123 1159 21 +3124 1159 19 +3125 1159 13 +3126 1159 30 +3127 1159 23 +3128 1159 11 +3129 1159 15 +3130 1159 1 +3131 1159 24 +3132 1159 8 +3133 1159 3 +3134 1159 25 +3135 1159 12 +3136 1159 36 +3137 1159 34 +3138 1159 16 +3139 1159 5 +3140 1159 31 +3141 1159 22 +3142 1159 17 +3143 1159 14 +3144 1159 33 +3145 1159 32 +3146 1159 27 +3147 1159 26 +3148 1160 1 +3149 1160 24 +3150 1160 33 +3151 1161 1 +3152 1161 3 +3153 1161 16 +3154 1161 5 +3155 1161 33 +3156 1162 21 +3157 1162 1 +3158 1162 27 +3159 1163 21 +3160 1163 19 +3161 1163 30 +3162 1163 1 +3163 1163 24 +3164 1163 8 +3165 1163 25 +3166 1163 16 +3167 1163 33 +3168 1164 1 +3169 1165 19 +3170 1165 1 +3171 1165 8 +3172 1165 36 +3173 1165 17 +3174 1165 14 +3175 1166 19 +3176 1166 11 +3177 1166 1 +3178 1166 25 +3179 1166 36 +3180 1166 17 +3181 1166 14 +3182 1167 30 +3183 1167 8 +3184 1167 17 +3185 1168 19 +3186 1168 11 +3187 1168 1 +3188 1168 3 +3189 1168 14 +3190 1169 19 +3191 1169 30 +3192 1169 1 +3193 1169 25 +3194 1169 33 +3195 1170 19 +3196 1170 30 +3197 1170 15 +3198 1170 1 +3199 1170 3 +3200 1170 14 +3201 1171 11 +3202 1171 25 +3203 1171 32 +3204 1172 30 +3205 1173 19 +3206 1173 30 +3207 1173 8 +3208 1173 3 +3209 1173 14 +3210 1173 27 +3211 1174 21 +3212 1174 19 +3213 1174 30 +3214 1174 11 +3215 1174 15 +3216 1174 1 +3217 1174 24 +3218 1174 8 +3219 1174 3 +3220 1174 25 +3221 1174 36 +3222 1174 16 +3223 1174 17 +3224 1174 33 +3225 1174 32 +3226 1175 21 +3227 1175 19 +3228 1175 30 +3229 1175 1 +3230 1175 24 +3231 1175 8 +3232 1175 25 +3233 1175 16 +3234 1175 31 +3235 1175 17 +3236 1175 33 +3237 1175 27 +3238 1175 26 +3239 1176 19 +3240 1176 30 +3241 1176 23 +3242 1176 11 +3243 1176 1 +3244 1176 8 +3245 1176 16 +3246 1176 33 +3247 1177 14 +3248 1178 19 +3249 1178 30 +3250 1178 1 +3251 1179 30 +3252 1180 3 +3253 1180 32 +3254 1182 19 +3255 1182 30 +3256 1182 1 +3257 1182 24 +3258 1182 8 +3259 1182 25 +3260 1182 36 +3261 1182 16 +3262 1182 17 +3263 1182 14 +3264 1183 17 +3265 1184 1 +3266 1184 24 +3267 1184 14 +3268 1184 33 +3269 1185 21 +3270 1185 30 +3271 1185 16 +3272 1185 31 +3273 1185 17 +3274 1186 21 +3275 1186 5 +3276 1186 27 +3277 1186 26 +3278 1187 21 +3279 1187 19 +3280 1187 30 +3281 1187 23 +3282 1187 11 +3283 1187 15 +3284 1187 1 +3285 1187 24 +3286 1187 8 +3287 1187 3 +3288 1187 25 +3289 1187 12 +3290 1187 16 +3291 1187 17 +3292 1187 14 +3293 1187 33 +3294 1188 21 +3295 1188 30 +3296 1188 1 +3297 1188 24 +3298 1188 8 +3299 1188 16 +3300 1188 31 +3301 1188 17 +3302 1188 33 +3303 1188 27 +3304 1188 26 +3305 1189 21 +3306 1189 30 +3307 1189 8 +3308 1189 16 +3309 1189 17 +3310 1190 23 +3311 1190 36 +3312 1190 14 +3313 1191 21 +3314 1191 19 +3315 1191 30 +3316 1191 8 +3317 1191 16 +3318 1191 31 +3319 1191 17 +3320 1191 27 +3321 1191 26 +3322 1192 19 +3323 1192 30 +3324 1192 1 +3325 1192 8 +3326 1193 16 +3327 1193 31 +3328 1193 17 +3329 1193 26 +3330 1194 8 +3331 1194 25 +3332 1195 30 +3333 1195 8 +3334 1195 16 +3335 1196 30 +3336 1196 1 +3337 1197 21 +3338 1197 30 +3339 1197 24 +3340 1197 8 +3341 1197 16 +3342 1197 17 +3343 1197 27 +3344 1198 30 +3345 1198 8 +3346 1198 16 +3347 1198 31 +3348 1199 30 +3349 1199 1 +3350 1199 8 +3351 1199 36 +3352 1199 14 +3353 1200 19 +3354 1200 1 +3355 1200 25 +3356 1201 13 +3357 1202 1 +3358 1202 24 +3359 1202 33 +3360 1203 21 +3361 1203 30 +3362 1203 1 +3363 1203 24 +3364 1203 8 +3365 1203 3 +3366 1203 25 +3367 1203 34 +3368 1203 16 +3369 1203 5 +3370 1203 17 +3371 1203 27 +3372 1204 30 +3373 1204 8 +3374 1204 14 +3375 1205 12 +3376 1206 30 +3377 1206 8 +3378 1207 19 +3379 1207 30 +3380 1207 23 +3381 1207 1 +3382 1207 8 +3383 1207 25 +3384 1207 16 +3385 1207 5 +3386 1207 31 +3387 1207 17 +3388 1207 14 +3389 1207 33 +3390 1207 27 +3391 1208 19 +3392 1208 30 +3393 1208 24 +3394 1208 8 +3395 1208 36 +3396 1208 16 +3397 1208 31 +3398 1208 17 +3399 1208 14 +3400 1209 30 +3401 1209 11 +3402 1209 15 +3403 1209 1 +3404 1210 21 +3405 1211 8 +3406 1211 36 +3407 1211 16 +3408 1211 31 +3409 1211 27 +3410 1211 26 +3411 1212 33 +3412 1213 1 +3413 1213 3 +3414 1213 25 +3415 1213 33 +3416 1214 21 +3417 1214 36 +3418 1214 16 +3419 1214 31 +3420 1215 23 +3421 1215 14 +3422 1216 19 +3423 1216 11 +3424 1216 25 +3425 1217 11 +3426 1217 3 +3427 1217 25 +3428 1217 16 +3429 1217 22 +3430 1217 17 +3431 1217 14 +3432 1217 32 +3433 1218 19 +3434 1218 30 +3435 1218 1 +3436 1218 24 +3437 1218 33 +3438 1219 19 +3439 1219 11 +3440 1219 25 +3441 1219 32 +3442 1220 30 +3443 1220 1 +3444 1220 8 +3445 1220 25 +3446 1220 36 +3447 1220 34 +3448 1220 16 +3449 1220 17 +3450 1221 19 +3451 1221 1 +3452 1221 3 +3453 1221 25 +3454 1221 17 +3455 1222 19 +3456 1222 30 +3457 1222 23 +3458 1222 11 +3459 1222 8 +3460 1222 17 +3461 1222 14 +3462 1223 21 +3463 1223 19 +3464 1223 30 +3465 1223 23 +3466 1223 1 +3467 1223 8 +3468 1223 16 +3469 1223 17 +3470 1223 14 +3471 1224 3 +3472 1224 25 +3473 1224 32 +3474 1225 21 +3475 1225 19 +3476 1225 30 +3477 1225 1 +3478 1225 25 +3479 1225 16 +3480 1225 17 +3481 1226 21 +3482 1226 19 +3483 1226 13 +3484 1226 30 +3485 1226 23 +3486 1226 11 +3487 1226 15 +3488 1226 1 +3489 1226 24 +3490 1226 8 +3491 1226 3 +3492 1226 25 +3493 1226 12 +3494 1226 36 +3495 1226 34 +3496 1226 16 +3497 1226 5 +3498 1226 31 +3499 1226 22 +3500 1226 17 +3501 1226 14 +3502 1226 33 +3503 1226 32 +3504 1226 27 +3505 1226 26 +3506 1227 19 +3507 1227 30 +3508 1227 8 +3509 1227 14 +3510 1228 21 +3511 1228 1 +3512 1228 24 +3513 1228 25 +3514 1228 27 +3515 1229 21 +3516 1229 30 +3517 1229 1 +3518 1229 8 +3519 1229 16 +3520 1229 17 +3521 1229 14 +3522 1230 19 +3523 1230 30 +3524 1230 14 +3525 1231 19 +3526 1231 30 +3527 1231 1 +3528 1231 8 +3529 1231 25 +3530 1231 17 +3531 1231 14 +3532 1232 30 +3533 1232 1 +3534 1232 8 +3535 1232 17 +3536 1233 21 +3537 1233 30 +3538 1233 1 +3539 1233 25 +3540 1233 36 +3541 1234 21 +3542 1234 19 +3543 1234 30 +3544 1234 1 +3545 1234 24 +3546 1234 3 +3547 1234 25 +3548 1234 16 +3549 1234 31 +3550 1234 17 +3551 1234 27 +3552 1235 19 +3553 1235 30 +3554 1235 11 +3555 1235 1 +3556 1235 3 +3557 1236 19 +3558 1236 30 +3559 1236 8 +3560 1237 30 +3561 1237 8 +3562 1238 21 +3563 1238 19 +3564 1238 30 +3565 1238 1 +3566 1238 24 +3567 1238 8 +3568 1238 25 +3569 1238 16 +3570 1238 17 +3571 1238 33 +3572 1239 1 +3573 1239 24 +3574 1239 3 +3575 1239 25 +3576 1239 33 +3577 1239 32 +3578 1240 30 +3579 1240 8 +3580 1240 16 +3581 1240 33 +3582 1241 24 +3583 1241 3 +3584 1241 33 +3585 1242 19 +3586 1242 30 +3587 1243 19 +3588 1243 30 +3589 1243 1 +3590 1244 19 +3591 1244 30 +3592 1244 11 +3593 1244 8 +3594 1244 16 +3595 1245 19 +3596 1245 30 +3597 1246 19 +3598 1246 30 +3599 1246 1 +3600 1247 21 +3601 1247 1 +3602 1247 8 +3603 1247 16 +3604 1247 31 +3605 1247 17 +3606 1247 33 +3607 1247 26 +3608 1248 30 +3609 1249 30 +3610 1250 30 +3611 1250 1 +3612 1250 8 +3613 1251 21 +3614 1251 19 +3615 1251 30 +3616 1251 1 +3617 1251 24 +3618 1251 8 +3619 1251 3 +3620 1251 25 +3621 1251 12 +3622 1251 16 +3623 1251 33 +3624 1251 27 +3625 1252 19 +3626 1252 30 +3627 1252 1 +3628 1252 8 +3629 1253 21 +3630 1253 30 +3631 1253 25 +3632 1253 16 +3633 1253 33 +3634 1253 27 +3635 1254 1 +3636 1254 24 +3637 1254 25 +3638 1254 27 +3639 1255 19 +3640 1255 30 +3641 1255 1 +3642 1255 25 +3643 1256 17 +3644 1257 3 +3645 1257 16 +3646 1257 17 +3647 1258 34 +3648 1259 11 +3649 1259 14 +3650 1260 8 +3651 1261 19 +3652 1261 30 +3653 1261 1 +3654 1261 25 +3655 1262 36 +3656 1263 19 +3657 1263 11 +3658 1263 15 +3659 1263 3 +3660 1263 25 +3661 1263 32 +3662 1264 21 +3663 1264 19 +3664 1264 30 +3665 1264 1 +3666 1264 8 +3667 1264 25 +3668 1264 16 +3669 1264 17 +3670 1264 27 +3671 1265 1 +3672 1265 3 +3673 1265 12 +3674 1265 33 +3675 1266 19 +3676 1266 1 +3677 1266 3 +3678 1266 25 +3679 1266 33 +3680 1266 32 +3681 1267 21 +3682 1267 30 +3683 1267 1 +3684 1267 24 +3685 1267 36 +3686 1267 33 +3687 1268 21 +3688 1268 19 +3689 1268 30 +3690 1268 1 +3691 1268 8 +3692 1268 16 +3693 1268 17 +3694 1268 14 +3695 1268 27 +3696 1269 21 +3697 1269 1 +3698 1269 24 +3699 1269 16 +3700 1269 5 +3701 1269 27 +3702 1270 1 +3703 1270 3 +3704 1270 25 +3705 1270 33 +3706 1271 30 +3707 1271 1 +3708 1271 8 +3709 1271 36 +3710 1271 16 +3711 1271 17 +3712 1272 30 +3713 1272 1 +3714 1272 33 +3715 1273 19 +3716 1273 30 +3717 1273 1 +3718 1273 8 +3719 1273 16 +3720 1273 14 +3721 1274 1 +3722 1274 3 +3723 1274 25 +3724 1274 33 +3725 1275 21 +3726 1275 36 +3727 1275 16 +3728 1275 27 +3729 1276 30 +3730 1276 1 +3731 1276 25 +3732 1276 12 +3733 1276 33 +3734 1277 21 +3735 1277 19 +3736 1277 30 +3737 1277 11 +3738 1277 1 +3739 1277 8 +3740 1277 25 +3741 1277 12 +3742 1277 36 +3743 1277 34 +3744 1277 16 +3745 1277 5 +3746 1277 31 +3747 1277 17 +3748 1277 33 +3749 1277 27 +3750 1278 1 +3751 1278 24 +3752 1278 36 +3753 1278 33 +3754 1279 16 +3755 1279 31 +3756 1279 32 +3757 1279 27 +3758 1279 26 +3759 1280 19 +3760 1280 30 +3761 1280 11 +3762 1280 1 +3763 1280 8 +3764 1280 3 +3765 1280 25 +3766 1280 36 +3767 1281 21 +3768 1281 16 +3769 1281 31 +3770 1281 17 +3771 1281 27 +3772 1282 21 +3773 1282 30 +3774 1282 1 +3775 1282 24 +3776 1282 8 +3777 1282 16 +3778 1282 5 +3779 1282 31 +3780 1282 22 +3781 1282 17 +3782 1282 33 +3783 1282 27 +3784 1283 19 +3785 1283 30 +3786 1283 1 +3787 1283 25 +3788 1284 8 +3789 1284 3 +3790 1284 25 +3791 1284 12 +3792 1284 33 +3793 1285 1 +3794 1285 24 +3795 1285 3 +3796 1285 25 +3797 1285 33 +3798 1286 23 +3799 1286 11 +3800 1287 16 +3801 1288 25 +3802 1289 21 +3803 1290 19 +3804 1290 33 +3805 1291 13 +3806 1291 23 +3807 1291 15 +3808 1291 36 +3809 1292 1 +3810 1292 24 +3811 1292 25 +3812 1292 12 +3813 1292 33 +3814 1293 21 +3815 1293 5 +3816 1293 27 +3817 1294 23 +3818 1295 21 +3819 1295 1 +3820 1295 24 +3821 1295 3 +3822 1295 25 +3823 1295 12 +3824 1295 16 +3825 1295 5 +3826 1295 22 +3827 1295 27 +3828 1296 1 +3829 1296 24 +3830 1296 33 +3831 1297 13 +3832 1297 11 +3833 1297 15 +3834 1297 8 +3835 1298 1 +3836 1298 3 +3837 1298 25 +3838 1298 33 +3839 1299 21 +3840 1299 19 +3841 1299 13 +3842 1299 30 +3843 1299 23 +3844 1299 1 +3845 1299 24 +3846 1299 8 +3847 1299 3 +3848 1299 25 +3849 1299 17 +3850 1299 33 +3851 1300 21 +3852 1300 1 +3853 1300 16 +3854 1300 31 +3855 1300 17 +3856 1300 33 +3857 1300 27 +3858 1300 26 +3859 1301 21 +3860 1301 30 +3861 1301 1 +3862 1301 8 +3863 1301 36 +3864 1301 17 +3865 1301 14 +3866 1302 19 +3867 1302 30 +3868 1302 11 +3869 1302 15 +3870 1302 1 +3871 1302 24 +3872 1302 8 +3873 1302 25 +3874 1302 16 +3875 1302 31 +3876 1302 17 +3877 1302 14 +3878 1303 1 +3879 1303 25 +3880 1303 12 +3881 1303 16 +3882 1303 5 +3883 1303 31 +3884 1303 22 +3885 1303 17 +3886 1303 26 +3887 1304 19 +3888 1304 30 +3889 1304 1 +3890 1304 8 +3891 1304 25 +3892 1305 21 +3893 1305 1 +3894 1305 24 +3895 1305 33 +3896 1306 19 +3897 1306 30 +3898 1306 11 +3899 1306 1 +3900 1306 8 +3901 1306 17 +3902 1306 14 +3903 1307 21 +3904 1307 19 +3905 1307 30 +3906 1307 11 +3907 1307 1 +3908 1307 8 +3909 1307 17 +3910 1307 27 +3911 1308 30 +3912 1308 8 +3913 1308 16 +3914 1308 17 +3915 1309 30 +3916 1309 8 +3917 1310 21 +3918 1310 19 +3919 1310 1 +3920 1310 24 +3921 1310 25 +3922 1310 36 +3923 1310 16 +3924 1310 33 +3925 1310 27 +3926 1311 19 +3927 1311 30 +3928 1311 1 +3929 1311 3 +3930 1311 25 +3931 1312 1 +3932 1312 25 +3933 1312 33 +3934 1313 23 +3935 1314 36 +3936 1314 16 +3937 1314 31 +3938 1314 17 +3939 1314 26 +3940 1315 23 +3941 1315 14 +3942 1316 21 +3943 1316 19 +3944 1316 23 +3945 1316 1 +3946 1316 24 +3947 1316 8 +3948 1316 36 +3949 1316 16 +3950 1316 14 +3951 1317 19 +3952 1317 30 +3953 1317 23 +3954 1317 11 +3955 1317 15 +3956 1317 8 +3957 1317 25 +3958 1317 36 +3959 1317 17 +3960 1317 14 +3961 1318 19 +3962 1318 1 +3963 1318 24 +3964 1318 25 +3965 1318 16 +3966 1318 33 +3967 1319 19 +3968 1319 15 +3969 1319 1 +3970 1319 24 +3971 1319 3 +3972 1319 33 +3973 1319 32 +3974 1320 3 +3975 1320 25 +3976 1320 32 +3977 1321 21 +3978 1322 1 +3979 1322 3 +3980 1322 25 +3981 1322 33 +3982 1323 25 +3983 1324 21 +3984 1324 30 +3985 1324 8 +3986 1324 16 +3987 1324 31 +3988 1324 17 +3989 1324 27 +3990 1325 19 +3991 1325 30 +3992 1325 11 +3993 1325 8 +3994 1325 14 +3995 1326 1 +3996 1326 25 +3997 1326 36 +3998 1327 21 +3999 1327 27 +4000 1328 21 +4001 1328 30 +4002 1328 1 +4003 1328 24 +4004 1328 8 +4005 1328 36 +4006 1328 16 +4007 1328 5 +4008 1328 31 +4009 1328 17 +4010 1328 33 +4011 1328 27 +4012 1328 26 +4013 1329 19 +4014 1329 30 +4015 1329 23 +4016 1329 11 +4017 1329 1 +4018 1329 8 +4019 1329 16 +4020 1329 17 +4021 1329 14 +4022 1330 1 +4023 1330 12 +4024 1330 36 +4025 1330 5 +4026 1330 22 +4027 1330 33 +4028 1331 1 +4029 1332 19 +4030 1332 30 +4031 1332 1 +4032 1332 24 +4033 1332 8 +4034 1332 25 +4035 1332 34 +4036 1332 16 +4037 1332 5 +4038 1332 31 +4039 1332 22 +4040 1332 17 +4041 1332 14 +4042 1332 33 +4043 1332 27 +4044 1333 30 +4045 1333 8 +4046 1334 1 +4047 1334 24 +4048 1334 3 +4049 1334 25 +4050 1334 12 +4051 1334 33 +4052 1335 30 +4053 1335 1 +4054 1335 24 +4055 1335 25 +4056 1335 33 +4057 1336 33 +4058 1337 19 +4059 1337 30 +4060 1337 1 +4061 1337 24 +4062 1337 33 +4063 1338 21 +4064 1338 1 +4065 1338 24 +4066 1338 36 +4067 1338 33 +4068 1338 27 +4069 1339 16 +4070 1339 17 +4071 1340 19 +4072 1340 30 +4073 1340 23 +4074 1340 11 +4075 1340 1 +4076 1340 8 +4077 1340 36 +4078 1340 14 +4079 1341 21 +4080 1341 19 +4081 1341 30 +4082 1341 23 +4083 1341 11 +4084 1341 1 +4085 1341 8 +4086 1341 3 +4087 1341 25 +4088 1341 16 +4089 1341 31 +4090 1341 17 +4091 1341 14 +4092 1341 33 +4093 1341 27 +4094 1342 19 +4095 1342 30 +4096 1342 11 +4097 1342 1 +4098 1342 24 +4099 1342 3 +4100 1342 25 +4101 1342 33 +4102 1342 32 +4103 1343 1 +4104 1343 3 +4105 1343 25 +4106 1343 33 +4107 1344 21 +4108 1344 1 +4109 1344 24 +4110 1344 27 +4111 1345 21 +4112 1345 19 +4113 1345 30 +4114 1345 11 +4115 1345 1 +4116 1345 8 +4117 1345 25 +4118 1345 16 +4119 1345 31 +4120 1345 17 +4121 1345 33 +4122 1345 27 +4123 1345 26 +4124 1346 19 +4125 1346 1 +4126 1346 25 +4127 1346 36 +4128 1346 32 +4129 1347 21 +4130 1347 1 +4131 1347 12 +4132 1347 5 +4133 1347 22 +4134 1348 19 +4135 1348 30 +4136 1348 8 +4137 1349 19 +4138 1349 30 +4139 1349 23 +4140 1349 11 +4141 1349 1 +4142 1349 8 +4143 1349 25 +4144 1349 16 +4145 1349 17 +4146 1349 14 +4147 1350 21 +4148 1350 1 +4149 1350 24 +4150 1350 3 +4151 1350 25 +4152 1350 12 +4153 1350 16 +4154 1350 5 +4155 1350 31 +4156 1350 22 +4157 1350 27 +4158 1350 26 +4159 1351 30 +4160 1351 1 +4161 1351 8 +4162 1351 3 +4163 1351 25 +4164 1351 32 +4165 1352 8 +4166 1353 8 +4167 1353 17 +4168 1354 21 +4169 1354 5 +4170 1354 31 +4171 1354 27 +4172 1355 21 +4173 1355 19 +4174 1355 13 +4175 1355 30 +4176 1355 23 +4177 1355 11 +4178 1355 15 +4179 1355 1 +4180 1355 24 +4181 1355 8 +4182 1355 3 +4183 1355 25 +4184 1355 12 +4185 1355 36 +4186 1355 34 +4187 1355 16 +4188 1355 5 +4189 1355 31 +4190 1355 22 +4191 1355 17 +4192 1355 14 +4193 1355 33 +4194 1355 32 +4195 1355 27 +4196 1355 26 +4197 1356 8 +4198 1357 21 +4199 1357 19 +4200 1357 30 +4201 1357 11 +4202 1357 8 +4203 1358 21 +4204 1358 19 +4205 1358 13 +4206 1358 30 +4207 1358 23 +4208 1358 11 +4209 1358 15 +4210 1358 1 +4211 1358 24 +4212 1358 8 +4213 1358 3 +4214 1358 25 +4215 1358 12 +4216 1358 34 +4217 1358 16 +4218 1358 5 +4219 1358 31 +4220 1358 22 +4221 1358 17 +4222 1358 14 +4223 1358 33 +4224 1358 32 +4225 1358 27 +4226 1358 26 +4227 1359 21 +4228 1359 16 +4229 1359 5 +4230 1360 30 +4231 1360 1 +4232 1360 36 +4233 1361 24 +4234 1362 5 +4235 1363 21 +4236 1363 19 +4237 1363 13 +4238 1363 30 +4239 1363 23 +4240 1363 11 +4241 1363 15 +4242 1363 1 +4243 1363 24 +4244 1363 8 +4245 1363 3 +4246 1363 25 +4247 1363 12 +4248 1363 36 +4249 1363 34 +4250 1363 16 +4251 1363 5 +4252 1363 31 +4253 1363 22 +4254 1363 17 +4255 1363 14 +4256 1363 33 +4257 1363 32 +4258 1363 27 +4259 1363 26 +4260 1364 19 +4261 1364 30 +4262 1364 23 +4263 1364 11 +4264 1364 8 +4265 1364 16 +4266 1364 5 +4267 1364 32 +4268 1364 26 +4269 1365 19 +4270 1365 13 +4271 1365 23 +4272 1365 11 +4273 1365 15 +4274 1365 8 +4275 1365 34 +4276 1365 14 +4277 1366 1 +4278 1366 25 +4279 1366 33 +4280 1367 1 +4281 1367 24 +4282 1368 21 +4283 1368 19 +4284 1368 30 +4285 1368 1 +4286 1368 24 +4287 1368 8 +4288 1368 3 +4289 1368 25 +4290 1368 16 +4291 1368 17 +4292 1368 33 +4293 1369 19 +4294 1369 30 +4295 1369 8 +4296 1369 25 +4297 1370 21 +4298 1370 19 +4299 1370 13 +4300 1370 23 +4301 1370 11 +4302 1370 15 +4303 1370 1 +4304 1370 24 +4305 1370 3 +4306 1370 25 +4307 1370 12 +4308 1370 36 +4309 1370 16 +4310 1370 17 +4311 1370 14 +4312 1370 33 +4313 1370 32 +4314 1370 27 +4315 1370 26 +4316 1371 21 +4317 1371 19 +4318 1371 30 +4319 1371 11 +4320 1371 1 +4321 1371 8 +4322 1371 3 +4323 1371 25 +4324 1371 16 +4325 1371 17 +4326 1371 33 +4327 1372 21 +4328 1372 30 +4329 1372 11 +4330 1372 8 +4331 1372 36 +4332 1372 16 +4333 1372 17 +4334 1372 33 +4335 1372 27 +4336 1372 26 +4337 1373 19 +4338 1373 11 +4339 1374 30 +4340 1375 21 +4341 1375 19 +4342 1375 30 +4343 1375 1 +4344 1375 25 +4345 1376 8 +4346 1377 21 +4347 1377 19 +4348 1377 30 +4349 1377 1 +4350 1377 24 +4351 1377 8 +4352 1377 3 +4353 1377 25 +4354 1377 12 +4355 1377 16 +4356 1377 5 +4357 1377 31 +4358 1377 22 +4359 1377 17 +4360 1377 33 +4361 1377 32 +4362 1377 27 +4363 1377 26 +4364 1378 21 +4365 1378 16 +4366 1378 27 +4367 1379 19 +4368 1379 30 +4369 1379 11 +4370 1379 1 +4371 1379 8 +4372 1379 3 +4373 1379 25 +4374 1379 36 +4375 1379 16 +4376 1379 33 +4377 1380 30 +4378 1381 21 +4379 1381 30 +4380 1381 16 +4381 1381 17 +4382 1381 27 +4383 1382 1 +4384 1383 19 +4385 1383 11 +4386 1383 1 +4387 1383 8 +4388 1383 14 +4389 1384 21 +4390 1384 30 +4391 1384 1 +4392 1384 24 +4393 1384 8 +4394 1384 16 +4395 1384 31 +4396 1384 17 +4397 1384 33 +4398 1384 27 +4399 1384 26 +4400 1385 19 +4401 1385 30 +4402 1385 8 +4403 1385 17 +4404 1385 14 +4405 1386 21 +4406 1386 36 +4407 1386 16 +4408 1386 31 +4409 1386 27 +4410 1387 30 +4411 1387 8 +4412 1388 21 +4413 1388 19 +4414 1388 30 +4415 1388 1 +4416 1388 16 +4417 1388 31 +4418 1388 17 +4419 1388 27 +4420 1389 21 +4421 1389 16 +4422 1389 27 +4423 1390 1 +4424 1390 8 +4425 1390 16 +4426 1390 17 +4427 1391 19 +4428 1392 16 +4429 1393 30 +4430 1393 1 +4431 1393 8 +4432 1393 16 +4433 1393 17 +4434 1393 14 +4435 1393 33 +4436 1394 30 +4437 1394 8 +4438 1395 23 +4439 1395 11 +4440 1395 36 +4441 1395 14 +4442 1396 19 +4443 1396 30 +4444 1396 1 +4445 1396 24 +4446 1396 3 +4447 1396 25 +4448 1396 33 +4449 1396 32 +4450 1397 30 +4451 1398 24 +4452 1399 30 +4453 1400 19 +4454 1400 11 +4455 1401 19 +4456 1402 1 +4457 1402 3 +4458 1402 25 +4459 1402 33 +4460 1402 32 +4461 1403 31 +4462 1404 21 +4463 1404 1 +4464 1404 16 +4465 1404 17 +4466 1404 27 +4467 1405 21 +4468 1405 19 +4469 1405 30 +4470 1405 1 +4471 1405 24 +4472 1405 3 +4473 1405 25 +4474 1405 5 +4475 1405 33 +4476 1405 32 +4477 1406 24 +4478 1407 21 +4479 1407 5 +4480 1407 31 +4481 1407 27 +4482 1407 26 +4483 1408 21 +4484 1408 19 +4485 1408 30 +4486 1408 12 +4487 1408 16 +4488 1408 5 +4489 1408 22 +4490 1408 27 +4491 1409 21 +4492 1409 1 +4493 1409 5 +4494 1409 31 +4495 1409 22 +4496 1409 17 +4497 1409 33 +4498 1409 27 +4499 1409 26 +4500 1410 19 +4501 1410 30 +4502 1410 23 +4503 1410 11 +4504 1410 1 +4505 1410 8 +4506 1410 36 +4507 1410 14 +4508 1411 21 +4509 1411 1 +4510 1411 24 +4511 1411 33 +4512 1411 27 +4513 1412 12 +4514 1413 21 +4515 1413 30 +4516 1413 8 +4517 1413 16 +4518 1413 17 +4519 1413 27 +4520 1414 1 +4521 1414 24 +4522 1414 3 +4523 1414 12 +4524 1414 33 +4525 1415 8 +4526 1415 17 +4527 1415 14 +4528 1416 19 +4529 1416 1 +4530 1416 25 +4531 1416 33 +4532 1417 1 +4533 1418 21 +4534 1418 16 +4535 1418 31 +4536 1419 23 +4537 1419 11 +4538 1419 14 +4539 1420 30 +4540 1420 1 +4541 1420 24 +4542 1420 8 +4543 1420 17 +4544 1420 33 +4545 1421 21 +4546 1421 19 +4547 1421 30 +4548 1421 1 +4549 1421 24 +4550 1421 8 +4551 1421 16 +4552 1421 17 +4553 1421 27 +4554 1422 19 +4555 1422 13 +4556 1422 11 +4557 1422 15 +4558 1422 1 +4559 1422 36 +4560 1423 30 +4561 1423 8 +4562 1423 16 +4563 1423 17 +4564 1424 21 +4565 1424 31 +4566 1424 26 +4567 1425 21 +4568 1425 30 +4569 1425 1 +4570 1425 24 +4571 1425 8 +4572 1425 16 +4573 1425 31 +4574 1425 17 +4575 1425 33 +4576 1425 27 +4577 1425 26 +4578 1426 21 +4579 1426 30 +4580 1426 1 +4581 1426 24 +4582 1426 16 +4583 1426 31 +4584 1426 17 +4585 1426 33 +4586 1426 27 +4587 1427 13 +4588 1427 11 +4589 1427 15 +4590 1428 1 +4591 1429 1 +4592 1429 24 +4593 1429 3 +4594 1429 25 +4595 1429 12 +4596 1429 33 +4597 1430 1 +4598 1431 30 +4599 1431 8 +4600 1432 19 +4601 1433 30 +4602 1433 1 +4603 1433 24 +4604 1433 25 +4605 1433 31 +4606 1433 33 +4607 1434 3 +4608 1434 5 +4609 1434 31 +4610 1434 27 +4611 1435 19 +4612 1435 1 +4613 1435 25 +4614 1435 33 +4615 1436 21 +4616 1436 1 +4617 1436 24 +4618 1436 8 +4619 1436 25 +4620 1436 16 +4621 1436 17 +4622 1436 33 +4623 1436 27 +4624 1437 30 +4625 1437 8 +4626 1437 17 +4627 1437 14 +4628 1438 21 +4629 1438 1 +4630 1438 24 +4631 1438 5 +4632 1438 31 +4633 1438 17 +4634 1438 27 +4635 1439 21 +4636 1439 19 +4637 1439 13 +4638 1439 30 +4639 1439 23 +4640 1439 11 +4641 1439 15 +4642 1439 1 +4643 1439 24 +4644 1439 8 +4645 1439 3 +4646 1439 25 +4647 1439 36 +4648 1439 34 +4649 1439 16 +4650 1439 5 +4651 1439 31 +4652 1439 17 +4653 1439 14 +4654 1439 33 +4655 1439 32 +4656 1439 27 +4657 1439 26 +4658 1440 21 +4659 1440 1 +4660 1440 5 +4661 1440 27 +4662 1441 13 +4663 1441 23 +4664 1441 11 +4665 1441 15 +4666 1441 1 +4667 1441 14 +4668 1442 19 +4669 1442 1 +4670 1442 3 +4671 1442 25 +4672 1442 33 +4673 1443 1 +4674 1443 3 +4675 1443 25 +4676 1443 32 +4677 1444 30 +4678 1444 8 +4679 1445 19 +4680 1445 30 +4681 1445 11 +4682 1445 8 +4683 1445 12 +4684 1445 34 +4685 1445 33 +4686 1446 25 +4687 1446 12 +4688 1446 33 +4689 1447 16 +4690 1447 31 +4691 1447 17 +4692 1447 27 +4693 1447 26 +4694 1448 1 +4695 1448 25 +4696 1449 21 +4697 1449 1 +4698 1449 27 +4699 1450 19 +4700 1450 30 +4701 1450 1 +4702 1450 24 +4703 1450 3 +4704 1450 25 +4705 1450 12 +4706 1450 22 +4707 1450 33 +4708 1451 19 +4709 1451 30 +4710 1451 1 +4711 1451 8 +4712 1451 3 +4713 1451 25 +4714 1451 16 +4715 1451 32 +4716 1452 19 +4717 1452 30 +4718 1453 19 +4719 1453 30 +4720 1453 1 +4721 1453 24 +4722 1453 3 +4723 1453 25 +4724 1453 33 +4725 1453 32 +4726 1454 21 +4727 1454 30 +4728 1454 1 +4729 1454 24 +4730 1454 8 +4731 1454 16 +4732 1454 33 +4733 1454 27 +4734 1455 21 +4735 1455 19 +4736 1455 1 +4737 1455 24 +4738 1455 3 +4739 1455 25 +4740 1455 12 +4741 1455 16 +4742 1455 33 +4743 1455 32 +4744 1455 27 +4745 1456 21 +4746 1456 30 +4747 1456 16 +4748 1456 17 +4749 1456 27 +4750 1457 21 +4751 1457 30 +4752 1457 17 +4753 1457 27 +4754 1458 23 +4755 1458 11 +4756 1458 14 +4757 1459 30 +4758 1459 1 +4759 1459 8 +4760 1459 34 +4761 1459 16 +4762 1459 31 +4763 1459 17 +4764 1459 26 +4765 1460 19 +4766 1460 30 +4767 1460 11 +4768 1460 24 +4769 1460 3 +4770 1460 25 +4771 1460 33 +4772 1460 32 +4773 1461 19 +4774 1461 1 +4775 1461 25 +4776 1461 33 +4777 1462 30 +4778 1462 1 +4779 1462 3 +4780 1462 25 +4781 1462 33 +4782 1463 21 +4783 1463 19 +4784 1463 30 +4785 1463 1 +4786 1463 3 +4787 1463 25 +4788 1463 12 +4789 1463 36 +4790 1463 33 +4791 1464 19 +4792 1464 30 +4793 1464 11 +4794 1464 15 +4795 1464 1 +4796 1464 8 +4797 1464 3 +4798 1464 25 +4799 1464 16 +4800 1464 17 +4801 1464 33 +4802 1464 27 +4803 1465 1 +4804 1465 3 +4805 1465 25 +4806 1465 33 +4807 1466 19 +4808 1466 30 +4809 1466 23 +4810 1466 11 +4811 1466 1 +4812 1466 25 +4813 1466 32 +4814 1467 21 +4815 1467 11 +4816 1467 1 +4817 1467 36 +4818 1467 5 +4819 1467 33 +4820 1468 11 +4821 1468 15 +4822 1468 3 +4823 1469 21 +4824 1469 19 +4825 1469 30 +4826 1469 24 +4827 1469 8 +4828 1469 16 +4829 1469 17 +4830 1469 14 +4831 1469 33 +4832 1469 27 +4833 1470 8 +4834 1471 21 +4835 1471 19 +4836 1471 30 +4837 1471 11 +4838 1471 1 +4839 1471 24 +4840 1471 8 +4841 1471 16 +4842 1471 33 +4843 1472 19 +4844 1472 1 +4845 1472 8 +4846 1472 25 +4847 1473 8 +4848 1474 1 +4849 1474 24 +4850 1475 19 +4851 1475 30 +4852 1475 11 +4853 1475 1 +4854 1475 8 +4855 1476 21 +4856 1476 1 +4857 1476 8 +4858 1476 16 +4859 1476 17 +4860 1476 14 +4861 1477 11 +4862 1477 15 +4863 1477 1 +4864 1477 8 +4865 1477 36 +4866 1477 34 +4867 1477 14 +4868 1477 33 +4869 1478 30 +4870 1478 36 +4871 1478 16 +4872 1478 31 +4873 1478 17 +4874 1479 21 +4875 1479 11 +4876 1479 1 +4877 1479 3 +4878 1479 25 +4879 1479 32 +4880 1479 27 +4881 1480 21 +4882 1480 19 +4883 1480 13 +4884 1480 30 +4885 1480 15 +4886 1480 1 +4887 1480 24 +4888 1480 8 +4889 1480 25 +4890 1480 16 +4891 1480 22 +4892 1480 17 +4893 1480 14 +4894 1480 33 +4895 1480 26 +4896 1481 30 +4897 1481 8 +4898 1481 16 +4899 1482 1 +4900 1482 3 +4901 1482 25 +4902 1482 33 +4903 1483 3 +4904 1484 21 +4905 1484 1 +4906 1484 24 +4907 1484 5 +4908 1484 33 +4909 1484 27 +4910 1485 21 +4911 1485 19 +4912 1485 13 +4913 1485 30 +4914 1485 23 +4915 1485 11 +4916 1485 15 +4917 1485 1 +4918 1485 24 +4919 1485 8 +4920 1485 3 +4921 1485 25 +4922 1485 12 +4923 1485 36 +4924 1485 34 +4925 1485 16 +4926 1485 5 +4927 1485 31 +4928 1485 22 +4929 1485 17 +4930 1485 14 +4931 1485 33 +4932 1485 32 +4933 1485 27 +4934 1485 26 +4935 1486 30 +4936 1486 8 +4937 1486 14 +4938 1487 19 +4939 1487 1 +4940 1487 25 +4941 1487 32 +4942 1488 19 +4943 1488 30 +4944 1488 11 +4945 1488 1 +4946 1488 8 +4947 1488 3 +4948 1488 25 +4949 1488 36 +4950 1488 33 +4951 1488 32 +4952 1489 21 +4953 1489 19 +4954 1489 13 +4955 1489 30 +4956 1489 23 +4957 1489 11 +4958 1489 15 +4959 1489 1 +4960 1489 24 +4961 1489 8 +4962 1489 3 +4963 1489 25 +4964 1489 12 +4965 1489 36 +4966 1489 34 +4967 1489 16 +4968 1489 5 +4969 1489 31 +4970 1489 22 +4971 1489 17 +4972 1489 14 +4973 1489 33 +4974 1489 32 +4975 1489 27 +4976 1489 26 +4977 1490 11 +4978 1491 21 +4979 1491 1 +4980 1491 31 +4981 1491 27 +4982 1491 26 +4983 1492 8 +4984 1493 21 +4985 1493 19 +4986 1493 13 +4987 1493 30 +4988 1493 23 +4989 1493 11 +4990 1493 15 +4991 1493 1 +4992 1493 24 +4993 1493 8 +4994 1493 25 +4995 1493 12 +4996 1493 36 +4997 1493 34 +4998 1493 16 +4999 1493 31 +5000 1493 22 +5001 1493 17 +5002 1493 14 +5003 1493 33 +5004 1493 32 +5005 1493 27 +5006 1493 26 +5007 1494 21 +5008 1494 19 +5009 1494 13 +5010 1494 30 +5011 1494 11 +5012 1494 15 +5013 1494 1 +5014 1494 24 +5015 1494 8 +5016 1494 3 +5017 1494 25 +5018 1494 12 +5019 1494 16 +5020 1494 5 +5021 1494 31 +5022 1494 17 +5023 1494 33 +5024 1494 32 +5025 1494 27 +5026 1494 26 +5027 1495 30 +5028 1495 11 +5029 1495 8 +5030 1495 16 +5031 1495 31 +5032 1495 14 +5033 1495 26 +5034 1496 21 +5035 1496 19 +5036 1496 30 +5037 1496 8 +5038 1496 36 +5039 1496 16 +5040 1496 17 +5041 1496 14 +5042 1497 21 +5043 1497 30 +5044 1497 1 +5045 1497 8 +5046 1497 16 +5047 1497 31 +5048 1497 17 +5049 1497 27 +5050 1498 19 +5051 1498 30 +5052 1498 8 +5053 1498 16 +5054 1498 17 +5055 1498 14 +5056 1499 21 +5057 1499 11 +5058 1499 3 +5059 1499 12 +5060 1499 5 +5061 1499 22 +5062 1499 32 +5063 1500 30 +5064 1500 1 +5065 1500 8 +5066 1500 34 +5067 1500 16 +5068 1500 31 +5069 1500 17 +5070 1500 26 +5071 1501 21 +5072 1501 16 +5073 1501 5 +5074 1501 27 +5075 1502 31 +5076 1502 26 +5077 1503 21 +5078 1503 19 +5079 1503 30 +5080 1503 23 +5081 1503 11 +5082 1503 1 +5083 1503 24 +5084 1503 8 +5085 1503 25 +5086 1503 16 +5087 1503 31 +5088 1503 17 +5089 1503 14 +5090 1503 33 +5091 1503 27 +5092 1504 16 +5093 1504 31 +5094 1504 26 +5095 1505 19 +5096 1505 30 +5097 1505 1 +5098 1505 25 +5099 1506 19 +5100 1506 30 +5101 1506 1 +5102 1507 31 +5103 1508 23 +5104 1508 36 +5105 1508 31 +5106 1508 14 +5107 1508 26 +5108 1509 19 +5109 1509 30 +5110 1509 8 +5111 1510 1 +5112 1510 25 +5113 1511 21 +5114 1511 19 +5115 1511 30 +5116 1511 11 +5117 1511 1 +5118 1511 24 +5119 1511 8 +5120 1511 17 +5121 1511 33 +5122 1511 27 +5123 1512 21 +5124 1512 19 +5125 1512 13 +5126 1512 30 +5127 1512 23 +5128 1512 11 +5129 1512 15 +5130 1512 1 +5131 1512 24 +5132 1512 8 +5133 1512 3 +5134 1512 25 +5135 1512 12 +5136 1512 36 +5137 1512 34 +5138 1512 16 +5139 1512 5 +5140 1512 31 +5141 1512 22 +5142 1512 17 +5143 1512 14 +5144 1512 33 +5145 1512 32 +5146 1512 27 +5147 1512 26 +5148 1513 19 +5149 1513 30 +5150 1513 1 +5151 1513 8 +5152 1513 25 +5153 1513 36 +5154 1513 33 +5155 1514 30 +5156 1514 8 +5157 1514 33 +5158 1515 19 +5159 1515 30 +5160 1515 23 +5161 1515 25 +5162 1515 14 +5163 1516 21 +5164 1516 1 +5165 1516 12 +5166 1516 36 +5167 1516 22 +5168 1516 33 +5169 1517 21 +5170 1517 30 +5171 1517 11 +5172 1517 1 +5173 1517 12 +5174 1517 16 +5175 1517 31 +5176 1517 22 +5177 1517 17 +5178 1517 27 +5179 1517 26 +5180 1518 30 +5181 1518 1 +5182 1518 25 +5183 1520 30 +5184 1520 1 +5185 1520 8 +5186 1521 21 +5187 1521 19 +5188 1522 19 +5189 1522 30 +5190 1522 23 +5191 1522 11 +5192 1522 15 +5193 1522 1 +5194 1522 3 +5195 1522 25 +5196 1522 14 +5197 1523 19 +5198 1523 30 +5199 1523 11 +5200 1524 21 +5201 1524 1 +5202 1525 8 +5203 1526 21 +5204 1526 16 +5205 1526 31 +5206 1526 26 +5207 1527 19 +5208 1527 30 +5209 1527 1 +5210 1527 24 +5211 1527 3 +5212 1527 25 +5213 1527 33 +5214 1528 1 +5215 1528 33 +5216 1529 13 +5217 1529 11 +5218 1529 15 +5219 1530 19 +5220 1531 30 +5221 1531 8 +5222 1531 16 +5223 1531 17 +5224 1532 19 +5225 1532 13 +5226 1532 11 +5227 1532 15 +5228 1532 3 +5229 1532 25 +5230 1532 32 +5231 1533 30 +5232 1533 11 +5233 1533 1 +5234 1533 8 +5235 1533 25 +5236 1533 16 +5237 1533 17 +5238 1533 14 +5239 1533 33 +5240 1534 21 +5241 1534 12 +5242 1534 5 +5243 1534 22 +5244 1534 33 +5245 1535 1 +5246 1535 3 +5247 1535 25 +5248 1536 21 +5249 1536 1 +5250 1536 24 +5251 1536 25 +5252 1536 33 +5253 1537 3 +5254 1537 25 +5255 1538 19 +5256 1538 30 +5257 1538 11 +5258 1538 1 +5259 1538 24 +5260 1538 8 +5261 1538 3 +5262 1538 25 +5263 1538 16 +5264 1538 33 +5265 1538 32 +5266 1539 3 +5267 1539 25 +5268 1539 33 +5269 1539 32 +5270 1540 30 +5271 1540 8 +5272 1540 34 +5273 1540 16 +5274 1541 23 +5275 1541 8 +5276 1541 34 +5277 1541 14 +5278 1542 19 +5279 1542 30 +5280 1542 8 +5281 1543 19 +5282 1543 30 +5283 1543 1 +5284 1543 16 +5285 1543 17 +5286 1544 1 +5287 1544 3 +5288 1544 25 +5289 1544 33 +5290 1545 19 +5291 1545 1 +5292 1545 8 +5293 1546 30 +5294 1546 8 +5295 1546 16 +5296 1546 17 +5297 1547 30 +5298 1547 1 +5299 1548 11 +5300 1548 36 +5301 1549 30 +5302 1549 8 +5303 1549 14 +5304 1550 21 +5305 1550 19 +5306 1550 13 +5307 1550 30 +5308 1550 23 +5309 1550 11 +5310 1550 15 +5311 1550 1 +5312 1550 24 +5313 1550 8 +5314 1550 3 +5315 1550 25 +5316 1550 12 +5317 1550 36 +5318 1550 34 +5319 1550 16 +5320 1550 5 +5321 1550 31 +5322 1550 22 +5323 1550 17 +5324 1550 14 +5325 1550 33 +5326 1550 32 +5327 1550 27 +5328 1550 26 +5329 1551 16 +5330 1551 17 +5331 1552 21 +5332 1552 30 +5333 1552 1 +5334 1552 24 +5335 1552 16 +5336 1552 31 +5337 1552 17 +5338 1552 33 +5339 1552 27 +5340 1552 26 +5341 1553 21 +5342 1553 19 +5343 1553 30 +5344 1553 1 +5345 1553 24 +5346 1553 8 +5347 1553 3 +5348 1553 25 +5349 1553 12 +5350 1553 16 +5351 1553 31 +5352 1553 22 +5353 1553 17 +5354 1553 33 +5355 1553 27 +5356 1554 19 +5357 1554 30 +5358 1555 21 +5359 1555 30 +5360 1555 1 +5361 1555 3 +5362 1555 36 +5363 1555 16 +5364 1555 5 +5365 1555 31 +5366 1555 27 +5367 1555 26 +5368 1556 21 +5369 1556 31 +5370 1556 17 +5371 1556 27 +5372 1556 26 +5373 1557 21 +5374 1557 30 +5375 1557 1 +5376 1557 8 +5377 1557 3 +5378 1557 25 +5379 1557 32 +5380 1557 27 +5381 1558 21 +5382 1558 30 +5383 1558 11 +5384 1558 1 +5385 1558 8 +5386 1558 36 +5387 1558 34 +5388 1558 16 +5389 1558 5 +5390 1558 17 +5391 1558 26 +5392 1559 21 +5393 1559 16 +5394 1559 31 +5395 1559 27 +5396 1560 19 +5397 1560 30 +5398 1560 8 +5399 1561 21 +5400 1561 16 +5401 1561 27 +5402 1562 30 +5403 1562 8 +5404 1563 19 +5405 1563 24 +5406 1563 33 +5407 1564 8 +5408 1565 5 +5409 1566 30 +5410 1566 1 +5411 1567 21 +5412 1567 19 +5413 1567 30 +5414 1567 11 +5415 1567 1 +5416 1567 24 +5417 1567 25 +5418 1567 16 +5419 1567 33 +5420 1567 27 +5421 1568 30 +5422 1568 8 +5423 1569 19 +5424 1569 30 +5425 1569 1 +5426 1569 24 +5427 1569 3 +5428 1569 25 +5429 1569 33 +5430 1570 8 +5431 1571 1 +5432 1571 24 +5433 1571 25 +5434 1571 33 +5435 1572 16 +5436 1572 26 +5437 1573 1 +5438 1573 24 +5439 1573 33 +5440 1574 21 +5441 1574 30 +5442 1574 1 +5443 1574 24 +5444 1574 12 +5445 1574 33 +5446 1575 21 +5447 1575 19 +5448 1575 13 +5449 1575 30 +5450 1575 23 +5451 1575 11 +5452 1575 15 +5453 1575 1 +5454 1575 24 +5455 1575 8 +5456 1575 3 +5457 1575 25 +5458 1575 12 +5459 1575 36 +5460 1575 34 +5461 1575 16 +5462 1575 5 +5463 1575 31 +5464 1575 22 +5465 1575 17 +5466 1575 14 +5467 1575 33 +5468 1575 32 +5469 1575 27 +5470 1575 26 +5471 1576 1 +5472 1576 25 +5473 1577 21 +5474 1577 1 +5475 1577 24 +5476 1577 16 +5477 1577 27 +5478 1578 3 +5479 1578 25 +5480 1579 30 +5481 1579 1 +5482 1579 24 +5483 1579 33 +5484 1580 1 +5485 1580 24 +5486 1580 16 +5487 1580 33 +5488 1581 19 +5489 1581 30 +5490 1581 11 +5491 1581 8 +5492 1581 36 +5493 1581 14 +5494 1582 19 +5495 1582 13 +5496 1582 30 +5497 1582 23 +5498 1582 11 +5499 1582 15 +5500 1582 8 +5501 1582 3 +5502 1582 25 +5503 1582 36 +5504 1582 16 +5505 1582 17 +5506 1582 32 +5507 1583 19 +5508 1583 30 +5509 1583 1 +5510 1583 8 +5511 1583 36 +5512 1583 17 +5513 1583 14 +5514 1584 19 +5515 1584 30 +5516 1584 11 +5517 1584 1 +5518 1584 8 +5519 1584 25 +5520 1584 16 +5521 1584 31 +5522 1584 17 +5523 1584 14 +5524 1585 8 +5525 1585 36 +5526 1585 17 +5527 1586 19 +5528 1586 1 +5529 1586 3 +5530 1586 25 +5531 1586 32 +5532 1587 21 +5533 1587 30 +5534 1587 1 +5535 1587 8 +5536 1587 31 +5537 1587 33 +5538 1587 27 +5539 1587 26 +5540 1590 21 +5541 1593 27 +5542 1595 27 +5543 1598 1 +5544 1598 24 +5545 1598 33 +5546 1598 19 +5547 1598 30 +5548 1598 3 +5549 1598 25 +5550 1598 32 +5551 1598 21 +5552 1598 27 +5553 1598 5 +5554 1598 31 +5555 1598 26 +5556 1598 17 +5557 1598 16 +5558 1598 8 +5559 1598 14 +5560 1598 23 +5561 1598 15 +5562 1598 13 +5563 1598 11 +5564 1598 12 +5565 1598 22 +5566 1598 34 +5572 1603 1 +5573 1604 1 +5574 1604 30 +5575 1604 17 +5576 1604 16 +5577 1604 8 +5578 1605 1 +5579 1605 24 +5580 1605 33 +5581 1605 30 +5582 1605 27 +5583 1605 17 +5584 1605 16 +5585 1605 8 +5588 1607 31 +5589 1607 26 +5590 1607 17 +5591 1608 19 +5592 1608 30 +5593 1608 25 +5594 1608 8 +5595 1608 36 +5596 1609 1 +5597 1609 24 +5598 1609 33 +5599 1609 19 +5600 1609 3 +5601 1609 25 +5602 1609 32 +5603 1609 11 +5611 1611 13 +5612 1611 11 +5613 1613 1 +5614 1610 21 +5615 1610 27 +5616 1610 31 +5617 1610 16 +5618 1610 8 +5619 1610 34 +5620 1610 36 +5621 1599 1 +5622 1599 30 +5623 1599 17 +5624 1599 16 +5625 1599 8 +5626 1614 19 +5627 1614 30 +5628 1614 25 +5629 1614 8 +5630 1614 11 +5631 1616 21 +5638 1621 21 +5639 1619 1 +5640 1619 33 +5641 1619 3 +5642 1619 25 +5643 1619 32 +5644 1619 36 +5645 1623 26 +5646 1606 30 +5647 1625 12 +5648 1626 21 +5649 1626 27 +5650 1627 1 +5651 1627 33 +\. + + +-- +-- Data for Name: location_postcode; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.location_postcode (id, location_id, postcode_id) FROM stdin; +\. + + +-- +-- Data for Name: notion_relation; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.notion_relation (id, payroll, host_nid, host_type, host_id, tenant_nid, tenant_type, tenant_id) FROM stdin; +1 \N 6 agent 3 VOL-146 opportunity \N +2 \N 6 agent 3 VOL-240 opportunity \N +3 \N 6 agent 3 VOL-297 opportunity \N +4 \N 6 agent 3 VOL-324 opportunity \N +5 \N 6 agent 3 VOL-639 opportunity \N +6 \N 7 agent 4 VOL-76 opportunity \N +7 \N 7 agent 4 VOL-77 opportunity \N +8 \N 7 agent 4 VOL-86 opportunity \N +9 \N 7 agent 4 VOL-116 opportunity \N +10 \N 7 agent 4 VOL-136 opportunity \N +11 \N 7 agent 4 VOL-138 opportunity \N +12 \N 7 agent 4 VOL-149 opportunity \N +13 \N 7 agent 4 VOL-161 opportunity \N +14 \N 7 agent 4 VOL-172 opportunity \N +15 \N 7 agent 4 VOL-270 opportunity \N +16 \N 7 agent 4 VOL-272 opportunity \N +17 \N 7 agent 4 VOL-330 opportunity \N +18 \N 7 agent 4 VOL-331 opportunity \N +19 \N 7 agent 4 VOL-388 opportunity \N +20 \N 7 agent 4 VOL-479 opportunity \N +21 \N 7 agent 4 VOL-526 opportunity \N +22 \N 7 agent 4 VOL-547 opportunity \N +23 \N 7 agent 4 VOL-549 opportunity \N +24 \N 7 agent 4 VOL-662 opportunity \N +25 \N 7 agent 4 VOL-728 opportunity \N +26 \N 7 agent 4 VOL-886 opportunity \N +27 \N 8 agent 5 VOL-328 opportunity \N +28 \N 8 agent 5 VOL-353 opportunity \N +29 \N 8 agent 5 VOL-391 opportunity \N +30 \N 8 agent 5 VOL-472 opportunity \N +31 \N 8 agent 5 VOL-497 opportunity \N +32 \N 8 agent 5 VOL-516 opportunity \N +33 \N 8 agent 5 VOL-545 opportunity \N +34 \N 8 agent 5 VOL-534 opportunity \N +35 \N 8 agent 5 VOL-533 opportunity \N +36 \N 8 agent 5 VOL-546 opportunity \N +37 \N 8 agent 5 VOL-554 opportunity \N +38 \N 8 agent 5 VOL-570 opportunity \N +39 \N 8 agent 5 VOL-590 opportunity \N +40 \N 8 agent 5 VOL-608 opportunity \N +41 \N 8 agent 5 VOL-647 opportunity \N +42 \N 8 agent 5 VOL-677 opportunity \N +43 \N 8 agent 5 VOL-464 opportunity \N +44 \N 8 agent 5 VOL-360 opportunity \N +45 \N 8 agent 5 VOL-342 opportunity \N +46 \N 8 agent 5 VOL-704 opportunity \N +47 \N 8 agent 5 VOL-720 opportunity \N +48 \N 8 agent 5 VOL-725 opportunity \N +49 \N 8 agent 5 VOL-733 opportunity \N +50 \N 8 agent 5 VOL-752 opportunity \N +51 \N 8 agent 5 VOL-767 opportunity \N +52 \N 8 agent 5 VOL-778 opportunity \N +53 \N 8 agent 5 VOL-796 opportunity \N +54 \N 8 agent 5 VOL-811 opportunity \N +55 \N 8 agent 5 VOL-863 opportunity \N +56 \N 8 agent 5 VOL-867 opportunity \N +57 \N 8 agent 5 VOL-866 opportunity \N +58 \N 8 agent 5 VOL-892 opportunity \N +59 \N 9 agent 6 VOL-7 opportunity \N +60 \N 9 agent 6 VOL-8 opportunity \N +61 \N 9 agent 6 VOL-10 opportunity \N +62 \N 9 agent 6 VOL-11 opportunity \N +63 \N 9 agent 6 VOL-31 opportunity \N +64 \N 9 agent 6 VOL-35 opportunity \N +65 \N 9 agent 6 VOL-43 opportunity \N +66 \N 9 agent 6 VOL-47 opportunity \N +67 \N 9 agent 6 VOL-147 opportunity \N +68 \N 9 agent 6 VOL-152 opportunity \N +69 \N 9 agent 6 VOL-159 opportunity \N +70 \N 9 agent 6 VOL-181 opportunity \N +71 \N 9 agent 6 VOL-197 opportunity \N +72 \N 9 agent 6 VOL-205 opportunity \N +73 \N 9 agent 6 VOL-215 opportunity \N +74 \N 9 agent 6 VOL-261 opportunity \N +75 \N 9 agent 6 VOL-341 opportunity \N +76 \N 9 agent 6 VOL-367 opportunity \N +77 \N 9 agent 6 VOL-427 opportunity \N +78 \N 9 agent 6 VOL-440 opportunity \N +79 \N 9 agent 6 VOL-467 opportunity \N +80 \N 9 agent 6 VOL-476 opportunity \N +81 \N 9 agent 6 VOL-483 opportunity \N +82 \N 9 agent 6 VOL-492 opportunity \N +83 \N 9 agent 6 VOL-509 opportunity \N +84 \N 9 agent 6 VOL-531 opportunity \N +85 \N 9 agent 6 VOL-539 opportunity \N +86 \N 9 agent 6 VOL-532 opportunity \N +87 \N 9 agent 6 VOL-556 opportunity \N +88 \N 9 agent 6 VOL-569 opportunity \N +89 \N 9 agent 6 VOL-572 opportunity \N +90 \N 9 agent 6 VOL-607 opportunity \N +91 \N 9 agent 6 VOL-611 opportunity \N +92 \N 9 agent 6 VOL-627 opportunity \N +93 \N 9 agent 6 VOL-623 opportunity \N +94 \N 9 agent 6 VOL-625 opportunity \N +95 \N 9 agent 6 VOL-626 opportunity \N +96 \N 9 agent 6 VOL-670 opportunity \N +97 \N 9 agent 6 VOL-682 opportunity \N +98 \N 9 agent 6 VOL-751 opportunity \N +99 \N 9 agent 6 VOL-845 opportunity \N +100 \N 11 agent 7 VOL-12 opportunity \N +101 \N 11 agent 7 VOL-68 opportunity \N +102 \N 11 agent 7 VOL-69 opportunity \N +103 \N 11 agent 7 VOL-74 opportunity \N +104 \N 11 agent 7 VOL-78 opportunity \N +105 \N 11 agent 7 VOL-80 opportunity \N +106 \N 11 agent 7 VOL-93 opportunity \N +107 \N 11 agent 7 VOL-187 opportunity \N +108 \N 11 agent 7 VOL-188 opportunity \N +109 \N 11 agent 7 VOL-189 opportunity \N +110 \N 11 agent 7 VOL-190 opportunity \N +111 \N 11 agent 7 VOL-199 opportunity \N +112 \N 11 agent 7 VOL-200 opportunity \N +113 \N 11 agent 7 VOL-211 opportunity \N +114 \N 11 agent 7 VOL-212 opportunity \N +115 \N 11 agent 7 VOL-448 opportunity \N +116 \N 11 agent 7 VOL-452 opportunity \N +117 \N 11 agent 7 VOL-462 opportunity \N +118 \N 11 agent 7 VOL-596 opportunity \N +119 \N 11 agent 7 VOL-717 opportunity \N +120 \N 11 agent 7 VOL-718 opportunity \N +121 \N 11 agent 7 VOL-779 opportunity \N +122 \N 12 agent 8 VOL-15 opportunity \N +123 \N 12 agent 8 VOL-16 opportunity \N +124 \N 12 agent 8 VOL-17 opportunity \N +125 \N 12 agent 8 VOL-66 opportunity \N +126 \N 12 agent 8 VOL-97 opportunity \N +127 \N 12 agent 8 VOL-98 opportunity \N +128 \N 12 agent 8 VOL-185 opportunity \N +129 \N 12 agent 8 VOL-194 opportunity \N +130 \N 12 agent 8 VOL-198 opportunity \N +131 \N 12 agent 8 VOL-232 opportunity \N +132 \N 12 agent 8 VOL-233 opportunity \N +133 \N 12 agent 8 VOL-271 opportunity \N +134 \N 12 agent 8 VOL-334 opportunity \N +135 \N 12 agent 8 VOL-339 opportunity \N +136 \N 12 agent 8 VOL-488 opportunity \N +137 \N 12 agent 8 VOL-365 opportunity \N +138 \N 13 agent 9 VOL-19 opportunity \N +139 \N 13 agent 9 VOL-20 opportunity \N +140 \N 13 agent 9 VOL-30 opportunity \N +141 \N 13 agent 9 VOL-92 opportunity \N +142 \N 13 agent 9 VOL-122 opportunity \N +143 \N 13 agent 9 VOL-123 opportunity \N +144 \N 13 agent 9 VOL-145 opportunity \N +145 \N 13 agent 9 VOL-183 opportunity \N +146 \N 13 agent 9 VOL-221 opportunity \N +147 \N 13 agent 9 VOL-251 opportunity \N +148 \N 14 agent 10 VOL-21 opportunity \N +149 \N 14 agent 10 VOL-164 opportunity \N +150 \N 14 agent 10 VOL-165 opportunity \N +151 \N 14 agent 10 VOL-821 opportunity \N +152 \N 14 agent 10 VOL-820 opportunity \N +153 \N 16 agent 11 VOL-588 opportunity \N +154 \N 17 agent 12 VOL-823 opportunity \N +155 \N 17 agent 12 VOL-887 opportunity \N +156 \N 18 agent 13 VOL-4 opportunity \N +157 \N 18 agent 13 VOL-44 opportunity \N +158 \N 18 agent 13 VOL-67 opportunity \N +159 \N 18 agent 13 VOL-72 opportunity \N +160 \N 18 agent 13 VOL-83 opportunity \N +161 \N 18 agent 13 VOL-209 opportunity \N +162 \N 18 agent 13 VOL-263 opportunity \N +163 \N 18 agent 13 VOL-290 opportunity \N +164 \N 18 agent 13 VOL-292 opportunity \N +165 \N 18 agent 13 VOL-308 opportunity \N +166 \N 18 agent 13 VOL-310 opportunity \N +167 \N 18 agent 13 VOL-315 opportunity \N +168 \N 18 agent 13 VOL-321 opportunity \N +169 \N 18 agent 13 VOL-368 opportunity \N +170 \N 18 agent 13 VOL-372 opportunity \N +171 \N 18 agent 13 VOL-376 opportunity \N +172 \N 18 agent 13 VOL-435 opportunity \N +173 \N 18 agent 13 VOL-436 opportunity \N +174 \N 18 agent 13 VOL-504 opportunity \N +175 \N 18 agent 13 VOL-520 opportunity \N +176 \N 18 agent 13 VOL-364 opportunity \N +177 \N 18 agent 13 VOL-703 opportunity \N +178 \N 18 agent 13 VOL-766 opportunity \N +179 \N 18 agent 13 VOL-833 opportunity \N +180 \N 18 agent 13 VOL-846 opportunity \N +181 \N 21 agent 16 VOL-55 opportunity \N +182 \N 21 agent 16 VOL-57 opportunity \N +183 \N 21 agent 16 VOL-58 opportunity \N +184 \N 21 agent 16 VOL-59 opportunity \N +185 \N 21 agent 16 VOL-166 opportunity \N +186 \N 21 agent 16 VOL-291 opportunity \N +187 \N 21 agent 16 VOL-332 opportunity \N +188 \N 21 agent 16 VOL-575 opportunity \N +189 \N 21 agent 16 VOL-577 opportunity \N +190 \N 21 agent 16 VOL-576 opportunity \N +191 \N 21 agent 16 VOL-685 opportunity \N +192 \N 21 agent 16 VOL-643 opportunity \N +193 \N 21 agent 16 VOL-790 opportunity \N +194 \N 21 agent 16 VOL-789 opportunity \N +195 \N 21 agent 16 VOL-788 opportunity \N +196 \N 21 agent 16 VOL-882 opportunity \N +197 \N 22 agent 17 VOL-142 opportunity \N +198 \N 22 agent 17 VOL-144 opportunity \N +199 \N 22 agent 17 VOL-177 opportunity \N +200 \N 22 agent 17 VOL-273 opportunity \N +201 \N 22 agent 17 VOL-322 opportunity \N +202 \N 22 agent 17 VOL-466 opportunity \N +203 \N 22 agent 17 VOL-551 opportunity \N +204 \N 22 agent 17 VOL-579 opportunity \N +205 \N 22 agent 17 VOL-624 opportunity \N +206 \N 22 agent 17 VOL-815 opportunity \N +207 \N 22 agent 17 VOL-848 opportunity \N +208 \N 23 agent 18 VOL-28 opportunity \N +209 \N 23 agent 18 VOL-29 opportunity \N +210 \N 23 agent 18 VOL-243 opportunity \N +211 \N 23 agent 18 VOL-363 opportunity \N +212 \N 23 agent 18 VOL-395 opportunity \N +213 \N 23 agent 18 VOL-753 opportunity \N +214 \N 23 agent 18 VOL-754 opportunity \N +215 \N 23 agent 18 VOL-761 opportunity \N +216 \N 24 agent 19 VOL-9 opportunity \N +217 \N 24 agent 19 VOL-33 opportunity \N +218 \N 24 agent 19 VOL-34 opportunity \N +219 \N 24 agent 19 VOL-35 opportunity \N +220 \N 24 agent 19 VOL-196 opportunity \N +221 \N 25 agent 20 VOL-132 opportunity \N +222 \N 25 agent 20 VOL-171 opportunity \N +223 \N 25 agent 20 VOL-226 opportunity \N +224 \N 25 agent 20 VOL-857 opportunity \N +225 \N 25 agent 20 VOL-873 opportunity \N +226 \N 26 agent 21 VOL-134 opportunity \N +227 \N 26 agent 21 VOL-219 opportunity \N +228 \N 26 agent 21 VOL-299 opportunity \N +229 \N 27 agent 22 VOL-128 opportunity \N +230 \N 27 agent 22 VOL-129 opportunity \N +231 \N 27 agent 22 VOL-130 opportunity \N +232 \N 27 agent 22 VOL-131 opportunity \N +233 \N 31 agent 26 VOL-55 opportunity \N +234 \N 31 agent 26 VOL-124 opportunity \N +235 \N 31 agent 26 VOL-318 opportunity \N +236 \N 31 agent 26 VOL-361 opportunity \N +237 \N 31 agent 26 VOL-496 opportunity \N +238 \N 31 agent 26 VOL-511 opportunity \N +239 \N 31 agent 26 VOL-517 opportunity \N +240 \N 31 agent 26 VOL-555 opportunity \N +241 \N 31 agent 26 VOL-610 opportunity \N +242 \N 31 agent 26 VOL-667 opportunity \N +243 \N 31 agent 26 VOL-668 opportunity \N +244 \N 31 agent 26 VOL-726 opportunity \N +245 \N 31 agent 26 VOL-736 opportunity \N +246 \N 31 agent 26 VOL-742 opportunity \N +247 \N 32 agent 27 VOL-392 opportunity \N +248 \N 32 agent 27 VOL-410 opportunity \N +249 \N 32 agent 27 VOL-411 opportunity \N +250 \N 32 agent 27 VOL-412 opportunity \N +251 \N 32 agent 27 VOL-413 opportunity \N +252 \N 32 agent 27 VOL-594 opportunity \N +253 \N 32 agent 27 VOL-687 opportunity \N +254 \N 32 agent 27 VOL-806 opportunity \N +255 \N 33 agent 28 VOL-3 opportunity \N +256 \N 33 agent 28 VOL-2 opportunity \N +257 \N 33 agent 28 VOL-260 opportunity \N +258 \N 33 agent 28 VOL-319 opportunity \N +259 \N 33 agent 28 VOL-537 opportunity \N +260 \N 34 agent 29 VOL-451 opportunity \N +261 \N 34 agent 29 VOL-460 opportunity \N +262 \N 34 agent 29 VOL-616 opportunity \N +263 \N 34 agent 29 VOL-679 opportunity \N +264 \N 35 agent 30 VOL-415 opportunity \N +265 \N 35 agent 30 VOL-454 opportunity \N +266 \N 35 agent 30 VOL-508 opportunity \N +267 \N 37 agent 32 VOL-112 opportunity \N +268 \N 37 agent 32 VOL-113 opportunity \N +269 \N 37 agent 32 VOL-258 opportunity \N +270 \N 37 agent 32 VOL-336 opportunity \N +271 \N 37 agent 32 VOL-337 opportunity \N +272 \N 37 agent 32 VOL-469 opportunity \N +273 \N 37 agent 32 VOL-493 opportunity \N +274 \N 37 agent 32 VOL-495 opportunity \N +275 \N 37 agent 32 VOL-512 opportunity \N +276 \N 38 agent 33 VOL-32 opportunity \N +277 \N 38 agent 33 VOL-33 opportunity \N +278 \N 38 agent 33 VOL-34 opportunity \N +279 \N 38 agent 33 VOL-36 opportunity \N +280 \N 38 agent 33 VOL-24 opportunity \N +281 \N 38 agent 33 VOL-38 opportunity \N +282 \N 38 agent 33 VOL-39 opportunity \N +283 \N 38 agent 33 VOL-96 opportunity \N +284 \N 38 agent 33 VOL-870 opportunity \N +285 \N 38 agent 33 VOL-874 opportunity \N +286 \N 38 agent 33 VOL-876 opportunity \N +287 \N 38 agent 33 VOL-878 opportunity \N +288 \N 41 agent 36 VOL-33 opportunity \N +289 \N 41 agent 36 VOL-34 opportunity \N +290 \N 41 agent 36 VOL-40 opportunity \N +291 \N 41 agent 36 VOL-84 opportunity \N +292 \N 41 agent 36 VOL-85 opportunity \N +293 \N 41 agent 36 VOL-204 opportunity \N +294 \N 41 agent 36 VOL-369 opportunity \N +295 \N 41 agent 36 VOL-357 opportunity \N +296 \N 41 agent 36 VOL-428 opportunity \N +297 \N 41 agent 36 VOL-487 opportunity \N +298 \N 41 agent 36 VOL-486 opportunity \N +299 \N 41 agent 36 VOL-550 opportunity \N +300 \N 41 agent 36 VOL-600 opportunity \N +301 \N 41 agent 36 VOL-622 opportunity \N +302 \N 41 agent 36 VOL-621 opportunity \N +303 \N 41 agent 36 VOL-665 opportunity \N +304 \N 41 agent 36 VOL-688 opportunity \N +305 \N 41 agent 36 VOL-690 opportunity \N +306 \N 41 agent 36 VOL-762 opportunity \N +307 \N 41 agent 36 VOL-785 opportunity \N +308 \N 41 agent 36 VOL-851 opportunity \N +309 \N 41 agent 36 VOL-871 opportunity \N +310 \N 42 agent 37 VOL-33 opportunity \N +311 \N 42 agent 37 VOL-34 opportunity \N +312 \N 42 agent 37 VOL-37 opportunity \N +313 \N 42 agent 37 VOL-38 opportunity \N +314 \N 42 agent 37 VOL-46 opportunity \N +315 \N 42 agent 37 VOL-65 opportunity \N +316 \N 42 agent 37 VOL-88 opportunity \N +317 \N 42 agent 37 VOL-192 opportunity \N +318 \N 42 agent 37 VOL-781 opportunity \N +319 \N 43 agent 38 VOL-6 opportunity \N +320 \N 43 agent 38 VOL-764 opportunity \N +321 \N 43 agent 38 VOL-782 opportunity \N +322 \N 45 agent 40 VOL-127 opportunity \N +323 \N 45 agent 40 VOL-519 opportunity \N +324 \N 45 agent 40 VOL-770 opportunity \N +325 \N 45 agent 40 VOL-853 opportunity \N +326 \N 45 agent 40 VOL-880 opportunity \N +327 \N 46 agent 41 VOL-89 opportunity \N +328 \N 46 agent 41 VOL-329 opportunity \N +329 \N 46 agent 41 VOL-347 opportunity \N +330 \N 46 agent 41 VOL-666 opportunity \N +331 \N 46 agent 41 VOL-716 opportunity \N +332 \N 46 agent 41 VOL-741 opportunity \N +333 \N 46 agent 41 VOL-763 opportunity \N +334 \N 46 agent 41 VOL-831 opportunity \N +335 \N 46 agent 41 VOL-832 opportunity \N +336 \N 47 agent 42 VOL-5 opportunity \N +337 \N 47 agent 42 VOL-41 opportunity \N +338 \N 47 agent 42 VOL-42 opportunity \N +339 \N 47 agent 42 VOL-63 opportunity \N +340 \N 47 agent 42 VOL-75 opportunity \N +341 \N 49 agent 44 VOL-105 opportunity \N +342 \N 49 agent 44 VOL-127 opportunity \N +343 \N 49 agent 44 VOL-169 opportunity \N +344 \N 49 agent 44 VOL-170 opportunity \N +345 \N 49 agent 44 VOL-253 opportunity \N +346 \N 49 agent 44 VOL-380 opportunity \N +347 \N 49 agent 44 VOL-438 opportunity \N +348 \N 49 agent 44 VOL-437 opportunity \N +349 \N 49 agent 44 VOL-519 opportunity \N +350 \N 50 agent 45 VOL-349 opportunity \N +351 \N 50 agent 45 VOL-527 opportunity \N +352 \N 52 agent 47 VOL-13 opportunity \N +353 \N 52 agent 47 VOL-33 opportunity \N +354 \N 52 agent 47 VOL-34 opportunity \N +355 \N 52 agent 47 VOL-485 opportunity \N +356 \N 52 agent 47 VOL-503 opportunity \N +357 \N 52 agent 47 VOL-564 opportunity \N +358 \N 52 agent 47 VOL-803 opportunity \N +359 \N 54 agent 49 VOL-107 opportunity \N +360 \N 54 agent 49 VOL-108 opportunity \N +361 \N 54 agent 49 VOL-109 opportunity \N +362 \N 54 agent 49 VOL-201 opportunity \N +363 \N 54 agent 49 VOL-541 opportunity \N +364 \N 54 agent 49 VOL-692 opportunity \N +365 \N 54 agent 49 VOL-797 opportunity \N +366 \N 55 agent 50 VOL-62 opportunity \N +367 \N 55 agent 50 VOL-54 opportunity \N +368 \N 55 agent 50 VOL-139 opportunity \N +369 \N 55 agent 50 VOL-140 opportunity \N +370 \N 55 agent 50 VOL-267 opportunity \N +371 \N 55 agent 50 VOL-669 opportunity \N +372 \N 55 agent 50 VOL-673 opportunity \N +373 \N 55 agent 50 VOL-793 opportunity \N +374 \N 55 agent 50 VOL-794 opportunity \N +375 \N 55 agent 50 VOL-792 opportunity \N +376 \N 56 agent 51 VOL-26 opportunity \N +377 \N 56 agent 51 VOL-244 opportunity \N +378 \N 56 agent 51 VOL-252 opportunity \N +379 \N 56 agent 51 VOL-282 opportunity \N +380 \N 56 agent 51 VOL-383 opportunity \N +381 \N 56 agent 51 VOL-658 opportunity \N +382 \N 56 agent 51 VOL-675 opportunity \N +383 \N 56 agent 51 VOL-678 opportunity \N +384 \N 57 agent 52 VOL-52 opportunity \N +385 \N 57 agent 52 VOL-56 opportunity \N +386 \N 57 agent 52 VOL-266 opportunity \N +387 \N 57 agent 52 VOL-269 opportunity \N +388 \N 57 agent 52 VOL-268 opportunity \N +389 \N 57 agent 52 VOL-287 opportunity \N +390 \N 57 agent 52 VOL-631 opportunity \N +391 \N 57 agent 52 VOL-143 opportunity \N +392 \N 57 agent 52 VOL-779 opportunity \N +393 \N 58 agent 53 VOL-99 opportunity \N +394 \N 58 agent 53 VOL-100 opportunity \N +395 \N 58 agent 53 VOL-101 opportunity \N +396 \N 58 agent 53 VOL-117 opportunity \N +397 \N 58 agent 53 VOL-265 opportunity \N +398 \N 58 agent 53 VOL-681 opportunity \N +399 \N 58 agent 53 VOL-861 opportunity \N +400 \N 60 agent 55 VOL-27 opportunity \N +401 \N 60 agent 55 VOL-64 opportunity \N +402 \N 60 agent 55 VOL-22 opportunity \N +403 \N 60 agent 55 VOL-91 opportunity \N +404 \N 60 agent 55 VOL-126 opportunity \N +405 \N 60 agent 55 VOL-167 opportunity \N +406 \N 60 agent 55 VOL-191 opportunity \N +407 \N 60 agent 55 VOL-195 opportunity \N +408 \N 60 agent 55 VOL-227 opportunity \N +409 \N 60 agent 55 VOL-239 opportunity \N +410 \N 60 agent 55 VOL-371 opportunity \N +411 \N 60 agent 55 VOL-378 opportunity \N +412 \N 60 agent 55 VOL-430 opportunity \N +413 \N 60 agent 55 VOL-484 opportunity \N +414 \N 60 agent 55 VOL-456 opportunity \N +415 \N 60 agent 55 VOL-396 opportunity \N +416 \N 60 agent 55 VOL-747 opportunity \N +417 \N 60 agent 55 VOL-748 opportunity \N +418 \N 60 agent 55 VOL-749 opportunity \N +419 \N 62 agent 57 VOL-110 opportunity \N +420 \N 62 agent 57 VOL-133 opportunity \N +421 \N 62 agent 57 VOL-249 opportunity \N +422 \N 62 agent 57 VOL-343 opportunity \N +423 \N 62 agent 57 VOL-346 opportunity \N +424 \N 62 agent 57 VOL-366 opportunity \N +425 \N 62 agent 57 VOL-379 opportunity \N +426 \N 62 agent 57 VOL-393 opportunity \N +427 \N 62 agent 57 VOL-443 opportunity \N +428 \N 62 agent 57 VOL-444 opportunity \N +429 \N 62 agent 57 VOL-601 opportunity \N +430 \N 62 agent 57 VOL-604 opportunity \N +431 \N 62 agent 57 VOL-609 opportunity \N +432 \N 62 agent 57 VOL-843 opportunity \N +433 \N 63 agent 58 VOL-18 opportunity \N +434 \N 63 agent 58 VOL-432 opportunity \N +435 \N 63 agent 58 VOL-465 opportunity \N +436 \N 63 agent 58 VOL-705 opportunity \N +437 \N 63 agent 58 VOL-706 opportunity \N +438 \N 71 agent 65 VOL-663 opportunity \N +439 \N 72 agent 66 VOL-309 opportunity \N +440 \N 76 agent 70 VOL-150 opportunity \N +441 \N 76 agent 70 VOL-274 opportunity \N +442 \N 77 agent 71 VOL-630 opportunity \N +443 \N 77 agent 71 VOL-691 opportunity \N +444 \N 77 agent 71 VOL-855 opportunity \N +445 \N 79 agent 73 VOL-312 opportunity \N +446 \N 79 agent 73 VOL-370 opportunity \N +447 \N 79 agent 73 VOL-384 opportunity \N +448 \N 79 agent 73 VOL-385 opportunity \N +449 \N 79 agent 73 VOL-426 opportunity \N +450 \N 79 agent 73 VOL-498 opportunity \N +451 \N 79 agent 73 VOL-557 opportunity \N +452 \N 79 agent 73 VOL-595 opportunity \N +453 \N 79 agent 73 VOL-652 opportunity \N +454 \N 79 agent 73 VOL-463 opportunity \N +455 \N 79 agent 73 VOL-453 opportunity \N +456 \N 79 agent 73 VOL-694 opportunity \N +457 \N 79 agent 73 VOL-702 opportunity \N +458 \N 79 agent 73 VOL-700 opportunity \N +459 \N 79 agent 73 VOL-701 opportunity \N +460 \N 79 agent 73 VOL-755 opportunity \N +461 \N 81 agent 75 VOL-114 opportunity \N +462 \N 81 agent 75 VOL-118 opportunity \N +463 \N 81 agent 75 VOL-119 opportunity \N +464 \N 81 agent 75 VOL-120 opportunity \N +465 \N 81 agent 75 VOL-121 opportunity \N +466 \N 81 agent 75 VOL-162 opportunity \N +467 \N 81 agent 75 VOL-218 opportunity \N +468 \N 81 agent 75 VOL-278 opportunity \N +469 \N 81 agent 75 VOL-359 opportunity \N +470 \N 81 agent 75 VOL-566 opportunity \N +471 \N 81 agent 75 VOL-567 opportunity \N +472 \N 81 agent 75 VOL-638 opportunity \N +473 \N 81 agent 75 VOL-680 opportunity \N +474 \N 81 agent 75 VOL-709 opportunity \N +475 \N 81 agent 75 VOL-839 opportunity \N +476 \N 81 agent 75 VOL-840 opportunity \N +477 \N 81 agent 75 VOL-841 opportunity \N +478 \N 81 agent 75 VOL-879 opportunity \N +479 \N 86 agent 79 VOL-323 opportunity \N +480 \N 86 agent 79 VOL-513 opportunity \N +481 \N 86 agent 79 VOL-582 opportunity \N +482 \N 86 agent 79 VOL-791 opportunity \N +483 \N 87 agent 80 VOL-277 opportunity \N +484 \N 87 agent 80 VOL-279 opportunity \N +485 \N 87 agent 80 VOL-280 opportunity \N +486 \N 87 agent 80 VOL-304 opportunity \N +487 \N 87 agent 80 VOL-313 opportunity \N +488 \N 87 agent 80 VOL-314 opportunity \N +489 \N 87 agent 80 VOL-394 opportunity \N +490 \N 87 agent 80 VOL-477 opportunity \N +491 \N 87 agent 80 VOL-491 opportunity \N +492 \N 88 agent 81 VOL-61 opportunity \N +493 \N 88 agent 81 VOL-316 opportunity \N +494 \N 88 agent 81 VOL-317 opportunity \N +495 \N 88 agent 81 VOL-389 opportunity \N +496 \N 88 agent 81 VOL-615 opportunity \N +497 \N 89 agent 82 VOL-419 opportunity \N +498 \N 89 agent 82 VOL-602 opportunity \N +499 \N 89 agent 82 VOL-603 opportunity \N +500 \N 89 agent 82 VOL-819 opportunity \N +501 \N 91 agent 84 VOL-48 opportunity \N +502 \N 91 agent 84 VOL-49 opportunity \N +503 \N 91 agent 84 VOL-81 opportunity \N +504 \N 91 agent 84 VOL-179 opportunity \N +505 \N 91 agent 84 VOL-213 opportunity \N +506 \N 91 agent 84 VOL-228 opportunity \N +507 \N 91 agent 84 VOL-229 opportunity \N +508 \N 91 agent 84 VOL-257 opportunity \N +509 \N 91 agent 84 VOL-358 opportunity \N +510 \N 91 agent 84 VOL-414 opportunity \N +511 \N 91 agent 84 VOL-614 opportunity \N +512 \N 91 agent 84 VOL-618 opportunity \N +513 \N 91 agent 84 VOL-801 opportunity \N +514 \N 93 agent 86 VOL-530 opportunity \N +515 \N 93 agent 86 VOL-538 opportunity \N +516 \N 93 agent 86 VOL-457 opportunity \N +517 \N 95 agent 88 VOL-25 opportunity \N +518 \N 95 agent 88 VOL-45 opportunity \N +519 \N 95 agent 88 VOL-71 opportunity \N +520 \N 95 agent 88 VOL-79 opportunity \N +521 \N 95 agent 88 VOL-90 opportunity \N +522 \N 95 agent 88 VOL-214 opportunity \N +523 \N 95 agent 88 VOL-231 opportunity \N +524 \N 95 agent 88 VOL-250 opportunity \N +525 \N 95 agent 88 VOL-289 opportunity \N +526 \N 95 agent 88 VOL-302 opportunity \N +527 \N 95 agent 88 VOL-424 opportunity \N +528 \N 95 agent 88 VOL-425 opportunity \N +529 \N 95 agent 88 VOL-499 opportunity \N +530 \N 95 agent 88 VOL-514 opportunity \N +531 \N 95 agent 88 VOL-540 opportunity \N +532 \N 96 agent 89 VOL-102 opportunity \N +533 \N 96 agent 89 VOL-103 opportunity \N +534 \N 96 agent 89 VOL-104 opportunity \N +535 \N 96 agent 89 VOL-193 opportunity \N +536 \N 96 agent 89 VOL-416 opportunity \N +537 \N 96 agent 89 VOL-422 opportunity \N +538 \N 97 agent 90 VOL-180 opportunity \N +539 \N 97 agent 90 VOL-184 opportunity \N +540 \N 97 agent 90 VOL-186 opportunity \N +541 \N 97 agent 90 VOL-216 opportunity \N +542 \N 97 agent 90 VOL-298 opportunity \N +543 \N 97 agent 90 VOL-606 opportunity \N +544 \N 97 agent 90 VOL-356 opportunity \N +545 \N 97 agent 90 VOL-355 opportunity \N +546 \N 98 agent 91 VOL-235 opportunity \N +547 \N 98 agent 91 VOL-515 opportunity \N +548 \N 98 agent 91 VOL-722 opportunity \N +549 \N 98 agent 91 VOL-721 opportunity \N +550 \N 98 agent 91 VOL-734 opportunity \N +551 \N 98 agent 91 VOL-780 opportunity \N +552 \N 98 agent 91 VOL-732 opportunity \N +553 \N 100 agent 93 VOL-494 opportunity \N +554 \N 100 agent 93 VOL-510 opportunity \N +555 \N 100 agent 93 VOL-528 opportunity \N +556 \N 100 agent 93 VOL-597 opportunity \N +557 \N 100 agent 93 VOL-612 opportunity \N +558 \N 100 agent 93 VOL-613 opportunity \N +559 \N 101 agent 94 VOL-729 opportunity \N +560 \N 101 agent 94 VOL-730 opportunity \N +561 \N 101 agent 94 VOL-743 opportunity \N +562 \N 101 agent 94 VOL-744 opportunity \N +563 \N 101 agent 94 VOL-784 opportunity \N +564 \N 102 agent 95 VOL-335 opportunity \N +565 \N 102 agent 95 VOL-474 opportunity \N +566 \N 102 agent 95 VOL-475 opportunity \N +567 \N 104 agent 97 VOL-236 opportunity \N +568 \N 104 agent 97 VOL-237 opportunity \N +569 \N 104 agent 97 VOL-459 opportunity \N +570 \N 104 agent 97 VOL-461 opportunity \N +571 \N 104 agent 97 VOL-524 opportunity \N +572 \N 104 agent 97 VOL-458 opportunity \N +573 \N 104 agent 97 VOL-723 opportunity \N +574 \N 636 agent 106 VOL-644 opportunity \N +575 \N 606 agent 162 VOL-202 opportunity \N +576 \N 604 agent 164 VOL-445 opportunity \N +577 \N 604 agent 164 VOL-431 opportunity \N +578 \N 600 agent 168 VOL-883 opportunity \N +579 \N 587 agent 185 VOL-642 opportunity \N +580 \N 790 agent 224 VOL-648 opportunity \N +581 \N 773 agent 241 VOL-489 opportunity \N +582 \N 851 agent 250 VOL-809 opportunity \N +583 \N 851 agent 250 VOL-808 opportunity \N +584 \N 857 agent 256 VOL-586 opportunity \N +585 \N 857 agent 256 VOL-583 opportunity \N +586 \N 5 agent 320 VOL-87 opportunity \N +587 \N 5 agent 320 VOL-174 opportunity \N +588 \N 5 agent 320 VOL-175 opportunity \N +589 \N 5 agent 320 VOL-176 opportunity \N +590 \N 17 agent 354 VOL-382 opportunity \N +591 \N 17 agent 354 VOL-560 opportunity \N +592 \N 17 agent 354 VOL-635 opportunity \N +593 \N 24 agent 355 VOL-206 opportunity \N +594 \N 24 agent 355 VOL-241 opportunity \N +595 \N 24 agent 355 VOL-262 opportunity \N +596 \N 24 agent 355 VOL-281 opportunity \N +597 \N 24 agent 355 VOL-293 opportunity \N +598 \N 24 agent 355 VOL-294 opportunity \N +599 \N 24 agent 355 VOL-295 opportunity \N +600 \N 24 agent 355 VOL-296 opportunity \N +601 \N 24 agent 355 VOL-301 opportunity \N +602 \N 24 agent 355 VOL-311 opportunity \N +603 \N 24 agent 355 VOL-326 opportunity \N +604 \N 25 agent 356 VOL-207 opportunity \N +605 \N 25 agent 356 VOL-276 opportunity \N +606 \N 25 agent 356 VOL-275 opportunity \N +607 \N 25 agent 356 VOL-283 opportunity \N +608 \N 25 agent 356 VOL-338 opportunity \N +609 \N 25 agent 356 VOL-397 opportunity \N +610 \N 25 agent 356 VOL-439 opportunity \N +611 \N 25 agent 356 VOL-522 opportunity \N +612 \N 25 agent 356 VOL-523 opportunity \N +613 \N 25 agent 356 VOL-535 opportunity \N +614 \N 25 agent 356 VOL-542 opportunity \N +615 \N 25 agent 356 VOL-633 opportunity \N +616 \N 25 agent 356 VOL-634 opportunity \N +617 \N 25 agent 356 VOL-847 opportunity \N +618 \N 26 agent 357 VOL-222 opportunity \N +619 \N 26 agent 357 VOL-223 opportunity \N +620 \N 26 agent 357 VOL-224 opportunity \N +621 \N 26 agent 357 VOL-230 opportunity \N +622 \N 26 agent 357 VOL-390 opportunity \N +623 \N 26 agent 357 VOL-587 opportunity \N +624 \N 26 agent 357 VOL-584 opportunity \N +625 \N 26 agent 357 VOL-617 opportunity \N +626 \N 26 agent 357 VOL-632 opportunity \N +627 \N 26 agent 357 VOL-689 opportunity \N +628 \N 26 agent 357 VOL-712 opportunity \N +629 \N 26 agent 357 VOL-714 opportunity \N +630 \N 26 agent 357 VOL-715 opportunity \N +631 \N 26 agent 357 VOL-810 opportunity \N +632 \N 28 agent 358 VOL-558 opportunity \N +633 \N 28 agent 358 VOL-628 opportunity \N +634 \N 28 agent 358 VOL-683 opportunity \N +635 \N 32 agent 360 VOL-387 opportunity \N +636 \N 32 agent 360 VOL-386 opportunity \N +637 \N 32 agent 360 VOL-417 opportunity \N +638 \N 32 agent 360 VOL-423 opportunity \N +639 \N 32 agent 360 VOL-429 opportunity \N +640 \N 32 agent 360 VOL-442 opportunity \N +641 \N 32 agent 360 VOL-446 opportunity \N +642 \N 32 agent 360 VOL-573 opportunity \N +643 \N 32 agent 360 VOL-605 opportunity \N +644 \N 38 agent 366 VOL-653 opportunity \N +645 \N 38 agent 366 VOL-655 opportunity \N +646 \N 38 agent 366 VOL-656 opportunity \N +647 \N 38 agent 366 VOL-765 opportunity \N +648 \N 38 agent 366 VOL-775 opportunity \N +649 \N 39 agent 367 VOL-672 opportunity \N +650 \N 39 agent 367 VOL-713 opportunity \N +651 \N 41 agent 369 VOL-651 opportunity \N +652 \N 42 agent 370 VOL-345 opportunity \N +653 \N 42 agent 370 VOL-636 opportunity \N +654 \N 42 agent 370 VOL-362 opportunity \N +655 \N 43 agent 371 VOL-813 opportunity \N +656 \N 49 agent 377 VOL-650 opportunity \N +657 \N 49 agent 377 VOL-649 opportunity \N +658 \N 49 agent 377 VOL-695 opportunity \N +659 \N 49 agent 377 VOL-698 opportunity \N +660 \N 49 agent 377 VOL-783 opportunity \N +661 \N 49 agent 377 VOL-828 opportunity \N +662 \N 49 agent 377 VOL-830 opportunity \N +663 \N 49 agent 377 VOL-696 opportunity \N +664 \N 50 agent 378 VOL-333 opportunity \N +665 \N 50 agent 378 VOL-374 opportunity \N +666 \N 50 agent 378 VOL-418 opportunity \N +667 \N 50 agent 378 VOL-434 opportunity \N +668 \N 50 agent 378 VOL-473 opportunity \N +669 \N 50 agent 378 VOL-478 opportunity \N +670 \N 50 agent 378 VOL-481 opportunity \N +671 \N 50 agent 378 VOL-480 opportunity \N +672 \N 50 agent 378 VOL-482 opportunity \N +673 \N 50 agent 378 VOL-505 opportunity \N +674 \N 50 agent 378 VOL-506 opportunity \N +675 \N 50 agent 378 VOL-518 opportunity \N +676 \N 50 agent 378 VOL-525 opportunity \N +677 \N 50 agent 378 VOL-529 opportunity \N +678 \N 50 agent 378 VOL-544 opportunity \N +679 \N 50 agent 378 VOL-552 opportunity \N +680 \N 50 agent 378 VOL-559 opportunity \N +681 \N 50 agent 378 VOL-571 opportunity \N +682 \N 50 agent 378 VOL-580 opportunity \N +683 \N 50 agent 378 VOL-589 opportunity \N +684 \N 50 agent 378 VOL-591 opportunity \N +685 \N 50 agent 378 VOL-599 opportunity \N +686 \N 50 agent 378 VOL-620 opportunity \N +687 \N 50 agent 378 VOL-619 opportunity \N +688 \N 50 agent 378 VOL-629 opportunity \N +689 \N 50 agent 378 VOL-637 opportunity \N +690 \N 50 agent 378 VOL-661 opportunity \N +691 \N 50 agent 378 VOL-664 opportunity \N +692 \N 50 agent 378 VOL-654 opportunity \N +693 \N 50 agent 378 VOL-674 opportunity \N +694 \N 50 agent 378 VOL-684 opportunity \N +695 \N 50 agent 378 VOL-686 opportunity \N +696 \N 50 agent 378 VOL-693 opportunity \N +697 \N 50 agent 378 VOL-641 opportunity \N +698 \N 50 agent 378 VOL-697 opportunity \N +699 \N 50 agent 378 VOL-699 opportunity \N +700 \N 50 agent 378 VOL-711 opportunity \N +701 \N 50 agent 378 VOL-710 opportunity \N +702 \N 50 agent 378 VOL-724 opportunity \N +703 \N 50 agent 378 VOL-739 opportunity \N +704 \N 50 agent 378 VOL-737 opportunity \N +705 \N 50 agent 378 VOL-738 opportunity \N +706 \N 50 agent 378 VOL-735 opportunity \N +707 \N 50 agent 378 VOL-740 opportunity \N +708 \N 50 agent 378 VOL-745 opportunity \N +709 \N 50 agent 378 VOL-750 opportunity \N +710 \N 50 agent 378 VOL-757 opportunity \N +711 \N 50 agent 378 VOL-756 opportunity \N +712 \N 50 agent 378 VOL-758 opportunity \N +713 \N 50 agent 378 VOL-759 opportunity \N +714 \N 50 agent 378 VOL-760 opportunity \N +715 \N 50 agent 378 VOL-773 opportunity \N +716 \N 50 agent 378 VOL-774 opportunity \N +717 \N 50 agent 378 VOL-772 opportunity \N +718 \N 50 agent 378 VOL-776 opportunity \N +719 \N 50 agent 378 VOL-777 opportunity \N +720 \N 50 agent 378 VOL-768 opportunity \N +721 \N 50 agent 378 VOL-805 opportunity \N +722 \N 50 agent 378 VOL-812 opportunity \N +723 \N 50 agent 378 VOL-807 opportunity \N +724 \N 50 agent 378 VOL-804 opportunity \N +725 \N 50 agent 378 VOL-822 opportunity \N +726 \N 50 agent 378 VOL-834 opportunity \N +727 \N 50 agent 378 VOL-835 opportunity \N +728 \N 50 agent 378 VOL-837 opportunity \N +729 \N 50 agent 378 VOL-842 opportunity \N +730 \N 50 agent 378 VOL-838 opportunity \N +731 \N 50 agent 378 VOL-852 opportunity \N +732 \N 50 agent 378 VOL-850 opportunity \N +733 \N 50 agent 378 VOL-786 opportunity \N +734 \N 50 agent 378 VOL-865 opportunity \N +735 \N 50 agent 378 VOL-868 opportunity \N +736 \N 50 agent 378 VOL-881 opportunity \N +737 \N 50 agent 378 VOL-875 opportunity \N +738 \N 50 agent 378 VOL-877 opportunity \N +739 \N 50 agent 378 VOL-884 opportunity \N +740 \N 50 agent 378 VOL-888 opportunity \N +741 \N 54 agent 379 VOL-598 opportunity \N +742 \N 54 agent 379 VOL-640 opportunity \N +743 \N 54 agent 379 VOL-676 opportunity \N +744 \N 54 agent 379 VOL-795 opportunity \N +745 \N 54 agent 379 VOL-814 opportunity \N +746 \N 54 agent 379 VOL-829 opportunity \N +747 \N 54 agent 379 VOL-869 opportunity \N +748 \N 720 agent 388 VOL-568 opportunity \N +749 \N 720 agent 388 VOL-354 opportunity \N +750 \N 707 agent 401 VOL-827 opportunity \N +751 \N 707 agent 401 VOL-826 opportunity \N +752 \N 707 agent 401 VOL-825 opportunity \N +753 \N 707 agent 401 VOL-507 opportunity \N +754 \N 707 agent 401 VOL-592 opportunity \N +755 \N 707 agent 401 VOL-563 opportunity \N +756 \N 707 agent 401 VOL-562 opportunity \N +757 \N 707 agent 401 VOL-818 opportunity \N +758 \N 707 agent 401 VOL-817 opportunity \N +759 \N 707 agent 401 VOL-816 opportunity \N +760 \N 707 agent 401 VOL-585 opportunity \N +761 \N 707 agent 401 VOL-862 opportunity \N +762 \N 59 agent 414 VOL-574 opportunity \N +763 \N 59 agent 414 VOL-731 opportunity \N +764 \N 59 agent 414 VOL-787 opportunity \N +765 \N 60 agent 415 VOL-671 opportunity \N +766 \N 61 agent 416 VOL-659 opportunity \N +767 \N 61 agent 416 VOL-660 opportunity \N +768 \N 61 agent 416 VOL-849 opportunity \N +769 \N 61 agent 416 VOL-856 opportunity \N +770 \N 61 agent 416 VOL-859 opportunity \N +771 \N 61 agent 416 VOL-860 opportunity \N +772 \N 61 agent 416 VOL-854 opportunity \N +773 \N 61 agent 416 VOL-889 opportunity \N +774 \N 61 agent 416 VOL-890 opportunity \N +775 \N 62 agent 417 VOL-708 opportunity \N +776 \N 62 agent 417 VOL-771 opportunity \N +777 \N 62 agent 417 VOL-864 opportunity \N +778 \N 673 agent 447 VOL-581 opportunity \N +779 \N 658 agent 462 VOL-23 opportunity \N +780 \N 922 agent 479 VOL-802 opportunity \N +781 \N 922 agent 479 VOL-858 opportunity \N +782 \N 923 agent 480 VOL-824 opportunity \N +783 \N 923 agent 480 VOL-844 opportunity \N +784 \N 924 agent 481 VOL-769 opportunity \N +785 \N 924 agent 481 VOL-746 opportunity \N +786 \N 924 agent 481 VOL-707 opportunity \N +787 \N 924 agent 481 VOL-645 opportunity \N +788 \N 925 agent 482 VOL-657 opportunity \N +789 \N 925 agent 482 VOL-455 opportunity \N +790 \N 926 agent 483 VOL-719 opportunity \N +791 \N 927 agent 484 VOL-470 opportunity \N +792 \N 928 agent 485 VOL-348 opportunity \N +793 \N 929 agent 486 VOL-182 opportunity \N +794 \N 929 agent 486 VOL-173 opportunity \N +795 \N 929 agent 486 VOL-60 opportunity \N +796 \N 929 agent 486 VOL-111 opportunity \N +797 \N 929 agent 486 VOL-51 opportunity \N +798 \N 929 agent 486 VOL-50 opportunity \N +799 \N 929 agent 486 VOL-799 opportunity \N +800 \N 929 agent 486 VOL-94 opportunity \N +801 \N 929 agent 486 VOL-95 opportunity \N +802 \N 929 agent 486 VOL-800 opportunity \N +803 \N 929 agent 486 VOL-798 opportunity \N +804 \N 929 agent 486 VOL-646 opportunity \N +805 \N 929 agent 486 VOL-593 opportunity \N +806 \N 929 agent 486 VOL-578 opportunity \N +807 \N 929 agent 486 VOL-565 opportunity \N +808 \N 929 agent 486 VOL-561 opportunity \N +809 \N 929 agent 486 VOL-441 opportunity \N +810 \N 929 agent 486 VOL-490 opportunity \N +811 \N 929 agent 486 VOL-500 opportunity \N +812 \N 929 agent 486 VOL-536 opportunity \N +813 \N 929 agent 486 VOL-553 opportunity \N +814 \N 929 agent 486 VOL-234 opportunity \N +815 \N 929 agent 486 VOL-891 opportunity \N +816 \N 931 agent 487 VOL-872 opportunity \N +817 opp-pending VOL-4 opportunity 3 VOLVO-702 volunteer \N +818 opp-pending VOL-4 opportunity 3 VOLVO-659 volunteer \N +819 opp-pending VOL-4 opportunity 3 VOLVO-43 volunteer \N +820 opp-pending VOL-4 opportunity 3 VOLVO-58 volunteer \N +821 opp-pending VOL-4 opportunity 3 VOLVO-351 volunteer \N +1411 opp-pending VOL-319 opportunity 262 VOLVO-105 volunteer \N +824 opp-pending VOL-5 opportunity 4 VOLVO-589 volunteer \N +825 opp-pending VOL-5 opportunity 4 VOLVO-571 volunteer \N +826 opp-pending VOL-12 opportunity 11 VOLVO-548 volunteer \N +827 opp-matched VOL-12 opportunity 11 VOLVO-301 volunteer \N +828 opp-pending VOL-13 opportunity 12 VOLVO-565 volunteer \N +829 opp-pending VOL-13 opportunity 12 VOLVO-594 volunteer \N +830 opp-pending VOL-13 opportunity 12 VOLVO-661 volunteer \N +831 opp-pending VOL-13 opportunity 12 VOLVO-727 volunteer \N +832 opp-pending VOL-13 opportunity 12 VOLVO-561 volunteer \N +833 opp-pending VOL-13 opportunity 12 VOLVO-742 volunteer \N +834 opp-pending VOL-13 opportunity 12 VOLVO-694 volunteer \N +835 opp-pending VOL-13 opportunity 12 VOLVO-521 volunteer \N +836 opp-pending VOL-13 opportunity 12 VOLVO-540 volunteer \N +837 opp-pending VOL-13 opportunity 12 VOLVO-475 volunteer \N +838 opp-pending VOL-13 opportunity 12 VOLVO-156 volunteer \N +839 opp-pending VOL-13 opportunity 12 VOLVO-174 volunteer \N +1413 opp-pending VOL-321 opportunity 263 VOLVO-612 volunteer \N +841 opp-pending VOL-16 opportunity 14 VOLVO-699 volunteer \N +842 opp-pending VOL-16 opportunity 14 VOLVO-697 volunteer \N +843 opp-pending VOL-16 opportunity 14 VOLVO-592 volunteer \N +844 opp-pending VOL-16 opportunity 14 VOLVO-756 volunteer \N +845 opp-pending VOL-16 opportunity 14 VOLVO-132 volunteer \N +846 opp-pending VOL-16 opportunity 14 VOLVO-152 volunteer \N +847 opp-pending VOL-16 opportunity 14 VOLVO-205 volunteer \N +848 opp-pending VOL-16 opportunity 14 VOLVO-107 volunteer \N +849 opp-pending VOL-16 opportunity 14 VOLVO-391 volunteer \N +850 opp-pending VOL-16 opportunity 14 VOLVO-400 volunteer \N +851 opp-pending VOL-16 opportunity 14 VOLVO-449 volunteer \N +852 opp-pending VOL-16 opportunity 14 VOLVO-455 volunteer \N +853 opp-pending VOL-16 opportunity 14 VOLVO-805 volunteer \N +1414 opp-pending VOL-321 opportunity 263 VOLVO-647 volunteer \N +1415 opp-pending VOL-321 opportunity 263 VOLVO-781 volunteer \N +1416 opp-pending VOL-322 opportunity 264 VOLVO-77 volunteer \N +857 opp-pending VOL-20 opportunity 18 VOLVO-778 volunteer \N +858 opp-pending VOL-20 opportunity 18 VOLVO-492 volunteer \N +859 opp-pending VOL-23 opportunity 20 VOLVO-550 volunteer \N +860 opp-pending VOL-23 opportunity 20 VOLVO-453 volunteer \N +861 opp-matched VOL-24 opportunity 21 VOLVO-712 volunteer \N +862 opp-pending VOL-25 opportunity 22 VOLVO-619 volunteer \N +864 opp-pending VOL-30 opportunity 25 VOLVO-551 volunteer \N +865 opp-pending VOL-30 opportunity 25 VOLVO-591 volunteer \N +866 opp-pending VOL-30 opportunity 25 VOLVO-722 volunteer \N +867 opp-active VOL-30 opportunity 25 VOLVO-590 volunteer \N +868 opp-pending VOL-37 opportunity 32 VOLVO-726 volunteer \N +869 opp-pending VOL-37 opportunity 32 VOLVO-744 volunteer \N +870 opp-pending VOL-37 opportunity 32 VOLVO-616 volunteer \N +871 opp-matched VOL-37 opportunity 32 VOLVO-595 volunteer \N +872 opp-pending VOL-48 opportunity 42 VOLVO-648 volunteer \N +873 opp-pending VOL-48 opportunity 42 VOLVO-705 volunteer \N +874 opp-pending VOL-48 opportunity 42 VOLVO-604 volunteer \N +875 opp-pending VOL-52 opportunity 46 VOLVO-673 volunteer \N +876 opp-pending VOL-52 opportunity 46 VOLVO-90 volunteer \N +877 opp-pending VOL-54 opportunity 47 VOLVO-495 volunteer \N +878 opp-pending VOL-54 opportunity 47 VOLVO-496 volunteer \N +879 opp-pending VOL-56 opportunity 49 VOLVO-763 volunteer \N +880 opp-pending VOL-57 opportunity 50 VOLVO-624 volunteer \N +881 opp-pending VOL-57 opportunity 50 VOLVO-579 volunteer \N +882 opp-pending VOL-57 opportunity 50 VOLVO-628 volunteer \N +883 opp-pending VOL-57 opportunity 50 VOLVO-480 volunteer \N +884 opp-pending VOL-57 opportunity 50 VOLVO-777 volunteer \N +885 opp-pending VOL-57 opportunity 50 VOLVO-710 volunteer \N +886 opp-pending VOL-57 opportunity 50 VOLVO-586 volunteer \N +887 opp-pending VOL-57 opportunity 50 VOLVO-717 volunteer \N +888 opp-pending VOL-58 opportunity 51 VOLVO-499 volunteer \N +889 opp-pending VOL-58 opportunity 51 VOLVO-36 volunteer \N +890 opp-pending VOL-58 opportunity 51 VOLVO-154 volunteer \N +891 opp-pending VOL-58 opportunity 51 VOLVO-207 volunteer \N +892 opp-pending VOL-59 opportunity 52 VOLVO-42 volunteer \N +893 opp-pending VOL-59 opportunity 52 VOLVO-54 volunteer \N +894 opp-pending VOL-61 opportunity 54 VOLVO-646 volunteer \N +895 opp-pending VOL-61 opportunity 54 VOLVO-19 volunteer \N +896 opp-pending VOL-62 opportunity 55 VOLVO-670 volunteer \N +897 opp-pending VOL-62 opportunity 55 VOLVO-15 volunteer \N +898 opp-pending VOL-63 opportunity 56 VOLVO-615 volunteer \N +899 opp-pending VOL-64 opportunity 57 VOLVO-478 volunteer \N +1418 opp-pending VOL-323 opportunity 265 VOLVO-527 volunteer \N +901 opp-active VOL-68 opportunity 61 VOLVO-675 volunteer \N +902 opp-active VOL-69 opportunity 62 VOLVO-615 volunteer \N +903 opp-pending VOL-71 opportunity 63 VOLVO-766 volunteer \N +1419 opp-pending VOL-323 opportunity 265 VOLVO-54 volunteer \N +905 opp-pending VOL-72 opportunity 64 VOLVO-603 volunteer \N +906 opp-pending VOL-76 opportunity 67 VOLVO-724 volunteer \N +907 opp-pending VOL-80 opportunity 71 VOLVO-681 volunteer \N +908 opp-active VOL-81 opportunity 72 VOLVO-633 volunteer \N +909 opp-pending VOL-83 opportunity 73 VOLVO-579 volunteer \N +910 opp-pending VOL-86 opportunity 76 VOLVO-698 volunteer \N +911 opp-pending VOL-86 opportunity 76 VOLVO-647 volunteer \N +912 opp-pending VOL-86 opportunity 76 VOLVO-487 volunteer \N +913 opp-pending VOL-86 opportunity 76 VOLVO-17 volunteer \N +914 opp-pending VOL-87 opportunity 77 VOLVO-725 volunteer \N +915 opp-pending VOL-87 opportunity 77 VOLVO-604 volunteer \N +916 opp-pending VOL-88 opportunity 78 VOLVO-568 volunteer \N +917 opp-pending VOL-88 opportunity 78 VOLVO-563 volunteer \N +918 opp-pending VOL-88 opportunity 78 VOLVO-675 volunteer \N +919 opp-pending VOL-88 opportunity 78 VOLVO-637 volunteer \N +1420 opp-pending VOL-323 opportunity 265 VOLVO-41 volunteer \N +921 opp-pending VOL-89 opportunity 79 VOLVO-675 volunteer \N +922 opp-pending VOL-90 opportunity 80 VOLVO-762 volunteer \N +1421 opp-pending VOL-323 opportunity 265 VOLVO-29 volunteer \N +924 opp-pending VOL-92 opportunity 82 VOLVO-773 volunteer \N +925 opp-pending VOL-92 opportunity 82 VOLVO-767 volunteer \N +926 opp-pending VOL-92 opportunity 82 VOLVO-752 volunteer \N +1422 opp-pending VOL-323 opportunity 265 VOLVO-721 volunteer \N +928 opp-pending VOL-96 opportunity 85 VOLVO-574 volunteer \N +929 opp-pending VOL-96 opportunity 85 VOLVO-700 volunteer \N +930 opp-pending VOL-96 opportunity 85 VOLVO-487 volunteer \N +1423 opp-pending VOL-323 opportunity 265 VOLVO-606 volunteer \N +932 opp-pending VOL-98 opportunity 87 VOLVO-487 volunteer \N +933 opp-pending VOL-98 opportunity 87 VOLVO-615 volunteer \N +1424 opp-pending VOL-323 opportunity 265 VOLVO-507 volunteer \N +935 opp-pending VOL-99 opportunity 88 VOLVO-693 volunteer \N +936 opp-pending VOL-99 opportunity 88 VOLVO-699 volunteer \N +937 opp-pending VOL-99 opportunity 88 VOLVO-756 volunteer \N +938 opp-pending VOL-99 opportunity 88 VOLVO-726 volunteer \N +939 opp-pending VOL-99 opportunity 88 VOLVO-507 volunteer \N +940 opp-active VOL-100 opportunity 89 VOLVO-733 volunteer \N +941 opp-pending VOL-101 opportunity 90 VOLVO-728 volunteer \N +942 opp-pending VOL-105 opportunity 93 VOLVO-723 volunteer \N +943 opp-pending VOL-109 opportunity 96 VOLVO-612 volunteer \N +944 opp-pending VOL-112 opportunity 99 VOLVO-723 volunteer \N +945 opp-pending VOL-112 opportunity 99 VOLVO-651 volunteer \N +946 opp-pending VOL-112 opportunity 99 VOLVO-722 volunteer \N +947 opp-pending VOL-113 opportunity 100 VOLVO-487 volunteer \N +948 opp-pending VOL-113 opportunity 100 VOLVO-695 volunteer \N +949 opp-pending VOL-114 opportunity 101 VOLVO-733 volunteer \N +950 opp-pending VOL-114 opportunity 101 VOLVO-775 volunteer \N +951 opp-pending VOL-114 opportunity 101 VOLVO-627 volunteer \N +952 opp-pending VOL-114 opportunity 101 VOLVO-489 volunteer \N +953 opp-pending VOL-114 opportunity 101 VOLVO-626 volunteer \N +954 opp-pending VOL-114 opportunity 101 VOLVO-669 volunteer \N +955 opp-pending VOL-116 opportunity 102 VOLVO-754 volunteer \N +956 opp-pending VOL-116 opportunity 102 VOLVO-421 volunteer \N +1425 opp-matched VOL-323 opportunity 265 VOLVO-7 volunteer \N +958 opp-pending VOL-117 opportunity 103 VOLVO-520 volunteer \N +959 opp-pending VOL-117 opportunity 103 VOLVO-543 volunteer \N +960 opp-pending VOL-118 opportunity 104 VOLVO-669 volunteer \N +961 opp-pending VOL-118 opportunity 104 VOLVO-626 volunteer \N +962 opp-pending VOL-118 opportunity 104 VOLVO-440 volunteer \N +963 opp-pending VOL-118 opportunity 104 VOLVO-462 volunteer \N +964 opp-pending VOL-119 opportunity 105 VOLVO-643 volunteer \N +965 opp-pending VOL-119 opportunity 105 VOLVO-634 volunteer \N +966 opp-pending VOL-119 opportunity 105 VOLVO-576 volunteer \N +967 opp-pending VOL-119 opportunity 105 VOLVO-462 volunteer \N +968 opp-pending VOL-119 opportunity 105 VOLVO-459 volunteer \N +969 opp-pending VOL-120 opportunity 106 VOLVO-781 volunteer \N +970 opp-pending VOL-120 opportunity 106 VOLVO-617 volunteer \N +971 opp-pending VOL-120 opportunity 106 VOLVO-462 volunteer \N +972 opp-pending VOL-121 opportunity 107 VOLVO-701 volunteer \N +973 opp-active VOL-121 opportunity 107 VOLVO-649 volunteer \N +974 opp-pending VOL-122 opportunity 108 VOLVO-722 volunteer \N +975 opp-pending VOL-126 opportunity 110 VOLVO-671 volunteer \N +976 opp-pending VOL-126 opportunity 110 VOLVO-576 volunteer \N +977 opp-pending VOL-127 opportunity 111 VOLVO-557 volunteer \N +978 opp-pending VOL-127 opportunity 111 VOLVO-715 volunteer \N +979 opp-pending VOL-127 opportunity 111 VOLVO-607 volunteer \N +980 opp-pending VOL-128 opportunity 112 VOLVO-557 volunteer \N +981 opp-pending VOL-128 opportunity 112 VOLVO-487 volunteer \N +982 opp-pending VOL-128 opportunity 112 VOLVO-715 volunteer \N +983 opp-pending VOL-128 opportunity 112 VOLVO-607 volunteer \N +1427 opp-matched VOL-329 opportunity 269 VOLVO-735 volunteer \N +1428 opp-pending VOL-331 opportunity 271 VOLVO-293 volunteer \N +987 opp-pending VOL-131 opportunity 115 VOLVO-726 volunteer \N +988 opp-pending VOL-132 opportunity 116 VOLVO-626 volunteer \N +989 opp-pending VOL-132 opportunity 116 VOLVO-560 volunteer \N +990 opp-pending VOL-132 opportunity 116 VOLVO-726 volunteer \N +991 opp-pending VOL-134 opportunity 118 VOLVO-13 volunteer \N +992 opp-pending VOL-138 opportunity 120 VOLVO-780 volunteer \N +993 opp-pending VOL-140 opportunity 122 VOLVO-473 volunteer \N +1429 opp-pending VOL-331 opportunity 271 VOLVO-373 volunteer \N +995 opp-matched VOL-142 opportunity 123 VOLVO-122 volunteer \N +996 opp-pending VOL-143 opportunity 124 VOLVO-609 volunteer \N +997 opp-pending VOL-143 opportunity 124 VOLVO-15 volunteer \N +1000 opp-pending VOL-145 opportunity 126 VOLVO-547 volunteer \N +1001 opp-pending VOL-145 opportunity 126 VOLVO-478 volunteer \N +1002 opp-pending VOL-146 opportunity 127 VOLVO-493 volunteer \N +1003 opp-pending VOL-146 opportunity 127 VOLVO-125 volunteer \N +1004 opp-matched VOL-146 opportunity 127 VOLVO-662 volunteer \N +1432 opp-pending VOL-332 opportunity 272 VOLVO-673 volunteer \N +1006 opp-pending VOL-149 opportunity 129 VOLVO-479 volunteer \N +1007 opp-pending VOL-150 opportunity 130 VOLVO-676 volunteer \N +1433 opp-pending VOL-332 opportunity 272 VOLVO-90 volunteer \N +1009 opp-pending VOL-152 opportunity 131 VOLVO-501 volunteer \N +1010 opp-pending VOL-159 opportunity 132 VOLVO-577 volunteer \N +1011 opp-pending VOL-165 opportunity 136 VOLVO-519 volunteer \N +1012 opp-pending VOL-166 opportunity 137 VOLVO-135 volunteer \N +1013 opp-pending VOL-166 opportunity 137 VOLVO-109 volunteer \N +1434 opp-pending VOL-333 opportunity 273 VOLVO-113 volunteer \N +1015 opp-pending VOL-167 opportunity 138 VOLVO-522 volunteer \N +1017 opp-pending VOL-172 opportunity 142 VOLVO-542 volunteer \N +1018 opp-pending VOL-173 opportunity 143 VOLVO-588 volunteer \N +1019 opp-matched VOL-176 opportunity 146 VOLVO-609 volunteer \N +1020 opp-pending VOL-180 opportunity 149 VOLVO-620 volunteer \N +1021 opp-pending VOL-180 opportunity 149 VOLVO-563 volunteer \N +1022 opp-pending VOL-180 opportunity 149 VOLVO-568 volunteer \N +1023 opp-pending VOL-180 opportunity 149 VOLVO-706 volunteer \N +1024 opp-pending VOL-180 opportunity 149 VOLVO-741 volunteer \N +1025 opp-pending VOL-181 opportunity 150 VOLVO-615 volunteer \N +1436 opp-pending VOL-334 opportunity 274 VOLVO-65 volunteer \N +1027 opp-pending VOL-182 opportunity 151 VOLVO-612 volunteer \N +1028 opp-pending VOL-182 opportunity 151 VOLVO-678 volunteer \N +1029 opp-pending VOL-182 opportunity 151 VOLVO-760 volunteer \N +1030 opp-pending VOL-182 opportunity 151 VOLVO-773 volunteer \N +1031 opp-pending VOL-182 opportunity 151 VOLVO-756 volunteer \N +1032 opp-pending VOL-182 opportunity 151 VOLVO-562 volunteer \N +1033 opp-pending VOL-182 opportunity 151 VOLVO-659 volunteer \N +1034 opp-pending VOL-183 opportunity 152 VOLVO-478 volunteer \N +1035 opp-pending VOL-183 opportunity 152 VOLVO-592 volunteer \N +1036 opp-pending VOL-183 opportunity 152 VOLVO-626 volunteer \N +1037 opp-pending VOL-183 opportunity 152 VOLVO-561 volunteer \N +1038 opp-pending VOL-183 opportunity 152 VOLVO-763 volunteer \N +1039 opp-pending VOL-184 opportunity 153 VOLVO-761 volunteer \N +1040 opp-pending VOL-184 opportunity 153 VOLVO-622 volunteer \N +1041 opp-pending VOL-184 opportunity 153 VOLVO-494 volunteer \N +1042 opp-pending VOL-184 opportunity 153 VOLVO-681 volunteer \N +1043 opp-pending VOL-184 opportunity 153 VOLVO-574 volunteer \N +1044 opp-pending VOL-184 opportunity 153 VOLVO-505 volunteer \N +1045 opp-pending VOL-184 opportunity 153 VOLVO-631 volunteer \N +1046 opp-pending VOL-184 opportunity 153 VOLVO-762 volunteer \N +1047 opp-pending VOL-184 opportunity 153 VOLVO-598 volunteer \N +1048 opp-pending VOL-185 opportunity 154 VOLVO-615 volunteer \N +1437 opp-pending VOL-334 opportunity 274 VOLVO-474 volunteer \N +1050 opp-pending VOL-186 opportunity 155 VOLVO-681 volunteer \N +1051 opp-pending VOL-186 opportunity 155 VOLVO-574 volunteer \N +1052 opp-pending VOL-186 opportunity 155 VOLVO-598 volunteer \N +1053 opp-pending VOL-186 opportunity 155 VOLVO-505 volunteer \N +1054 opp-pending VOL-186 opportunity 155 VOLVO-494 volunteer \N +1055 opp-pending VOL-186 opportunity 155 VOLVO-622 volunteer \N +1056 opp-pending VOL-186 opportunity 155 VOLVO-631 volunteer \N +1057 opp-pending VOL-186 opportunity 155 VOLVO-762 volunteer \N +1058 opp-pending VOL-186 opportunity 155 VOLVO-472 volunteer \N +1438 opp-pending VOL-334 opportunity 274 VOLVO-533 volunteer \N +1060 opp-pending VOL-188 opportunity 157 VOLVO-681 volunteer \N +1061 opp-pending VOL-188 opportunity 157 VOLVO-762 volunteer \N +1062 opp-pending VOL-188 opportunity 157 VOLVO-505 volunteer \N +1063 opp-pending VOL-188 opportunity 157 VOLVO-494 volunteer \N +1064 opp-pending VOL-188 opportunity 157 VOLVO-622 volunteer \N +1065 opp-pending VOL-188 opportunity 157 VOLVO-631 volunteer \N +1066 opp-pending VOL-188 opportunity 157 VOLVO-598 volunteer \N +1067 opp-pending VOL-188 opportunity 157 VOLVO-574 volunteer \N +1068 opp-pending VOL-189 opportunity 158 VOLVO-681 volunteer \N +1069 opp-pending VOL-189 opportunity 158 VOLVO-505 volunteer \N +1070 opp-pending VOL-189 opportunity 158 VOLVO-494 volunteer \N +1071 opp-pending VOL-189 opportunity 158 VOLVO-622 volunteer \N +1072 opp-pending VOL-189 opportunity 158 VOLVO-631 volunteer \N +1073 opp-pending VOL-189 opportunity 158 VOLVO-598 volunteer \N +1074 opp-pending VOL-189 opportunity 158 VOLVO-574 volunteer \N +1075 opp-pending VOL-189 opportunity 158 VOLVO-762 volunteer \N +1076 opp-pending VOL-190 opportunity 159 VOLVO-474 volunteer \N +1439 opp-pending VOL-334 opportunity 274 VOLVO-496 volunteer \N +1078 opp-pending VOL-191 opportunity 160 VOLVO-681 volunteer \N +1079 opp-pending VOL-191 opportunity 160 VOLVO-622 volunteer \N +1080 opp-pending VOL-191 opportunity 160 VOLVO-574 volunteer \N +1081 opp-pending VOL-191 opportunity 160 VOLVO-598 volunteer \N +1082 opp-pending VOL-191 opportunity 160 VOLVO-762 volunteer \N +1083 opp-pending VOL-191 opportunity 160 VOLVO-631 volunteer \N +1084 opp-pending VOL-191 opportunity 160 VOLVO-494 volunteer \N +1085 opp-pending VOL-191 opportunity 160 VOLVO-505 volunteer \N +1086 opp-pending VOL-192 opportunity 161 VOLVO-718 volunteer \N +1440 opp-pending VOL-334 opportunity 274 VOLVO-622 volunteer \N +1088 opp-matched VOL-192 opportunity 161 VOLVO-741 volunteer \N +1441 opp-pending VOL-334 opportunity 274 VOLVO-631 volunteer \N +1090 opp-pending VOL-193 opportunity 162 VOLVO-741 volunteer \N +1442 opp-pending VOL-334 opportunity 274 VOLVO-761 volunteer \N +1443 opp-pending VOL-334 opportunity 274 VOLVO-667 volunteer \N +1093 opp-pending VOL-194 opportunity 163 VOLVO-697 volunteer \N +1094 opp-pending VOL-195 opportunity 164 VOLVO-762 volunteer \N +1095 opp-pending VOL-195 opportunity 164 VOLVO-494 volunteer \N +1096 opp-matched VOL-195 opportunity 164 VOLVO-615 volunteer \N +1097 opp-pending VOL-196 opportunity 165 VOLVO-609 volunteer \N +1098 opp-pending VOL-196 opportunity 165 VOLVO-530 volunteer \N +1099 opp-pending VOL-196 opportunity 165 VOLVO-520 volunteer \N +1100 opp-pending VOL-196 opportunity 165 VOLVO-503 volunteer \N +1101 opp-pending VOL-196 opportunity 165 VOLVO-712 volunteer \N +1102 opp-pending VOL-196 opportunity 165 VOLVO-735 volunteer \N +1444 opp-pending VOL-334 opportunity 274 VOLVO-717 volunteer \N +1104 opp-matched VOL-197 opportunity 166 VOLVO-615 volunteer \N +1105 opp-pending VOL-198 opportunity 167 VOLVO-527 volunteer \N +1106 opp-pending VOL-198 opportunity 167 VOLVO-606 volunteer \N +1107 opp-pending VOL-198 opportunity 167 VOLVO-658 volunteer \N +1108 opp-pending VOL-198 opportunity 167 VOLVO-674 volunteer \N +1109 opp-pending VOL-198 opportunity 167 VOLVO-751 volunteer \N +1110 opp-pending VOL-198 opportunity 167 VOLVO-694 volunteer \N +1111 opp-pending VOL-200 opportunity 169 VOLVO-762 volunteer \N +1112 opp-pending VOL-200 opportunity 169 VOLVO-778 volunteer \N +1113 opp-pending VOL-200 opportunity 169 VOLVO-758 volunteer \N +1114 opp-pending VOL-200 opportunity 169 VOLVO-669 volunteer \N +1115 opp-pending VOL-200 opportunity 169 VOLVO-681 volunteer \N +1116 opp-pending VOL-200 opportunity 169 VOLVO-494 volunteer \N +1117 opp-pending VOL-200 opportunity 169 VOLVO-679 volunteer \N +1118 opp-pending VOL-200 opportunity 169 VOLVO-615 volunteer \N +1445 opp-pending VOL-334 opportunity 274 VOLVO-719 volunteer \N +1120 opp-pending VOL-201 opportunity 170 VOLVO-526 volunteer \N +1121 opp-pending VOL-201 opportunity 170 VOLVO-748 volunteer \N +1122 opp-pending VOL-201 opportunity 170 VOLVO-515 volunteer \N +1123 opp-pending VOL-201 opportunity 170 VOLVO-499 volunteer \N +1124 opp-pending VOL-201 opportunity 170 VOLVO-678 volunteer \N +1446 opp-pending VOL-334 opportunity 274 VOLVO-668 volunteer \N +1126 opp-pending VOL-202 opportunity 171 VOLVO-751 volunteer \N +1447 opp-pending VOL-334 opportunity 274 VOLVO-766 volunteer \N +1128 opp-pending VOL-204 opportunity 172 VOLVO-546 volunteer \N +1129 opp-pending VOL-205 opportunity 173 VOLVO-527 volunteer \N +1130 opp-pending VOL-205 opportunity 173 VOLVO-674 volunteer \N +1131 opp-pending VOL-205 opportunity 173 VOLVO-580 volunteer \N +1132 opp-pending VOL-206 opportunity 174 VOLVO-584 volunteer \N +1133 opp-pending VOL-206 opportunity 174 VOLVO-563 volunteer \N +1134 opp-pending VOL-206 opportunity 174 VOLVO-613 volunteer \N +1135 opp-pending VOL-206 opportunity 174 VOLVO-620 volunteer \N +1448 opp-pending VOL-334 opportunity 274 VOLVO-721 volunteer \N +1449 opp-pending VOL-337 opportunity 277 VOLVO-74 volunteer \N +1138 opp-pending VOL-207 opportunity 175 VOLVO-558 volunteer \N +1139 opp-pending VOL-207 opportunity 175 VOLVO-493 volunteer \N +1140 opp-pending VOL-207 opportunity 175 VOLVO-366 volunteer \N +1141 opp-matched VOL-207 opportunity 175 VOLVO-662 volunteer \N +1450 opp-pending VOL-337 opportunity 277 VOLVO-333 volunteer \N +1452 opp-pending VOL-338 opportunity 278 VOLVO-78 volunteer \N +1145 opp-pending VOL-209 opportunity 176 VOLVO-658 volunteer \N +1146 opp-pending VOL-209 opportunity 176 VOLVO-674 volunteer \N +1147 opp-pending VOL-209 opportunity 176 VOLVO-606 volunteer \N +1148 opp-pending VOL-209 opportunity 176 VOLVO-603 volunteer \N +1149 opp-pending VOL-209 opportunity 176 VOLVO-580 volunteer \N +1150 opp-pending VOL-211 opportunity 177 VOLVO-651 volunteer \N +1151 opp-pending VOL-211 opportunity 177 VOLVO-574 volunteer \N +1152 opp-pending VOL-211 opportunity 177 VOLVO-487 volunteer \N +1153 opp-pending VOL-211 opportunity 177 VOLVO-762 volunteer \N +1154 opp-pending VOL-211 opportunity 177 VOLVO-766 volunteer \N +1155 opp-pending VOL-211 opportunity 177 VOLVO-774 volunteer \N +1156 opp-pending VOL-212 opportunity 178 VOLVO-651 volunteer \N +1157 opp-pending VOL-212 opportunity 178 VOLVO-681 volunteer \N +1158 opp-pending VOL-212 opportunity 178 VOLVO-667 volunteer \N +1159 opp-pending VOL-212 opportunity 178 VOLVO-761 volunteer \N +1160 opp-pending VOL-212 opportunity 178 VOLVO-533 volunteer \N +1161 opp-pending VOL-212 opportunity 178 VOLVO-487 volunteer \N +1162 opp-pending VOL-212 opportunity 178 VOLVO-574 volunteer \N +1163 opp-pending VOL-212 opportunity 178 VOLVO-766 volunteer \N +1164 opp-pending VOL-212 opportunity 178 VOLVO-762 volunteer \N +1165 opp-pending VOL-212 opportunity 178 VOLVO-774 volunteer \N +1166 opp-pending VOL-214 opportunity 180 VOLVO-494 volunteer \N +1167 opp-pending VOL-214 opportunity 180 VOLVO-717 volunteer \N +1168 opp-pending VOL-214 opportunity 180 VOLVO-667 volunteer \N +1169 opp-pending VOL-214 opportunity 180 VOLVO-615 volunteer \N +1453 opp-pending VOL-338 opportunity 278 VOLVO-678 volunteer \N +1171 opp-pending VOL-216 opportunity 182 VOLVO-494 volunteer \N +1172 opp-pending VOL-216 opportunity 182 VOLVO-631 volunteer \N +1454 opp-pending VOL-338 opportunity 278 VOLVO-85 volunteer \N +1174 opp-pending VOL-218 opportunity 183 VOLVO-538 volunteer \N +1175 opp-pending VOL-218 opportunity 183 VOLVO-506 volunteer \N +1176 opp-pending VOL-218 opportunity 183 VOLVO-616 volunteer \N +1177 opp-pending VOL-218 opportunity 183 VOLVO-678 volunteer \N +1178 opp-pending VOL-218 opportunity 183 VOLVO-499 volunteer \N +1179 opp-pending VOL-218 opportunity 183 VOLVO-532 volunteer \N +1455 opp-pending VOL-338 opportunity 278 VOLVO-40 volunteer \N +1456 opp-pending VOL-338 opportunity 278 VOLVO-272 volunteer \N +1182 opp-pending VOL-219 opportunity 184 VOLVO-645 volunteer \N +1183 opp-pending VOL-219 opportunity 184 VOLVO-775 volunteer \N +1184 opp-pending VOL-221 opportunity 185 VOLVO-546 volunteer \N +1185 opp-pending VOL-221 opportunity 185 VOLVO-712 volunteer \N +1186 opp-pending VOL-221 opportunity 185 VOLVO-735 volunteer \N +1187 opp-pending VOL-221 opportunity 185 VOLVO-752 volunteer \N +1188 opp-pending VOL-221 opportunity 185 VOLVO-596 volunteer \N +1189 opp-pending VOL-221 opportunity 185 VOLVO-478 volunteer \N +1190 opp-pending VOL-221 opportunity 185 VOLVO-763 volunteer \N +1191 opp-pending VOL-222 opportunity 186 VOLVO-546 volunteer \N +1192 opp-pending VOL-223 opportunity 187 VOLVO-140 volunteer \N +1193 opp-pending VOL-227 opportunity 190 VOLVO-651 volunteer \N +1194 opp-pending VOL-227 opportunity 190 VOLVO-774 volunteer \N +1195 opp-pending VOL-227 opportunity 190 VOLVO-762 volunteer \N +1196 opp-pending VOL-227 opportunity 190 VOLVO-766 volunteer \N +1197 opp-pending VOL-227 opportunity 190 VOLVO-574 volunteer \N +1198 opp-pending VOL-227 opportunity 190 VOLVO-487 volunteer \N +1199 opp-pending VOL-230 opportunity 193 VOLVO-585 volunteer \N +1200 opp-pending VOL-230 opportunity 193 VOLVO-105 volunteer \N +1201 opp-pending VOL-230 opportunity 193 VOLVO-130 volunteer \N +1202 opp-pending VOL-231 opportunity 194 VOLVO-651 volunteer \N +1203 opp-pending VOL-231 opportunity 194 VOLVO-667 volunteer \N +1204 opp-pending VOL-231 opportunity 194 VOLVO-681 volunteer \N +1205 opp-pending VOL-231 opportunity 194 VOLVO-487 volunteer \N +1206 opp-pending VOL-231 opportunity 194 VOLVO-774 volunteer \N +1207 opp-pending VOL-231 opportunity 194 VOLVO-762 volunteer \N +1208 opp-pending VOL-231 opportunity 194 VOLVO-766 volunteer \N +1209 opp-pending VOL-231 opportunity 194 VOLVO-574 volunteer \N +1210 opp-pending VOL-232 opportunity 195 VOLVO-651 volunteer \N +1211 opp-pending VOL-232 opportunity 195 VOLVO-533 volunteer \N +1212 opp-pending VOL-232 opportunity 195 VOLVO-774 volunteer \N +1213 opp-pending VOL-232 opportunity 195 VOLVO-762 volunteer \N +1214 opp-pending VOL-232 opportunity 195 VOLVO-766 volunteer \N +1215 opp-pending VOL-232 opportunity 195 VOLVO-574 volunteer \N +1216 opp-pending VOL-232 opportunity 195 VOLVO-487 volunteer \N +1217 opp-pending VOL-233 opportunity 196 VOLVO-651 volunteer \N +1218 opp-pending VOL-233 opportunity 196 VOLVO-474 volunteer \N +1219 opp-pending VOL-233 opportunity 196 VOLVO-667 volunteer \N +1220 opp-pending VOL-233 opportunity 196 VOLVO-487 volunteer \N +1221 opp-pending VOL-233 opportunity 196 VOLVO-766 volunteer \N +1222 opp-pending VOL-233 opportunity 196 VOLVO-574 volunteer \N +1223 opp-pending VOL-233 opportunity 196 VOLVO-762 volunteer \N +1224 opp-pending VOL-233 opportunity 196 VOLVO-774 volunteer \N +1225 opp-active VOL-233 opportunity 196 VOLVO-555 volunteer \N +1226 opp-pending VOL-234 opportunity 197 VOLVO-706 volunteer \N +1227 opp-pending VOL-234 opportunity 197 VOLVO-623 volunteer \N +1228 opp-pending VOL-234 opportunity 197 VOLVO-620 volunteer \N +1229 opp-pending VOL-234 opportunity 197 VOLVO-16 volunteer \N +1230 opp-pending VOL-235 opportunity 198 VOLVO-23 volunteer \N +1231 opp-pending VOL-235 opportunity 198 VOLVO-51 volunteer \N +1232 opp-pending VOL-235 opportunity 198 VOLVO-97 volunteer \N +1233 opp-pending VOL-235 opportunity 198 VOLVO-291 volunteer \N +1234 opp-pending VOL-235 opportunity 198 VOLVO-284 volunteer \N +1458 opp-pending VOL-339 opportunity 279 VOLVO-97 volunteer \N +1237 opp-pending VOL-239 opportunity 201 VOLVO-106 volunteer \N +1238 opp-pending VOL-239 opportunity 201 VOLVO-138 volunteer \N +1239 opp-matched VOL-239 opportunity 201 VOLVO-476 volunteer \N +1240 opp-pending VOL-240 opportunity 202 VOLVO-546 volunteer \N +1241 opp-pending VOL-241 opportunity 203 VOLVO-538 volunteer \N +1242 opp-pending VOL-241 opportunity 203 VOLVO-617 volunteer \N +1243 opp-pending VOL-241 opportunity 203 VOLVO-492 volunteer \N +1244 opp-pending VOL-241 opportunity 203 VOLVO-755 volunteer \N +1245 opp-pending VOL-241 opportunity 203 VOLVO-568 volunteer \N +1246 opp-pending VOL-241 opportunity 203 VOLVO-506 volunteer \N +1247 opp-pending VOL-243 opportunity 204 VOLVO-42 volunteer \N +1248 opp-pending VOL-244 opportunity 205 VOLVO-136 volunteer \N +1459 opp-pending VOL-339 opportunity 279 VOLVO-119 volunteer \N +1250 opp-pending VOL-250 opportunity 207 VOLVO-494 volunteer \N +1251 opp-pending VOL-250 opportunity 207 VOLVO-762 volunteer \N +1252 opp-pending VOL-250 opportunity 207 VOLVO-622 volunteer \N +1253 opp-pending VOL-250 opportunity 207 VOLVO-631 volunteer \N +1254 opp-pending VOL-250 opportunity 207 VOLVO-474 volunteer \N +1255 opp-pending VOL-250 opportunity 207 VOLVO-25 volunteer \N +1460 opp-pending VOL-339 opportunity 279 VOLVO-110 volunteer \N +1257 opp-pending VOL-251 opportunity 208 VOLVO-515 volunteer \N +1258 opp-pending VOL-251 opportunity 208 VOLVO-708 volunteer \N +1259 opp-pending VOL-251 opportunity 208 VOLVO-760 volunteer \N +1260 opp-pending VOL-251 opportunity 208 VOLVO-752 volunteer \N +1261 opp-pending VOL-251 opportunity 208 VOLVO-600 volunteer \N +1262 opp-pending VOL-251 opportunity 208 VOLVO-593 volunteer \N +1263 opp-pending VOL-253 opportunity 210 VOLVO-708 volunteer \N +1264 opp-pending VOL-253 opportunity 210 VOLVO-566 volunteer \N +1265 opp-pending VOL-253 opportunity 210 VOLVO-612 volunteer \N +1266 opp-pending VOL-253 opportunity 210 VOLVO-562 volunteer \N +1267 opp-pending VOL-253 opportunity 210 VOLVO-659 volunteer \N +1461 opp-pending VOL-339 opportunity 279 VOLVO-65 volunteer \N +1269 opp-pending VOL-257 opportunity 211 VOLVO-19 volunteer \N +1270 opp-pending VOL-257 opportunity 211 VOLVO-763 volunteer \N +1271 opp-pending VOL-257 opportunity 211 VOLVO-478 volunteer \N +1272 opp-pending VOL-257 opportunity 211 VOLVO-546 volunteer \N +1273 opp-pending VOL-257 opportunity 211 VOLVO-24 volunteer \N +1462 opp-pending VOL-339 opportunity 279 VOLVO-533 volunteer \N +1276 opp-pending VOL-260 opportunity 213 VOLVO-128 volunteer \N +1277 opp-pending VOL-260 opportunity 213 VOLVO-345 volunteer \N +1278 opp-pending VOL-260 opportunity 213 VOLVO-447 volunteer \N +1279 opp-pending VOL-260 opportunity 213 VOLVO-456 volunteer \N +1465 opp-pending VOL-341 opportunity 280 VOLVO-741 volunteer \N +1282 opp-pending VOL-262 opportunity 215 VOLVO-527 volunteer \N +1283 opp-pending VOL-262 opportunity 215 VOLVO-41 volunteer \N +1284 opp-pending VOL-262 opportunity 215 VOLVO-580 volunteer \N +1285 opp-pending VOL-262 opportunity 215 VOLVO-674 volunteer \N +1286 opp-pending VOL-265 opportunity 217 VOLVO-116 volunteer \N +1287 opp-pending VOL-265 opportunity 217 VOLVO-162 volunteer \N +1288 opp-pending VOL-265 opportunity 217 VOLVO-448 volunteer \N +1289 opp-pending VOL-265 opportunity 217 VOLVO-819 volunteer \N +1466 opp-pending VOL-341 opportunity 280 VOLVO-69 volunteer \N +1291 opp-pending VOL-266 opportunity 218 VOLVO-55 volunteer \N +1292 opp-pending VOL-266 opportunity 218 VOLVO-107 volunteer \N +1467 opp-pending VOL-341 opportunity 280 VOLVO-613 volunteer \N +1294 opp-pending VOL-267 opportunity 219 VOLVO-335 volunteer \N +1295 opp-pending VOL-267 opportunity 219 VOLVO-395 volunteer \N +1296 opp-pending VOL-267 opportunity 219 VOLVO-428 volunteer \N +1468 opp-pending VOL-341 opportunity 280 VOLVO-675 volunteer \N +1469 opp-pending VOL-341 opportunity 280 VOLVO-16 volunteer \N +1470 opp-pending VOL-341 opportunity 280 VOLVO-631 volunteer \N +1300 opp-pending VOL-270 opportunity 222 VOLVO-487 volunteer \N +1301 opp-pending VOL-270 opportunity 222 VOLVO-327 volunteer \N +1302 opp-pending VOL-270 opportunity 222 VOLVO-309 volunteer \N +1303 opp-pending VOL-270 opportunity 222 VOLVO-214 volunteer \N +1304 opp-pending VOL-270 opportunity 222 VOLVO-437 volunteer \N +1305 opp-pending VOL-270 opportunity 222 VOLVO-421 volunteer \N +1471 opp-pending VOL-341 opportunity 280 VOLVO-706 volunteer \N +1472 opp-pending VOL-341 opportunity 280 VOLVO-620 volunteer \N +1308 opp-active VOL-270 opportunity 222 VOLVO-302 volunteer \N +1309 opp-matched VOL-271 opportunity 223 VOLVO-697 volunteer \N +1473 opp-pending VOL-341 opportunity 280 VOLVO-563 volunteer \N +1311 opp-pending VOL-272 opportunity 224 VOLVO-213 volunteer \N +1312 opp-pending VOL-276 opportunity 228 VOLVO-662 volunteer \N +1313 opp-pending VOL-276 opportunity 228 VOLVO-37 volunteer \N +1315 opp-pending VOL-277 opportunity 229 VOLVO-60 volunteer \N +1475 opp-pending VOL-342 opportunity 281 VOLVO-721 volunteer \N +1317 opp-pending VOL-278 opportunity 230 VOLVO-60 volunteer \N +1318 opp-pending VOL-278 opportunity 230 VOLVO-305 volunteer \N +1476 opp-pending VOL-342 opportunity 281 VOLVO-658 volunteer \N +1320 opp-pending VOL-281 opportunity 233 VOLVO-622 volunteer \N +1321 opp-pending VOL-281 opportunity 233 VOLVO-631 volunteer \N +1322 opp-pending VOL-281 opportunity 233 VOLVO-574 volunteer \N +1323 opp-pending VOL-281 opportunity 233 VOLVO-615 volunteer \N +1325 opp-pending VOL-282 opportunity 234 VOLVO-673 volunteer \N +1326 opp-pending VOL-282 opportunity 234 VOLVO-90 volunteer \N +1327 opp-pending VOL-282 opportunity 234 VOLVO-626 volunteer \N +1328 opp-pending VOL-283 opportunity 235 VOLVO-41 volunteer \N +1478 opp-pending VOL-343 opportunity 282 VOLVO-69 volunteer \N +1330 opp-pending VOL-287 opportunity 236 VOLVO-49 volunteer \N +1331 opp-pending VOL-287 opportunity 236 VOLVO-65 volunteer \N +1333 opp-pending VOL-289 opportunity 237 VOLVO-25 volunteer \N +1334 opp-pending VOL-289 opportunity 237 VOLVO-719 volunteer \N +1480 opp-pending VOL-345 opportunity 283 VOLVO-773 volunteer \N +1336 opp-pending VOL-290 opportunity 238 VOLVO-659 volunteer \N +1337 opp-pending VOL-290 opportunity 238 VOLVO-760 volunteer \N +1338 opp-pending VOL-290 opportunity 238 VOLVO-752 volunteer \N +1339 opp-pending VOL-290 opportunity 238 VOLVO-773 volunteer \N +1340 opp-pending VOL-290 opportunity 238 VOLVO-60 volunteer \N +1341 opp-pending VOL-290 opportunity 238 VOLVO-562 volunteer \N +1342 opp-pending VOL-290 opportunity 238 VOLVO-612 volunteer \N +1343 opp-pending VOL-290 opportunity 238 VOLVO-566 volunteer \N +1344 opp-pending VOL-290 opportunity 238 VOLVO-756 volunteer \N +1345 opp-pending VOL-290 opportunity 238 VOLVO-678 volunteer \N +1346 opp-pending VOL-290 opportunity 238 VOLVO-37 volunteer \N +1481 opp-pending VOL-345 opportunity 283 VOLVO-612 volunteer \N +1348 opp-pending VOL-291 opportunity 239 VOLVO-101 volunteer \N +1349 opp-pending VOL-291 opportunity 239 VOLVO-119 volunteer \N +1350 opp-pending VOL-291 opportunity 239 VOLVO-205 volunteer \N +1482 opp-pending VOL-345 opportunity 283 VOLVO-566 volunteer \N +1352 opp-active VOL-291 opportunity 239 VOLVO-109 volunteer \N +1353 opp-pending VOL-292 opportunity 240 VOLVO-478 volunteer \N +1354 opp-pending VOL-292 opportunity 240 VOLVO-763 volunteer \N +1355 opp-pending VOL-292 opportunity 240 VOLVO-19 volunteer \N +1483 opp-pending VOL-345 opportunity 283 VOLVO-85 volunteer \N +1357 opp-pending VOL-293 opportunity 241 VOLVO-69 volunteer \N +1484 opp-pending VOL-345 opportunity 283 VOLVO-678 volunteer \N +1359 opp-pending VOL-294 opportunity 242 VOLVO-54 volunteer \N +1360 opp-active VOL-294 opportunity 242 VOLVO-751 volunteer \N +1361 opp-pending VOL-295 opportunity 243 VOLVO-751 volunteer \N +1362 opp-pending VOL-295 opportunity 243 VOLVO-527 volunteer \N +1363 opp-pending VOL-295 opportunity 243 VOLVO-54 volunteer \N +1485 opp-pending VOL-345 opportunity 283 VOLVO-19 volunteer \N +1486 opp-pending VOL-346 opportunity 284 VOLVO-41 volunteer \N +1366 opp-pending VOL-296 opportunity 244 VOLVO-751 volunteer \N +1367 opp-pending VOL-296 opportunity 244 VOLVO-527 volunteer \N +1368 opp-pending VOL-296 opportunity 244 VOLVO-54 volunteer \N +1487 opp-pending VOL-346 opportunity 284 VOLVO-580 volunteer \N +1488 opp-pending VOL-346 opportunity 284 VOLVO-688 volunteer \N +1371 opp-pending VOL-297 opportunity 245 VOLVO-735 volunteer \N +1372 opp-pending VOL-297 opportunity 245 VOLVO-107 volunteer \N +1373 opp-pending VOL-301 opportunity 248 VOLVO-741 volunteer \N +1489 opp-pending VOL-346 opportunity 284 VOLVO-745 volunteer \N +1490 opp-pending VOL-346 opportunity 284 VOLVO-616 volunteer \N +1376 opp-pending VOL-302 opportunity 249 VOLVO-717 volunteer \N +1377 opp-pending VOL-302 opportunity 249 VOLVO-668 volunteer \N +1378 opp-pending VOL-302 opportunity 249 VOLVO-491 volunteer \N +1379 opp-pending VOL-302 opportunity 249 VOLVO-608 volunteer \N +1380 opp-pending VOL-302 opportunity 249 VOLVO-25 volunteer \N +1491 opp-pending VOL-346 opportunity 284 VOLVO-606 volunteer \N +1492 opp-pending VOL-346 opportunity 284 VOLVO-507 volunteer \N +1383 opp-pending VOL-308 opportunity 251 VOLVO-741 volunteer \N +1384 opp-pending VOL-308 opportunity 251 VOLVO-69 volunteer \N +1386 opp-pending VOL-309 opportunity 252 VOLVO-140 volunteer \N +1387 opp-pending VOL-310 opportunity 253 VOLVO-741 volunteer \N +1388 opp-pending VOL-310 opportunity 253 VOLVO-69 volunteer \N +1494 opp-pending VOL-347 opportunity 285 VOLVO-69 volunteer \N +1390 opp-pending VOL-311 opportunity 254 VOLVO-41 volunteer \N +1391 opp-pending VOL-311 opportunity 254 VOLVO-25 volunteer \N +1392 opp-pending VOL-311 opportunity 254 VOLVO-538 volunteer \N +1393 opp-pending VOL-311 opportunity 254 VOLVO-507 volunteer \N +1394 opp-pending VOL-311 opportunity 254 VOLVO-745 volunteer \N +1395 opp-pending VOL-312 opportunity 255 VOLVO-615 volunteer \N +1396 opp-pending VOL-312 opportunity 255 VOLVO-25 volunteer \N +1397 opp-pending VOL-312 opportunity 255 VOLVO-608 volunteer \N +1398 opp-pending VOL-312 opportunity 255 VOLVO-761 volunteer \N +1399 opp-pending VOL-312 opportunity 255 VOLVO-65 volunteer \N +1400 opp-pending VOL-312 opportunity 255 VOLVO-766 volunteer \N +1401 opp-pending VOL-312 opportunity 255 VOLVO-533 volunteer \N +1402 opp-pending VOL-312 opportunity 255 VOLVO-496 volunteer \N +1403 opp-pending VOL-312 opportunity 255 VOLVO-622 volunteer \N +1404 opp-pending VOL-313 opportunity 256 VOLVO-161 volunteer \N +1405 opp-pending VOL-313 opportunity 256 VOLVO-361 volunteer \N +1495 opp-pending VOL-347 opportunity 285 VOLVO-568 volunteer \N +1407 opp-pending VOL-315 opportunity 258 VOLVO-741 volunteer \N +1408 opp-pending VOL-315 opportunity 258 VOLVO-538 volunteer \N +1496 opp-pending VOL-347 opportunity 285 VOLVO-706 volunteer \N +1410 opp-active VOL-317 opportunity 260 VOLVO-101 volunteer \N +1497 opp-pending VOL-347 opportunity 285 VOLVO-492 volunteer \N +1498 opp-pending VOL-347 opportunity 285 VOLVO-563 volunteer \N +1499 opp-pending VOL-347 opportunity 285 VOLVO-631 volunteer \N +1500 opp-pending VOL-347 opportunity 285 VOLVO-620 volunteer \N +1501 opp-pending VOL-348 opportunity 286 VOLVO-25 volunteer \N +1502 opp-pending VOL-348 opportunity 286 VOLVO-615 volunteer \N +1503 opp-pending VOL-348 opportunity 286 VOLVO-697 volunteer \N +1504 opp-pending VOL-348 opportunity 286 VOLVO-65 volunteer \N +1506 opp-pending VOL-349 opportunity 287 VOLVO-25 volunteer \N +1507 opp-pending VOL-349 opportunity 287 VOLVO-615 volunteer \N +1508 opp-pending VOL-349 opportunity 287 VOLVO-65 volunteer \N +1509 opp-pending VOL-349 opportunity 287 VOLVO-697 volunteer \N +1510 opp-pending VOL-349 opportunity 287 VOLVO-651 volunteer \N +1512 opp-pending VOL-353 opportunity 288 VOLVO-741 volunteer \N +1513 opp-pending VOL-353 opportunity 288 VOLVO-620 volunteer \N +1514 opp-pending VOL-353 opportunity 288 VOLVO-631 volunteer \N +1515 opp-pending VOL-353 opportunity 288 VOLVO-613 volunteer \N +1516 opp-pending VOL-353 opportunity 288 VOLVO-690 volunteer \N +1517 opp-pending VOL-355 opportunity 290 VOLVO-606 volunteer \N +1518 opp-pending VOL-355 opportunity 290 VOLVO-603 volunteer \N +1519 opp-pending VOL-355 opportunity 290 VOLVO-674 volunteer \N +1520 opp-pending VOL-355 opportunity 290 VOLVO-15 volunteer \N +1521 opp-pending VOL-355 opportunity 290 VOLVO-54 volunteer \N +1522 opp-pending VOL-355 opportunity 290 VOLVO-580 volunteer \N +1523 opp-pending VOL-355 opportunity 290 VOLVO-658 volunteer \N +1524 opp-pending VOL-356 opportunity 291 VOLVO-603 volunteer \N +1525 opp-pending VOL-356 opportunity 291 VOLVO-658 volunteer \N +1526 opp-pending VOL-356 opportunity 291 VOLVO-580 volunteer \N +1527 opp-pending VOL-356 opportunity 291 VOLVO-54 volunteer \N +1528 opp-pending VOL-356 opportunity 291 VOLVO-674 volunteer \N +1529 opp-pending VOL-356 opportunity 291 VOLVO-15 volunteer \N +1530 opp-pending VOL-356 opportunity 291 VOLVO-606 volunteer \N +1532 opp-pending VOL-361 opportunity 296 VOLVO-81 volunteer \N +1534 opp-pending VOL-363 opportunity 298 VOLVO-148 volunteer \N +1535 opp-pending VOL-365 opportunity 300 VOLVO-533 volunteer \N +1536 opp-pending VOL-365 opportunity 300 VOLVO-608 volunteer \N +1537 opp-pending VOL-365 opportunity 300 VOLVO-762 volunteer \N +1538 opp-pending VOL-365 opportunity 300 VOLVO-668 volunteer \N +1539 opp-pending VOL-365 opportunity 300 VOLVO-615 volunteer \N +1540 opp-pending VOL-365 opportunity 300 VOLVO-14 volunteer \N +1541 opp-pending VOL-365 opportunity 300 VOLVO-697 volunteer \N +1542 opp-pending VOL-365 opportunity 300 VOLVO-700 volunteer \N +1543 opp-pending VOL-365 opportunity 300 VOLVO-7 volunteer \N +1544 opp-pending VOL-365 opportunity 300 VOLVO-487 volunteer \N +1545 opp-pending VOL-365 opportunity 300 VOLVO-719 volunteer \N +1546 opp-pending VOL-365 opportunity 300 VOLVO-574 volunteer \N +1547 opp-pending VOL-365 opportunity 300 VOLVO-681 volunteer \N +1548 opp-pending VOL-365 opportunity 300 VOLVO-717 volunteer \N +1549 opp-pending VOL-365 opportunity 300 VOLVO-633 volunteer \N +1550 opp-pending VOL-365 opportunity 300 VOLVO-667 volunteer \N +1551 opp-pending VOL-365 opportunity 300 VOLVO-714 volunteer \N +1552 opp-pending VOL-365 opportunity 300 VOLVO-494 volunteer \N +1553 opp-pending VOL-365 opportunity 300 VOLVO-496 volunteer \N +1554 opp-pending VOL-367 opportunity 302 VOLVO-681 volunteer \N +1555 opp-pending VOL-367 opportunity 302 VOLVO-474 volunteer \N +1556 opp-pending VOL-367 opportunity 302 VOLVO-574 volunteer \N +1557 opp-pending VOL-367 opportunity 302 VOLVO-487 volunteer \N +1558 opp-pending VOL-368 opportunity 303 VOLVO-741 volunteer \N +1559 opp-pending VOL-368 opportunity 303 VOLVO-69 volunteer \N +1560 opp-pending VOL-368 opportunity 303 VOLVO-16 volunteer \N +1561 opp-pending VOL-368 opportunity 303 VOLVO-620 volunteer \N +1562 opp-pending VOL-368 opportunity 303 VOLVO-706 volunteer \N +1563 opp-pending VOL-368 opportunity 303 VOLVO-631 volunteer \N +1564 opp-pending VOL-368 opportunity 303 VOLVO-563 volunteer \N +1566 opp-pending VOL-370 opportunity 304 VOLVO-681 volunteer \N +1567 opp-pending VOL-370 opportunity 304 VOLVO-487 volunteer \N +1568 opp-pending VOL-370 opportunity 304 VOLVO-697 volunteer \N +1569 opp-pending VOL-370 opportunity 304 VOLVO-533 volunteer \N +1570 opp-pending VOL-370 opportunity 304 VOLVO-761 volunteer \N +1571 opp-pending VOL-370 opportunity 304 VOLVO-667 volunteer \N +1572 opp-pending VOL-370 opportunity 304 VOLVO-762 volunteer \N +1573 opp-pending VOL-370 opportunity 304 VOLVO-474 volunteer \N +1574 opp-pending VOL-370 opportunity 304 VOLVO-717 volunteer \N +1575 opp-pending VOL-370 opportunity 304 VOLVO-622 volunteer \N +1576 opp-pending VOL-370 opportunity 304 VOLVO-631 volunteer \N +1577 opp-pending VOL-370 opportunity 304 VOLVO-25 volunteer \N +1578 opp-pending VOL-370 opportunity 304 VOLVO-523 volunteer \N +1579 opp-pending VOL-370 opportunity 304 VOLVO-574 volunteer \N +1582 opp-pending VOL-371 opportunity 305 VOLVO-631 volunteer \N +1583 opp-pending VOL-371 opportunity 305 VOLVO-667 volunteer \N +1584 opp-pending VOL-371 opportunity 305 VOLVO-474 volunteer \N +1585 opp-pending VOL-371 opportunity 305 VOLVO-523 volunteer \N +1586 opp-pending VOL-371 opportunity 305 VOLVO-533 volunteer \N +1587 opp-pending VOL-371 opportunity 305 VOLVO-761 volunteer \N +1588 opp-pending VOL-371 opportunity 305 VOLVO-681 volunteer \N +1589 opp-pending VOL-371 opportunity 305 VOLVO-574 volunteer \N +1590 opp-pending VOL-372 opportunity 306 VOLVO-741 volunteer \N +1591 opp-pending VOL-372 opportunity 306 VOLVO-620 volunteer \N +1592 opp-pending VOL-372 opportunity 306 VOLVO-631 volunteer \N +1593 opp-pending VOL-372 opportunity 306 VOLVO-706 volunteer \N +1594 opp-pending VOL-372 opportunity 306 VOLVO-690 volunteer \N +1595 opp-pending VOL-372 opportunity 306 VOLVO-613 volunteer \N +1596 opp-pending VOL-374 opportunity 307 VOLVO-91 volunteer \N +1597 opp-pending VOL-374 opportunity 307 VOLVO-159 volunteer \N +1598 opp-pending VOL-374 opportunity 307 VOLVO-217 volunteer \N +1599 opp-pending VOL-374 opportunity 307 VOLVO-340 volunteer \N +1600 opp-pending VOL-374 opportunity 307 VOLVO-206 volunteer \N +1601 opp-pending VOL-374 opportunity 307 VOLVO-362 volunteer \N +1603 opp-pending VOL-376 opportunity 308 VOLVO-741 volunteer \N +1604 opp-pending VOL-376 opportunity 308 VOLVO-620 volunteer \N +1605 opp-pending VOL-376 opportunity 308 VOLVO-631 volunteer \N +1606 opp-pending VOL-376 opportunity 308 VOLVO-706 volunteer \N +1607 opp-pending VOL-376 opportunity 308 VOLVO-690 volunteer \N +1608 opp-pending VOL-376 opportunity 308 VOLVO-613 volunteer \N +1609 opp-pending VOL-378 opportunity 309 VOLVO-761 volunteer \N +1610 opp-pending VOL-378 opportunity 309 VOLVO-717 volunteer \N +1611 opp-pending VOL-378 opportunity 309 VOLVO-667 volunteer \N +1612 opp-pending VOL-378 opportunity 309 VOLVO-719 volunteer \N +1613 opp-pending VOL-378 opportunity 309 VOLVO-598 volunteer \N +1614 opp-pending VOL-378 opportunity 309 VOLVO-681 volunteer \N +1616 opp-pending VOL-379 opportunity 310 VOLVO-741 volunteer \N +1617 opp-pending VOL-379 opportunity 310 VOLVO-620 volunteer \N +1618 opp-pending VOL-379 opportunity 310 VOLVO-631 volunteer \N +1619 opp-pending VOL-379 opportunity 310 VOLVO-706 volunteer \N +1620 opp-pending VOL-379 opportunity 310 VOLVO-690 volunteer \N +1621 opp-pending VOL-380 opportunity 311 VOLVO-25 volunteer \N +1622 opp-pending VOL-380 opportunity 311 VOLVO-714 volunteer \N +1623 opp-pending VOL-380 opportunity 311 VOLVO-496 volunteer \N +1624 opp-pending VOL-380 opportunity 311 VOLVO-668 volunteer \N +1625 opp-pending VOL-380 opportunity 311 VOLVO-65 volunteer \N +1626 opp-pending VOL-382 opportunity 312 VOLVO-761 volunteer \N +1627 opp-pending VOL-382 opportunity 312 VOLVO-631 volunteer \N +1628 opp-pending VOL-382 opportunity 312 VOLVO-717 volunteer \N +1629 opp-pending VOL-382 opportunity 312 VOLVO-719 volunteer \N +1630 opp-pending VOL-382 opportunity 312 VOLVO-598 volunteer \N +1631 opp-pending VOL-383 opportunity 313 VOLVO-102 volunteer \N +1632 opp-pending VOL-383 opportunity 313 VOLVO-86 volunteer \N +1634 opp-pending VOL-384 opportunity 314 VOLVO-266 volunteer \N +1636 opp-matched VOL-386 opportunity 316 VOLVO-110 volunteer \N +1637 opp-pending VOL-387 opportunity 317 VOLVO-77 volunteer \N +1638 opp-pending VOL-387 opportunity 317 VOLVO-59 volunteer \N +1639 opp-pending VOL-387 opportunity 317 VOLVO-90 volunteer \N +1640 opp-pending VOL-387 opportunity 317 VOLVO-43 volunteer \N +1642 opp-pending VOL-388 opportunity 318 VOLVO-215 volunteer \N +1643 opp-pending VOL-388 opportunity 318 VOLVO-456 volunteer \N +1644 opp-pending VOL-389 opportunity 319 VOLVO-101 volunteer \N +1645 opp-pending VOL-389 opportunity 319 VOLVO-104 volunteer \N +1646 opp-pending VOL-389 opportunity 319 VOLVO-428 volunteer \N +1648 opp-pending VOL-390 opportunity 320 VOLVO-25 volunteer \N +1649 opp-pending VOL-392 opportunity 322 VOLVO-74 volunteer \N +1651 opp-pending VOL-393 opportunity 323 VOLVO-708 volunteer \N +1652 opp-pending VOL-393 opportunity 323 VOLVO-773 volunteer \N +1653 opp-pending VOL-393 opportunity 323 VOLVO-85 volunteer \N +1654 opp-pending VOL-394 opportunity 324 VOLVO-116 volunteer \N +1655 opp-pending VOL-394 opportunity 324 VOLVO-741 volunteer \N +1656 opp-pending VOL-394 opportunity 324 VOLVO-631 volunteer \N +1657 opp-pending VOL-394 opportunity 324 VOLVO-68 volunteer \N +1659 opp-pending VOL-395 opportunity 325 VOLVO-149 volunteer \N +1662 opp-pending VOL-410 opportunity 328 VOLVO-210 volunteer \N +1664 opp-matched VOL-425 opportunity 341 VOLVO-94 volunteer \N +1665 opp-pending VOL-426 opportunity 342 VOLVO-533 volunteer \N +1666 opp-pending VOL-426 opportunity 342 VOLVO-97 volunteer \N +1667 opp-pending VOL-426 opportunity 342 VOLVO-95 volunteer \N +1668 opp-pending VOL-426 opportunity 342 VOLVO-474 volunteer \N +1669 opp-active VOL-426 opportunity 342 VOLVO-523 volunteer \N +1670 opp-pending VOL-427 opportunity 343 VOLVO-116 volunteer \N +1671 opp-pending VOL-427 opportunity 343 VOLVO-16 volunteer \N +1672 opp-pending VOL-427 opportunity 343 VOLVO-69 volunteer \N +1673 opp-pending VOL-427 opportunity 343 VOLVO-620 volunteer \N +1674 opp-pending VOL-427 opportunity 343 VOLVO-706 volunteer \N +1675 opp-pending VOL-427 opportunity 343 VOLVO-613 volunteer \N +1678 opp-pending VOL-428 opportunity 344 VOLVO-555 volunteer \N +1679 opp-pending VOL-429 opportunity 345 VOLVO-65 volunteer \N +1680 opp-pending VOL-429 opportunity 345 VOLVO-37 volunteer \N +1681 opp-pending VOL-429 opportunity 345 VOLVO-546 volunteer \N +1682 opp-pending VOL-429 opportunity 345 VOLVO-24 volunteer \N +1683 opp-pending VOL-429 opportunity 345 VOLVO-124 volunteer \N +1685 opp-pending VOL-430 opportunity 346 VOLVO-697 volunteer \N +1686 opp-pending VOL-430 opportunity 346 VOLVO-574 volunteer \N +1687 opp-pending VOL-430 opportunity 346 VOLVO-681 volunteer \N +1688 opp-pending VOL-430 opportunity 346 VOLVO-761 volunteer \N +1689 opp-pending VOL-430 opportunity 346 VOLVO-533 volunteer \N +1690 opp-pending VOL-430 opportunity 346 VOLVO-622 volunteer \N +1691 opp-pending VOL-431 opportunity 347 VOLVO-185 volunteer \N +1692 opp-pending VOL-435 opportunity 350 VOLVO-717 volunteer \N +1693 opp-pending VOL-435 opportunity 350 VOLVO-700 volunteer \N +1694 opp-pending VOL-435 opportunity 350 VOLVO-487 volunteer \N +1695 opp-pending VOL-435 opportunity 350 VOLVO-124 volunteer \N +1696 opp-pending VOL-435 opportunity 350 VOLVO-538 volunteer \N +1698 opp-pending VOL-436 opportunity 351 VOLVO-613 volunteer \N +1700 opp-pending VOL-439 opportunity 354 VOLVO-527 volunteer \N +1701 opp-pending VOL-439 opportunity 354 VOLVO-751 volunteer \N +1704 opp-pending VOL-440 opportunity 355 VOLVO-478 volunteer \N +1705 opp-pending VOL-440 opportunity 355 VOLVO-19 volunteer \N +1706 opp-pending VOL-440 opportunity 355 VOLVO-37 volunteer \N +1708 opp-pending VOL-441 opportunity 356 VOLVO-40 volunteer \N +1709 opp-pending VOL-441 opportunity 356 VOLVO-141 volunteer \N +1710 opp-pending VOL-441 opportunity 356 VOLVO-297 volunteer \N +1713 opp-pending VOL-442 opportunity 357 VOLVO-478 volunteer \N +1714 opp-pending VOL-442 opportunity 357 VOLVO-19 volunteer \N +1715 opp-pending VOL-442 opportunity 357 VOLVO-37 volunteer \N +1716 opp-pending VOL-442 opportunity 357 VOLVO-72 volunteer \N +1717 opp-pending VOL-442 opportunity 357 VOLVO-144 volunteer \N +1718 opp-pending VOL-442 opportunity 357 VOLVO-142 volunteer \N +1720 opp-pending VOL-445 opportunity 360 VOLVO-628 volunteer \N +1721 opp-pending VOL-445 opportunity 360 VOLVO-337 volunteer \N +1722 opp-matched VOL-445 opportunity 360 VOLVO-763 volunteer \N +1723 opp-matched VOL-445 opportunity 360 VOLVO-549 volunteer \N +1726 opp-pending VOL-446 opportunity 361 VOLVO-608 volunteer \N +1727 opp-pending VOL-446 opportunity 361 VOLVO-697 volunteer \N +1728 opp-pending VOL-446 opportunity 361 VOLVO-574 volunteer \N +1729 opp-pending VOL-446 opportunity 361 VOLVO-533 volunteer \N +1730 opp-pending VOL-446 opportunity 361 VOLVO-761 volunteer \N +1731 opp-pending VOL-446 opportunity 361 VOLVO-622 volunteer \N +1733 opp-pending VOL-448 opportunity 362 VOLVO-150 volunteer \N +1734 opp-pending VOL-448 opportunity 362 VOLVO-182 volunteer \N +1735 opp-pending VOL-448 opportunity 362 VOLVO-396 volunteer \N +1736 opp-pending VOL-448 opportunity 362 VOLVO-819 volunteer \N +1737 opp-pending VOL-448 opportunity 362 VOLVO-821 volunteer \N +1738 opp-pending VOL-448 opportunity 362 VOLVO-451 volunteer \N +1739 opp-matched VOL-448 opportunity 362 VOLVO-21 volunteer \N +1740 opp-matched VOL-448 opportunity 362 VOLVO-718 volunteer \N +1741 opp-pending VOL-451 opportunity 363 VOLVO-151 volunteer \N +1744 opp-pending VOL-452 opportunity 364 VOLVO-428 volunteer \N +1745 opp-pending VOL-452 opportunity 364 VOLVO-431 volunteer \N +1746 opp-pending VOL-453 opportunity 365 VOLVO-538 volunteer \N +1747 opp-pending VOL-453 opportunity 365 VOLVO-565 volunteer \N +1748 opp-pending VOL-453 opportunity 365 VOLVO-598 volunteer \N +1749 opp-pending VOL-461 opportunity 373 VOLVO-207 volunteer \N +1750 opp-pending VOL-462 opportunity 374 VOLVO-191 volunteer \N +1751 opp-pending VOL-462 opportunity 374 VOLVO-174 volunteer \N +1753 opp-pending VOL-463 opportunity 375 VOLVO-598 volunteer \N +1754 opp-pending VOL-463 opportunity 375 VOLVO-565 volunteer \N +1755 opp-pending VOL-463 opportunity 375 VOLVO-538 volunteer \N +1756 opp-pending VOL-464 opportunity 376 VOLVO-25 volunteer \N +1757 opp-pending VOL-464 opportunity 376 VOLVO-65 volunteer \N +1758 opp-pending VOL-464 opportunity 376 VOLVO-533 volunteer \N +1759 opp-pending VOL-464 opportunity 376 VOLVO-761 volunteer \N +1760 opp-pending VOL-464 opportunity 376 VOLVO-719 volunteer \N +1761 opp-pending VOL-464 opportunity 376 VOLVO-608 volunteer \N +1762 opp-pending VOL-464 opportunity 376 VOLVO-697 volunteer \N +1764 opp-pending VOL-465 opportunity 377 VOLVO-171 volunteer \N +1765 opp-pending VOL-465 opportunity 377 VOLVO-173 volunteer \N +1766 opp-matched VOL-465 opportunity 377 VOLVO-163 volunteer \N +1772 opp-pending VOL-472 opportunity 382 VOLVO-134 volunteer \N +1773 opp-pending VOL-472 opportunity 382 VOLVO-65 volunteer \N +1774 opp-pending VOL-472 opportunity 382 VOLVO-25 volunteer \N +1775 opp-pending VOL-473 opportunity 383 VOLVO-159 volunteer \N +1776 opp-pending VOL-473 opportunity 383 VOLVO-629 volunteer \N +1777 opp-pending VOL-473 opportunity 383 VOLVO-36 volunteer \N +1779 opp-pending VOL-474 opportunity 384 VOLVO-742 volunteer \N +1780 opp-pending VOL-476 opportunity 386 VOLVO-25 volunteer \N +1781 opp-pending VOL-476 opportunity 386 VOLVO-697 volunteer \N +1782 opp-pending VOL-476 opportunity 386 VOLVO-681 volunteer \N +1784 opp-pending VOL-477 opportunity 387 VOLVO-706 volunteer \N +1785 opp-pending VOL-477 opportunity 387 VOLVO-69 volunteer \N +1786 opp-pending VOL-477 opportunity 387 VOLVO-506 volunteer \N +1787 opp-pending VOL-477 opportunity 387 VOLVO-620 volunteer \N +1788 opp-pending VOL-477 opportunity 387 VOLVO-675 volunteer \N +1790 opp-pending VOL-478 opportunity 388 VOLVO-666 volunteer \N +1791 opp-pending VOL-478 opportunity 388 VOLVO-174 volunteer \N +1792 opp-pending VOL-478 opportunity 388 VOLVO-171 volunteer \N +1793 opp-pending VOL-478 opportunity 388 VOLVO-41 volunteer \N +1794 opp-pending VOL-478 opportunity 388 VOLVO-551 volunteer \N +1796 opp-pending VOL-479 opportunity 389 VOLVO-67 volunteer \N +1797 opp-pending VOL-479 opportunity 389 VOLVO-163 volunteer \N +1798 opp-pending VOL-479 opportunity 389 VOLVO-178 volunteer \N +1799 opp-pending VOL-479 opportunity 389 VOLVO-515 volunteer \N +1806 opp-pending VOL-480 opportunity 390 VOLVO-523 volunteer \N +1808 opp-pending VOL-481 opportunity 391 VOLVO-135 volunteer \N +1809 opp-pending VOL-481 opportunity 391 VOLVO-80 volunteer \N +1810 opp-pending VOL-481 opportunity 391 VOLVO-85 volunteer \N +1811 opp-pending VOL-481 opportunity 391 VOLVO-164 volunteer \N +1812 opp-pending VOL-482 opportunity 392 VOLVO-181 volunteer \N +1813 opp-pending VOL-485 opportunity 395 VOLVO-588 volunteer \N +1816 opp-pending VOL-486 opportunity 396 VOLVO-533 volunteer \N +1818 opp-pending VOL-491 opportunity 401 VOLVO-191 volunteer \N +1819 opp-pending VOL-491 opportunity 401 VOLVO-161 volunteer \N +1821 opp-pending VOL-492 opportunity 402 VOLVO-574 volunteer \N +1822 opp-pending VOL-492 opportunity 402 VOLVO-762 volunteer \N +1823 opp-pending VOL-492 opportunity 402 VOLVO-598 volunteer \N +1824 opp-pending VOL-492 opportunity 402 VOLVO-65 volunteer \N +1826 opp-pending VOL-496 opportunity 406 VOLVO-191 volunteer \N +1827 opp-pending VOL-496 opportunity 406 VOLVO-186 volunteer \N +1829 opp-matched VOL-496 opportunity 406 VOLVO-238 volunteer \N +1832 opp-pending VOL-497 opportunity 407 VOLVO-195 volunteer \N +1833 opp-pending VOL-497 opportunity 407 VOLVO-686 volunteer \N +1835 opp-pending VOL-498 opportunity 408 VOLVO-766 volunteer \N +1836 opp-pending VOL-498 opportunity 408 VOLVO-555 volunteer \N +1837 opp-pending VOL-498 opportunity 408 VOLVO-65 volunteer \N +1838 opp-pending VOL-498 opportunity 408 VOLVO-598 volunteer \N +1839 opp-pending VOL-503 opportunity 411 VOLVO-174 volunteer \N +1841 opp-pending VOL-505 opportunity 413 VOLVO-248 volunteer \N +1842 opp-pending VOL-505 opportunity 413 VOLVO-274 volunteer \N +1843 opp-pending VOL-505 opportunity 413 VOLVO-285 volunteer \N +1845 opp-pending VOL-506 opportunity 414 VOLVO-308 volunteer \N +1847 opp-active VOL-506 opportunity 414 VOLVO-234 volunteer \N +1848 opp-pending VOL-507 opportunity 415 VOLVO-234 volunteer \N +1849 opp-pending VOL-507 opportunity 415 VOLVO-294 volunteer \N +1851 opp-pending VOL-508 opportunity 416 VOLVO-206 volunteer \N +1852 opp-pending VOL-508 opportunity 416 VOLVO-185 volunteer \N +1853 opp-pending VOL-508 opportunity 416 VOLVO-199 volunteer \N +1854 opp-pending VOL-508 opportunity 416 VOLVO-175 volunteer \N +1855 opp-pending VOL-508 opportunity 416 VOLVO-165 volunteer \N +1857 opp-pending VOL-509 opportunity 417 VOLVO-195 volunteer \N +1858 opp-pending VOL-509 opportunity 417 VOLVO-177 volunteer \N +1859 opp-pending VOL-509 opportunity 417 VOLVO-163 volunteer \N +1860 opp-pending VOL-509 opportunity 417 VOLVO-183 volunteer \N +1861 opp-pending VOL-510 opportunity 418 VOLVO-199 volunteer \N +1862 opp-pending VOL-510 opportunity 418 VOLVO-185 volunteer \N +1863 opp-pending VOL-510 opportunity 418 VOLVO-175 volunteer \N +1864 opp-pending VOL-510 opportunity 418 VOLVO-165 volunteer \N +1866 opp-pending VOL-512 opportunity 420 VOLVO-201 volunteer \N +1867 opp-pending VOL-512 opportunity 420 VOLVO-90 volunteer \N +1868 opp-pending VOL-512 opportunity 420 VOLVO-673 volunteer \N +1869 opp-pending VOL-512 opportunity 420 VOLVO-195 volunteer \N +1870 opp-pending VOL-513 opportunity 421 VOLVO-69 volunteer \N +1871 opp-pending VOL-513 opportunity 421 VOLVO-620 volunteer \N +1872 opp-pending VOL-513 opportunity 421 VOLVO-623 volunteer \N +1874 opp-pending VOL-514 opportunity 422 VOLVO-58 volunteer \N +1875 opp-pending VOL-514 opportunity 422 VOLVO-487 volunteer \N +1876 opp-pending VOL-514 opportunity 422 VOLVO-719 volunteer \N +1877 opp-pending VOL-515 opportunity 423 VOLVO-201 volunteer \N +1878 opp-pending VOL-515 opportunity 423 VOLVO-90 volunteer \N +1879 opp-pending VOL-515 opportunity 423 VOLVO-673 volunteer \N +1880 opp-pending VOL-515 opportunity 423 VOLVO-195 volunteer \N +1881 opp-pending VOL-515 opportunity 423 VOLVO-178 volunteer \N +1882 opp-matched VOL-515 opportunity 423 VOLVO-205 volunteer \N +1883 opp-matched VOL-515 opportunity 423 VOLVO-164 volunteer \N +1885 opp-pending VOL-516 opportunity 424 VOLVO-193 volunteer \N +1886 opp-pending VOL-516 opportunity 424 VOLVO-183 volunteer \N +1887 opp-pending VOL-516 opportunity 424 VOLVO-177 volunteer \N +1888 opp-pending VOL-516 opportunity 424 VOLVO-163 volunteer \N +1889 opp-pending VOL-517 opportunity 425 VOLVO-440 volunteer \N +1890 opp-pending VOL-518 opportunity 426 VOLVO-551 volunteer \N +1891 opp-pending VOL-518 opportunity 426 VOLVO-115 volunteer \N +1892 opp-pending VOL-519 opportunity 427 VOLVO-201 volunteer \N +1893 opp-pending VOL-519 opportunity 427 VOLVO-90 volunteer \N +1894 opp-pending VOL-519 opportunity 427 VOLVO-673 volunteer \N +1895 opp-pending VOL-519 opportunity 427 VOLVO-195 volunteer \N +1896 opp-pending VOL-519 opportunity 427 VOLVO-163 volunteer \N +1897 opp-pending VOL-519 opportunity 427 VOLVO-208 volunteer \N +1898 opp-pending VOL-520 opportunity 428 VOLVO-198 volunteer \N +1899 opp-pending VOL-520 opportunity 428 VOLVO-293 volunteer \N +1900 opp-pending VOL-520 opportunity 428 VOLVO-295 volunteer \N +1902 opp-pending VOL-523 opportunity 430 VOLVO-167 volunteer \N +1903 opp-pending VOL-523 opportunity 430 VOLVO-194 volunteer \N +1904 opp-pending VOL-523 opportunity 430 VOLVO-809 volunteer \N +1905 opp-matched VOL-523 opportunity 430 VOLVO-99 volunteer \N +1908 opp-pending VOL-524 opportunity 431 VOLVO-195 volunteer \N +1909 opp-pending VOL-524 opportunity 431 VOLVO-207 volunteer \N +1910 opp-pending VOL-525 opportunity 432 VOLVO-181 volunteer \N +1911 opp-pending VOL-528 opportunity 434 VOLVO-551 volunteer \N +1912 opp-pending VOL-530 opportunity 436 VOLVO-735 volunteer \N +1914 opp-pending VOL-531 opportunity 437 VOLVO-227 volunteer \N +1915 opp-pending VOL-531 opportunity 437 VOLVO-208 volunteer \N +1916 opp-pending VOL-532 opportunity 438 VOLVO-533 volunteer \N +1917 opp-pending VOL-532 opportunity 438 VOLVO-631 volunteer \N +1918 opp-pending VOL-532 opportunity 438 VOLVO-220 volunteer \N +1919 opp-pending VOL-532 opportunity 438 VOLVO-622 volunteer \N +1920 opp-pending VOL-533 opportunity 439 VOLVO-195 volunteer \N +1921 opp-pending VOL-533 opportunity 439 VOLVO-177 volunteer \N +1922 opp-pending VOL-533 opportunity 439 VOLVO-134 volunteer \N +1923 opp-pending VOL-533 opportunity 439 VOLVO-110 volunteer \N +1924 opp-pending VOL-533 opportunity 439 VOLVO-65 volunteer \N +1925 opp-pending VOL-535 opportunity 441 VOLVO-171 volunteer \N +1926 opp-pending VOL-535 opportunity 441 VOLVO-41 volunteer \N +1927 opp-pending VOL-535 opportunity 441 VOLVO-158 volunteer \N +1928 opp-pending VOL-536 opportunity 442 VOLVO-217 volunteer \N +1930 opp-pending VOL-538 opportunity 444 VOLVO-622 volunteer \N +1931 opp-pending VOL-538 opportunity 444 VOLVO-496 volunteer \N +1932 opp-pending VOL-538 opportunity 444 VOLVO-474 volunteer \N +1933 opp-pending VOL-538 opportunity 444 VOLVO-25 volunteer \N +1934 opp-pending VOL-538 opportunity 444 VOLVO-65 volunteer \N +1935 opp-pending VOL-538 opportunity 444 VOLVO-97 volunteer \N +1936 opp-pending VOL-538 opportunity 444 VOLVO-134 volunteer \N +1937 opp-pending VOL-538 opportunity 444 VOLVO-163 volunteer \N +1938 opp-pending VOL-538 opportunity 444 VOLVO-195 volunteer \N +1939 opp-pending VOL-538 opportunity 444 VOLVO-223 volunteer \N +1940 opp-pending VOL-539 opportunity 445 VOLVO-761 volunteer \N +1942 opp-pending VOL-541 opportunity 447 VOLVO-209 volunteer \N +1944 opp-pending VOL-542 opportunity 448 VOLVO-41 volunteer \N +1945 opp-pending VOL-542 opportunity 448 VOLVO-54 volunteer \N +1946 opp-pending VOL-542 opportunity 448 VOLVO-158 volunteer \N +1947 opp-pending VOL-542 opportunity 448 VOLVO-171 volunteer \N +1948 opp-pending VOL-542 opportunity 448 VOLVO-174 volunteer \N +1949 opp-pending VOL-544 opportunity 449 VOLVO-761 volunteer \N +1950 opp-pending VOL-544 opportunity 449 VOLVO-667 volunteer \N +1951 opp-pending VOL-544 opportunity 449 VOLVO-717 volunteer \N +1952 opp-pending VOL-544 opportunity 449 VOLVO-719 volunteer \N +1953 opp-pending VOL-544 opportunity 449 VOLVO-608 volunteer \N +1954 opp-pending VOL-544 opportunity 449 VOLVO-766 volunteer \N +1956 opp-active VOL-545 opportunity 450 VOLVO-719 volunteer \N +1957 opp-pending VOL-547 opportunity 452 VOLVO-217 volunteer \N +1958 opp-pending VOL-547 opportunity 452 VOLVO-37 volunteer \N +1959 opp-pending VOL-547 opportunity 452 VOLVO-146 volunteer \N +1960 opp-pending VOL-547 opportunity 452 VOLVO-230 volunteer \N +1961 opp-pending VOL-547 opportunity 452 VOLVO-186 volunteer \N +1962 opp-active VOL-547 opportunity 452 VOLVO-236 volunteer \N +1963 opp-pending VOL-549 opportunity 453 VOLVO-236 volunteer \N +1964 opp-pending VOL-549 opportunity 453 VOLVO-217 volunteer \N +1965 opp-pending VOL-549 opportunity 453 VOLVO-238 volunteer \N +1966 opp-active VOL-551 opportunity 455 VOLVO-195 volunteer \N +1967 opp-pending VOL-552 opportunity 456 VOLVO-85 volunteer \N +1968 opp-pending VOL-552 opportunity 456 VOLVO-37 volunteer \N +1969 opp-pending VOL-552 opportunity 456 VOLVO-612 volunteer \N +1970 opp-pending VOL-555 opportunity 459 VOLVO-171 volunteer \N +1971 opp-pending VOL-555 opportunity 459 VOLVO-41 volunteer \N +1972 opp-pending VOL-555 opportunity 459 VOLVO-158 volunteer \N +1974 opp-pending VOL-556 opportunity 460 VOLVO-69 volunteer \N +1976 opp-pending VOL-557 opportunity 461 VOLVO-195 volunteer \N +1977 opp-pending VOL-557 opportunity 461 VOLVO-177 volunteer \N +1978 opp-pending VOL-557 opportunity 461 VOLVO-134 volunteer \N +1979 opp-pending VOL-557 opportunity 461 VOLVO-110 volunteer \N +1980 opp-pending VOL-557 opportunity 461 VOLVO-65 volunteer \N +1981 opp-pending VOL-558 opportunity 462 VOLVO-668 volunteer \N +1983 opp-pending VOL-560 opportunity 464 VOLVO-65 volunteer \N +1984 opp-pending VOL-560 opportunity 464 VOLVO-110 volunteer \N +1985 opp-pending VOL-560 opportunity 464 VOLVO-134 volunteer \N +1986 opp-pending VOL-560 opportunity 464 VOLVO-177 volunteer \N +1987 opp-pending VOL-560 opportunity 464 VOLVO-195 volunteer \N +1988 opp-pending VOL-560 opportunity 464 VOLVO-163 volunteer \N +1989 opp-pending VOL-560 opportunity 464 VOLVO-763 volunteer \N +1990 opp-pending VOL-560 opportunity 464 VOLVO-761 volunteer \N +1991 opp-pending VOL-560 opportunity 464 VOLVO-178 volunteer \N +1992 opp-pending VOL-560 opportunity 464 VOLVO-697 volunteer \N +1995 opp-pending VOL-562 opportunity 466 VOLVO-255 volunteer \N +1997 opp-pending VOL-563 opportunity 467 VOLVO-255 volunteer \N +1999 opp-pending VOL-565 opportunity 469 VOLVO-235 volunteer \N +2000 opp-pending VOL-565 opportunity 469 VOLVO-386 volunteer \N +2002 opp-pending VOL-567 opportunity 471 VOLVO-284 volunteer \N +2003 opp-pending VOL-567 opportunity 471 VOLVO-305 volunteer \N +2004 opp-pending VOL-568 opportunity 472 VOLVO-262 volunteer \N +2005 opp-pending VOL-568 opportunity 472 VOLVO-260 volunteer \N +2007 opp-pending VOL-569 opportunity 473 VOLVO-761 volunteer \N +2008 opp-pending VOL-569 opportunity 473 VOLVO-25 volunteer \N +2010 opp-pending VOL-570 opportunity 474 VOLVO-533 volunteer \N +2011 opp-pending VOL-570 opportunity 474 VOLVO-761 volunteer \N +2012 opp-pending VOL-570 opportunity 474 VOLVO-25 volunteer \N +2013 opp-active VOL-570 opportunity 474 VOLVO-555 volunteer \N +2014 opp-pending VOL-571 opportunity 475 VOLVO-206 volunteer \N +2015 opp-pending VOL-571 opportunity 475 VOLVO-108 volunteer \N +2016 opp-pending VOL-571 opportunity 475 VOLVO-85 volunteer \N +2017 opp-pending VOL-571 opportunity 475 VOLVO-37 volunteer \N +2019 opp-pending VOL-572 opportunity 476 VOLVO-171 volunteer \N +2020 opp-pending VOL-572 opportunity 476 VOLVO-174 volunteer \N +2021 opp-pending VOL-572 opportunity 476 VOLVO-260 volunteer \N +2022 opp-pending VOL-572 opportunity 476 VOLVO-262 volunteer \N +2023 opp-pending VOL-572 opportunity 476 VOLVO-158 volunteer \N +2025 opp-pending VOL-574 opportunity 478 VOLVO-259 volunteer \N +2026 opp-pending VOL-574 opportunity 478 VOLVO-251 volunteer \N +2027 opp-pending VOL-574 opportunity 478 VOLVO-703 volunteer \N +2028 opp-pending VOL-574 opportunity 478 VOLVO-299 volunteer \N +2029 opp-pending VOL-574 opportunity 478 VOLVO-290 volunteer \N +2030 opp-pending VOL-574 opportunity 478 VOLVO-282 volunteer \N +2031 opp-pending VOL-574 opportunity 478 VOLVO-448 volunteer \N +2032 opp-pending VOL-574 opportunity 478 VOLVO-262 volunteer \N +2033 opp-pending VOL-574 opportunity 478 VOLVO-464 volunteer \N +2034 opp-pending VOL-574 opportunity 478 VOLVO-460 volunteer \N +2039 opp-pending VOL-576 opportunity 480 VOLVO-277 volunteer \N +2041 opp-pending VOL-577 opportunity 481 VOLVO-257 volunteer \N +2042 opp-pending VOL-577 opportunity 481 VOLVO-628 volunteer \N +2044 opp-pending VOL-578 opportunity 482 VOLVO-256 volunteer \N +2045 opp-pending VOL-578 opportunity 482 VOLVO-254 volunteer \N +2046 opp-pending VOL-578 opportunity 482 VOLVO-247 volunteer \N +2047 opp-pending VOL-578 opportunity 482 VOLVO-241 volunteer \N +2048 opp-pending VOL-578 opportunity 482 VOLVO-242 volunteer \N +2049 opp-pending VOL-578 opportunity 482 VOLVO-240 volunteer \N +2050 opp-pending VOL-578 opportunity 482 VOLVO-163 volunteer \N +2051 opp-pending VOL-578 opportunity 482 VOLVO-134 volunteer \N +2052 opp-pending VOL-578 opportunity 482 VOLVO-97 volunteer \N +2054 opp-pending VOL-582 opportunity 486 VOLVO-533 volunteer \N +2055 opp-pending VOL-582 opportunity 486 VOLVO-256 volunteer \N +2056 opp-pending VOL-582 opportunity 486 VOLVO-254 volunteer \N +2057 opp-pending VOL-582 opportunity 486 VOLVO-246 volunteer \N +2058 opp-pending VOL-582 opportunity 486 VOLVO-241 volunteer \N +2059 opp-pending VOL-582 opportunity 486 VOLVO-240 volunteer \N +2060 opp-pending VOL-582 opportunity 486 VOLVO-242 volunteer \N +2061 opp-pending VOL-582 opportunity 486 VOLVO-220 volunteer \N +2062 opp-pending VOL-582 opportunity 486 VOLVO-195 volunteer \N +2063 opp-pending VOL-582 opportunity 486 VOLVO-183 volunteer \N +2064 opp-pending VOL-583 opportunity 487 VOLVO-269 volunteer \N +2065 opp-active VOL-583 opportunity 487 VOLVO-673 volunteer \N +2066 opp-active VOL-583 opportunity 487 VOLVO-163 volunteer \N +2067 opp-pending VOL-584 opportunity 488 VOLVO-241 volunteer \N +2068 opp-pending VOL-584 opportunity 488 VOLVO-247 volunteer \N +2069 opp-pending VOL-584 opportunity 488 VOLVO-242 volunteer \N +2070 opp-pending VOL-584 opportunity 488 VOLVO-183 volunteer \N +2071 opp-pending VOL-584 opportunity 488 VOLVO-220 volunteer \N +2072 opp-pending VOL-585 opportunity 489 VOLVO-267 volunteer \N +2073 opp-pending VOL-586 opportunity 490 VOLVO-385 volunteer \N +2075 opp-pending VOL-587 opportunity 491 VOLVO-256 volunteer \N +2076 opp-pending VOL-587 opportunity 491 VOLVO-266 volunteer \N +2077 opp-pending VOL-587 opportunity 491 VOLVO-247 volunteer \N +2078 opp-pending VOL-587 opportunity 491 VOLVO-241 volunteer \N +2079 opp-pending VOL-587 opportunity 491 VOLVO-134 volunteer \N +2080 opp-pending VOL-588 opportunity 492 VOLVO-683 volunteer \N +2081 opp-pending VOL-588 opportunity 492 VOLVO-293 volunteer \N +2083 opp-pending VOL-590 opportunity 494 VOLVO-242 volunteer \N +2084 opp-pending VOL-590 opportunity 494 VOLVO-223 volunteer \N +2085 opp-pending VOL-590 opportunity 494 VOLVO-124 volunteer \N +2086 opp-pending VOL-590 opportunity 494 VOLVO-717 volunteer \N +2087 opp-pending VOL-590 opportunity 494 VOLVO-719 volunteer \N +2088 opp-pending VOL-591 opportunity 495 VOLVO-69 volunteer \N +2089 opp-pending VOL-591 opportunity 495 VOLVO-620 volunteer \N +2090 opp-pending VOL-591 opportunity 495 VOLVO-675 volunteer \N +2092 opp-pending VOL-592 opportunity 496 VOLVO-67 volunteer \N +2094 opp-active VOL-592 opportunity 496 VOLVO-163 volunteer \N +2095 opp-active VOL-592 opportunity 496 VOLVO-673 volunteer \N +2096 opp-pending VOL-593 opportunity 497 VOLVO-766 volunteer \N +2097 opp-pending VOL-593 opportunity 497 VOLVO-195 volunteer \N +2098 opp-pending VOL-594 opportunity 498 VOLVO-367 volunteer \N +2099 opp-pending VOL-595 opportunity 499 VOLVO-808 volunteer \N +2100 opp-pending VOL-596 opportunity 500 VOLVO-294 volunteer \N +2101 opp-pending VOL-596 opportunity 500 VOLVO-335 volunteer \N +2102 opp-pending VOL-596 opportunity 500 VOLVO-389 volunteer \N +2103 opp-pending VOL-597 opportunity 501 VOLVO-144 volunteer \N +2104 opp-pending VOL-597 opportunity 501 VOLVO-763 volunteer \N +2105 opp-pending VOL-597 opportunity 501 VOLVO-37 volunteer \N +2106 opp-pending VOL-597 opportunity 501 VOLVO-19 volunteer \N +2107 opp-pending VOL-597 opportunity 501 VOLVO-204 volunteer \N +2108 opp-pending VOL-597 opportunity 501 VOLVO-18 volunteer \N +2109 opp-pending VOL-598 opportunity 502 VOLVO-608 volunteer \N +2110 opp-pending VOL-598 opportunity 502 VOLVO-697 volunteer \N +2111 opp-pending VOL-598 opportunity 502 VOLVO-287 volunteer \N +2112 opp-pending VOL-598 opportunity 502 VOLVO-183 volunteer \N +2114 opp-pending VOL-599 opportunity 503 VOLVO-25 volunteer \N +2115 opp-pending VOL-599 opportunity 503 VOLVO-183 volunteer \N +2116 opp-pending VOL-599 opportunity 503 VOLVO-241 volunteer \N +2117 opp-pending VOL-599 opportunity 503 VOLVO-556 volunteer \N +2119 opp-pending VOL-600 opportunity 504 VOLVO-25 volunteer \N +2120 opp-pending VOL-600 opportunity 504 VOLVO-181 volunteer \N +2121 opp-pending VOL-600 opportunity 504 VOLVO-275 volunteer \N +2123 opp-pending VOL-601 opportunity 505 VOLVO-443 volunteer \N +2125 opp-pending VOL-602 opportunity 506 VOLVO-293 volunteer \N +2126 opp-pending VOL-606 opportunity 510 VOLVO-247 volunteer \N +2127 opp-pending VOL-606 opportunity 510 VOLVO-65 volunteer \N +2128 opp-pending VOL-606 opportunity 510 VOLVO-242 volunteer \N +2129 opp-pending VOL-606 opportunity 510 VOLVO-533 volunteer \N +2131 opp-pending VOL-607 opportunity 511 VOLVO-262 volunteer \N +2132 opp-pending VOL-607 opportunity 511 VOLVO-527 volunteer \N +2133 opp-pending VOL-607 opportunity 511 VOLVO-580 volunteer \N +2134 opp-pending VOL-607 opportunity 511 VOLVO-174 volunteer \N +2135 opp-pending VOL-607 opportunity 511 VOLVO-158 volunteer \N +2136 opp-pending VOL-607 opportunity 511 VOLVO-41 volunteer \N +2137 opp-pending VOL-607 opportunity 511 VOLVO-751 volunteer \N +2139 opp-pending VOL-608 opportunity 512 VOLVO-555 volunteer \N +2141 opp-pending VOL-609 opportunity 513 VOLVO-697 volunteer \N +2143 opp-pending VOL-610 opportunity 514 VOLVO-16 volunteer \N +2144 opp-pending VOL-610 opportunity 514 VOLVO-741 volunteer \N +2145 opp-pending VOL-610 opportunity 514 VOLVO-69 volunteer \N +2146 opp-pending VOL-610 opportunity 514 VOLVO-568 volunteer \N +2147 opp-pending VOL-611 opportunity 515 VOLVO-348 volunteer \N +2149 opp-pending VOL-612 opportunity 516 VOLVO-380 volunteer \N +2150 opp-pending VOL-612 opportunity 516 VOLVO-424 volunteer \N +2152 opp-pending VOL-613 opportunity 517 VOLVO-378 volunteer \N +2155 opp-pending VOL-615 opportunity 519 VOLVO-350 volunteer \N +2157 opp-pending VOL-616 opportunity 520 VOLVO-248 volunteer \N +2158 opp-matched VOL-616 opportunity 520 VOLVO-735 volunteer \N +2159 opp-pending VOL-617 opportunity 521 VOLVO-681 volunteer \N +2160 opp-pending VOL-617 opportunity 521 VOLVO-183 volunteer \N +2161 opp-pending VOL-617 opportunity 521 VOLVO-254 volunteer \N +2162 opp-pending VOL-618 opportunity 522 VOLVO-455 volunteer \N +2164 opp-matched VOL-618 opportunity 522 VOLVO-409 volunteer \N +2165 opp-pending VOL-619 opportunity 523 VOLVO-199 volunteer \N +2167 opp-pending VOL-620 opportunity 524 VOLVO-761 volunteer \N +2168 opp-pending VOL-620 opportunity 524 VOLVO-316 volunteer \N +2169 opp-pending VOL-620 opportunity 524 VOLVO-315 volunteer \N +2170 opp-pending VOL-620 opportunity 524 VOLVO-762 volunteer \N +2171 opp-pending VOL-620 opportunity 524 VOLVO-254 volunteer \N +2172 opp-pending VOL-620 opportunity 524 VOLVO-322 volunteer \N +2174 opp-pending VOL-621 opportunity 525 VOLVO-312 volunteer \N +2175 opp-pending VOL-621 opportunity 525 VOLVO-313 volunteer \N +2176 opp-pending VOL-621 opportunity 525 VOLVO-241 volunteer \N +2177 opp-pending VOL-621 opportunity 525 VOLVO-254 volunteer \N +2179 opp-pending VOL-622 opportunity 526 VOLVO-38 volunteer \N +2180 opp-pending VOL-622 opportunity 526 VOLVO-755 volunteer \N +2181 opp-pending VOL-622 opportunity 526 VOLVO-506 volunteer \N +2182 opp-pending VOL-622 opportunity 526 VOLVO-675 volunteer \N +2183 opp-pending VOL-623 opportunity 527 VOLVO-312 volunteer \N +2184 opp-pending VOL-623 opportunity 527 VOLVO-313 volunteer \N +2185 opp-pending VOL-623 opportunity 527 VOLVO-241 volunteer \N +2187 opp-pending VOL-624 opportunity 528 VOLVO-415 volunteer \N +2188 opp-pending VOL-625 opportunity 529 VOLVO-667 volunteer \N +2189 opp-pending VOL-625 opportunity 529 VOLVO-25 volunteer \N +2190 opp-pending VOL-626 opportunity 530 VOLVO-25 volunteer \N +2191 opp-pending VOL-626 opportunity 530 VOLVO-183 volunteer \N +2192 opp-pending VOL-627 opportunity 531 VOLVO-329 volunteer \N +2193 opp-pending VOL-627 opportunity 531 VOLVO-328 volunteer \N +2194 opp-pending VOL-627 opportunity 531 VOLVO-303 volunteer \N +2195 opp-pending VOL-627 opportunity 531 VOLVO-289 volunteer \N +2196 opp-pending VOL-627 opportunity 531 VOLVO-285 volunteer \N +2197 opp-pending VOL-627 opportunity 531 VOLVO-281 volunteer \N +2198 opp-pending VOL-627 opportunity 531 VOLVO-278 volunteer \N +2199 opp-pending VOL-627 opportunity 531 VOLVO-243 volunteer \N +2200 opp-pending VOL-627 opportunity 531 VOLVO-242 volunteer \N +2201 opp-pending VOL-627 opportunity 531 VOLVO-223 volunteer \N +2202 opp-pending VOL-627 opportunity 531 VOLVO-220 volunteer \N +2203 opp-pending VOL-627 opportunity 531 VOLVO-142 volunteer \N +2204 opp-pending VOL-627 opportunity 531 VOLVO-133 volunteer \N +2205 opp-pending VOL-627 opportunity 531 VOLVO-108 volunteer \N +2206 opp-pending VOL-627 opportunity 531 VOLVO-93 volunteer \N +2207 opp-pending VOL-627 opportunity 531 VOLVO-67 volunteer \N +2208 opp-pending VOL-627 opportunity 531 VOLVO-63 volunteer \N +2209 opp-pending VOL-627 opportunity 531 VOLVO-64 volunteer \N +2210 opp-pending VOL-627 opportunity 531 VOLVO-56 volunteer \N +2211 opp-pending VOL-627 opportunity 531 VOLVO-18 volunteer \N +2212 opp-pending VOL-631 opportunity 535 VOLVO-67 volunteer \N +2214 opp-pending VOL-632 opportunity 536 VOLVO-735 volunteer \N +2215 opp-pending VOL-632 opportunity 536 VOLVO-267 volunteer \N +2216 opp-pending VOL-632 opportunity 536 VOLVO-255 volunteer \N +2217 opp-pending VOL-632 opportunity 536 VOLVO-243 volunteer \N +2219 opp-pending VOL-634 opportunity 538 VOLVO-341 volunteer \N +2220 opp-pending VOL-634 opportunity 538 VOLVO-360 volunteer \N +2221 opp-pending VOL-634 opportunity 538 VOLVO-443 volunteer \N +2222 opp-pending VOL-634 opportunity 538 VOLVO-806 volunteer \N +2224 opp-pending VOL-635 opportunity 539 VOLVO-309 volunteer \N +2225 opp-pending VOL-635 opportunity 539 VOLVO-273 volunteer \N +2226 opp-pending VOL-635 opportunity 539 VOLVO-201 volunteer \N +2227 opp-pending VOL-635 opportunity 539 VOLVO-146 volunteer \N +2228 opp-pending VOL-635 opportunity 539 VOLVO-314 volunteer \N +2229 opp-pending VOL-635 opportunity 539 VOLVO-283 volunteer \N +2230 opp-pending VOL-635 opportunity 539 VOLVO-37 volunteer \N +2232 opp-pending VOL-636 opportunity 540 VOLVO-612 volunteer \N +2233 opp-pending VOL-636 opportunity 540 VOLVO-85 volunteer \N +2234 opp-pending VOL-636 opportunity 540 VOLVO-773 volunteer \N +2235 opp-pending VOL-637 opportunity 541 VOLVO-308 volunteer \N +2236 opp-pending VOL-637 opportunity 541 VOLVO-316 volunteer \N +2237 opp-pending VOL-637 opportunity 541 VOLVO-241 volunteer \N +2239 opp-pending VOL-639 opportunity 543 VOLVO-389 volunteer \N +2241 opp-pending VOL-640 opportunity 544 VOLVO-316 volunteer \N +2243 opp-pending VOL-642 opportunity 546 VOLVO-135 volunteer \N +2244 opp-pending VOL-642 opportunity 546 VOLVO-37 volunteer \N +2246 opp-pending VOL-647 opportunity 551 VOLVO-308 volunteer \N +2247 opp-pending VOL-647 opportunity 551 VOLVO-719 volunteer \N +2248 opp-pending VOL-647 opportunity 551 VOLVO-318 volunteer \N +2249 opp-pending VOL-649 opportunity 553 VOLVO-254 volunteer \N +2250 opp-pending VOL-649 opportunity 553 VOLVO-242 volunteer \N +2252 opp-pending VOL-650 opportunity 554 VOLVO-719 volunteer \N +2253 opp-pending VOL-650 opportunity 554 VOLVO-287 volunteer \N +2255 opp-pending VOL-652 opportunity 556 VOLVO-178 volunteer \N +2257 opp-pending VOL-653 opportunity 557 VOLVO-363 volunteer \N +2258 opp-pending VOL-653 opportunity 557 VOLVO-420 volunteer \N +2259 opp-pending VOL-653 opportunity 557 VOLVO-460 volunteer \N +2260 opp-pending VOL-653 opportunity 557 VOLVO-461 volunteer \N +2261 opp-pending VOL-654 opportunity 558 VOLVO-340 volunteer \N +2263 opp-pending VOL-655 opportunity 559 VOLVO-420 volunteer \N +2264 opp-pending VOL-656 opportunity 560 VOLVO-420 volunteer \N +2265 opp-pending VOL-656 opportunity 560 VOLVO-438 volunteer \N +2267 opp-matched VOL-656 opportunity 560 VOLVO-426 volunteer \N +2268 opp-pending VOL-658 opportunity 562 VOLVO-142 volunteer \N +2269 opp-active VOL-658 opportunity 562 VOLVO-515 volunteer \N +2270 opp-pending VOL-659 opportunity 563 VOLVO-697 volunteer \N +2271 opp-matched VOL-660 opportunity 564 VOLVO-65 volunteer \N +2272 opp-active VOL-660 opportunity 564 VOLVO-318 volunteer \N +2273 opp-active VOL-660 opportunity 564 VOLVO-241 volunteer \N +2275 opp-pending VOL-663 opportunity 567 VOLVO-434 volunteer \N +2276 opp-pending VOL-663 opportunity 567 VOLVO-440 volunteer \N +2277 opp-pending VOL-665 opportunity 569 VOLVO-675 volunteer \N +2279 opp-pending VOL-666 opportunity 570 VOLVO-211 volunteer \N +2280 opp-pending VOL-666 opportunity 570 VOLVO-85 volunteer \N +2281 opp-pending VOL-666 opportunity 570 VOLVO-37 volunteer \N +2282 opp-pending VOL-666 opportunity 570 VOLVO-135 volunteer \N +2284 opp-pending VOL-667 opportunity 571 VOLVO-129 volunteer \N +2286 opp-pending VOL-668 opportunity 572 VOLVO-262 volunteer \N +2287 opp-pending VOL-668 opportunity 572 VOLVO-448 volunteer \N +2288 opp-pending VOL-668 opportunity 572 VOLVO-809 volunteer \N +2289 opp-pending VOL-669 opportunity 573 VOLVO-82 volunteer \N +2290 opp-pending VOL-669 opportunity 573 VOLVO-142 volunteer \N +2291 opp-pending VOL-669 opportunity 573 VOLVO-329 volunteer \N +2292 opp-pending VOL-669 opportunity 573 VOLVO-626 volunteer \N +2294 opp-pending VOL-670 opportunity 574 VOLVO-318 volunteer \N +2295 opp-pending VOL-670 opportunity 574 VOLVO-241 volunteer \N +2296 opp-pending VOL-670 opportunity 574 VOLVO-65 volunteer \N +2297 opp-pending VOL-670 opportunity 574 VOLVO-761 volunteer \N +2298 opp-active VOL-670 opportunity 574 VOLVO-348 volunteer \N +2299 opp-pending VOL-671 opportunity 575 VOLVO-763 volunteer \N +2300 opp-pending VOL-671 opportunity 575 VOLVO-144 volunteer \N +2301 opp-pending VOL-671 opportunity 575 VOLVO-546 volunteer \N +2302 opp-pending VOL-671 opportunity 575 VOLVO-303 volunteer \N +2303 opp-pending VOL-671 opportunity 575 VOLVO-284 volunteer \N +2304 opp-pending VOL-671 opportunity 575 VOLVO-279 volunteer \N +2306 opp-pending VOL-672 opportunity 576 VOLVO-285 volunteer \N +2307 opp-pending VOL-672 opportunity 576 VOLVO-354 volunteer \N +2309 opp-pending VOL-673 opportunity 577 VOLVO-236 volunteer \N +2310 opp-pending VOL-673 opportunity 577 VOLVO-376 volunteer \N +2311 opp-pending VOL-673 opportunity 577 VOLVO-401 volunteer \N +2312 opp-pending VOL-673 opportunity 577 VOLVO-417 volunteer \N +2316 opp-pending VOL-674 opportunity 578 VOLVO-320 volunteer \N +2317 opp-pending VOL-675 opportunity 579 VOLVO-357 volunteer \N +2320 opp-active VOL-676 opportunity 580 VOLVO-348 volunteer \N +2321 opp-pending VOL-677 opportunity 581 VOLVO-697 volunteer \N +2322 opp-pending VOL-677 opportunity 581 VOLVO-183 volunteer \N +2323 opp-pending VOL-677 opportunity 581 VOLVO-533 volunteer \N +2325 opp-pending VOL-680 opportunity 584 VOLVO-462 volunteer \N +2327 opp-pending VOL-681 opportunity 585 VOLVO-449 volunteer \N +2328 opp-pending VOL-681 opportunity 585 VOLVO-455 volunteer \N +2329 opp-pending VOL-681 opportunity 585 VOLVO-805 volunteer \N +2330 opp-pending VOL-682 opportunity 586 VOLVO-348 volunteer \N +2332 opp-active VOL-683 opportunity 587 VOLVO-195 volunteer \N +2333 opp-pending VOL-684 opportunity 588 VOLVO-322 volunteer \N +2334 opp-pending VOL-684 opportunity 588 VOLVO-316 volunteer \N +2335 opp-pending VOL-684 opportunity 588 VOLVO-314 volunteer \N +2337 opp-pending VOL-685 opportunity 589 VOLVO-418 volunteer \N +2338 opp-pending VOL-685 opportunity 589 VOLVO-214 volunteer \N +2339 opp-pending VOL-685 opportunity 589 VOLVO-437 volunteer \N +2343 opp-pending VOL-688 opportunity 592 VOLVO-348 volunteer \N +2344 opp-pending VOL-688 opportunity 592 VOLVO-183 volunteer \N +2345 opp-pending VOL-688 opportunity 592 VOLVO-681 volunteer \N +2346 opp-pending VOL-689 opportunity 593 VOLVO-243 volunteer \N +2347 opp-pending VOL-689 opportunity 593 VOLVO-18 volunteer \N +2348 opp-pending VOL-689 opportunity 593 VOLVO-273 volunteer \N +2349 opp-pending VOL-689 opportunity 593 VOLVO-236 volunteer \N +2350 opp-pending VOL-690 opportunity 594 VOLVO-327 volunteer \N +2351 opp-pending VOL-690 opportunity 594 VOLVO-411 volunteer \N +2352 opp-pending VOL-690 opportunity 594 VOLVO-521 volunteer \N +2353 opp-pending VOL-690 opportunity 594 VOLVO-425 volunteer \N +2354 opp-pending VOL-690 opportunity 594 VOLVO-396 volunteer \N +2357 opp-pending VOL-691 opportunity 595 VOLVO-738 volunteer \N +2358 opp-pending VOL-691 opportunity 595 VOLVO-808 volunteer \N +2361 opp-pending VOL-692 opportunity 596 VOLVO-369 volunteer \N +2363 opp-pending VOL-693 opportunity 597 VOLVO-363 volunteer \N +2364 opp-pending VOL-693 opportunity 597 VOLVO-719 volunteer \N +2365 opp-pending VOL-693 opportunity 597 VOLVO-65 volunteer \N +2366 opp-pending VOL-693 opportunity 597 VOLVO-348 volunteer \N +2368 opp-pending VOL-694 opportunity 598 VOLVO-348 volunteer \N +2370 opp-pending VOL-697 opportunity 601 VOLVO-308 volunteer \N +2371 opp-pending VOL-697 opportunity 601 VOLVO-256 volunteer \N +2372 opp-pending VOL-697 opportunity 601 VOLVO-65 volunteer \N +2374 opp-pending VOL-698 opportunity 602 VOLVO-442 volunteer \N +2375 opp-pending VOL-698 opportunity 602 VOLVO-443 volunteer \N +2377 opp-pending VOL-699 opportunity 603 VOLVO-183 volunteer \N +2379 opp-pending VOL-700 opportunity 604 VOLVO-348 volunteer \N +2381 opp-pending VOL-701 opportunity 605 VOLVO-256 volunteer \N +2382 opp-pending VOL-702 opportunity 606 VOLVO-313 volunteer \N +2383 opp-pending VOL-702 opportunity 606 VOLVO-314 volunteer \N +2385 opp-pending VOL-703 opportunity 607 VOLVO-348 volunteer \N +2387 opp-pending VOL-704 opportunity 608 VOLVO-348 volunteer \N +2389 opp-pending VOL-705 opportunity 609 VOLVO-443 volunteer \N +2390 opp-pending VOL-706 opportunity 610 VOLVO-343 volunteer \N +2391 opp-pending VOL-706 opportunity 610 VOLVO-285 volunteer \N +2392 opp-pending VOL-706 opportunity 610 VOLVO-437 volunteer \N +2393 opp-pending VOL-706 opportunity 610 VOLVO-443 volunteer \N +2395 opp-pending VOL-707 opportunity 611 VOLVO-766 volunteer \N +2396 opp-pending VOL-707 opportunity 611 VOLVO-668 volunteer \N +2397 opp-active VOL-707 opportunity 611 VOLVO-348 volunteer \N +2398 opp-pending VOL-708 opportunity 612 VOLVO-679 volunteer \N +2399 opp-pending VOL-708 opportunity 612 VOLVO-556 volunteer \N +2400 opp-pending VOL-708 opportunity 612 VOLVO-308 volunteer \N +2402 opp-pending VOL-709 opportunity 613 VOLVO-283 volunteer \N +2404 opp-pending VOL-710 opportunity 614 VOLVO-348 volunteer \N +2405 opp-pending VOL-710 opportunity 614 VOLVO-667 volunteer \N +2406 opp-pending VOL-710 opportunity 614 VOLVO-420 volunteer \N +2407 opp-pending VOL-711 opportunity 615 VOLVO-65 volunteer \N +2409 opp-pending VOL-712 opportunity 616 VOLVO-447 volunteer \N +2410 opp-pending VOL-712 opportunity 616 VOLVO-452 volunteer \N +2412 opp-pending VOL-713 opportunity 617 VOLVO-135 volunteer \N +2413 opp-pending VOL-713 opportunity 617 VOLVO-37 volunteer \N +2414 opp-pending VOL-713 opportunity 617 VOLVO-612 volunteer \N +2415 opp-pending VOL-713 opportunity 617 VOLVO-320 volunteer \N +2416 opp-pending VOL-713 opportunity 617 VOLVO-678 volunteer \N +2417 opp-pending VOL-713 opportunity 617 VOLVO-647 volunteer \N +2419 opp-pending VOL-714 opportunity 618 VOLVO-387 volunteer \N +2421 opp-active VOL-714 opportunity 618 VOLVO-350 volunteer \N +2422 opp-pending VOL-715 opportunity 619 VOLVO-379 volunteer \N +2423 opp-pending VOL-715 opportunity 619 VOLVO-350 volunteer \N +2426 opp-pending VOL-717 opportunity 621 VOLVO-387 volunteer \N +2427 opp-pending VOL-717 opportunity 621 VOLVO-182 volunteer \N +2428 opp-pending VOL-717 opportunity 621 VOLVO-429 volunteer \N +2430 opp-pending VOL-718 opportunity 622 VOLVO-113 volunteer \N +2431 opp-pending VOL-718 opportunity 622 VOLVO-818 volunteer \N +2432 opp-pending VOL-718 opportunity 622 VOLVO-821 volunteer \N +2433 opp-pending VOL-719 opportunity 623 VOLVO-320 volunteer \N +2434 opp-pending VOL-719 opportunity 623 VOLVO-37 volunteer \N +2435 opp-pending VOL-719 opportunity 623 VOLVO-211 volunteer \N +2437 opp-pending VOL-720 opportunity 624 VOLVO-379 volunteer \N +2438 opp-pending VOL-720 opportunity 624 VOLVO-302 volunteer \N +2439 opp-pending VOL-720 opportunity 624 VOLVO-333 volunteer \N +2444 opp-pending VOL-721 opportunity 625 VOLVO-135 volunteer \N +2445 opp-pending VOL-721 opportunity 625 VOLVO-391 volunteer \N +2446 opp-pending VOL-721 opportunity 625 VOLVO-566 volunteer \N +2447 opp-pending VOL-724 opportunity 628 VOLVO-364 volunteer \N +2448 opp-pending VOL-724 opportunity 628 VOLVO-18 volunteer \N +2449 opp-pending VOL-724 opportunity 628 VOLVO-519 volunteer \N +2450 opp-pending VOL-724 opportunity 628 VOLVO-698 volunteer \N +2451 opp-pending VOL-725 opportunity 629 VOLVO-158 volunteer \N +2452 opp-pending VOL-726 opportunity 630 VOLVO-391 volunteer \N +2453 opp-pending VOL-726 opportunity 630 VOLVO-85 volunteer \N +2454 opp-pending VOL-728 opportunity 631 VOLVO-302 volunteer \N +2455 opp-pending VOL-728 opportunity 631 VOLVO-370 volunteer \N +2456 opp-pending VOL-728 opportunity 631 VOLVO-58 volunteer \N +2460 opp-pending VOL-729 opportunity 632 VOLVO-348 volunteer \N +2461 opp-pending VOL-729 opportunity 632 VOLVO-363 volunteer \N +2462 opp-pending VOL-729 opportunity 632 VOLVO-313 volunteer \N +2463 opp-pending VOL-731 opportunity 634 VOLVO-246 volunteer \N +2464 opp-pending VOL-731 opportunity 634 VOLVO-405 volunteer \N +2466 opp-matched VOL-733 opportunity 636 VOLVO-348 volunteer \N +2468 opp-active VOL-735 opportunity 638 VOLVO-195 volunteer \N +2469 opp-pending VOL-736 opportunity 639 VOLVO-394 volunteer \N +2470 opp-pending VOL-736 opportunity 639 VOLVO-401 volunteer \N +2471 opp-pending VOL-736 opportunity 639 VOLVO-435 volunteer \N +2474 opp-pending VOL-737 opportunity 640 VOLVO-308 volunteer \N +2475 opp-pending VOL-737 opportunity 640 VOLVO-322 volunteer \N +2476 opp-pending VOL-737 opportunity 640 VOLVO-177 volunteer \N +2477 opp-pending VOL-737 opportunity 640 VOLVO-348 volunteer \N +2478 opp-pending VOL-738 opportunity 641 VOLVO-322 volunteer \N +2479 opp-pending VOL-738 opportunity 641 VOLVO-348 volunteer \N +2481 opp-pending VOL-739 opportunity 642 VOLVO-308 volunteer \N +2482 opp-pending VOL-739 opportunity 642 VOLVO-313 volunteer \N +2483 opp-pending VOL-739 opportunity 642 VOLVO-177 volunteer \N +2484 opp-pending VOL-739 opportunity 642 VOLVO-348 volunteer \N +2485 opp-pending VOL-739 opportunity 642 VOLVO-556 volunteer \N +2486 opp-pending VOL-739 opportunity 642 VOLVO-697 volunteer \N +2487 opp-pending VOL-740 opportunity 643 VOLVO-348 volunteer \N +2488 opp-pending VOL-740 opportunity 643 VOLVO-761 volunteer \N +2489 opp-active VOL-740 opportunity 643 VOLVO-25 volunteer \N +2490 opp-pending VOL-741 opportunity 644 VOLVO-316 volunteer \N +2491 opp-pending VOL-741 opportunity 644 VOLVO-533 volunteer \N +2493 opp-pending VOL-742 opportunity 645 VOLVO-527 volunteer \N +2494 opp-pending VOL-742 opportunity 645 VOLVO-41 volunteer \N +2495 opp-pending VOL-742 opportunity 645 VOLVO-260 volunteer \N +2496 opp-pending VOL-742 opportunity 645 VOLVO-580 volunteer \N +2497 opp-pending VOL-742 opportunity 645 VOLVO-262 volunteer \N +2499 opp-pending VOL-743 opportunity 646 VOLVO-608 volunteer \N +2500 opp-pending VOL-743 opportunity 646 VOLVO-761 volunteer \N +2501 opp-pending VOL-743 opportunity 646 VOLVO-574 volunteer \N +2502 opp-pending VOL-743 opportunity 646 VOLVO-322 volunteer \N +2503 opp-pending VOL-744 opportunity 647 VOLVO-405 volunteer \N +2504 opp-pending VOL-744 opportunity 647 VOLVO-183 volunteer \N +2505 opp-pending VOL-744 opportunity 647 VOLVO-313 volunteer \N +2506 opp-pending VOL-745 opportunity 648 VOLVO-316 volunteer \N +2508 opp-pending VOL-746 opportunity 649 VOLVO-762 volunteer \N +2509 opp-pending VOL-746 opportunity 649 VOLVO-667 volunteer \N +2511 opp-pending VOL-747 opportunity 650 VOLVO-819 volunteer \N +2512 opp-pending VOL-747 opportunity 650 VOLVO-818 volunteer \N +2513 opp-pending VOL-748 opportunity 651 VOLVO-423 volunteer \N +2514 opp-pending VOL-748 opportunity 651 VOLVO-440 volunteer \N +2516 opp-matched VOL-748 opportunity 651 VOLVO-434 volunteer \N +2518 opp-pending VOL-749 opportunity 652 VOLVO-414 volunteer \N +2520 opp-pending VOL-750 opportunity 653 VOLVO-242 volunteer \N +2521 opp-pending VOL-750 opportunity 653 VOLVO-247 volunteer \N +2522 opp-pending VOL-750 opportunity 653 VOLVO-254 volunteer \N +2523 opp-pending VOL-750 opportunity 653 VOLVO-405 volunteer \N +2525 opp-pending VOL-751 opportunity 654 VOLVO-2 volunteer \N +2526 opp-pending VOL-751 opportunity 654 VOLVO-220 volunteer \N +2527 opp-pending VOL-752 opportunity 655 VOLVO-348 volunteer \N +2528 opp-pending VOL-752 opportunity 655 VOLVO-761 volunteer \N +2530 opp-pending VOL-753 opportunity 656 VOLVO-400 volunteer \N +2532 opp-pending VOL-754 opportunity 657 VOLVO-107 volunteer \N +2533 opp-pending VOL-754 opportunity 657 VOLVO-33 volunteer \N +2536 opp-pending VOL-755 opportunity 658 VOLVO-408 volunteer \N +2537 opp-pending VOL-755 opportunity 658 VOLVO-256 volunteer \N +2539 opp-pending VOL-756 opportunity 659 VOLVO-416 volunteer \N +2541 opp-pending VOL-757 opportunity 660 VOLVO-697 volunteer \N +2543 opp-pending VOL-761 opportunity 664 VOLVO-515 volunteer \N +2545 opp-pending VOL-762 opportunity 665 VOLVO-533 volunteer \N +2546 opp-pending VOL-762 opportunity 665 VOLVO-322 volunteer \N +2547 opp-pending VOL-763 opportunity 666 VOLVO-420 volunteer \N +2549 opp-pending VOL-764 opportunity 667 VOLVO-364 volunteer \N +2551 opp-pending VOL-765 opportunity 668 VOLVO-430 volunteer \N +2552 opp-pending VOL-765 opportunity 668 VOLVO-377 volunteer \N +2553 opp-pending VOL-765 opportunity 668 VOLVO-438 volunteer \N +2554 opp-pending VOL-765 opportunity 668 VOLVO-808 volunteer \N +2555 opp-pending VOL-765 opportunity 668 VOLVO-458 volunteer \N +2557 opp-pending VOL-767 opportunity 670 VOLVO-761 volunteer \N +2558 opp-pending VOL-767 opportunity 670 VOLVO-364 volunteer \N +2559 opp-active VOL-769 opportunity 672 VOLVO-195 volunteer \N +2560 opp-pending VOL-770 opportunity 673 VOLVO-364 volunteer \N +2561 opp-pending VOL-771 opportunity 674 VOLVO-556 volunteer \N +2562 opp-pending VOL-771 opportunity 674 VOLVO-65 volunteer \N +2563 opp-pending VOL-771 opportunity 674 VOLVO-491 volunteer \N +2565 opp-pending VOL-772 opportunity 675 VOLVO-283 volunteer \N +2566 opp-pending VOL-772 opportunity 675 VOLVO-416 volunteer \N +2567 opp-pending VOL-772 opportunity 675 VOLVO-761 volunteer \N +2568 opp-pending VOL-772 opportunity 675 VOLVO-183 volunteer \N +2569 opp-pending VOL-772 opportunity 675 VOLVO-719 volunteer \N +2571 opp-pending VOL-773 opportunity 676 VOLVO-761 volunteer \N +2572 opp-pending VOL-773 opportunity 676 VOLVO-316 volunteer \N +2574 opp-pending VOL-774 opportunity 677 VOLVO-405 volunteer \N +2575 opp-pending VOL-774 opportunity 677 VOLVO-283 volunteer \N +2576 opp-pending VOL-775 opportunity 678 VOLVO-377 volunteer \N +2577 opp-pending VOL-776 opportunity 679 VOLVO-283 volunteer \N +2578 opp-pending VOL-776 opportunity 679 VOLVO-556 volunteer \N +2579 opp-pending VOL-776 opportunity 679 VOLVO-697 volunteer \N +2580 opp-pending VOL-777 opportunity 680 VOLVO-405 volunteer \N +2581 opp-pending VOL-777 opportunity 680 VOLVO-408 volunteer \N +2582 opp-pending VOL-777 opportunity 680 VOLVO-183 volunteer \N +2583 opp-pending VOL-778 opportunity 681 VOLVO-232 volunteer \N +2585 opp-pending VOL-779 opportunity 682 VOLVO-449 volunteer \N +2586 opp-pending VOL-779 opportunity 682 VOLVO-455 volunteer \N +2587 opp-pending VOL-779 opportunity 682 VOLVO-805 volunteer \N +2590 opp-pending VOL-781 opportunity 684 VOLVO-675 volunteer \N +2592 opp-pending VOL-783 opportunity 686 VOLVO-322 volunteer \N +2593 opp-pending VOL-783 opportunity 686 VOLVO-533 volunteer \N +2594 opp-pending VOL-784 opportunity 687 VOLVO-739 volunteer \N +2595 opp-pending VOL-784 opportunity 687 VOLVO-735 volunteer \N +2596 opp-pending VOL-784 opportunity 687 VOLVO-698 volunteer \N +2597 opp-pending VOL-784 opportunity 687 VOLVO-243 volunteer \N +2598 opp-pending VOL-784 opportunity 687 VOLVO-373 volunteer \N +2599 opp-active VOL-784 opportunity 687 VOLVO-579 volunteer \N +2600 opp-pending VOL-785 opportunity 688 VOLVO-364 volunteer \N +2601 opp-pending VOL-785 opportunity 688 VOLVO-421 volunteer \N +2602 opp-pending VOL-787 opportunity 690 VOLVO-291 volunteer \N +2603 opp-pending VOL-787 opportunity 690 VOLVO-673 volunteer \N +2604 opp-pending VOL-787 opportunity 690 VOLVO-455 volunteer \N +2607 opp-pending VOL-788 opportunity 691 VOLVO-424 volunteer \N +2608 opp-pending VOL-788 opportunity 691 VOLVO-450 volunteer \N +2609 opp-pending VOL-790 opportunity 693 VOLVO-444 volunteer \N +2610 opp-pending VOL-790 opportunity 693 VOLVO-448 volunteer \N +2611 opp-pending VOL-790 opportunity 693 VOLVO-453 volunteer \N +2612 opp-pending VOL-791 opportunity 694 VOLVO-199 volunteer \N +2614 opp-pending VOL-795 opportunity 698 VOLVO-427 volunteer \N +2615 opp-pending VOL-795 opportunity 698 VOLVO-322 volunteer \N +2616 opp-pending VOL-795 opportunity 698 VOLVO-242 volunteer \N +2618 opp-pending VOL-796 opportunity 699 VOLVO-364 volunteer \N +2620 opp-pending VOL-797 opportunity 700 VOLVO-454 volunteer \N +2621 opp-pending VOL-797 opportunity 700 VOLVO-356 volunteer \N +2622 opp-pending VOL-797 opportunity 700 VOLVO-180 volunteer \N +2624 opp-pending VOL-802 opportunity 705 VOLVO-440 volunteer \N +2625 opp-pending VOL-802 opportunity 705 VOLVO-454 volunteer \N +2626 opp-pending VOL-802 opportunity 705 VOLVO-457 volunteer \N +2627 opp-pending VOL-803 opportunity 706 VOLVO-325 volunteer \N +2628 opp-pending VOL-803 opportunity 706 VOLVO-819 volunteer \N +2630 opp-pending VOL-804 opportunity 707 VOLVO-242 volunteer \N +2631 opp-pending VOL-804 opportunity 707 VOLVO-256 volunteer \N +2632 opp-pending VOL-805 opportunity 708 VOLVO-421 volunteer \N +2634 opp-pending VOL-806 opportunity 709 VOLVO-425 volunteer \N +2635 opp-pending VOL-806 opportunity 709 VOLVO-165 volunteer \N +2636 opp-pending VOL-806 opportunity 709 VOLVO-809 volunteer \N +2637 opp-pending VOL-807 opportunity 710 VOLVO-556 volunteer \N +2638 opp-pending VOL-807 opportunity 710 VOLVO-183 volunteer \N +2639 opp-pending VOL-807 opportunity 710 VOLVO-719 volunteer \N +2640 opp-pending VOL-807 opportunity 710 VOLVO-220 volunteer \N +2641 opp-pending VOL-808 opportunity 711 VOLVO-817 volunteer \N +2643 opp-pending VOL-809 opportunity 712 VOLVO-325 volunteer \N +2645 opp-pending VOL-811 opportunity 714 VOLVO-421 volunteer \N +2646 opp-pending VOL-812 opportunity 715 VOLVO-241 volunteer \N +2647 opp-pending VOL-812 opportunity 715 VOLVO-416 volunteer \N +2648 opp-pending VOL-812 opportunity 715 VOLVO-322 volunteer \N +2649 opp-pending VOL-812 opportunity 715 VOLVO-608 volunteer \N +2650 opp-pending VOL-812 opportunity 715 VOLVO-761 volunteer \N +2651 opp-pending VOL-813 opportunity 716 VOLVO-448 volunteer \N +2652 opp-pending VOL-814 opportunity 717 VOLVO-533 volunteer \N +2653 opp-pending VOL-814 opportunity 717 VOLVO-322 volunteer \N +2654 opp-pending VOL-814 opportunity 717 VOLVO-608 volunteer \N +2655 opp-pending VOL-814 opportunity 717 VOLVO-316 volunteer \N +2657 opp-pending VOL-820 opportunity 723 VOLVO-443 volunteer \N +2658 opp-pending VOL-820 opportunity 723 VOLVO-819 volunteer \N +2659 opp-pending VOL-821 opportunity 724 VOLVO-440 volunteer \N +2660 opp-pending VOL-821 opportunity 724 VOLVO-443 volunteer \N +2661 opp-pending VOL-823 opportunity 726 VOLVO-320 volunteer \N +2662 opp-pending VOL-823 opportunity 726 VOLVO-85 volunteer \N +2663 opp-pending VOL-823 opportunity 726 VOLVO-612 volunteer \N +2664 opp-pending VOL-824 opportunity 727 VOLVO-511 volunteer \N +2665 opp-pending VOL-824 opportunity 727 VOLVO-384 volunteer \N +2666 opp-pending VOL-825 opportunity 728 VOLVO-271 volunteer \N +2667 opp-pending VOL-825 opportunity 728 VOLVO-430 volunteer \N +2670 opp-pending VOL-826 opportunity 729 VOLVO-325 volunteer \N +2671 opp-pending VOL-826 opportunity 729 VOLVO-375 volunteer \N +2672 opp-pending VOL-826 opportunity 729 VOLVO-804 volunteer \N +2675 opp-pending VOL-827 opportunity 730 VOLVO-453 volunteer \N +2676 opp-pending VOL-827 opportunity 730 VOLVO-435 volunteer \N +2677 opp-pending VOL-827 opportunity 730 VOLVO-325 volunteer \N +2678 opp-pending VOL-828 opportunity 731 VOLVO-447 volunteer \N +2679 opp-pending VOL-828 opportunity 731 VOLVO-443 volunteer \N +2681 opp-pending VOL-829 opportunity 732 VOLVO-364 volunteer \N +2682 opp-pending VOL-829 opportunity 732 VOLVO-427 volunteer \N +2683 opp-matched VOL-831 opportunity 734 VOLVO-114 volunteer \N +2684 opp-pending VOL-833 opportunity 736 VOLVO-533 volunteer \N +2685 opp-pending VOL-833 opportunity 736 VOLVO-761 volunteer \N +2687 opp-pending VOL-834 opportunity 737 VOLVO-420 volunteer \N +2688 opp-pending VOL-834 opportunity 737 VOLVO-241 volunteer \N +2689 opp-pending VOL-834 opportunity 737 VOLVO-719 volunteer \N +2690 opp-pending VOL-834 opportunity 737 VOLVO-322 volunteer \N +2691 opp-pending VOL-834 opportunity 737 VOLVO-65 volunteer \N +2692 opp-pending VOL-835 opportunity 738 VOLVO-697 volunteer \N +2693 opp-pending VOL-835 opportunity 738 VOLVO-761 volunteer \N +2694 opp-pending VOL-837 opportunity 739 VOLVO-408 volunteer \N +2695 opp-pending VOL-837 opportunity 739 VOLVO-416 volunteer \N +2696 opp-pending VOL-837 opportunity 739 VOLVO-420 volunteer \N +2698 opp-pending VOL-838 opportunity 740 VOLVO-317 volunteer \N +2699 opp-pending VOL-838 opportunity 740 VOLVO-598 volunteer \N +2700 opp-pending VOL-841 opportunity 743 VOLVO-92 volunteer \N +2701 opp-pending VOL-841 opportunity 743 VOLVO-755 volunteer \N +2703 opp-pending VOL-842 opportunity 744 VOLVO-719 volunteer \N +2704 opp-pending VOL-842 opportunity 744 VOLVO-556 volunteer \N +2706 opp-pending VOL-845 opportunity 747 VOLVO-65 volunteer \N +2707 opp-pending VOL-845 opportunity 747 VOLVO-533 volunteer \N +2708 opp-pending VOL-846 opportunity 748 VOLVO-183 volunteer \N +2709 opp-pending VOL-847 opportunity 749 VOLVO-452 volunteer \N +2710 opp-pending VOL-847 opportunity 749 VOLVO-443 volunteer \N +2711 opp-pending VOL-847 opportunity 749 VOLVO-377 volunteer \N +2713 opp-pending VOL-850 opportunity 752 VOLVO-574 volunteer \N +2714 opp-pending VOL-850 opportunity 752 VOLVO-287 volunteer \N +2715 opp-pending VOL-850 opportunity 752 VOLVO-256 volunteer \N +2717 opp-pending VOL-852 opportunity 754 VOLVO-348 volunteer \N +2719 opp-pending VOL-853 opportunity 755 VOLVO-348 volunteer \N +2720 opp-pending VOL-853 opportunity 755 VOLVO-316 volunteer \N +2721 opp-pending VOL-855 opportunity 757 VOLVO-348 volunteer \N +2723 opp-pending VOL-856 opportunity 758 VOLVO-408 volunteer \N +2724 opp-pending VOL-857 opportunity 759 VOLVO-454 volunteer \N +2725 opp-pending VOL-858 opportunity 760 VOLVO-457 volunteer \N +2726 opp-pending VOL-859 opportunity 761 VOLVO-438 volunteer \N +2728 opp-pending VOL-860 opportunity 762 VOLVO-438 volunteer \N +2730 opp-pending VOL-863 opportunity 765 VOLVO-762 volunteer \N +2731 opp-pending VOL-863 opportunity 765 VOLVO-348 volunteer \N +2733 opp-pending VOL-864 opportunity 766 VOLVO-65 volunteer \N +2734 opp-pending VOL-864 opportunity 766 VOLVO-183 volunteer \N +2735 opp-pending VOL-864 opportunity 766 VOLVO-283 volunteer \N +2736 opp-pending VOL-864 opportunity 766 VOLVO-420 volunteer \N +2737 opp-pending VOL-865 opportunity 767 VOLVO-427 volunteer \N +2738 opp-pending VOL-865 opportunity 767 VOLVO-364 volunteer \N +2739 opp-pending VOL-865 opportunity 767 VOLVO-25 volunteer \N +2740 opp-pending VOL-867 opportunity 769 VOLVO-25 volunteer \N +2742 opp-pending VOL-868 opportunity 770 VOLVO-416 volunteer \N +2743 opp-pending VOL-868 opportunity 770 VOLVO-556 volunteer \N +2745 opp-pending VOL-869 opportunity 771 VOLVO-405 volunteer \N +2746 opp-pending VOL-869 opportunity 771 VOLVO-681 volunteer \N +2747 opp-pending VOL-871 opportunity 773 VOLVO-37 volunteer \N +2748 opp-pending VOL-871 opportunity 773 VOLVO-85 volunteer \N +2749 opp-pending VOL-872 opportunity 774 VOLVO-460 volunteer \N +2750 opp-pending VOL-872 opportunity 774 VOLVO-457 volunteer \N +2751 opp-pending VOL-872 opportunity 774 VOLVO-461 volunteer \N +2752 opp-pending VOL-873 opportunity 775 VOLVO-817 volunteer \N +2753 opp-pending VOL-873 opportunity 775 VOLVO-461 volunteer \N +2754 opp-pending VOL-883 opportunity 785 VOLVO-675 volunteer \N +2755 opp-pending VOL-883 opportunity 785 VOLVO-741 volunteer \N +2757 opp-pending VOL-884 opportunity 786 VOLVO-313 volunteer \N +2758 opp-pending VOL-884 opportunity 786 VOLVO-183 volunteer \N +2759 opp-pending VOL-889 opportunity 791 VOLVO-348 volunteer \N +2760 opp-pending VOL-889 opportunity 791 VOLVO-421 volunteer \N +2761 opp-pending VOL-890 opportunity 792 VOLVO-408 volunteer \N +2762 opp-pending VOL-890 opportunity 792 VOLVO-348 volunteer \N +\. + + +-- +-- Data for Name: opportunity; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.opportunity (id, title, type, info, translation_type, info_confidential, created_at, updated_at, deal_id, agent_id, status, number_volunteers, accompanying_id) FROM stdin; +1 Fahrradwerkstatt in Lichtenberg regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 1 28 opp-new 1 \N +2 Translations (Farsi, Russian) accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 2 28 opp-new 1 \N +3 Unterstütze bei Kinderbetreuung regular Lot wkqxeitf Yktovossout, rot Qazocozäztf yük rot Aofrtk gkuqfolotkz xfr rot Aofrtkwtzktxtk*offtf xfztklzüzmz. Rq tl loei xd toft Tklzqxyfqidttofkoeizxfu iqfrtsz, utitf tofout rtk Aofrtk fgei foeiz mxk Leixst, lg rqll rot Iosyt qxei qd Cgkdozzqu wtfözouz vtkrtf aöffzt.\fYktovossout aöffztf toutft Orttf tofwkofutf xfr rotlt xdltzmtf. noTranslation 2025-10-17 00:00:00 2025-10-17 00:00:00 3 13 opp-new 2 \N +4 Unterstütze bei der Kinderbetreuung regular Rtxzleiatffzfollt lofr utvüfleiz. noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 4 42 opp-new 2 \N +5 Organisiere Sportaktivitäten für Kinder regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 5 38 opp-new 1 \N +6 Translation support accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 6 6 opp-new 2 \N +7 Sprachcafé/Nachhilfe in Hellersdorf regular Tofout rtk Wtvgiftk*offtf rtk Xfztkaxfyz wtlxeitf wtktozl toftf Rtxzleiaxkl xfr wtfözoutf Xfztklzüzmxfu wto rtf Iqxlqxyuqwtf, rtk Ukqddqzoa xlv. Rtk Mtozhsqf olz ystbowts xfr aqff pt fqei Oiktk Ctkyüuwqkatoz utäfrtkz vtkrtf.\fTl iqfrtsz loei foeiz xd tof asqlloleitl Lhkqeieqyé, lgfrtkf xd Fqeiiosytxfztkkoeiz yük Tkvqeiltft. noTranslation 2024-08-21 00:00:00 2024-08-21 00:00:00 7 6 opp-new 2 \N +8 Leite ein Sprachcafé regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 8 19 opp-new 1 \N +9 Sportaktivitäten regular noTranslation 2024-03-28 00:00:00 2024-03-28 00:00:00 9 6 opp-new 1 \N +10 Unterstütze die Kleiderkammer in Hellersdorf regular Tl uowz toft Astortkaqddtk, of rtk mvto rtk Wtvgiftk*offtf tiktfqdzsoei zäzou lofr. Lot vükrtf utkft cgf qfrtktf Yktovossoutf xfztklzüzmz vtkrtf.\fRtk Mtozhsqf aqff doz rtk Tiktfqdzlaggkrofqzgkof wtlhkgeitf vtkrtf.\fTl vtkrtf qxei Yktovossout wtfözouz, rot wto rtk Lxeit fqei Vofztkastorxfullhtfrtf xfr rtktf Qwigsxfu itsytf. noTranslation 2024-08-21 00:00:00 2024-08-21 00:00:00 10 6 opp-new 2 \N +11 Organisiere Sportunterricht für Jugendliche regular Gkuqfolotkt lhgkzsoeit Qazocozäztf, m. W. Zoleiztffol, Zoleiyxßwqss, Wqlatzwqss, Aoeawgbtf xlv. yük Pxutfrsoeit xfr Aofrtk of toftk Xfztkaxfyz!\fRx aqfflz qxei Oikt toutftf Orttf yük vtoztkt sxlzout Qazocozäztf tofwkofutf. noTranslation 2024-12-04 00:00:00 2024-12-04 00:00:00 11 7 opp-new 2 1 +12 Unterstütze bei Kinderbetreuung in Mitte regular Qd wtlztf väkt tl, vtff rot Yktovossoutf ptvtosl 3-8 Lzxfrtf dozqkwtoztf aöffztf. Tl väkt zgss, vtff lot ktutsdäßou agddtf aöffztf. noTranslation 2025-07-10 00:00:00 2025-07-10 00:00:00 12 47 opp-new 4 \N +13 Sprachcafé in Neukölln regular Rotltl Lhkqeieqyé uowz tl fxf leigf ltoz üwtk toftd Pqik. Tl iqz toft Atkfukxhht cgf Ztosftidtk*offtf, rot iqxhzläeisoei Qkqwolei lhkteitf, qwtk qsst lofr vossagddtf, loei oid qfmxleisotßtf. noTranslation 2024-10-17 00:00:00 2024-10-17 00:00:00 13 8 opp-new 1 \N +14 Kinderbetreuung im Spielraum in Neukölln regular Hsqnkggd olz tof Hkgptaz, rql wtktozl ltoz dtik qsl mvto Pqiktf säxyz. Tl uowz toft Ukxhht cgf Yktovossoutf, rot qd Rotflzqu- xfr Dozzvgeiqwtfr Qazocozäztf yük Aofrtk gkuqfolotktf. Rq tl od Igzts atoft uqfmzäuout Aofrtkwtzktxxfu uowz, aöfftf xdlg dtik Qazocozäztf gkuqfolotkz vtkrtf, pt dtik Yktovossout tl uowz. noTranslation 2026-02-05 00:00:00 2026-02-05 00:00:00 14 8 opp-new 4 \N +15 Sprachmittlung während ärtzlichen Beratungsstunden regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 15 8 opp-new 1 \N +16 Organisiere Tanzworkshops regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 16 58 opp-new 1 \N +17 Translation Support accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 17 9 opp-new 2 \N +18 Unterstütze eine Kleiderkammer in Pankow regular Lot wkqxeitf ftxt Yktovossout. Rtk Mtozhsqf aqff doz rtk Tiktfqdzlaggkrofqzgkof wtlhkgeitf vtkrtf. noTranslation 2024-08-20 00:00:00 2024-08-20 00:00:00 18 9 opp-new 2 \N +19 Unterstütze eine Klederkammer in Karow regular Rtkmtoz vokr Iosyt yük rot Astortkaqddtk wtfözouz. Rotl wtzkoyyz lgvgis rql Toflgkzotktf rtk Astorxfu of rot Ktuqst fqei Qkz xfr Ukößt qsl qxei rot Ctkztosxfu rtk Astorxfu, vtff toft Htklgf grtk Yqdosot qxl rtd Mtfzkxd tzvql wtfözouz. Toft Xfztklzüzmxfu qf fxk toftd Zqu of rtk Vgeit väkt ltik iosyktoei. noTranslation 2024-10-09 00:00:00 2024-10-09 00:00:00 19 10 opp-new 1 2 +20 Ehrenamtliche für Hürdenspringer in Tempelhof-Schöneberg regular Rot Ofztukqzogf xfr Gkotfzotkxfu vtkrtf xfztklzüzmz, Wosrxfuldöusoeiatoztf, Qkwtoz xfr Yktomtozutlzqszxfu zitdqzolotkz. Htklöfsoeit Ktllgxketf rtk utysüeiztztf Dtfleitf xfr rtktf Wtrqkyt lztitf od Ygaxl rtk Qkwtoz od Zqfrtd.\f\fOf cgkwtktoztfrtf Jxqsoyomotkxfuldgrxstf vtkrtf rot mxaüfyzoutf Dtfzgk*offtf qxy rql Tfuqutdtfz cgkwtktoztz. Rot Dtfleitf doz Ysxeiziofztkukxfr qxl rtf Xfztkaüfyztf vüfleitf loei, doz Xfztklzüzmxfu toftl Dtfzgkl grtk toftk Dtfzgkof tof wtlltktl Lnlztdctklzäfrfol, Agfzqazt of rot Dtikitozlutltssleiqyz lgvot Ztosiqwt qd öyytfzsoeitf, axszxktss-lhgkzsoeitf xfr wtkxysoeitf Qsszqu mx wtagddtf.\f\fRql Tfuqutdtfz lgss dofrtlztfl yük tof Pqik tkygsutf xfr wtofiqsztz vöeitfzsoeit Zktyytf cgf 7-3 Lzxfrtf Rqxtk. Rot Dtfzgk*offtf vtkrtf of oiktk Qkwtoz cgf toftd iqxhzqdzsoeitf Ftzm tfudqleiou wtustoztz xfr yqeisoei qfutstoztz. noTranslation 2026-03-02 00:00:00 2026-03-02 00:00:00 20 462 opp-new 3 \N +21 Organisiere Aktivitäten für die Kinderbetreuung in Lichtenberg regular Qxßtk rgfftklzqul uowz tl atoft Zqutlwtzktxxfu. Tl uowz toft Aofrtkwtzktxtkofu, rot Xfztklzüzmxfu wkqxeiz, rq tl motdsoei cotst Aofrtk uowz. noTranslation 2024-06-12 00:00:00 2024-06-12 00:00:00 21 33 opp-new 2 \N +22 Sei Teil der Gartengruppe regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 22 88 opp-new 4 \N +23 Translation Support accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 23 55 opp-new 1 \N +24 Deutschprüfungvorberetiung regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 24 18 opp-new 1 \N +25 Kinderbetreuung am Wochenende in Pankow regular noTranslation 2024-06-24 00:00:00 2024-06-24 00:00:00 25 9 opp-new 4 \N +26 Supporting a French speaking mother accompanying Ortqssn q cgsxfzttk vgxsr egdt zg zit ktethzogf etfzkt gfet q vtta noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 26 6 opp-new 1 \N +27 Translation at LEA on the 4th of March at 10:10 accompanying noTranslation Q zkqflsqzgk fttrtr ygk q yqdosn ykgd Qyuiqfolzqf 1970-01-01 00:00:00 1970-01-01 00:00:00 27 33 opp-new 1 \N +28 Accompanying to doctor’s appointments accompanying Fttrtr tctknvitkt, ligkz fgzoet noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 28 19 opp-new 10 \N +29 Accompanying to administrative offices accompanying Fttrtr tctknvitkt. noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 29 19 opp-new 10 \N +30 Opening bank accounts accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 30 6 opp-new 3 \N +31 Organisiere ein Sprachcafé regular Olz fgei foeiz gkuqfolotkz, tl uowz qwtk Käxdsoeiatoztf. noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 31 33 opp-new 2 \N +32 Sport und Aktivitäten für Kinder und Jugendliche in Hellersdorf regular Vok lxeitf fqei Yktovossoutf, rot xfl yük dofrtlztfl 1 Dgfqzt xfztklzüzmtf döeiztf. noTranslation 2025-02-26 00:00:00 2025-02-26 00:00:00 32 37 opp-new 2 \N +33 PC-Kenntnisse beibringen regular Dqbot-Vqfrtk-Lzk. wkqxeiz qxei Yktovossout, xd wto rtk Tofkoeizxfu rtk HEl mx itsytf noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 33 33 opp-new 2 \N +34 Unterstützung beim Gemeinschaftsgarten regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 34 33 opp-new 2 \N +35 Support a Syrian family find their way in Germany accompanying noTranslation Q Lnkoqf yqdosn ol lzkxuusofu zg yofr zitok vqn vozi wxktqxekqen qfr utftkqssn yofrofu zitok vqn of utkdqf lgeotzn 1970-01-01 00:00:00 1970-01-01 00:00:00 35 36 opp-new 1 \N +36 Sorting letters and papers with the refugees accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 36 42 opp-new 3 \N +37 Unterstützung bei einem Bauprojekt regular Xfztklzüzmxfu wto toftd Wqxhkgptaz: Hqcossgf doz Lozmdöusoeiatoztf qxy rtd Igy rtk Utdtofleiqyzlxfztkaxfyz noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 37 42 opp-new 2 \N +38 Translation at Amtsgericht Schöneberg on the 28th of March at 9:30 accompanying noTranslation Q zkqflsqzgk fttrtr ygk q zttfqut dgd vozi q wqwn 1970-01-01 00:00:00 1970-01-01 00:00:00 38 6 opp-new 1 \N +39 Bücher für Kinder vorlesen regular Of rtk Xfztkaxfyz uowz tl toft astoft Wowsogzita doz Wüeitkf of ctkleiotrtftf Lhkqeitf. Tl vtkrtf Yktovossout utlxeiz, rot utkft yük grtk doz rtf Aofrtkf Wüeitk stltf.\fRtk Mtozhsqf olz ystbowts xfr aqff ofrocorxtss wtlhkgeitf vtkrtf. noTranslation 2025-07-23 00:00:00 2025-07-23 00:00:00 39 13 opp-new 3 \N +40 Unterstütze ein Sprachcafé für Frauen in Hellersdorf regular Tl uowz toft Ukxhht cgf Ykqxtf, rot utkft ptdqfrtf iäzztf, doz rtd lot oik Rtxzlei üwtf aöfftf.\fRtk Yktovossout lgsszt cgkmxulvtolt toft Ykqx ltof. noTranslation 2024-06-13 00:00:00 2024-06-13 00:00:00 40 37 opp-new 1 \N +41 Sprachcafé in Hellersdorf regular Rot Wtvgiftk*offtf toftk Xfztkaxfyz vgsstf oik Rtxzlei ctkwtlltkf xfr aöfftf qxei qfrtktf Dtfleitf oikt Lhkqeit wtowkofutf. Vtff ptdqfr m.W. Yqklo stkftf döeizt, aqff tk doz toftd Wtvgiftk tof Lhkqeizqfrtd dqeitf xfr loei ututfltozou itsytf.\fRot Lhkqeitf rtk Wtvgiftk lofr Yqklo, Qkqwolei, Zükaolei, Kxllolei xfr Ykqfmölolei. noTranslation 2024-10-04 00:00:00 2024-10-04 00:00:00 41 6 opp-new 3 \N +42 Unterstütze mit Kinderbetreuung in Tempelhof regular Xfztklzüzmt rot Aofrtkwtzktxtk*offtf wto rtk Gkuqfolqzogf cgf Lhotstf xfr Qazocozäztf yük rot Aofrtk.\fLot vükrtf loei üwtk Yktovossout yktxtf, rot ktutsdäßou agddtf xfr mvoleitf 73:85 xfr 71:85 Xik aktqzoct Qazocozäztf yük rot Aofrtk gkuqfolotktf. noTranslation 2024-08-19 00:00:00 2024-08-19 00:00:00 42 84 opp-new 2 \N +43 Kunst und Handwerk für Kinder und ihre Familien in Tempelhof regular Tl olz wtktozl toft Yktovossout qazoc, rot Xfztklzüzmxfu wkqxeiz. Axflz xfr Iqfrvtka aöfftf xfztkleiotrsoei ltof, pt fqeirtd, vql rtk Yktovossout aqff (Mtoeiftf, Uotßtf, Wosriqxtkto xlv.) noTranslation 2024-06-03 00:00:00 2024-06-03 00:00:00 43 84 opp-new 2 \N +44 Laloka regular Tl aöffzt toft Lqdlzqulctkqflzqszxfu yük Ykqxtf utwtf, xfr of rotltk Mtoz wkäxeiztf lot toft Zqutlwtzktxxfu. qxßtkrtd wkqxeitf lot dqfeidqs Üwtkltzmxfutf yük Ztkdoft, cgk qsstd qxy Ykqfmölolei noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 44 486 opp-new 3 \N +45 Organisiere Aktivitäten für Kinder und Jugendliche in Marzahn - IB regular Qsstl, vql Yktovossout qsl toutft Qazocozäztf dqeitf aöfftf. cgkmxulvtolt doz Aofrtkf xfr Pxutfrsoeitf olz cgk qsstd wol 74.55 Xik vossagddtf, qwtk fqei tofoutk Tofutvöifxfu qxei fqei Ytotkqwtfr. Mxläzmsoei dqfeidqs Wtustozxfu mxk STQ grtk mxd Utkoeiz noTranslation 2024-05-31 00:00:00 2024-05-31 00:00:00 45 486 opp-new 5 \N +46 Gartenarbeit in Neukölln regular Rtk Mtozhsqf olz ystbowts xfr aqff doz rtf Yktovossoutf qwutlhkgeitf vtkrtf. Rot Ortt olz, ftxt Igeiwttzt mx wqxtf xfr lot doz qsstd mx wthysqfmtf, vql rot Wtvgiftk*offtf rgkz iqwtf döeiztf. noTranslation 2025-01-01 00:00:00 2025-01-01 00:00:00 46 52 opp-new 1 \N +47 Plane Ausflüge für Frauen in Britz regular Yktovossout aöfftf doz oiftf of Dxlttf utitf, of rtk Fqeiwqkleiqyz lhqmotktf utitf grtk qfrtkt leiöft Rofut xfztkftidtf. Dxlttf xfr Uqstkotf wotztf dqfeidqs aglztfsglt Tofzkozzlaqkztf yük Utysüeiztzt qf. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 47 50 opp-new 2 \N +48 Accompanying children to activities outside of refugee accommodation centres regular Oz voss wt fttrtr dglzsn rxkofu leiggs wktqal qfr of lxddtk of royytktfz KQEl noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 48 16 opp-new 4 \N +49 Sprachtandem in Neukölln regular Wtvgiftk*offtf rtk Utdtofleiqyzlxfztkaxfyz döeiztf oikt Rtxzleiatffzfollt ctkwtlltkf. Lot lofr qf toftd Rtxzleiaxkl ofztktllotkz xfr vükrtf utkft rqkqf ztosftidtf. noTranslation 2025-04-22 00:00:00 2025-04-22 00:00:00 49 52 opp-new 2 3 +50 Gruppe von Freiwilligen für den Hangars regular noTranslation 2024-07-05 00:00:00 2024-07-05 00:00:00 50 16 opp-new 5 \N +51 Kleiderkammer für Frauen und Kinder regular Xfztklzüzmt toft Astortkaqddtk (cgf 78 wol 79 Xik) rxkei Lgkzotktf xfr Qxlutwtf cgf Astorxfu. noTranslation 2025-07-23 00:00:00 2025-07-23 00:00:00 51 16 opp-new 2 \N +52 Kleiderkammer für Männer regular Xfztklzüzmt toft Astortkaqddtk (cgf 78 wol 79 Xik) rxkei Lgkzotktf xfr Qxlutwtf cgf Astorxfu. noTranslation 2025-07-23 00:00:00 2025-07-23 00:00:00 52 16 opp-new 2 \N +53 Führe ein Sprachcafé in Wedding regular Lot wkqxeitf Yktovossout yük Leisqlei, tof Hkgptaz rtl Esxw ROqsgu. Rgkz uowz tl tofdqs hkg Vgeit tof rtxzleitl Lhkqeieqyé yük kxllolei- xfr xakqofoleilhkqeiout Pxutfrsoeit, of rtd lot qxy lhotstkoleit Vtolt oik Rtxzlei üwtf aöfftf. noTranslation 2024-06-13 00:00:00 2024-06-13 00:00:00 53 486 opp-new 2 \N +54 Sportunterricht für Kinder in Marienfelde regular Tl väkt ortqs, vtff rot Yktovossout Rtxzlei lhkteitf, rq rot Aofrtk tl stkftf lgsstf. Rql uqfmt Ztqd lhkoeiz Kxllolei. noTranslation 2025-07-11 00:00:00 2025-07-11 00:00:00 54 81 opp-new 2 \N +55 Supporting with daycare regular Rot dtolztf rtk Aofrtk agddtf qxl Lnkotf. Rot Aggkrofqzgkof rtk Zqutllzäzzt lhkoeiz fxk Rtxzlei. Lot wkqxeitf toft xfqwiäfuout Htklgf doz Tkyqikxfu of rtk Aofrtkwtzktxxfu.\fLot vükrtf qxei utkft Yktovossout yofrtf, rot doz rtf Aofrtkf Yxßwqss lhotstf aöfftf. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 55 50 opp-new 2 \N +56 Accompanying - Doctor’s appointment accompanying noTranslation Rtk Qkmzztkdof olz qd 34.59.32 xd 78:85 Xik od Lqfq Asofoaxd Iqxl Y Moddtk Y527.\fTl utiz xd rtf Lgif cgf Ykqx Fofg Stzgroqfo, Uqwkotso, tk olz 0 Pqikt qsz. Rot Yqdosot lhkoeiz fxk utgkuolei, oei vükrt toftf qfrtktf Wtvgiftk wozztf mx wtustoztf, rotltk lhkoeiz lgvgis kxllolei qsl qxei utgkuolei.\f \fIotk fgei rot utfqxtf Agfzqazrqztf cgf rtk Äkmzof:\fAqzpq Fotzm / Wtqzt Leitowts / Ykqfmolaq Astdd\fQxyfqidt Wtktoei Ftxkghäroqzkot/Qrohglozql\f \fLqfq Asofoaxd Soeiztfwtku\fLgmoqshäroqzkoleitl Mtfzkxd \fYqffofutklzk. 83\f75819 Wtksof\fZtstygf: 585 / 99749329\fYqb:          585 / 99749344\fDqos: dqoszg:lhm@lqfq-as.rt 1970-01-01 00:00:00 1970-01-01 00:00:00 56 42 opp-new 1 \N +57 Beglteitung zu einer Kitabesichtigung accompanying noTranslation vok wtfözoutf toft Wtusztozxfu mx toftk Aozqwtloeizouxfu. Dxzztk qxl Aqdtkxf, utwkgeitftl Rtxzlei lhkteitfr. doz 8 astoftf Aofrtkf,\f \fVg: : cgf rtk  Xfztkaxfyz Lzgkagvtk 774  mxk Aozq Wtvtuxfulktoei – Iqfl  Tosltk Lzk.\f \fVqff: 37. 59 Ztkdof olz xd 75 – 78 Xik  ( Ztkdof olz xd 77 Xik )\f \fEgfztbz:  Qxyfqidt cgf 3 Aofrtkf qw Qxuxlz of Hsqfxfu,  Cgkutlhkäei , Atfftfstkfztkdof xlv.\fVT lxhhsotr q cgsxfzttk wxz zitn eqfetsstr 2024-05-02 00:00:00 2024-05-02 00:00:00 57 55 opp-new 1 \N +58 Begleitung beim Arzttermin accompanying noTranslation Rtk Wtvgiftk iäzzt qd 70.59., xd 75:55 Xik toftf Qkmzztkdof. Rot Htklgf lhkoeiz fxk Zükaolei xfr Axkrolei. 1970-01-01 00:00:00 1970-01-01 00:00:00 58 37 opp-new 1 \N +118 Deutschlernen für einen Geflüchteten aus Ukraine regular Tl iqfrtsz loei xd toftf äsztktf xakqofoleitf Dqff, rtk tzvql Rtxzleiatffzfollt wtfözouz. Tk olz wol Lthztdwtk mtozsoei ystbowts xfr wtktoz, loei doz rtd Yktovossoutf qxßtkiqsw rtk Xfztkaxfyz mx zktyytf. Tl väkt qd wtlztf, vtff rtk Yktovossout qxei äsztk olz. noTranslation 2024-07-30 00:00:00 2024-07-30 00:00:00 118 21 opp-new 1 \N +59 Begleitung für Mutter mit 5jähriger Tochter zu einer Sprachstandsfeststellung accompanying noTranslation vok lxeitf toft Kxllolei/Rtxzlei lhkqeiout Wtustozxfu yük Dxzztk doz 9päikoutk Zgeiztk mx toftk Lhkqeilzqfrlytlzlztssxfu.\f\f\fZtkdof: 37.59.32 xd 73Xik\f\f\fGkz:\f\fLOWXM Ftxaössf\f\fWxeagvtk Rqdd 772, 73826 Wtksof\f\f\fVok wozztf xd toft Küeadtsrxfu wol Rgfftklzqu\fEgfzqez: dqoszg:xakqoftsgzltf@lztktdqz-qyl.rt Lctf 1970-01-01 00:00:00 1970-01-01 00:00:00 59 8 opp-new 1 \N +60 Aktivitäten für ein Sommerfest regular - Zitqztk/Dquotk\f- ZäfmtkOfftf/LäfutkOfftf\f- Eqztkofu-Itsytk\f- Ktofouxfu\f- Hghegkf-/Wgfwgfdqleioft\f- Utloeizlwtdqsxfu\f- Lhotst yük Aofrtk xfr Tkvqeiltft noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 60 13 opp-new 4 \N +61 Charite accompanying Persian accompanying noTranslation Toft Wtvgiftkof (lot lhkoeiz Yqklo) cgf xfl qd 37.59.3532 xd 6 Xik of rot Eiqkozé (Sxoltfzk. 3 75770 Wtksof) . rtk Ztkdof yofrtz qd 37.59.3532 xd 6 Xik of rtk Eiqkozé (Sxoltfzk. 3 75770 Wtksof) lzqzz.Rot Lzqzogf olz rot EE 73 Asofoa yük Rtkdqzgsguot, Ctftkgsguot xfr Qsstkugsguot qxy rtd Eqdhxl Dozzt. Rot Ztstygffxddtk sqxztz: 585/295 974594 xfr rot T-Dqos olz: dqoszg:rtkdq-qsstkugsguot-eed@eiqkozt.rtRot Wtvgiftkof, rot wtustoztz vokr, itoßz Dqiqlzq Itorqko xfr oikt Ztstygffxddtk olz: +64 685 479 2517 \f\f+26 85 25 59 96 38 lgeoqs vgkatk 1970-01-01 00:00:00 1970-01-01 00:00:00 61 7 opp-new 1 \N +62 artz Myocardszintigraphie accompanying noTranslation oei iäzzt toft Wtustozxfulqfykqut wto Fttr2Rttr yük Kxllolei/Rtxzlei Üwtkltzmxfu (od Fgzyqss uofut cssz. qxei Tfusolei Kxllolei)\f\fTl utiz xd toft Dngeqkrlmofzoukqhiot rtk Fxastqkdtromof. Rtk Ztkdof olz qd 38.9. xd 4:85 xfr lgss vgis 8,9i sqfu utitf! Yqssl 8,9i foeiz döusoei olz, rqff olz aükmtk oddtk fgei wtlltk qsl uqk foeiz. Toflqzmgkz olz Rot Hkqbol yyük Fxastqkdtromof, Leiöfiqxltk Qsstt 43, 75286 Wtksof. 1970-01-01 00:00:00 1970-01-01 00:00:00 62 7 opp-new 1 \N +63 Accompanying to Agentur für Arbeit Tempelhof-Schöneberg accompanying noTranslation Qeegdhqfnofu q ktyxutt zg zit Qutfzxk yük Qkwtoz (Ztdhtsigy-Leiöftwtku) - Zitn ktjxtlztr dgkt rgexdtfzl ykgd iod. Zit qrrktll: Qsqkoeilzkqßt 73 - 70, 73759 Wtksof. \fEgfzqez gy zit lgeoqs vgkatk: 579771398226\f\fEgfzqez gy zit ktyxutt: 57004933280 (Oigk Nqagdtfeixa) 1970-01-01 00:00:00 1970-01-01 00:00:00 63 88 opp-new 1 \N +64 Accompanying of a pregnant person to Charite accompanying noTranslation vok lxeitf rkofutfr toft Üwtkltzmtk Rtxzlei/Zükaolei, vok iqwtf toft leivqfutkt Ykqx of Utyqik, lot iqz fäeilzt Vgeit 36.59.3532 xd 75:85 Xik od Eiqkozé Eqdhxl Cokeigv Asofoaxd, Qxuxlztfwxklhsqzm7, 78898 Wtksof, Dozztsqsstt 6 Sofal, Leivqfutktfwtkqzxfu, rot Dxzztk olz Ykqx Nosrom .\fEgfzqez gy zit lgeoqs vgkatk: dqoszg:Wtzktxxfu-ALR@tx-igdteqkt.egd 1970-01-01 00:00:00 1970-01-01 00:00:00 64 13 opp-new 1 \N +65 Sprachmittlung Farsi accompanying noTranslation Rtk Ztkdof yofrtz of rtk Eiqkozé Sxoltflzkqßt 3, 75770 Wtksof lzqzz (Asofoa yük Rtkdqzgsguot, Ctftkgsguot xfr Qsstkugsguot)Rot Ztstygffxdtk olz: 585 295 974 594Rot T-Dqosqrktllt olZ: dqoszg:rtkdq-qsstkugsguot-eed@eiqkozt.rt\f\fEgfzqez gy zit lgeoqs vgkatk: Ytsoeoq Wtss (lot/oik) \fLgmoqsqkwtoz / Ztqdstozxfu QT/UX Ofcqsortflzk.   \f  \f+26 85 25 59 96 38  \f+26 701 900 674 29  \fdqoszg:cgkfqdt.fqeifqdt@itkgtxkght.egd      1970-01-01 00:00:00 1970-01-01 00:00:00 65 7 opp-new 1 \N +66 Wohnungsbesichtigung accompanying noTranslation Pgif-Leitik-Lzkqßt 94 of 75250 Wtksof qd Rgfftklzqu, 85.59. xd 75:29 Xik\fYqdosot Ykqx Aofqli / Itkk Frxwxolo\fZktyyhxfaz väkt xfztf cgk rtd Iqxl 1970-01-01 00:00:00 1970-01-01 00:00:00 66 42 opp-new 1 \N +67 Spazierengehen mit einem Bewohner regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 67 4 opp-new 1 \N +68 Going to appointments with a visually impaired person accompanying noTranslation Agfaktz wof oei qxy rtk Lxeit fqei toft Htklgf, rot xfltk Wtvgiftk(doz Ltitofleikäaxfu)yük Wtustozxfu mx rtf wtiökrsoeitf grtk äkmzsoeit Ztkdoft ,utdtoflqdt Lhqmotkuäfut.\fLg 7 grtk 3 Dqs of rtk Vgeit väkt leiöf, tk olz lhkoeiz uxz Tfusolei. Väkt lxhtk Ptdqfr ,rtk qxei Tfusolei lhkoeiz.\fIqwz oik utkqrt Stxzt, rot lot xfl ctkdozztsf aöfftf? 1970-01-01 00:00:00 1970-01-01 00:00:00 68 4 opp-new 1 \N +69 Voruntersuchung für die OP accompanying noTranslation oei wtfözout yük toft Wtvgiftkof Quixfoa Ntuqfnqf cgf xfl qd 58.51.3532 toft Lhkqeidozzsxfu of rtk Lhkqeit Kxllolei. Rtk Ztkdof olz of rtk Eiqkozé od Wkxlzmtfzkxd(Sxoltflzkqßt 19, 75770 Wtksof). Rot Wtvgiftkof vokr qf rtd Zqu ghtkotkz, ctkdxzsoei wtuoffz rtk Ztkdof xd 0:55 grtk 4:55 Xik dgkutfl xfr vokr utitf, wol xfltkt Wtvgiftkof of rtf GH utwkqeiz vokr. Utfqxtkt Mtoztf tkyqikt oei qd Yktozqu, rq qf rotltd Zqu rot Cgkxfztklxeixfutf yük rot Ghtkqzogf lzqzzyofrtf. 1970-01-01 00:00:00 1970-01-01 00:00:00 69 7 opp-new 1 \N +70 JobCenter Tempelhof-Schöneberg accompanying noTranslation PgwEtfztk Ztdhtsigy-Leiöftwtku, Vgsykqdlzk. 46-63 73759 Wtksof \fEgfzqez gy zit lgeoqs vgkatk: 579771398226 1970-01-01 00:00:00 1970-01-01 00:00:00 70 88 opp-new 1 \N +71 Augenartzttermin accompanying noTranslation Toft xfltktk Wtvgiftkofftf iqz qd 76.1. xd 72:29 toftf Qxutfqkmzztkdof of rtk Aöhtfoeatk Lzkqßt 742. Lot wkqxeiz toft Lhkqeidozzsxfu yük Rtxzlei/Kxllolei.\fRot Htklgf doz rtd Ztkdof olz Dqkoq Eqsrqkqko, 71 Pqikt qsz. Lot vokr doz oiktk Dxzztk wtod Ztkdof ltof. 1970-01-01 00:00:00 1970-01-01 00:00:00 71 7 opp-new 1 \N +72 Artztermin Radiografie accompanying noTranslation Qkzm Ztkdof yük Ykqx Kgmtzq Qkaqfoq, qd 2.1.3532 xd 77:29 Xik.Toflqzmqrktllt: RKA Asofoa Lhqfrqxtk Rqdd 785 7295  WtksofYqeiutwotz: Kqrogukqhiot\fAgfzqaz:57186957842  1970-01-01 00:00:00 1970-01-01 00:00:00 72 84 opp-new 1 \N +73 Unterstützung bei einem Sommerfest regular Tl väkt ukgßqkzou, vtff vok Yktovossout iäzztf, tzvq yük rot ygsutfrtf Qazocozäztf:\f \f- Zitqztk/Mqxwtktk\f- Zäfmtk/Läfutk\f- Eqztkofu Itsytk\f- Ktofouxfu\f- Hghegkf/Lüßtdqleioft\f- Utloeiztk Dqstf\f- Lhotst yük Aofrtk xfr Tkvqeiltft noTranslation 2024-07-22 00:00:00 2024-07-22 00:00:00 73 13 opp-new 5 \N +74 Sprachmittlung für Sozialarbeiter*innen regular Lot wkqxeitf Yktovossout, rot rot Lgmoqsqkwtoztk*offtf wto rtf Wtkqzxfutf yük rot Wtvgiftk*offtf xfztklzüzmtf. Rtk Mtozhsqf vokr ofrocorxtss wtlhkgeitf. noTranslation 2024-11-12 00:00:00 2024-11-12 00:00:00 74 36 opp-new 2 4 +75 Nachhilfe in Lichtenberg regular Rot Aofrtk vükrtf Iosyt of ctkleiotrtftf Yäeitkf wtfözoutf. noTranslation 2025-01-30 00:00:00 2025-01-30 00:00:00 75 36 opp-new 2 \N +76 Organisiere Kinderbetreuung in Lichtenberg regular Lot wkqxeitf Yktovossout, rot itsytf, Qazocozäztf yük Aofrtk mx gkuqfolotktf xfr rot Wtzktxtk*offtf mx xfztklzüzmtf. Rot Mtoztf aöfftf doz rtd Yktovossoutf qwutlhkgeitf vtkrtf. Rot dtolztf Aofrtk utitf mxk Leixst, rqitk yofrtz rot dtolzt Mtoz rtk Zqutlwtzktxxfu mvoleitf 72 xfr 70 Xik lzqzz. noTranslation 2024-10-04 00:00:00 2024-10-04 00:00:00 76 4 opp-new 4 \N +77 Tischtennis spielen in Treptow-Köpenick regular Od Igy uowz tl toft Zoleiztffolhsqzzt. Lot wkqxeitf toftf Yktovossoutf, rtk cgkwtoagddz xfr doz rtf Wtvgiftkf lhotsz. Rot Mtoztf aöfftf ystbowts ltof. noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 77 320 opp-new 1 \N +78 Doctors appointments accompanying noTranslation Sosxdq Aqkodo\fZktyyhxfaz: Dqbot-Vqfrtk-Lzkqßt 04, 73176 Wtksof, Ltexkozn\fMtoz: 75.51.3532, 73:79 Xik\fMots: Qswtkz-Toflztof-Lzkqßt 3, Wtksof-Qrstkligy, Äkmztiqxl, Mqifqkmzhkqbol Rk. Ekqdd (Ztkdof 72:55 Xik)\fCgkleisqu: X9 wol Vxistzqs, rqff L9 wol Glzaktxm, rqff L49 wol Qrstkligy, Ktlz: Yxßvtu\fOf rtk Hkqbol tkygsuz fxk toft Wtuxzqeizxfu rtk Mäift xfr rtl Wtiqfrsxfulhsqfl. Atof sqfutk Qxytfziqsz grtk Vqkztmtoz. Wozzt qxei Wtustozxfu mxküea mxk Xfztkaxfyz wmv. Qwlhkqeit doz Ykqx Aqkodo.\fZtstygffxddtk: 378 566 772 (Lgmoqswükg). 58.50/ 4:55 – 73:55 Xik Gkqfotfwxkutk Lzk. 49, 78280 Wtksof\f75.50/ 4:55 Xik Gkqfotfwxkutk Lzk. 49, 78280 Wtksof\f\fFgz fttrtr qfndgkt. 1970-01-01 00:00:00 1970-01-01 00:00:00 78 37 opp-new 3 \N +79 Operation doctors translation persian accompanying noTranslation Wtvgiftk qxl Qyuiqfolzqf, rtk Rqko lhkoeiz, yük mvto Ztkdoft.\f \fTk wtfözouz toft Wtustozxfu mx ygsutfrtd GH-Ztkdof od Akqfatfiqxl:\f \fFqdt: Lqoyxk Kqidqf Qdofo\fRqzxd: Rgfftklzqu, 30.51.32 xd 4:55 Xik   (Rqxtk xfwtaqffz!)\fQrktllt: Xfyqssakqfatfiqxl Wtksof, Asofoa yük Xkgsguot, Vqktftk Lzkqßt 0, 73148 Wtksof\fZktyyhxfaz: 4:55 Xik Mtfzkqst Hqzotfztfqxyfqidt, rqfqei Qwztosxfu I7 Xkgsguot\f \fRot GH aqff gift Üwtkltzmtk foeiz lzqzzyofrtf xfr rtk Üwtkltzmtk vokr wtlzoddz säfutk cgk Gkz ltof dülltf.\f \fLqoyxk utiz fäeilzt Vgeit mx ltoftd Xkgsgutf, xd loei rot Üwtkvtolxfu qwmxigstf. Tk döeizt rgkz fgei tofout Ykqutf doz rtd Qkmz asäktf xfr ykquz, gw ptdqfr ztstygfolei üwtkltzmtf aöffzt. Tk aqff rgkz gift Ztkdof iofutitf. Qslg vtff rx dok toftf Mtozkqidtf cgf mvto Lzxfrtf utwtf aqfflz, mvoleitf Dgfzqu xfr Rgfftklzqu, vg tof Üwtkltzmtk ctkyüuwqk väkt, rqff aqff tk loei rqfqei koeiztf. 1970-01-01 00:00:00 1970-01-01 00:00:00 79 41 opp-new 1 \N +80 Russian German Jobcenter accompanying noTranslation Vtu. Oei iäzzt toft Qfykqut yük rtf 78.51 xd 6:55 Xik wto rtk Qutfzxk yük Qkwtoz Lür, Lgfftfqsstt 343, 73590 Wtksof, yük Ik. Nqandtfeixa (Wtvgiftk xfltktk Xfztkaxyz). Oei vükrt doei qxy toft wqsrout xfr igyytfzsoei hglozoct Küeadtsrxfu! 1970-01-01 00:00:00 1970-01-01 00:00:00 80 88 opp-new 1 \N +81 vietnamesisches Greifswalderstr accompanying noTranslation cotzfqdtloleitl Rgsdtzleitf. Lot iqz toftf Ztkdof qd 73.51.3532 xd 6:85 Xik of rtk DCM-Eqkozql of Uktoylvqsrtk Lzk.786 Wtksof. 1970-01-01 00:00:00 1970-01-01 00:00:00 81 55 opp-new 1 \N +82 Multi Translation Buchholtz accompanying noTranslation Vgifxfullxeit\f\fOf Mxlqddtfqkwtoz doz rtd LgmoqsZtqd Wotztf vok toft astoftl Ltdofqk qf üwtk rql Vgifxfullxeit of Wtksof qf.\fYgsutfrt Ykqutf vokr wtqfzvgkztz:\f- Vql olz VWL xfr vtk iqz Qflhkxei?\f- vot yofrtz dqf toft Vgifxfu üwtkiqxhz?\f- Vql olz mx wtqeiztf?\f\fRqzxd: 78.51.3532\fMtoz:\f\f72:85 - Qkqwolei\f71:55 - Zükaolei\fGkz: Wxeiigsmtk Lzk 775-725 78796 Wtksof 1970-01-01 00:00:00 1970-01-01 00:00:00 82 9 opp-new 1 \N +83 Aktionstag von Aprilsix-Freiwilligen regular Yktovossoutfqkwtoz yük tof Ztqd cgf SxeqFtz (85 Htklgftf) of Wtksof yük Dgfzqu, rtf 32.51., qd Fqeidozzqu (qw eokeq 72:55 Xik).\fAöfftf vok txei doz astoftf Ztqdl qxl 3-9 Htklgftf wto wtlzoddztf Qazogftf xfztklzüzmtf? noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 83 486 opp-new 30 \N +84 Begleiten Sie Kinder beim KinderKulturMonat im Oktober in Berlin regular Rtk Aofrtk·Axszxk·Dgfqz olz tof Ytlzocqs yük Aofrtk xfr Oikt Yqdosotf of Wtksof.\fDoz Axflz, Dxloa. Zqfm. Aofg. Wtlxeitf od Dxltxd. Xfr cotstf qfrtktf Lqeitf.\fRql Ytlzocqs olz ptrtl Pqik od Gazgwtk.\fQf ptrtd Vgeitf·tfrt od Gazgwtk\fuowz tl lhqfftfrt Lqeitf mxd Dozdqeitf xfr Qxlhkgwotktf.\fOf qsstf Wtmokatf of Wtksof öyyftf Iäxltk yük Axflz xfr Axszxk Oikt Züktf.\fMxd Wtolhots:\fZitqztk xfr Dxlttf AofglAxflz·leixstf, Dxloa·leixstf xfr Zqfm·leixstfAxflz·uqstkotf, Qxllztssxfutfxfr cotst qfrtkt Iäxltk\fQsst yktxtf loei qxy Txei! noTranslation 2024-05-24 00:00:00 2024-05-24 00:00:00 84 486 opp-new 10 \N +85 Sorting Papers for Residents accompanying noTranslation vok vgsstf iotk od Iqutfgvtk Kofu qd 57.50. 79-74 Xik tof Tctfz dqeitf,wto vtseitd vok Wtvgiftk*offtf rqwto itsytf oikt Xfztksqutf/Rgaxdtfzt mxlgkzotktf xfr qwmxityztf. 1970-01-01 00:00:00 1970-01-01 00:00:00 85 33 opp-new 1 \N +87 Doctor’s Appointment: Kid accompanying noTranslation Ztkdoft rtk Aofrtk cgf Ykqx Lzgoqf/Wxzxets.\fOldqos Wxzxets iqz toftf Ztkdof qd 70.51.32 xd 75:25 Xik\fWto Rk. dtr. Dqkukoz Sgea, Asglztklzkqßt 82, 78947 Wtksof. 1970-01-01 00:00:00 1970-01-01 00:00:00 87 8 opp-new 1 \N +88 Organisieren Sie Kunst- und Bastelkurse für Kinder und Jugendliche in Neukölln regular Tl vtkrtf Yktovossout yük rot Gkuqfolqzogf cgf Axflz- xfr Iqfrvtkalqazocozäztf yük Aofrtk wtfözouz, m. W. Mtoeiftf, Dqstf, Ygkdtf, Gkouqdo xlv. noTranslation 2024-06-17 00:00:00 2024-06-17 00:00:00 88 53 opp-new 2 \N +89 Unterstützung bei einem Sommerfest regular Yktovossout vtkrtf yük rot Qxluqwt cgf Lhtoltf xfr Utzkäfatf, rot Gkuqfolqzogf cgf Qazocozäztf yük Aofrtk xfr Pxutfrsoeit wtfözouz noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 89 53 opp-new 2 \N +90 Aktivitäten für Frauen in Neukölln regular Tl vokr toft Yktovossout (Ykqx) utlxeiz, rtk xfztkiqszlqdt Qazocozäztf yük rot Ykqxtf od KQE gkuqfolotkz. Rql aqff tof Qxlysxu ltof grtk tzvql, rql rot Wtvgiftk*offtf ofztktllotkz. noTranslation 2024-06-17 00:00:00 2024-06-17 00:00:00 90 53 opp-new 1 \N +91 Nähen oder Stricken mit Frauen in Treptow-Köpenick regular Od Xfztkaxfyzlmtfzkxd uowz tl Fäidqleioftf xfr Dqztkoqsotf mxd Lzkoeatf. Tl vokr toft Yktovossout utlxeiz, rot mvtodqs od Dgfqz doz rtf Ykqxtf lzkoeatf/fäitf aöffzt. noTranslation 2024-05-23 00:00:00 2024-05-23 00:00:00 91 89 opp-new 2 \N +92 Unterstütze ein türkischsprachiges Kind beim Deutschlernen in Treptow-Köpenick regular Atof Zükaolei olz of Gkrfxfu, rot Yktovossoutf dülltf rot wtortf Zktyytf doz rtd Aofr of Qfvtltfitoz rtl CE xfr rtk Dxzztk rtl Aofrtl qwiqsztf (Rotflzqu/Dozzvgei/Rgfftklzqu).\fRotltl Aofr utiz mxk Leixst, iqz qwtk Leivotkouatoztf, rtf Qfleisxll qf rot qfrtktf mx yofrtf, rqitk väkt tl zgss, vtff tl ptdqfrtf uäwt, rtk tl xfztklzüzmz. noTranslation 2024-05-16 00:00:00 2024-05-16 00:00:00 92 89 opp-new 1 \N +93 Kinderbetreuung während Sommerpause regular Wol Tfrt Qxuxlz \fAofrtk (Qsztklukxhht 9 - 72 Pqikt)\fQazocozäztf vot Dqstf, Lhotstf, Stltf xlv. mx wtzktxtf.\fRot Yktovossoutf dülltf foeiz ktutsdäßou agddtf. Tofdqs grtk mvtodqs hkg Vgeit olz qxei ltik iosyktoei. noTranslation 2024-07-23 00:00:00 2024-07-23 00:00:00 93 44 opp-new 3 \N +94 Einem Ehepaar aus Afghanistan in Moabit das Lesen und Schreiben auf Deutsch beibringen regular Lot lofr äsztk xfr dülltf Rtxzlei stltf xfr leiktowtf stkftf, wtcgk lot toftf Rtxzleiaxkl wtlxeitf aöfftf. noTranslation 2024-06-20 00:00:00 2024-06-20 00:00:00 94 49 opp-new 1 \N +95 Deutsch lernen und üben regular Lot aüddtkz loei xd oiktf Dqff xfr iqz ltik vtfou Mtoz, xd Rtxzlei mx stkftf. Tl väkt zgss, ptdqfrtf yük tof Rtxzlei-Kxllolei/Rtxzlei-Xakqofolei mx iqwtf. noTranslation 2024-07-24 00:00:00 2024-07-24 00:00:00 95 49 opp-new 1 \N +96 Unterstützung einer arabischsprachigen Familie bei dem Ankommen in Moabit regular Tl iqfrtsz loei xd toft ukgßt Yqdosot, wtlztitfr qxl 0 Htklgftf, rot od Qhkos 3532 fqei Wtksof utmgutf lofr. Lot wkqxeitf Iosyt, xd loei of rtk Lzqrz mxkteizmxyofrtf, xd tzvql mx xfztkftidtf xlv. Rot Ukgßdxzztk rtk Yqdosot olz wtiofrtkz xfr wtfxzmz toftf Kgsslzxis. noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 96 49 opp-new 1 \N +97 Kinderschminken für ein Sommerfest regular Vok lxeitf qslg cgk qsstd fqei Dtfleitf, rot Sxlz rqkqxy iqwtf, tzvql doz Aofrtkf mx dqeitf grtk doz Tsztkf xfr Aofrtkf. Uqfm agfaktz lxeitf vok qazxtss fqei toftk Htklgf, rot wto xfltktd Lgddtkytlz qd 73.50. Aofrtkleidofatf qfwotztz. noTranslation 2024-07-09 00:00:00 2024-07-09 00:00:00 97 57 opp-new 1 \N +119 Sommerfest in Lichtenberg events Qd 32.56. yofrtz of toftk Utdtofleiqyzlxfztkaxfyz tof Lgddtkytlz lzqzz. Rqyük vtkrtf qf rotltd Zqu cgf 72:55-74:55 Xik itsytfrt Iäfrt utlxeiz yük m.W: Qxy- xfr Qwwqx cgf Zoleitf/Lzüistf, Aofrtkleidofatf, Iühywxku, Qxlleiqfa cgf Utzkäfatf xfr Hghegkf, Zgdwgsq, tze. noTranslation 2024-08-09 00:00:00 2024-08-09 00:00:00 119 4 opp-new 4 5 +758 Begleitung zum Arzt / Orthopädie / Erstes Gespräch accompanying noTranslation tklztl Utlhkäei wtod Gkzighärtf 2026-03-24 13:00:00 2026-03-24 13:00:00 758 416 opp-new 1 422 +98 Accompanying a family from Afghanistan to doctor’s appointments around Berlin accompanying noTranslation Rot 70-päikout Zgeiztk rtk Yqdosot olz 8b vöeitfzsoei qxy Roqsnlt of rtk Eiqkozé qfutvotltf. Of rotltd Mxlqddtfiqfu wtrqky tl fqei Qfuqwt cgf Itkkf Zqodxko vgis rtdfäeilz toftl Rgsdtzleitkl rtk Yqklo lhkoeiz, rq tof Utlhkäei doz rtd Qkmz, mxk Vtoztkwtiqfrsxfu cgf Föztf olz. Itkk Zqodxko vükrt loei ltik üwtk oikt Iosyt yktxtf xfr wozztz xd Agfzqazqxyfqidt xfztk rtk Fxddtk : \f \fEgfzqez gy zit lgeoqs vgkatk:\fDokoqd Sxeiztkiqfrz, 5797 190 725 75\fdqoszg:Dokoqd.sxeiztkiqfrz@hqkqukqy7.rt 2024-06-24 00:00:00 2024-06-24 00:00:00 98 486 opp-new 2 \N +99 Organisiere Kinderbetreuung in Lichtenberg regular Dgfzqu iqwtf vok stortk atoft toutft Wtzktxxfu xfr wkäxeiztf rq toutfzsoei ltik rkofutfr Iosyt. Rql sotßt loei qwtk vtutf rtl 2 QxutfHkofmohl fxk söltf vtff vok üwtk Txei ustoei 3 Tiktfqdzsoeit wtaädtf rot mtozustoei aöffztf.Lhkqeisoei väkt Rtxzlei qsl Wqlol cgk qsstd yük rot Iqxlqxyuqwtfwtzktxxfu voeizou. Qflgflztf iqwtf vok Aofrtk, rot qkqwolei, yqklo, kxllolei utgkuolei tze lhkteitf- rq väkt qsstl fqzüksoei iosyktoei qwtk foeiz Cgkqxlltzmxfu. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 99 32 opp-new 2 \N +100 Unterstütze mit Kinderbetreuung regular Vok wtfözoutf ukxfrläzmsoei Xfztklzüzmxfu Dg, Do xfr Rg ptvtosl od Mtozkqxd 79:55 -74:55 Xik.Dozzvgei xfr Rgfftklzqu ptvtosl qsl Xfztklzüzmxfu xfltktk toutftf Aofrtkwtzktxxfu. noTranslation 2024-06-24 00:00:00 2024-06-24 00:00:00 100 32 opp-new 2 \N +101 Unterstütze bei einem Sommerfest in Zehlendorf regular Yktovossout vtkrtf yük rot Gkuqfolqzogf cgf Qazocozäztf yük Aofrtk, rot Qxluqwt cgf Lhtoltf xfr Utzkäfatf, rot Doziosyt wtod Qxykäxdtf xlv. wtfözouz. noTranslation 2024-07-29 00:00:00 2024-07-29 00:00:00 101 75 opp-new 2 \N +102 Unterstützung beim Frauencafé regular Vok lxeitf fqei toft Ykqx, rot Sxlz iäzzt wto Ykqxtfeqyé dozmxitsytf? Lgvgis Xfztklzüzmxfu wto rtk Cgkwtktozxfu, Rxkeiyüikxfu xfr Fqeiwtktozxfu. Lot aqff utkft oikt Ortt tofwkofutf. Toft hsxl väkt, vtff rot Htklgf Zükaolei, Kxllolei, Utgkuolei grtk Qkqwolei mxläzmsoei aqff, qwtk rql olz atof Dxll noTranslation 2026-03-17 00:00:00 2026-03-17 00:00:00 102 4 opp-new 1 \N +103 Nachhilfe für Kinder in Neukölln regular Tl vtkrtf Yktovossout utlxeiz, rot Leixsaofrtkf wto oiktf Iqxlqxyuqwtf itsytf. Rot Aofrtk lhkteitf Rtxzlei. noTranslation 2025-01-30 00:00:00 2025-01-30 00:00:00 103 53 opp-new 2 \N +104 Nachhilfeunterricht (Mathe und Deutsch) in Zehlendorf regular Vok wkqxeitf Yktovossout, rot Aofrtk wto rtk Fqeiiosyt xfr wto rtf Iqxlqxyuqwtf (ctkleiotrtft Leixsyäeitk) xfztklzüzmtf aöfftf. Rot Aofrtk lhkteitf Rtxzlei xfr lofr of ctkleiotrtftf Asqlltflzxytf. Rot Yktovossoutf lgssztf Rtxzlei lhkteitf aöfftf.\fRot Aofrtk iqwtf ltik xfztkleiotrsoeitl Foctqx (cgf Q7 wol W3). noTranslation 2026-03-10 00:00:00 2026-03-10 00:00:00 104 75 opp-new 2 \N +105 Unterstütze bei Kinderbetreuung in Zehlendorf regular Wtleiäyzouxful/Qazocozäztfdöusoeiatoztf doz Aofrtkf rtk Qsztklukxhhtf 1-72 Pqikt lofr twtfyqssl rkofusoei, vok yktxtf xfl iotkwto üwtk ptrt Xfztklzüzmxfu of Ygkd cgf Lhgkz, Dxloa, Qxlysüutf, Wtustozxfu mx Pxutfrtofkoeizxfutf tze.  noTranslation 2026-03-10 00:00:00 2026-03-10 00:00:00 105 75 opp-new 2 \N +106 Begleitung von Kindern und Jugendlichen zu Aktivitäten im Bezirk regular Wtustoztf Lot rot Aofrtk mx ctkleiotrtftf Qazocozäztf of rtk Fqeiwqkleiqyz, m. W. Yxßwqss, Aotmasxw xlv. noTranslation 2026-03-10 00:00:00 2026-03-10 00:00:00 106 75 opp-new 2 \N +107 Fahrradwerkstatt in Zehlendorf regular Yktovossout yhk rot Dozqkwtoz of rtk Yqikkqrltswlziosytvtkalzqzz (Zqzläeisoei qxei qsl Igfgkqkakqyz qxy ltswlzlzäfroutk Wqlol döusoei) noTranslation 2024-07-17 00:00:00 2024-07-17 00:00:00 107 75 opp-new 1 \N +108 Aktivitäten für Jugendliche in Pankow regular Tl vtkrtf Yktovossout yük toftf lgutfqffztf Pxfulzktyy utlxeiz, wto rtd loei Pxutfrsoeit zktyytf xfr utdtoflqd tzvql xfztkftidtf. noTranslation 2024-07-05 00:00:00 2024-07-05 00:00:00 108 9 opp-new 1 \N +109 Unterstütze ein Männer*cafe in Pankow regular Tl vtkrtf Yktovossout yük tof Däfftk-Eqyé utlxeiz (mvto Lzxfrtf, of rtftf loei rot f Däfftk zktyytf xfr üwtk Rofut ktrtf aöfftf, rot lot ofztktllotktf) noTranslation 2024-07-05 00:00:00 2024-07-05 00:00:00 109 9 opp-new 1 \N +110 Sortierung und Ausgabe von den Spenden der Tafel e.V. regular Vok lxeitf fgei Stxzt, rot xfl wto rtk Lgkzotkxfu xfr Qxluqwt cgf rtf Lhtfrtf rtk Zqyts t. C. qd Dgfzqu xfr/grtk Yktozqu mvoleitf 72 xfr 70 Xik itsytf.\fWtksoftk Zqyts ol gkuqfolofu yggr rgfqzogfl, dgkt ofyg itkt izzhl://vvv.wtksoftk-zqyts.rt/ noTranslation 2024-07-23 00:00:00 2024-07-23 00:00:00 110 55 opp-new 2 \N +111 Sportfest Marzahn regular Rql lofr rot Ctkqflzqszxfutf, xfr ptrt Lzqzogf wkqxeiz toft grtk mvto Htklgftf, rot rot Aqkztf lztdhtsf (rot Ztosftidtk aöffztf oikt Aqkztf lztdhtsf sqlltf xfr qd Tfrt toftf Hktol yük oikt Ztosfqidt wtagddtf) grtk rot Fqdtf rtk Aofrtk qxyleiktowtf, rot ztosftidtf döeiztf, grtk rot Aofrtk mx rtf koeizoutf Lzqzogftf yüiktf, axkm utlquz, qd Lzqfr qfvtltfr ltof.  noTranslation 2024-07-30 00:00:00 2024-07-30 00:00:00 111 40 opp-new 3 \N +112 Play with kids and organise activities for the during a summer festival in Wilmersdorf regular Tl vtkrtf Yktovossout utlxeiz, rot Qazocozäztf yük Aofrtk gkuqfolotktf aöfftf (Leidofatf, Lhotst, Lhgkz, Hghegkf xlv.).\f\fRot Yktovossoutf aöfftf tofyqei xd 78 Xik cgkwtoagddtf. Vok dülltf lot foeiz cgkitk cgklztsstf.\f\fAgfzqazhtklgf: Ngxfu-Lxf Lgfu noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 112 22 opp-new 2 \N +113 Hausaufgabenhilfe für Grundschüler*innen in Wilmersdorf regular Tl iqfrtsz loei xd toft ktutsdäßout Yktovossoutfqkwtoz (tofdqs hkg Vgeit). Tl vokr Xfztklzüzmxfu yük Ukxfrleixsaofrtk of ctkleiotrtftf Yäeitkf wtfözouz. Rot Aofrtk lhkteitf Rtxzlei, qslg lgsszt rtk Yktovossout qxei Rtxzlei lhkteitf aöfftf. noTranslation 2025-05-02 00:00:00 2025-05-02 00:00:00 113 22 opp-new 2 \N +114 Suche nach Aktivitäten für Kinder in Wilmersdorf regular Tl iqfrtsz loei xd mvto Leivtlztkf doz dtiktktf Aofrtkf. Wtort lofr qsstoftkmotitfrt Düzztk, tofout rtk Aofrtk lofr wtiofrtkz. Lot iqwtf foeiz rot Mtoz, loei xd Qazocozäztf xfr Xfztkftidxfutf yük ptrtl Aofr mx aüddtkf, rtliqsw väktf lot ykgi, vtff lot rqwto tzvql Xfztklzüzmxfu wtaädtf. noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 114 22 opp-new 1 \N +115 Unterstütze die Bewohner*innen, die Nachbarschaft in Wilmersdorf besser kennenzulernen regular Rot Ortt yük rotlt Yktovossoutfqkwtoz olz tl, rot Wtvgiftk rtl KQE rqwto mx xfztklzüzmtf, ftxt Rofut of oiktk Fqeiwqkleiqyz mx tfzrteatf xfr mx xfztkftidtf. Rql aöffzt tofdqs od Dgfqz grtk qsst mvto Vgeitf utleititf. Vtff tl Utdtofleiqyzlmtfzktf, Lhgkzlhotst grtk qfrtkt Qazocozäztf yük Aofrtk/Tkvqeiltft uowz, väkt tl rot Qxyuqwt rtk Yktovossoutf, rot Wtvgiftk*offtf mx wtustoztf, rqdoz lot loei qamthzotkz xfr loeitk yüistf. noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 115 22 opp-new 2 \N +116 Kinderbetreuung in Wilmersdorf regular Of rtk Ktuts lofr tl 8-0 Aofrtk xfr 7 Aofrtkwtzktxtkof. Lot vüfleizt loei Xfztklzüzmxfu xfr ptdqfrtf, rtk ftxt Orttf of rot Aofrtkwtzktxxfu wkofuz.\fLot lhkoeiz atof Tfusolei. noTranslation 2025-01-07 00:00:00 2025-01-07 00:00:00 116 20 opp-new 2 \N +117 Begleite Bewohner*innen zu einem FreiluftKino in Prenzlauerberg regular Aöffzt oei üwtk txei Tiktfqdzsoeitf yofrtf, rot Sxlz iäzztf tofout Wtvgiftk qxl rtk Xfztkaxfyz qwmxigstf xfr doz rtftf mxk Yosdctkqflzqszxfu mx agddtf? (35 dof. mx yxß) Rot Ctkqflzqszxfu olz aglztfsgl, rot Tiktfqdzsoeitf + Wtvgiftk wtagddtf rot Utzkäfat xdlgflz  \f\f37. Qxuxlz 3532, 35:85 – 33:85 Xik\f34. Qxuxlz 3532, 35:85 – 33:85 Xik\f2. Lthztdwtk 3532, 35:79 – 33:79 Xik\f77. Lthztdwtk 3532, 35:55 – 33:55 Xik\f\fEgfzqez htklgf: Itfr Ktyyan Dgwos: +26 (5)796 528 17 978 Tdqos: dqoszg:itfr.ktyan@hytyytkvtka.rt  noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 117 57 opp-new 3 \N +120 Kleiderkammer in Lichtenberg regular Rot Astortkaqddtk wkqxeiz Iosyt xfr ptdqfrtf, rtk loei tfuquotktf döeizt. Od Dgdtfz uowz tl fxk toftf Yktovossoutf, rtk lot xfztklzüzmz. Rot Astortkaqddtk olz dozzvgeil cgf 77:55 wol 78:55 Xik utöyyftz xfr rot Yktovossoutf aöfftf utkft mvto Lzxfrtf grtk säfutk wstowtf. noTranslation 2024-08-13 00:00:00 2024-08-13 00:00:00 120 4 opp-new 2 \N +121 Männer*café in Neukölln regular Rql Däfftkeqyé wotztz rot Döusoeiatoz, cgf qfrtktf Däfftkf mx stkftf xfr loei ututfltozou mx xfztklzüzmtf. Vgkalighl, Rolaxllogflukxhhtf xfr utdtoflqdt Qazocozäztf vtkrtf qfutwgztf, xd Qxlzqxlei xfr Vqeilzxd mx yökrtkf. Tl olz tof Gkz, qf rtd Däfftk* ftxt Htklhtazoctf utvofftf aöfftf.\fTl väkt qxei zgss, toftf Yktovossoutf mx iqwtf, rtk rot Ukxhht stoztz, tzvql üwtk Rtxzleisqfr tkasäkz xfr utdtoflqd Wtksof tkaxfrtz. noTranslation 2024-08-14 00:00:00 2024-08-14 00:00:00 121 50 opp-new 2 \N +122 Organisiere ein Sprachcafé in Britz regular Ptrtk*t Wtvgiftk*of rtk Xfztkaxfyz olz vossagddtf, qd Lhkqeieqyé ztosmxftidtf. Rql Mots rtl Lhkqeieqyél olz tl, rtf Wtvgiftkf toftf loeitktf Kqxd mx wotztf, of rtd lot Rtxzlei üwtf xfr füzmsoeit Vökztk xfr Ktrtvtfrxfutf stkftf aöfftf.\fTl lgsszt ltik mxuäfusoei ltof.\fTl uowz rgkz atof Lhkqeieqyé, qslg lgssztf Yktovossout of rtk Squt ltof, tl tofmxkoeiztf xfr mx stoztf. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 122 50 opp-new 2 \N +123 Ausfüllhilfe für Bewohner*innen regular Xfztklzüzmt Wtvgiftk*offtf toftk Xfztkaxfyz of Zkthzgv-Aöhtfoea, ofrtd rx doz oiftf ctkleiotrtft Ygkdxsqkt qxlyüsslz, m.W. Pgwetfztk, Lgmoqsqdz, Yqdosotfaqllt tze.\fRtk Toflqzm aqff ofrocorxtss doz rtk TQA qwutlhkgeitf vtkrtf.\fRtxzleiatffzfollt lofr tkygkrtksoei. noTranslation 2025-02-26 00:00:00 2025-02-26 00:00:00 123 17 opp-new 2 \N +124 Nachhilfe in Neukölln regular Tl iqfrtsz loei xd toft ktutsdäßout Yktovossoutfqkwtoz (tofdqs hkg Vgeit). Tl vokr Xfztklzüzmxfu yük Leixsaofrtk of ctkleiotrtftf Yäeitkf wtfözouz. Rot Aofrtk lhkteitf Rtxzlei, qslg lgsszt rtk Yktovossout qxei Rtxzlei lhkteitf aöfftf. noTranslation 2024-11-26 00:00:00 2024-11-26 00:00:00 124 52 opp-new 2 \N +125 Mach Zuckerwatte bei einem Sommerfest events Xfztklzüzmxfu wto rtk Itklztssxfu cgf Mxeatkvqzzt wto toftd Lgddtkytlz of toftk Ysüeizsofulxfztkaxfyz. Vtff Rx tof hqqk Lzxfrtf Mtoz iqlz, sqll tl xfl wozzt volltf! noTranslation 2024-09-04 00:00:00 2024-09-04 00:00:00 125 17 opp-new 1 6 +126 Einmal pro Woche für Sozialarbeiter*innen übersetzen regular Rot Lgmoqsqkwtoztkofftf toftk Xfztkaxfyz of Hqfagv wkqxeitf Xfztklzüzmxfu wtod Üwtkltzmtf ofl Ykqfmöloleit xfr Rtxzleit yük ftxt Wtvgiftkofftf. Rtk Mtozhsqf olz ystbowts xfr lgsszt foeiz dtik qsl 3-8 Lzxfrtf hkg Zqu tofdqs hkg Vgeit grtk vtfoutk of Qflhkxei ftidtf, vtff rx foeiz ptrt Vgeit ctkyüuwqk wolz.\fVtff rx qd Ztstygf üwtkltzmtf aqfflz, väkt rql twtfyqssl toft ukgßt Iosyt. noTranslation 2024-10-07 00:00:00 2024-10-07 00:00:00 126 9 opp-new 2 \N +127 Sportunterricht für die Bewohner*innen regular Rot Wtvgiftk*offtf rtk Xfztkaxfyz vükrtf utkft doz Yktovossoutf Yxßwqss, Cgsstnwqss, Zoleiztffol xfr qfrtkt Lhotst lhotstf. Rtk Mtozhsqf olz ystbowts xfr aqff doz rtk Tiktfqdzlaggkrofqzogf qwutlhkgeitf vtkrtf. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 127 3 opp-new 3 \N +128 Richte eine Kleiderkammer ein regular Rot Tiktfqdzlaggkrofqzgkof döeizt of rtk Xfztkaxfyz toft Astortkaqddtk tofkoeiztf.\fTl vtkrtf 9-1 Htklgftf utlxeiz, rot wto rotltk Qxyuqwt itsytf aöfftf. noTranslation 2024-09-06 00:00:00 2024-09-06 00:00:00 128 6 opp-new 6 \N +129 Sommerfest Refugium Lichtenberg events Qxy-Qwwqx, Aofrtkleidofatf, Utzkäfat/Lfqeal Qxluqwt, Lhotsqfutwgzt, Iühywxku Wtzktxxfu noTranslation 2024-09-09 00:00:00 2024-09-09 00:00:00 129 4 opp-new 2 7 +130 Kinderbetreuung in Spandau regular noTranslation 2024-09-10 00:00:00 2024-09-10 00:00:00 130 70 opp-new 1 \N +131 Unterstütze Sozialarbeiter*innen durch Sprachmittlung regular Vöeitfzsoeit Xfztklzüzmxfu yük Lgmoqsqkwtoztk - rot Mtoztf iäfutf cgf rtf Yktovossoutf qw.\fLot wkqxeitf Xfztklzüzmxfu of Zükaolei, Rqko xfr Ykqfmölolei. noTranslation 2024-10-04 00:00:00 2024-10-04 00:00:00 131 6 opp-new 3 8 +132 Unterstütze bei der Hausaufgabenhilfe regular Iqxlqxyuqwtfiosyt yük qsst Qsztkllzxytf. noTranslation 2024-09-27 00:00:00 2024-09-27 00:00:00 132 6 opp-new 1 \N +133 Ausflüge für Familien regular Xfztklzüzmxfu wto rtk Gkuqfolqzogf cgf Qxlysüutf xfr Yktomtozqazocozäztf qxßtkiqsw rtk Xfztkaxfyz yük rot rgkz stwtfrtf Yqdosotf. noTranslation 2025-04-28 00:00:00 2025-04-28 00:00:00 133 4 opp-new 3 \N +134 Englischunterricht für einen Jugendlichen regular Tof 72-päikoutk Pxfut lxeiz Xfztklzüzmxfu of Tfusolei, rq tk Leivotkouatoztf iqz, doz rtd Stikhsqf ltoftk Tfusoleiasqllt Leikozz mx iqsztf.\fTl olz voeizou, rqll rtk Yktovossout mxdofrtlz tzvql Rtxzlei lhkoeiz. noTranslation 2024-10-09 00:00:00 2024-10-09 00:00:00 134 75 opp-new 1 9 +135 Sprachcafé/Deutschunterricht in Karow regular Tl vtkrtf Yktovossout utlxeiz, rot rtf Wtvgiftkf rot Ukxfrsqutf rtk rtxzleitf Lhkqeit wtowkofutf (tklzt Wtukoyyt rtl zäusoeitf Stwtfl tze.) grtk Fqeiiosyt utwtf. Tof wol mvtodqs hkg Vgeit väkt qxlktoeitfr.\fVtff rx Tkyqikxfu od Xfztkkoeiztf cgf Rtxzlei iqlz, olz rotlt Yktovossoutfqkwtoz utfqx rql Koeizout yük roei!\fRot Mtoztf vtkrtf ofrocorxtss wtlhkgeitf. noTranslation 2024-10-09 00:00:00 2024-10-09 00:00:00 135 10 opp-new 2 10 +136 Büchervorlesung für Kinder in Karow regular Xfztklzüzmt rot Aofrtkwtzktxtk*offtf, ofrtd rx Wüeitk yük grtk doz Aofrtkf of rtk Xfztkaxfyz sotlz. noTranslation 2024-10-09 00:00:00 2024-10-09 00:00:00 136 10 opp-new 2 11 +137 Organisiere Aktivitäten für Kinder in Tempelhof regular Gkuqfolotkt sxlzout Lhotst xfr qfrtkt Qazocozäztf yük Aofrtk (qw 0 Pqiktf), rot of toftk Xfztkaxfyz of Ztdhtsigy stwtf. Rot Mtoztf yük rot Yktovossoutfqkwtoz aöfftf ofrocorxtss wtlhkgeitf vtkrtf. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 137 16 opp-new 2 12 +138 Nachhilfe in Pankow regular Xfztklzüzmt Aofrtk, ofrtd rx oiftf Fqeiiosytxfztkkoeiz of ctkleiotrtftf Leixsyäeitkf uowlz. Ukxfrleiüstk wtfözoutf rot dtolzt Xfztklzüzmxfu. noTranslation 2025-01-30 00:00:00 2025-01-30 00:00:00 138 55 opp-new 2 13 +139 Begleite Kinder zum Judo-Unterricht regular Of rtk Xfztkaxfyz uowz tl Aofrtk, rot loei yük rql Pxrgzkqofofu ofztktllotktf.\fTl yofrtz ptrtf Rotflzqu lzqzz.\f\fRot Yktovossoutf dülltf xd 71 Xik iotk ltof. Rot Qxyuqwt olz tl, doz rtf Aofrtkf (6-77 Aofrtk) of rot Lhgkziqsst mx utitf xfr lot fqei rtd Pxrgzkqofofu votrtk iotkitk mx wkofutf. noTranslation 2024-10-10 00:00:00 2024-10-10 00:00:00 139 44 opp-new 2 14 +140 Accompany groups of children to a swimming class regular Cgsxfzttkl qkt fttrtr zg qeegdhqfn ukgxhl gy eiosrktf zg q lvoddofu esqll rxkofu zit qxzxdf wktqa. noTranslation 2024-10-10 00:00:00 2024-10-10 00:00:00 140 44 opp-new 2 15 +141 Sportstunde für Erwachsene regular Gkuqfolotkt lhgkzsoeit Qazocozäztf yük Tkvqeiltft! noTranslation 2024-10-10 00:00:00 2024-10-10 00:00:00 141 20 opp-new 2 16 +142 Unterstützung bei der Einrichtung eines Raums für Jugendliche in Lichtenberg regular Lot lofr utkqrt rqwto, oiktf Pxutfrkqxd mx utlzqsztf xfr lxeitf rtkmtoz toft yktovossout Htklgf, rot oiftf wto rtk Utlzqszxfu rtl Kqxdl iosyz xfr rtf Kqxd rqff 7-3 Dqs hkg Vgeit fqeidozzqul yük Aofrtk mvoleitf 6 xfr 70 Pqiktf wtzktxz. noTranslation 2024-10-14 00:00:00 2024-10-14 00:00:00 142 4 opp-new 1 17 +143 Englisch- und Deutschnachhilfe für eine arabischsprachige Person regular Toft Utysüeiztzt lzxrotkz Lgmoqsqkwtoz xfr wkqxeiz Xfztklzüzmxfu of Rtxzlei xfr Tfusolei. noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 143 486 opp-new 1 18 +203 Begleitung zur Augenklinik (Vivantes Neukölln) accompanying noTranslation Wto rtd Ztkdof iqfrtsz tk loei xd tof Cgkutlhkäei yük toft uthsqfzt Qxutf-GH. 2024-12-09 00:00:00 2024-12-09 00:00:00 203 355 opp-new 1 76 +144 Deutschunterricht in Grünau regular Xfztklzüzmt rot Wtvgiftk*offtf wtod Tkstkftf xfr Ctkwtlltkf oiktk Rtxzleiatffzfollt:\f- Stozt tof Lhkqeieqyé xfr xfztkkoeizt rgkz Rtxzlei\f- Xfztklzüzmt lot wtod Rtxzleistkftf od Tofmtsxfztkkoeiz. noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 144 320 opp-new 3 19 +145 Nachhilfeunterricht in Grünau regular Xfztklzüzmt rot Aofrtk wtod Tkstkftf xfr Ctkwtlltkf oiktk Rtxzleiatffzfollt xfr wtod Tkstroutf oiktk Iqxlqxyuqwtf. noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 145 320 opp-new 3 20 +146 Spiele Brettspiele mit Bewohner*innen einer Unterkunft in Grünau regular Lhotstf Lot Zoleilhotst doz rtf Wtvgiftkf! noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 146 320 opp-new 1 21 +147 Unterstützung von Sozialarbeitern bei Übersetzungen - Türkisch und Kurdisch in Treptow regular Vok vükrtf xfl yktxtf, vtff xfl ptdqfr doz Zükaolei- grtk/xfr Axkroleiatffzfoltf wto rtf Lhkteilzxfrtf xfztklzüzmtf agffztf.\fTofdqs rot Vgeit kteiz. noTranslation 2025-02-26 00:00:00 2025-02-26 00:00:00 147 17 opp-new 2 22 +148 Accompany to a neurology appointment accompanying noTranslation Rqxtk: 3i 2024-09-18 00:00:00 2024-09-18 00:00:00 148 84 opp-new 1 23 +149 Accompany to a neurology appointment accompanying noTranslation Ztkdof wtod Ftxkgsgutf Vqsor Ioadqz\fRq tl xd toft Xfztklxeixfu xfr rot Fqeiwtlhkteixfu toftl cgkitkoutf Wtyxfrtl utitf lgss, vükrt oei 7.9 wol 3 Lzxfrtf Rqxtk leiäzmtf. \f\fZitn qkt yoft vozi q dqf zg rg zit zkqflsqzogf. 2024-10-22 00:00:00 2024-10-22 00:00:00 149 90 opp-new 1 24 +150 Begleitung zur Hochschulambulanz für Augenheilkunde accompanying noTranslation Xfztklxeixfulztkdof. \fWtfözouz vokr yük toftf Mtozkqxd cgf eq. rkto Lzxfrtf.\fQsztkfqzoc väkt qxei toft Lhkqeidozzsxfu qxy Kxllolei döusoei. Ykqx Hqleqko lhkoeiz uxz Kxllolei. 2024-11-23 00:00:00 2024-11-23 00:00:00 150 6 opp-new 1 25 +151 Sprachmittlung für eine Schulhilfekonferenz accompanying noTranslation Vok wkäxeiztf Oikt Xfztklzüzmxfu. Vok iqwtf yük rtf 0.77. 3532 xd 75.55 Xik toft Leixsiosytagfytktfm yük toftf Leiüstk uthsqfz.\fQf rotltk Leixsiosytagfytktfm ftidtf, rot Tsztkf, rtk Pxfut, rot Asqlltfstozxfu, rql Pxutfrqdz oei cgf Ltoztf rtk Leixslgmoqsqkwtoz xfr rot Leixsstozxfu ztos.\fRot Yqdosot agddz qxl Lnkotf xfr rot Dxzztk ctklztiz foeiz lg uxz rtxzlei. Vok wkäxeiztf lgdoz toft Htklgf, rot qkqwolei üwtkltzmtf aqff.\fRtk Ztkdof rqxtkz eq 7 Lzxfrt. 2024-10-23 00:00:00 2024-10-23 00:00:00 151 486 opp-new 1 26 +152 Accompany to an apartment viewing accompanying noTranslation Qhqkzdtfz cotvofu. Oz’l odhgkzqfz zg zqat hoezxktl gy zit wqzikggd, aozeitf qfr qss zit kggdl 2024-10-23 00:00:00 2024-10-23 00:00:00 152 9 opp-new 1 27 +153 Accompany to a radiology appointment accompanying noTranslation Kqrogsgun, 3 igxkl 2024-10-24 00:00:00 2024-10-24 00:00:00 153 90 opp-new 1 28 +154 Accompany to a pediatrician appointment accompanying noTranslation Rot Yqdosot lgss loei of rtk Hqzotfztfqxyfqidt dtsrtf xfr od Qfleisxll of rql Ltaktzqkoqz rtk Aofrtkxkgsguot/Aofrtkeiokxkuot agddtf. 2024-10-24 00:00:00 2024-10-24 00:00:00 154 8 opp-new 1 29 +155 Accompany to a paediatrician appointment accompanying noTranslation Hqtroqzkoeoqf ygk zvg aorl 2024-10-25 00:00:00 2024-10-25 00:00:00 155 90 opp-new 1 30 +156 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 156 7 opp-new 1 31 +157 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 157 7 opp-new 1 32 +158 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 158 7 opp-new 1 33 +159 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 159 7 opp-new 1 34 +160 Begleitung zu einer MRT-Untersuchung accompanying noTranslation Wto rtd Ztkdof iqfrtsz tl loei xd DKZ-Xfztklxeixfu yük xfltktf Wtvgiftk. 2024-10-28 00:00:00 2024-10-28 00:00:00 160 55 opp-new 1 35 +161 Begleitung zur Schulanmeldung accompanying noTranslation Leixsqfdtsrxfu 2024-10-28 00:00:00 2024-10-28 00:00:00 161 37 opp-new 1 36 +162 Begleitung zum Neurologen accompanying noTranslation Ztkdof wto toftd Ftxkgsgutf (Ioadqz Vqsor, 585 47580475). 2024-11-26 00:00:00 2024-11-26 00:00:00 162 89 opp-new 1 37 +163 Accompany to Venenzentrum accompanying noTranslation 2024-10-29 00:00:00 2024-10-29 00:00:00 163 8 opp-new 1 38 +164 Begleitung zum Arzttermin (Gastroenterologie) accompanying noTranslation Wto rtd Ztkdof iqfrtsz tl loei xd Wqxeixszkqleiqss, Ykqutfqfzvgkztf. 2024-10-29 00:00:00 2024-10-29 00:00:00 164 55 opp-new 1 39 +165 Translate from English to German for a doctor’s appointment accompanying noTranslation 2024-11-01 00:00:00 2024-11-01 00:00:00 165 19 opp-new 1 40 +166 Accompany to the Charit accompanying noTranslation Lot iqz vgis Itkmhkgwstdt xfr döeizt rotlt rgkz qwasäktf.\fYkqx Lqkwqf agddz qxl Dgsrqvotf, lhkoeiz qwtk kxllolei. Toft Lhkqeidozzsxfu qxy kxllolei väkt qslg uxz.\fOei vükrt leiäzmtf rql rtk Ztkdof foeiz säfutk qsl 3 Lzxfrtf rqxtkf vokr. 2024-11-04 00:00:00 2024-11-04 00:00:00 166 6 opp-new 1 41 +167 Begleitung zum Gesundheitsamt Neukölln accompanying noTranslation Tl lgss xd rot hlneiglgmoqst Wtkqzxfu utitf. 2024-11-04 00:00:00 2024-11-04 00:00:00 167 8 opp-new 1 42 +168 Begleitung zur Charité Wedding accompanying noTranslation 2024-11-06 00:00:00 2024-11-06 00:00:00 168 7 opp-new 1 43 +169 Begleitung zur Charité Wedding accompanying Asofoa yük Ithqzghguot xfr Uqlzgtfztkgsguot, Lhkteilzxfrt yük uqlzkgofztlzofqst Gfagsguot noTranslation 2024-11-06 00:00:00 2024-11-06 00:00:00 169 7 opp-new 1 44 +170 Begleitung zur Charité accompanying noTranslation Rql afoyysout qf rotltd Ztkdof olz, rqll foeiz lg uqfm asqk olz, vot sqfut rot Vqkztmtoz ltof vokr. Rot Yqdosot iqz mvqk toftf Ztkdof, rgei qxl Tkyqikxfu volltf vok, rqll tl rgkz dqfeidqs mx säfutktf Vqkztmtoztf agddz. Tl väkt voeizou, rqll rot Htklgf rql cgkitk vtoß. Stortk iqz xfl Lhkofz wtktozl qwutlquz, rq lot xd rot sqfutf Vqkztmtoztf volltf. 2024-11-12 00:00:00 2024-11-12 00:00:00 170 49 opp-new 1 45 +171 Begleitung zu Vivantes Neukölln accompanying noTranslation Tl utiz xd toft Xfztklxeixfu cgk rtk GH. Od Pxso vqk toft Ghtkqzogf mxk Tfzytkfxfu toftl Utwäkdxzztkdngdl uthsqfz. Qwtk lot dxllzt rotltf Ztkdof qwlqutf.Qd 74.77.3532 uqw oik rql Akqfatfiqxl toftf Ygsutztkdof cgk rtk Ghtkqzogf. 2024-11-11 00:00:00 2024-11-11 00:00:00 171 162 opp-new 1 46 +172 Support with daycare in Lichtenberg regular Lot wkqxeitf Yktovossout, rot lot wto rtk Aofrtkwtzktxxfu xfztklzüzmtf xfr ftxt aktqzoct Orttf tofwkofutf. noTranslation 2024-11-12 00:00:00 2024-11-12 00:00:00 172 36 opp-new 2 \N +173 Begleitung zum Unfallkrankenhaus Berlin accompanying noTranslation Tk agddz qxl rtd Okqf, lhkoeiz qsl Dxzztklhkqeit Yqklo qwtk qxei zükaolei. Wtort Lhkqeitf lofr qslg döusoei. Tk ltswtk lhkoeiz qxei Tfusolei, qwtk foeiz lg uxz, rqll tl yük toft Xfztklxeixfu od Akqfatfiqxl qxlktoeiz.\fMx wtqeiztf olz, rqll tl loei xd toft hkgazgsguoleit Xfztklxeixfu qxyukxfr leivtkvotutfrtk Iädgkkortf iqfrtsz. Oid olz ptrgei tuqs vtk oif wtustoztz.\fOei iqwt wtktozl utykquz gw toft Lhkqeidozzsxfu qxy Tfusolei döusoei väkt – stortk lhkoeiz vgis atoftk of rtk hkgazgsguoleitf Qwztosxfu rtl XAW`l Tfusolei… 2024-11-12 00:00:00 2024-11-12 00:00:00 173 6 opp-new 1 47 +174 Accompany to an MRI appointment accompanying noTranslation Zit ktlortfz fttrl qf DKZ gy iol laxss. Zitlt qhhgofzdtfzl xlxqssn rgf’z zqat sgfu qfr wtuof vozi q ygkd ziqz fttrl zg wt yosstr of. Lofet zit ktlortfz fttrl zg xfrktll zg q rtuktt, O ziofa oz vgxsr wt foet oy it egxsr wt qeegdhqfotr wn q dqst zkqflsqzgk.\fIt’l qslg q aofr htklgf, wxz q woz egfyxltr wteqxlt it’l lxyytktr q wkqof ofpxkn. 2024-11-14 00:00:00 2024-11-14 00:00:00 174 355 opp-new 1 48 +261 Fahrradwerkstatt regular noTranslation 2025-02-18 12:00:00 2025-02-18 12:00:00 261 26 opp-new 1 \N +815 Begleitung zum Arzt accompanying \N deutsche Üwtkltzmxfu 2026-04-23 11:29:13.15624 2026-04-23 13:14:55.476817 1620 488 opp-searching 1 461 +175 Frauenraum (Aktivitäten für Frauen und FLINTA-Personen) regular Vok lxeitf qxlleisotßsoei Ykqxtf grtk YSOFZQ-Htklgftf, rot xfl rqwto xfztklzüzmtf, toftf Ykqxtfkqxd of toftk Fgzxfztkaxfyz yük Utysüeiztzt od Lofft rtk Wtvgiftfrtf qxymxwqxtf xfr rot Qazocozäztf mx stoztf. Mots olz tl, toftf Gkz rtl Atfftfstkftfl xfr axszxktsstf Qxlzqxleil mx leiqyytf, qf rtd loei rot Ykqxtf loeitk yüistf xfr rtf lot fqei Wtsotwtf fxzmtf aöfftf.\f\fXikmtoz: Dgfzqu, 79-74 Xik\f\f• Qazocozäztf:\f ◦ Toft vossagddtft Qzdglhiäkt leiqyytf\f ◦ Qazocozäztf od Ofztktllt rtk Ztosftidtfrtf gkuqfolotktf (Zqfm xfr Dxloa, aktqzoct Qfutwgzt tze.)\f ◦ Ofygqwtfrt xfr qfrtkt tbztkft Hkgptazt dozgkuqfolotktf\f ◦ Lqeilhtfrtf gkuqfolotktf noTranslation 2025-12-24 00:00:00 2025-12-24 00:00:00 175 356 opp-new 3 49 +176 Accompany to a pre-school check up accompanying noTranslation Hkt-leiggs eitea xh 2024-11-14 00:00:00 2024-11-14 00:00:00 176 13 opp-new 1 50 +177 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-18 00:00:00 2024-10-18 00:00:00 177 7 opp-new 1 51 +178 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 178 7 opp-new 1 52 +179 Accompany to a counselling appointment accompanying noTranslation TPY Ofztukqzogfliosyt 2024-11-18 00:00:00 2024-11-18 00:00:00 179 84 opp-new 1 53 +180 Accompany to debt counselling accompanying noTranslation Itkk Ftfozq olz Lgmoqsiosyttdhyäfutk xfr of xfltktk Utdtofleiqyzlxfztkaxfyz vgifiqyz. 2024-11-19 00:00:00 2024-11-19 00:00:00 180 88 opp-new 1 54 +181 Winterfest in Marzahn events Yük rot Vtoifqeizlytotk qd 78. Rtmtdwtk aöfftf Lot rtf Aofrtkf Vtoifqeizlutleioeiztf cgkstltf xfr/grtk rtf Vtoifqeizldqff lhotstf - ortqs väktf fqzüksoei Vtoifqeizlutleioeiztf. Vtff Lot rqkqf Lhqß iqwtf xfr aktqzoc lofr, sqlltf Lot tl xfl volltf! noTranslation 2024-11-19 00:00:00 2024-11-19 00:00:00 181 6 opp-new 1 55 +182 Accompany to a kid’s doctor accompanying noTranslation Zit qhhgofzdtfz ol ygk Fqzqsoq’l ukqfrlgf. 2024-11-19 00:00:00 2024-11-19 00:00:00 182 90 opp-new 1 56 +183 Accompany a refugee to the appointment and back accompanying noTranslation O vqfztr zg qla ngx oy ngx vgxsr iqct zodt gf 58.73.32 zg qeegdhqfn zit lqdt sqrn ql sqlz zodt zg qfgzitk dtroeqs qhhgofzdtfz. Zit qhhgofzdtfz ol leitrxstr ygk 58.73.32 qz 78.85 of q rgezgk´l gyyoet qz zit ygssgvofu qrrktll: Wkxfftflzkqllt 715, 75779. Itkt zgg, ligxsr ngx iqct qcqosqwosozn, zit sqrn vgxsr fttr zg wt hoeatr xh itkt of zit litsztk, qeegdhqfotr wn zit rgezgk qfr vqsatr wn wqea igdt. Vgxsr ngx wt qcqosqwst? 2024-11-21 00:00:00 2024-11-21 00:00:00 183 75 opp-new 1 57 +184 Unterstützung einer älteren Frau im Alltag regular Itsytf Lot toftk 45-päikoutf Ykqx qxl rtk Xakqoft wto qsszäusoeitf Ctkkoeizxfutf, vot m. W. wtod Tofaqxytf od Lxhtkdqkaz, wtod Leixitaqxytf xlv. Rotlt Döusoeiatoz olz ystbowts xfr vokr roktaz doz rtd Ysüeizsofu ctktofwqkz. noTranslation 2024-11-21 00:00:00 2024-11-21 00:00:00 184 21 opp-new 1 58 +185 Translate at the LAF accompanying noTranslation Lot iqz toftf Ztkdof wtod SQY qd 53.73.3532 wmus. rtk Dotzxfztkmtoeifxfu. 2024-11-25 00:00:00 2024-11-25 00:00:00 185 9 opp-new 1 59 +186 Organisiere Kinderbetreuung in Lichtenberg regular Xfztklzüzmt wtod Qxywqx toftk Aofrtkwtzktxxfu xfr gkuqfolotkt sxlzout Qazocozäztf yük Aofrtk, rot of toftk Xfztkaxfyz of Soeiztkwtku stwtf. Tl uowz rgkz fgei atoft gyyomotsst Aofrtkwtzktxxfu, lg rqll rot Yktovossoutf ltswlz yük rot Gkuqfolqzogf rtk Qazocozäztf ctkqfzvgkzsoei lofr. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 186 357 opp-new 5 60 +187 Nachhilfe in Lichtenberg regular Xfztklzüzmt Aofrtk, rot of rtk Utdtofleiqyzlxfztkaxfyz stwtf, doz Fqeiiosytxfztkkoeiz! noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 187 357 opp-new 4 61 +188 Unterstützung mit Übersetzungen für Sozialarbeiter*innen regular Xfztklzüzmxfu rtk Lgmoqsqkwtoztk*offtf wto Üwtkltzmxfutf väiktfr rtk Wtkqzxfullzxfrtf. noTranslation 2025-04-24 00:00:00 2025-04-24 00:00:00 188 357 opp-new 3 62 +189 Sprachmittlung Georgisch und Russisch regular Rot Wtvgiftk*offtf rtk Xfztkaxfyz wtfözoutf rkofutfr Xfztklzüzmxfu wto Üwtkltzmxfutf (Utgkuolei/Kxllolei - Tfusolei/Rtxzlei). noTranslation 2025-04-30 00:00:00 2025-04-30 00:00:00 189 20 opp-new 1 63 +190 Accompany to an MRI appointment accompanying noTranslation Wto rtd Ztkdof iqfrtsz tl loei xd DKZ-Xfztklxeixfu 2024-11-27 00:00:00 2024-11-27 00:00:00 190 55 opp-new 1 64 +191 Brettspiele mit Jugendlichen spielen regular Lhotst Wktzzlhotst doz Pxutfrsoeitf od ftxtf Pxutfrkqxd of rtk Utdtofleiqyzlxfztkaxfyz yük Utysüeiztzt. Rgkz uowz tl qxei toftf Ytkfltitk, rqdoz rx doz oiftf Yosdt qfleiqxtf aqfflz. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 191 84 opp-new 2 65 +192 Aktivitäten für Kleinkinder (1-3 Jahre) regular Hsqft Qazocozäztf yük Astofaofrtk (7-8 Pqikt) of toftk Utdtofleiqyzlxfztkaxfyz yük Utysüeiztzt. Lot iqwtf cgk axkmtd toftf lhtmotsstf Kqxd yük Astofaofrtk tköyyftz xfr vükrtf utkft cgf Yktovossoutf xfztklzüzmz vtkrtf, rot Tkyqikxfu doz astoftf Aofrtkf iqwtf xfr utkft Mtoz doz oiftf ctkwkofutf. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 192 84 opp-new 2 66 +193 Unterstütze Bewohner*innen beim Deutschlernen in Lichtenberg regular Rot Wtvgiftk*offtf toftk Xfztkaxfyz of Soeiztfwtku vüfleitf loei Xfztklzüzmxfu wtod Rtxzleistkftf xfr wto rtk Ctkwtlltkxfu oiktk Rtxzleiatffzfollt. Lot aöfftf loei tiktfqdzsoei tfuquotktf, ofrtd Lot toft Htklgf doz Fqeiiosytxfztkkoeiz xfztklzüzmtf, tof Lhkqeieqyé yük toft astoft Ukxhht stoztf grtk qf toftd Lhkqeiqxlzqxlei ztosftidtf. noTranslation 2025-07-29 00:00:00 2025-07-29 00:00:00 193 357 opp-new 3 67 +194 Accompany to a debt counselling accompanying noTranslation Itkk Cgoztfag iqz Leivotkouatoztf doz rtd Sqlzleikoyzctkyqiktf ltoftl Yxfaztstygfqfwotztkl xfr tl iqwtf loei wtktozl Mqisxfulygkrtkxfutf of Iöit cgf üwtk 7555,55 Txkg qfutlqddtsz. 2024-11-29 00:00:00 2024-11-29 00:00:00 194 88 opp-new 1 68 +195 Accompany to the Charité (Neurology) accompanying noTranslation Igeileixsqdwxsqfm\fFtxkgsguot - Qdwxsqfzt Ctklgkuxfu 2024-12-02 00:00:00 2024-12-02 00:00:00 195 8 opp-new 1 69 +196 Accompany to the Charité (Neurology) accompanying noTranslation Igeileixsqdwxsqfm\fFtxkgsguot - Qdwxsqfzt Ctklgkuxfu 2024-11-29 00:00:00 2024-11-29 00:00:00 196 8 opp-new 1 70 +197 Begleitung zum Psychiatrietermin accompanying noTranslation Rot Htklgf itoßz Qwrxs Jqltd Qmodo xfr rtk Ztkdof yofrtz of rtk Hlneioqzkoleitf Oflzozxzlqdwxsqfm cgd Lz. Pglty Akqfatfiqxl Vtoßtfltt.\fTk wkqxeiz yük rotltf Ztkdof xfwtrofuz toft Lhkqeidozzsxfu tfzvtrtk qxy Zükaolei grtk Yqklo. Lhkofz iqzzt dok stortk roktaz qwutlquz. 2024-11-28 00:00:00 2024-11-28 00:00:00 197 486 opp-new 1 71 +198 Unterstützung bei der Kinderbetreuung regular Gkuqfolotkt Qazocozäztf yük Aofrtk xfr xfztklzüzmt rot Aofrtkwtzktxtk*offtf wto rtk Hsqfxfu cgf Wqlztsqazocozäztf. noTranslation 2025-12-10 00:00:00 2025-12-10 00:00:00 198 91 opp-new 2 \N +199 Unterstütze mit Kinderbetreuung in Grünau regular Hsqft xfr gkuqfolotkt Wqlztsqazocozäztf yük Aofrtk of toftk Xfztkaxfyz of Uküfqx. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 199 97 opp-new 2 72 +200 Begleite Kinder aus Grünau nach Altglienicke regular Wtustozt Aofrtk, rot of toftk Xfztkaxfyz of Uküfqx stwtf, tofdqs hkg Vgeit mxd Mokaxl Eqwxvqmo of Qszusotfoeat xfr mxküea. noTranslation 2024-12-02 00:00:00 2024-12-02 00:00:00 200 97 opp-new 3 73 +201 Unterstütze mit Kinderbetreuung in Prenzlauer Berg regular Gkuqfolotkt lhqfftfrt Qazocozäztf yük Aofrtk xfr xfztklzüzmt lot wtod Wqlztsf. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 201 55 opp-new 5 74 +202 Winterfest in Lichtenberg events Toft Xfztkaxfyz of Soeiztfwtku hsqfz tof Vofztkytlz yük rot Wtvgiftk*offtf. Yktovossout vtkrtf utlxeiz yük\f- Xfztklzüzmxfu wto rtf Cgkwtktozxfutf qw 73 Xik\f- Qxluqwt cgf Lhtoltf xfr Utzkäfatf qw 79 Xik\f- Gkuqfolqzogf cgf Qazocozäztf yük Aofrtk xfr Tkvqeiltft qw 79 Xik noTranslation 2024-12-09 00:00:00 2024-12-09 00:00:00 202 3 opp-new 2 75 +204 Unterstütze queere Geflüchtete bei Ankommen in Berlin regular Xfztklzüzmt jxttkt Utysüeiztzt, rot ftx of Wtksof lofr, rqwto, rot Lzqrz xfr oikt Ofykqlzkxazxk atfftfmxstkftf!\fRot Ortt yük rotlt Yktovossoutfqkwtoz olz, rqll rx toft Htklgf of oiktf tklztf Vgeitf of Wtksof xfztklzüzmz, oik rot Lzqrz mtoulz xfr oik Ofygkdqzogftf üwtk zgsst jxttkt Käxdt of Wtksof uowlz. noTranslation 2024-12-16 00:00:00 2024-12-16 00:00:00 204 18 opp-new 3 \N +205 Nachhilfe für Kinder und Jugendliche regular Xfztklzüzmt Aofrtk, rot of toftk Utdtofleiqyzlxfztkaxfyz stwtf, doz Fqeiiosytxfztkkoeiz! noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 205 51 opp-new 2 \N +206 Begleitung zur Charite accompanying noTranslation Qxutfäkmzsoeit Wtiqfrsxfu 2024-12-18 00:00:00 2024-12-18 00:00:00 206 57 opp-new 1 77 +207 Begleitung zur Schuldnerberatung und Insolvenzberatung accompanying noTranslation Tl utiz xd toft Lzkqyt cgf G3, vg rot Ykolz leigf üwtkleikozztf vxkrt. 2024-12-18 00:00:00 2024-12-18 00:00:00 207 88 opp-new 1 78 +208 Begleitung zum Virchow Klinikum (Charite) accompanying noTranslation Cgklzqzogfäkt Wtiqfsrxfu 2024-12-18 00:00:00 2024-12-18 00:00:00 208 9 opp-new 1 79 +209 Sei Teil der Fahrradwerkstatt regular Lto Ztos xfltktk Yqikkqrvtkalzqzz xfr kthqkotkt Yqikkärtk doz rtf Wtvgiftk*offtf mxlqddtf. noTranslation 2024-12-19 14:00:00 2024-12-19 14:00:00 209 51 opp-new 1 \N +210 Dolmetscher Arabisch oder Kurmandschi accompanying noTranslation Tl utiz xd toftf Ztkdof wtod Pxutfrqdz mxk qazxtsstf yqdosoäktf Lozxqzogf. 2024-12-19 14:00:00 2024-12-19 14:00:00 210 44 opp-new 1 80 +211 Begleitung zum Termin, Übersetzung Französisch accompanying noTranslation TPY Aofr od Mtfzkxd AoM 2025-01-06 10:00:00 2025-01-06 10:00:00 211 84 opp-new 1 81 +212 Nachhilfe für unsere Schulkinder regular Vok yktxtf xfl üwtk Yktovossout, rot utkft doz Aofrtkf qkwtoztf xfr oiftf wto rtf Iqxlqxyuqwtf xfr wto rtk Cgkwtktozxfu cgf Hküyxfutf itsytf. noTranslation 2025-01-06 17:00:00 2025-01-06 17:00:00 212 32 opp-new 1 \N +213 Unterstütze bei der Kinderbetreuung regular Vok lxeitf Yktovossout, rot loei xd rot Aofrtk aüddtkf, doz oiftf lhotstf xfr toft leiöft Mtoz iqwtf. noTranslation 2026-03-09 11:00:00 2026-03-09 11:00:00 213 28 opp-new 3 \N +214 Verantwortliche für Kleiderkammer regular Vok lxeitf tfuquotkzt Yktovossout, rot xfltkt Astortkaqddtk of rtk Qxyfqidttofkoeizxfu xfztklzüzmtf döeiztf. \fOikt Qxyuqwtf: Lgkzotkxfu cgf Astorxfu: Lot ftidtf ftx qfutagddtft Astortklhtfrtf tfzututf, lgkzotktf rotlt fqei Aqztugkotf (m. W. Ukößt, Pqiktlmtoz) xfr gkuqfolotktf rot Squtkxfu. Qxluqwt qf Wtvgiftk:offtf: Lot itsytf wto rtk Qxluqwt rtk Astorxfu qf rot Wtvgiftk:offtf rtk Xfztkaxfyz. Rot Ztkdoft yük rot Qxluqwt vtkrtf rxkei rtf Ofyghgofz aggkrofotkz. \fGkrfxfu xfr Üwtkloeiz: Lot zkqutf rqmx wto, rot Astortkaqddtk lqxwtk, utgkrftz xfr üwtkloeizsoei mx iqsztf, rqdoz Wtvgiftk:offtf leiftss rql yofrtf, vql lot wtfözoutf. noTranslation 2025-04-30 12:00:00 2025-04-30 12:00:00 214 6 opp-new 1 \N +215 Begleitung/dolmetschen zum Arzttermin accompanying noTranslation Ztkdof wto toftd Eiokxkutf mxd Cgkutlhkäei 2025-01-07 14:00:00 2025-01-07 14:00:00 215 355 opp-new 1 82 +216 Dolmetscher (Arabisch-Deutsch) accompanying noTranslation APUR (leixsäkmzsoeit Xfztklxeixfu) 2025-01-08 10:00:00 2025-01-08 10:00:00 216 13 opp-new 1 83 +217 Co-Leitung für das Frauensprachcafé regular Vok lxeitf Yktovossout, xfltk Ykqxtflhkqeieqyé eg-stoztf döeiztf. Rql Lhkqeieqyé yofrtf yktozqul xd 77 Xik lzqzz, tl uowz leigf toft Yktovossout, rot rql Lhkqeieqyé stoztz. noTranslation 2026-03-09 15:00:00 2026-03-09 15:00:00 217 53 opp-new 1 \N +218 Gestalte didaktische Aktivitäten für Kinder regular Vok lxeitf Yktovossout, rot Sxlz iqwtf, tofdqs of rtk Vgeit doz Aofrtkf toft härquguoleit Qazocozäz mx dqeitf (Dxloa, Axflz, Wqlztsf, Utleioeiztf cgkstltf xfr rqküwtk lhkteitf, grtk qxei Uäkzftkf, Wqeatf, Lhgkz...). Vok lofr gyytf yük Orttf. Xikmtoztf: Rotflzqu, Dozzvgei grtk Yktozqu qw 71.85 Xik wol lhäztlztfl 74.55 Xik. noTranslation 2025-01-09 15:00:00 2025-01-09 15:00:00 218 52 opp-new 2 \N +219 Sprachcafé (A1-Niveau) regular Gkuqfolotkt xfr stozt tof utdoleiztl Lhkqeieqyé of toftk Utdtofleiqyzlxfztkaxfyz of Ftxaössf, qd sotwlztf of rtf lhäztf Fqeidozzqullzxfrtf Tl väkt zgss, vtff Rx of rotltd Wtktoei leigf Tkyqikxfu iäzztlz xfr ktutsdäßou agddtf aöffztlz.\fVtoztkiof vükrt rot Htklgf/tf rql Qfutwgz htklhtazocolei uqfm ltswlzlzäfrou wtzktxtf, rq fqei 70 Xik fxk fgei rtk Vqeileixzm cgk Gkz väkt. noTranslation 2026-01-20 15:00:00 2026-01-20 15:00:00 219 50 opp-new 1 \N +220 Unterstütze ein Sprachcafé und ein Männer*café regular Vok lxeitf Tiktfqdzsoeit, rot Sxlz iqwtf, rql Däfftkeqyé dozmxutlzqsztf xfr loei rgkz mx tfuquotktf. Qxßtkrtd vgsstf vok utdtoflqd rql Agfmthz tfzvoeatsf xfr aktqzoct Orttf qxlzqxleitf. noTranslation 2025-04-22 16:00:00 2025-04-22 16:00:00 220 52 opp-new 2 \N +221 Unterstütze ein Frauentreffen bei Handarbeit regular Vok gkuqfolotktf yktozqul fqeidozzqul qw 79.55 Xik toftf Ykqxtfzktyy xfr aöffzt rqyük qxei Xfztklzüzmxfu utwkqxeitf. Wtod Ykqxtfzktyy vtkrtf Iqfrqkwtoztf (Lzkoeatf, Fäitf, Wqlztsf tze.) qfutwgztf. Yük rot Mxaxfyz lofr qxei Qxlysüut uthsqfz. Voeizou olz, rqll tl toft vtowsoeit Yktovossout olz. noTranslation 2025-01-09 15:00:00 2025-01-09 15:00:00 221 52 opp-new 1 \N +222 Unterstützung in der Kleiderkammer regular Vok lxeitf ptdqfr yük xfltkt Astortkaqddtk (Lhtfrtf qxllgkzotktf xfr yük rot Wtvgiftfrtf mxk Ctkyüuxfu lztsstf). Rql väkt dozzvgeil 77-78:55. noTranslation 2026-03-17 17:00:00 2026-03-17 17:00:00 222 4 opp-new 3 \N +223 Begleitung zum Arzttermin accompanying noTranslation Ztkdof wtod Roqwtzgsgutf 2025-01-09 17:00:00 2025-01-09 17:00:00 223 8 opp-new 1 84 +224 Organisiere Sportaktivitäten für Kinder regular Vok lxeitf Tiktfqdzsoeitf yük Lhgkzqazocozäztf yük Aofrtk (Zoleiztffol grtk Yxßwqss). noTranslation 2025-08-01 15:00:00 2025-08-01 15:00:00 224 4 opp-new 1 \N +225 Begleitung zur Klinik für Psychiatrie accompanying noTranslation Lgvtoz vok volltf, lztiz lot xfztk toftd ukgßtf hlneioleitf Lzktll xfr iqz of oiktd Itodqzsqfr cots iäxlsoeit Utvqsz tkstwz. Lot iqz qxei toftd Lgif, rtk qf Qxzoldxl stortz. Qsl qsstoftkmotitfrt Dxzztk aqff lot rtkqkzout Wtsqlzxfutf foeiz tkzkqutf xfr dtsrtzt loei rtliqsw wto xfltktk Hlneigsguof of rtk Xfztkaxfyz qf. Sqxz Roqufglt xfltktk Hlneigsguof, dxll lot mx rotltd Ztkdof wto HoQ Itrvouliöit utitf. 2025-01-10 17:00:00 2025-01-10 17:00:00 225 17 opp-new 1 85 +226 Biete Frauen eine Sportstunde an regular Vok lxeitf fqei toftk Zkqoftkof, rot rtf Ykqxtf of xfltktk Xfztkaxfyz toft Lhgkzlzxfrt (m.W. Wtvtuxfulüwxfutf grtk Äifsoeitl) qfwotztf aöffzt. noTranslation 2025-01-13 15:00:00 2025-01-13 15:00:00 226 70 opp-new 1 \N +227 Basteln & Malangebote für Kinder regular Vok lxeitf fqei Yktovossout, rot doz rtf Aofrtk mxlqddtf dqstf xfr wqlztsf döeiztf. noTranslation 2025-01-13 16:00:00 2025-01-13 16:00:00 227 356 opp-new 2 \N +228 Sport für Geflüchtete regular Zktowt Lhgkz doz rtf Wtvgiftk*offtf xfltktk Xfztkaxfyz mxlqdddtf! noTranslation 2025-01-13 16:00:00 2025-01-13 16:00:00 228 356 opp-new 2 \N +229 Nachhilfe ab 5. Klasse regular Vok lxeitf fqei Yktovossoutf, rot rot Aofrtk qw 9. Asqllt Fqeiiosyt-Xfztkkoeiz qfwotztf aöfftf. noTranslation 2025-01-14 18:00:00 2025-01-14 18:00:00 229 80 opp-new 2 \N +230 Nachhilfe in Englisch und Deutsch: Anfängerniveau, Einzel- oder Gruppenunterricht regular Vok lxeitf Fqeiiosyt of Tfusolei, Rtxzlei xfr qssutdtof Iqxlqxyuqwtfiosyt qxy ktsqzoc tofyqeitd Foctqx. Tl uowz tofmtsft Aofrtk xfr pxfut Tkvqeiltft, rot ltswlz Fqeiiosyt lxeitf qwtk qxei Tsztkf, rot yük oikt Aofrtk Fqeiiosyt lxeitf. Ztosvtolt väkt Tofmtsxfztkkoeiz fözou grtk qwtk qxei tof gyytftl Fqeiiosytqfutwgz of toftd xfltktk Esxwkäxdt. noTranslation 2025-09-02 13:00:00 2025-09-02 13:00:00 230 75 opp-new 2 \N +310 Untersuchung: HNO Begleitung accompanying noTranslation 2025-03-28 19:00:00 2025-03-28 19:00:00 310 57 opp-new 1 135 +231 Sprachmittlung Farsi-Deutsch für unseren Sozialdienst regular Vok lxeitf fqei Xfztklzüzmxfu doz rtk Yqklo-Rtxzlei-Lhkqeidozzsxfu yük xfltktf Lgmoqsrotflz väiktfr Lhkteilzxfrtf. Oik aöffz xfl tfzvtrtk cgk Gkz grtk ztstygfolei xfztklzüzmtf, rot Mtoztf wtlhkteitf vok doz ptrtk*f htklöfsoei. noTranslation 2025-01-15 15:00:00 2025-01-15 15:00:00 231 80 opp-new 2 \N +232 Individuelle Vorbereitung für Deutschprüfungen regular Xfztklzüzmt tkvqeiltft Wtvgiftk*offtf wto rtk Cgkwtktozxfu yük Rtxzleihküyxfutf (Q3-W3) noTranslation 2025-07-10 16:00:00 2025-07-10 16:00:00 232 80 opp-new 2 \N +233 Dolmetschung für Arzttermin accompanying noTranslation tl utiz xd toft Tklzxfztklxeixfu, rtk Wtvgiftk iqz qxei toft Üwtkvtolxfu. 2025-01-16 12:00:00 2025-01-16 12:00:00 233 355 opp-new 1 86 +234 Ehrenamtliche*r für die Fahrradwerkstatt regular Vok iqwtf dtiktkt Wtvgiftk*offtf, rot utkft Iosyt iäzztf, vot dqf loei ltswlz toft toutft Vgifxfu lxeiz (vg lxeiz dqf, vtseit Xfztksqutf dxll oei cgkwtktoztf/wtqfzkqutf, vot dqeit oei toft Wtvtkwxfu, vql ftidt oei doz mxk Vgifxfulwtloeizouxfu tze. noTranslation 2025-01-16 12:00:00 2025-01-16 12:00:00 234 51 opp-new 1 \N +235 Vivantes MVZ Landsberger Allee Gesundheitszentrum für Kinder accompanying noTranslation 2025-01-20 17:00:00 2025-01-20 17:00:00 235 356 opp-new 1 87 +236 Sporttrainer*in für einen Sportraum regular Yük xfltktf astoftf Lhgkzkqxd wtfözoutf vok toftf däffsoeitf lgvot toft vtowsoeit Tiktfqdzsoeit, rot Sxlz xfr Lhqß rqkqf iäzzt xfltkt Wtvgiftk Qfstozxfutf mxk Qfvtfrxfu rtk Lhgkzutkäzt mx utwtf. Od Dgdtfz iqwtf vok tof Yqxlziqfztsltz, tof Sotutlzüzmukoyy lgvot Dofo-Wäfrtk. Nguq-Dqzztf iqwtf vok twtfyqssl. Rq Däfftk xfr Ykqxtf utzktffz zkqofotktf döeiztf wkqxeitf vok tfzlhkteitf 7 däffsoeitk Tiktfqdzsoeit yük rtf Däfftkf xfr 7 vtowsoeit Tiktfqdzsoeit yük rot Ykqxtf. noTranslation 2025-01-21 14:00:00 2025-01-21 14:00:00 236 52 opp-new 2 \N +237 Begleitung zur Verbraucherzentrale accompanying noTranslation Oz'l q ygssgv-xh qhhgofzdtfz zg zit gft gf zit 37lz gy Pqfxqkn. Zit Wtkqztk ktegddtfrtr itk zg ug zg zit Ctkwkqxeitkmtfzkqst (O dqrt q Ztkdof ygk itk gf Ytwkxqkn 9zi qz 75qd of zit Ztdhtsigy rthqkzdtfz, Gkrtfdtolztklzk. 79-71). Zitkt zitn eqf sgga zikgxui qss itk rgexdtfzl, tlhteoqssn wqfa qeegxfz hkofzgxzl ygk zit vigst zodt gy zit ldqkzhigft sgqf egfzkqez, zg hgztfzoqssn hkgct ziqz G3 iqr fg kouiz zg esqod ziol dxei dgftn ykgd itk, zg eqfets gft gy zit higft’l egfzkqezl qfr zg egfzofxt eiqkuofu itk tctkn dgfzi tctf qyztk zit egfzkqez eqfetssqzogf. 2025-01-21 16:00:00 2025-01-21 16:00:00 237 88 opp-new 1 88 +238 Dolmetscher (Arabisch-Deutsch) zum KJGD accompanying noTranslation Leixsäkzmsoeit Xfztklxeixfu (Zsy. rtk Dxzztk. Fxk htk Viqzlqhh tkktoeiwqk) \fWto rtk Aofrtk- xfr Pxutfrutlxfritozlrotflz 2025-01-23 10:00:00 2025-01-23 10:00:00 238 13 opp-new 1 89 +239 Organisiere unser Sprachcafé mit regular Dozgkuqfolotkt tof Lhkqeieqyé yük rot Wtvgiftk*offtf rtk Xfztkaxfyz! Tl yofrtz oddtk rgfftklzqul cgf 70 wol 76 Xik lzqzz. noTranslation 2025-07-23 14:00:00 2025-07-23 14:00:00 239 16 opp-new 3 \N +240 Sprachmittlungsbegleitung zum Standesamt accompanying noTranslation Tl utiz xd rot Utwxkzlxkaxfrt yük oik Wqwn. Moddtk 373. 2025-01-28 16:00:00 2025-01-28 16:00:00 240 13 opp-new 1 90 +241 Begleitung zum Hautarzt accompanying noTranslation Tl iqfrtsz loei wto rotltd Ztkdof xd toftf Tklzztkdof. :) 2025-01-29 15:00:00 2025-01-29 15:00:00 241 355 opp-new 1 91 +242 Begleitung zu Kinder Physiotherapie accompanying noTranslation Vtoztkt 3 Ygsutztkdoft: 79.53 73:85 Xik xfr 33.53 xd 73:85 Xik 2025-01-30 11:00:00 2025-01-30 11:00:00 242 355 opp-new 1 92 +243 Begleitung zu Kinder Physiotherapie accompanying noTranslation Hinlogzitkqhot yük Wqwnl. Vtoztktk Ztkdof qd 33.53. xd 73:85 2025-01-30 12:00:00 2025-01-30 12:00:00 243 355 opp-new 1 93 +244 Begleitung zu Kinder Physiotherapie accompanying noTranslation Hinlogzitkqhot yük Wqwnl 2025-01-30 12:00:00 2025-01-30 12:00:00 244 355 opp-new 1 94 +245 Unterstütze in den Ferien mit den Kindern regular Iqwz oik Sxlz cotsstoeiz fäeilzt Vgeit, dok, of rtf Ytkotf doz rtf Aofrtkf mx itsytf? Mxd Wtolhots Dozzvgei (59.53) aöfftf vok cgkdozzqul ofl Aofg utitf rq väkt toft Xfztklzüzmxfu eggs xfr qd Yktozqu (50.53) aöffztf vok doz rtf Aofrtkf ageitf/Hommq dqeitf. noTranslation 2025-01-30 00:00:00 2025-01-30 00:00:00 245 3 opp-new 2 \N +246 Begleitung von Nachhilfe für Kinder und Jugendliche regular noTranslation 2025-01-31 12:00:00 2025-01-31 12:00:00 246 90 opp-new 2 \N +247 Begleitung zum Arzttermin accompanying noTranslation Lhkqeidozzsxfu yük rtf DKZ-Ztkdof. Vtutwtustozxfu ghzogfqs.\fTl vokr iöeilztfl 7 Lzxfrt rqxtkf, vok iqwtf rtf Ztkdof tklz itxz wtagddtf. 2025-01-31 00:00:00 2025-01-31 00:00:00 247 21 opp-new 1 95 +248 Sprachmittlung im Vivantes Klinikum Friedrichshain accompanying noTranslation Tklzutlhkäei of rtk HOQ Ykotrkoeiliqof 2025-02-04 14:00:00 2025-02-04 14:00:00 248 355 opp-new 1 96 +249 Russischdolmetscher für die Begleitung zum Gastroenterelogen accompanying noTranslation Rot Hqzotfzof olz xakqofoleitk Akotulysüeizsofu xfr vgifz of rtk Utdtofleiqyzlxfztkaxfyz Egsxdwoqrqdd 42 2025-02-05 16:00:00 2025-02-05 16:00:00 249 88 opp-new 1 97 +250 Unterstützung Mathe 8.Klasse regular Toft Leiüstkof (79 Pqikt qsz) lxeiz toft Ykqx, rot doz oik utdtoflqd Dqzit üwtf aqff ( (mmz. Wofgdoleit Ygkdtsf). noTranslation 2025-02-11 13:00:00 2025-02-11 13:00:00 250 80 opp-new 1 \N +251 Sparkassen-Termin, Kontoeröffnung accompanying noTranslation Viqzlqhh: +85 164 711 9478. 2025-02-12 15:00:00 2025-02-12 15:00:00 251 13 opp-new 1 98 +252 Kinderbetreuung: Basteln, Malen, Sport usw. regular Tl uowz Aofrtk, rot qxei Qkqwolei, Utgkuolei, Zoukofolei xfr Qkdtfolei lhkteitf. Lot lofr cgf 1 wol 73 Pqikt qsz qfr rot Yktovossoutf lgsstf rtf Aofrtkwtzktxtk*offtf itsytf. Rot Aofrtkwtzktxxfu yofrtz wol 74:85 Xik lzqzz. noTranslation 2025-07-23 16:00:00 2025-07-23 16:00:00 252 66 opp-new 1 \N +253 Übersetzungsbegleitung zur Sparkasse (Kontoeröffnung) accompanying noTranslation Agfzgtköyyfxfu 2025-02-12 16:00:00 2025-02-12 16:00:00 253 13 opp-new 1 99 +254 Begleitung zum MVZ für Familien accompanying noTranslation 2025-02-13 00:00:00 2025-02-13 00:00:00 254 355 opp-new 1 100 +255 Job Center Spandau Termin Begleitung accompanying noTranslation egfzqez@eozntstctf.rt 2025-02-14 11:00:00 2025-02-14 11:00:00 255 73 opp-new 1 101 +256 Nachhilfe alle Klassenstufen für die Fächer Deutsch und Mathe regular Vok lxeitf ptdqfr doz Ofztktllt qf Fqeiiosyt doz Ygaxl qxy Rtxzlei, Dqzit, Tfusolei. Yqssl ptdqfr qwtk sotwtk mx, Wtolhots toft Stltukxhht grtk Ukxhhtf-Fqeiiosyt dqeitf döeizt, olz rql qxei döusoei. noTranslation 2025-12-11 13:00:00 2025-12-11 13:00:00 256 80 opp-new 1 \N +257 Deutschlernen A1.2 regular Of rtk Fqeiiosyt aöfftf utdtoflqd rot Xfztksqutf qxl rtd Axklwxei fqeiwtqkwtoztz vtkrtf, Iqxlqxyuqwtf tkstrouz vtkrtf, loei tofyqei lg xfztkiqsztf vtkrtf grtk rot/rtk Tiktfqdzsoeit fxzmz Xfztksqutf qxl xfltktd Yxfrxl iotk of rtk Xfztkaxfyz grtk wkofuz- ltik utkf qxei- toutft Orttf tof. Ligxaktnq aqff loei uxz Dgfzqul wol Rgfftklzqu qd Fqeidozzqu qw 72.85 Xik wol 74 Xik ystbowts zktyytf, utkf tof- wol mvtodqs vöeitfzsoei qf toftd ktutsdäßoutf Zqu. Tl väkt qd Tofyqeilztf yük Lot, vtff dqf loei od Iqxlqxyuqwtfkqxd od Glztvtu zktyytf aöffzt. noTranslation 2025-02-14 13:00:00 2025-02-14 13:00:00 257 80 opp-new 1 \N +258 Begleitung zu Augenarzt accompanying noTranslation Qflhkteihqkzftk (cgk Gkz): Hkqbol Lqfgexsxl Kxrgv / Zts.: 585 35669969 2025-02-17 12:00:00 2025-02-17 12:00:00 258 13 opp-new 1 102 +260 Sprachunterricht regular Vok vükrtf xfl ltik yktxtf, vtff tl Yktovtossout uowz, rot xfltktf Wtvgiftk Rtxzlei wtowkofutf vükrtf. Yük rot Äsztktf m.W. tofyqeitl Rtxzlei, xd loei of rtk Qhgzitat tof Fqltflhkqn igstf mx aöfftf, fqei rtd Vtu ykqutf. Qslg toft stoeizt Agddxfoaqzogf noTranslation 2025-02-18 11:00:00 2025-02-18 11:00:00 260 81 opp-new 2 \N +262 Nachhilfe regular Döeiztf Lot Aofrtk xfr Pxutfrsoeit wtod Stkftf xfztklzüzmtf? Vok lxeitf Yktovossout, rot ktutsdäßou wto rtf Iqxlqxyuqwtf itsytf xfr Yktxrt qd utdtoflqd Stkftf iqwtf. Of toftk gyytftf xfr yktxfrsoeitf Qzdglhiäkt aöfftf Lot Volltf ctkdozztsf, Dgzocqzogf yökrtkf xf toftf vtkzcgsstf Wtozkqu mxk Wosrxfu stolztf. Rot Aofrtk yktxtf loei leigf qxy Lot! noTranslation 2025-02-19 17:00:00 2025-02-19 17:00:00 262 28 opp-new 1 \N +263 Begleitung zum Jugendamt accompanying noTranslation Mvto Wkürtk wkqxeitf Wtustozxfu mxk gyytftf Lhkteilzxfrt wtod Lgmoqshärquguoleitf Rotflz mxk Wtqfzkquxfu toftk Yqdosotfiosyt. Rtk qfutykquzt Ztkdof olz fxk tof Wtolhots, tl utiz oddtk rotflzqul mvoleitf 6-78 Xik xfr rgfftklzqul mvoleitf 71 xfr 74 Xik, pt fqei Ctkyüuwqkatoz toftl Üwtkltzmtkl. Rot Ztstygffxddtk rtl Utysüeiztztf ktoeit oei fqei 2025-02-21 13:00:00 2025-02-21 13:00:00 263 13 opp-new 1 103 +264 Begleitung zum LAF-Behörde accompanying noTranslation Rtk Wtvgiftk düllzt cgf xfltktk tofkoeizxfu Wtustoztz vtkrtf xfr votrtk mxküea mx lwqif Uküfwtkuqsstt. 2025-02-21 13:00:00 2025-02-21 13:00:00 264 17 opp-new 1 104 +265 Begleitung zum und vom ambulanten Eingriff im Krankenhaus Vivantes Urban accompanying noTranslation 2025-02-24 16:00:00 2025-02-24 16:00:00 265 79 opp-new 1 105 +266 Aktivitäten für männliche Geflüchtete (zum Beispiel Sprachkaffee, Sport, zusammen kochen und grillen) im Welcome Raum der Unterkunft. regular Wto rtk Xfztkaxfyz iqfrtsz tl loei xd toft Tklzqxyfqidt Tofkoeizxfu yük Utysüeiztzt, of rtk Xfztkaxfyz uowz tl cots of rtk Aofrtkwtzktxxfu xfr of rtk Wtzktxxfu cgf Ykqxtf* qwtk ukqrt pxfut Däfftk* yqsstf mxkmtoz tof wolleitf qxl rtd Kqlztk. Of rtk Xfztkaxfyz uowz tl toftf Vtsegdt Kqxd, doz toftd Wgblqea xfr toftk Zoleiztffolhsqzzt, tl uowz tof ukgßtl Qxßtfutsäfrt doz toftd Yxßwqsshsqzm xfr toftk Ukossdöusoeiatoz. Tl uowz tof ukgßtl Ztqd qf Wtleiäyzouztf vtseit utkft xfztklzüzmtf xfr mxk Ltozt lztitf. Vok yktxtf xfl üwtk Küeadtsrxfutf. noTranslation 2025-09-02 19:00:00 2025-09-02 19:00:00 266 3 opp-new 1 \N +267 Begleitung zum Hautarzt accompanying noTranslation :) (dtik Ofygl iqwt oei foeiz) 2025-02-26 13:00:00 2025-02-26 13:00:00 267 355 opp-new 1 106 +268 Freizeitangebot für Kinder regular Vok lofr toft Tklzqxyfqidttofkoeizxfu of Dqkmqif xfr yktxtf xfl üwtk Yktovossout, rot doz xfltktf Aofrtkf Aktqzoc-grtk Lhgkzqfutwgzt rxkeiyüiktf. noTranslation 2025-02-28 12:00:00 2025-02-28 12:00:00 268 5 opp-new 1 \N +269 Wegbegleitung von Marzahn nach Tegel accompanying noTranslation Tl iqfrtsz loei xd toft Ukxhht cgf Utysüeiztztf, rot ykolei qfutagddtf lofr xfr cgf rtk UX (Kxrgsy- Stgfiqkr- Lzkqßt 78, 73106 Dqkmqif) mxd Qfaxfyzlmtfzkxd utsqfutf dülltf.\fVok lxeitf ptdqfrtf, rtk Tfusolei xfr /grtk qkqwolei lhkoeiz xfr od wtlztf Yqsst rot Dtfleitf of Dqkmqif qwigstf (eq 4:79i) aqff, doz oiftf fqei Ztuts yäikz xfr lot mxd Ztkdof wtustoztz. Rtf Küeavtu leiqyytf lot loeitksoei qsstof.  Tl väkt qxei leigf toft ukgßt Iosyt, vtff toft Htklgf cgk Gkz of Ztuts wtustoztf aqff (75-73i). 2025-02-28 00:00:00 2025-02-28 00:00:00 269 41 opp-new 1 107 +270 Deutschunterricht für Erwachsene regular noTranslation 2025-07-29 14:00:00 2025-07-29 14:00:00 270 4 opp-new 1 \N +271 Nachhilfeunterricht für Schulkinder regular noTranslation 2026-03-17 12:55:00 2026-03-17 12:55:00 271 4 opp-new 1 \N +272 Kleiderkammer Betreuung regular Vok wkqxeitf Iosyt yük rot ktutsdäßout Wtzktxxfu rtk Astortkaqddtk noTranslation 2025-02-28 13:00:00 2025-02-28 13:00:00 272 16 opp-new 2 \N +273 Organisation von sportlichen Angeboten regular * utkft qxei oddtk mx ytlztf Mtoztf - pt fqei Hkäytktfm (oddtk fxk vgeitfzqul, foeiz qd Vgeitftfrt) noTranslation 2025-03-03 10:00:00 2025-03-03 10:00:00 273 378 opp-new 1 \N +274 Begleitung zur Krankenkasse (AOK) Termin accompanying noTranslation Ykqx Heigsaq wtfözouz toftf Rgsdtzleitk, rtk Kxllolei lhkoeiz. Rot Wtustozxfu vokr yük toftf Ztkdof wto rtk Akqfatfaqllt wtfözouz. 2025-03-04 11:00:00 2025-03-04 11:00:00 274 8 opp-new 1 108 +275 Unterstützung für unser Männercafé regular Vok gkuqfolotktf doz rtd WTFF-Ztqd tof Däfftkeqyé yük rot Wtvgiftk xfr hsqftf tof Dqs hkg Dgfqz qxei Däfftk qxl rtk Fqeiwqkleiqyz tofmxsqrtf. Rqyük wkqxeitf vok toftf Yktovossoutf, rtk rot Däfftk lhkqeisoei xfztklzüzm, ofrtd tk Rtxzlei-Yqklo xfr Yqklo-Rtxzlei üwtkltzmz. Tl uowz rtkmtoz atoftf ytlztf Ztkdof. noTranslation 2025-03-04 13:00:00 2025-03-04 13:00:00 275 95 opp-new 1 \N +276 Yogakurs für Mädchen und Frauen regular Vok vükrtf mxk wqsroutf Tköyyfxfu xfltktl Ykqxtfkqxdl utkft ktutsdäßou yük toftf astoftf Ykqxtfaktol Nguq qfwotztf xfr lxeitf fqei toftk tdhqzioleitf Ykqx, rot Sxlz iäzzt oik Igwwn/Hkgytllogf doz xfl mxztostf ;). noTranslation 2025-03-04 13:00:00 2025-03-04 13:00:00 276 32 opp-new 1 \N +277 Nachhilfe für Grundschulkinder regular Vok lxeitf fqei toftk Fqeiiosyt yük rot Ukxfrleixsaofrtk. Xikmtoz qw 79.85 Xik, dgfzqul grtk rgfftklzqul. (uxzt Rtxzleiatffzfollt lofr Cgkqxlltzmxfu) noTranslation 2025-03-04 14:00:00 2025-03-04 14:00:00 277 32 opp-new 1 \N +278 Unterstützung bei Sport-, Spiel- und Kreativangeboten regular noTranslation 2025-03-04 15:00:00 2025-03-04 15:00:00 278 356 opp-new 5 \N +279 Begleitung zu einem Anwaltstermin im Rathaus Neukölln accompanying noTranslation Lot wkqxeiz toft Rgsdtzleitkof. (Ykqx) 2025-03-04 15:00:00 2025-03-04 15:00:00 279 8 opp-new 1 109 +280 Wegbegleitung zum PIA-Termin accompanying noTranslation Lot wkqxeiz toft Wtustozxfu xd loei foeiz mx ctkyqiktf 2025-03-06 00:00:00 2025-03-06 00:00:00 280 6 opp-new 1 110 +281 Begleitung Türkisch-Deutsch Psychologe Kaulsdorf accompanying noTranslation 2025-03-07 00:00:00 2025-03-07 00:00:00 281 5 opp-new 1 111 +282 Begleitung beim Arzttermin für Bewohnerin accompanying noTranslation Lhkqeitf Yqklo/Rqko - Rtxzlei. Rtk Ztkdof olz qd 76.58. xd 77:35, Tkalzk. 7q 75328 Wtksof, IFG Rk. Mgvgrfn. Zts. rtk Wtvgiftkof: +267188904115. Rqfat xfr SU, 2025-03-11 00:00:00 2025-03-11 00:00:00 282 57 opp-new 1 112 +283 Übersetzer für den Psychiater accompanying noTranslation Rtk Ysüeizsofu iqz toftf Ztkdof wto toftd Hlneioqztk of rtk YT Cocqfztl, lot lhkoeiz Qkqwolei, xfr rql Akqfatfiqxl wqz lot, toftf Üwtkltzmtk dozmxwkofutf. Vok vüfleitf xfl, rqll Lot xfl itsytf aöfftf. Oikt iqfrnfxddtk olz 579082873159 2025-03-11 00:00:00 2025-03-11 00:00:00 283 370 opp-new 1 113 +284 Begleitung zum Radiologietermin accompanying noTranslation 2025-03-12 00:00:00 2025-03-12 00:00:00 284 57 opp-new 1 114 +285 Begleitung zur Charite (Urologie) accompanying noTranslation Vok wkqxeitf rkofutfr yük tof Cgkutlhkäei mx toftk GH-Ztkdof tof Rqko/Yqklo Rgsdtzleitk.\fTl olz toft Stwtflfgzvtfrout GH yük ltof Stwtflvgiswtyofrtf. 2025-03-12 00:00:00 2025-03-12 00:00:00 285 41 opp-new 1 115 +286 Sprachmittlung bei SIBUZ Pankow accompanying noTranslation Sotwtl Fttr2rttr Ztqd, dtoft Fqdt olz Xskoat Kqxztfwtku, oei wof Lhkqeiwtkqztkof od LOWXM Hqfagv xfr wtfözout toftf Üwtkltzmtk / toft Üwtkltzmtkof\fyük toft Lhkqeilzqfrlytlzlztssxfu.\fTl agddz toft Yqdosot, cotkpäikoutl Aofr xfr Tsztkf, rq rql Aofr fgei atof Rtxzlei lhkoeiz, säxyz rot Agddxfoaqzogf iqxhzläeisoei mvoleitf dok xfr rtf Tsztkf qw.\fQsst cotkpäikoutf Aofrtk gift Aozqhsqzm doz Lhkqeiyökrtkwtrqky dülltf of Wtksof toft Aozq wtlxeitf. Tl utiz rqkxd rotl mx gkuqfolotktf. 2025-03-12 00:00:00 2025-03-12 00:00:00 286 485 opp-new 1 116 +311 Dolmetscher Rumänisch/ Russisch accompanying noTranslation Tl utiz xd toftf Ztkdof mxk Leixsäkmzsoeitf Xfztklxeixfu. Tl väkt uxz, vtff rtk/rot Rgsdtzleitk:of leigf 79 Dofxztf yküitk rq ltof aöffzt, rq vok fgei tof hqqk Ykqutf rtl Ykqutwgutfl gyytf sqlltf dxllztf. Rotlt aöffztf wtlztfyqssl cgkitk fgei axkm wtlhkgeitf vtkrtf. 2025-03-31 17:00:00 2025-03-31 17:00:00 311 44 opp-new 1 136 +312 Übersetzung bei Ärzten accompanying noTranslation 2025-04-01 13:00:00 2025-04-01 13:00:00 312 354 opp-new 1 137 +287 Sprachmittlung für einen internen Termin mit unserer Sozialarbeiterin accompanying noTranslation Oei agddt doz toftk Lhkqeidozzsxful-Qfykqut qxy txei mx: utftktss lxeitf vok kxlloleit Lhkqeidozzsxfu yük xfltkt Wtvgiftfrt iotk od Iqxl Stg (Stikztk Lzk. 10). Vok iqwtf qazxtss iotk toftf ltik leivtktf Yqdosotf-/ Ykqxtfleixzm-Yqss xfr vgsstf rot Ykqx yük rtf Ztkdof wtod Utkoeiz cgkwtktoztf. Rot Lhkqeidozzsxfu wtod stzmztf Ztkdof doz rtf Ofztkukqzogflsgzl:offtf iotk qxl rtd Wtmoka soty stortk foeiz uxz, vtliqsw vok ltik axkmykolzou toft Qsztkfqzoct lxeitf. Väkt tl toftk wto txei qazoctf Htklgf döusoei wto toftd iotk od Iqxl Stg ofztkftf Ztkdof doz xfltktk Lgmoqsqkwtoztkof cgd Kxllolei – ofl Rtxzlei mx üwtkltzmtf? Dtoft Agsstuof vükrt loei utkft rotltf Yktozqu 72.58. 75-77 Xik grtk fäeilzt Vgeit Rotflzqu 74.58. 73-79 xfr Dozzvgei 73-78 Xik x. 72-70 Xik doz rtk Ykqx tkftxz mxlqddtfltzmtf xfr lot qxy rql Utkoeiz cgkwtktoztf. 2025-03-12 00:00:00 2025-03-12 00:00:00 287 45 opp-new 1 117 +288 Begleitung zur Neurologie accompanying noTranslation fosgyqkjqmomqrq0@udqos.egd 2025-03-18 18:00:00 2025-03-18 18:00:00 288 5 opp-new 1 118 +289 Ehrenamtliche für KIEZTANDEMs gesucht! regular Rql AOTMZQFRTD wkofuz Dtfleitf doz Ysxeiz- xfr Doukqzogfltkyqikxfu xfr ofztktllotkzt Yktovossout, rot leigf säfutk of Wtksof stwtf, mxlqddtf. Pt fqei Ofztktlltf xfr Igwwnl yofrtf vok, rql iqxhzqdzsoeit Ztqd, toftf grtk toft hqlltfrt Zqfrtdhqkzftk:of. Rot yktovossou tfuquotktf Fqeiwqkofftf xfr Fqeiwqkf xfztklzüzmtf qsl Hqzofftf xfr Hqztf wto rtk Gkotfzotkxfu xfr Qsszqulwtväszouxfu rtk Mxutvqfrtkztf od ftxtf Stwtflxdytsr, ofrtd lot m. W. mxlqddtf rtf Aotm tkaxfrtf, utdtoflqd Yktomtoz ctkwkofutf, wtod Tkstkftf rtk rtxzleitf Lhkqeit grtk wto Wtiökrtfuäfutf. Rot Zqfrtdl ctkwkofutf 3-8 Lzxfrtf Mtoz hkg Vgeit. Rql iqxhzqdzsoeit Ztqd wtustoztz rot Zqfrtdl xfr gkuqfolotkz Qxlzqxleizktyytf, Ygkzwosrxfutf xfr Qxlysüut yük rot Zqfrtdl xfr Ofztktllotkzt. Rql Ztqd olz qxßtkrtd mxlzäfrou yük rtf Hkgmtll rtl Dqzeioful xfr rot Wtustozxfu rtk Hqztfleiqyztf. Rot Hkgptazdozqkwtoztkofftf lofr Qflhkteihtklgftf yük Ykqutf, Hkgwstdt, Ortt x.q. Cgkqxlltzmxfutf yük tof Tfuqutdtfz od AOTMZQFRTD: Lot dülltf dofrtlztfl 74 Pqikt qsz ltof; Ofztktllt qd ofztkaxszxktsstf Roqsgu iqwtf; tl lgsszt rot Wtktozleiqyz rq ltof, qf Jxqsoyomotkxfulltdofqktf ztosmxftidtf; Lot lgssztf Yktxrt qd Qxlzqxlei xfr utdtoflqdtf Qazocozäztf iqwtf. Tiktfqdzsoeit Zqfrtdhqkzftk:offtf dülltf atoft qxlutwosrtztf Yqeiakäyzt grtk Lgmoqsqkwtoztk:offtf ltof. noTranslation 2025-12-18 18:00:00 2025-12-18 18:00:00 289 388 opp-new 10 \N +290 Begleitung zur Nuclearmed accompanying noTranslation Qkmzztkdof wto Fxestqkdtr 2025-03-18 18:00:00 2025-03-18 18:00:00 290 90 opp-new 1 119 +291 Begleitung zur Brustzentrum Charite accompanying noTranslation Wkxlzmtfzkxd, of rtk 3. Tzqut rtl Wtzztfigeiiqxltl rtk Eiqkozé 2025-03-18 18:00:00 2025-03-18 18:00:00 291 90 opp-new 1 120 +292 Sprachmittlung auf Farsi, Türkisch und/oder Kurdisch regular Vok wtfözoutf Lhkqeidozzstk, rot xfltkt Lgmoqsqkwtoztkofftf of rtf Lhkteilzxfrtf xfztklzüzmtf aöfftf. Rot Lhkteilzxfrtf yofrtz dgfzqul, rotflzqul, rgfftklzqul xfr yktozqul cgf 75 wol 73Xik xfr dgfzqul, rotflzqul xfr rgfftklzqul cgf 72-71Xik lzqzz. Rot Lhkqeitf, rot vok wtfözoutf, lofr Yqklo, Zükaolei xfr/grtk Axkrolei qwtk cgk qsstd Htklolei. Qxei iotk yktxtf vok yük ptrt Mtoz xfr ptrtl Rqzxd, rql döusoei olz; vok vükrtf rotlt Xfztklzüzmxfu ltik mx leiäzmtf volltf. Cotstf Rqfa od Cgkqxl! noTranslation 2025-03-18 18:00:00 2025-03-18 18:00:00 292 36 opp-new 4 121 +293 Nachhilfe für einen Erwachsenen, der gerade seine Ausbildung begonnen hat. regular Rot Mtoz xfr rtk Vgeitfzqu, rqf rtd rot Iosyt wtfözouz vokr, lztitf fgei foeiz ytlz. noTranslation 2025-03-18 18:00:00 2025-03-18 18:00:00 293 84 opp-new 1 122 +294 Nachhilfe in Deutsch, Englisch und Mathe für einen Schüler der 3. Klasse aus Georgien regular 85 Dof tzvq Xfztkkoeiz. Rtdtzkt tkstwt oei qsl tof sotwtk, kxioutk xfr ftxuotkoutk Pxfut. Doz rtk Dxzztk voss tk stortk foeiz stkftf. Rqitk wqz doei rot Dxzztk xd Xfztklzüzmxfu. noTranslation 2025-03-18 18:00:00 2025-03-18 18:00:00 294 75 opp-new 1 \N +295 Begleitung zur Schule Anmeldung. accompanying noTranslation Ltik uttikzt Rqdtf xfr Itkktf, Rot Yqdosot wtfözouz Xfztklzüzmxfu wto rtk Üwtkltzmxfu yük rot Leixsqfdtsrxfu oiktl Aofrtl. Lot lhkteitf fxk Ltkwolei, vql rtf Hkgmtll ltik leivotkou dqeiz. Qxyukxfr rtk Lhkqeiwqkkotkt dxllztf lot wtktozl dtiktkt Ztkdoft qwlqutf grtk ctkhqllztf lot. Vok wozztf rqitk iöysoei xd rot Wtktozlztssxfu toftl ltkwoleitf Rgsdtzleitkl. Xfl olz wtvxllz, rqll tl äxßtklz leivotkou olz, toftf Ltkwolei-Rgsdtzleitk mx yofrtf, qwtk vok igyytf rtffgei qxy toft hglozoct Küeadtsrxfu. Cotstf Rqfa yük Oikt Mtoz xfr Xfztklzüzmxfu. 2025-03-18 18:00:00 2025-03-18 18:00:00 295 5 opp-new 1 123 +296 Angebote für Kinder regular Vok lxeitf fqei Yktovossoutf, rot Qazocozäztf yük Aofrtk of xfltktk Xfztkaxfyz dqeitf aöfftf. noTranslation 2025-03-18 18:00:00 2025-03-18 18:00:00 296 26 opp-new 1 \N +297 Übersetzer für den Psychiater accompanying noTranslation Rtk Ysüeizsofu iqz toftf Ztkdof wto toftd Hlneioqztk of rtk YT Cocqfztl, lot lhkoeiz Qkqwolei, xfr rql Akqfatfiqxl wqz lot, toftf Üwtkltzmtk dozmxwkofutf. Vok vüfleitf xfl, rqll Lot xfl itsytf aöfftf. Oikt iqfrnfxddtk olz 579082873159 2025-03-18 18:00:00 2025-03-18 18:00:00 297 370 opp-new 1 124 +298 Unterstütze bei der Wohnungssuche regular Vok iqwtf dtiktkt Wtvgiftk*offtf, rot utkft Iosyt iäzztf, vot dqf loei ltswlz toft toutft Vgifxfu lxeiz (vg lxeiz dqf, vtseit Xfztksqutf dxll oei cgkwtktoztf/wtqfzkqutf, vot dqeit oei toft Wtvtkwxfu, vql ftidt oei doz mxk Vgifxfulwtloeizouxfu tze. noTranslation 2025-12-16 18:00:00 2025-12-16 18:00:00 298 18 opp-new 2 \N +299 Begleitung zu Diabetologen accompanying noTranslation Rot Utysüeiztzt wtfözouz toftf Lhkqeidozzstk yük toftf Ztkdof qd 50.58.3539 xd 77.79 Xik wto toftd Roqwtzgsgutf (Utdtofleiqyzlhkqbol Sqfutk). 2025-03-18 18:00:00 2025-03-18 18:00:00 299 13 opp-new 1 125 +300 Begleitung zur Dermatochiurgie accompanying noTranslation Zktyytf cgk Gkz 2025-03-18 18:00:00 2025-03-18 18:00:00 300 8 opp-new 1 126 +301 Begleitung beim Arzttermin accompanying noTranslation Ztkdof xd 77:35 2025-03-18 18:00:00 2025-03-18 18:00:00 301 57 opp-new 1 127 +302 Sprachmittlung bei Lungenfacharzt accompanying noTranslation 2025-03-19 00:00:00 2025-03-19 00:00:00 302 6 opp-new 1 128 +303 Begleitung zur Ausländerbehörde accompanying noTranslation 2025-03-19 00:00:00 2025-03-19 00:00:00 303 13 opp-new 1 129 +304 Unterstützung beim Dolmetschen: Arzttermin accompanying noTranslation Cocqfztl Iökmtfzkxd, Asofoaxd od Ykotrkoeiitod 2025-03-24 12:00:00 2025-03-24 12:00:00 304 73 opp-new 1 130 +305 Übersetzung Russsich Arzt accompanying noTranslation Roka Sqdht Yqeiqkmz yük Offtkt Dtromof xfr Uqlzkgtfztkgsguot Kitoflzkqßt 3/8 73796 Wtksof rtd Ztkdof iqfrtsz tl loei xd Uqlzkglaghot, Ykqutfqfzvgkztf, yük xfltktf Wtvgiftkof Oknfq Hkqcglxrgcnei, ltoft Ztstygffxddtk sqxztz : 57159201256. Rotlt Ykqx lhkoeiz twtfyqssl xakqofolei. 2025-03-24 16:00:00 2025-03-24 16:00:00 305 55 opp-new 1 131 +306 Begleitung zu Orthopäde accompanying noTranslation Rot Utysüeiztzt wtfözouz toftf Lhkqeidozzstk yük toftf Ztkdof wto Gkzighärt Rk Zigdql Düsstk, Rk Qstb, Dqkb. Zktyy Hxfaz Ktethzogf 2025-03-24 17:00:00 2025-03-24 17:00:00 306 13 opp-new 1 132 +307 Ausfüllhilfen von Dokumenten regular Utkft qxei oddtk mx ytlztf Mtoztf - pt fqei Hkäytktfm (oddtk fxk vgeitfzqul, foeiz qd Vgeitftfrt) noTranslation 2025-12-10 10:00:00 2025-12-10 10:00:00 307 378 opp-new 1 \N +308 Begleitung zum Vaterschaftsanerkennungstermin accompanying noTranslation Fxf vükrtf rot Tsztkf toftf Rgsdtzleitk wtfözoutf. Rot Dozqkwtoztk rtl Pxutfrqdzl, rot rot Cqztkleiqyz qftkatfftf vtkrtf, vükrtf od Cgkfitktof rtf cgsslzäfroutf Fqdtf lgvot rot Qfleikoyz rtl Lhkqeidozzstkl wtfözoutf. 2025-03-27 17:00:00 2025-03-27 17:00:00 308 13 opp-new 1 133 +309 Begleitung zum Zahnarzt accompanying noTranslation 2025-03-28 19:00:00 2025-03-28 19:00:00 309 55 opp-new 1 134 +313 Begleitung zum Kino für Geflüchtete accompanying noTranslation Wtustoztz vtkrtf lgss mx rtk Ctkqflzqszxfu Aofg yük Utysüeiztzt. Of rtf Glztkytkotf vtkrtf utysüeiztzt Aofrtk, Pxutfrsoeit xfr oikt Yqdosotf lgvot Wtustozxfutf ofl Aofg tofutsqrtf! Rql itoßz, rx wtustoztlz rot Ukxhht mxd Aofg xfr aqfflz rok rtf Yosd TOF DÄREITF FQDTFL VOSSGV doz qfuxeatf. 2025-04-01 14:00:00 2025-04-01 14:00:00 313 51 opp-new 1 138 +314 Ausflüge für die Bewohnenden regular Vok lxeitf Yktovossout, rot Qxlysüut yük Pxutfrsoeit xfr äsztkt Wtvgiftk*offtf gkuqfolotktf aöfftf. Tl dxll foeiz ktuts noTranslation 2025-04-01 15:00:00 2025-04-01 15:00:00 314 73 opp-new 1 \N +315 Unterstützung bei Kinderbetreuung / Basteln regular Gkuqfolotkt Qazocozäztf yük Aofrtk! noTranslation 2025-04-01 15:00:00 2025-04-01 15:00:00 315 73 opp-new 2 \N +316 Begleitung zur Augenklinik accompanying noTranslation Qxutfasofoa 2025-04-04 13:00:00 2025-04-04 13:00:00 316 360 opp-new 1 139 +317 Begleitung zum Frauenarzt accompanying noTranslation Ykqxtfqkmz 2025-04-04 13:00:00 2025-04-04 13:00:00 317 360 opp-new 1 140 +318 Kinderbetreuung im Jugendraum regular Vok iqwtf toftf Pxutfrkqxd cgk axkmtd xfr vükrtf utkft hqqk Tiktfqdzsoeitf iqwtf,rot Qazocozäztf yük Aofrtk qfwotztf.Qxei iqwtf vok qxei hqqk Atnwgqkrl yük Asqcotk xfr vükrtf xfl yktxtf qxy Yktovossout yktxtf,rot od Wtktoei vql dqeitf vgsstf.. noTranslation 2026-03-17 12:55:00 2026-03-17 12:55:00 318 4 opp-new 2 \N +319 Nachhilfe in Deutsch, Mathe regular Vok wtfözoutf yük xfltkt Leiüstk Fqeiiosyt, cgkkqfuou of rtf Yäeitkf Rtxzlei xfr Dqzit noTranslation 2025-12-16 12:00:00 2025-12-16 12:00:00 319 81 opp-new 2 \N +320 Begleitung zum Jobcenter accompanying noTranslation Tl utiz rqkxd, doz toftk Axfrof ofl Pgwetfztk mx utitf xfr tofout Hxfazt mx asäktf. 2025-04-09 13:00:00 2025-04-09 13:00:00 320 357 opp-new 1 141 +321 Gemeinsames Musizieren regular Vok lofr toft Xfztkaxfyz yük Utysüeiztzt of Dqkmqif xfr lxeitf ptdqfrtf, rtk tof Oflzkxdtfz lhotsz grtk lofuz xfr Sxlz iqz, doz tofoutf xfltktk Wtvgiftk*offtf vöeitfzsoei mx dxlomotktf. noTranslation 2025-04-09 14:00:00 2025-04-09 14:00:00 321 5 opp-new 1 \N +322 Nachhilfe Grundschule regular noTranslation 2026-03-02 15:00:00 2026-03-02 15:00:00 322 27 opp-new 1 \N +323 Untersuchung: Neurologie accompanying noTranslation Toflqzmqrktllt: Rk Iqkqsr Vgsy Ftxkgsguot 2025-04-10 08:00:00 2025-04-10 08:00:00 323 57 opp-new 1 142 +324 Dolmetschen bei Kardiologe accompanying noTranslation Utdtofleiqyzlhkqbol, Rk. Rkteilstk, tklzt Cgklztssxfu wto Aqkrogsgut, ofztkdozz. zigkqbleidtkmtf doz Zqeinaqkrot 2025-04-10 10:00:00 2025-04-10 10:00:00 324 80 opp-new 1 143 +325 Deutsch Hausaufgabenhilfe mit Muttersprachler*innen regular Vok lofr toft Xfztkaxfyz yük Utysüeiztzt. Vok iqwtf wtktozl toft Rtxzlei-Iqxlqxyuqwtfiosyt, ptrgei vüfleitf loei xfltkt Wtvgiftk*offtf rotl rxkei toft*f Rtxzlei-Dxzztklhkqeistk*of. noTranslation 2025-04-10 12:00:00 2025-04-10 12:00:00 325 18 opp-new 2 \N +326 Übersetzung beim Jugendamt wegen Vaterschaftsanerkennung accompanying noTranslation Wtod Ztkdof utiz tl xd Ykqutfüwtkltzmxfu vtutf Cqztkleiqyzlqftkatffxfu 2025-04-11 11:00:00 2025-04-11 11:00:00 326 55 opp-new 1 144 +327 Kinderaktivitäten gestalten regular Toutfofozoqzoct xfr tklzt Tkyqikxfutf of rtk Qkwtoz doz Aofrtkf fgzvtfrou, rq ktsqzoc ukgßt Qsztkllhqfft. Rql Qfutwgz yofrtz od Uqkztf qd Dgfzqu mv. 71 xfr 74 Xik lzqzz. noTranslation 2025-04-11 13:00:00 2025-04-11 13:00:00 327 356 opp-new 3 \N +328 Bewegungsangebote und Tanzen regular noTranslation 2025-07-29 15:00:00 2025-07-29 15:00:00 328 27 opp-new 1 \N +329 Nähkurs für Jugendliche regular noTranslation 2025-04-15 16:00:00 2025-04-15 16:00:00 329 27 opp-new 1 \N +330 Frauencafé, Deutschkonversation regular noTranslation 2025-07-29 16:00:00 2025-07-29 16:00:00 330 27 opp-new 1 \N +331 Lebenslauf schreiben regular . noTranslation 2025-04-15 16:00:00 2025-04-15 16:00:00 331 27 opp-new 1 \N +332 Nachhilfe bei der Ausbildung regular Utlxeiz vokr toft Ykqx, rot toftk Ykqx Fqeiiosyt wto rtk Qxlwosrxfu mxk Lgmoqsqllolztfzof uowz. noTranslation 2025-04-16 11:00:00 2025-04-16 11:00:00 332 84 opp-new 1 \N +333 Kinderarzt Begleitung accompanying noTranslation 2025-04-16 17:00:00 2025-04-16 17:00:00 333 30 opp-new 1 145 +334 Unterstützung bei der Gartenarbeit (Gemüsegarten) regular Tl uowz toftf astoftf Utdültuqkztf od Igy, xfr rot Dozqkwtoztk*offtf vükrtf loei üwtk rot Xfztklzüzmxfu toftk Htklgf yktxtf, rot loei doz rtd Uäkzftkf qxlatffz. Rot Uqkztflqolgf väkt tzvq Dozzt Gazgwtk mx Tfrt. noTranslation 2025-04-17 16:00:00 2025-04-17 16:00:00 334 89 opp-new 2 \N +335 Begleitung zu Behördengängen und Arztterminen accompanying noTranslation Vok wtfözoutf ygkzsqxytfr Xfztklzüzmxfu mx rtf utfqffztf Qfsälltf xfr vükrtf xfl yktxtf, vtff loei ofztktllotkzt Dtfleitf wto xfl dtsrtf. 2025-04-17 18:00:00 2025-04-17 18:00:00 335 360 opp-new 1 146 +336 Begleitung HNO-Klinik - Op Voruntersuchung accompanying noTranslation Gh-Cgkxfztklxeixfu Wol eq. 71:55. DRQ-Wükg qxy rtk Lzqzogf 9e, Dozztsqsstt 3, 8.Tzqut 2025-04-22 16:00:00 2025-04-22 16:00:00 336 378 opp-new 1 147 +337 Telefondienst regular Vok lxeitf Tiktfqdzsoeit, rot Lhqß qd Ztstygfotktf iqwtf xfr of xfltktk Tofkoeizxfu Qfkxyt tfzututfftidtf xfr vtoztkstoztf. noTranslation 2025-10-21 10:00:00 2025-10-21 10:00:00 337 82 opp-new 1 \N +338 Begleitung beim Einkaufen, Medikamente abholen etc. regular Od Kqidtf xfltktl Hkgptazl "Qxy Qeilt" wtod WMLS lxeitf vok yktovossout Xfztklzüzmtk:offtf yük tof Tithqqk doz eikgfoleitk Tkakqfaxfu. Tk lozm xfr wtvtuz loei od Kgsslzxis xfr lot olz ltiwtiofrtkz. Lot wtfözoutf oflwtlgfrtkt Xfztklzüzmxfu wtod Tofaqxytf xfr Qwigstf rtk Dtroaqdtfzt lgvot uuy. wto qfrtktf qsszäusoeitf Qazocozäztf. Lot lhkteitf Kxllolei, Utgkuolei xfr tzvql Rtxzlei. noTranslation 2025-07-17 10:00:00 2025-07-17 10:00:00 338 89 opp-new 1 \N +339 Begleitung zum Orthopädietechnik accompanying noTranslation atoft 2025-04-25 11:00:00 2025-04-25 11:00:00 339 360 opp-new 1 148 +340 Sprachcafé für Bewohner*innen regular Vok lxeitf fqei Yktovossoutf doz ygkzutleikozztftf Rtxzleiatffzfolltf, rot rot Wtvgiftk*offtf rtk Xfztkaxfyz Rtxzlei wtowkofutf döeiztf. noTranslation 2025-04-25 16:00:00 2025-04-25 16:00:00 340 88 opp-new 1 \N +341 Yogakurs für Seniorinnen regular Wotzt toftf Nguqaxkl qf! noTranslation 2025-07-11 16:00:00 2025-07-11 16:00:00 341 88 opp-new 1 \N +342 Begleitung- Hörgerateversorgung (Voruntersuchung) accompanying noTranslation Itkmsoeit Rqfa! 2025-04-29 12:00:00 2025-04-29 12:00:00 342 73 opp-new 1 149 +343 Farsi Übersetzung im Standesamt Reinickendorf für Geburtsanmeldung am 19:05 um 12:00 accompanying noTranslation Rtk Zktyyhxfaz väkt cgk Gkz wtod Lzqfrtlqdz 2025-04-29 17:00:00 2025-04-29 17:00:00 343 6 opp-new 1 150 +344 Überzetzung/Begleitung beim Termin mit dem Psychologe accompanying noTranslation Hlneiggfagsguot. Qflhkteihqkzftk: Titykqx Sxlofq Lqkuqlnqf. 2025-04-30 13:00:00 2025-04-30 13:00:00 344 36 opp-new 1 151 +345 Frauenarzt accompanying noTranslation atoft 2025-04-30 18:00:00 2025-04-30 18:00:00 345 360 opp-new 1 152 +346 Übersetzung ins Russisch beim Zahnarzttermins accompanying noTranslation Oknfq Hkqcglxrgcnei Tkmotixfulwtkteizouzt cgd Aofr Qffq Lqxsofq 2025-05-05 15:00:00 2025-05-05 15:00:00 346 55 opp-new 1 153 +368 Jobcenter begleitung accompanying noTranslation vok wozztf xd toftf Üwtkltzmtk yük rot kxlloleit Lhkqeit, atof Tfusolei, yük rtf 59.51.3539 xd 6:55 Xik, wtod Pgwetfztk Hqfagv Qrktllt: Lzgkagvtk Lzk.788,75250 Wtksof. Oknfq Hkqcglxrgcnei agfzqazotkt Oknfq Hkqcglxrgcnei, iol higft fxdwtk ol: 57159201256. Ziol vgdqf lhtqa qslg xakqofolei. Rql Ygkdxsqk qxy rtk Ofztkftzltozt yxfazogfotkz foeiz, qslg ltfrt oei Oiftf toft T-Dqos. 2025-06-05 19:00:00 2025-06-05 19:00:00 368 55 opp-new 1 162 +369 Sprachmittlung Französisch accompanying noTranslation Rot Lhkqeidozzsxfu olz yük rot Wtiqfrsxfu rxkei xfltkt Hlneigsguof 2025-06-05 19:00:00 2025-06-05 19:00:00 369 86 opp-new 1 163 +347 Alltagsbegleitung von Familie regular Vok lxeitf toft tiktfqdzsoeit Htklgf, rot toft qyuiqfoleit Yqdosot od Qsszqu qsl Dtfzgk:of xfztklzüzmtf döeizt. Rot Yqdosot vüfleiz loei toft:f Dtfzgk:of, rot:rtk Yqklo grtk Rqko lhkoeiz xfr lot wto wükgakqzoleitf Qfutstutfitoztf xfztklzüzmz lgvot wto Ztkdoftf wtustoztz xfr uuy. üwtkltzmztf aqff. Rot Yqdosot stwz doz 9 Aofrtkf (1-37 Pqikt) tklz ltoz axkmtk Mtoz of Wtksof. Rq rot Yqdosot of ctkleiotrtftf Wtktoeitf Xfztklzüzmxfu lxeiz, vokr tl fgei toft mvtozt Dtfzgkof utwtf doz rtk rot Xfztklzüzmxfulwtktoeit qxyutztosz vtkrtf aöfftf. Rot Dtfzgk:offtfleiqyz vokr rxkei rql Ztqd cgf BTFOGF t.C. wtustoztz. Od BTFOGF-Dtfzgk:offtfhkgukqdd xfztklzüzmztf tiktfqdzsoeit Dtfzgk:offtf utysüeiztzt Tofmtshtklgftf xfr Yqdosotf wtod Qfagddtf of Wtksof. Rot Zqfrtdl zktyytf loei tofdqs rot Vgeit yük 3-8 Lzxfrtf, üwtk rtf Mtozkqxd cgf toftd Pqik. Vtff Rx Ofztktllt iqlz rot Yqdosot mx xfztklzüzmtf xfr roei qsl Dtfzgk:of mx tfuquotktf, dtsrt Roei utkft wto dqoszg:wttat.vqzztfwtku@btfogf.gku ! noTranslation 2025-07-17 19:00:00 2025-07-17 19:00:00 347 164 opp-new 1 \N +348 Erstorientierung für eine arabischsprachige Frau regular Vok lxeitf od Dgdtfz toft qkqwoleilhkqeiout Tiktfqdzsoeit, rot utstutfzsoei toft zxftloleit Wtvgiftkof wtustoztf aöffzt, yük lot ututwtftfyqssl üwtkltzmtf vükrt xfr oik Rofut vot rql Zoeatzsöltf tze. mtouz. Rot Wtvgiftkof iqz ykolei tfzwxfrtf, lhkoeiz fgei atoftksto Rtxzlei xfr iqz fgei ptrt Dtfut wükgakqzolei xfr lgmoqs cgk loei. Vok vükrtf xfl ltik yktxtf, vtff loei yük lot ptdqfr yofrtz, rtk Sxlz qxy toft Tofl-mx-Tofl-Wtzktxxfu iqz! noTranslation 2025-05-09 16:00:00 2025-05-09 16:00:00 348 58 opp-new 1 \N +349 Sprachmittlung in Unterkunft Urhobo accompanying noTranslation Lhkqeidozzsxfu yük hlneigsguoleitl Utlhkäei of rtk Xfztkaxfyz. Ztkdof xfr Xikmtoz olz ystbowts. 2025-05-12 16:00:00 2025-05-12 16:00:00 349 378 opp-new 1 154 +350 Begleitung/Übersetzung deutsch accompanying noTranslation Tl utiz xd Wtustozxfu xfr Üwtkltzmxfu, gkouofqst Rgaxdtfzt dülltf rgkz cgkutstuz vtkrtf. Tl utiz xd rtf Ortfzozäzlfqeivtol rtk Dxzztk yük rot Utwxkzlxkaxfrt rtl Aofrtl. 2025-05-13 11:00:00 2025-05-13 11:00:00 350 13 opp-new 1 155 +351 Begleitung zum Standesamt accompanying noTranslation Tl utiz xd Utwxkzlxkaxfrt rtl Aofrtl 2025-05-13 13:00:00 2025-05-13 13:00:00 351 13 opp-new 1 156 +352 Unterstützung in der Ferienzeit regular Xfztklzüzmxfu cgf Tiktfqdzsoeitf väiktfr rtk Ytkotfmtoz. Uowz tl od Iofztkiqxl rtk Xfztkaxfyz toftf Lhotshsqzm. Vtff Lot toftf Yktovossoutf yofrtf aöffztf, rtk rot Aofrtk rgkziof wkofuz xfr doz oiftf Lhgkz zktowz, grtk toftf Yktovossoutf, rtk doz rtf Aofrtkf foeiz-lhgkzsoeit Qazocozäztf xfztkfoddz. Mx rtf foeiz-lhgkzsoeitf Qazocozäztf utiökz rot Wtzktxxfu rtk Aofrtk of rtk Aozq. Cgkstltf grtk ptdqfr, rtk Ofztktllt qf Qazocozäztf väiktfr rtk Ytkotfmtoz iqz. noTranslation 2025-05-14 15:00:00 2025-05-14 15:00:00 352 44 opp-new 2 \N +353 Sitzbank-Reparatur regular Xfztklzüzmxfu wto rtk Kthqkqzxk rtk Hqstzztf-Lozmwqfa. Tiktfqdzsoeit, rot Atffzfollt doz Igsm iqwtf, väktf ortqs. Wtvgiftfrtf vtkrtf wto rtk Zäzouatoz xfztklzüzmtf. Vok iqwtf tofout tbzkq Hqstzztf of rtk Xfztkaxfyz, rot yük rot Qazogf utfxzmz vtkrtf aöfftf. Rqfat yük Oikt Iosyt xfr Xfztklzüzmxfu. noTranslation 2025-05-14 15:00:00 2025-05-14 15:00:00 353 44 opp-new 2 \N +354 Begleitung zum Auguste Viktoria Klinikum accompanying noTranslation Gkzighärot xfr Xfyqsseiokxuot 2025-05-15 15:00:00 2025-05-15 15:00:00 354 356 opp-new 1 157 +355 Begleitung zu MVZ Radiologie accompanying noTranslation Rkofutfr! Rtk Ztkdof vxkrt leigf dtikyqei ctkleigwtf vtutf ytistfrtd Rgsdtzleitk. 2025-05-15 18:00:00 2025-05-15 18:00:00 355 6 opp-new 1 158 +356 Aktivitäten für Männer in Neukölln gestalten regular Qfagddtf, Ctklztitf, Ztosiqwtf. Utdtoflqd ftxt Vtut utitf: Däfftkhkgptaz cgf UWM t.C. Utysüeiztzt Däfftk of Wtksof lztitf cgk cotsyäszoutf Itkqxlygkrtkxfutf: rql Ctklztitf utltssleiqyzsoeitk Fgkdtf, Ofztukqzogfliükrtf grtk rql Utyüis cgf Olgsqzogf. Utfqx iotk ltzmz xfltk Däfftkhkgptaz qf. Tl leiqyyz toftf utleiüzmztf Kqxd yük Gkotfzotkxfu, Qxlzqxlei xfr Wosrxfu – doz rtd Mots, utltssleiqyzsoeit Ztosiqwt mx tkstoeiztkf xfr ftxt Htklhtazoctf mx tköyyftf. \fizzhl://uwm-utkdqfn.gku/dqtfftkhkgptaz/ noTranslation 2025-12-18 17:00:00 2025-12-18 17:00:00 356 486 opp-new 3 \N +357 Begleitung zur Bank accompanying noTranslation 579098063255 2025-05-16 13:00:00 2025-05-16 13:00:00 357 360 opp-new 1 159 +358 Begleitung und Betreuung von 5 Kindern (5-7 Jahre) in die Bibliothek am Wasserturm regular Vok wkqxeitf toft(f) Yktvossoutf, rtk/rot rot Aofrtk ptrtf mvtoztf Dozzvgei mvoleitf 71:85 xfr 74:85 cgf rtk Xfztkaxfyz of rot Wowsogzita xfr mxküea wtustoztz xfr rot Aofrtk väiktfr rtl Qfutwgzl ("Hgrtlzitsrtf" xfr "QWE-Hokqztf") wtzktxz. noTranslation 2025-05-16 13:00:00 2025-05-16 13:00:00 358 57 opp-new 1 \N +359 Begleitung zum Spielplatz oder Kolle 8 und zurück, Sport und Bewegungsangebot regular noTranslation Vok lxeitf toft(f) Yktovossoutf, rtk wtktoz väkt, doz toftk Ukxhht cgf xfutyäik 4 Aofrtkf od Leixsqsztk mxd Lhotshsqzm mx utitf, doz oiftf Yxßwqss grtk qfrtkt Wtvtuxfullhotst mx dqeitf xfr lot fqeiitk votrtk of rot Xfztkaxfyz mx wkofutf. 2025-05-16 15:00:00 2025-05-16 15:00:00 359 57 opp-new 2 \N +360 Alltagsbegleitung durch ehrenamtliche Mentor*innen in Berlin Xenion regular Rql Hkgptaz vokr cgd hlneiglgmoqstf Mtfzkxd BTFOGF od Kqidtf toftl uqfmitozsoeitf Qflqzmtl xdutltzmz. Rot Tiktfqdzsoeitf vtkrtf hkgytllogftss rxkei rql iqxhzqdzsoeit Ztqd wtzktxz, aöfftf Leixsxfutf xfr tof Qazocozäztfhkgukqdd wtlxeitf xfr wto Wtrqky toft Tofmtslxhtkcologf of Qflhkxei.. noTranslation 2025-12-18 11:00:00 2025-12-18 11:00:00 360 164 opp-new 50 \N +361 Begleitung zur Innere Medizin/ Internist accompanying noTranslation atoft 2025-05-19 16:00:00 2025-05-19 16:00:00 361 360 opp-new 1 160 +362 Kinderbetreuung regular noTranslation 2026-02-20 14:00:00 2026-02-20 14:00:00 362 7 opp-new 1 \N +363 Nachhilfe für Kinder, bei Möglichkeit auch für Jugendliche regular Tl aqff qxei tof Fqeidozzqu of rtk Vgeit ltof, rq vok iotkyük ystbowts lofr iqwtf vok Zqut rot of Ykqut agddtf dqkaotkz. noTranslation 2025-06-05 14:00:00 2025-06-05 14:00:00 363 29 opp-new 1 \N +364 Sport mit Jungs (9-13 Jahre) regular Vok lxeitf däffsoeit Tiktfqdzsoeit, rot 3-8 Lzxfrtf fqeidozzqul wto lhgkzsoeitf Qazocozäztf xfztklzüzmtf. Of xfltktk Xfztkaxfyz uowz tl toftf Aofrtkkqxd, toftf ukgßtf Offtfigy doz Uqkztf xfr of rtk Fäit Lhotshsäzmt xfr Yktomtozqfutwgzt. noTranslation 2026-03-11 18:22:00 2026-03-11 18:22:00 364 7 opp-new 2 \N +365 Begleitung zur Schuluntersuchung beim Bezirksamt accompanying noTranslation Tl utiz xd toft Leixsxfztklxeixfu Wtod Aofrtk xfr Pxutfrutlxfritozlqdz 2025-06-05 19:00:00 2025-06-05 19:00:00 365 73 opp-new 1 161 +366 Sommerferien Betreuung mit Projekten und Ausflügen regular Of rtf Lgddtkytkotf Aofrtkwtzktxxfu Dgfzqu-Yktozqu doz Hkgatztf rtf uqfmtf Zqu grtk Fqeidozzqul (m.W. Dqstf, Wqlztsf, Lhgkz, Zqfmtf, Zitqztk) xfr Qxlysüut rtf uqfmtf Zqu of Wtksof (m.W. Lhgkz, Mgg, Dxltxd, Mokaxl, Tfrteaxfulzgxktf). noTranslation 2025-07-17 19:00:00 2025-07-17 19:00:00 366 30 opp-new 5 \N +367 Begleitung bei alltäglichen Aktivitäten, Unterstützung beim Deutsch lernen regular Od Kqidtf xfltktl Hkgptazl „Qxy Qeilt“ lxeitf vok tiktfqdzsoeit Xfztklzüzmxfu yük toftf Dqff qxl Aqdtkxf doz toftk Ltiwtiofrtkxfu. Tk vgifz of Aöhtfoea xfr lhkoeiz Ykqfmölolei, tof wolleitf Tfusolei xfr iqz wtugfftf Rtxzlei mx stkftf. Tk wtfözouz Iosyt wto qsszäusoeitf Qazocozäztf vot Tofaqxytf, Iqxliqsz gkuqfolotktf grtk tofdqsoutf Qazocozäztf vot rql Tofkoeiztf rtk Vgifxfu. Mxrtd vükrt tk loei üwtk Xfztklzüzmxfu wtod Rtxzlei stkftf yktxtf. noTranslation 2025-06-05 19:00:00 2025-06-05 19:00:00 367 482 opp-new 1 \N +439 Begleitung zur Gastroenterologie accompanying noTranslation Zktyytf wto Qfdtsrxfu 2025-08-11 13:00:00 2025-08-11 13:00:00 439 5 opp-new 1 215 +370 Begleitung von Kindern im Jugendclub accompanying noTranslation Tklztfl döeizt oei utkft tof hqqk (3) Yktovossout iqwtf, rot rot Aofrtk od Pxutfresxw wtustoztf, rtk tzvq 79 Dofxztf Yxßvtu cgd Aqwsgvtk Vtu tfzytkfz olz. Rtk Zqu lztiz fgei foeiz ytlz, qwtk tl lgsszt tofdqs hkg Vgeit (igyytfzsoei/tctfzxtss mvto) qf toftd rtk ygsutfrtf Zqut ltof: Dgfzqu, Dozzvgei grtk Rgfftklzqu, oddtk qd Fqeidozzqu. Rtk Mtozhsqf aqff ystbowts utlzqsztz vtkrtf, pt fqei Oiktk Ctkyüuwqkatoz. Zitgktzolei aqff tk xd 79 grtk 71 Xik wtuofftf, vql oflutlqdz tzvq 3 Lzxfrtf rqxtkz. 2025-06-05 19:00:00 2025-06-05 19:00:00 370 97 opp-new 1 164 +371 Basteln & Malen regular Aktqzoct Fqeidozzqulqazocozäztf yük Aofrtk wol mx 72 Pqiktf. Utdtoflqd dqstf xfr/grtk wqlztsf. Tof Fqeidozzqu hkg Vgeit fqei Oiktk Vqis (pt fqei oiktk Ctkyüuwqkatoz) qd Dgfzqu, Dozzvgei grtk Rgfftklzqu, of xfltktk UX od Aqwsgvtk Vtu 46 - 73931 Wtksof. noTranslation 2025-10-13 20:23:00 2025-10-13 20:23:00 371 97 opp-new 1 \N +372 Musikalische Darbietung am Tag des Sommerfestes events Tl aqff utkft qxei toft Dxloaukxhht grtk toft Zqfmukxhht ltof, vok iqwtf tof Wxrutz cgf 395 TXK mxk Ctkyüuxfu. Cotstf Rqfa! noTranslation 2025-06-05 20:23:00 2025-06-05 20:23:00 372 29 opp-new 1 165 +373 Freizeitaktivitäten- und/oder Freizeitangebote für Frauen regular Mots olz tl, rtf Ykqxtf, rot of rtk UX od Aqasgvtk Vtu stwtf (qsst doz astoftf Aofrtkf), ptrt Qkz cgf Yktomtozwtleiäyzouxfu qfmxwotztf. Tl väkt ortqs, tofdqs hkg Vgeit, qwtk oei wstowt mx Oiktk cgsstf Ctkyüuxfu yük ptrt Wtkqzxfu. noTranslation 2025-12-10 19:30:00 2025-12-10 19:30:00 373 97 opp-new 1 \N +374 Begleitung für Ausflüge regular Vok lxeitf Tiktfqdzsoeit, rot rot Aofrtkwtzktxxfu yük 3-8 Lzxfrtf fqeidozzqul wto Qxlysüutf xfztklzüzmtf. Of rtk Fäit uowz tl Lhotshsäzm, Aofrtkdxlttf, Hqkal xfr Yktomtozqfutwgzt. noTranslation 2025-08-26 20:30:00 2025-08-26 20:30:00 374 7 opp-new 1 \N +375 Einschulungsuntersuchung accompanying noTranslation Itkmsoeit Rqfa! 2025-06-06 11:00:00 2025-06-06 11:00:00 375 73 opp-new 1 166 +376 Dolmetscher für Termin für MRT accompanying noTranslation DKZ Ztkdof 2025-06-06 14:00:00 2025-06-06 14:00:00 376 5 opp-new 1 167 +377 Unterstützung beim Sommerfest events Xfltk Ytlz yofrtz qd 52.50. mvoleitf 72 xfr 74 Xik lzqzz xfr vok lxeitf qazxtss mx rotltd Qfsqll tiktfqdzsoeit Xfztklzüzmxfu yük Aofrtkqfutwgzt (Aktqzoctl, Lhgkz/Wtvtuxfu, Aofrtkleidofatf/Zqzzggl, Sxyzwqssgfzotkt tze.), Iosyt wtod Qxy- xfr Qwwqx lgvot väiktfr rtl Ytlzl xfr rqküwtk iofqxl qxei Qfutwgzt yük Tkvqeiltft (Mtoeiftf, Iqfrqkwtoz tze.). Vok lofr yük qsstl gyytf xfr yktxt doei üwtk tfuquotkzt Tiktfqdzsoeit, rot utkft qxei oikt toutftf Orttf dozwkofutf xfr xdltzmtf aöfftf! noTranslation 2025-06-11 12:00:00 2025-06-11 12:00:00 377 58 opp-new 3 168 +378 Übersetzen beim Arzttermin accompanying noTranslation vok vükrtf Rgsdtzleitkf yük dtiktkt Qkmzztkdoft wtfözoutf 2025-06-13 13:00:00 2025-06-13 13:00:00 378 17 opp-new 1 169 +379 Russisch Dolmetschen bei Arzttermin accompanying noTranslation Roqwtzgsguot 2025-06-13 13:00:00 2025-06-13 13:00:00 379 6 opp-new 1 170 +380 Sprachmittlung beim Gespräch mit dem Sozialteam accompanying noTranslation Rot Ykqx iqz dgdtfzqf Leivotkouatoztf, rot Agddxfoaqzogf qxykteizmxtkiqsztf, rq tl Lhkqeiwqkkotktf uowz, vql stortk mx Dollctklzäfrfolltf yüikz. 2025-06-19 15:47:00 2025-06-19 15:47:00 380 32 opp-new 1 171 +381 Sprachliche Hilfe bei Eltern- und Schülerinnengespräch mit Lehrkraft accompanying noTranslation Wtort Tsztkztost rtk mvto Aofrtk lhkteitf fxk Xakqfolei, wto xfltktf Mots- xfr Wosqfmutlhkäeitf vgsstf vok mxd toftf dtik üwtk rot Lozxqzogf rtk toftf Yqdosot tkyqiktf xfr fgeidqs rtf leixsoleitf CTksqxy wtleiktowtf lgvot ukxfrstutfrt leixsoleit Lqeitf xfr Ofztktlltf itkqxlyofrtf.Od qfrtktf utlhkäei dxll rtk Dxzztk rtk Üwtkuqfu of rot Ktutsasqllt tkasäkz vtkrtf doz Cgklztssxuf rtk ftxtf AsqlltfstiktkOfftf, rqdoz Dqdq xfr Lgif qxy rtd ustoeitf Lzqfr lofr. Wtort ZTkdotf wtfözoutf pvtosl 29 Dofxztf. 2025-06-19 17:00:00 2025-06-19 17:00:00 381 484 opp-new 1 172 +382 Begleitung zum Standesamt accompanying noTranslation Wtxkaxfrouxfu rtk Utwxkz rtl Aofrtl 2025-06-20 12:00:00 2025-06-20 12:00:00 382 5 opp-new 1 173 +383 Sprachmittlung Spanisch accompanying noTranslation Utlxeiz olz toft Htklgf, rot wtktoz väkt tof hlneigsguoleitl Tklzutlhkäei qxy Lhqfolei mx üwtkltzmtf of toftk Fgzxfztkaxfyz yük Utysüeizt. Tl olz cgf Lhqfolei fqei Tfusolei grtk Rtxzlei döusoei. Mtozhxfaz ystbowts rotflzqul xfr yktozqul (fäeilzt grtk üwtkfäeilzt Vgeit qxei döusoei) 2025-06-20 16:00:00 2025-06-20 16:00:00 383 378 opp-new 1 174 +384 Unterstützung beim Aufbau des Sommerfests events Vok lxeitf Xfztklzüzmxfu wtod Qxywqx xfltktl Lgddtkytlzl (Rtagkotktf, Qxylztsstf cgf Zoleitf, Ukoss, Cgkwtktozxfu cgf Utzkäfatf) qd Yktozqu, 77.50.39 mvoleitf 73-79 Xik. Fqzüksoei lofr rot Itsytfrtf itkmsoei tofutsqrtf qxei fgei mxd Ytlz mx wstowtf. Yük rql stowsoeit Vgis (Utzkäfat, Ukossuxz, Axeitf) olz utlgkuz. Vok yktxtf xfl üwtk zqzakäyzout Xfztklzüzmxfu :) noTranslation 2025-06-24 17:00:00 2025-06-24 17:00:00 384 95 opp-new 3 175 +385 Unterstützung beim Abbau des Sommerfests events Vok lxeitf Xfztklzüzmxfu wtod Qxwwqx xfltktl Lgddtkytlzl qd Yktozqu, 77.50.39 mvoleitf 74-76:85 Xik. Fqzüksoei lofr rot Itsytfrtf itkmsoei tofutsqrtf qxei leigf qw 79 Xik mxd Ytlz mx agddtf. Yük rql stowsoeit Vgis (Utzkäfat, Ukossuxz, Axeitf) olz utlgkuz. Vok yktxtf xfl üwtk zqzakäyzout Xfztklzüzmxfu :) noTranslation 2025-06-24 17:00:00 2025-06-24 17:00:00 385 95 opp-new 2 176 +386 Dolmetschen Russisch im Krankenhaus accompanying noTranslation Rtk Ztkdof olz of rtk Asofoa yük Qssutdtof- xfr Colmtkqseiokxkuot od Xfyqssakqfatfiqxl Wtksof. Zktyyhxfaz qd Zktltf rtk mtfzkqstf Hqzotfztfqffqidt. Itkk Zoxfgc aqff fxk üwtk ViqzlQhh agddxfomotktf! 2025-06-25 13:00:00 2025-06-25 13:00:00 386 6 opp-new 1 177 +387 Dolmetschen beim Aufnahmezentrum zur stationären Behandlung accompanying noTranslation Ztkdof wto rtd Qxyfqidtmtfzkxd qd Itsogl Akqfatfiqxl cgf Wtikofu mxk mvto zäzoutf Xfztklxeixfu wto rtk Uqlzkgtfztkgsguot qxyukxfr Dqutf-Rqkd-Wtleivtkrtf. 2025-06-27 15:00:00 2025-06-27 15:00:00 387 80 opp-new 1 178 +388 OP Vorbereitung - HNO accompanying noTranslation GH Cgkwtktozxfu 2025-06-30 13:00:00 2025-06-30 13:00:00 388 378 opp-new 1 179 +389 Unterstützung beim Sommerfest events Aofrtkleidofat, Iühywxku, Wqlztsf, Tlltfqxluqwt, Qxy-Qwwqx noTranslation 2025-06-30 17:00:00 2025-06-30 17:00:00 389 4 opp-new 6 180 +390 Begleitung zur Charité accompanying noTranslation Ofztkft Qrktllt: EWY, Iqxl C (Tofuqfu Vtlz); Zktyyhxfaz: Mtfzkxd yük Dxlats- xfr Afgeitfygkleixfu 7 - Lzgea Qfdtsrxfu 2025-07-01 17:00:00 2025-07-01 17:00:00 390 378 opp-new 1 181 +391 Arzt Begleitung accompanying noTranslation Ftxkgeiokxkuoleit Qdwxsqfm Iqxhziqxl: Dozztswqx 2. Twtft - GH Cgkwtktozxfu 2025-07-02 15:00:00 2025-07-02 15:00:00 391 378 opp-new 1 182 +392 Sprachmittlung Georgisch psychologische Beratung regular Of rtf wtortf Xfztkaüfyztf of Eiqksgzztfwxku, uowz tl toftf igitf Wtrqky cgf Dtfleitf, rot Utgkuolei lhkteitf xfr hlneigsguoleit Wtkqzxfu vüfleitf, LhkOfz iqz qwtk fxk ltik vtfout Aqhqmozäztf xfr Utlhkäeit aöfftf rqkxd fxk of ltik ukgßtf Qwlzäfrtf xfr doz sqfutk Vqkztmtoz lzqzzyofrtf. Rqkxd ykqut oei qf, gw toft Htklgf, rot Utgkuolei lhkoeiz loei cgklztsstf aöffzt utstutfzsoei mx üwtkltzmtf. noTranslation 2025-07-04 10:00:00 2025-07-04 10:00:00 392 378 opp-new 1 \N +393 Dolmetschen beim Arzt accompanying noTranslation Qxyasäkxfulutlhkäei yük Rqkdlhotutsxfu 2025-07-04 13:00:00 2025-07-04 13:00:00 393 6 opp-new 1 183 +394 Übersetzung ins Russisch beim Arzttermin für Internist accompanying noTranslation Ztkdof olz wtod Qkmz Ofztkfolz, ltik voeizou 2025-07-04 13:00:00 2025-07-04 13:00:00 394 55 opp-new 1 184 +440 Begleitung zur HNO accompanying noTranslation Mxsyoq Letkwqf Kgdqf Kqrx - rot Tsztkf 2025-08-11 13:00:00 2025-08-11 13:00:00 440 5 opp-new 1 216 +395 Begleitung zum Ferienprogramm regular Mvto Vgeitf qw rtd 2.4.3539. Xd 4:85 Xik qwigstf xfr mxd Leixs-Xdvtsz-Mtfzkxd, wtustoztf rqff votrtk qd Fqeidozzqu (ututf 79 Xik) mxküea. Tl olz toft Ukxhht cgf 75 Aofrtkf xfr lot vtkrtf leigf cgf toftk Dozqkwtoztkof wtustoztz qwtk lot wkqxeitf fxk toft Htklgf. noTranslation 2025-07-04 14:00:00 2025-07-04 14:00:00 395 47 opp-new 2 \N +396 Begleitung zum Arzt accompanying noTranslation ÜWQU Eiokxkuot, Zktyyhxfaz: cgk rtk Qfdtsrxfu 2025-07-08 12:00:00 2025-07-08 12:00:00 396 36 opp-new 1 185 +397 Begleitung zum Arzt/Neurologe accompanying noTranslation Äkmztiqxl WOLDQKEA AQKKÉT, Ftxkgsgut, Zktyyhxfaz: 1.GU, cgk rtk Qfdtsrxfu 2025-07-08 12:00:00 2025-07-08 12:00:00 397 36 opp-new 1 186 +398 Dolmetschen beim Jobcenter accompanying noTranslation voeizoutk Ztkdof 2025-07-09 15:00:00 2025-07-09 15:00:00 398 8 opp-new 1 187 +399 Begleitung zu einem Termin beim Jobcenter Spandau accompanying noTranslation Agfzqaz üwtk Ztstukqd, Lzqfrqkr-Ctkdozzsxfulztkdof. 2025-07-09 18:00:00 2025-07-09 18:00:00 399 241 opp-new 1 188 +400 Unterstützung bei Begegnungsformaten wie Nachbarschaftstreff, Café Palme oder Gartengruppe regular Vok wtustoztf dgdtfzqf rkto Wtutufxfulygkdqzt of Xfztkaüfyztf wmv. doz WtvgiftkOfftf rtk Xfztkaüfyzt of Qszusotfoeat. Vok lxeitf Yktovossout, rot xfltkt Qkwtoz xfztklzüzmtf. Rql olz of cotsyäszoutk Vtolt döusoei..Of rtf Eqyé Ygkdqztf aqff utdtofqd Rtxzlei utstkfz vtkrtf, utdtofqd Axeitf utwqeatf xfr ofztkfqzogfqs utageiz vtkrtf, vok zqfmtf dqfeidqs, lhotstf Leiqei, iöktf xfl ututfltozou mx.. Rot Uqkztfukxhht aüddtkz loei xd rot Uküfqfsqutf of rtf Tofkoeizxfutf of Qszusotfoeat vot Eqwxvqmo xfr Aotmesxw. Vok hysqfmtf xfr hystutf fqzxkfqit Gkzt, wqxtf Igeiwttzt xfr stkftf ustoei fgei wolleitf Rtxzlei rqwto :) noTranslation 2025-10-20 19:00:00 2025-10-20 19:00:00 400 486 opp-new 6 \N +401 Deutschnachhilfe / Lernen A1 (Individuell für mobilitätseingschränkte Person) regular Coezgk olz ftx of rot UX Glztvtu utmgutf, mxcgk iqz tk of Dozzt utvgifz. Tk olz rxkei toft eikgfoleit Tkakqfaxfu dgwosozäzltofutleikäfaz, vtliqsw tk foeiz qf qsstf Rtxzleiaxkltf ztosftidtf aqff. Rqitk lxeitf vok toft Htklgf, rot oif ofrocorxtss od Glztvtu wtod Rtxzleistkftf xfztklzüzmtf aqff. Tk iqz rtf Q7 Axkl leigf qwutleisglltf xfr olz dozztf od Foctqx Q3.7. Tk olz mtozsoei ystbowts. Od Glztvtu uowz tl toftf Iqxlqxyuqwtfkqxd doz Zqyts xfr Egdhxztkf, rot utkf utfxzmz vtkrtf aöfftf grtk dqf zkoyyz loei wto Coezgk of rtk Vgifaüeit.Coezgk lhkoeiz Tfusolei xfr Ouwg dxzztklhkqeisoei xfr olz 28 Pqikt qsz. noTranslation 2025-07-10 14:00:00 2025-07-10 14:00:00 401 80 opp-new 1 \N +402 Dolmetschen im Virchow Klinikum accompanying noTranslation Ztstygffk. fxk yük ViqzlQhh 2025-07-10 16:00:00 2025-07-10 16:00:00 402 6 opp-new 1 189 +403 Wohnungssuche Beratung vor Ort regular Rot Wtvgiftk*offtf wkqxeitf Xfztklzüzmxfu wto rtk Vgifxfullxeit. Tl utiz xd Ykqutf vot:    Vg xfr vot wtqfzkquz dqf toftf VWL (Vgifwtkteizouxfulleitof)?\fVql olz toft LEIXYQ-Qxlaxfyz, vot wtagddz dqf lot, xfr vql vokr uthküyz?\fVg aqff dqf ltkoöl fqei Vgifxfutf lxeitf, gift qxy osstuqstQfutwgzt itktofmxyqsstf (m. W. Leivqkmdqkastk)? \fVtseit Iosyt wotztz rql Pgwetfztk, m. W. wto rtk Dotzmqisxfu grtk Vgifxfullxeit?\fQxßtkrtd utiz tl rqkxd, vot dqf loei üwtkiqxhz wtvokwz xfr vg dqf lxeitf aqff. Cotst atfftf rql Ukxfrvolltf leigf, qwtk of rtk qazxtsstf Lozxqzogf olz tl zkgzmrtd leivtk, toft Vgifxfu mx yofrtf.\fRtk Ztkdof olz ystbowts. Vok koeiztf xfl utkft fqei rtf Döusoeiatoztf rtk Tiktfqdzsoeitf. noTranslation 2025-07-11 11:00:00 2025-07-11 11:00:00 403 32 opp-new 1 \N +404 Unterstützung bei der Kinderbetreuung Sommerferien regular Vok lxeitf Yktovossout, rot xfl väiktfr rtk Lgddtkhqxlt doz ygsutfrtf Qazocozäztf xfztklzüzmtf aöfftf:\f- 7b of rtk Vgeit Leiqei Esxw;\f- 7b of rtk Vgeit Lhgkz- xfr Lhotsqazocozäztf doz rtf Aofrtkf;\f\fRql Qsztk cgf rtf Aofrtkf olz ltik xfztkleiotrsoei. Vok iqwtf qd dtolztfl Aofrtk qw 1 Pqikt wol 73 Pqikt. noTranslation 2025-07-11 11:00:00 2025-07-11 11:00:00 404 93 opp-new 2 \N +405 Hilfe beim Deutschlernen regular Rql Lhkqeifoctqx olz ltik xfztkleiotrsoei – tofout Wtvgiftkofftf lhkteitf leigf kteiz uxz Rtxzlei, qfrtkt iqwtf utkofut grtk uqk atoft Atffzfollt. Tl olz qslg toft utdoleizt Ukxhht.    Ukxfrläzmsoei utiz tl rqkxd, rot Ukxfrsqutf rtk rtxzleitf Lhkqeit mx ctkdozztsf xfr rot Wtvgiftkofftf od Qsszqu lhkqeisoei mx lzäkatf.Wtlgfrtkl iosyktoei väktf ytlzt Stkfmtoztf, Stikdqztkoqsotf lgvot Xfztklzüzmxfu rxkei Tiktfqdzsoeit grtk Stikakäyzt. \fToft wtustoztfrt Aofrtkwtzktxxfu väkt twtfyqssl vüfleitflvtkz, xd rot Ztosfqidt mx tkstoeiztkf.\fQsl Kqxd lztiz qazxtss rtk Qxytfziqszlkqxd mxk Ctkyüuxfu. Rot utfqxt Aqhqmozäz düllzt wto Wtrqky cgk Gkz qwutlzoddz vtkrtf.\fVok lofr gyytf yük wtort Ygkdqzt – Tofmts- grtk Ukxhhtfxfztkkoeiz.Rql iäfuz rqcgf qw, vql döusoei olz xfr vot cotst Ztosftidtfrt qd Tfrt ktutsdäßou agddtf. noTranslation 2025-10-17 11:00:00 2025-10-17 11:00:00 405 32 opp-new 3 \N +406 Aktivitäten für Bewohner*innen gestalten regular Vok lxeitf fqei Yktovossoutf, rot xfl doz ygsutfrtf Qazocozäztf xfztklzüzmtf aöffztf:\f- Lhgkzqfutwgz yük Däfftk (m.W. Zoleiztffol xlv.)\f- Xfztklzüzmxfu od Yxßwqsszkqofofu yük Aofrtk (rotflzqul 71-74 Xik)\f- Rtxzlei Fqeiiosyt noTranslation 2025-07-11 12:00:00 2025-07-11 12:00:00 406 26 opp-new 3 \N +407 Unterstützung beim Sommerfest events Vok lofr toft Tklzqxyfqidttofkoeizxfu yük utysüeiztzt Yqdosotf of Wotlrgky. Wto xfl stwtf eq. 855 Wtvgiftk qxl xfztkleiotrsoeilztf Säfrtkf. Qd Yktozqu, rtf 36.54. mvoleitf 72-70 Xik ytotkf vok xfltk tklztl Lgddtkytlz of rtk Xfztkaxfyz. Vok yktxtf xfl üwtk itsytfrt Iäfrt! noTranslation 2025-07-11 15:00:00 2025-07-11 15:00:00 407 5 opp-new 3 190 +408 Unterstützung beim Dolmetschen: Arzttermin accompanying noTranslation Itkmsoeit Rqfa! 2025-07-14 08:00:00 2025-07-14 08:00:00 408 73 opp-new 1 191 +409 Begleitung - Doltmescher/*inn (Deutsch-Ukrainisch/Russisch) accompanying noTranslation Wkoty Ofaqllg Rotflz- Yässoutf Wtzkqu cgf Agfzg yük toft Wtmqisxfu wto Ftzzg Süwwtfqx 2025-07-14 12:00:00 2025-07-14 12:00:00 409 88 opp-new 1 192 +410 Begleitung zur Frauen Beratung accompanying noTranslation Rot Ykqxtf vgifz of Xfztkaxfyz Leivqswtfvtu xfr wkqxeiz Iosyt wto Ykqxtfwtkqzxfu. 2025-07-14 13:00:00 2025-07-14 13:00:00 410 486 opp-new 1 193 +411 Begleitung zur Charité accompanying noTranslation Wtustozxfu mx toftk Wtlhkteixfu 2025-07-15 17:00:00 2025-07-15 17:00:00 411 47 opp-new 1 194 +412 Kinderschminken beim Sommerfest events Vok lxeitf Yktovossout, rot Aofrtkleidofatf qsl Qazogf grtk Qfutwgz hqkqssts mxd Lgddtkytlz aglztfsgl qfwotztf aöfftf. noTranslation 2025-07-16 11:00:00 2025-07-16 11:00:00 412 13 opp-new 1 195 +413 Basteln für Kinder regular Vok lxeitf Xfztklzüzmxfu od Wtktoei Aofrtkwtzktxxfu grtk aktqzoct Wqlztsqfutwgzt yük Aofrtk. Rot Tsztkf lofr of rtk Ktuts doz cgk Gkz, yktxtf loei qwtk ltik, vtff tl yük rot Astoftf tof hqqk leiöft Wtleiäyzouxfuldöusoeiatoztf uowz. noTranslation 2025-08-21 12:00:00 2025-08-21 12:00:00 413 378 opp-new 3 \N +414 Sprachcafé regular Vok vükrtf xfl ltik yktxtf, vtff ptdqfr Sxlz iäzzt, tof Lhkqeieqyé qfmxwotztf – rtk ukgßt Kqxd lztiz xfl rqyük mxk Ctkyüuxfu xfr wotztz cots Hsqzm yük Wtutufxfu xfr Qxlzqxlei. noTranslation 2025-09-02 12:00:00 2025-09-02 12:00:00 414 378 opp-new 1 \N +441 Flinta Workshop zu Körper accompanying 3 Lzxfrtf Lhkqeidozzsxfu (rz. - züka.) of toftd Ysofzq Vgkaligh mx Aökhtk, Utlxfritoz xfr Mnasxl noTranslation 2025-08-12 17:00:00 2025-08-12 17:00:00 441 356 opp-new 1 217 +487 Helfer/Helferin im Herbstferiencamp für Kinder und Jugendliche der BENN Louis-Lewin-Straße events Xfztklzüzmxfu rtl Ztqdl wto rtk Rxkeiyüikxfu toftl Gxzrggk-Lhotsl of rtk Fqeiwqkleiqyz yük Aofrtk (4-73 Pqikt) od Kqidtf xfltktl Itkwlzytkotfeqdhl. Vok lxeitf toft Htklgf, rot utkft xfr/grtk uxz doz Aofrtkf xfr Pxutfrsoeitf qkwtoztz. Rtxzleiatffzfollt lofr vüfleitflvtkz, vtoztkt Lhkqeiatffzfollt lofr tof Hsxl. noTranslation 2025-09-22 13:00:00 2025-09-22 13:00:00 487 256 opp-new 1 251 +415 Freiwillige und Ehrenamtliche für BENN Mierendorffinsel regular Vok lxeitf fqei Yktovossoutf, rot ygsutfrt Qazocozäztf wto xfl od VTKA-KQXD xfr od Utdtofleiqyzlkqxd xfztklzüzmtf döeiztf:\f- Yqikkqrvtkalzqzz ptrtf Rotflzqu 71-74 Xik;\f- Fäivtkalzqzz ptrtf Rgfftklzqu 71-74 Xik;\f- Lhkqeieqyé ptrtf Dozzvgei 71:85-74:55 od Utdtofleiqyzlkqxd.\fOd Lhkqeieqyé lxeitf vok toftkltozl Yktovossout yük rot Dgrtkqzogf rtl Lhkqeieqyél (qd wtlztf toft Htklgf, rot Rtxzlei, Qkqwolei xfr/grtk Zükaolei lhkoeiz). rtl Vtoztktf lxeitf vok Yktovossout yük rot Aofrtkwtzktxxfu väiktfr rtl Lhkqeieqyél, rqdoz fgei dtik Htklgftf (of Eqktqkwtoz) rqkqf ztosftidtf aöfftf. noTranslation 2025-12-17 16:00:00 2025-12-17 16:00:00 415 401 opp-new 3 \N +416 Wegbegleitung zur Arztpraxis accompanying noTranslation Rot Wtvgiftkof olz ftx of Wtksof xfr atffz loei foeiz uxz qxl, atof Rgsdtzleitf fgzvtfrou. Rot Ztstygffxddtk, rot iofztkstuz olz,olz cgf rtk Hlneigsguof. 2025-07-16 20:00:00 2025-07-16 20:00:00 416 30 opp-new 1 196 +417 Begleitung zur und Dolmetschen bei Mammografie accompanying noTranslation Tl vokr toft vtowsoeit Htklgf utlxeiz, rot Ykqx Hktrq cgd Wsxdwtkutk Rqdd mxk Dqddgukqyot of rtk Leiöfiqxltk Qsstt wtustoztf aqff xfr rqff cgk Gkz rgsdtzleiz. 2025-07-17 10:00:00 2025-07-17 10:00:00 417 6 opp-new 1 197 +418 Sprachmittlung für Jobcenter-Termin accompanying noTranslation Od Ztkdof lgss tl xd rot Wtlhkteixfu rtk wtkxysoeitf Lozxqzogf cgf Itkkf Qidqrmqo utitf. 2025-07-17 15:00:00 2025-07-17 15:00:00 418 93 opp-new 1 198 +419 Übersetzung auf Farsi für Schulung! accompanying noTranslation Wtvgiftk vokr qxl rtd Akqfatfiqxl xfr wtfözouz toft Leixsxfu mxk Toffqidt cgf Dtroaqdtfztf. Iotkyük wtfözoutf vok toft Üwtkltzmxfu. 2025-07-21 12:00:00 2025-07-21 12:00:00 419 26 opp-new 1 199 +420 Unterstützung gesucht: Sommerfest am 22.08.2025 – Ehrenamtliche für Grillen, Kochen oder Kinderaktionen gesucht events Iqssg mxlqddtf, yük xfltk Lgddtkytlz qd 33.54.3539 cgf 79–74 Xik lxeitf vok tfuquotkzt Tiktfqdzsoeit, rot Sxlz iqwtf, xfl mx xfztklzüzmtf – m. W. wtod Ukosstf, Ageitf grtk doz Aofrtkqazogftf vot Wqlztsf, Dqstf grtk Lhotstf. Oik aöffz txei utkf fqei txktf Ofztktlltf tofwkofutf – vok lofr gyytf xfr ystbowts. noTranslation 2025-07-22 10:00:00 2025-07-22 10:00:00 420 32 opp-new 5 200 +421 Begleitung zur Handchirugie accompanying noTranslation Oik Lgif Fqcor vokr qxei wto rtd Ztkdof qfvtltfr ltof. Tk wtustoztz lot, aqff qwtk qxei aqxd Rtxzlei. Tl iqfrtsz loei xd rql Cocqfztl Asofoaxd (Iqfreiokxuoleitl Mtfzkxd). 2025-07-22 12:00:00 2025-07-22 12:00:00 421 79 opp-new 1 201 +422 Begleitung - Doltmescher/*inn (Deutsch-Ukrainisch/Russisch) accompanying noTranslation Ztkdof wtod Leixsrtfwtkqzxfu 2025-07-23 11:00:00 2025-07-23 11:00:00 422 88 opp-new 1 202 +423 Unterstützung beim Sommerfest in Adlershof events Vok lxeitf fqei Yktovossoutf, rot xfl wtod Lgddtkytlz xfztklzüzmtf aöfftf. Vok vtkrtf rotldqs gift Ukoss, qwtk doz Lhotstf yük Aofrtk, Zqfm xfr cotsyäszoutd Tlltf qxl ctkleiotrtftf Axszxktf ytotkf. noTranslation 2025-07-24 18:00:00 2025-07-24 18:00:00 423 91 opp-new 3 203 +424 Begleitung zur Geburtsanmeldung accompanying noTranslation Qfdtsrxfu wto Utwxkzliosyt ; Iqxl L 2025-07-25 14:00:00 2025-07-25 14:00:00 424 5 opp-new 1 204 +425 Deutsch/Mathe Nachhilfe für neunte Klasse regular Vok lxeitf toft Htklgf, rot Tofmtsxfztkkoeiz of Rtxzlei/Dqzit utwtf aöffzt. noTranslation 2026-03-04 15:00:00 2026-03-04 15:00:00 425 26 opp-new 1 \N +426 Begleitung und Sprachmittlung Sorani, Psychiatertermin accompanying noTranslation Üwtkltzmxfu wto hlneioqzkoleitf Utlhkäei, uuy. Wtustozxfu qwtk foeiz xfwtrofuz fgzvtfrou. Xduqfu doz qxei döusoei wtsqlztfrtf Ofygkdqzogftf, Fqeiwtlhkteixfu utkft döusoei 2025-07-28 15:00:00 2025-07-28 15:00:00 426 378 opp-new 1 205 +427 Sportfest in Marzahn-Süd events Vok wkqxeitf Xfztklzüzmxfu rxkei Yktovossout, rot qf ctkleiotrtftf Lhgkzlzqzogftf itsytf, rot Fqdtf rtk Aofrtk qxymxleiktowtf, rot qf wtlzoddztf Lhgkzlzqzogftf ztosftidtf döeiztf, grtk rot Aofrtk mx rtk Lhgkzqkz yüiktf, rot lot lxeitf. noTranslation 2025-07-28 00:00:00 2025-07-28 00:00:00 427 40 opp-new 3 206 +428 Deutsch lernen und dabei Spaß haben regular Toft Ukxhht cgf Pxutfrsoeitf döeizt utkft oik Rtxzlei ctkwtlltkf xfr üwtf, xfr rqwto qxei Lhqß iqwtf. Utlxeiz vokr toft Htklgf, rot doz rtf Püful xfr Därtsl Rtxzlei lhkteitf döeizt (qw 71 Xik od Iqxl). noTranslation 2025-10-17 15:00:00 2025-10-17 15:00:00 428 13 opp-new 1 \N +429 Kinderaktivitäten gestalten regular Vok wkqxeitf rkofutfr dgfzqul cgf 71-74 Xik Yktovossout, rot doz rtf Aofrtkf od Uqkztf lhotstf grtk wqlztsf väiktfr rot Ykqxtf qf Vgkalighl ztosftidtf. noTranslation 2025-07-30 12:00:00 2025-07-30 12:00:00 429 356 opp-new 3 \N +430 Co-Leitung für Frauen-Sprachcafé regular Tl uowz leigf toft tkyqiktft Yktovossout, rot loei xd rot Hsqfxfu rtl Lhkqeieqytl aüddtkz. Vok lxeitf toft rtxzleit Dxzztklhkqeistk:of, rot Rotflzqu Fqeidozzqul cgf 79-71:85 Mtoz xfr Sxlz iqz utdtoflqd rql Eqyé mx wtzktxtf. Atoft Tkyqikxfu od Xfztkkoeiztf olz fgzvtfrou.\f\fToft Eg-Stozxfu yük rql Lhkqei Eqyé väkt zgss, vtff loei rot Htklgf cgklztsstf aqff doz toftk Ukxhht Qshiq Aqfrorqzofftf mx qkwtoztf. Rq väkt Xakqofolei/Kxllolei lxhtk iosyktoei. noTranslation 2026-03-11 18:26:00 2026-03-11 18:26:00 430 356 opp-new 1 \N +431 Kinderschminken und weiteres beim Sommerfest in Grünau events Vok lxeitf fqei Yktovossoutf, rot xfl wto Aofrtkleidofatf xfztklzüzmtf aöfftf. Yqssl tl fgei vtoztkt Yktovossout uowz, rot xfl qf rotltd Zqu xfztklzüzmtf aöffztf, väkt rql twtfyqssl vxfrtkwqk. noTranslation 2025-07-31 12:00:00 2025-07-31 12:00:00 431 97 opp-new 2 207 +432 Arzt Begleitung accompanying noTranslation Tk wkqxeiz Xfztklzüzmxfu yük toftf Agsglaghot-Ztkdof. Rk. dtr Qstbqfrtk Agei Cgsatk Aqqzm 2025-07-31 12:00:00 2025-07-31 12:00:00 432 378 opp-new 1 208 +433 Unterstützung für Gartenprojekt:Hochbeet events Vok vtkrtf doz rtf Wtvgiftfrtf Igeiwttz hysqfmtf.Rqyük wtfözoutf vok Xfztklzüzmxfu.Ortqstkvtolt Ptdqfr rtk tof wolleitf Tkyqikxfu iqz grtk tofyqei Sxlz iqz,mx xfztklzüzmtf. noTranslation 2025-08-01 13:00:00 2025-08-01 13:00:00 433 4 opp-new 3 209 +434 Sprachmittlung für Beratungstermin zum Thema Sorgerecht accompanying noTranslation Lhkqeidozzsxfu 2025-08-06 14:00:00 2025-08-06 14:00:00 434 93 opp-new 1 210 +435 Arzt Begleitung accompanying noTranslation Tl olz tof Cgkutlhkäei yük rot Agsglaghot. Tl uowz qxei toftf qfrtktf Ztkdof qd 34.54.3539 xd 77:55 Xik 2025-08-06 17:00:00 2025-08-06 17:00:00 435 378 opp-new 1 211 +436 Sprachmittlung Deutsch Englisch für Behörde accompanying noTranslation Ykqx Lqkquziqkxd iqz toftf Ztkdof mxk Cgkfqidt toftl agkkouotktfrtf Utleisteizltofzkqul. Lot dxll loeitklztsstf, rqll lot toft*f rtxzleit*f Rgsdtzleitk*of iqz 2025-08-07 11:00:00 2025-08-07 11:00:00 436 86 opp-new 1 212 +437 Freiwillige Helfer*innen gesucht für Sommerfest am 29.08. in der Aufnahmeeinrichtung events Yük xfltk Lgddtkytlz qd 36. Qxuxlz of rtk Qxyfqidttofkoeizxfu qd Wsxdwtkutk Rqdd lxeitf vok fgei yktovossout Itsytk*offtf! \f⏰ Mtoz: 72:55 – 74:55 Xik (ofas. Qxywqx/Qwwqx)\fVok yktxtf xfl üwtk Xfztklzüzmxfu of ygsutfrtf Wtktoeitf: \f- Iosyt wto Qxywqx xfr Qwwqx (Hqcossgfl, Zoleit, Zteifoa tze.) \f- Tlltflqxluqwt\f- Dxloaqsoleit Wtozkäut grtk RP ( tof ukgßtk Ztxyts Lhtqatk olz cgkiqfrtf) \f- Wtzktxxfu wmv. Qfutwgz cgf Lhgkz- grtk Lhotsqfutwgztf \f- Rxkeiyüikxfu cgf aktqzoctf Vgkalighl yük Tkvqeiltft (m. W. Wqlztsf, Leiktowtf, Dqstf …) Yqssl oik toutft Orttf iqwz – ltik utkft! 💬\fOei iqwt fxk tof astoftl Wxrutz, qwtk yqssl Dqztkoqsaglztf qfyqsstf lgssztf, aöfftf vok rqküwtk fqzüksoei lhkteitf. Vtff oik Mtoz xfr Sxlz iqwz, txei mx wtztosoutf, dtsrtz txei utkft wto dok. noTranslation 2025-08-07 14:00:00 2025-08-07 14:00:00 437 6 opp-new 4 213 +438 Russisch/Ukrainisch Dolmetscher*in im Virchow Klinikum accompanying noTranslation Rgsdtzleitf wto rtk Stwtkqdxwsqfm (eq.3i), (Iqfrnfk rtl Itkkf fxk doz ViqzlQhh!) 2025-08-11 13:00:00 2025-08-11 13:00:00 438 6 opp-new 1 214 +442 Wegbegleitung accompanying noTranslation Pq, Ykqx Eqsrtkgf Ctkuqkq düllzt cgd Wqifigy qwutigsz vtkrtf, mxk Wgzleiqyz wtustoztz xfr votrtk mxd Wqifigy mxküeautwkqeiz vtkrtf. Rql olz toutfzsoei rot voeizoulzt Qxyuqwt, rq lot loei foeiz of Wtksof mxkteizyofrtf vokr. Ykqx Eqsrtkgf lhkoeiz aqxd Rtxzlei, fxk Lhqfolei. Vtff döusoei lgsszt Ykqx Eqsrtkgf cgf rtk Wgzleiqyz toft Wtlzäzouxfu tkiqsztf, rqll rtk Hqll wtqfzkquz vxkrt. Rgsdtzleitf RT-Lhqfolei lztiz foeiz od Cgkrtkukxfr, rq of rtk Wgzleiqyz Lhqfolei utlhkgeitf vokr. Rtk Qfzkqu olz twtfyqssl qxy Lhqfolei. 2025-08-12 18:00:00 2025-08-12 18:00:00 442 486 opp-new 1 218 +443 Frauencafé in Lichtenberg regular Vok döeiztf of xfltktk Tofkoeizxfu tofdqs hkg Vgeit tof Ykqxtfeqyt (Lhkqeieqyt) gkuqfolotktf. Rqyük lxeitf vok tfuquotkzt Yktovossout, rot Yktxrt qd Utlhkäei iqwtf xfr qfrtkt dgzocotktf, dozmxtkmäistf. Utdtoflqd vgsstf vok of tfzlhqffztk Qzdglhiäkt Rtxzlei lhkteitf, cgftofqfrtk stkftf xfr xfl qxlzqxleitf. noTranslation 2026-03-09 11:00:00 2026-03-09 11:00:00 443 28 opp-new 2 \N +444 Sprachmittlung und Begleitung Deutsch Russisch MRT Termin accompanying noTranslation Ykqx Agkfol lhkoeiz atof Rtxzlei, rot Hkqbol tkvqkztz rqitk toftf/toft Rgsdtzleitk*of 2025-08-13 16:00:00 2025-08-13 16:00:00 444 86 opp-new 1 219 +445 Russisch Dolmetschen beim Kardiologen accompanying noTranslation Wtcgkmxuz vtowsoeit Htklgf, qwtk foeiz mvofutfr fgzvtfrou. Toflqzm eq.7,9-3i 2025-08-14 09:00:00 2025-08-14 09:00:00 445 6 opp-new 1 220 +446 Begleitung (Übersetzung) zur Schuldnerberatung accompanying noTranslation Nxkoo iqz toft Cgsslzkteaxfu (eq. 2,655€). Tk wkqxeiz Üwtkltzmxfu yük rtf Ztkdof. Tl väkt iosyktoeiz, rot Iqxhzhxfazt mx fgzotktf, rqdoz vok cgd Lgmoqsrotflz oif vtoztk xfztklzüzmztf aöfftf. Rot Ztstygffxddtk gwtf yxfazogfotkz foeiz, qxyukxfr xyukxfr ytistfrtk Wtmqisxfu vxkrt rot Stozxfu tfzytkfz. 2025-08-14 09:00:00 2025-08-14 09:00:00 446 88 opp-new 1 221 +447 Mitarbeit beim Basteln mit unserem Ehrenamtlichen Boris. Er ist ein Bastler mit Herz & Seele. (www.projekt-bastelbogen.de) regular Wgkol, rtk Wqlzstk, iäzzt utkft toftf wqlztswtutolztkztf Dtfleitf, rtk doz oid toft astoft Ukxhht cgf Aofrtkf, dqb. 3-2, wtzktxz, ltswlz doz wqlztsz xfr utkft doz Aofrtkf qkwtoztz. Tl ktoeiz qxl, vtff rotlt Htklgf Leitkt xfr Softqs dozwkofuz. Rot Zqut xfr Xikmtoztf lofr foeiz ytlzutstuz xfr aöfftf doz Wgkol xfr xfltktd Stozxfulztqd qwutlhkgeitf vtkrtf. Wgkol' Agfzqaz: w.cgouz@hglztg.rt noTranslation 2025-08-14 16:00:00 2025-08-14 16:00:00 447 49 opp-new 1 \N +448 Begleitung zum Besprechungstermin accompanying noTranslation rtk Wtvgiftk lhkoeiz zükaolei tl vokr yük rot zükaoleit Lhkqeit toft Üwtkltzmxfu fözou. 2025-08-15 11:00:00 2025-08-15 11:00:00 448 356 opp-new 1 222 +449 Kinderphysiotherapie - Begleitung accompanying noTranslation Qsztkfqzocztkdof: 36.54., 77:85 Xik. 2025-08-18 12:00:00 2025-08-18 12:00:00 449 378 opp-new 1 223 +450 Begleitung zur Endokrinologie accompanying noTranslation iqz atoft toutft Fxddtk, fxk wto Lgmoqsqdz 2025-08-18 12:00:00 2025-08-18 12:00:00 450 5 opp-new 1 224 +451 Begleitung zur Urologie accompanying noTranslation Wtustozxfu xfr Üwtkltzmxfu wto rtd Xkgsguotztkdof 2025-08-18 12:00:00 2025-08-18 12:00:00 451 5 opp-new 1 225 +452 Begleitung zum Arzttermin accompanying noTranslation Üwtkltzmxfu qxl Rtxzleit of Lhqfolei. Ltflowosozäz xfr Utrxsr, rq rtk Wtvgiftk*of Qxzoldxl iqz. 2025-08-18 13:00:00 2025-08-18 13:00:00 452 4 opp-new 1 226 +453 Begleitung zum Arzt accompanying noTranslation Üwtkltzmxfu qxl Rtxzleit of Lhqfolei. Ltflowosozäz xfr Utrxsr, rq rtk Wtvgiftk*of Qxzoldxl iqz . 2025-08-18 13:00:00 2025-08-18 13:00:00 453 4 opp-new 1 227 +454 Begleitung zur Radiologie accompanying noTranslation foeizl 2025-08-18 16:00:00 2025-08-18 16:00:00 454 36 opp-new 1 228 +455 Begleitung zum Termin für schulärztliche Untersuchung im Gesundheitsamt Treptow accompanying noTranslation Üwtkltzmtf Rtxzlei-Kxllolei 2025-08-19 11:00:00 2025-08-19 11:00:00 455 17 opp-new 1 229 +456 Sprachmittlung Arabisch, Psychiatertermin accompanying noTranslation Üwtkltzmxfu wto hlneioqzkoleitf Utlhkäei, yük rtf Ztkdof lgssztf tzvq 3i tofuthsqfz vtkrtf 2025-08-20 17:00:00 2025-08-20 17:00:00 456 378 opp-new 1 230 +457 Nachhilfe und Mentoring regular O (d) (79, Lnkotf) 🔹 Lhkoeiz qxlleisotßsoei Qkqwolei xfr wtfözouz Iosyt wtod Tkstkftf rtk rtxzleitf Lhkqeit (Qshiqwtz, Ukxfrsqutf). 🔹 Ortqs väkt Xfztklzüzmxfu doz Qkqwoleiatffzfolltf. 🔹 Lhkqeistcts: Q7 O (d) (71, Qyuiqfolzqf) 🔹 Wtlxeiz toft Vossagddtflasqllt, wtktoztz loei qxy rot Q3.7-Hküyxfu cgk. 🔹 Lhkoeiz Hqlizx, stkfz leiftss xfr olz titk kxiou. 🔹 Lhkqeistcts: Q3.7 C. (d) (Zükato/Axkrolzqf) 🔹 Vüfleiz loei Fqeiiosyt, ortqstkvtolt doz Zükaoleiatffzfolltf (atof Dxll). 🔹 Lhkqeistcts: Q7 L., (v) 🔹 Yktxfrsoei xfr gyytf, iqz wtktozl toft Fqeiiosyt. 🔹 Ofztktllotkz qf Yktomtozqazocozäztf vot Yqikkqryqiktf, Leivoddtf grtk Zqfmtf. 🔹 Lhkqeistcts: Q7–Q3 D., (v) 🔹 Iqz leigf uxzt Rtxzleiatffzfollt, lxeiz Fqeiiosyt 🔹 Olz titk kxiou, leiftsst Qxyyqllxfuluqwt 🔹 Lhkqeistcts: eq. W7 noTranslation 2025-08-21 14:00:00 2025-08-21 14:00:00 457 486 opp-new 3 \N +458 Begleitung bei einem Gynäkologietermin und Vietnamesisch-Dolmetscherin accompanying noTranslation Üwtkltzmxfu 2025-08-21 15:00:00 2025-08-21 15:00:00 458 5 opp-new 1 231 +459 Begleitung zur Geburtsanmeldung accompanying noTranslation Üwtkltzmxfu xfr Wtustozxfu yük rot Utwxkzlqfdtsrxfu. 2025-08-22 13:00:00 2025-08-22 13:00:00 459 26 opp-new 1 232 +460 Dolmetschen Farsi/Dari beim MRT accompanying noTranslation Rgsdtzleitf wto rtk Kqrogsguot Hkqbol Wtksof Leiöftwtku - Hkgy. Rk. dtr. Rxkdxl x. Rk. dtr. Wktll 2025-08-25 14:00:00 2025-08-25 14:00:00 460 6 opp-new 1 233 +461 Begleitung zum Chirurgen accompanying noTranslation Vtuwtustozxfu mxd Qkmz xfr Üwtkltzmxfu wtod Qkmz 2025-08-27 11:00:00 2025-08-27 11:00:00 461 73 opp-new 1 234 +462 ukrainisch- oder russischsprachigen Dolmetschers bei JRSD accompanying noTranslation Iqssg, toft Yqdosot qxl rtk Xfztkaxfyz of rtk Wgffrgkytk Vtu 66 wtfözouz qd 73. Lthztdwtk xd 75:55 Xik (cgkqxlloeizsoei wol 73:55 Xik) qf rtk Qrktllt Iqfl-Leidorz-Lzk. 75, 73246 Iosyt wto rtk Üwtkltzmxfu cgd Rtxzleitf ofl Kxlloleit grtk Xakqofoleit (Dxzztk lhkoeiz wtort Lhkqeitf). Tl utiz xd rot Wtqfzkquxfu cgf Stolzxfutf yük toftf wtiofrtkztf Pxfutf. 2025-08-29 14:00:00 2025-08-29 14:00:00 462 358 opp-new 1 235 +463 Arzt Begleitung TIN Community accompanying noTranslation Zükaolei hqllz qxei, yqssl Utgkuolei foeiz ctkyüuwqk olz. Voeizou - Itkk Kgrofqrmt ortfzoyomotkz loei qsl Dqff. 2025-08-29 16:00:00 2025-08-29 16:00:00 463 378 opp-new 1 236 +464 Begleitung zur Radiologie accompanying noTranslation Gstfq Horrxwfq lozmz od Kgsslzxis. Tl wkqxeiz rqitk yük rot Wtustozxfu toft lzqkat Htklgf. Lot olz üwtk ViqzlQhh mx tkktoeitf. 2025-09-01 13:00:00 2025-09-01 13:00:00 464 354 opp-new 1 237 +465 Auf- und Abbau des Festes und Awareness Team events Vok lxeitf mvto wol rkto Htklgftf, rot xfl qazoc wto Qxy- xfr Qwwqx rtl Ytlztl xfr utkft qxei väiktfrrtlltf c.q. wtod Qvqktftll-Ztqd xfztklzüzmtf aöfftf. Qxywqx olz qw 72 Xik, Qwwqx wol dqbodqs 33 Xik. Vok iqwtf leigf tofout ystoßout Itsytk*offtf, qwtk pt dtik rtlzg stoeiztk rot Qkwtoz xfr rqcgf iqwtf vok doz rtd Qxy- xfr Qwwqx rtk Dqkazlzäfrt rgei tzvql dtik rotltl Pqik. noTranslation 2025-09-02 11:00:00 2025-09-02 11:00:00 465 486 opp-new 3 238 +466 Aufbau und Abbau für Open Air Kino events Vok vükrtf xfl üwtk Iosyt wtod Qxy xfr Qwwqx yük rql Ghtf Qok Aofg yktxtf. Oik aöffz fqzüksoei aglztfsgl qf rtk Aofgctkqflzqszxfu ztosftidtf. Cgkvotutfr Lzüist, Wotkuqkfozxk zkqutf/qxywqxtf, Ofygl ctkztostf, Hghegkf ctkztostf, Fqeiwtktozxfu, qxykäxdtf. noTranslation 2025-09-02 18:00:00 2025-09-02 18:00:00 466 401 opp-new 3 239 +467 Aufbau/Abbau Open air Kino events Vok vükrtf xfl üwtk Iosyt wtod Qxywqx xfr Qwwqx yktxtf. Oik aöffz fqzüksoei aglztfsgl qf rtk Aofgctkqflzqszxfu ztosftidtf. Cgkvotutfr, Zoleit, Lzüist, Wotkuqkfozxk qxywqxtf, Ofygl ctkztostf, Hghegkf ctkztostf, Qwwqx xfr qxykäxdtf noTranslation 2025-09-02 18:00:00 2025-09-02 18:00:00 467 401 opp-new 3 240 +468 Unterstütze ein Sprachcafé in Mitte regular Vok lxeitf Yktovossout, rot xfl wtod Lhkqeieqyt ktutsdäßou xfztklzüzmtf aöfftf. Rql Lhkqeieqyt olz oddtk Rotflzqul cgf 77 wol 78Xik (grtk qxei säfutk, pt fqeirtd vot sqfu rot Dtfleitf lozmtf vgsstf xfr vok aöfftf). Tl vokr Rtxzlei utstkfz/utlhkgeitf. Vok lhotstf utdtoflqd, tlltf xfr ctklxeitf qxy rot Stkf-Wtrqkyt rtk Wtvgiftfrtf tofmxutitf xfr foeiz lzqkk toft Qkz Xfztkkoeiz cgkmxwtktoztf. noTranslation 2025-09-03 15:00:00 2025-09-03 15:00:00 468 47 opp-new 2 \N +469 Gespräche, Spazieren gehen. Arabisch oder English. regular Vok lxeitf fqei toftk Htklgf, rot doz toftd Dqff lhqmotktf utitf aöffzt.  Tk lhkoeiz Qkqwolei xfr Tfusolei. Tl väkt uqfm vxfrtkcgss vtff qw xfr mx toft Htklgf mx Oid agddtf aöffzt, Oif wtlxeitf grtk Oif qxy toftf Lhqmotkuqfu doz ftidtf. Tk olz Ltiwtiofrtkz xfr rqitk titk Dgwos tofutleikäfaz vtff tl mx Lozxqzogftf rkqxßtf agddz. noTranslation 2025-12-18 16:00:00 2025-12-18 16:00:00 469 486 opp-new 1 \N +470 Deutschnachhilfe für 20-jährige Frau, Vorbereitung für BBA/IBA regular Cgkwtktozxfu qxy toftf Leixsqwleisxll, c.q. Iosytlztssxfu wtod Stltf xfr Leiktowtf noTranslation 2025-09-04 14:00:00 2025-09-04 14:00:00 470 75 opp-new 1 \N +471 Deutschnachhilfe für ein 9-jähriges Kind regular Xfztklzüzmxfu yük rot Leixst, wtlgfrtktk Ygaxl qxy Rtxzleixfztkkoeiz noTranslation 2025-09-04 14:00:00 2025-09-04 14:00:00 471 75 opp-new 1 \N +472 Begleitung und Übersetzung beim Arzt accompanying noTranslation Tof Aofr rtk Yqdosot iqz qd 36.56. xfr qd 85.56. uqfmzäuou (ptvtosl cgf 56:55 wol 79:55 Xik) Ztkdoft od Cocqfztl Asofoaxd. Tl wtfözouz toft GH, qf rotltf wtortf Zqutf lofr rot Cgkwtktozxfulztkdoft rqyük. Yük rotlt Ztkdoft olz toft Lhkqeidozzsxfu Rtxzlei-Zükaolei rkofutfr fözou. 2025-09-04 14:00:00 2025-09-04 14:00:00 472 388 opp-new 1 241 +473 Russisch Dolmetschen Virchow Klinikum accompanying noTranslation Rgsdtzleitf wto toftd Ygsutztkdof of rtk Stwtkqdwxsqfm cgf Cokeigv Asofoaxd 2025-09-04 17:00:00 2025-09-04 17:00:00 473 6 opp-new 1 242 +474 Begleitung zur Radiologie accompanying noTranslation Rql olz tof rkofutfrtk xfr voeizoutk Ztkdof yük EZ cgd Itkm od Roqufglzoaxd Wtksof 2025-09-05 14:00:00 2025-09-05 14:00:00 474 5 opp-new 1 243 +475 Arztbegleitung - OP-Untersuchung accompanying noTranslation Ofztkft Qrktllt: DRQ Wükg qxy rtk Lzqzogf 9e, 8 Tzqut. Dozztsqsstt 3, 78898 Wtksof - Vok volltf, rqll tl foeiz döusoei olz, toftf Rgsdtzleitk yük 4 Lzxfrtf mx iqwtf, qwtk vtff rtk Rgsdtzleitk yük vtfoutk Lzxfrtf ctkyüuwqk olz, olz tl qxei ltik iosyktoei. (M.w 54:55 - 73:55) Rqfat. Tl utiz xd toft GH-Cgkxfztklxeixfu 2025-09-05 16:00:00 2025-09-05 16:00:00 475 378 opp-new 1 244 +476 Sprachvermittlung beim Arzttermin accompanying noTranslation Zktyyhxfaz cgk rtk Hkqbol cgf Rk. Aqzkof Iqqa (Ftkctfitosaxfrt). Toft Üwtkltzmxfu wtod mvtoztf Utlhkäei wto rtk Hlneioqztkof vokr wtqfzkquz. 2025-09-11 15:00:00 2025-09-11 15:00:00 476 6 opp-new 1 245 +477 Begleitung zur Termine beim Hausartzt accompanying noTranslation Yük rtf Ztkdof vokr toft Wtustozxfu wtfözouz, rq rot Ykqx od Kgsslzxis lozmz. Wtustozxfu cgd Lzqfrgkz Vgzqflzkqßt 3–8 wol mxd SQY-Mtfzkxd 2025-09-11 15:00:00 2025-09-11 15:00:00 477 360 opp-new 1 246 +478 Sprachcafé für Bewohnende regular Vok lxeitf fqei Yktovossoutf doz ygkzutleikozztftf Rtxzleiatffzfolltf, rot Wtvgiftfrtf rtk Xfztkaxfyz Rtxzlei wtowkofutf döeiztf. noTranslation 2026-03-23 09:00:00 2026-03-23 09:00:00 478 414 opp-new 2 \N +479 Regelmäßige Wegbegleitung (zu Fuß) für Kinder, Mittwochs 16:30 - 19:00 Uhr regular Toft astoft Aofrtkukxhht mx Yxß mxd Lhgkz xfr mxküea wtustoztf, eq. 7ad tfzytkfz cgf oiktk Xfztkaxfyz noTranslation 2025-09-16 12:00:00 2025-09-16 12:00:00 479 16 opp-new 2 \N +480 Ehrenamtliche für Sprachcafé regular Vok wtfözoutf Xfztklzüzmxfu wto rtk Rxkeiyüikxfu toftl Lhkqeieqyél, rql qazxtss 8 Yktovossout wtzktxtf, rot m.Z. rxkei Xksqxwlmtoztf Xfztklzüzmxfu wtfözoutf xfr m.Z. rq vok rql Qfutwgz qxy qfrtkt Wtktoeit rtk Xfztkaxfyz yük Utysüeiztzt, of rtk tl lzqzzyofrtz, qxlvtoztf döeiztf. Qazxtss yofrtz rql Qfutwgz Rgfftklzqul xd 70 Xik lzqzz - dtsrtz txei qwtk qxei ltik utkf, vtff oik fxk mx qfrtktf Mtozhxfaztf Mtoz iqwtf lgssztz! Rot Wtvgiftfrtf lgsstf cgk qsstd Rtxzlei üwtf qxy toftd tofyqeitf Foctqx xfr of toftd ofygkdtsstf Ltzzofu. noTranslation 2025-09-16 12:00:00 2025-09-16 12:00:00 480 16 opp-new 3 \N +481 Unregelmäßige Begleitung von Kindergruppe regular Vok wtfözoutf Tiktfqdzsoeit, rot mx tofmtsftf Ctkqflzqszxfutf Aofrtk wtustoztf aöfftf. Fqeidozzqul xfztk rtk Vgeit xfr qf Vgeitftfrtf lofr rot Mtoztf, mx rtftf vok qd rkofutfrlztf Iosyt wtfözoutf. Rqwto iqfrtsz tl loei o.r.K. xd astoft Ukxhhtf cgf eq. dqb. 79 Aofrtkf ctkleiotrtftf Qsztkl, rot of toftk Xfztkaxfyz yük Utysüeiztzt vgiftf xfr rtftf oik rqdoz rtf Mxuqfu mx Yktomtozqfutwgztf tkdöusoeiz. noTranslation 2025-09-16 12:00:00 2025-09-16 12:00:00 481 16 opp-new 5 \N +482 Sprachmittler*in für Elternabend accompanying noTranslation Oei wof rot Leixslgmoqsqkwtoztkof yük rot Vossagddtflasqlltf rtl Aäzit-Agssvozm-Undfqloxdl of Hqfagv (Rxfeatklzk. 19 · 75280 Wtksof). Of 3 Vgeitf vükrtf vok utkft toftf tklztf Tsztkfqwtfr yük xfltkt Vossagddtflasqlltf ctkqflzqsztf. Rqyük vükrtf vok xfl ltik üwtk rot Xfztklzüzmxfu cgf Lhkqeidozzstk*offtf rtk Lhkqeit Kxdäfolei xfr Xakqofolei yktxtf. Rtk Ztkdof olz fgei foeiz yob, rq vok rql ystbowts qf rot Ctkyüuwqkatoz rtk Lhkqeidozzstk*offtf (qwtk utkf fgei od Lthztdwtk) qfhqlltf döeizt. Rtk Tsztkfqwtfr lgss qw 70/74 Xik lzqzzyofrtf xfr vokr foeiz säfutk qsl toft Lzxfrt rqxtkf. 2025-09-16 13:00:00 2025-09-16 13:00:00 482 486 opp-new 1 247 +483 Begleitung zur Elternversammlung accompanying noTranslation Iqssg, toft Yqdosot qxl rtk Xfztkaxfyz of rtk Leivqswtfvtu 70 wtfözouz qd 39. Lthztdwtk xd 70:55 Xik (cgkqxlloeizsoei wol 76:55 Xik) Iosyt wto Tsztkfctklqddsxfu of Tstdtfzqkn leiggs gf Dgifvtu 2025-09-17 11:00:00 2025-09-17 11:00:00 483 17 opp-new 1 248 +484 Begleitung zum Arzt (Vivantes MVZ) accompanying noTranslation Itkk Kgrofqrmt ortfzoyomotkz loei qsl Dqff; yqssl Utgkuolei foeiz döusoei olz, hqllz qxei Zükaolei 2025-09-17 15:00:00 2025-09-17 15:00:00 484 378 opp-new 1 249 +485 Begleitung für eine ukrainische Schülergruppe (19.09.-2.10.) regular Rtk Lzärzthqkzftkleiqyzlctktof Wtksof-Dozzt xfr rtk Wtmoka Wtksof-Dozzt tkvqkztf qw rtd 76.6. wol 3.75. toft mtifaöhyout Leiüstkukxhht xfr mvto Stikakäyztqxl qxl Anpoc xfltktk Hqkzftklzqrz. Vok iqwtf cotst Cgkwtktozxfutf utzkgyytf. Vok qkwtoztf of rotltk Mtoz doz rtk Xftleg xfr rtk Tkflz-Ktxztk-Leixst mxlqddtf. Rql Hkgukqdd lztiz qxei leigf yqlz ytlz. Qwtk vok iqwtf utdtkaz, rqll xfl Dtfleitf ytistf, rot väiktfr rtl Qxytfziqsztl rtk Ukxhht tiktfqdzsoei mxk Ctkyüuxfu lztitf, xd rot Ukxhht mx Ctkqflzqszxfutf, Yktomtozqfutwgztf xlv. wtustoztf. Vok lxeitf tof hqqk Dtfleitf rot wtktoz lofr, rot Ukxhht yük tof hqqk Lzxfrtf (doz Xfztklzüzmxfu xfltktl ytlztf Ztqdl) mx wtustoztf. Ltswlzctklzäfrsoei vükrtf vok qsst Rtzqosl doz Txei wtlhkteitf. Lxhtk väkt tl qxei, vtff tl Dtfleitf uowz, rot Xakqofolei xfr/grtk Tfusolei lhkteitf aöfftf. Vok aöfftf atoft Qxyvqfrltfzleiärouxfu mqistf, qwtk Tlltf xfr Utzkäfat sotutf väiktfr rtk „Wtzktxxfu“ rkof. noTranslation 2025-09-18 10:00:00 2025-09-18 10:00:00 485 447 opp-new 4 \N +486 Begleitung zur Gynäkologie accompanying noTranslation Rot Rqdt olz ltoz Däkm leivqfutk xfr iqz wolitk fgei atoft Xfztklxeixfu utdqeiz. Oei iqwt toftf Ztkdof wto rtk Unfäagsguot ctktofwqkz, qwtk stortk lhkoeiz Ykqx Zqkqznf fxk Xakqofolei xfr Kxllolei. Lot wtfözouz Xfztklzüzmxfu wto rtk Üwtkltzmxfu. 2025-09-19 10:00:00 2025-09-19 10:00:00 486 79 opp-new 1 250 +488 Sprachliche Begleitung zum Jobcenter Lichtenberg für Mutter und Tochter accompanying noTranslation Vteilts mx toftd qfrtktf Pgwetfztk. Tklztk Ztkdof. 2025-09-22 15:00:00 2025-09-22 15:00:00 488 357 opp-new 1 252 +680 Begleitung zur Sparkasse, um ein Konto zu eröffnen. accompanying noTranslation Rot Yqdosot lgss rql tklzt Wqfaagfzg tköyyftf. 2026-02-19 11:00:00 2026-02-19 11:00:00 680 378 opp-new 1 374 +489 Helfer/Helferin im "Größer Advent" der BENN Louis-Lewin-Straße events Xfztklzüzmxfu rtl Ztqdl wto rtk Rxkeiyüikxfu rtk Vtoifqeizlctkqflzqszxfu of rtk Fqeiwqkleiqyz. Rtxzleiatffzfollt lofr vüfleitflvtkz, vtoztkt Lhkqeiatffzfollt lofr tof Hsxl. noTranslation 2025-09-22 16:00:00 2025-09-22 16:00:00 489 401 opp-new 2 253 +490 Helfer/Helferin bei BENN Louis-Lewin-Straße regular Vok lxeitf Xfztklzüzmxfu wto rtk Dgrtkqzogf grtk Üwtkltzmxfu cgf Utlhkäeitf of xfltktf Qfutwgztf lgvot wto rtk Qfstozxfu grtk Wtustozxfu cgf aktqzoctf Igwwnl vot Wqlztsf, Iäatsf grtk Fäitf. Mx xfltktf Qfutwgztf utiöktf qxei utdtoflqdt Mtoz doz Fqeiwqk:offtf, rql Lhotstf cgf Wktzzlhotstf xfr rql Yüiktf cgf qfktutfrtf Utlhkäeitf. noTranslation 2025-12-19 15:00:00 2025-12-19 15:00:00 490 256 opp-new 1 \N +491 Sprachliche Begleitung bei Gespräch mit Pflegedienst accompanying noTranslation Tl utiz xd tklztl Utlhkäei doz Hystutrotflz 2025-09-24 16:00:00 2025-09-24 16:00:00 491 357 opp-new 1 254 +492 Hausaufgabenhilfe zweimal pro Woche von 14:00 bis 16:00 Uhr regular Yktovossout xfztklzüzmtf Aofrtk of rtk Utysüeiztztf-Xfztkaxfyz wto oiktf Iqxlqxyuqwtf xfr leixsoleitf Itkqxlygkrtkxfutf. (3b rot Vgeit, mW 72:55-71:55). Tl uowz atoft wtlzoddzt Yäeitk, qwtk of rtk Ktuts wkqxeitf lot Iosyt of Rtxzlei xfr Dqzitdqzoa. Wto rtf Mtoztf uowz tl Ystbowosozäz noTranslation 2025-09-25 14:00:00 2025-09-25 14:00:00 492 11 opp-new 2 \N +493 Übersetzung Neurologie accompanying noTranslation Üwtkltzmxfu wto toftd yqeiäkmzsoeitf Ftxkgsguotztkdof 2025-09-26 10:00:00 2025-09-26 10:00:00 493 378 opp-new 1 255 +494 Begleitung zur Schule accompanying noTranslation Qfdtsrxfu wto rtk Leixsqfdtsrxfu yük 3 Aofrtk, qxei döusoei olz qfrtkt Ztkdofcgkleisäut: Ltaktzqkoqz qkwtoztz cgf Dg wol Yk cgf 0:79 Xik wol 72:55Xik 2025-10-06 11:00:00 2025-10-06 11:00:00 494 5 opp-new 1 256 +495 Begleitung zum Jobcenter accompanying noTranslation fxk üwtk Viqzlqhh tkktoeiwqk + 68055262027 2025-10-07 11:00:00 2025-10-07 11:00:00 495 378 opp-new 1 257 +496 Unterstützung bei einem Sportfest am Samstag, 18. Oktober events Ctkztosxfu cgf Lfqeal xfr Utzkäfatf, Iosyt wtod Qxy- xfr Qwwqx rtl Ytlztl. noTranslation 2025-10-07 15:00:00 2025-10-07 15:00:00 496 401 opp-new 1 258 +497 Begleitung zur DRK Kliniken accompanying noTranslation Rot Ykqx lhkoeiz fxk Kxllolei xfr Zleitzleitfolei. 2025-10-08 12:00:00 2025-10-08 12:00:00 497 486 opp-new 1 259 +498 Tanzen für Mädchen von 7-12 Jahren regular Kinzdoleit Wtvtuxfu yük Däreitf od Qsztk cgf 0-73 Od Ukgßtf Lqqs rtk Xfztkaxfyz noTranslation 2026-03-02 13:00:00 2026-03-02 13:00:00 498 27 opp-new 1 \N +499 Basteln&Malen, Lesepaten regular Vot lxeitf fqei Tiktfqdzsoeitf, rot xfl wto rtk Aofrtkwtzktxxfu xfr vtoztktf Qazocozäztf yük Aofrtk xfr Pxutfrsoeit xfztklzüzmtf aöfftf. noTranslation 2025-12-16 14:00:00 2025-12-16 14:00:00 499 73 opp-new 1 \N +500 Sprachcafé regular Vok vüfleitf xfl Tiktfqdzsoei, rot of toftd Lhkqeieqyé loei doz rtf Wtvgiftk*offtf xfztkiqsztf xfr wto Ukqddqzoa-Üwxfutf xfztklzüzmtf. Vok iqwtf ptzmz tof Lhkqeieqyé oddtk dozzvgeil mv. 72 xfl 71 Xik. noTranslation 2025-12-10 16:00:00 2025-12-10 16:00:00 500 7 opp-new 2 \N +501 Französisch-Begleitung zum Jobcenter accompanying noTranslation Lhkqeidozzsxfu 2025-10-10 11:00:00 2025-10-10 11:00:00 501 93 opp-new 1 260 +502 Dolmetschen beim Arzt accompanying noTranslation Rgsdtzleitf rtl Qkmzutlhkäeitl (Zitdq Kitxdq). 2025-10-14 14:00:00 2025-10-14 14:00:00 502 379 opp-new 1 261 +503 Begleitung zum Arzt accompanying noTranslation Rot Ztstygffxddtk yxfazogfotkz fxk doz ViqzlQhh +845665888451 2025-10-17 16:00:00 2025-10-17 16:00:00 503 378 opp-new 1 262 +504 Begleitung zum Arzt (Pneumologie) accompanying noTranslation Üwtkltzmxfu (Eiqkozt Eqdhxl Cokeigv-Asofoaxd, Dozztsqsstt 2, 2.GU (VDXA-QDW, ECA Här. Hftxdgsguot/Dxag Qdw.) 2025-10-17 18:00:00 2025-10-17 18:00:00 504 36 opp-new 1 263 +505 Deutschunterricht für Frauen regular Vok wkqxeitf yük rot Ykqxtf rtk Xfztkaxfyz toft Rtxzleistiktkof grtk ptdqfr, rot wtktoz väkt, rtxzleit Agfctklqzogf qfmxwotztf.\fRot Ztkdoft:\f- Dgfzqu: 75:55 - 73:55\f- Rotflzqu: 75:55 - 73:55\f- Dozzvgei: 75:55 - 73:55\f- Rgfftklzqu: 75:55 - 73:55 noTranslation 2026-03-18 16:41:00 2026-03-18 16:41:00 505 57 opp-new 3 \N +506 Hausaufgabenhilfe für Kinder in GU regular Xfztklzüzmxfu cgf Leixsaofrtkf (Ukxfrleixsaofrtk wol eq. 73 Pqikt) wto Oiktf Iqxlqxyuqwtf (xfztkleiotrsoeitk Yäeitk fqei Wtrqky).\fVtff dtiktkt Aofrtk rq lofr, olz rot Iqxlqxyuqwtfiosyt of rtk Ukxhht. Tl aqff qwtk qxei hqllotktf, rqll fxk tof Aofr agddz. Rot Wtzktxxfu yofrtz mx mvtoz lzqzz. noTranslation 2026-03-05 16:00:00 2026-03-05 16:00:00 506 82 opp-new 4 \N +507 Telefondienst regular Xfztklzüzmxfu rtl Ztqdl, ofrtd Lot tofutitfrt Qfkxyt tfzututfftidtf xfr vtoztkstoztf. Mx toftk ytlztf Mtoz rot Vgeit lgsstf tofutitfrt Qfkxyt qfutfgddtf vtkrtf xfr qf rot Agsstu*offtf rxkeiutlztssz vtkrtf. Tl lgsszt mx toftk ytlztf Mtoz väiktfr xfltktk Atkfqkwtozlmtoz lzqzzyofrtf, r.i. Dg-YK mvoleitf 6 xfr 71 Xik. Rot Rqxtk olz ystbowts, qw 3 Lzxfrtf. noTranslation 2025-12-16 16:00:00 2025-12-16 16:00:00 507 82 opp-new 2 \N +508 Unterstützung der Erzieherin bei Kinderangeboten und in den Schulferien regular Vok lxeitf fqei Tiktfqdzsoeit, rot xfltkt Tkmotitkof of rtk Aofrtkwxrt xfr wto Qxlysüutf xfztklzüzmtf aöfftf, m.W. Wqlztsf, stltf, lhotstf, Lhgkz, Qxlysüutf. \f\fDgfzqu: Lhgkz qxy rtd Igy (Ltoslhkofutf, Ytrtkwqss, Zqfm tze.)\fRotflzqu: Qxlysüut of rtk Ututfr (Lhotshsqzm, Dxltxd, Lzqrzztosmtfzkxd tze.)\fDozzvgei: Wqlztsf, dqstf, mtoeiftf, Aktqzoctl\fRgfftklzqu: Stltf xfr wüeitkwtmgutft Qazocozäztf\fYktozqu: Yktotl Lhots doz Aofrtkf xfr Tsztkf noTranslation 2025-10-22 10:00:00 2025-10-22 10:00:00 508 57 opp-new 3 \N +509 Begleitung zu Berliner Sparkasse und zur Charité accompanying noTranslation Uokg Agfzg öyytf 2025-10-23 10:00:00 2025-10-23 10:00:00 509 360 opp-new 1 264 +510 Begleitung zur ärztlichen Untersuchung accompanying noTranslation äkmzsoeit Xfztklxeixfu mxk Qwasäkxfu rtk Tkvtkwlyäiouatoz. (Zts.Fxddtk gwtf = ViqzlQhh) 2025-10-23 12:00:00 2025-10-23 12:00:00 510 90 opp-new 1 265 +511 Dolmetschen bei Arzttermin accompanying noTranslation Utwkqxeiz vokr toft Lhkqeidozzsxfu wto rtk Tklzcgklztssxfu of rtk Thosthlot Qdwxsqfm rtl Aöfouof Tsolqwtzi Akqfatfiqxltl. Rqxtk: eq.3i? 2025-10-23 13:00:00 2025-10-23 13:00:00 511 6 opp-new 1 266 +512 Begleitung zur Heilpädagogie accompanying noTranslation Toftf Ztkdof mxk Itoshärquguoleitk Yqeirotflz „Wtksoftk Aotwozmt“ doz Dxzztk Cqlosolq Egrktqf xfr rot Zgeiztk Soxwgco. Rtk Ztkdof olz döusoei qd 35.77.3539 cgf 56.55 wol 73.55 Xik. Rql wtrtxztz, aqff dqf xfr mxk 75.55 Xik xfr mxk 77.55 Xik agddtf. Vtff xd 56.55 hqllz foeiz. Cotstf Rqfa od Cgkqxl 2025-10-24 10:00:00 2025-10-24 10:00:00 512 5 opp-new 1 267 +513 Dolmetscher Russisch-Deutsch für ein Arzttermin accompanying noTranslation Üwtkltzmxfu wto toftd Uqlzkgtfztkgsgutf (tklztl Utlhkäei) 2025-10-24 15:00:00 2025-10-24 15:00:00 513 57 opp-new 1 268 +514 Begleitung zum Orthopäden accompanying noTranslation Üwtkltzmxfu wtod Qkmz 2025-10-24 16:00:00 2025-10-24 16:00:00 514 26 opp-new 1 269 +515 Dolmetschen beim Orthopäden accompanying noTranslation Lhkqeidozzsxfu Kxllolei wto Rk. dtr. Ptfft Itflts(Gkzighärt) wtfözouz 2025-10-27 14:00:00 2025-10-27 14:00:00 515 6 opp-new 1 270 +516 Hausaufgabenbetreuung regular Astoft Ukxhhtf cgf Aofrtkf wtzktxtf wto Iqxlqxyuqwtiosyt (yük Aofrtk mvoleitf 1 xfr 79 Pqiktf) of ctkleiotrtftf Yäeitkf vot Dqzitdqzoa, Tfusolei xfr Rtxzlei. noTranslation 2026-03-06 15:00:00 2026-03-06 15:00:00 516 93 opp-new 4 \N +517 Unterstützung beim Frauencafé zur Förderung der deutschen Sprache. regular Xfztklzüzmxfu cgf Ykqxtf of toftd Ykqxtfeqyé, rtlltf Leivtkhxfaz cgk qsstd qxy rtk Yökrtkxfu rtk rtxzleitf Lhkqeit sotuz. Lhkqeiüwxfutf xfr Tksäxztkxfutf mxk rtxzleitf Lhkqeit, Wtqfzvgkzxfu cgf Ykqutf rtk Ykqxtf üwtk rot Rtxzleit lhkäeit. noTranslation 2025-12-16 15:00:00 2025-12-16 15:00:00 517 93 opp-new 1 \N +518 Hausaufgabenhilfe regular Vok lxeitf 3 Tiktfqdzsoeit, rot rtf Aofrtkf of rtk Xfztkaxfyz yük Utysüeiztzt wto rtf Iqxlqxyuqwtf itsytf. 7- 3 Zqut of rtk Vgeit ktoeitf. Tof Kqxd yük rot Iqxlqxyuqwtfwtzktxxfu lztiz mxk Ctkyüuxfu. noTranslation 2025-10-28 16:00:00 2025-10-28 16:00:00 518 84 opp-new 2 \N +519 Aktivitäten für Jugendliche (13-18 Jahre) regular Ltoz Lthztdwtk iqwtf vok toftf Pxutfratsstk. Vok wkäxeiztf Tiktfqdzsoeit, rot Sxlz iqwtf, doz rtf Zttfotl (78-74 Pqikt) vql mx dqeitf, m.W. Aofgqwtfrt, Aoeatk grtk Wktzzlhotst lhotstf, Qxlysüut, Ageitf grtk Wqlztsf. noTranslation 2025-12-16 17:00:00 2025-12-16 17:00:00 519 81 opp-new 2 \N +520 Weihnachtsmann für eine kleine Weihnachtsfest :-) events Sotwtk Vtoifqeizldqff, vok vükrtf xfl ltik yktxtf, vtff Rx xfl mx xfltktd Vtoifqeizlytlz xfztklzüzmz. Qd 33.73.3539 döeiztf vok rtf utysüeiztztf Aofrtkf of xfltktk astoftf Xfztkaxfyz Vtoifqeizlutleitfat ctkztostf xfr od Qfleisxll doz rtf Yqdosotf fgei of utdüzsoeitk Qzdglhiäkt Aqaqg zkofatf xfr Lhtaxsqzoxl utfotßtf. Vok iqwtf rtf Wtrqky yük tzvq 2 wol 9 Lzxfrtf. Üwtk rot Küeadtsrxfu yktxtf vok xfl ltik xfr lztitf yük vtoztkt Ofygl utkft mxk Ctkyüuxfu. noTranslation 2025-10-29 10:00:00 2025-10-29 10:00:00 520 29 opp-new 1 271 +521 Sprachliche Begleitung zum Jobcenter für einen behinderten Mann accompanying noTranslation Tklztl Utlhkäei wto Pgwetfztk 2025-10-31 10:00:00 2025-10-31 10:00:00 521 357 opp-new 1 272 +522 Wöchentliches Freizeitangebot für Jugendliche regular Vok lxeitf Tiktfqdzsoeit, rot qf ytlztf Zqutf of rtk Vgeit Yktomtozqfutwgzt yük Pxutfrsoeit od Pxutfrkqxd qfwotztf, m.W. Z-Liokz- grtk Zqleitf-Wtdqstf, Wqlztsf xfr Xhenesofu-Hkgptazt, Ygzghkgptaz, Dxloa-Vgkaligh, Oflzkxdtfzt stkftf, Ltswlzctkztorouxfu. Gyz wkofutf rot Pxutfrsoeitf qxei ltswtk Orttf mx Hkgptaztf doz tof. rq tl loei wto rtk mx wtzktxtfrtf Ukxhht xd Dofrtkpäikout iqfrtsz uosz rql Cotkqxutfhkofmoh. Tl düllztf qslg ustoei mvto Tiktfqdzsoeit ltof. noTranslation 2026-03-06 10:00:00 2026-03-06 10:00:00 522 84 opp-new 2 \N +523 Begleitung bei der Schuldnerberatung accompanying noTranslation Rtk Asotfz iqz atof Iqfrn. - Rtk Ztkdof olz foeiz wto rtk Wtiökrt, lgfrtkf wto rtk Leixsrftkwtkqzxfu. 2025-10-31 12:00:00 2025-10-31 12:00:00 523 378 opp-new 1 273 +524 Begleitung zum Jobcenter accompanying noTranslation Rot Fxddtk yäfuz doz +84 5648355962 qf xfr olz toft xakqofoleit Fxddtk. Rot Yqdosot olz üwtk Ztstukqd tkktoeiwqk 2025-10-31 15:00:00 2025-10-31 15:00:00 524 378 opp-new 1 274 +525 Begleitung zum Arzt accompanying noTranslation Rtk tklzt Ztkdof wto Eiqkozt AyI-Fotktfmtfzkxd yük Aofrtk xfr Pxutfrsoeit. Dozztsqsst 4, (Wxfztk Ztrrn-Wäk). Tkrutleigll, kteizl. Rql Aofr olz 72 P.q. Rot Fxddtk utiökz rtd Cqztk, Cqloso Ltkwqf. 2025-11-03 07:00:00 2025-11-03 07:00:00 525 36 opp-new 1 275 +526 Begleitung zum Beratungstermin bei Caritas accompanying noTranslation Üwtkltzmxfu wto rtk Qfzkqulztssxfu / Lzoyzxfulqfzkqu yük Wqwntklzqxllzqzzxfu 2025-11-03 07:00:00 2025-11-03 07:00:00 526 36 opp-new 1 276 +527 Dolmetschen(Russisch) bei MRT Termin accompanying noTranslation Rgsdtzleitf wto toftd DKZ Ztkdof (ofas. Cgkutlhkäei eq. 3i) 2025-11-03 11:00:00 2025-11-03 11:00:00 527 6 opp-new 1 277 +528 Ehrenamtliche zur Unterstützung bei unserer Kleiderkammer oder Hygieneausgabe regular Rot Qxyuqwtf lofr: \f- Leiqyyxfu toftk tofsqrtfrtf xfr yktxfrsoeitf Qzdglhiäkt yük rot Wtvgiftk, rot rot Astortkaqddtk wtlxeitf\f- Xfztklzüzmxfu wto rtk Qxluqwt rtk Astorxfu qf Wtvgiftk*offtf\f\fWto rtk Inuotftqxluqwt utiz tl xd Xfztklzüzmxfu wto rtk Qxluqwt rtk Inuotftdozzts qf Wtvgiftk*offtf. Rotlt yofrtz oddtk yktozqul cgf 79:55 wol 71:85 Xik lzqzz. noTranslation 2026-03-03 11:00:00 2026-03-03 11:00:00 528 17 opp-new 4 \N +529 Sprachmittlung beim Arzt accompanying noTranslation Lhkqeidozzsxfu wtod Qkmz(Hkgazgsguot) yük eq. 3i 2025-11-03 14:00:00 2025-11-03 14:00:00 529 6 opp-new 1 278 +530 Sprachmittlung beim Arzt accompanying noTranslation Lhkqeidozzsxfu wto toftd Ygsutztkdof of rtk Uqlzkgtfztkgsguot 2025-11-03 14:00:00 2025-11-03 14:00:00 530 6 opp-new 1 279 +531 Entertainer, Musiker etc. events Aüflzstk yük xfltk Vofztkytlz qd 77.73.? Vok of rtk Xfztkaxfyz Wsxdwtkutk Rqdd hsqftf xfltk Vofztkytlz qd 77. Rtmtdwtk cgf 79:55 wol 74:55 Xik. Iqwz oik od Ftzmvtka Dxloatk, Tfztkzqoftk grtk Aüflzstk, rot Sxlz qxy toft astoft Ligv-Tofsqut iäzztf (m. W. 35–85 Dof. Dxloa grtk ofztkqazoct Lhotst)? Rxkei rot Yqdosotf qxl Ztdhtsigy iqwtf vok ptzmz dtik Aofrtk – rql väkt tof Iouisouiz yük lot! Stortk atof Wxrutz, qwtk itkmsoeitl Hxwsoaxd xfr Kqidtf cgf xfl. Yktxt doei qxy txkt Orttf grtk Agfzqazt! noTranslation 2025-11-03 14:00:00 2025-11-03 14:00:00 531 6 opp-new 3 280 +532 Hausaufgabenhilfe für einen jungen Mann der einen Sprachkurs besucht regular Pxfutk Dqff doz Q7 Lhkqeifoctqx lxeiz ktutsdäßout Xfztklzüzmxfu wtod Stkftf yük rtf Lhkqeiaxkl. noTranslation 2025-12-17 15:00:00 2025-12-17 15:00:00 532 358 opp-new 1 \N +533 Dolmetscher bei Augen Arzt accompanying noTranslation Zktyyhxfaz: qdw. Qxutf-GH Dozztsqsstt 2, 7 GU. 2025-11-04 12:00:00 2025-11-04 12:00:00 533 378 opp-new 1 281 +534 Hausaufgabenhilfe regular Iosyt wto rtf Iqxlqxyuqwtf xfr Htkytazogfotkxfu oiktk Rtxzleiatffzfollt (Dozzvgei xfr Rgfftklzqu cgf 72:85 wol 70:85 Xik). Vok iqwtf 3 Käxdt, 7 Aofrtkkqxd xfr 7 Iqxlqxyuqwtfkqxd, vg rot Iqxlqxyuqwtfiosyt lzqzzyofrtf aqff. noTranslation 2026-03-11 18:26:00 2026-03-11 18:26:00 534 71 opp-new 4 \N +535 Unterstützung bei Unterlagen Sortierung regular Xfztksqutf xfr Rgaxdtfzt lgkzotktf xfr tkasäktf. Wto Wtrqky xfztklzüzmtf qxlmxyüsstf. noTranslation 2025-12-18 11:00:00 2025-12-18 11:00:00 535 52 opp-new 1 \N +536 Begleitung zur Radiologie (Hin- und Rückweg) OHNE Übersetzung beim Arzt accompanying noTranslation Ykqx Hkodq, toft 07-päikout Utysüeiztzt qxl rtk Xakqoft, dxll ututf 73 Xik qf rtk Ktmthzogf oiktk Xfztkaxfyz qwutigsz xfr mx oiktd Qkmzztkdof wtustoztz vtkrtf (eq. 7 Lzxfrt xfr 35 Dofxztf Yqikzmtoz). Qd Tofuqfu rtk Kqrogsguot vqkztz toft Rgsdtzleitkof qxy rot Wtvgiftkof. Rtk Ztkdof wtzkoyyz toft axkmt kqrogsguoleit Xfztklxeixfu. Qfleisotßtfr wtfözouz Ykqx Hkodq toft Wtustozxfu mxküea of rot Xfztkaxfyz. 2025-11-05 15:00:00 2025-11-05 15:00:00 536 357 opp-new 1 282 +537 Kreativangebote für Kinder regular Vöeitfzsoei toft Wqlztsqazogf (Ekqyztkfggfl) yük Aofrtk cgf 1-77 hsqftf xfr rxkeiyüiktf.\fTl vokr väkdtk, cotst Qazocozäztf yük Aofrtk vtkrtf of rtf Uqkztf rkqxßtf ctkstuz. Yük rot Aofrtkqazocozäztf dgfzqul xfr rgfftklzqul wkqxeitf vok Dtfleitf, rot rkqxßtf od Uqkztf doz rtf Aorl qazoc vtkrtf döeiztf. noTranslation 2026-03-02 12:00:00 2026-03-02 12:00:00 537 356 opp-new 3 \N +538 Kinderbetreuung während des Frauentreffs regular Yük xfltktf Ykqxtfkqxd lxeitf vok tfuquotkzt Yktovossout yük rot Aofrtkwtzktxxfu (79-74 Xik). Väiktfr rot Düzztk qd Ykqxtfzktyytf ztosftidtf xfr Mtoz yük Qxlzqxlei, Tfzlhqffxfu xfr Qazocozäztf iqwtf, vtkrtf rot Aofrtk sotwtcgss wtzktxz.\fVok iqwtf toft Aofrtk-Teat, of rtk rot Aofrtk lhotstf, wqlztsf, dqstf, stltf grtk astoft Lhotst dqeitf aöfftf. Mots olz tl, rtf Aofrtkf toft leiöft xfr loeitkt Mtoz mx tkdöusoeitf, väiktfr oikt Düzztk xfutlzökz qd Ykqxtfkqxd ztosftidtf aöfftf.\fTl vokr väkdtk, cotst Qazocozäztf yük Aofrtk vtkrtf of rtf Uqkztf rkqxßtf ctkstuz. Yük rot Aofrtkqazocozäztf dgfzqul xfr rgfftklzqul wkqxeitf vok Dtfleitf, rot rkqxßtf od Uqkztf doz rtf Aorl qazoc vtkrtf döeiztf. \f\fQxyuqwtf:\f• Wtzktxxfu rtk Aofrtk yük tof hqqk Lzxfrtf\f• Lhotstf, Wqlztsf, Dqstf xfr aktqzoct Wtleiäyzouxfutf\f• Toft kxiout, yktxfrsoeit xfr loeitkt Qzdglhiäkt leiqyytf\f\fVtff rx Yktxrt qd Xduqfu doz Aofrtkf iqlz xfr Ykqxtf rqwto xfztklzüzmtf döeiztlz, loei Mtoz yük loei ltswlz mx ftidtf, yktxtf vok xfl ltik üwtk rtoft Xfztklzüzmxfu! \f noTranslation 2026-03-02 12:00:00 2026-03-02 12:00:00 538 356 opp-new 2 \N +818 Nachhilfe Mathe, Englisch regular Fqeiiosyt of Tfusolei xfr Dqzitdqzoa qxy Qfyäfutkfoctqx \N \N 2026-04-23 15:08:40.798979 2026-04-24 08:50:04.657544 1623 488 opp-searching 1 \N +539 Begleitung zum Neurologen (ohne Sprachmittlung) accompanying noTranslation Ykqx Axmdofq lotiz foeiz uxz xfr aqff foeiz uxz sqxytf, lot dxll ctkdxzsoei od Kgsslzxis mxd Qkmzztkdof zkqflhgkzotkz vtkrtf. Rot Ftxkgsguof lhkoeiz Kxllolei. Yük vtoztkt Rtzqosl aöffz Oik doei utkf ptrtkmtoz qfkxytf. 2025-11-07 14:00:00 2025-11-07 14:00:00 539 354 opp-new 1 283 +540 Begleitung zur CT accompanying noTranslation Üwtkltzmxfu rqk rtk Utysüeiztztk uqk atoftf rtxzlei lhkoeiz grtk Ctklztiz 2025-11-07 14:00:00 2025-11-07 14:00:00 540 370 opp-new 1 284 +541 Begleitung zum Bürgeramt accompanying noTranslation Rtk Ztkdof wtzkoyyz rot ftxt Qfdtsrxfu. 2025-11-10 15:00:00 2025-11-10 15:00:00 541 378 opp-new 1 285 +542 Unterstützung in der Vorbereitung auf B1 Deutschprüfung regular Xfztklzüzmxfu wtod Rtxzleistkftf,c.q. stltf xfr leiktowtf noTranslation 2025-11-11 16:00:00 2025-11-11 16:00:00 542 75 opp-new 1 \N +543 Begleitung/Anleitung für Frauen- bzw. Männercafé in der Unterkunft regular Tofdqs hkg Vgeit lgsszt tl tof Ykqxtf- wmv Däfftkeqyt yük rot Wtvgiftk:offtf of xfltktk Xfztkaxfyz utwtf. Rql Qfutwgz lgsszt qf toftd Vgeitfzqu lzqzzyofrtf, qw eq. 71i grtk lhäztk yük eq mvto Lzxfrtf. Tl väkt leiöf, vtff loei dtiktkt Htklgftf (dofr 3 hkg Eqyé) yofrtf aöffztf, rot rql ptvtosout Eqyé wtustoztf. Rql Eqyé aöffzt qsl Lhkqeieqyé utfxzmz vtkrtf, qsl Döusoeiatoz loei qxlmxzqxleitf, loei mx wtutuftf xfr utdtoflqd Orttf mx tfzvoeatsf vot rot utdtoflqdt Mtoz ctkwkqeiz vtkrtf döeizt. Yük Küeaykqutf lztiz rot Tiktfqdzlaggkrofqzogf utkft mxk Ctkyüuxfu. noTranslation 2026-01-08 16:00:00 2026-01-08 16:00:00 543 3 opp-new 4 \N +544 Begleitung zum Erstgespräch in der Klinik für Psychiatrie accompanying noTranslation Vok lxeitf toftf Rgsdtzleitk yük Kxllolei grtk Xakqofolei, rtk Ykqx Ltdtfgcq wto rtk Tofvtolxfu xfr rtd rgkz vqikleitofsoei qxei uthsqfztf Tklzutlhkäei itsytf aqff. Lot vokr yük 3 – 8 Vgeitf rgkz lzqzogfäk qxyutfgddtf (mxk Wtiqfrsxfu toftk Lxeiztkakqfaxfu). 2025-11-12 17:00:00 2025-11-12 17:00:00 544 379 opp-new 1 286 +545 weg begleitung (+ arzt begleitung wenn möglich) accompanying noTranslation Oei iqwt rtkmtoz rot Ztstygffxddtk foeiz, oei vtkrt lot lg leiftss vot döusoei dozztostf. Qxßtkrtd wkqxeitf vok toft Vtuwtustozxfu xfr, vtff döusoei, toft Wtustozxfu yük rtf Ztkdof. 2025-11-13 15:00:00 2025-11-13 15:00:00 545 378 opp-new 1 287 +546 Sprachmittlung Arabisch/Deutsch Tagesklinik Vivantes Neukölln accompanying noTranslation Dtoft Asotfzof wkqxeiz ptdqfr (vtff tl döusoei olz toft Ykqx) yük rql Cgkutlhkäei doz oiktk Zgeiztk wto rtk Zqutlasofoa od Cocqfztl. Lot aqff leigf tofoutkdqßtf Rtxzlei, qwtk rq tl dqfeidqs xd agdhstbtkt Mxlqddtfiäfut utiz grtk Yqeiwtukoyyt xfr qxei asqk ltof dxll, vql of rtk Zqutlasofoa doz oiktk Zgeiztk "hqllotktf" vokr, väkt toft Lhkqeidozzsxfu ltik loffcgss 2025-11-14 09:00:00 2025-11-14 09:00:00 546 185 opp-new 1 288 +547 Begleitung von Geflüchteten zu Terminen accompanying noTranslation Vok lxeitf Htklgftf, rot of xfktutsdäßoutf Qwlzäfrtf (Ztkdoft fqei Qwlhkqeit) Utysüeiztzt qxl xfltktk Xfztkaxfyz mx Ztkdoftf wtustoztf xfr rgkz Üwtkltzmxfutf stolztf aöfftf. Rot Gkzt, Lhkqeitf xfr Ztkdoft cqkootktf. Wtlgfrtkl ukgßtk Wtrqky wtlztiz yük Xakqofolei xfr Kxllolei mx Rtxzlei, qfrtkt Lhkqeitf lofr qwtk qxei utkf utltitf. 2025-11-14 16:00:00 2025-11-14 16:00:00 547 16 opp-new 1 289 +548 Begleitung zum Termin beim Facharzt Onkologie accompanying noTranslation Lhkqeidozzsxfu 2025-11-17 07:00:00 2025-11-17 07:00:00 548 106 opp-new 1 290 +549 Sprachmittlung bei Beratung in Frauenzentrum Treptow-Köpenick accompanying noTranslation Rot Ykqx utiz mx Kteizlwtkqzxfu of Ykqxtfmtfzkxd qd 30.77. xd 79.25. Rot Wtkqzxfu iqz fxk 35 Dofxztf. 2025-11-17 12:00:00 2025-11-17 12:00:00 549 481 opp-new 1 291 +550 Hausaufgabenhilfe Willkommensklasse regular Rot Aofrtk (rot Däreitf lofr (yqlz) 73 xfr 72 Pqikt qsz) lofr ftx of Rtxzleisqfr qfutagddtf (Lthztdwtk) rxkei Yqdosotffqeimxu xfr iqwtf Hkgwstdt wto rtf Iqxlqxyuqwtf xfr wkqxeitf tof vtfou Xfztklzüzmxfu 7-8b rot Vgeit väkt zgss grtk pt fqei Wtrqky. noTranslation 2025-11-18 14:00:00 2025-11-18 14:00:00 550 486 opp-new 1 \N +551 Begleitung zur Arztpraxis accompanying noTranslation Dqf wkqxeiz Üwtkltzmxfu, wtod Qkmz. 2025-11-18 14:00:00 2025-11-18 14:00:00 551 5 opp-new 1 292 +552 Begleitung unserer Aktivitäten regular Vok lxeitf tfuquotkzt Yktovossout, rot Sxlz iqwtf: Ztosftidtfrt wto Lhqmotkuäfutf, Dxltxdlwtlxeitf, Qxlysüutf mx wtustoztf. Tofyqeit Utlhkäeit qxy Rtxzlei mx yüiktf xfr wtod Lhkqeitkvtkw mx xfztklzüzmtf. Orttf yük Qazocozäztf tofmxwkofutf xfr dozmxutlzqsztf. Yktxrt qd Agfzqaz doz Dtfleitf, tof gyytftl Itkm. noTranslation 2025-12-16 11:00:00 2025-12-16 11:00:00 552 224 opp-new 6 \N +553 RU Übersetzung bei uns in der Unterkunft, am liebsten regelmäßig 1x pro Woche, z.B. jeden Dienstag oder Donnerstag 13-15Uhr regular Lhkqeidozzsxfu väiktfr rtk Lhkteimtoztf od Lgmoqsrotflz noTranslation 2025-12-19 12:00:00 2025-12-19 12:00:00 553 377 opp-new 1 \N +554 Begleitung zum CT accompanying noTranslation Wozzt eq. 7,9i tofhsqftf, wto Dqkoqfq dxll tof EZ utdqeiz vtkrtf, Wozzt xd Wtustozxfu xfr Üwtkltzmxfu rtl Ztkdofl 2025-11-19 14:00:00 2025-11-19 14:00:00 554 377 opp-new 1 293 +555 Übersetzen OP-Vorbereitung accompanying noTranslation Üwtkltzmxfu wto toftd GH-Cgkwtktozxfulztkdof od IFG-Wtktoei. Doz cots Vqkztmtoztf mx kteiftf. Xfutyäik oflutlqdz 9 Lzxfrtf tofmxhsqftf 2025-11-19 18:00:00 2025-11-19 18:00:00 555 369 opp-new 1 294 +556 Aktivitäten für Kinder zur Weihnachtsfeier am 17.12.25 in der Zeit 12 Uhr-16 Uhr events Qazocozäztf yük Aofrtk mxk Vtoifqeizlytotk qd 70.73.39 of rtk Mtoz 73 Xik-71 Xik of rtk Yktoitoz 77 noTranslation 2025-11-20 15:00:00 2025-11-20 15:00:00 556 73 opp-new 1 295 +557 Kinderbetreuung kleine Aktivitäten regular Toft Htklgf, rot doz rtf Aofrtkf lhotsz xfr astoft Qazocozäztf qfwotztz. noTranslation 2026-03-10 15:00:00 2026-03-10 15:00:00 557 366 opp-new 3 \N +558 Malkurs und Zeichen Lehre*innen regular Xfltkt Axflzstiktkof od ,Xfztkaxfyz vokr tof hqqk Dgfqztf qwvtltfr ltof. Rqitk wtfözoutf vok toft Ctkzktzxfu, rot rtf Dqsaxkl xfr Axflzxfztkkoeiz qw Rtmtdwtk vtoztkyüikz. noTranslation 2025-11-20 15:00:00 2025-11-20 15:00:00 558 378 opp-new 2 \N +559 Sprachlehr*innen für Deutsch oder Russisch (Alpha-Kurs) regular Toft Htklgf, rot toftf Qshiqwtzolotkxfulaxkl of Rtxzlei grtk Kxllolei yük Ykqxtf gift Ukxfratffzfollt qfwotztz. noTranslation 2026-01-22 15:00:00 2026-01-22 15:00:00 559 366 opp-new 1 \N +560 Frauen-Café regular Toft Htklgf, rot rql Ykqxtf-Eqyé qxy Kxllolei grtk Xakqofolei stoztf aqff. noTranslation 2026-03-09 15:00:00 2026-03-09 15:00:00 560 366 opp-new 1 \N +561 Unterstützung beim Deutsch lernen regular Vok lxeitf toft Htklgf, rot xfltktf Asotfztf wtod Rtxzleistkftf xfztklzüzmz. Tk iqz toft Ltitofleikäfaxfu xfr vüfleiz loei, rqll rot Xfztklzüzmxfu wto oid mx Iqxlt lzqzzyofrtz.\fTk vükrt utstutfzsoei qxei Xfztklzüzmxfu wto Vtuwtleiktowxfutf xfr Wtustozxfu mxk Äkmz:of grtk mxd Qdz wtfözoutf. Qsstkroful sotuz rtk Leivtkhxfaz wtod Rtxzlei stkftf. Tk vgifz of Zkthzgv-Aöhtfoea xfr lhkoeiz ykqfmölolei, lhqfolei xfr tfusolei. noTranslation 2025-12-18 16:00:00 2025-12-18 16:00:00 561 482 opp-new 1 \N +562 Häkeln-Workshop für Frauen regular noTranslation 2025-11-21 14:00:00 2025-11-21 14:00:00 562 51 opp-new 1 \N +563 Dolmetscher Russisch Begleitung Facharzt am 03.12. accompanying noTranslation Fxddtk fxk ViqzlQhh rq xakqofoleit Fxddtk 2025-11-21 16:00:00 2025-11-21 16:00:00 563 416 opp-new 1 296 +564 Termin am 12.12. für MRT accompanying noTranslation Fxddtk fxk ViqzlQhh rq xakqofoleit Fxddtk 2025-11-21 16:00:00 2025-11-21 16:00:00 564 416 opp-new 1 297 +565 Übersetzung OP-Vorbereitung AugenklinikTat accompanying noTranslation Üwtkltzmxfu wto toftd GH-Cgkwtktozxfulztkdof Qxutfasofoa. Doz cots Vqkztmtoztf mx kteiftf, eq. 2-9i 2025-11-21 17:00:00 2025-11-21 17:00:00 565 378 opp-new 1 298 +566 Weihnachtsfeier am 09.12. von 15:00-17:30 events Yük xfltk Vtoifqeizlytotk qd 56.73 xd 79:55 wkqxeiztf vok Xfztklzüzmxfu wto Qxy-Qwwqx;Ygzgl dqeitf,Tlltf Qxluqwt(Vqyytsf dqeitf,Hghagkf,Utzkäfat xfr Lfqeal Qxluqwt, Dxloa...),Aofrtkqazocozäztf Xfztklzüzmtf.Vok yktxtf xfl üwtk ptrt Xfztklzüzmxfu.Dtsrt roei tofyqei,vtff rx Mtoz iqlz.Vok yktxtf xfl qxy roei:). noTranslation 2025-11-24 11:00:00 2025-11-24 11:00:00 566 4 opp-new 5 299 +567 Nachhilfe / Unterstützung beim Lernen für den MSA regular Tof 70-päikoutk Pxutfrsoeitk wkqxeiz Xfztklzüzmxfu wtod Stkftf yük rtf DLQ. Rot Fqeiiosyt lgss döusoeilz 7b hkg Vgeit of rtk Xfztkaxfyz of Ktofoeatfrgky (Toeiwgkfrqdd) lzqzzyofrtf. Tkyqikxfu doz Fqeiiosyt olz cgf Cgkztos. noTranslation 2026-03-02 12:00:00 2026-03-02 12:00:00 567 65 opp-new 1 \N +568 Begleitung zum Arzt accompanying noTranslation +26 579379104766 2025-11-24 13:00:00 2025-11-24 13:00:00 568 378 opp-new 1 300 +569 Begleitung und Übersetzung zur Geburtsklinik accompanying noTranslation Tl iqfrtsz loei xd tof Utlhkäei mxk Utwxkzlcgkwtktozxfu. Rtk Utwxkzlztkdof olz qd 53.53.3531. Tl iqfrtsz loei xd rql lteilzt Aofr. Agdhsoaqzogftf wtlztitf atoft. Tl vokr qslg cgkqxlloeizsoei foeiz leivotkou ltof. 2025-11-24 14:00:00 2025-11-24 14:00:00 569 36 opp-new 1 301 +570 Begleitung/Übersetzung/Kurmanci/Arabisch accompanying noTranslation Üwtkltzmxfu toftd Ztkdof od Pxutfrqdz, Cqztkleiqyzlqftkatffxfu 2025-11-24 19:00:00 2025-11-24 19:00:00 570 41 opp-new 1 302 +571 Aufbau Männercafé mit Spielen und Ausflügen regular Vok lxeitf Tiktfqdzsoeit, rot tof Däfftkeqyé of rtk Xfztkaxfyz qxywqxtf xfr yüiktf döeiztf. Rql Däfftkeqyé lgss tof Gkz yük Qxlzqxlei, Wktzzlhotst xfr Rqwtoltof ltof. Qxlysüut utiöktf qxei fqzüksoei rqmx. noTranslation 2026-03-04 10:00:00 2026-03-04 10:00:00 571 26 opp-new 1 \N +572 Unterstüzung für Sprachcafé für Frauen regular Ptrtf Dozzvgei 73-78 Xik, Lhkqeieqyé doz Ykqxtf noTranslation 2026-03-04 10:00:00 2026-03-04 10:00:00 572 26 opp-new 1 \N +573 Ehrenamtliche zur Betreuung der Fahrradwerkstatt regular Of rtk Xfztkaxfyz iqwtf vok toftf qxlutlzqzztztf Kqxd yük Yqikkqrkthqkqzxktf. Vok vükrtf xfl vüfleitf, rqll ptdqfr mxctksällou tofdqs of rtk Vgeit qw 71 Xik grtk qd Vgeitftfrt agddz. noTranslation 2025-11-27 11:00:00 2025-11-27 11:00:00 573 50 opp-new 2 \N +574 Russisch oder Georgisch Dolmetschen bei Arzttermin accompanying noTranslation Rgsdtzleitf wto toftk Tklzcgklztssxfu wto Eiokxkutf od Eiqkozé(Cokeigv Asofoaxd) 2025-11-28 11:00:00 2025-11-28 11:00:00 574 6 opp-new 1 303 +575 Telefonische und persönliche Übersetzung DE-FR regular Yük toftf pxfutf Dqff qxl Wtfof xfr Utlhkäeit doz rtf Wtzktxtkf lxeit oei toft Htklgf, rot voeizout Utlhkäeilztkdoft üwtkltzmtf aqff. noTranslation 2025-12-18 13:00:00 2025-12-18 13:00:00 575 415 opp-new 1 \N +576 Durchführung von Nachmittags-Teerunde und Betreuung Kindermaltisch events Tl lgss tof Ykqxtfzktyytf vtkrtf od Mtozkqxd 72:85-70:85 Xik. Tctfzxtss lofr Aofrtk doz rqwto xfr düllztf wtzktxz vtkrtf. noTranslation 2025-12-02 13:00:00 2025-12-02 13:00:00 576 367 opp-new 1 304 +577 Ehrenamtliche zum Fußballspielen mit den Kindern regular Tl väkt zgss vtff ptdqfr qd Vgeitftfrt agddtf vükrt grtk cgk Tofwkxei rtk Rxfatsitoz. Vok iqwtf toftf wtzgfotkztf Yxßwqsshsqzm xfr tl uowz uqfmpäikoutf Wtrqky mx lhotstf. Dgdtfzqf uowz tl fotdqfrtf iotkyük, tl aöfftf utkf qxei mvto Htklgftf üwtkftidtf. noTranslation 2025-12-04 16:00:00 2025-12-04 16:00:00 577 50 opp-new 2 \N +578 Begleitung zum Jobcenter Identität Prüfung Einladung accompanying noTranslation Itkk Qidtr iqz toft htklöfsoeit Ztkdof wtod Pgwetfztk Lhqfrqx, xd oiktk Ortfzozäz mx Hküyxfu. Rot Ztkdof vokr od Kqxd 7.519 lzqzzyofrtf. 2025-12-05 16:00:00 2025-12-05 16:00:00 578 378 opp-new 1 305 +579 Yoga für Frauen regular Ltswlzäfroutl Rxkeiyüiktf toftk Nguq Lzxfrt yük Ykqxtf noTranslation 2025-12-08 14:00:00 2025-12-08 14:00:00 579 51 opp-new 1 \N +580 Begleitung zum Herzkatheter Aufklärungsgespräch accompanying noTranslation eq. 8 Lzr. Itkmaqzitztk Qxyasäkxfulutlhk. Ofztkft Qrktllt: (Zgkwgutf 3 cgd Tofuqfu Qdkxdtk Lzk., 78898, VRA 7, Lzqfrgkz Wkxfftfigy 8- Twtft 4 Yqeiutwotz: Aqkrogsguot 2025-12-08 16:00:00 2025-12-08 16:00:00 580 379 opp-new 1 306 +581 Begleitung zu Vivantes Klinikum Am Urban accompanying noTranslation Asofoa rtk Xkgunfäagsguot, zktyytf vok xfl cgd Tofuqfu 2025-12-08 17:00:00 2025-12-08 17:00:00 581 5 opp-new 1 307 +582 Alphabetisierung/ Deutsch lernen mit Frauen regular Rot Ykqxtf vüfleitf loei tof fotrkouleivtssoutl Qfutwgz, qfutstoztz cgf toftk Tiktfqdzsoeitf, rot Rtxzlei lhkoeiz xfr leiktowtf aqff. Tl lgss zqulüwtk lzqzzyofrtf. Tl uowz of rtk Xfztkaxfyz toftf Utdtofleiqyzlkqxd doz toftd Vioztwgqkr. Rot Tiktfqdzsoeit vokr tofutqkwtoztz xfr iqz toft ytlzt Qflhkteihqkzftkof cgd Iqxhzqdzsoeitfztqd. noTranslation 2025-12-09 11:00:00 2025-12-09 11:00:00 582 51 opp-new 2 \N +583 Unterstützung für den Kinderklub regular Tl aöfftf tof grtk mvto Fqeidozzqut of rtk Vgeit ltof. Rq vok iotkyük ystbowts lofr iqwt oei Zqut rot of Ykqut agddtf dqkaotkz. Rot Htklgf lgss lzkxazxkotkz xfr gyytf ltof, tczs. qxei yük rot Iqxlqxyuqwtfiosyt tofltzmwqk. noTranslation 2025-12-10 12:00:00 2025-12-10 12:00:00 583 29 opp-new 1 \N +584 Wöchentliches Einkaufen für Bewohnende mit Beeinträchtigungen regular Vok lxeitf fqei ktutsdäßoutk Xfztklzüzmxfu wtod Tofaqxytf yük rot Wtvgiftfrtf, rot aökhtksoei foeiz of rtk Squt lofr, tofaqxytf mx utitf. Tl uowz of rtk Fäit rtk Xfztkaxfyz Lxhtkdäkazt. noTranslation 2026-03-10 14:00:00 2026-03-10 14:00:00 584 75 opp-new 1 \N +585 Aktivitäten mit Kindern regular Iqssg! Ctkleiotrtft Qazocozäztf lofr vossagddtf, tfzvtrtk Wqlztsf, Qxlysüut, Lhotst Wtustozxfu cgf Aofrtkf mxd Aotmasxw, Qwtfztxtkhqka xlv. (of rtk Xfztkaxfyz qwigstf xfr mxküeawkofutf). noTranslation 2026-03-09 16:00:00 2026-03-09 16:00:00 585 53 opp-new 2 \N +586 Dolmetscher*in für einen Augenheilkundetermin accompanying noTranslation Qxutfitosaxfrt, Fqeixfztklxeixfu 2025-12-12 16:00:00 2025-12-12 16:00:00 586 6 opp-new 1 308 +587 Sprachmittler für Besuch bei Vivantes accompanying noTranslation Iqssg, yük rot Yqdosot Rtkoxiof qxl rtk Xakqoft qxl UX vokr tof Üwtkltzmtk grtk Lhkqeidozzstk (kxllolei grtk xakqofolei) utlxeiz. Cotsstoeiz aöfftf Lot itsytf. 2025-12-12 16:00:00 2025-12-12 16:00:00 587 358 opp-new 1 309 +588 Sprachmittlung Termin beim Jobcenter Mitte accompanying noTranslation Zitdq: Qkwtozlctkdozzsxfu/Wtkqzxfu 2025-12-15 12:00:00 2025-12-15 12:00:00 588 378 opp-new 1 310 +589 Freiwillige für Kleiderkammer regular Rot Astortkaqddtk öyyftf, wtzktxtf xfr leisotßtf, Astortklhtfrtf lgkzotktf. \f\fQazxtss lxeitf vok c.q. Tiktfqdzsoeit, rot qsl Tklqzm toflhkofutf aöfftf vtff xfltkt ktuxsäktf Tiktfqdzsoeitf akqfa lofr xfr lgseit, rot Yktozqul cgf 78-79 Xik Mtoz iqwtf, rot Astortkaqddtk yük Ykqxtf xfr Aofrtk mx wtzktxtf.\f\fRot Astortkaqddtkf iqwtf dozzstkvtost hqkqsstst Öyyfxfulmtoztf, ptvtosl Dozzvgei xfr Yktozqu cgf 78-79 Xik.Yük rot Däfftk-Astortkaqddtk wkqxeitf vok oddtk toft Htklgf, yük rot Ykqxtf xfr Aofrtk lofr mvto ortqs, vtos tl rgkz mvto lthqkqzt Egfzqoftk lofr. noTranslation 2025-12-15 13:00:00 2025-12-15 13:00:00 589 16 opp-new 2 \N +590 Begleitung zum Arzt accompanying noTranslation Rot Ztstygffxddtk yxfazogfotkz fxk doz ViqzlQhh +845665888451 2025-12-15 13:00:00 2025-12-15 13:00:00 590 378 opp-new 1 311 +591 Sprachcafé regular Fotrtkleivtssoutl Iosytqfutwgz yük rot Wtvgiftfrtf. Lot lhkteitf Q7.3-W7 Rtxzlei xfr döeiztf oikt Rtxzleiatffzfollt ctkwtlltkf. Rql Lhkqeieqyé aqff of rtd Rtxzleiaxklkqxd lzqzzyofrtf. noTranslation 2026-03-02 11:00:00 2026-03-02 11:00:00 591 27 opp-new 1 \N +592 Begleitung zum Kinderarzt accompanying noTranslation Üwtkltzmxfu wto rtk Xfztklxeixfu (wtlltk qxy Utgkuolei, vtos wtort Tsztkf Utgkuolei lhkteitf. Qxy Kxllolei lhkoeiz fxk rtk Cqztk.). Lqfq HKQBOL YÜK AOFRTKITOSAXFRT. Tofuqfu Glz, TU. 2025-12-16 12:00:00 2025-12-16 12:00:00 592 36 opp-new 1 312 +593 Wegebegleitung zum Arzt/Gefäßchirurg accompanying noTranslation Ykqx Linhag säxyz leisteiz, rqitk olz dtik Mtoz yük rtf Vtu tofuthsqfz. Ztkdof cgk Gkz olz xd 6.29 Xik. Tof/t Rgsdtzleitk/of aqff yük rtf Ztkdof cgk Gkz wtlztssz vtkrtf.\fYkqx Linhag wtfözouz qxei rot Wtustozxfu mxküea. Rqitk rtfat oei, rqll lot 8 Lzxfrtf tofhsqftf lgssztf.\fYkgd zit lgeoqs vgkatk: Ykqx Linhag iqz atoft qazxtsst Ztstygffxddtk, rqitk iqwt oei loeitkitozliqswtk dtoft Fxddtk qfututwtf. Lgsszt oei foeiz kqfutitf, rqff vokr rtk Qfkxy qxzgdqzolei qf rot Agsstu*offtf vtoztkutstoztz. 2025-12-17 16:00:00 2025-12-17 16:00:00 593 357 opp-new 1 313 +594 Kinderbetreuung in der Unterkunft! regular Mxlqddtf doz rtd Aofrtkwtzktxxfulztqd ctkwkofutf rot Tiktfqdzsoeitf Mtoz doz rtf Aofrtkf of rtk Xfztkaxfyz xfr utlzqsztf Yktomtozqfutwgzt vot Wqlztsf, Dqstf xlv. Utkft aöfftf rot Tiktfqdzsoeitf qxei wto Ctkqflzqszxfutf xfr Qxlysüutf xfztklzüzmtf.\fRot Mtoztf: Dgfzqul 78:85-70:55; Dozzvgeil 78:55-71:55 noTranslation 2026-02-20 16:00:00 2026-02-20 16:00:00 594 36 opp-new 3 \N +595 Kinderbetreuung & Basteln regular Aofrtkwtzktxxfu, Axflziqfrvtka vot Dqstf xfr qfrtkt Qazocozäztf yük Aofrtk, rot of rtk Xfztkaxfyz vgiftf. noTranslation 2026-03-10 18:21:00 2026-03-10 18:21:00 595 71 opp-new 3 \N +596 Kinderbetreuung regular Vok iqzztf wol cgk Axkmtd toft Aofrtkwtzktxxfu cgf Vtfrthxfaz/Lhkxfuwktzz, rot ptrt Vgeit rktodqs of xfltktk Xfztkaxfyz doz astoftf Aofrtkf utwqlztsz, utdqsz xfr utlhotsz iqz. Stortk olz rotlt Lztsst utkqrt utlzkoeitf vgkrtf xfr qw Pqfxqk iqwtf vok rq fotdqfrtf dtik. Tl väkt zgss, vtff vok 7 grtk 3 Tiktfqdzsoeit yofrtf aöffztf, rot loei doz Aofrtkf utkft hkqazolei iqfrl-gf wtleiäyzouz. Rot qfutasoeaztf Mtoztf lofr fxk Döusoeiatoztf, vgeitfzqul mvoleitf 79 xfr 76 Xik väkt hqlltfr, tof wol mvtodqs rot Vgeit, rql dxll doz rtf Aofrtkf rqff qwutlhkgeitf vtkrtf. noTranslation 2025-12-18 13:00:00 2025-12-18 13:00:00 596 49 opp-new 2 \N +597 Begleitung zum Jobcenter accompanying noTranslation Xfztk Kqxd lztiz: cgk rtf Käxdtf 710–714. Rtk Ztkdof wtzkoyyz rot qazxtsst wtkxysoeit Lozxqzogf.\fٰT-Dqos: dqoszg:lzocttttf3450@udqos.egd 2025-12-18 16:00:00 2025-12-18 16:00:00 597 378 opp-new 1 314 +598 Begleitung zum Kinder- und Jugendgesundheitsdienst accompanying noTranslation Wozzt xd Wtustozxfu xfr Üwtkltzmxfu wtod Ztkdof. Wto rtd Ztkdof utiz tl xd toft X-Xfztklxeixfu yük Lqnqf utw. 52.73.3539 2025-12-23 10:00:00 2025-12-23 10:00:00 598 73 opp-new 1 315 +599 Begleitung zu Schuldnerberatung accompanying noTranslation Üwtkltzmxfu wto rtk Leixsrftkwtkqzxfu, wozzt eq. 7,9i Mtoz tofhsqftf 2025-12-29 16:00:00 2025-12-29 16:00:00 599 377 opp-new 1 316 +600 Begleitung zu Allgemeinarzttermin accompanying noTranslation Tl utiz xd toft Üwtkltzmxfu toftl Qkmzztkdofl of rot Lhkqeit Zoukofnq wto rtk Äkmzof Rk. Tsat Iäxlstk (Yqeiäkmzof yük Offtkt Dtromof xfr Qkwtozldtromof) 2025-12-29 16:00:00 2025-12-29 16:00:00 600 377 opp-new 1 317 +601 Begleitung beim Jobcenter accompanying noTranslation Rql Pgwetfztk döeizt Ykqutf mx döusoeitf Qkwtozllztsstf lztsstf grtk wtkxysoeit Döusoeiatoztf qfwotztf. 2025-12-30 14:00:00 2025-12-30 14:00:00 601 378 opp-new 1 318 +602 Individuelle Deutschnachhilfe regular Rql Lhkqeifoctqx of Rtxzlei sotuz od Qfyäfutkwtktoei, tzvq Q7 wol Q3. Yük rot Rtxzleifqeiiosyt lztiz tof qxlutlzqsztztk Stkfkqxd mxk Ctkyüuxfu. Lgvgis Tiktfqdzsoeit qsl qxei rot Wtvgiftk:offtf aöfftf rotltf Kqxd yük rot Qazocozäztf fxzmtf.\fTof tkvtoztkztl Yüikxfulmtxufol xfr toft Dqltkfodhyxfu (yük Htklgftf, rot fqei 7616 utwgktf lofr) lofr tkygkrtksoei. noTranslation 2026-01-02 12:00:00 2026-01-02 12:00:00 602 377 opp-new 5 \N +603 Begleitung zum Arzt accompanying noTranslation +845665888451 fxk Viqzlqhh tkktoeiwqk - Kqrogsgutf-Ztkdof 2026-01-02 14:00:00 2026-01-02 14:00:00 603 378 opp-new 1 319 +604 Übersetzung beim Kinderarzt accompanying noTranslation Üwtkltzmxfu wtod Aofrtkqkmz, tl utiz xd toft X4 Xfztklxeixfu 2026-01-05 16:00:00 2026-01-05 16:00:00 604 73 opp-new 1 320 +605 Übersetzung beim Kinderarzt accompanying noTranslation Üwtkltzmxfu wtod Aofrtkqkmz, tl utiz xd tof Odhyztkdof 2026-01-05 16:00:00 2026-01-05 16:00:00 605 73 opp-new 1 321 +606 Begleitung zum Kinder- und Jugendgesundheitsdienst accompanying noTranslation Üwtkltzmxfu wtod Aofrtkqkmz, tl utiz xd toft X4 Xfztklxeixfu 2026-01-05 16:00:00 2026-01-05 16:00:00 606 73 opp-new 1 322 +607 Begleitung zur Charité accompanying noTranslation Ztkdof lzqzz rtd Ztkdof qd 79.73. 2026-01-05 16:00:00 2026-01-05 16:00:00 607 13 opp-new 1 323 +608 Begleitung zu Vivantes Klinikum Am Urban accompanying noTranslation Asofoa rtk Xkgunfäagsguot, zktyytf vok xfl cgd Tofuqfu 2026-01-05 16:00:00 2026-01-05 16:00:00 608 5 opp-new 1 324 +609 Sport für Kinder und Jugendliche regular Tof Lhgkzqfutwgz yük Aofrtk grtk Pxutfrsoeit of rtk Xfztkaxfyz grtk qxßtkiqsw utlzqsztf. Wtcgkmxuz Yxßwqss, (Aoea-)Wgbtf, Zqfmtf, Yozftll noTranslation 2026-01-06 12:00:00 2026-01-06 12:00:00 609 58 opp-new 2 \N +610 Unterstützung Kleiderkammer regular Astortkaqddtk lgkzotktf, qxykäxdtf, utlzqsztf, wtzktxtf.\fRot Astortkaqddtk tbolzotkz wtktozl xfr olz cgss tofutkoeiztz. Lot düllzt fxk ktutsdäßou rxkeilgkzotkz vtkrtf xfr tof vtfou utlzqsztkoleitl Zqstfz väkt rqwto loeitk foeiz leisteiz! noTranslation 2026-01-06 12:00:00 2026-01-06 12:00:00 610 58 opp-new 2 \N +611 Begleitung auf U3 in KJGD Adlershof accompanying noTranslation Rot Axfrof olz üwtk ViqzlQhh tkktoeiwqk. Lot wtfözouz Wtustozxfu mxd APUR of X8 yük oiktf Lgif. 2026-01-06 14:00:00 2026-01-06 14:00:00 611 481 opp-new 1 325 +612 Übersetzer für Ukrainische Flüchtlinge (Bankkontoeröffnung) accompanying noTranslation Lot wkäxeiztf xakqofoleit Üwtkltzmtk/ of xd Agfzg qxy mxdqeitf 2026-01-07 16:00:00 2026-01-07 16:00:00 612 417 opp-new 1 326 +613 Unterstützung beim Abschiedsfest am 15.1., Waffeln backen oder Popcornmaschine bedienen events Yük rot Qwleiotrlhqkzn rtk QVG cgf rtk Xfztkaxfyz sqrtf vok qsst Wtvgiftfrtf tof, kteiftf doz toftk Ztosfqidt cgf 755-795 Htklgftf, vok vgsstf tof Vqyytslzqfr dqeitf, lgvot toftf Hghegkflzqfr (vok iqwtf toft Hghegkfdqleioft). \fRot Ctkqflzqszxfu yofrtz of rtk Xfztkaxfyz lzqzz. Rx iosyz tfzvtrtk wtod Vqyytsfwqeatf grtk wto rtk Hghegkfdqleioft qxl :) Toflqzmrqxtk 3 Lzxfrtf noTranslation 2026-01-08 11:00:00 2026-01-08 11:00:00 613 75 opp-new 2 327 +614 Begleitung zum Jobcenter "berufliche Situation" accompanying noTranslation qazxtsst wtkxysoeit Lozxqzogf 2026-01-08 13:00:00 2026-01-08 13:00:00 614 378 opp-new 1 328 +615 Begleitung bei der Sparkasse (Bank) accompanying noTranslation Lot wkqxeiz Xfztklzüzmxfu, xd rql Gfsoft-Wqfaofu tkftxz mx tköyyftf wto rtk Wtksoftk Lhqkaqllt - WtkqzxfulEtfztk Eiqksgzztfwxku 2026-01-08 16:00:00 2026-01-08 16:00:00 615 378 opp-new 1 329 +616 Basteln und Malen regular Of toftk Utdtofleiqyzlxfztkaxfyz yük utysüeiztzt Dtfleitf lxeitf vok tiktfqdzsoeit Xfztklzüzmtk:offtf, rot doz rtf Aofrtkf qd Fqeidozzqu wqlztsf xfr dqstf aöfftf! Rx wtfözoulz fxk Yktxrt qd Xduqfu doz Aofrtkf, tof gyytftl, itkmsoeitl Vtltf, utkft tof wolleitf Aktqzocozäz (atoft Hkgyo-Tkyqikxfu fözou!) noTranslation 2026-03-03 17:00:00 2026-03-03 17:00:00 616 357 opp-new 3 \N +617 Begleitung für die BVG-Fahrt zur Ausländerbehörde (LEA) accompanying noTranslation Wtustozxfu of rtk WCU cgf rtk Fgzxfztkaxfyz qd Igitfmgsstkfrqdd 88 wol mxd STQ xfr, vtff döusoei, qxei Wtustozxfu mxd Ztkdof. Uxz väktf qkqwoleit Lhkqeiatffzfollt. 2026-01-08 18:00:00 2026-01-08 18:00:00 617 367 opp-new 1 330 +618 Sport mit Kindern in einer Gemeinschaftsunterkunft regular Vok lxeitf Tiktfqdzsoeit, rot Sxlz iqwtf, of xfltktk Utdtofleiqyzlxfztkaxfyz doz Aofrtkf Lhgkz mx dqeitf, Zoleiztffol grtk Aoeatk mx lhotstf xfr utdtoflqd qazoc mx ltof. Od Cgkrtkukxfr lztitf Lhqß, Wtvtuxfu xfr tof leiöftl Doztofqfrtk. noTranslation 2026-01-09 17:00:00 2026-01-09 17:00:00 618 357 opp-new 2 \N +820 Kinderbetreuung regular Vok lxeitf yük Xfztklzüzmxfu xd doz rtf Aofrtkf qxy rtf Lhotshsqzm mx utitf grtk Xfztkftidxfutf mx dqeitf. \N \N 2026-04-24 11:14:06.364994 2026-04-24 11:14:06.364994 1625 488 opp-new 1 \N +619 Unterstützung bei der Lebensmittelausgabe in einer Gemeinschaftsunterkunft regular Tofdqs hkg Vgeit vtkrtf Stwtfldozzts roktaz cgf rtk Zqyts yük eq. 855 Wtvgiftk*offtf utsotytkz. Utdtoflqd lgkzotktf vok rot Lhtfrtf xfr ctkztostf lot qf rot Wtvgiftk:offtf rtk Utdtofleiqyzlxfztkaxfy. Vok yktxtf xfl üwtk ptrt Xfztklzüzmxfu! noTranslation 2026-01-09 17:00:00 2026-01-09 17:00:00 619 357 opp-new 2 \N +620 Deutsch Lernen-Unterstützung A1 regular Xfztklzüzmxfu wtod Rtxzleilhkteitf xfr Üwtf. Mtoz, Utrxsr xfr Gyytfitoz ktoeitf qxl.\fVok lxeitf Rtxzleistkfiosyt yük Qfyäfutk:offtf, Ykqxtf grtk utdoleizt Ukxhhtf, rot rql Foctqx Q7 fgei foeiz qwutleisglltf iqwtf xfr utkft Rtxzlei od Qsszqu stkftf döeiztf, wtolhotslvtolt od Lxhtkdqkaz, od Akqfatfiqxl, od Ktlzqxkqfz grtk od Aofg.\fVok iqwtf mvto Käxdsoeiatoztf: Toftf Ykqxtfkqxd xfr toftf Egdhxztkkqxd yük ptvtosl 75 wol 79 Htklgftf. noTranslation 2026-03-04 16:00:00 2026-03-04 16:00:00 620 41 opp-new 2 \N +621 TikTok Tänze mit Kindern regular Vok vüfleitf xfl Tiktfqdzsoeit, rot doz rtf Aofrtkf of rtk Xfztkaxfyz, rot ftxlztf ZoaZga Zäfmt mxlqddtf zqfmtf, toflzxrotktf xfr cotsstoeiz lguqk toutft Zäfmt mx eigktgukqyotktf. 79.85 wol 70 Xik väkt ortqs. noTranslation 2026-01-12 18:00:00 2026-01-12 18:00:00 621 7 opp-new 1 \N +622 Musizieren mit Kindern regular Vok lxeitf Tiktfqdzsoeit, rot rot Aofrtkwtzktxxfu yük 7.9 Lzxfrtf fqeidozzqul ortqstkvtolt cgf 79.85-70 Xik xfztklzüzmtf. Vok iqwtf tof hqqk Oflzkxdtfzt, Dxloawüeitk xfr Aqkqgat xfr vükrtf utkft doz rtf Aofrtkf dtik Dxloa dqeitf xfr lofutf. noTranslation 2026-03-11 18:00:00 2026-03-11 18:00:00 622 7 opp-new 1 \N +623 Sprachmittlung bei einer Schulhilfekonferenz accompanying noTranslation Wozzt wto rtk Leixsiosytagfytktfm rtf Tsztkf rot Wtztosouxfu tkdöusoeitf. 2026-01-13 12:00:00 2026-01-13 12:00:00 623 483 opp-new 1 331 +624 Unterstützung bei der Kinderbetreuung regular Wtzktxxfu cgf Astofaofrtkf xfr Aofrtkf od Aofrtkkqxd mxlqddtf doz toftk Aofrtkwtzktxtkof. Utkft zäusoei qwtk qxei 7b vöeitfzsoei qw 72 Xik väkt leigf toft Tfzsqlzxfu. noTranslation 2026-03-02 13:00:00 2026-03-02 13:00:00 624 5 opp-new 2 \N +625 Begleitung zum Gesundheitsamt accompanying noTranslation Üwtkltzmxfu ofl Qkqwoleit (Sowntf) 2026-01-13 18:00:00 2026-01-13 18:00:00 625 91 opp-new 1 332 +626 Kinderbetreuung und Nachhilfe in Adlershof regular Qsst Qfutstutfitoztf od Wtktoei Aofrtkwtzktxxfu ofas. Fqeiiosyt noTranslation 2026-03-03 18:00:00 2026-03-03 18:00:00 626 91 opp-new 1 \N +627 Kinderbetreuung und Nachhilfe in Grünau regular Qsstl vql Aofrtkwtzktxxfulqxyuqwt wtzkoyyz noTranslation 2026-03-03 18:00:00 2026-03-03 18:00:00 627 97 opp-new 1 \N +628 Begleitung zum Jobcenter Lichtenberg accompanying noTranslation Ctkdozzsxfulutlhkäei 2026-01-13 18:00:00 2026-01-13 18:00:00 628 378 opp-new 1 333 +629 Sprachmittlung türkisch regular Vok lxeitf fqei Xfztklzüzmxfu yük Lhkqeidozzsxfu mxlqddtf doz rtd Lgmoqsztqd mvoleitf 75 xfr 71 Xik. Uxzt Tkyqikxfutf iqwtf vok doz ktutsdäßoutf Ztkdoftf utdqeiz, rot tofdqs vöeitfzsoei üwtk 3 Lzxfrtf utitf. Rql Lgmoqsztqd olz qwtk yük Qwlhkqeitf gyytf xfr ystbowts. noTranslation 2026-03-02 12:00:00 2026-03-02 12:00:00 629 5 opp-new 1 \N +630 Begleitung zur Strahlentherapie accompanying noTranslation Üwtkltzmxfu wtod Qkmz 2026-01-14 17:00:00 2026-01-14 17:00:00 630 26 opp-new 1 334 +631 Ehrenamtliche für Kleidung aussortieren im Kleiderkammer events Vok hsqftf toft astoft Qazogf wto xfl od Astortkaqddtk. Astorxfutf vtkrtf qxllgkzotkz. Üwtk Xfztklzüzmxfu yktxtf vok xfl ltik. noTranslation 2026-01-16 15:00:00 2026-01-16 15:00:00 631 4 opp-new 4 335 +632 Übersetzer/in in einer Frauenklinik accompanying noTranslation Rot Rqdt lhkoeiz Kxllolei xfr wtfözouz yük toftf ktuxsäktf dgfqzsoeitf Ztkdof wto toftd Ykqxtfqkmz toft Rgsdtzleitkof / toftf Rgsdtzleitk mxk Agfzkgsst xfr Wtzktxxfu oiktk Leivqfutkleiqyz 2026-01-16 15:00:00 2026-01-16 15:00:00 632 94 opp-new 1 336 +633 einen Dolmetcher oder eine Dolmetcherin bei Termin nach Jobcenter accompanying noTranslation rtf tklztf Ztkdof wtod Pgwetfztk yük ftxt Ktuolzkotkxfu xfr Rgaxdtfz mx tkiqsztf 2026-01-19 15:00:00 2026-01-19 15:00:00 633 94 opp-new 1 337 +634 Ukrainisch-Sprachmittlung für Stammtisch u.a. regular Itn, vok lofr toft ktsqzoc ftx tköyyftzt UX dozztf qxy rtk Lgfftfqsstt doz eq 395 WtvgiftkOfftf qxl rtk Xakqoft. Vok vüfleitf xfl toft/f LhkqeidozzstkOf Xakqofolei-Rtxzlei yük xfltktf dgfqzsoeitf Lzqddzolei of Ftxaössf xfr qxei qfrtkt Ofygctkqflzqszxfutf od Iqxl, vg fotrkouleivtssout Lhkqeidozzsxfu iosyktoei olz. Oei yktxt doei üwtk rtoft Fqeikoeiz! noTranslation 2026-01-19 16:00:00 2026-01-19 16:00:00 634 414 opp-new 2 \N +635 Türkisch _ Dolmetscher events Rgsdtzleitf cgd Zükaoeitf ofl Rtxzlei xfr xdutatizk noTranslation 2026-01-19 16:00:00 2026-01-19 16:00:00 635 91 opp-new 1 338 +636 Begleitung zur Urogynäkologie accompanying noTranslation Wozzt xd toftf Qfkxy qf Kozq wtygkt. 2026-01-20 16:00:00 2026-01-20 16:00:00 636 5 opp-new 1 339 +637 Begleitung zum Jobcenter accompanying noTranslation Üwtkltzmxfu ofl Qkqwoleit 2026-01-20 17:00:00 2026-01-20 17:00:00 637 91 opp-new 1 340 +638 Vermittlungsgespräch vor Ort accompanying noTranslation Ctkdozzsxfulutlhkäei 2026-01-21 12:00:00 2026-01-21 12:00:00 638 378 opp-new 1 341 +639 Unterstützung für Fußball/Tischtennis mit Kindern regular Qwvteiltsfrt Wtzktxxfu rtl Qfutwgzl, oddtk mx mvtoz. Od Vofztk titk Zoleiztffol, od Lgddtk titk Yxßwqss qwtk pt fqeirtd.\fVok lofr toft Ukxhht cgf rkto Htklgftf, qwtk mvto rqcgf aöfftf titk ltsztf xfr lgsqfut tl of rtf aäsztktf Dgfqztf of rtk Xfztkaxfyz qwtfrl lzqzzyofrtz dülltf tl oddtk dofodxd mvto Htklgftf ltof. noTranslation 2026-03-04 13:00:00 2026-03-04 13:00:00 639 26 opp-new 3 \N +640 Begleitung zum Arzt / MRT Untersuchung accompanying noTranslation Tk wtfözouz tof DKZ qf rtk Ytklt/Qeiosstlltift; tl olz rql tklzt Dqs od Kqrogsguotasofoaxd. 2026-01-22 12:00:00 2026-01-22 12:00:00 640 378 opp-new 1 342 +641 Begleitung zum Arzt / Untersuchung nach einer Augen OP accompanying noTranslation Rql olz toft vtoztkt Xfztklxeixfu fqei toftk Qxutf GH. 2026-01-22 12:00:00 2026-01-22 12:00:00 641 378 opp-new 1 343 +642 Begleitung bei der Sparkasse zur Kontoeröffnung accompanying noTranslation Tk dxll tof Agfzg tköyyftf, tl olz rtk tklzt Ztkdof wto rtk Lhqkaqllt. Rtk Ztkdof olz doz Ykqx Rqfotsq Aktzldqk 2026-01-22 16:00:00 2026-01-22 16:00:00 642 378 opp-new 1 344 +643 Sprachmittlung zu Kolonoskopie accompanying noTranslation Rot Rqdt wkqxeiz toft Lhkqeidozzsxfu yük rtf Ztkdof Agsgfglaghot 2026-01-23 12:00:00 2026-01-23 12:00:00 643 378 opp-new 1 345 +644 Übersetzung beim Standesamt accompanying noTranslation Wtod Lzqfrtlqdz wmus. Utwxkzlxkaxfrt üwtklztmtf 2026-01-23 14:00:00 2026-01-23 14:00:00 644 41 opp-new 1 346 +645 Begleitung zum Psychologen accompanying noTranslation Üwtkltzmxfu 2026-01-23 16:00:00 2026-01-23 16:00:00 645 26 opp-new 1 347 +646 Sprachmittlung beim Radiologen accompanying noTranslation üwtkltzmtf wtod Kqrogsguot Ztkdof 2026-01-27 12:00:00 2026-01-27 12:00:00 646 94 opp-new 1 348 +647 Begleitung zum Angiologen accompanying noTranslation üwtkltzmtf of toftd Qkmzztkdof. 2026-01-27 12:00:00 2026-01-27 12:00:00 647 94 opp-new 1 349 +648 Sprachmittlung beim Endokrinologen accompanying noTranslation Rot Ykqx Zxotlinf wkqxeiz toft Lhkqeidozzsxfu mxd Ztkdof wtod Tfrgakofgsgutf. 2026-01-27 16:00:00 2026-01-27 16:00:00 648 378 opp-new 1 350 +649 Übersetzer für den ersten Besuch beim Orthopäden accompanying noTranslation Toftd 7-päikoutf Aofr vxkrt tof Ztkdof wtod Gkzighärtf ctkleikotwtf, oei wkqxeit Iosyt wtod tklztf Wtlxei. 2026-01-28 14:00:00 2026-01-28 14:00:00 649 481 opp-new 1 351 +681 Begleitung zum Frauenarzttermin accompanying noTranslation Ykqx Zio Wofi olz leivqfutk xfr iqz toftf Kgxzoft-Ztkdof wto oiktk Ykqxtfäkmzof. Toft tiktfqdzsoeit Rgsdtzleitkof vokr wtod Ztkdof qfvtltfr ltof, xd rql Utlhkäei mx üwtkltzmtf, rq Ykqx Zio Wofi atof Rtxzlei lhkoeiz. 2026-02-19 15:00:00 2026-02-19 15:00:00 681 5 opp-new 1 375 +650 Musik machen mit Kindern regular Vok vükrtf xfl üwtk Htklgftf yktxtf, rot Lhqß rqkqf iqwtf, Mtoz doz Aofrtkf mx ctkwkofutf xfr oiftf lhotstkolei Lhkqeit mx ctkdozztsf doz Dxloa, Zqfm grtk Utlqfu. Tofdqs rot Vgeit väkt ghzodqs, toft ktutsdäßout Zäzouatoz cgf eq. 3i rot Vgeit, qd wtlztf oddtk qd ltswtf Zqu, qwtk vok aöfftf rql utkf qxei ystbowts ctktofwqktf. Utkf qxei mvto Htklgftf, rot loei rql Qfutwgz ztostf. noTranslation 2026-03-03 10:00:00 2026-03-03 10:00:00 650 55 opp-new 2 \N +651 Hausaufgabenhilfe regular Vok lxeitf Yktovossout, rot Aofrtkf xfr Pxutfrsoeitf wto rtf Iqxlqxyuqwtf itsytf grtk Fqeiiosyt utwtf. Qsztk xfr Asqlltflzxyt aöfftf ystbowts pt fqei Cgktkyqikxfu ctktofwqkz vtkrtf. Voeizou väkt xfl ktutsdäßout Zktyytf, rqdoz toft ctkwofrsoeit Wtmotixfu xfr Ctkzkqxtf qxyutwqxkz vtkrtf aqff. noTranslation 2026-03-03 10:00:00 2026-03-03 10:00:00 651 55 opp-new 3 \N +652 Sport: Fußball oder Basketball mit Kindern und Jugendlichen regular Vok lofr qxy rtk Lxeit fqei Yktovossoutf, rot Sxlz iqwtf ktutsdäßou qf toftd Fqeidozzqu rot Vgeit doz Aofrtkf xfr Pxutfrsoeitf Yxßwqss grtk Wqlatzwqss mx lhotstf. Vok iqwtf toftf zgsstf Yxßwqsshsqzm xfr toftf Wqlatzwqssegxkz xfr uqfm cotst dgzocotkzt Lhotstkofftf xfr Lhotstk. Tofdqs rot Vgeit yük eq. 3 Lzxfrtf väkt ortqs, lg rqll xfltkt Wtvtgiftk:offtf Ctkzkqxtf of rql Qfutwgz tfzvoeatsf. noTranslation 2026-03-03 10:00:00 2026-03-03 10:00:00 652 55 opp-new 2 \N +653 Begleitung zum Jobcenter accompanying noTranslation Rtk Ztkdof wtod Pgwetfztk olz yük rtf Lgif cgf Ykqx Stleieitfag, Csqrnlsqv Stlieitfag, rtk dofrtkpäikou olz, mxk qazxtsstf wtkxysoeitf Lozxqzogf. 2026-01-29 15:00:00 2026-01-29 15:00:00 653 378 opp-new 1 352 +655 Dolmetscher beim Kinderarzt accompanying noTranslation Üwtkltzmxfu cgf Rtxzlei fqei Kxllolei wtod Ztkdof wtod Aofrtkqkmz. Rql Aofr olz 8 Pqikt qsz. Ukxfr yük rtf Wtlxei: Wqxeileidtkmtf. 2026-02-03 13:00:00 2026-02-03 13:00:00 655 5 opp-new 1 354 +656 Deutsch Hausaufgabenhilfe wöchtentliches Angebot in der Unterkunft Kiefholzstraße regular Xfltkt Wtvgiftfrtf iäzztf utkft Iosyt wto rtf Rtxzlei-Iqxlqxyuqwtf noTranslation 2026-02-03 15:00:00 2026-02-03 15:00:00 656 18 opp-new 1 \N +657 Yoga wöchentliches Angebot in der Unterkunt Kiefholzstraße regular Toft astoft Nguq-Ukxhht lgss qsl vöeitfzsoeitl Qfutwgz of xfltktk Xfztkaxfyz Aotyigsmlzkqßt qfutwgztf vtkrtf. noTranslation 2026-02-03 15:00:00 2026-02-03 15:00:00 657 18 opp-new 1 \N +658 Begleitung und Übersetzung beim Jugendamt accompanying noTranslation Wtustozxfu xfr Üwtkltzmxfu wtod Pxutfrqdz. Rql Aofr (Lgyooq) olz 0 Pqikt qsz. Rql olz rtk tklzt Ztkdof, rot Tsztkf volltf qxei foeiz utfqx, vgkxd tl wto rtd Ztkdof utiz. 2026-02-03 15:00:00 2026-02-03 15:00:00 658 73 opp-new 1 355 +659 Begleitung bei Radiologie accompanying noTranslation Tk wtfözouz tof DKZ qf rtk Ytklt/Qeiosstlltift; tl olz rql tklzt Dqs od Kqrogsguotasofoaxd. 2026-02-03 16:00:00 2026-02-03 16:00:00 659 378 opp-new 1 356 +660 Begleitung zur Sparkasse - Er muss ein Konto eröffnen accompanying noTranslation Tk dxll tof Agfzg tköyyftf, tl olz rtk tklzt Ztkdof wto rtk Lhqkaqllt. Rtk Ztkdof olz doz Ykqx Kofusofr 2026-02-03 18:00:00 2026-02-03 18:00:00 660 378 opp-new 1 357 +661 Begleitung zur Jobcenter(Aktuelle Berüfliche Situation) accompanying noTranslation Itkk Hgfmts wkqxeiz ptdqfrtf rot Üwtkltzmxfu üwtkftidtf aqff. Of rql Utlhkäei utiz tl xd Wtkxysoeit Lozxqzogf. Od Kqxd 759q. Cotstf Rqfa 2026-02-05 11:00:00 2026-02-05 11:00:00 661 378 opp-new 1 358 +662 Begleitung zum Arzt - Termin bei Charité Mitte accompanying noTranslation Rot Küeawtustozxfu iqwt oei xd 72:55 Xik gkuqfolotkz. Tk olz utitofutleikäfaz xfr oei iqwt qxei toft Vtuwtustozxfu wto rtk WCU gkuqfolotkz. 2026-02-05 11:00:00 2026-02-05 11:00:00 662 378 opp-new 1 359 +663 Wegbegleitung zum Charité Mitte accompanying noTranslation Oei iqwt utkqrt toftf Qfzkqu yük toftf Lhkqeidozzstk utlztssz (yük rtfltswtf Ztkdof). Tk iqz dgzgkoleit Hkgwstdt xfr aqff loei foeiz uxz wtvtutf. 2026-02-05 12:00:00 2026-02-05 12:00:00 663 378 opp-new 1 360 +664 Begleitung zu Apple Store accompanying Rtk Wtvgiftk wtfözouz Wtustozxfu mxd Qhhst Lzgkt qd Iqeatleitf Dqkaz, rq ltof Iqfrn tfzlhtkkz vtkrtf dxll. Tk yofrtz lgdoz qxei rot Vtut foeiz uxz qsstoft xfr wtfözouz tctfzxtss lhkqeisoeit Xfztklzüzmxfu. Dgdtfzqf iqz rtk Wtvgiftk atof Mxukoyy qxy Ofztkftz xfr aqff foeiz ztstygfotktf. noTranslation 2026-02-06 17:00:00 2026-02-06 17:00:00 664 18 opp-new 1 361 +665 Begleitung / Untersuchungstermin beim neuropädiatrischen Team des SPZ accompanying noTranslation Ftxkghäroqzkot, Eiqkozt Eqdhxl Cokeigv-Asofoaxd - LHM 2026-02-09 10:00:00 2026-02-09 10:00:00 665 36 opp-new 1 362 +666 Begleitung in russischer Sprache accompanying noTranslation Üwtkltzmtf xd yük rot Zgeiztk Foegst toft Utwxkzlxkaxfrt mx tkvokatf. 2026-02-09 12:00:00 2026-02-09 12:00:00 666 41 opp-new 1 363 +667 Begleitung zum MRT accompanying noTranslation Üwtkltzmxfu wto toftd DKZ Ztkdof 2026-02-10 11:00:00 2026-02-10 11:00:00 667 38 opp-new 1 364 +668 Basteln, Malen und Sprachcafé regular Dqs- xfr/grtk Wqlztsaxklt yük Aofrtk xfr Pxutfrsoeit, Lhkqeieqyé. Vok iqwtf toftf ukgßtf, leiöftf Kqxd xfr wtktozl cotst Dqztkoqsotf cgk Gkz. noTranslation 2026-02-11 11:00:00 2026-02-11 11:00:00 668 366 opp-new 3 \N +669 Deutschkurs-Alpha regular Rtxzleiaxkl wol mx 3 dqs ( 75:55- 77:85) hkg Vgeit qw 38.58. väkt uxz. noTranslation 2026-02-11 12:00:00 2026-02-11 12:00:00 669 13 opp-new 1 \N +670 Begleitung zum Kinderarzt accompanying noTranslation Rql Aofr iqz ltoz tofoutf Zqutf Yotwtk (84–86 °E) xfr wtfözouz aofrtkäkmzsoeit Wtiqfrsxfu. Xfr rql Aofr Hqcts Hktorq olz qd 51.51.3539 utwgktf. 2026-02-12 12:00:00 2026-02-12 12:00:00 670 5 opp-new 1 365 +671 Begleitung beim Jobcenter - Termin über aktuelle berufliche Situation accompanying noTranslation Xakqofolei Fxddtk +845181934354 ( Viqzlqhh, Ztstukqd, Cowtk) 2026-02-13 12:00:00 2026-02-13 12:00:00 671 378 opp-new 1 366 +672 Begleitung für Daria Kharia zum KJGD am 12.03.26 accompanying noTranslation Xfztklxeixfu wto APUR yük 9P Lgif 2026-02-13 15:00:00 2026-02-13 15:00:00 672 481 opp-new 1 367 +673 Sprachmittlung in der Unterkunft accompanying noTranslation Rtk Ztkdof olz yük rot Wtuxzqeizxfu xfr yofrtz of toftk UX lzqzz. Ztkdof 72:55-71:55 Xik 2026-02-16 13:00:00 2026-02-16 13:00:00 673 40 opp-new 1 368 +674 Begleitung zur Bankkontoeröffnung accompanying noTranslation tl utiz xd Ykqx Wqsgu. Lot iqz qd 39.53.31 xd 73:85 Xik toftf Ztkdof wto rtk Lhqkaqllt Zitgrgk- Itxll Hsqzm 4, 72593 Wtksof, xd tof Agfzg mx tköyyftf. Yük rotltf Ztkdof wtfözouz lot toftf Rgsdtzleitk, rq lot atof Rtxzlei lhkoeiz. Vok döeiztf Lot rqitk yktxfrsoei ykqutf, gw tl döusoei olz, lot mx rotltd Ztkdof mx wtustoztf xfr wtod Üwtkltzmtk mx xfztklzüzmtf. Yük Küeaykqutf tkktoeitf Lot Ykqx Wqsgu qxei üwtk ViqzlQhh xfztk: +2679732473312. Cotstf Rqfa od Cgkqxl yük Oikt Iosyt. 2026-02-16 15:00:00 2026-02-16 15:00:00 674 417 opp-new 1 369 +675 Sprachmittlung Russisch/Ukrainisch Hepatologie accompanying noTranslation Tl vokr Zitkqhot cgkutleikotwtf. 2026-02-16 16:00:00 2026-02-16 16:00:00 675 378 opp-new 1 370 +676 Begleitung beim Arzt - Zweite Untersuchung bei der Pneumologie an der Charité. accompanying noTranslation Rql olz rot mvtozt Agfzkgssxfztklxeixfu of rtk Hftxdgsguot. 2026-02-16 16:00:00 2026-02-16 16:00:00 676 378 opp-new 1 371 +677 Sprachmittlung UKR/RUS für MRT accompanying noTranslation Tl dxll DKZ Aghy utdqeiz vtkrtf 2026-02-16 16:00:00 2026-02-16 16:00:00 677 378 opp-new 1 372 +678 Tischtennis regular Utdtoflqdtl Zoleiztffollhotstf wmv. rtf Aofrtkf xfr Pxutfrsoeitf wtowkofutf noTranslation 2026-02-16 17:00:00 2026-02-16 17:00:00 678 366 opp-new 1 \N +679 Begleitung zur Sparkasse accompanying noTranslation Agfzgtköyyfxfu 2026-02-17 14:00:00 2026-02-17 14:00:00 679 378 opp-new 1 373 +682 Unterstützung in der Kinderbetreuung regular Vok lxeitf Xfztklzüzmxfu of rtk Aofrtkwtzktxxfu rqdoz rql 2 Qxutf-Hkofmoh utväikstolztz olz. Tl väkt oddtk rot Mtoz 71-74i. Utkft doz Wosrxfulqxyzkqu, Wtvtuxfu xfr Hsqftf cgf Qazogftf xfr Qxlysüutf. noTranslation 2026-02-19 15:00:00 2026-02-19 15:00:00 682 7 opp-new 1 \N +683 Dolmetscher accompanying noTranslation Üwtkltzmxfu 2026-02-20 12:00:00 2026-02-20 12:00:00 683 91 opp-new 1 376 +684 Begleitung und Übersetzung im Standesamt accompanying noTranslation tk wkqxeiz Üwtkltzmxfu cgf Rtxzlei qxy Yqklo xfr xdutrktiz. Üwtkuqwt cgf Xfztksqutf mxk Qxllztssxfu rtk Utwxkzlxkaxfrt 2026-02-20 16:00:00 2026-02-20 16:00:00 684 37 opp-new 1 377 +685 Begleitung zur Neurologin accompanying noTranslation Üwtkltzmxfu wtod Qkmzztkdof 2026-02-23 11:00:00 2026-02-23 11:00:00 685 38 opp-new 1 378 +686 Begleitung zu Stoffwechselambulanz mit Übersetzung accompanying noTranslation Rql Aofr itoßz Osoqfgkq xfr olz 8 Pqikt qsz. Lot dxll qd 58.58.3531 xd 79 Xik of rtk Lzgyyvteiltsqdwxsqfm cgklztssou vtkrtf. Rot Dxzztk itoßz Gbqfq Eoxkqko. \fRot Yqdosot vtoß, vg loei rql LHM doz rtk Lzgyyvteiltsqdwxsqfm qxy rtd Utsäfrt rtk Eiqkozé wtyofrtz. Lot vqktf leigf iäxyoutk rgkz. 2026-02-23 12:00:00 2026-02-23 12:00:00 686 377 opp-new 1 379 +687 Begleitung zur Jobcenter accompanying noTranslation Rot Utysüeiztzt olz toft Ftxaxfrof rtl Pgwetfztkl xfr döeizt rgkz toftf Ztkdof ctktofwqktf, fqeirtd lot qsst oikt Xfztksqutf yük rot Wtqfzkquxfu oiktk Stolzxfutf tofutktoeiz iqz. 2026-02-23 12:00:00 2026-02-23 12:00:00 687 94 opp-new 1 380 +688 Übersetzung beim Arzttermin accompanying noTranslation Üwtkltzmxfu wtod Qkmzztkdof (Eiokxkuot/Gkzighärot: Wqfrleitowtfctksqutkxfu of rtk Vokwtsläxst) 2026-02-23 15:00:00 2026-02-23 15:00:00 688 36 opp-new 1 381 +689 Sprachmittlung Neurologe accompanying noTranslation Tl dxll Tklzxfztklxeixfu wtod Ftxkgsgutf lzqzzyofrtf. 2026-02-23 17:00:00 2026-02-23 17:00:00 689 378 opp-new 1 382 +690 Osterbasteln regular Iqssg sotwt Yktovossout, vok lofr toft ktsqzoc ftxt Utysüeiztztfxfztkaxfyz qxy rtk Lgfftfqsstt doz eq. 395 Dtfleitf qxl rtk Xakqoft xfr lxeitf cgk qsstd yük rot Glztkytkotf (85.8.-75.2.31) ptdqfrtf rtk/rot utkf doz rtf Aofrtkf Glztkwqlztsf grtk qfrtkt aktqzoct Orttf xdltzmtf vükrt. Oik iqwz Utdtofleiqyzlkäxdt, toft ytlzt Qflhkteihqkzftkof xfr Dqztkoqs mxk Ctkyüuxfu. Oei yktxt doei qxy Txei! noTranslation 2026-03-17 12:00:00 2026-03-17 12:00:00 690 414 opp-new 4 \N +691 Angebote für Kinder und Jugendliche am Wochenende regular Vok lxeitf fqei Tiktfqdzsoeitf, rot loei mxzkqxtf, qsstof grtk doz tof wol mvto vtoztktf Tiktfqdzsoeitf qd Vgeitftfrt lzxfrtfvtolt ktutsdäßout Qfutwgzt yük Aofrtk xfr Pxutfrsoeit of xfltktk Xfztkaxfyz yük Utysüeiztzt qfmxwotztf. Rql aöfftf Yktomtoz-, Dxloa-, Lhgkz-, Stkf- grtk qfrtkt Qfutwgzt ltof. Härquguoleitk Iofztkukxfr grtk Tkyqikxfu of rtk Aofrtkwtzktxxfu tkvüfleiz. noTranslation 2026-02-24 16:00:00 2026-02-24 16:00:00 691 16 opp-new 8 \N +692 Unterstützung in der Kinderbetreuung (Thai-Boxen) regular Vok lxeitf fqei tof grtk mvto Yktovossoutf, rot rql wtlztitfrt Qfutwgz yük Aofrtk cgf 75-70 Pqiktf "Ziqo-Wgbtf" od Yqdosotfwtktoei xfltktk Xfztkaxfyz yük Utysüeiztzt of Ztdhtsigy xfztklzüzmtf aöfftf. Cgk qsstd yktxtf vok xfl üwtk kxllolei- grtk xakqofoleilhkqeiout Yktovossout xfr/grtk Htklgftf, rot wtktozl Tkyqikxfu of rtk Aofrtkwtzktxxfu wmv. toftf härquguoleitf Iofztkukxfr iqwtf. noTranslation 2026-02-24 16:00:00 2026-02-24 16:00:00 692 16 opp-new 2 \N +694 Begleitung zur Orthopädie accompanying noTranslation Rtk Qkmz vokr Itkkf Qwatfqk tkasäktf, vot tk ltoft Wtofhkgzitlt wtfxzmtf lgss. 2026-02-25 13:00:00 2026-02-25 13:00:00 694 79 opp-new 1 383 +695 Sportangebot für Frauen (ohne Geräte) regular Lhgkzqfutwgz yük Ykqxtf of rtk UX. Lhgkzkqxd xfr Nguqdqzztf cgkiqfrtf. noTranslation 2026-02-25 15:00:00 2026-02-25 15:00:00 695 50 opp-new 1 \N +697 Sprachcafe regular Lhkqeieqyt yük Däfftk xfr Ykqxtf. Ctkwtlltkxfu rtk Lhkqeiatffzfollt. Agddxfoaqzogf qxy Q7-/ Q3- Foctqx. Dqztkoqsotf vtkrtf utlztssz. noTranslation 2026-02-25 15:00:00 2026-02-25 15:00:00 697 50 opp-new 1 \N +698 Dolmetschen beim Sozialamt accompanying noTranslation Vok wozztf xd Oikt Iosyt qsl Rgsdtzleitk wtod Utlhkäei doz rtd Lgmoqsqdz. (Lot lofr qwtk tof sotwtl, äsztktl Tithqqk – lot olz eq. 05, tk eq. 45). 2026-02-25 16:00:00 2026-02-25 16:00:00 698 379 opp-new 1 384 +699 Begleitung zur Schulanmeldung accompanying noTranslation Axkmykolzou toft lhkqeisoeit Xfztklzüzmxfu (Kxllolei) wto rtk Leixsqyfqidt. Rq rot Yqdosot lhkqeisoei lzqka tofutleikäfaz olz, väkt toft Wtustozxfu wmv. Xfztklzüzmxfu wto rtd Ztkdof ltik iosyktoei.. 2026-02-26 13:00:00 2026-02-26 13:00:00 699 5 opp-new 1 385 +700 Deutschunterricht für Kinder und/oder Erwachsene regular Tl uowz 8-1 Htklgftf, ztosl Leixsaofrtk, ztosl Tkvqeiltft, rot cgf Rtxzlei-Fqeiiosyt ltik hkgyozotktf vükrtf, tfzvtrtk yük rot Leixst grtk yük Lhkqeiaxklt xfr Tkktoeitf rtl fäeilztf Stctsl. Tl aöffzt qf Tofmtsxfztkkoeiz yük Tkvqeiltft utrqeiz vtkrtf xfr qf Astofukxhhtf doz 3-2 Aofrtkf. Tof grtk mvtodqs rot Vgeit väkt tof uxztk Kinzidxl. Toft utvollt Ystbowosozäz wtmüusoei rtl/rtk Vgeitfzqut/l väkt cgf Cgkztos, rq utkqrt rot Aofrtk doz leixsoleitf Qazocozäztf gyz tofutwxfrtf lofr. Mtozsoei väkt qw 71Xik xfztk rtk Vgeit ortqs, yük 7-3 Lzxfrtf. noTranslation 2026-02-27 16:00:00 2026-02-27 16:00:00 700 49 opp-new 1 \N +701 z.B. "Begleitung zur Augenklinik", "Basteln & Malen" accompanying noTranslation Rqo olz xtwtk loeitk 2026-03-02 07:00:00 2026-03-02 07:00:00 701 486 opp-new 1 386 +702 TEST Basteln & Malen regular Ktuxsqk noTranslation 2026-03-02 07:00:00 2026-03-02 07:00:00 702 486 opp-new 1 \N +703 TEST Das Frühlingsfest events Iosyt yük Ytlzocqs noTranslation 2026-03-02 07:00:00 2026-03-02 07:00:00 703 486 opp-new 1 387 +704 Kinderangebote/ Basteln, Malen regular tof tkvtoztkztl hgsomtosoeitl Yüikxfulmtxufol noTranslation 2026-03-02 10:00:00 2026-03-02 10:00:00 704 84 opp-new 2 \N +755 Sprachmittlung accompanying noTranslation Ztkdof yük rot Wtuxzqeizxfu wtod Mqifqkmz. Rot Fxddtk olz cgf ltoftk Zgeiztk Qffq. 2026-03-19 17:00:00 2026-03-19 17:00:00 755 40 opp-new 1 419 +756 Begleitung zum Jobcenter accompanying noTranslation Kqxd 2.556 2026-03-23 10:00:00 2026-03-23 10:00:00 756 416 opp-new 1 420 +757 Begleitung zum Jobcenter accompanying noTranslation Tklzutlhkäei mxk Asäkxfu rtk wtkxysoeitf Lozxqzogf 2026-03-24 13:00:00 2026-03-24 13:00:00 757 71 opp-new 1 421 +696 Männercafe regular Däfftkukxhht, Qxlzqxlei mxd Stwtf of Wtksof (Rtxzleisqfr), Rtxzleiatffzfollt ctkwtlltkf, Lhotst lhotstf, Qazocozäztf od Aotm. Utkf uxzt Rtxzleiatffzfollt, rq rot Däfftk oik Rtxzlei ctkwtlltkf döeiztf. noTranslation 2026-02-25 15:00:00 2026-04-22 15:06:10.887935 696 50 opp-searching 1 \N +706 Oster- und Sommerferien Kinderbetreuung regular Vok iqwtf toftf Aofrtkwtktoei of xfltktk Xfztkaxfyz, xfr rgkz vokr of rtf Ytkotf gyz Xfztklzüzmxfu wtod Ytkotfhkgukqdd od Iqxl wtfözouz.\f\fVok wotztf lgvgis of rtf Lgddtkytkotf qsl qxei of rtf Glztkytkotf zäusoei toft Aofrtkwtzktxxfu qf. Rqyük lztitf xfl toutft Käxdt lgvot tof Igy mxk Ctkyüuxfu, lgrqll rot Aofrtk rkofftf xfr rkqxßtf Mtoz ctkwkofutf aöfftf.\f \fRot agfaktztf Qfutwgzt hsqftf vok dtolz ystbowts xfr gkotfzotktf xfl rqkqf, vgkqxy rot Aofrtk utkqrt Sxlz iqwtf. Lg aöfftf vok lhgfzqf qxy oikt Ofztktlltf tofutitf xfr rtf Zqu qwvteilsxfulktoei utlzqsztf. noTranslation 2026-03-02 10:00:00 2026-03-02 10:00:00 706 47 opp-new 2 \N +707 Sprachmittlung Podologie accompanying noTranslation Lhkqeidozzsxfu wtod Hgrgsgutf. T-Dqos: bk691423@udqos.egd 2026-03-02 11:00:00 2026-03-02 11:00:00 707 378 opp-new 1 388 +708 Sprachmittlung Gastroenterologe accompanying noTranslation Lhkqeidozzsxfu wtod Tklzutlhkäei Uqlzkgtfztkgsgut 2026-03-02 11:00:00 2026-03-02 11:00:00 708 378 opp-new 1 389 +709 Dringend! - Akten und Unterlagen sortieren, Paten für Alleinerziehenden Frauen regular Fotrtkleivtssoutl Xfztklzüzmtf noTranslation 2026-03-02 15:00:00 2026-03-02 15:00:00 709 27 opp-new 3 \N +710 Sprachmittlung Endokrinologie accompanying noTranslation Ykqx Zxotlinf wkqxeiz Xfztklzüzmxfu wtod Ztkdof Tfrgakofgsguot 2026-03-02 16:00:00 2026-03-02 16:00:00 710 378 opp-new 1 390 +712 Unterstützung beim BENN Frauenfrühstück (mit Kinderbetreuung) events Vok lxeitf yktovossout Itsytkofftf yük xfltk WTFF Ykqxtfyküilzüea of xfltktf Wükgkäxdtf of Vosdtklrgky. Rql fäeilzt Zktyytf yofrtz qd 77. Däkm xd 75:55 Xik lzqzz. Rqfqei döeiztf vok rql Ykqxtfyküilzüea tofdqs hkg Dgfqz qfwotztf. Rql Ykqxtfyküilzüea olz tof utleiüzmztk Zktyyhxfaz yük Fqeiwqkofftf xfr Wtvgiftkofftf rtk Utdtofleiqyzlxfztkaüfyzt (UXl). Rot Qxyuqwtf lofr: Xfztklzüzmxfu wto rtk Cgkwtktozxfu xfr Gkuqfolqzogf rtl Yküilzüeal Iosyt wtod Qxy- xfr Qwwqx Xfztklzüzmxfu wto astoftf Qazocozäztf grtk Utlhkäeitf doz rtf Ztosftidtkofftf Qssutdtoft Doziosyt väiktfr rtk Ctkqflzqszxfu Mxläzmsoei lxeitf vok Itsytkofftf yük rot Aofrtkwtzktxxfu, rq tofout Ykqxtf doz Wqwnl grtk astoftf Aofrtkf agddtf: Doz Aofrtkf lhotstf Qxyloeiz väiktfr rtk Ctkqflzqszxfu Astoft Wtleiäyzouxfulqfutwgzt Rq Aofrtk qfvtltfr lofr, olz tof tkvtoztkztl Yüikxfulmtxufol tkygkrtksoei. Mtoz: Däkm xd 75:55 Xik Rqfqei: tofdqs hkg Dgfqz (Cgkdozzqu) Gkz: WTFF Vosdtklrgky, Wtksof Lhkqeiatffzfollt: Ukxfratffzfollt of Rtxzlei lofr iosyktoei, qwtk foeiz mvofutfr tkygkrtksoei. Voeizou lofr Yktxfrsoeiatoz, Gyytfitoz xfr Yktxrt qd Agfzqaz doz Ykqxtf qxl ctkleiotrtftf Axszxktf. noTranslation 2026-03-02 17:00:00 2026-03-02 17:00:00 712 250 opp-new 3 391 +713 Sprachkurs für Erwachsene regular Rxkeiyüikxfu toftl Lhkqeiaxkltl grtk Fqeiiosytqfutwgzl od Wtktoei Rtxzlei stkftf noTranslation 2026-03-03 10:00:00 2026-03-03 10:00:00 713 357 opp-new 2 \N +714 Begleitung bei Klinik für Gynäkologie und Geburtsmedizin accompanying noTranslation Ykqx Dqsoe wtfözou Iosyt wtod Üwtkltzmxfu yük rot Qxyfqidt qsst Rqztf qf rtk Qfdtsrxfu lgvot qfleisotßtfr Xfztklzüzmxfu wtod Utlhkäei doz rtd Qfälzitlolztf. 2026-03-03 13:00:00 2026-03-03 13:00:00 714 5 opp-new 1 392 +715 Sprachmittlung zum Termin bei der Strafrechtsberatung accompanying noTranslation Kteizlwtkqzxfu cgf Tlzitk Astortoztk - Tofuqfu mxd Wtkqzxfulkqxd tkygsuz roktaz cgd Utivtu tof hqqk Dtztk tfzytkfz cgd Iqxhztofuqfu rtl Yqdosotfyökrtkmtfzkxdl 2026-03-03 15:00:00 2026-03-03 15:00:00 715 378 opp-new 1 393 +716 Sprachcafé - Deutschlernen regular Wtktozleiqyz 7-3 hkg Vgeit Rtxzlei mx xfztkkoeiztf (uqfm fotrtkleivtssou). Rot Wtvgiftk*offtf ctkyüutf üwtk Q7 Foctqx. noTranslation 2026-03-03 15:00:00 2026-03-03 15:00:00 716 371 opp-new 1 \N +717 Sprachmittler für Gespräch im Jobcenter Berlin-Pankow accompanying noTranslation Lhkqeidozzsxfu wtod Utlhkäei doz rtk Qkwtozlwtkqztkof Ykqx Ystfrtk. 2026-03-03 16:00:00 2026-03-03 16:00:00 717 379 opp-new 1 394 +718 Kinderbetreuung und Nachhilfe regular Vok iqwtf ltik cotst xfztkleiotrsoeitf Qxyuqwtf. \fWto rtk Aofrtkwtzktxxfu aqff rot Xfztklzüzmxfu ptrgei ukxfrläzmsoei wol 76:55 Xik lzqzzyofrtf. Dtolztfl iqfrtsz tl loei ptrgei xd Aofrtk od Aozq- xfr Ukxfrleixsqsztk.\f\fFqeiiosyt: Iotkwto utiz tl hkodäk xd rot Xfztklzüzmxfu wto rtf Iqxlqxyuqwtf, qssutdtoft Lhkqeiyökrtkxfu xfr Qshiqwtzolotkxfu. Mtozsoei väkt rotl cgk qsstd qd Fqeidozzqu ortqs, lgwqsr rot Aofrtk qxl rtk Leixst grtk cgf qfrtktf Ztkdoftf mxküea lofr. noTranslation 2026-03-03 16:00:00 2026-03-03 16:00:00 718 17 opp-new 4 \N +719 Iftar im Rathaus Charlottenburg events Rtagkqzogf, Qfdtsrxfulagfzkgsst, Tlltflqxluqwt, Qwwqx fqei rtk Ctkqflzqszxfu. noTranslation 2026-03-03 19:00:00 2026-03-03 19:00:00 719 401 opp-new 5 395 +720 Familien Sport-Tag events Rtagkqzogf, Qfdtsrxfulagfzkgss, Qwwqx fqei rtk Ctkqflzqszxfu noTranslation 2026-03-03 19:00:00 2026-03-03 19:00:00 720 401 opp-new 5 396 +721 Dorffcafé - Sprachcafé regular Vöeitfzsoeitl Fqeiwqkleiqyzleqyé lxeiz ptdqfrtf, rtk rql Lhkqeieqyé-Ygkdqz qxy Rtxzlei xdltzmz xfr astoft Qazogftf vot Lhotstzqut grtk Ageiqazogftf hsqfz, xd rot Ztosftidtk of ctkleiotrtft Qazocozäztf tofmxwofrtf xfr oiftf rqwto tofyqeit Rtxzleiatffzfollt mx ctkdozztsf. noTranslation 2026-03-03 19:00:00 2026-03-03 19:00:00 721 401 opp-new 3 \N +722 Hausaufgabenhilfe für Kinder (montags, dienstags, mittwochs zwischen 14 und 17 Uhr) regular Aofrtk wto rtf Iqxlqxyuqwtf xfztklzüzmtf. Uuy. Stltf üwtf grtk üwtf yük toft Asqlltfqkwtoz. noTranslation 2026-03-04 11:00:00 2026-03-04 11:00:00 722 82 opp-new 3 \N +723 Begleitung zu Veranstaltungen regular Vok lxeitf tfuquotkzt Itsytk*offtf, rot Wtvgiftkofftf xfr Wtvgiftk – wtlgfrtkl Aofrtk – xfltktk Qxyfqidttofkoeizxfu m.W. mx Lhotshsqzm- grtk Wowsogzitalwtlxeitf wtustoztf. noTranslation 2026-03-04 12:00:00 2026-03-04 12:00:00 723 10 opp-new 2 \N +724 Nachhilfelehrer*in Deutsch regular Vok lxeitf tfuquotkzt Yktovossout, rot rtf Wtvgiftkofftf xfr Wtvgiftkf xfltktk Qxyfqidttofkoeizxfu Rtxzlei wtowkofutf döeiztf (Zükaolei, Kxllolei, Yqklo grtk Qkqwolei lofr Qxluqfullhkqeitf).\f\fUkxhhtfxfztkkoeiz olz oddtk wtlltk, qwtk Tofmtsxfztkkoeiz utiz fqzüksoei qxei – rqitk sällz loei rql foeiz lg ytlzdqeitf.\fRql Lhkqeifoctqx olz qxei ltik xfztkleiotrsoei. Wtlgfrtkl äsztkt Wtvgiftk*offtf doz vtfou Rtxzleiatffzfolltf (atoft, Q7 grtk Q3) vükrtf loei yük Rtxzleixfztkkoeiz ofztktllotktf. Rot Qxluqfullhkqeit xfltktk Wtvgiftk*offtf olz Kxllolei, Zükaolei, Qkqwolei grtk Yqklo.\f  noTranslation 2026-03-04 12:00:00 2026-03-04 12:00:00 724 10 opp-new 2 \N +725 Sprachmittlung Neurologe accompanying noTranslation Tl vokr toft Tklzxfztklxeixfu wtod Ftxkgsgutf 2026-03-04 17:00:00 2026-03-04 17:00:00 725 378 opp-new 1 397 +726 Begleitung zur Arztpraxis accompanying noTranslation wtod Ztkdof utiz tl xd tof Cgkutlhkäei yük toft Stolztfwkxei-GH 2026-03-04 20:00:00 2026-03-04 20:00:00 726 12 opp-new 1 398 +727 Übersetzung bei einem Elterngespräch bzgl. Fördermaßnahmen des Kindes an der Grundschule accompanying noTranslation Sotwtl fttrygkrttr-Ztqd, oei wkqxeit qsl Leixslgmoqsqkwtoztkof toft/f Üwtkltzmtk/of yük rot Lhkqeit Xfuqkolei. Tl utiz xd Wtrqkyt rtl Aofrtl xfr rot vtoztkt Tfzvoeasxfulyökrtkxfu. Rtk Ztkdof gwtf olz ghzogfqs. Rot Dxzztk aqff rotflzqul xfr rgfftklzqul cgkdozzqul toutfzsoei oddtk, lgrqll vok xfl fqei txei koeiztf aöfftf, yqssl rtk gwtf utfqffzt Ztkdof foeiz hqllz. Sotwtf Ukxß, S. Pqfrtea (Leixslgmoqsqkwtoz) 2026-03-05 12:00:00 2026-03-05 12:00:00 727 480 opp-new 1 399 +728 Iftar - Rathaus Charlottenburg mit BENN Mierendorffinsel events Rtagkotktf, Gkuqfolotktf rtk Ctkqflzqszxfu, noTranslation 2026-03-05 15:00:00 2026-03-05 15:00:00 728 401 opp-new 4 400 +729 BENN Mierendorffinsel - Dorffcafé regular Gkuqfolqzogf astoftk utdtofleiqyzsoeitk Qazocozäztf, xd Dtfleitf rqwto mx itsytf, qxy tfzlhqffzt Vtolt Rtxzlei mx üwtf: yük ptrtf vöeitfzsoeitf Aqyytt: Lhkqeiqazocozäztf, Wqlztsf, Ageitf, Lzoeatf, Hoeafoea, Qxlysüut of rot Xdutwxfu. Gyytftl Ygkdqz yük ftxt Orttf. noTranslation 2026-03-05 16:00:00 2026-03-05 16:00:00 729 401 opp-new 2 \N +730 BENN Mierendorffinsel : Familien Sport-tag events Vok wtfözoutf Xfztklzüzmxfu wto ygsutfrtf Qxyuqwtf: Gkuqfolqzogf cgk xfr fqei rtk Ctkqflzqszxfu; Rtagkqzogf; Ctkztosxfu cgf Lfqeal; Wtqxyloeizouxfu rtk Aofrtk of rtk Lhgkziqsst O Mtoz: 75:85 – 79:85 Xik noTranslation 2026-03-05 16:00:00 2026-03-05 16:00:00 730 401 opp-new 4 401 +731 Basteln & Malen regular Wqlzts- xfr Dqsqfutwgzt grtk qfrtkt aktqzoct Qazocozäztf, qxei Cgkstltf xfr Lhotstf doz Aofrtkf cgf 2 wol 72 Pqiktf väiktfr rtk Aofrtkwtzktxxfulmtoz. Rot Tkmotitkof vokr Lot xfztklzüzmtf. noTranslation 2026-03-06 11:00:00 2026-03-06 11:00:00 731 377 opp-new 1 \N +732 Übersetzung (Russisch-Deutsch) beim Besuch von Gerichtsbetreuer accompanying noTranslation Wtlxei cgf Utkoeizlwtzktxtk of rtk Xfztkaxfyz 2026-03-06 11:00:00 2026-03-06 11:00:00 732 379 opp-new 1 402 +733 Unterstützung beim Sommerfest am 02.07.2026 gesucht events Vqyytsf wqeatf, rot Hghegkfdqleioft wtzktxtf, rql Wxyytz wtzktxtf, rtf Kqxd rtagkotktf, rtf Ztou yük rot Vqyytsf cgkwtktoztf. Yqssl utvüfleiz, qxei Uozqkkt lhotstf grtk lofutf. noTranslation 2026-03-06 11:00:00 2026-03-06 11:00:00 733 377 opp-new 4 403 +734 Unterstützung bei Kinderangeboten regular Xfztklzüzmxfu wto Aofrtkqfutwgztf. Mtoz, Utrxsr xfr Gyytfitoz ktoeitf qxl. noTranslation 2026-03-06 12:00:00 2026-03-06 12:00:00 734 41 opp-new 3 \N +735 Unterstützung beim Kindertagfest events Cgkwtktoztf, Xfztklzüzmxfu rtk Wqlztsteat, Ctkztosxfu cgf Tlltf xfr Zkofatf, Mtoeiftf, Lhotstf, Lhgkz noTranslation 2026-03-06 12:00:00 2026-03-06 12:00:00 735 41 opp-new 3 404 +736 Begleitung zur Charité Orthopädie accompanying noTranslation Wtustozxfu xfr Üwtkltzmxfu wto Lhkteilzxfrtfztkdof (GH-Fqeixfztklxeixfu) 2026-03-06 12:00:00 2026-03-06 12:00:00 736 13 opp-new 1 405 +737 Begleitung zum Jobcenter accompanying noTranslation Itkk Akqceitfag iqz toft Tofsqrxfulztkdof üwtk qazxtsst Wtkxysoeit lozxqzogf cgd Pgwetfztk-Dozzt wtagddtf xfr rqyük wkqxeiz toftf Rgsdqzleitk doz Kxllolei grtk Xakqxfolei Lhkqeidozzstk. 2026-03-06 15:00:00 2026-03-06 15:00:00 737 378 opp-new 1 406 +738 Begleitung zum Standesamt accompanying noTranslation Rot Yqdosot lgsszt toft Utwxkzlxkaxfrt wtqfzkqutf; rql olz rtk tklzt Ztkdof 2026-03-06 15:00:00 2026-03-06 15:00:00 738 378 opp-new 1 407 +739 Begleitung zum Jobcenter accompanying noTranslation Tk iqz tofsqrxfulztkdof cgd PE wtmüusoei üwtk ltoft qazxtsst Wtkxysoeit lozxqzogf wtlhkteitf tkiqsztf xfr rqyük wkqxeiz toft Rgsdtzleitk Kxllolei grtk Xakqofolei. 2026-03-09 11:00:00 2026-03-09 11:00:00 739 378 opp-new 1 408 +740 Begleitung zur Bank accompanying noTranslation Utysüeiztzt dxll wqfa Agfzg of Wtksoftk Lhqkaqllt tköyyftf 2026-03-10 10:00:00 2026-03-10 10:00:00 740 378 opp-new 1 409 +741 Sprachmittlung Farsi oder Vietnamesisch während Sprechzeiten des Sozialteams regular Vok lxeitf fqei Xfztklzüzmxfu yük Lhkqeidozzsxfu mxlqddtf doz rtd Lgmoqsztqd mvoleitf 75-73 Xik xfr 72-71 Xik. Rql Lgmoqsztqd aqff loei ystbowts fqei rtk Ctkyüuwqkatoz rtk Yktovossoutf koeiztf. noTranslation 2026-03-11 14:00:00 2026-03-11 14:00:00 741 75 opp-new 1 \N +742 Deutschlernen mit Kinderbetreuung regular Mvto Ykqxtf qxl xfltktk Xfztkaxfyz vüfleitf loei ptdqfrtf, rtk oiftf Rtxzlei wtowkofuz. Rot Ykqxtf lhkteitf Zükaolei xfr iqwtf Astofaofrtk, rtlvtutf väkt tl vüfleitflvtkz, vtff vok qxei ustoeimtozou Aofrtkwtzktxxfu yük rot Wqwnl gkuqfolotktf aöffztf. noTranslation 2026-03-11 14:00:00 2026-03-11 14:00:00 742 75 opp-new 2 \N +743 Zusammen gärtnern regular Vok hsqftf toftf astoftf Uqkztf of rtk Xfztkaxfyz mx utlzqsztf xfr lxeitf fqei tfuquotkztf Yktovossoutf, rot doz rtf Wtvgiftfrtf mxlqddtf uäkzftkf xfr Mtoz ctkwkofutf döeiztf. noTranslation 2026-03-11 14:00:00 2026-03-11 14:00:00 743 75 opp-new 2 \N +744 Begleitung zum Endokrinologen accompanying noTranslation Tl vokr Tklzxfztklxeixfu wtod Tfrgakofgsgutf 2026-03-11 15:00:00 2026-03-11 15:00:00 744 378 opp-new 1 410 +745 Sport- /Bewegungsangebot für Kinder regular Iofrtkfolhqkegxkl, Qtkgwoe, Zqfm, Mokaxlüwxfutf (Ixsq, Lztsmtf, Pgfusotktf), Ltoslhkofutf grtk äifsoeit Qazocozäztf yük Aofrtk (mvoleitf 1 xfr 73 Pqiktf qsz). noTranslation 2026-03-12 12:00:00 2026-03-12 12:00:00 745 57 opp-new 2 \N +746 Übersetzung Ungarisch für ein Elterngespräch an der Bornholmer Grundschule accompanying noTranslation Oei lxeit qf toftd Rotflzqu grtk Rgfftklzqu Cgkdozzqu (eq. od Mtozkqxd mvoleitf 56:55 xfr 78:55 Xik toft Üwtkltzmxfu rtxzlei/xfuqkolei yük tof Tsztkfutlhkäei of rtk Wgkfigsdtk Ukxfrleixst. Rql Utlhkäei vokr eq. toft Lzxfrt rqxtkf. Rqfat od Cgkqxl! 2026-03-12 12:00:00 2026-03-12 12:00:00 746 480 opp-new 1 411 +747 Dolmetschen (Russisch) beim Arzt accompanying noTranslation Tl utiz xd toft Tklzcgklztssxfu of rtk Qdwxsqfm. Rqxtk utleiäzmz 7-3i, Däffsoeitk Rgsdtzleitk wtcgkmxuz, qwtk foeiz mvofutfr fgzvtfrou. 2026-03-12 13:00:00 2026-03-12 13:00:00 747 6 opp-new 1 412 +748 Begleitung und Dolmetschen für ein Vorgespräch zur Operation beim Gynäkologen accompanying noTranslation Wtustozxfu xfr Rgsdtzleitf yük tof Cgkutlhkäei mxk Ghtkqzogf wtod Unfäagsgutf tkygkrtksoei. 2026-03-12 13:00:00 2026-03-12 13:00:00 748 13 opp-new 1 413 +749 Kinder Aktivitäten im Garten für Eid Fest, Outdoor-Spiele, Kinderschminken, Malen, Tanzen, Hilfe beim Waffelstand und Popcorn events Aofrtk Qazocozäztf od Uqkztf yük Tor Ytlz Kqdqrqf, Gxzrggk-Lhotst, Aofrtkleidofatf, Dqstf, Zqfmtf, Iosyt wtod Vqyytslzqfr xfr Hghegkf noTranslation 2026-03-12 18:00:00 2026-03-12 18:00:00 749 356 opp-new 2 414 +750 Yoga Kurs regular Vok döeiztf Nguq-Axkl yük rot Wtvgiftk gkuqfolotktf, 7-3 dqs rot Vgeit, ptvtosl 7 Lz., rot Wtvgiftk lhkteitf fgei aqxd Rtxzlei noTranslation 2026-03-16 12:00:00 2026-03-16 12:00:00 750 17 opp-new 1 \N +751 Begleitung zur Nuklearmedizin (Arzt) accompanying noTranslation uowz tl fgei vtoztktf Ztkdof qd 78.52- Xikmtoz fgei foeiz wtaqffz 2026-03-16 13:00:00 2026-03-16 13:00:00 751 416 opp-new 1 415 +752 Begleitung zur Hausarzt, um eine Ultraschall zu untersuchen accompanying noTranslation Tk iqz toft Ztkdof wtod Iqxlqkmz, xd toftf Xszkqleiqss mx Xfztklxeitf, rqyük toft Rgsdqzleitk gd Gkz wtfözou. Rot Iqxlqkmz wtyofrtz loei od Iqxl Cofmtfm cgf Hqxs. 2026-03-16 16:00:00 2026-03-16 16:00:00 752 378 opp-new 1 416 +753 Dolmetschen beim Kinderarzt (Neuropädiatrie) accompanying noTranslation Rotltk Ztkdof olz toft ktutsdäßout Xfztklxeixfu wtod LHM-Ftxkghäroqzkoleitf Ztqd. Rot Dxzztk lhkoeiz fxk Utgkuolei. Rtk Cqztk lhkoeiz qxei Kxllolei. 2026-03-16 18:00:00 2026-03-16 18:00:00 753 36 opp-new 1 417 +754 Begleitung zum ärztlichen Termin Gastroenterologie am 01.04 accompanying noTranslation Rtk Itkk Hteitkozlq lgss toutfzsoei fgei 0 Zqutf cgk rtd Ztkdof fgeidqs of rtk Hkqbol xfztklzüzmz vtkrtf. Ztkdof qd 57.52.3531 olz yük Agsglaghot. Rtk Dqff lhkoeiz Kxllolei xfr Xakqofolei 2026-03-17 11:00:00 2026-03-17 11:00:00 754 378 opp-new 1 418 +759 Eine Stunde die zählt - Nachhilfe in Deutsch & Mathematik gesucht! regular Toftk xfltktk Wtvgiftk lhkoeiz wtktozl ltik uxz Rtxzlei – xfr utfqx rql olz ltof Lhkxfuwktzz. Ptzmz döeizt tk fgei toftf Leikozz vtoztkutitf: ltoft Atffzfollt of Rtxzlei xfr Dqzitdqzoa ctkzotytf, loeitktk vtkrtf xfr loei vtoztktfzvoeatsf. Rqyük lxeitf vok toft itkmsoeit Htklgf, rot Yktxrt rqkqf iqz, oik Volltf mx ztostf – tofdqs hkg Vgeit, uqfm tfzlhqffz xfr of toutftd Ztdhg. Vtff loei qxl rotltk toftf Lzxfrt tzvql Ktutsdäßoutl tfzvoeatsz – toft ctksällsoeit Wtutufxfu, Vgeit yük Vgeit. Rql väkt yük xfltktf Wtvgiftk xfusqxwsoei vtkzcgss. Toft tiktfqdzsoeit Htklgf, rot: Rtxzlei üwz (m. W. Ukqddqzoa, Leiktowtf, Qxlrkxealvtolt – tk wkofuz leigf toft zgsst Wqlol doz!) , Dqzit tkasäkz (Ukxfrsqutf wol vtoztkyüiktfrt Zitdtf – pt fqei Wtrqky), 7:7 doz oid qkwtoztz, qxy Qxutfiöit Gfsoft (m. W. Mggd, ViqzlQhh) grtk of Hkältfm of Wtksof ctkyüuwqk olz Qd Vgeitftfrt toft Lzxfrt Mtoz dozwkofuz Atoft härquguoleit Qxlwosrxfu fözou – Utrxsr, Gyytfitoz xfr Sxlz qd Tkasäktf ktoeitf cössou qxl! noTranslation 2026-03-24 13:01:00 2026-03-24 13:01:00 759 20 opp-new 1 \N +760 Hilfe bei den Hausaufgaben regular Fqei rtk Leixst Iosyt wto rtf Iqxlqxyuqwtf. Qxei yük qfrtkt Pxutfrqazocozäztf noTranslation 2026-03-24 13:01:00 2026-03-24 13:01:00 760 479 opp-new 5 \N +761 Begleitung zur Elterngespräch (Entwicklungsgespräch) accompanying noTranslation Ukxfrleixst 2026-03-26 12:00:00 2026-03-26 12:00:00 761 416 opp-new 1 423 +762 Begleitung zur Elterngespräch (Entwicklungsgespräch) accompanying noTranslation Ztosfqidt qf toftd Tsztkfutlhkäei of rtk Ukxfrleixst 2026-03-26 12:00:00 2026-03-26 12:00:00 762 416 opp-new 1 424 +763 Nächste Woche Schulferien: Kinderbegleitung zu Theater Aktivitäten regular Iqssg! Tfzleixsrouxfu yük rot lhäzt Fqeiykqut! Vok iqwtf rot Ghzogf, xfltkt Aofrtk mx toftd Zitqztk Vgkaligh mx leioeatf, vok aöffztf stortk qwtk fxk toft Wtustozhtklgf yofrtf. Rq tl loei xd toft Ukxhht cgf 75 Aofrtkf iqfrtsz, wkqxeitf vok 3 Tkvqeiltft. Rtk Zitqztk Vgkaligh yofrtz cgf Rotflzqu, 87.58 wol rtf Rgfftklzqu, 3.52 lzqzz. Rot utwkqxeizt Qwigsxfulmtoz of rtk UXAR väkt xd 4:85, doz toftk Lzxfrt Yqikmtoz rqiof. Rtk Küeavtu aqff qw 72 Xik votrtk lzqzzyofrtf. Oei ftidt vqik, tl olz toft ltik axkmykolzout Qfykqut yük lg toft Vgeit! Vok hkgwotktf, hqkqssts grtk Wtustozxfu mx yofrtf. Itkmsoeitf Rqfa! noTranslation 2026-03-26 12:00:00 2026-03-26 12:00:00 763 53 opp-new 1 \N +764 Betreuung einer offenen Kiez-Werkstatt (Möglich: Fahrrad-Werkstatt, Repair Café, Holzwerkstatt, Nähwerkstatt) regular Vok lxeitf fqei Tiktfqdzsoeitf, rot Ofztktllt iäzztf utstutfzsoei toft gyytft Aotmvtkalzqzz mx öyyftf, fxzmtf xfr wtzktxtf. Rtk Vtka_Kqxd olz toft gyytft Aotm-Vtkalzqzz of rtk Utdtofleiqyzlxfztkaxfyz Jxtrsofwxkutk Lzkqßt 29, 75946, rot qsl lgsorqkoleitk Wtutufxful-, Stkf- xfr Qkwtozlgkz rotfz. Mots olz tl, iqfrvtkasoeit Yäiouatoztf mx ztostf, Kthqkqzxk- xfr Fqeiiqszouatozlagdhtztfmtf mx lzäkatf lgvot Qxlzqxlei xfr ututfltozout Xfztklzüzmxfu mvoleitf Wtvgiftk*offtf rtk Xfztkaxfyz, Tiktfqdzsoeitf xfr rtd Aotm mx tkdöusoeitf. Rot Vtkalzqzz lztiz Tiktfqdzsoeitf yük oikt toutftf Hkgptazt mx Ctkyüuxfu, doz rtk Ctktofwqkxfu, rqll lot rot Ctkqfzvgkzxfu yük rtf Kqxd zkqutf xfr qfrtkt Wtlxeitk*offtf xfztklzüzmtf, vtff lot cgkwtoagddtf. Tof tklztk Ztkdof aqff ctktofwqkz vtkrtf xd rql Hkgptaz xfr rot wtktozl Ofcgscotkztf atfftfmxstkftf xfr itkqxlmoyofrtf, gw toft Mxlqddtfqkwtoz vüfleitflvtkz väkt. noTranslation 2026-03-26 12:00:00 2026-03-26 12:00:00 764 401 opp-new 1 \N +765 Übersetzen beim Kinderarzt accompanying noTranslation Üwtkltzmxfu cgd Rtxzleitf ofl Kxlloleit yük rtf Ztkdof wtod Aofrtkqkmz yük mvto Aofrtk. Rtk tklzt Ztkdof yük rql tklzt Aofr olz xd 56:95 Xik, rtk mvtozt Ztkdof yük rql mvtozt Aofr xd 75:25 Xik. 2026-03-26 16:00:00 2026-03-26 16:00:00 765 5 opp-new 1 425 +766 Sprachmittlung für die Anmeldung im Sekretariat der Schule für zwei Familien accompanying noTranslation Üwtkltzmxfu wto rtk Qfdtsrxfu of rtk Leixst 2026-03-27 16:00:00 2026-03-27 16:00:00 766 417 opp-new 1 426 +767 Sprachmittlung Job Center Marzahn-Hellersdorf accompanying noTranslation Tl vtkrtf mvto Ztkdoft wtod PE ltof: tof xd 6.85 Xik xfr qfrtktk xd 75.55 Xik. 2026-03-30 12:00:00 2026-03-30 12:00:00 767 378 opp-new 1 427 +768 NEU Betreuung Sprachcafé regular Wtzktxxfu toftl wtktozl tzqwsotkztf Lhkqeieqyél doz eq. 75 Ztosftidtk:offtf mxd Mvtea fotrkouleivtssoutk Agfctklqzogf. Rql Eqyé yofrtz dgfzqul xfr yktozqul cgf 72.55-79.85 Xik lzqzz. noTranslation 2026-03-30 13:00:00 2026-03-30 13:00:00 768 5 opp-new 1 \N +769 Schulanmeldung accompanying noTranslation Kxlloleilhkqeiout Tsztkf wtfözoutf Iosyt wto rtk Qfdtsrxfu oiktk Zgeiztk of rtk Leixst (Yxeilwtku-Ukxfrleixst, Qhytsvoeastklzkqßt 2/1 73148 Wtksof (Dqkmqif-Itsstklrgky). 2026-03-30 15:00:00 2026-03-30 15:00:00 769 5 opp-new 1 428 +770 Sprachmittlung Radiologie accompanying noTranslation Tl vokr Tklzxfztklxeixfu wtod Histwgsgutf. Itkk lhkoeiz Kxllolei xfr Xakqofolei 2026-03-30 16:00:00 2026-03-30 16:00:00 770 378 opp-new 1 429 +771 Begleitung und Dolmetschen beim Arzt accompanying noTranslation Dtromofoleit Xfztklxeixfu of rtk Aofrtkeiokxkuot, wozzt döusoeilz däffsoeitk Rgsdtzleitk\fKxyfxddtk rtk Dxzztk Qswofq: 5701 47817252 2026-03-30 16:00:00 2026-03-30 16:00:00 771 379 opp-new 1 430 +772 Begleitung bei unsere Gartenprojekt, Begleitung von unseres Frauencafe und Begleitung fur Sprachcafe. regular Wtustozxfu wto xfltkt Uqkztfhkgptaz, Wtustozxfu cgf xfltktl Ykqxtfeqyt xfr Wtustozxfu yxk Lhkqeieqyt. noTranslation 2026-03-30 17:00:00 2026-03-30 17:00:00 772 33 opp-new 4 \N +773 Begleitung zum Bürgeramt accompanying noTranslation Tl utiz xd toft Wtkoeizouxfu cgf Dtsrtrqztf. Wozzt rot Leixzmlxeitfrt rqwto xfztklzüzmtf, rqll lot rot fgzvtfroutf Xfztksqutf cgkstuz. Rotlt Xfztksqutf vokr lot doz loei yüiktf. Wozzt üwtkltzmtf, yqssl Ykqutf ltoztfl rtk Wtiökrt qxyzqxeitf lgssztf. 2026-03-30 20:00:00 2026-03-30 20:00:00 773 36 opp-new 1 431 +774 Ausflüge und Sprachcafé regular Utdtoflqd doz xfl Qxlysüut gkuqfolotktf vot m.W. Dxltxdlwtlxeit xfr toutft Orttf tofwkofutf. Vok lofr ltik ystbowts :) noTranslation 2026-03-31 11:00:00 2026-03-31 11:00:00 774 487 opp-new 2 \N +775 Verstärkung gesucht – mach unsere Kinderbetreuung noch bunter! regular Xfltkt Aofrtkwtzktxtkof yktxz loei üwtk toft aktqzoct Ctklzäkaxfu, rot toutft Orttf xfr Zqstfzt dozwkofuz. Gw Wtvtuxfullhotst, Dxloahkgptazt, Fqzxktkaxfrxfu grtk tzvql uqfm qfrtktl – vok vüfleitf xfl Qfutwgzt, rot Aofrtk vokasoei ygkrtkf xfr yökrtkf. Atof lzxdhytl Wqlztsf, lgfrtkf teizt Odhxslt: doz Loff, Lhqß xfr toftd astoftf Stkftyytaz. Rtoft Qxyuqwtf: Toutflzäfrout Cgkwtktozxfu xfr Rxkeiyüikxfu astoftk Qfutwgzt (Lhgkz, Dxloa, aktqzoct Hkgptazt) / Qazoct Wtustozxfu rtk Aofrtk väiktfr rtk Wtzktxxfulmtoz / Tfut Qwlzoddxfu doz rtk Aofrtkwtzktxtkof cgk Gkz noTranslation 2026-03-31 12:00:00 2026-03-31 12:00:00 775 20 opp-new 1 \N +776 Freiwillige für Gartenprojekt gesucht regular Yük xfltk Uqkztfhkgptaz lxeitf vok toft grtk dtiktkt Yktovossout, rot Yktxrt rqkqf iqwtf, utdtoflqd doz rtf Wtvgiftk*offtf mx uäkzftkf. Rql Hkgptaz yofrtz qazxtss rotflzqul cgf 71:55 wol 74:55 Xik lzqzz. Utdtoflqd vokr utläz, uthysqfmz, utuglltf, uthystuz xfr uttkfztz. Od Dozztshxfaz lztiz rql utdtoflqdt Zxf xfr rot Wtustozxfu rtk Ztosftidtfrtf od utlqdztf Hkgmtll. Dtiktkt Igeiwttzt lgvot qsst fgzvtfroutf Dqztkoqsotf (Vtkamtxut, Tkrt, Lqqzuxz) lofr cgkiqfrtf. Rx voklz tofutqkwtoztz xfr xfztklzüzmz – Uqkztftkyqikxfu olz iosyktoei, qwtk atoft Cgkqxlltzmxfu. Voeizou olz cgk qsstd, rqll rx utkft doz Dtfleitf qkwtoztlz xfr Sxlz iqlz, rql Hkgptaz mx wtustoztf. noTranslation 2026-03-31 15:00:00 2026-03-31 15:00:00 776 33 opp-new 3 \N +777 Einladung für die berüfliche Situation accompanying noTranslation Üwtkltzmxfu yük rot qazxtsst wtkxysoeit Lozxqzogf. 2026-04-01 11:00:00 2026-04-01 11:00:00 777 378 opp-new 1 432 +778 Betreuung beim Frauencafé in der Unterkunft regular Yktovossout yük Ykqxtfeqyé utlxeiz Yük xfltk Ykqxtfeqyé lxeitf vok toft vtowsoeit Yktovossout, rot Yktxrt rqkqf iqz, Ykqxtf qxl ctkleiotrtftf Axszxktf mxlqddtfmxwkofutf. Rql Eqyé yofrtz ptrtf Dgfzqu cgf 71:55 wol eq. 70:85/74:55 Xik lzqzz. Of tfzlhqffztk Qzdglhiäkt aöfftf rot Ztosftidtkofftf loei atfftfstkftf, doztofqfrtk lhkteitf, Aqyytt zkofatf xfr utdtoflqd Mtoz ctkwkofutf. Utdtoflqd doz rtf Ykqxtf aöfftf qxei astoft Qazocozäztf tfzlztitf, vot m. W. aktqzoctl Qkwtoztf (Iäatsf, Wqlztsf), utdtoflqdtl Ageitf grtk astoft Qxlysüut. Voeizou: Rx lgssztlz roei qxy Rtxzlei ctklzäfroutf aöfftf, rq cotst Ykqxtf oikt Rtxzleiatffzfollt üwtf döeiztf. Vtoztkt Lhkqeiatffzfollt (m. W. Qkqwolei, Yqklo, Kxllolei grtk Tfusolei) lofr tof Hsxl, qwtk atoft Cgkqxlltzmxfu. Vok vüfleitf xfl toft gyytft, yktxfrsoeit Htklgf, rot utkft qxy Dtfleitf mxutiz, ftxt Ztosftidtkofftf vossagddtf itoßz xfr toft qfutftidt Qzdglhiäkt leiqyyz. noTranslation 2026-04-01 11:00:00 2026-04-01 11:00:00 778 33 opp-new 3 \N +779 Einladung für die berufliche Situation accompanying noTranslation Üwtkltzmxfu yük rot qazxtsst wtkxysoeit Lozxqzogf. Rqfat leiöf 2026-04-01 11:00:00 2026-04-01 11:00:00 779 378 opp-new 1 433 +780 Freiwillige für Sprachcafé (für Frauen) gesucht regular Rql Lhkqeieqyé wtyofrtz loei qazxtss fgei od Qxywqx, tl uowz ptrgei wtktozl ukgßtl Ofztktllt xfztk rtf Wtvgiftkofftf. Cotst Ykqxtf döeiztf oikt Rtxzleiatffzfollt ctkwtlltkf xfr yktxtf loei üwtk rot Döusoeiatoz, ktutsdäßou of toftk tfzlhqffztf Qzdglhiäkt mx üwtf. Uthsqfz olz tof Ztkdof dozzvgeil cgf 77:55 wol 78:55 Xik, rotltk aqff ptrgei wto Wtrqky utdtoflqd qfuthqllz vtkrtf. Rot Ztosftidtkofftf iqwtf üwtkvotutfr Rtxzleiatffzfollt od Wtktoei Q5 wol Q7, ctktofmtsz qxei wol Q3. Rqitk utiz tl cgk qsstd xd tofyqeit Utlhkäeit, utdtoflqdtl Üwtf xfr rql lhotstkoleit Stkftf rtk Lhkqeit. Qsl Yktovossout aqfflz rx rql Lhkqeieqyé qazoc dozutlzqsztf: rxkei sgeatkt Utlhkäeit astoft Üwxfutf (m. W. qxl Stikwüeitkf grtk ltswlz cgkwtktoztz) Lhotst, Wosrtk grtk qsszqulfqit Zitdtf aktqzoct Orttf, rot rql Lhkteitf yökrtkf Rot Döusoeiatoztf lofr rqwto ltik gyytf – voeizou olz cgk qsstd, rqll rx Yktxrt rqkqf iqlz, Lhkqeit mx ctkdozztsf xfr toft qfutftidt Stkfqzdglhiäkt mx leiqyytf. Tof uttouftztk Kqxd doz Vioztwgqkr, Ysoheiqkz xfr Lozmdöusoeiatoztf olz cgkiqfrtf. Wto Wtrqky aqff qxßtkrtd toft Aofrtkwtzktxxfu gkuqfolotkz vtkrtf. Vok lxeitf toft gyytft, utrxsrout xfr aktqzoct Htklgf, rot Sxlz iqz, Ykqxtf mx dgzocotktf, mx wtustoztf xfr wtod Qfagddtf of rtk rtxzleitf Lhkqeit mx xfztklzüzmtf. noTranslation 2026-04-01 11:00:00 2026-04-01 11:00:00 780 33 opp-new 3 \N +781 Dolmetscher accompanying noTranslation Rgsdtzleitf of rtk IFG-Hkqbol 2026-04-01 12:00:00 2026-04-01 12:00:00 781 75 opp-new 1 434 +782 Sprachmittlung/Begleitung zur Radiologie (Ihre Radiologen) accompanying noTranslation Ztkdof of Kqrogsguot yük DKZ 2026-04-01 12:00:00 2026-04-01 12:00:00 782 40 opp-new 1 435 +783 Begleitung zur Augen-Hochschulambulanz, Untersuchung/ Behandlung einzufinden accompanying noTranslation Xfztklxeixfu/ Wtiqfrsxfu Qxutf 2026-04-01 14:00:00 2026-04-01 14:00:00 783 378 opp-new 1 436 +784 Sprachmittlung auf Ukrainisch für eine Tempelhof-Tour regular Vok gkuqfolotktf yük rot Wtvgiftk*offtf rtk QVG/OW Xfztkaxfyz Ztdhtsigy mxlqddtf doz rtd ZIH toft iolzgkoleit 3-lzüfrout Zgxk. Iotkyük wkqxeitf vok toft Htklgf, rot rotlt Zgxk üwtkltzmz cgf rtxzlei qxy xakqofolei. Rot Zgxk vokr fqeidozzqul xfztk rtk Vgeit ctkdxzsoei mvoleitf 79-70 Xik lzqzzyofrtf. Vok yktxtf xfl, vtff loei toft Htklgf yofrtz, rot Sxlz xfr Mtoz iqz, rtd Zgxkuxort wtoltozt mx lztitf xfr mx üwtkltzmtf. noTranslation 2026-04-01 14:00:00 2026-04-01 14:00:00 784 16 opp-new 1 \N +785 Begleitung zur Radiologie accompanying noTranslation Üwtkltzmxfu cgf Rtxzlei qxy Htklolei/Rqko wtod Qkmzztkdof: Of rtd Qkmzztkdof yük Itkkf Lqstio utiz tl xd toft DKZ rtk Vokwtsläxst, atoft Ghtkqzogf xfr qxei atoft Cgkwtktozxfu rqyük. 2026-04-02 12:00:00 2026-04-02 12:00:00 785 168 opp-new 1 437 +786 Sprachmittlung Endokrinologie accompanying noTranslation Rot Ykqx lhkoeiz Kxllolei xfr Xakqofolei. 2026-04-02 17:00:00 2026-04-02 17:00:00 786 378 opp-new 1 438 +787 Test regular opportunity regular Ztlz ktuxsqk ghhgkzxfozn noTranslation 2026-04-03 08:00:00 2026-04-03 08:00:00 787 1 opp-new 4 \N +789 Begleitung zur Op-Vorgespräch accompanying noTranslation Ztkdof mxk GH-Cgkutlhkäei 2026-04-08 16:00:00 2026-04-08 16:00:00 789 12 opp-new 1 440 +790 Begleitung zur Beratung accompanying noTranslation Itkk Rtizoqkgc iqz toftf Ztkdof wto rtk Kteizlwtkqzxfu, qwtk tk olz xfloeitk, rqll tk qsstoft leiqyyz, rqiof mx utitf, vtos tk leigf od Qsztk olz. Oei iqwt qsl Agfzqazfxddtk rtl Utysüeiztztf dtoft tofututwtf, rq oei foeiz ltoft iqwt, qwtk oei aqff doei doz oid ofl Agfzqaz ltzmtf. 2026-04-09 09:00:00 2026-04-09 09:00:00 790 378 opp-new 1 441 +792 Begleitung zum Arzt (Ultraschall), Radiologie accompanying noTranslation Üwtkltzmxfu,Wtustozxfu 2026-04-10 15:00:00 2026-04-10 15:00:00 792 416 opp-new 1 443 +796 Begleitung zum Arzt accompanying noTranslation Üwtkltzmxfu mvoleitf rtk Hqzotfzof xfr rtd Qkmz 2026-04-13 18:00:00 2026-04-13 18:00:00 796 1 opp-new 1 447 +791 Begleitung zum Amt für Soziales accompanying noTranslation Üwtkltzmxfu 2026-04-10 13:00:00 2026-04-15 12:39:43.654833 791 416 opp-searching 1 442 +793 Sprachmittlung, polnisch, bei einer Schulhilfekonferenz, accompanying noTranslation Üwtkltzmxfu yük rot Tsztkf 2026-04-13 09:00:00 2026-04-16 14:38:50.515596 793 486 opp-searching 1 444 +794 Begleitung zur Kinderazt accompanying noTranslation Ykqx Hktorq iqz toftf Ztkdof wtod Aofrtkqkmz. Rtk Yktovossout dxll fxk rql Utlhkäei mvoleitf oik xfr rtd Qkmz rgsdtzleitf. 2026-04-13 14:00:00 2026-04-22 14:24:02.059084 794 5 opp-searching 1 445 +797 test accompanying \N deutsche rlqrlq 2026-04-15 08:48:46.544958 2026-04-17 12:33:50.594479 1588 1 opp-new 1 448 +798 testing april 15th 10:50 accompanying \N deutsche ztlz 2026-04-15 08:52:37.682504 2026-04-20 07:08:47.419137 1589 1 opp-new 1 449 +800 ukrainische Übersetzer accompanying \N englishOk Ltik uttikzt Rqdtf xfr Itkktf, yüt toft Yqdosot doz mvto Aofrtkf vokr tof Rgsdtzleitk yük toftf Ztkdof mxk Leixsqfdtsrxfu wtfözou. 2026-04-15 16:21:01.703298 2026-04-17 13:30:12.525779 1592 1 opp-searching 1 451 +799 ukrainische Dolmetscher (auch russich) accompanying \N englishOk Ltik uttikzt Rqdtf xfr Itkktf, yük rot Qfdtsrxfu lgvot rtf Leixsmxzkozz rtk Leiüstkof Qfmitsoat Hgsoqagcq qf rtk Vqsr-Ukxfrleixst vokr tof Rgsdtzleitk wtfözouz. Leixst: Vqsr-Ukxfrleixst Qrktllt: Vqsrleixsqsstt 48, 72599 Wtksof Rtk Rgsdtzleitk vokr od Mtozkqxd cgf Dgfzqu wol Yktozqu, ptvtosl cgf 50:85 Xik wol 72:85 Xik wtfözouz. 2026-04-15 15:54:18.206911 2026-04-22 13:50:47.203112 1591 1 opp-searching 1 450 +821 Begleitung von jungen Männern zu Sportangeboten in der Charlottenburg-Wilmersdorf regular Vok lxeitf ptdqfrtf, rtk rot Däfftk mx rtf Lhgkzqfutwgztf of rtk Xdutwxfu dgzocotkz xfr wtustoztz \N \N 2026-04-24 11:18:28.510155 2026-04-24 11:18:28.510155 1626 488 opp-new 1 \N +808 Übersetzung für Termin mit Gesundheitsamt, welches zu uns in die Einrichtung kommt accompanying \N deutsche Üwtkltzmxfu mvoleitf rtd Utlxfritozlqdz xfr rtk Wtvgiftkof. Vtff döusoei qxei utkft leigf xd 77 Xik, rq rql Aofr iotk leigfdqs utodhyz vokr xfr Üwtkltzmxfu iotk qxei iosyktoei väkt 2026-04-17 13:09:47.410466 2026-04-24 13:41:26.966609 1602 1 opp-searching 1 456 +795 Begleitung zur Schulärtliche Untersuchung accompanying noTranslation Rot Yqdosot Lqrxstcq iqz toftf Ztkdof wtod Pxutfrutlxfritozlrotflz yük toft leixsäkmzsoeit Xfztklxeixfu. Rtk Yktovossout dxll fxk rql Utlhkäei väiktfr rtl Ztkdofl rgsdtzleitf. 2026-04-13 17:00:00 2026-04-27 16:04:39.893442 795 1 opp-searching 1 446 +654 Sprachmittlung Russisch bei Augenärztin accompanying noTranslation Lhkqeidozzsxfu wto toftd Qxutfqkmzztkdof 2026-02-03 12:00:00 2026-04-16 08:24:15.723194 654 6 opp-new 1 353 +259 Nachhilfe Grundschule / Oberschule regular Vok wkäxeiztf Xfztklzüzmxfu yük xfltkt Leiüstk. noTranslation 2025-02-18 11:00:00 2026-04-16 09:26:03.783405 259 81 opp-searching 2 \N +693 Wöchentliches Deutsch üben mit Geflüchteten regular Vok lxeitf Yktovossout, rot utkf od wtlztitfrtf Qfutwgz "Rtxzlei üwtf xfr Lfqeal" Dgfzqul cgf 70-76 Xik of xfltktk Xfztkaxfyz qd Ysxuiqytf Ztdhtsigy od Tkvqeiltftfwtktoei qxlitsytf döeiztf. Of sgeatktk Qzdglhiäkt üwtf tof wol rkto Yktovossout utdtoflqd doz ofztktllotkztf Wtvgiftkf rtk Xfztkaxfyz Rtxzlei. Rot Lhkqeifoctqxl rtk Ztosftidtk lofr mxd Ztos ltik xfztkleiotrsoei, lg rqll rot Wtktozleiqyz mxk Odhkgcolqzogf tkygkrtksoei olz. Rot Qfygkrtkxfutf xfr rtk Atffzfollzqfr rtk Ztosftidtk cqkootktf cgf Vgeit mx Vgeit. Tkvüfleiz lofr ygkzutleikozztft Rtxzleiatffzfollt, utkf qwtk qxei vtoztkt Lhkqeiatffzfollt (m.W. Xakqofolei grtk Kxllolei, qwtk qxei Qkqwolei, Htklolei, Zükaolei, Utgkuolei, g.q.). noTranslation 2026-02-24 16:00:00 2026-04-20 15:16:03.950133 693 16 opp-searching 3 \N +805 Begleitung zu verschiedenen Arztterminen (Frauenarzt, Zahnarzt, Mammographie, ...), Behörden (Jobcenter in TK, ...) regular \N \N \N 2026-04-16 11:52:52.593616 2026-04-17 12:21:02.237172 1597 1 opp-new 1 \N +801 Männercafé regular Yktovossout utlxeiz yük rql Däfftkeqyé: Yük xfltk vöeitfzsoeitl Däfftkeqyé lxeitf vok tfuquotkzt Däfftk, rot Qkqwolei lhkteitf xfr Sxlz iqwtf, rql Qfutwgz qazoc dozmxutlzqsztf. Rql Däfftkeqyé wotztz toftf utleiüzmztf Kqxd yük Qxlzqxlei, Utlhkäeit üwtk Qsszqu xfr Stwtf of Rtxzleisqfr lgvot rot Döusoeiatoz, ftxt Agfzqazt mx afühytf. Vqff: Ptrtf Dgfzqu, 71:85–74:55 Xik (Cgkwtktozxfu qw eq. 79:85 Xik döusoei) Vg: Utdtofleiqyzlkqxd UX Wkqwqfztk Lzkqßt 73, 75078 Wtksof. Qsl Yktovossoutk xfztklzüzmz rx wto rtk Gkuqfolqzogf, wtod Qfagddtf rtk Ztosftidtfrtf xfr wto rtk Utlzqszxfu rtk Zktyytf. Vtff rx Ofztktllt iqlz, dtsrt roei utkft wto xfl: 📩 wtff-vosdtklrgky@dzl-lgeoqsrtlouf.egd 📱 +26 701 32098008 Vok yktxtf xfl qxy rtoft Xfztklzüzmxfu! \N \N 2026-04-15 18:00:54.405028 2026-04-17 12:21:31.752664 1593 1 opp-new 3 \N +812 Sprachcafe A1 regular Rtxzleiatffzfollt dofr. Q3, Kxllolei-/ Xakqofoleiatffzfollt \N \N 2026-04-22 09:48:09.987592 2026-04-22 09:48:09.987592 1616 488 opp-new 1 \N +711 Unterstützung beim BENN Kiezcafé (mit Kinderbetreuung) regular Vok lxeitf yktovossout Itsytkofftf yük xfltk WTFF Aotmeqyé of Vosdtklrgky. Rql Aotmeqyé yofrtz ptrtf Yktozqu cgf 79:55 wol 70:55 Xik lzqzz. Tl olz tof gyytftk Zktyyhxfaz yük Fqeiwqkofftf. Rot Qxyuqwtf lofr: Xfztklzüzmxfu wto rtk Gkuqfolqzogf xfr Cgkwtktozxfu rtl Aotmeqyél, Wtuküßxfu rtk Uälzt, Iosyt wtod Qxy- xfr Qwwqx, Utlhkäeit doz Fqeiwqk*offtf. Mxläzmsoei lxeitf vok Yktovossout, rot väiktfr rtl Aotmeqyél rot Aofrtk wtzktxtf: Doz Aofrtkf lhotstf, Wqlztsf grtk astoft Qazocozäztf qfwotztf, Qxyloeiz väiktfr rtk Ctkqflzqszxfu. Wto xfltktf Qazocozäztf lofr yqlz oddtk Aofrtk qfvtltfr. Rtliqsw olz tof tkvtoztkztl Yüikxfulmtxufol tkygkrtksoei. Mtoz: Ptrtf Yktozqu, 79:55–70:55 Xik Gkz: Iqxl rtk Fqeiwqkleiqyyz (Lzkqßt qd Leigtstkhqka 80, 75079 Wtksof). Lhkqeiatffzfollt: Ukxfratffzfollt of Rtxzlei lofr iosyktoei, qwtk foeiz mvofutfr tkygkrtksoei. Voeizou lofr Gyytfitoz xfr Yktxrt qd Agfzqaz doz Dtfleitf. noTranslation 2026-03-02 17:00:00 2026-04-21 11:02:04.325337 711 250 opp-searching 3 \N +807 Begleitung zur Vaterschaftsanerkennung (Jugendamt) accompanying \N deutsche Lhkqeidozzsxfu yük Cqztkleiqyzlqftkatffxfu wtod Pxutfrqdz 2026-04-17 12:57:31.702252 2026-04-17 12:59:49.98846 1601 1 opp-searching 1 455 +802 Begleitung zur Schulärztiche Untersuchung accompanying \N deutsche Ztkdof wtod Pxutfrutlxfritozlrotflz yük toft leixsäkmzsoeit Xfztklxeixfu. 2026-04-16 07:40:12.864509 2026-04-22 08:09:49.140503 1594 1 opp-searching 1 452 +806 Sprachmittlung bei Arztbesuch accompanying \N deutsche Tl utiz xd toftf Ztkdof yük tof EZ wto TCOROQ Wtksof. Mtozqxyvqfr leiäzmxfulvtolt 7-7.9 Lzxfrtf 2026-04-17 09:03:12.784157 2026-04-17 14:29:59.141648 1600 1 opp-searching 1 454 +705 Nachhilfe in Deutsch für Geflüchtete regular Rot Yktovossoutf lgsstf rtf Pxutfrsoeitf, rot iotk of rtk Xfztkaxfyz stwtf Fqeiiosyt of rtk rtxzleitf Lhkqeit utwtf. Rql Foctqx rtk Pxutfrsoeitf wtyofrtz loei qxy Q7-Q3. noTranslation Qd Vgeitftfrt lofr twtfyqssl Wtzktxtk*offtf cgk Gkz. Vok iqwtf toftf ukgßtf Kqxd of rtd Fqeiiosyt qfutwgztf vtkrtf aqff mx rtftf rtk Mxuqfu rxkei rot Dozqkwtoztfrtf utväikstolztz vokr. 2026-03-02 10:00:00 2026-04-17 14:47:41.096662 705 479 opp-searching 2 \N +810 Begleitung zum Jobcenter Lichtenberg accompanying \N deutsche . Tk iqz rgkz tof Utlhkäei üwtk ltoft wtkxysoeit Mxaxfyz doz ltoftd Qkwtozlwtkqztk xfr lgss xfwtrofuz toftf Rgsdtzleitk (toft Rgsdtzleitkof) dozwkofutf. 2026-04-21 14:43:52.871669 2026-04-22 14:31:41.895026 1612 488 opp-searching 1 457 +809 Tandem: Alltägliche Begleitung regular Vok lxeitf Yktovossout yük tof Zqfrtd (Lhkqeit, Xfztklzüzmxfu wto qsszäusoeitf Ykqutf xlv.) \N \N 2026-04-17 14:32:17.407308 2026-04-20 08:55:35.640574 1603 1 opp-searching 1 \N +803 Freiwillige gesucht – Druzya Café im Gemeinschaftsunterkunft Fritz-Wildung-Straße 21 regular Yük rot Votrtkwtstwxfu xfltktl Rkxmnq Eqyél od Utdtofleiqyzlxfztkaxfyz Ykozm-Vosrxfu-Lzkqßt 37 lxeitf vok tfuquotkzt Yktovossout! Rql Eqyé koeiztz loei cgk qsstd qf Wtvgiftk*offtf rtk Xfztkaxfyz, cotst rqcgf äsztkt xakqofoleit Dtfleitf. Tl olz tof gyytftk xfr utdüzsoeitk Zktyyhxfaz yük Qxlzqxlei, Wtutufxfu xfr utdtoflqdtl Wtolqddtfltof. ☕ Vqff? Rotflzqul grtk dozzvgeil, ptvtosl cgf 72:55 wol 71:55 Xik 📍 Vg? Utdtofleiqyzlxfztkaxfyz Ykozm-Vosrxfu-Lzkqßt 37 Vok lxeitf toft Htklgf, rot rql Eqyé ktutsdäßou wtustoztz xfr gkuqfolotkz. Rqwto utiz tl cgk qsstd xd: Utlzqszxfu toftl gyytftf Eqyé-Fqeidozzqul Yökrtkxfu cgf Wtutufxfu xfr Qxlzqxlei Xfztklzüzmxfu tofyqeitk Rtxzlei-Stkfdgdtfzt od Qsszqu 💬 Voeizou olz xfl, rqll rot yktovossout Htklgf Rtxzlei xfr Xakqofolei lhkoeiz, xd toft uxzt Ctklzäfrouxfu doz rtf Wtvgiftk*offtf mx tkdöusoeitf. Rql Rkxmnq Eqyé wotztz toftf voeizoutf Kqxd yük Utdtofleiqyz, Gkotfzotkxfu xfr Ctkzkqxtf od Qsszqu rtk Xfztkaxfyz. 👉 Vtff rx Ofztktllt iqlz grtk ptdqfrtf atfflz, dtsrt roei utkft wto xfl! 📩 wtff-vosdtklrgky@dzl-lgeoqsrtlouf.egd 📱 +26 701 32098008 Vok yktxtf xfl ltik qxy Xfztklzüzmxfu! \N \N 2026-04-16 08:33:20.60988 2026-04-20 12:40:57.148484 1595 1 opp-new 3 \N +817 Übersetzung accompanying \N deutsche Tk lhkoeiz qxei Qltkwtorleiqfolei 2026-04-23 14:09:03.652884 2026-04-24 14:46:30.306702 1622 488 opp-searching 1 462 +814 Begleitung zur Bank accompanying \N deutsche Wqfaagfzgtköyyfxfu, Ztkdfrqzxd: 36.52.3531 (Rql Ygkdxsqk iqz Ltfnq qxlutyüssz) 2026-04-22 13:22:00.784867 2026-04-22 13:24:21.696842 1618 488 opp-searching 1 460 +804 Begleitung zum Arzt accompanying \N deutsche rgsdtzleitf qxy Yqklo/Rqko 2026-04-16 10:56:25.122243 2026-04-22 14:02:04.007197 1596 1 opp-searching 1 453 +813 Begleitung zum Arzt accompanying \N englishOk kgxzoftdäßout Agfzkgsst of rtk Aqkrogsguot 2026-04-22 11:13:25.972827 2026-04-23 10:06:48.872172 1617 488 opp-searching 1 459 +86 Doctor’s Appointment: Kid accompanying noTranslation Qkoqf Lzgoqf iqzzt rtf ygsutfrtf Ztkdof:\fRotflzqu, 35. Qxuxlz 3532 xd 56:55 Xik\fGkz: Iqxzasofoa, Eiqkozé Eqdhxl Dozzt, Sxoltflzk. 3-9, 75770 Wtksof\fQkoqf ol q lgf gy Ykqx Lzgpqf, zitn lhtqa Kxlloqf qfr Kgdqfoqf 1970-01-01 00:00:00 2026-04-23 09:48:29.886432 86 8 opp-searching 1 \N +811 dummy accompanying \N englishOk fg ofyg 2026-04-22 08:41:24.320116 2026-04-23 14:17:35.59632 1615 488 opp-new 1 458 +819 Übersetzung accompanying \N deutsche Itkk Lqkulnqf lhkoeiz qxei Qkdtfolei. 2026-04-24 07:46:05.923537 2026-04-24 14:48:22.4293 1624 488 opp-searching 1 463 +816 Tischtennisspielen mit Kindern und Jugendlichen regular Kxllolei-/ Xakqofoleiatffzfollt \N \N 2026-04-23 12:39:33.404008 2026-04-24 14:53:32.746251 1621 488 opp-searching 1 \N +788 Unterstützung für Sommerfest events Yük xfltk Lgddtkytlz wtfözoutf vok Iosyt wto Qxy- xfr Qwwqx, Dxloawtzktxxfu, Aofrtkqazocozäztf vot Leidofatf, Ltoytfwsqltf, lgvot Tlltfqxluqwt. Grtk döeiztlz rx tzvql qfwotztf? Vok lofr yük ptrt Iosyt ltik rqfawqk. noTranslation 2026-04-07 17:00:00 2026-04-24 14:54:46.838294 788 4 opp-searching 5 439 +822 OP-Vorbereitung accompanying \N deutsche atoft 2026-04-27 14:46:11.72686 2026-04-27 15:00:37.846485 1628 488 opp-searching 1 464 +823 Übersetzung und ggf. Begleitung zu Vorgespräch OP accompanying \N deutsche Axfrt wkqxeiz Üwtkltzmxfu wto Cgkutlhkäei yük GH, qd Wtlztf soct (qflzqzz htk Ztstygf) 2026-04-27 15:22:05.541686 2026-04-27 15:49:31.343301 1629 488 opp-searching 1 465 +\. + + +-- +-- Data for Name: opportunity_volunteer; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.opportunity_volunteer (id, status, opportunity_id, volunteer_id, created_at, updated_at) FROM stdin; +1 opp-pending 14 1 2026-04-14 16:11:18.405472 2026-04-14 16:11:18.405472 +2 opp-pending 163 1 2026-04-14 16:11:18.411444 2026-04-14 16:11:18.411444 +3 opp-matched 223 1 2026-04-14 16:11:18.416552 2026-04-14 16:11:18.416552 +4 opp-pending 286 1 2026-04-14 16:11:18.421182 2026-04-14 16:11:18.421182 +5 opp-pending 287 1 2026-04-14 16:11:18.425718 2026-04-14 16:11:18.425718 +6 opp-pending 300 1 2026-04-14 16:11:18.430754 2026-04-14 16:11:18.430754 +7 opp-pending 304 1 2026-04-14 16:11:18.436597 2026-04-14 16:11:18.436597 +8 opp-pending 346 1 2026-04-14 16:11:18.441162 2026-04-14 16:11:18.441162 +9 opp-pending 361 1 2026-04-14 16:11:18.445612 2026-04-14 16:11:18.445612 +10 opp-pending 376 1 2026-04-14 16:11:18.450017 2026-04-14 16:11:18.450017 +11 opp-pending 386 1 2026-04-14 16:11:18.454484 2026-04-14 16:11:18.454484 +12 opp-pending 464 1 2026-04-14 16:11:18.458518 2026-04-14 16:11:18.458518 +13 opp-pending 502 1 2026-04-14 16:11:18.462518 2026-04-14 16:11:18.462518 +14 opp-pending 513 1 2026-04-14 16:11:18.466622 2026-04-14 16:11:18.466622 +15 opp-pending 563 1 2026-04-14 16:11:18.470492 2026-04-14 16:11:18.470492 +16 opp-pending 581 1 2026-04-14 16:11:18.474363 2026-04-14 16:11:18.474363 +17 opp-pending 642 1 2026-04-14 16:11:18.478467 2026-04-14 16:11:18.478467 +18 opp-pending 660 1 2026-04-14 16:11:18.48271 2026-04-14 16:11:18.48271 +19 opp-pending 679 1 2026-04-14 16:11:18.487564 2026-04-14 16:11:18.487564 +20 opp-pending 738 1 2026-04-14 16:11:18.491806 2026-04-14 16:11:18.491806 +21 opp-pending 478 2 2026-04-14 16:11:18.544718 2026-04-14 16:11:18.544718 +22 opp-pending 3 5 2026-04-14 16:11:18.712919 2026-04-14 16:11:18.712919 +23 opp-pending 56 10 2026-04-14 16:11:19.214696 2026-04-14 16:11:19.214696 +24 opp-active 62 10 2026-04-14 16:11:19.219299 2026-04-14 16:11:19.219299 +25 opp-pending 87 10 2026-04-14 16:11:19.223816 2026-04-14 16:11:19.223816 +26 opp-pending 150 10 2026-04-14 16:11:19.22805 2026-04-14 16:11:19.22805 +27 opp-pending 154 10 2026-04-14 16:11:19.232117 2026-04-14 16:11:19.232117 +28 opp-matched 164 10 2026-04-14 16:11:19.236269 2026-04-14 16:11:19.236269 +29 opp-matched 166 10 2026-04-14 16:11:19.240137 2026-04-14 16:11:19.240137 +30 opp-pending 169 10 2026-04-14 16:11:19.244462 2026-04-14 16:11:19.244462 +31 opp-pending 180 10 2026-04-14 16:11:19.249993 2026-04-14 16:11:19.249993 +32 opp-pending 233 10 2026-04-14 16:11:19.255077 2026-04-14 16:11:19.255077 +33 opp-pending 255 10 2026-04-14 16:11:19.25929 2026-04-14 16:11:19.25929 +34 opp-pending 286 10 2026-04-14 16:11:19.263534 2026-04-14 16:11:19.263534 +35 opp-pending 287 10 2026-04-14 16:11:19.267981 2026-04-14 16:11:19.267981 +36 opp-pending 300 10 2026-04-14 16:11:19.272498 2026-04-14 16:11:19.272498 +37 opp-pending 687 13 2026-04-14 16:11:19.544805 2026-04-14 16:11:19.544805 +38 opp-pending 50 14 2026-04-14 16:11:19.626329 2026-04-14 16:11:19.626329 +39 opp-matched 21 21 2026-04-14 16:11:20.190982 2026-04-14 16:11:20.190982 +40 opp-pending 165 21 2026-04-14 16:11:20.195143 2026-04-14 16:11:20.195143 +41 opp-pending 185 21 2026-04-14 16:11:20.199484 2026-04-14 16:11:20.199484 +42 opp-pending 388 24 2026-04-14 16:11:20.455809 2026-04-14 16:11:20.455809 +43 opp-matched 360 26 2026-04-14 16:11:20.585744 2026-04-14 16:11:20.585744 +44 opp-pending 50 27 2026-04-14 16:11:20.679349 2026-04-14 16:11:20.679349 +45 opp-pending 265 30 2026-04-14 16:11:20.909811 2026-04-14 16:11:20.909811 +46 opp-pending 167 30 2026-04-14 16:11:20.913994 2026-04-14 16:11:20.913994 +47 opp-pending 176 30 2026-04-14 16:11:20.9182 2026-04-14 16:11:20.9182 +48 opp-pending 284 30 2026-04-14 16:11:20.922686 2026-04-14 16:11:20.922686 +49 opp-pending 290 30 2026-04-14 16:11:20.926607 2026-04-14 16:11:20.926607 +50 opp-pending 291 30 2026-04-14 16:11:20.930683 2026-04-14 16:11:20.930683 +51 opp-active 61 32 2026-04-14 16:11:21.212607 2026-04-14 16:11:21.212607 +52 opp-pending 78 32 2026-04-14 16:11:21.216817 2026-04-14 16:11:21.216817 +53 opp-pending 79 32 2026-04-14 16:11:21.220811 2026-04-14 16:11:21.220811 +54 opp-pending 280 32 2026-04-14 16:11:21.225376 2026-04-14 16:11:21.225376 +55 opp-pending 387 32 2026-04-14 16:11:21.229778 2026-04-14 16:11:21.229778 +56 opp-pending 495 32 2026-04-14 16:11:21.23485 2026-04-14 16:11:21.23485 +57 opp-pending 526 32 2026-04-14 16:11:21.238894 2026-04-14 16:11:21.238894 +58 opp-pending 569 32 2026-04-14 16:11:21.242976 2026-04-14 16:11:21.242976 +59 opp-pending 684 32 2026-04-14 16:11:21.246955 2026-04-14 16:11:21.246955 +60 opp-pending 785 32 2026-04-14 16:11:21.251106 2026-04-14 16:11:21.251106 +61 opp-matched 269 34 2026-04-14 16:11:21.404834 2026-04-14 16:11:21.404834 +62 opp-pending 165 34 2026-04-14 16:11:21.408824 2026-04-14 16:11:21.408824 +63 opp-pending 185 34 2026-04-14 16:11:21.413003 2026-04-14 16:11:21.413003 +64 opp-pending 245 34 2026-04-14 16:11:21.418918 2026-04-14 16:11:21.418918 +65 opp-pending 436 34 2026-04-14 16:11:21.423089 2026-04-14 16:11:21.423089 +66 opp-matched 520 34 2026-04-14 16:11:21.427247 2026-04-14 16:11:21.427247 +67 opp-pending 536 34 2026-04-14 16:11:21.431147 2026-04-14 16:11:21.431147 +68 opp-pending 687 34 2026-04-14 16:11:21.435096 2026-04-14 16:11:21.435096 +69 opp-pending 12 35 2026-04-14 16:11:21.505569 2026-04-14 16:11:21.505569 +70 opp-pending 407 36 2026-04-14 16:11:21.574188 2026-04-14 16:11:21.574188 +71 opp-pending 78 37 2026-04-14 16:11:21.638667 2026-04-14 16:11:21.638667 +72 opp-pending 149 37 2026-04-14 16:11:21.642963 2026-04-14 16:11:21.642963 +73 opp-pending 203 37 2026-04-14 16:11:21.647411 2026-04-14 16:11:21.647411 +74 opp-pending 285 37 2026-04-14 16:11:21.651802 2026-04-14 16:11:21.651802 +75 opp-pending 514 37 2026-04-14 16:11:21.655763 2026-04-14 16:11:21.655763 +76 opp-pending 12 38 2026-04-14 16:11:21.737256 2026-04-14 16:11:21.737256 +77 opp-pending 365 38 2026-04-14 16:11:21.741306 2026-04-14 16:11:21.741306 +78 opp-pending 375 38 2026-04-14 16:11:21.745398 2026-04-14 16:11:21.745398 +79 opp-pending 50 40 2026-04-14 16:11:21.87042 2026-04-14 16:11:21.87042 +80 opp-matched 32 41 2026-04-14 16:11:21.95974 2026-04-14 16:11:21.95974 +81 opp-pending 383 44 2026-04-14 16:11:22.208832 2026-04-14 16:11:22.208832 +82 opp-pending 25 45 2026-04-14 16:11:22.352115 2026-04-14 16:11:22.352115 +83 opp-pending 388 45 2026-04-14 16:11:22.356246 2026-04-14 16:11:22.356246 +84 opp-pending 426 45 2026-04-14 16:11:22.360283 2026-04-14 16:11:22.360283 +85 opp-pending 434 45 2026-04-14 16:11:22.364479 2026-04-14 16:11:22.364479 +86 opp-pending 111 48 2026-04-14 16:11:22.725551 2026-04-14 16:11:22.725551 +87 opp-pending 112 48 2026-04-14 16:11:22.729481 2026-04-14 16:11:22.729481 +88 opp-pending 111 50 2026-04-14 16:11:22.891321 2026-04-14 16:11:22.891321 +89 opp-pending 112 50 2026-04-14 16:11:22.895285 2026-04-14 16:11:22.895285 +90 opp-pending 82 56 2026-04-14 16:11:23.453255 2026-04-14 16:11:23.453255 +91 opp-active 25 59 2026-04-14 16:11:23.718629 2026-04-14 16:11:23.718629 +92 opp-pending 63 65 2026-04-14 16:11:24.116703 2026-04-14 16:11:24.116703 +93 opp-pending 274 65 2026-04-14 16:11:24.120906 2026-04-14 16:11:24.120906 +94 opp-pending 177 65 2026-04-14 16:11:24.125432 2026-04-14 16:11:24.125432 +95 opp-pending 178 65 2026-04-14 16:11:24.129578 2026-04-14 16:11:24.129578 +96 opp-pending 190 65 2026-04-14 16:11:24.133933 2026-04-14 16:11:24.133933 +97 opp-pending 194 65 2026-04-14 16:11:24.138281 2026-04-14 16:11:24.138281 +98 opp-pending 195 65 2026-04-14 16:11:24.142272 2026-04-14 16:11:24.142272 +99 opp-pending 196 65 2026-04-14 16:11:24.146637 2026-04-14 16:11:24.146637 +100 opp-pending 255 65 2026-04-14 16:11:24.151334 2026-04-14 16:11:24.151334 +101 opp-pending 408 65 2026-04-14 16:11:24.155599 2026-04-14 16:11:24.155599 +102 opp-pending 449 65 2026-04-14 16:11:24.160054 2026-04-14 16:11:24.160054 +103 opp-pending 497 65 2026-04-14 16:11:24.164467 2026-04-14 16:11:24.164467 +104 opp-pending 611 65 2026-04-14 16:11:24.168604 2026-04-14 16:11:24.168604 +105 opp-pending 85 67 2026-04-14 16:11:24.454352 2026-04-14 16:11:24.454352 +106 opp-pending 300 67 2026-04-14 16:11:24.458338 2026-04-14 16:11:24.458338 +107 opp-pending 350 67 2026-04-14 16:11:24.462258 2026-04-14 16:11:24.462258 +108 opp-pending 82 68 2026-04-14 16:11:24.63969 2026-04-14 16:11:24.63969 +109 opp-pending 151 68 2026-04-14 16:11:24.643552 2026-04-14 16:11:24.643552 +110 opp-pending 283 68 2026-04-14 16:11:24.647537 2026-04-14 16:11:24.647537 +111 opp-pending 238 68 2026-04-14 16:11:24.651682 2026-04-14 16:11:24.651682 +112 opp-pending 323 68 2026-04-14 16:11:24.655873 2026-04-14 16:11:24.655873 +113 opp-pending 540 68 2026-04-14 16:11:24.660008 2026-04-14 16:11:24.660008 +114 opp-pending 249 69 2026-04-14 16:11:24.749425 2026-04-14 16:11:24.749425 +115 opp-pending 255 69 2026-04-14 16:11:24.753516 2026-04-14 16:11:24.753516 +116 opp-pending 300 69 2026-04-14 16:11:24.757974 2026-04-14 16:11:24.757974 +117 opp-pending 361 69 2026-04-14 16:11:24.762064 2026-04-14 16:11:24.762064 +118 opp-pending 376 69 2026-04-14 16:11:24.76628 2026-04-14 16:11:24.76628 +119 opp-pending 449 69 2026-04-14 16:11:24.770368 2026-04-14 16:11:24.770368 +120 opp-pending 502 69 2026-04-14 16:11:24.774382 2026-04-14 16:11:24.774382 +121 opp-pending 646 69 2026-04-14 16:11:24.778343 2026-04-14 16:11:24.778343 +122 opp-pending 715 69 2026-04-14 16:11:24.782144 2026-04-14 16:11:24.782144 +123 opp-pending 717 69 2026-04-14 16:11:24.786077 2026-04-14 16:11:24.786077 +124 opp-pending 46 70 2026-04-14 16:11:24.848984 2026-04-14 16:11:24.848984 +125 opp-pending 272 70 2026-04-14 16:11:24.853222 2026-04-14 16:11:24.853222 +126 opp-pending 234 70 2026-04-14 16:11:24.857264 2026-04-14 16:11:24.857264 +127 opp-pending 420 70 2026-04-14 16:11:24.861261 2026-04-14 16:11:24.861261 +128 opp-pending 423 70 2026-04-14 16:11:24.865299 2026-04-14 16:11:24.865299 +129 opp-pending 427 70 2026-04-14 16:11:24.869169 2026-04-14 16:11:24.869169 +130 opp-active 487 70 2026-04-14 16:11:24.873031 2026-04-14 16:11:24.873031 +131 opp-active 496 70 2026-04-14 16:11:24.877312 2026-04-14 16:11:24.877312 +132 opp-pending 690 70 2026-04-14 16:11:24.88128 2026-04-14 16:11:24.88128 +133 opp-pending 249 71 2026-04-14 16:11:24.959849 2026-04-14 16:11:24.959849 +134 opp-pending 674 71 2026-04-14 16:11:24.963759 2026-04-14 16:11:24.963759 +135 opp-pending 78 73 2026-04-14 16:11:25.086434 2026-04-14 16:11:25.086434 +136 opp-pending 149 73 2026-04-14 16:11:25.090753 2026-04-14 16:11:25.090753 +137 opp-pending 174 73 2026-04-14 16:11:25.095021 2026-04-14 16:11:25.095021 +138 opp-pending 280 73 2026-04-14 16:11:25.099845 2026-04-14 16:11:25.099845 +139 opp-pending 285 73 2026-04-14 16:11:25.104021 2026-04-14 16:11:25.104021 +140 opp-pending 303 73 2026-04-14 16:11:25.108225 2026-04-14 16:11:25.108225 +141 opp-pending 64 74 2026-04-14 16:11:25.18459 2026-04-14 16:11:25.18459 +142 opp-pending 176 74 2026-04-14 16:11:25.188829 2026-04-14 16:11:25.188829 +143 opp-pending 290 74 2026-04-14 16:11:25.192954 2026-04-14 16:11:25.192954 +144 opp-pending 291 74 2026-04-14 16:11:25.196962 2026-04-14 16:11:25.196962 +145 opp-pending 169 75 2026-04-14 16:11:25.30231 2026-04-14 16:11:25.30231 +146 opp-pending 612 75 2026-04-14 16:11:25.306321 2026-04-14 16:11:25.306321 +147 opp-pending 4 76 2026-04-14 16:11:25.489901 2026-04-14 16:11:25.489901 +148 opp-pending 54 80 2026-04-14 16:11:25.850575 2026-04-14 16:11:25.850575 +149 opp-pending 50 81 2026-04-14 16:11:25.914301 2026-04-14 16:11:25.914301 +150 opp-pending 50 82 2026-04-14 16:11:26.008453 2026-04-14 16:11:26.008453 +151 opp-pending 73 82 2026-04-14 16:11:26.01254 2026-04-14 16:11:26.01254 +152 opp-active 687 82 2026-04-14 16:11:26.016755 2026-04-14 16:11:26.016755 +153 opp-pending 76 83 2026-04-14 16:11:26.107835 2026-04-14 16:11:26.107835 +154 opp-pending 85 83 2026-04-14 16:11:26.111998 2026-04-14 16:11:26.111998 +155 opp-pending 87 83 2026-04-14 16:11:26.116478 2026-04-14 16:11:26.116478 +156 opp-pending 100 83 2026-04-14 16:11:26.120663 2026-04-14 16:11:26.120663 +157 opp-pending 112 83 2026-04-14 16:11:26.124958 2026-04-14 16:11:26.124958 +158 opp-pending 177 83 2026-04-14 16:11:26.129156 2026-04-14 16:11:26.129156 +159 opp-pending 178 83 2026-04-14 16:11:26.133007 2026-04-14 16:11:26.133007 +160 opp-pending 190 83 2026-04-14 16:11:26.136866 2026-04-14 16:11:26.136866 +161 opp-pending 194 83 2026-04-14 16:11:26.140931 2026-04-14 16:11:26.140931 +162 opp-pending 195 83 2026-04-14 16:11:26.145273 2026-04-14 16:11:26.145273 +163 opp-pending 196 83 2026-04-14 16:11:26.149279 2026-04-14 16:11:26.149279 +164 opp-pending 222 83 2026-04-14 16:11:26.153251 2026-04-14 16:11:26.153251 +165 opp-pending 300 83 2026-04-14 16:11:26.157149 2026-04-14 16:11:26.157149 +166 opp-pending 302 83 2026-04-14 16:11:26.161238 2026-04-14 16:11:26.161238 +167 opp-pending 304 83 2026-04-14 16:11:26.165289 2026-04-14 16:11:26.165289 +168 opp-pending 350 83 2026-04-14 16:11:26.169271 2026-04-14 16:11:26.169271 +169 opp-pending 422 83 2026-04-14 16:11:26.173242 2026-04-14 16:11:26.173242 +170 opp-pending 503 85 2026-04-14 16:11:26.377166 2026-04-14 16:11:26.377166 +171 opp-pending 612 85 2026-04-14 16:11:26.381168 2026-04-14 16:11:26.381168 +172 opp-pending 642 85 2026-04-14 16:11:26.385106 2026-04-14 16:11:26.385106 +173 opp-pending 674 85 2026-04-14 16:11:26.388952 2026-04-14 16:11:26.388952 +174 opp-pending 679 85 2026-04-14 16:11:26.392946 2026-04-14 16:11:26.392946 +175 opp-pending 710 85 2026-04-14 16:11:26.396987 2026-04-14 16:11:26.396987 +176 opp-pending 744 85 2026-04-14 16:11:26.401182 2026-04-14 16:11:26.401182 +177 opp-pending 770 85 2026-04-14 16:11:26.405044 2026-04-14 16:11:26.405044 +178 opp-pending 265 89 2026-04-14 16:11:26.792257 2026-04-14 16:11:26.792257 +179 opp-pending 274 89 2026-04-14 16:11:26.796369 2026-04-14 16:11:26.796369 +180 opp-pending 281 89 2026-04-14 16:11:26.800404 2026-04-14 16:11:26.800404 +181 opp-pending 25 91 2026-04-14 16:11:26.908568 2026-04-14 16:11:26.908568 +182 opp-pending 50 96 2026-04-14 16:11:27.236477 2026-04-14 16:11:27.236477 +183 opp-pending 360 96 2026-04-14 16:11:27.240822 2026-04-14 16:11:27.240822 +184 opp-pending 481 96 2026-04-14 16:11:27.246231 2026-04-14 16:11:27.246231 +185 opp-pending 595 97 2026-04-14 16:11:27.331284 2026-04-14 16:11:27.331284 +186 opp-pending 492 102 2026-04-14 16:11:27.912931 2026-04-14 16:11:27.912931 +187 opp-pending 50 105 2026-04-14 16:11:28.042089 2026-04-14 16:11:28.042089 +188 opp-pending 55 107 2026-04-14 16:11:28.226961 2026-04-14 16:11:28.226961 +189 opp-pending 4 109 2026-04-14 16:11:28.478059 2026-04-14 16:11:28.478059 +190 opp-pending 151 112 2026-04-14 16:11:28.72726 2026-04-14 16:11:28.72726 +191 opp-pending 208 112 2026-04-14 16:11:28.732313 2026-04-14 16:11:28.732313 +192 opp-pending 238 112 2026-04-14 16:11:28.736322 2026-04-14 16:11:28.736322 +193 opp-pending 78 113 2026-04-14 16:11:28.842262 2026-04-14 16:11:28.842262 +194 opp-pending 174 114 2026-04-14 16:11:28.911891 2026-04-14 16:11:28.911891 +195 opp-pending 12 115 2026-04-14 16:11:29.005114 2026-04-14 16:11:29.005114 +196 opp-pending 57 116 2026-04-14 16:11:29.063654 2026-04-14 16:11:29.063654 +197 opp-pending 126 116 2026-04-14 16:11:29.067846 2026-04-14 16:11:29.067846 +198 opp-pending 152 116 2026-04-14 16:11:29.073876 2026-04-14 16:11:29.073876 +199 opp-pending 185 116 2026-04-14 16:11:29.078217 2026-04-14 16:11:29.078217 +200 opp-pending 211 116 2026-04-14 16:11:29.08256 2026-04-14 16:11:29.08256 +201 opp-pending 240 116 2026-04-14 16:11:29.087526 2026-04-14 16:11:29.087526 +202 opp-pending 355 116 2026-04-14 16:11:29.092224 2026-04-14 16:11:29.092224 +203 opp-pending 357 116 2026-04-14 16:11:29.097291 2026-04-14 16:11:29.097291 +204 opp-pending 274 117 2026-04-14 16:11:29.182946 2026-04-14 16:11:29.182946 +205 opp-pending 249 117 2026-04-14 16:11:29.187897 2026-04-14 16:11:29.187897 +206 opp-pending 300 117 2026-04-14 16:11:29.192664 2026-04-14 16:11:29.192664 +207 opp-pending 311 117 2026-04-14 16:11:29.197124 2026-04-14 16:11:29.197124 +208 opp-pending 462 117 2026-04-14 16:11:29.201893 2026-04-14 16:11:29.201893 +209 opp-pending 611 117 2026-04-14 16:11:29.206881 2026-04-14 16:11:29.206881 +210 opp-pending 76 118 2026-04-14 16:11:29.295065 2026-04-14 16:11:29.295065 +211 opp-pending 628 118 2026-04-14 16:11:29.299881 2026-04-14 16:11:29.299881 +212 opp-pending 687 118 2026-04-14 16:11:29.304477 2026-04-14 16:11:29.304477 +213 opp-pending 12 119 2026-04-14 16:11:29.38737 2026-04-14 16:11:29.38737 +214 opp-pending 67 121 2026-04-14 16:11:29.524773 2026-04-14 16:11:29.524773 +215 opp-pending 174 122 2026-04-14 16:11:29.574223 2026-04-14 16:11:29.574223 +216 opp-pending 280 122 2026-04-14 16:11:29.578265 2026-04-14 16:11:29.578265 +217 opp-pending 288 122 2026-04-14 16:11:29.582119 2026-04-14 16:11:29.582119 +218 opp-pending 306 122 2026-04-14 16:11:29.586236 2026-04-14 16:11:29.586236 +219 opp-pending 308 122 2026-04-14 16:11:29.590036 2026-04-14 16:11:29.590036 +220 opp-pending 343 122 2026-04-14 16:11:29.593783 2026-04-14 16:11:29.593783 +221 opp-pending 351 122 2026-04-14 16:11:29.598165 2026-04-14 16:11:29.598165 +222 opp-pending 80 126 2026-04-14 16:11:29.871859 2026-04-14 16:11:29.871859 +223 opp-pending 153 126 2026-04-14 16:11:29.87595 2026-04-14 16:11:29.87595 +224 opp-pending 155 126 2026-04-14 16:11:29.880549 2026-04-14 16:11:29.880549 +225 opp-pending 157 126 2026-04-14 16:11:29.884913 2026-04-14 16:11:29.884913 +226 opp-pending 158 126 2026-04-14 16:11:29.889081 2026-04-14 16:11:29.889081 +227 opp-pending 160 126 2026-04-14 16:11:29.893238 2026-04-14 16:11:29.893238 +228 opp-pending 164 126 2026-04-14 16:11:29.897447 2026-04-14 16:11:29.897447 +229 opp-pending 169 126 2026-04-14 16:11:29.901706 2026-04-14 16:11:29.901706 +230 opp-pending 177 126 2026-04-14 16:11:29.905956 2026-04-14 16:11:29.905956 +231 opp-pending 178 126 2026-04-14 16:11:29.910223 2026-04-14 16:11:29.910223 +232 opp-pending 190 126 2026-04-14 16:11:29.914335 2026-04-14 16:11:29.914335 +233 opp-pending 194 126 2026-04-14 16:11:29.918439 2026-04-14 16:11:29.918439 +234 opp-pending 195 126 2026-04-14 16:11:29.922479 2026-04-14 16:11:29.922479 +235 opp-pending 196 126 2026-04-14 16:11:29.926481 2026-04-14 16:11:29.926481 +236 opp-pending 207 126 2026-04-14 16:11:29.930472 2026-04-14 16:11:29.930472 +237 opp-pending 300 126 2026-04-14 16:11:29.934453 2026-04-14 16:11:29.934453 +238 opp-pending 304 126 2026-04-14 16:11:29.938443 2026-04-14 16:11:29.938443 +239 opp-pending 402 126 2026-04-14 16:11:29.942427 2026-04-14 16:11:29.942427 +240 opp-pending 524 126 2026-04-14 16:11:29.946504 2026-04-14 16:11:29.946504 +241 opp-pending 649 126 2026-04-14 16:11:29.950623 2026-04-14 16:11:29.950623 +242 opp-pending 765 126 2026-04-14 16:11:29.954673 2026-04-14 16:11:29.954673 +243 opp-pending 274 127 2026-04-14 16:11:30.04493 2026-04-14 16:11:30.04493 +244 opp-pending 237 127 2026-04-14 16:11:30.049128 2026-04-14 16:11:30.049128 +245 opp-pending 300 127 2026-04-14 16:11:30.053168 2026-04-14 16:11:30.053168 +246 opp-pending 309 127 2026-04-14 16:11:30.057533 2026-04-14 16:11:30.057533 +247 opp-pending 312 127 2026-04-14 16:11:30.061651 2026-04-14 16:11:30.061651 +248 opp-pending 376 127 2026-04-14 16:11:30.065981 2026-04-14 16:11:30.065981 +249 opp-pending 422 127 2026-04-14 16:11:30.072082 2026-04-14 16:11:30.072082 +250 opp-pending 449 127 2026-04-14 16:11:30.076161 2026-04-14 16:11:30.076161 +251 opp-active 450 127 2026-04-14 16:11:30.080275 2026-04-14 16:11:30.080275 +252 opp-pending 494 127 2026-04-14 16:11:30.084691 2026-04-14 16:11:30.084691 +253 opp-pending 551 127 2026-04-14 16:11:30.089389 2026-04-14 16:11:30.089389 +254 opp-pending 554 127 2026-04-14 16:11:30.094122 2026-04-14 16:11:30.094122 +255 opp-pending 597 127 2026-04-14 16:11:30.098544 2026-04-14 16:11:30.098544 +256 opp-pending 675 127 2026-04-14 16:11:30.102928 2026-04-14 16:11:30.102928 +257 opp-pending 710 127 2026-04-14 16:11:30.107835 2026-04-14 16:11:30.107835 +258 opp-pending 737 127 2026-04-14 16:11:30.112303 2026-04-14 16:11:30.112303 +259 opp-pending 744 127 2026-04-14 16:11:30.116316 2026-04-14 16:11:30.116316 +260 opp-active 72 128 2026-04-14 16:11:30.171993 2026-04-14 16:11:30.171993 +261 opp-pending 300 128 2026-04-14 16:11:30.176295 2026-04-14 16:11:30.176295 +262 opp-pending 85 130 2026-04-14 16:11:30.316496 2026-04-14 16:11:30.316496 +263 opp-pending 153 130 2026-04-14 16:11:30.32076 2026-04-14 16:11:30.32076 +264 opp-pending 155 130 2026-04-14 16:11:30.324817 2026-04-14 16:11:30.324817 +265 opp-pending 157 130 2026-04-14 16:11:30.328774 2026-04-14 16:11:30.328774 +266 opp-pending 158 130 2026-04-14 16:11:30.332717 2026-04-14 16:11:30.332717 +267 opp-pending 160 130 2026-04-14 16:11:30.336695 2026-04-14 16:11:30.336695 +268 opp-pending 177 130 2026-04-14 16:11:30.340759 2026-04-14 16:11:30.340759 +269 opp-pending 178 130 2026-04-14 16:11:30.344711 2026-04-14 16:11:30.344711 +270 opp-pending 190 130 2026-04-14 16:11:30.348743 2026-04-14 16:11:30.348743 +271 opp-pending 194 130 2026-04-14 16:11:30.352863 2026-04-14 16:11:30.352863 +272 opp-pending 195 130 2026-04-14 16:11:30.356804 2026-04-14 16:11:30.356804 +273 opp-pending 196 130 2026-04-14 16:11:30.360889 2026-04-14 16:11:30.360889 +274 opp-pending 233 130 2026-04-14 16:11:30.365182 2026-04-14 16:11:30.365182 +275 opp-pending 300 130 2026-04-14 16:11:30.369216 2026-04-14 16:11:30.369216 +276 opp-pending 302 130 2026-04-14 16:11:30.373041 2026-04-14 16:11:30.373041 +277 opp-pending 304 130 2026-04-14 16:11:30.376807 2026-04-14 16:11:30.376807 +278 opp-pending 305 130 2026-04-14 16:11:30.382216 2026-04-14 16:11:30.382216 +279 opp-pending 346 130 2026-04-14 16:11:30.387202 2026-04-14 16:11:30.387202 +280 opp-pending 361 130 2026-04-14 16:11:30.391309 2026-04-14 16:11:30.391309 +281 opp-pending 402 130 2026-04-14 16:11:30.395167 2026-04-14 16:11:30.395167 +282 opp-pending 646 130 2026-04-14 16:11:30.398883 2026-04-14 16:11:30.398883 +283 opp-pending 752 130 2026-04-14 16:11:30.402966 2026-04-14 16:11:30.402966 +284 opp-pending 71 131 2026-04-14 16:11:30.469687 2026-04-14 16:11:30.469687 +285 opp-pending 153 131 2026-04-14 16:11:30.473792 2026-04-14 16:11:30.473792 +286 opp-pending 155 131 2026-04-14 16:11:30.477777 2026-04-14 16:11:30.477777 +287 opp-pending 157 131 2026-04-14 16:11:30.481853 2026-04-14 16:11:30.481853 +288 opp-pending 158 131 2026-04-14 16:11:30.485813 2026-04-14 16:11:30.485813 +289 opp-pending 160 131 2026-04-14 16:11:30.489588 2026-04-14 16:11:30.489588 +290 opp-pending 169 131 2026-04-14 16:11:30.493342 2026-04-14 16:11:30.493342 +291 opp-pending 178 131 2026-04-14 16:11:30.497449 2026-04-14 16:11:30.497449 +292 opp-pending 194 131 2026-04-14 16:11:30.501766 2026-04-14 16:11:30.501766 +293 opp-pending 300 131 2026-04-14 16:11:30.506064 2026-04-14 16:11:30.506064 +294 opp-pending 302 131 2026-04-14 16:11:30.510176 2026-04-14 16:11:30.510176 +295 opp-pending 304 131 2026-04-14 16:11:30.514254 2026-04-14 16:11:30.514254 +296 opp-pending 305 131 2026-04-14 16:11:30.518201 2026-04-14 16:11:30.518201 +297 opp-pending 309 131 2026-04-14 16:11:30.5221 2026-04-14 16:11:30.5221 +298 opp-pending 346 131 2026-04-14 16:11:30.526211 2026-04-14 16:11:30.526211 +299 opp-pending 386 131 2026-04-14 16:11:30.530369 2026-04-14 16:11:30.530369 +300 opp-pending 521 131 2026-04-14 16:11:30.534604 2026-04-14 16:11:30.534604 +301 opp-pending 592 131 2026-04-14 16:11:30.538995 2026-04-14 16:11:30.538995 +302 opp-pending 771 131 2026-04-14 16:11:30.543713 2026-04-14 16:11:30.543713 +303 opp-pending 50 132 2026-04-14 16:11:30.612837 2026-04-14 16:11:30.612837 +304 opp-pending 274 132 2026-04-14 16:11:30.616629 2026-04-14 16:11:30.616629 +305 opp-pending 180 132 2026-04-14 16:11:30.620301 2026-04-14 16:11:30.620301 +306 opp-pending 249 132 2026-04-14 16:11:30.623984 2026-04-14 16:11:30.623984 +307 opp-pending 300 132 2026-04-14 16:11:30.627752 2026-04-14 16:11:30.627752 +308 opp-pending 304 132 2026-04-14 16:11:30.63163 2026-04-14 16:11:30.63163 +309 opp-pending 309 132 2026-04-14 16:11:30.635929 2026-04-14 16:11:30.635929 +310 opp-pending 312 132 2026-04-14 16:11:30.63989 2026-04-14 16:11:30.63989 +311 opp-pending 350 132 2026-04-14 16:11:30.643866 2026-04-14 16:11:30.643866 +312 opp-pending 449 132 2026-04-14 16:11:30.647759 2026-04-14 16:11:30.647759 +313 opp-pending 494 132 2026-04-14 16:11:30.65175 2026-04-14 16:11:30.65175 +314 opp-pending 22 133 2026-04-14 16:11:30.718907 2026-04-14 16:11:30.718907 +315 opp-pending 82 137 2026-04-14 16:11:31.046665 2026-04-14 16:11:31.046665 +316 opp-pending 185 137 2026-04-14 16:11:31.050669 2026-04-14 16:11:31.050669 +317 opp-pending 208 137 2026-04-14 16:11:31.054769 2026-04-14 16:11:31.054769 +318 opp-pending 238 137 2026-04-14 16:11:31.059117 2026-04-14 16:11:31.059117 +319 opp-pending 101 139 2026-04-14 16:11:31.164549 2026-04-14 16:11:31.164549 +320 opp-pending 153 141 2026-04-14 16:11:31.32293 2026-04-14 16:11:31.32293 +321 opp-pending 155 141 2026-04-14 16:11:31.326752 2026-04-14 16:11:31.326752 +322 opp-pending 157 141 2026-04-14 16:11:31.330987 2026-04-14 16:11:31.330987 +323 opp-pending 158 141 2026-04-14 16:11:31.33512 2026-04-14 16:11:31.33512 +324 opp-pending 160 141 2026-04-14 16:11:31.339097 2026-04-14 16:11:31.339097 +325 opp-pending 309 141 2026-04-14 16:11:31.343234 2026-04-14 16:11:31.343234 +326 opp-pending 312 141 2026-04-14 16:11:31.347205 2026-04-14 16:11:31.347205 +327 opp-pending 365 141 2026-04-14 16:11:31.351177 2026-04-14 16:11:31.351177 +328 opp-pending 375 141 2026-04-14 16:11:31.35529 2026-04-14 16:11:31.35529 +329 opp-pending 402 141 2026-04-14 16:11:31.359663 2026-04-14 16:11:31.359663 +330 opp-pending 408 141 2026-04-14 16:11:31.363428 2026-04-14 16:11:31.363428 +331 opp-pending 740 141 2026-04-14 16:11:31.367101 2026-04-14 16:11:31.367101 +332 opp-pending 177 142 2026-04-14 16:11:31.43085 2026-04-14 16:11:31.43085 +333 opp-pending 178 142 2026-04-14 16:11:31.434858 2026-04-14 16:11:31.434858 +334 opp-pending 190 142 2026-04-14 16:11:31.438882 2026-04-14 16:11:31.438882 +335 opp-pending 194 142 2026-04-14 16:11:31.442886 2026-04-14 16:11:31.442886 +336 opp-pending 195 142 2026-04-14 16:11:31.447 2026-04-14 16:11:31.447 +337 opp-pending 196 142 2026-04-14 16:11:31.45108 2026-04-14 16:11:31.45108 +338 opp-pending 101 144 2026-04-14 16:11:31.632727 2026-04-14 16:11:31.632727 +339 opp-pending 102 145 2026-04-14 16:11:31.711816 2026-04-14 16:11:31.711816 +340 opp-pending 203 146 2026-04-14 16:11:31.800278 2026-04-14 16:11:31.800278 +341 opp-pending 526 146 2026-04-14 16:11:31.80454 2026-04-14 16:11:31.80454 +342 opp-pending 743 146 2026-04-14 16:11:31.808807 2026-04-14 16:11:31.808807 +343 opp-pending 184 147 2026-04-14 16:11:31.900646 2026-04-14 16:11:31.900646 +344 opp-pending 274 148 2026-04-14 16:11:31.9727 2026-04-14 16:11:31.9727 +345 opp-pending 178 148 2026-04-14 16:11:31.976743 2026-04-14 16:11:31.976743 +346 opp-pending 180 148 2026-04-14 16:11:31.98116 2026-04-14 16:11:31.98116 +347 opp-pending 194 148 2026-04-14 16:11:31.985714 2026-04-14 16:11:31.985714 +348 opp-pending 196 148 2026-04-14 16:11:31.990056 2026-04-14 16:11:31.990056 +349 opp-pending 300 148 2026-04-14 16:11:31.994406 2026-04-14 16:11:31.994406 +350 opp-pending 304 148 2026-04-14 16:11:31.998877 2026-04-14 16:11:31.998877 +351 opp-pending 305 148 2026-04-14 16:11:32.003097 2026-04-14 16:11:32.003097 +352 opp-pending 309 148 2026-04-14 16:11:32.007483 2026-04-14 16:11:32.007483 +353 opp-pending 449 148 2026-04-14 16:11:32.011755 2026-04-14 16:11:32.011755 +354 opp-pending 529 148 2026-04-14 16:11:32.01589 2026-04-14 16:11:32.01589 +355 opp-pending 614 148 2026-04-14 16:11:32.019774 2026-04-14 16:11:32.019774 +356 opp-pending 649 148 2026-04-14 16:11:32.023787 2026-04-14 16:11:32.023787 +357 opp-pending 101 149 2026-04-14 16:11:32.110919 2026-04-14 16:11:32.110919 +358 opp-pending 184 149 2026-04-14 16:11:32.114978 2026-04-14 16:11:32.114978 +359 opp-pending 151 155 2026-04-14 16:11:32.562953 2026-04-14 16:11:32.562953 +360 opp-pending 210 155 2026-04-14 16:11:32.566936 2026-04-14 16:11:32.566936 +361 opp-pending 238 155 2026-04-14 16:11:32.571056 2026-04-14 16:11:32.571056 +362 opp-pending 153 156 2026-04-14 16:11:32.680868 2026-04-14 16:11:32.680868 +363 opp-pending 274 156 2026-04-14 16:11:32.684887 2026-04-14 16:11:32.684887 +364 opp-pending 178 156 2026-04-14 16:11:32.688937 2026-04-14 16:11:32.688937 +365 opp-pending 255 156 2026-04-14 16:11:32.693137 2026-04-14 16:11:32.693137 +366 opp-pending 304 156 2026-04-14 16:11:32.697413 2026-04-14 16:11:32.697413 +367 opp-pending 305 156 2026-04-14 16:11:32.701694 2026-04-14 16:11:32.701694 +368 opp-pending 309 156 2026-04-14 16:11:32.706128 2026-04-14 16:11:32.706128 +369 opp-pending 312 156 2026-04-14 16:11:32.71046 2026-04-14 16:11:32.71046 +370 opp-pending 346 156 2026-04-14 16:11:32.71465 2026-04-14 16:11:32.71465 +371 opp-pending 361 156 2026-04-14 16:11:32.718742 2026-04-14 16:11:32.718742 +372 opp-pending 376 156 2026-04-14 16:11:32.722944 2026-04-14 16:11:32.722944 +373 opp-pending 445 156 2026-04-14 16:11:32.727053 2026-04-14 16:11:32.727053 +374 opp-pending 449 156 2026-04-14 16:11:32.731125 2026-04-14 16:11:32.731125 +375 opp-pending 464 156 2026-04-14 16:11:32.734999 2026-04-14 16:11:32.734999 +376 opp-pending 473 156 2026-04-14 16:11:32.738983 2026-04-14 16:11:32.738983 +377 opp-pending 474 156 2026-04-14 16:11:32.743204 2026-04-14 16:11:32.743204 +378 opp-pending 524 156 2026-04-14 16:11:32.74711 2026-04-14 16:11:32.74711 +379 opp-pending 574 156 2026-04-14 16:11:32.751154 2026-04-14 16:11:32.751154 +380 opp-pending 643 156 2026-04-14 16:11:32.755468 2026-04-14 16:11:32.755468 +381 opp-pending 646 156 2026-04-14 16:11:32.759769 2026-04-14 16:11:32.759769 +382 opp-pending 655 156 2026-04-14 16:11:32.763927 2026-04-14 16:11:32.763927 +383 opp-pending 670 156 2026-04-14 16:11:32.768115 2026-04-14 16:11:32.768115 +384 opp-pending 675 156 2026-04-14 16:11:32.772503 2026-04-14 16:11:32.772503 +385 opp-pending 676 156 2026-04-14 16:11:32.776575 2026-04-14 16:11:32.776575 +386 opp-pending 715 156 2026-04-14 16:11:32.781506 2026-04-14 16:11:32.781506 +387 opp-pending 736 156 2026-04-14 16:11:32.785931 2026-04-14 16:11:32.785931 +388 opp-pending 738 156 2026-04-14 16:11:32.790203 2026-04-14 16:11:32.790203 +389 opp-pending 208 158 2026-04-14 16:11:32.944463 2026-04-14 16:11:32.944463 +390 opp-pending 210 158 2026-04-14 16:11:32.948486 2026-04-14 16:11:32.948486 +391 opp-pending 323 158 2026-04-14 16:11:32.952668 2026-04-14 16:11:32.952668 +392 opp-pending 193 159 2026-04-14 16:11:33.038427 2026-04-14 16:11:33.038427 +393 opp-pending 208 161 2026-04-14 16:11:33.194526 2026-04-14 16:11:33.194526 +394 opp-pending 185 162 2026-04-14 16:11:33.291809 2026-04-14 16:11:33.291809 +395 opp-pending 263 164 2026-04-14 16:11:33.450506 2026-04-14 16:11:33.450506 +396 opp-pending 96 164 2026-04-14 16:11:33.454452 2026-04-14 16:11:33.454452 +397 opp-pending 151 164 2026-04-14 16:11:33.458287 2026-04-14 16:11:33.458287 +398 opp-pending 210 164 2026-04-14 16:11:33.462064 2026-04-14 16:11:33.462064 +399 opp-pending 238 164 2026-04-14 16:11:33.465957 2026-04-14 16:11:33.465957 +400 opp-pending 283 164 2026-04-14 16:11:33.470122 2026-04-14 16:11:33.470122 +401 opp-pending 456 164 2026-04-14 16:11:33.474322 2026-04-14 16:11:33.474322 +402 opp-pending 540 164 2026-04-14 16:11:33.478728 2026-04-14 16:11:33.478728 +403 opp-pending 617 164 2026-04-14 16:11:33.483033 2026-04-14 16:11:33.483033 +404 opp-pending 726 164 2026-04-14 16:11:33.487526 2026-04-14 16:11:33.487526 +405 opp-pending 300 166 2026-04-14 16:11:33.682438 2026-04-14 16:11:33.682438 +406 opp-pending 311 166 2026-04-14 16:11:33.686532 2026-04-14 16:11:33.686532 +407 opp-pending 173 167 2026-04-14 16:11:33.880527 2026-04-14 16:11:33.880527 +408 opp-pending 176 167 2026-04-14 16:11:33.884496 2026-04-14 16:11:33.884496 +409 opp-pending 215 167 2026-04-14 16:11:33.889015 2026-04-14 16:11:33.889015 +410 opp-pending 284 167 2026-04-14 16:11:33.893332 2026-04-14 16:11:33.893332 +411 opp-pending 290 167 2026-04-14 16:11:33.897518 2026-04-14 16:11:33.897518 +412 opp-pending 291 167 2026-04-14 16:11:33.902114 2026-04-14 16:11:33.902114 +413 opp-pending 511 167 2026-04-14 16:11:33.906576 2026-04-14 16:11:33.906576 +414 opp-pending 645 167 2026-04-14 16:11:33.911028 2026-04-14 16:11:33.911028 +415 opp-pending 105 168 2026-04-14 16:11:34.093667 2026-04-14 16:11:34.093667 +416 opp-pending 167 169 2026-04-14 16:11:34.187059 2026-04-14 16:11:34.187059 +417 opp-pending 171 169 2026-04-14 16:11:34.191704 2026-04-14 16:11:34.191704 +418 opp-active 242 169 2026-04-14 16:11:34.196248 2026-04-14 16:11:34.196248 +419 opp-pending 243 169 2026-04-14 16:11:34.200801 2026-04-14 16:11:34.200801 +420 opp-pending 244 169 2026-04-14 16:11:34.205448 2026-04-14 16:11:34.205448 +421 opp-pending 354 169 2026-04-14 16:11:34.209798 2026-04-14 16:11:34.209798 +422 opp-pending 511 169 2026-04-14 16:11:34.214357 2026-04-14 16:11:34.214357 +423 opp-pending 149 171 2026-04-14 16:11:34.350428 2026-04-14 16:11:34.350428 +424 opp-matched 161 171 2026-04-14 16:11:34.354366 2026-04-14 16:11:34.354366 +425 opp-pending 162 171 2026-04-14 16:11:34.358119 2026-04-14 16:11:34.358119 +426 opp-pending 280 171 2026-04-14 16:11:34.361889 2026-04-14 16:11:34.361889 +427 opp-pending 248 171 2026-04-14 16:11:34.366118 2026-04-14 16:11:34.366118 +428 opp-pending 251 171 2026-04-14 16:11:34.370219 2026-04-14 16:11:34.370219 +429 opp-pending 253 171 2026-04-14 16:11:34.374943 2026-04-14 16:11:34.374943 +430 opp-pending 258 171 2026-04-14 16:11:34.381029 2026-04-14 16:11:34.381029 +431 opp-pending 288 171 2026-04-14 16:11:34.385283 2026-04-14 16:11:34.385283 +432 opp-pending 303 171 2026-04-14 16:11:34.389567 2026-04-14 16:11:34.389567 +433 opp-pending 306 171 2026-04-14 16:11:34.394131 2026-04-14 16:11:34.394131 +434 opp-pending 308 171 2026-04-14 16:11:34.398282 2026-04-14 16:11:34.398282 +435 opp-pending 310 171 2026-04-14 16:11:34.402563 2026-04-14 16:11:34.402563 +436 opp-pending 324 171 2026-04-14 16:11:34.40661 2026-04-14 16:11:34.40661 +437 opp-pending 514 171 2026-04-14 16:11:34.410682 2026-04-14 16:11:34.410682 +438 opp-pending 785 171 2026-04-14 16:11:34.414638 2026-04-14 16:11:34.414638 +439 opp-pending 49 172 2026-04-14 16:11:34.485923 2026-04-14 16:11:34.485923 +440 opp-pending 152 172 2026-04-14 16:11:34.490271 2026-04-14 16:11:34.490271 +441 opp-pending 185 172 2026-04-14 16:11:34.494705 2026-04-14 16:11:34.494705 +442 opp-pending 211 172 2026-04-14 16:11:34.499016 2026-04-14 16:11:34.499016 +443 opp-pending 240 172 2026-04-14 16:11:34.503892 2026-04-14 16:11:34.503892 +444 opp-matched 360 172 2026-04-14 16:11:34.508023 2026-04-14 16:11:34.508023 +445 opp-pending 464 172 2026-04-14 16:11:34.512199 2026-04-14 16:11:34.512199 +446 opp-pending 501 172 2026-04-14 16:11:34.516198 2026-04-14 16:11:34.516198 +447 opp-pending 575 172 2026-04-14 16:11:34.520496 2026-04-14 16:11:34.520496 +448 opp-pending 288 173 2026-04-14 16:11:34.586927 2026-04-14 16:11:34.586927 +449 opp-pending 306 173 2026-04-14 16:11:34.591208 2026-04-14 16:11:34.591208 +450 opp-pending 308 173 2026-04-14 16:11:34.595325 2026-04-14 16:11:34.595325 +451 opp-pending 310 173 2026-04-14 16:11:34.599376 2026-04-14 16:11:34.599376 +452 opp-active 89 174 2026-04-14 16:11:34.779269 2026-04-14 16:11:34.779269 +453 opp-pending 101 174 2026-04-14 16:11:34.783676 2026-04-14 16:11:34.783676 +454 opp-pending 161 175 2026-04-14 16:11:34.923298 2026-04-14 16:11:34.923298 +455 opp-matched 362 175 2026-04-14 16:11:34.927606 2026-04-14 16:11:34.927606 +456 opp-pending 101 177 2026-04-14 16:11:35.085972 2026-04-14 16:11:35.085972 +457 opp-pending 104 177 2026-04-14 16:11:35.090053 2026-04-14 16:11:35.090053 +458 opp-pending 169 177 2026-04-14 16:11:35.093924 2026-04-14 16:11:35.093924 +459 opp-pending 12 179 2026-04-14 16:11:35.232244 2026-04-14 16:11:35.232244 +460 opp-pending 384 179 2026-04-14 16:11:35.236092 2026-04-14 16:11:35.236092 +461 opp-active 196 184 2026-04-14 16:11:35.455954 2026-04-14 16:11:35.455954 +462 opp-pending 344 184 2026-04-14 16:11:35.460038 2026-04-14 16:11:35.460038 +463 opp-pending 408 184 2026-04-14 16:11:35.46402 2026-04-14 16:11:35.46402 +464 opp-active 474 184 2026-04-14 16:11:35.468026 2026-04-14 16:11:35.468026 +465 opp-pending 512 184 2026-04-14 16:11:35.472102 2026-04-14 16:11:35.472102 +466 opp-pending 14 185 2026-04-14 16:11:35.548677 2026-04-14 16:11:35.548677 +467 opp-pending 152 185 2026-04-14 16:11:35.552597 2026-04-14 16:11:35.552597 +468 opp-active 107 186 2026-04-14 16:11:35.608393 2026-04-14 16:11:35.608393 +469 opp-pending 14 187 2026-04-14 16:11:35.692401 2026-04-14 16:11:35.692401 +470 opp-pending 88 187 2026-04-14 16:11:35.696498 2026-04-14 16:11:35.696498 +471 opp-pending 20 188 2026-04-14 16:11:35.764407 2026-04-14 16:11:35.764407 +472 opp-pending 149 189 2026-04-14 16:11:35.848621 2026-04-14 16:11:35.848621 +473 opp-pending 197 189 2026-04-14 16:11:35.852853 2026-04-14 16:11:35.852853 +474 opp-pending 280 189 2026-04-14 16:11:35.856907 2026-04-14 16:11:35.856907 +475 opp-pending 285 189 2026-04-14 16:11:35.860872 2026-04-14 16:11:35.860872 +476 opp-pending 303 189 2026-04-14 16:11:35.864844 2026-04-14 16:11:35.864844 +477 opp-pending 306 189 2026-04-14 16:11:35.869068 2026-04-14 16:11:35.869068 +478 opp-pending 308 189 2026-04-14 16:11:35.873126 2026-04-14 16:11:35.873126 +479 opp-pending 310 189 2026-04-14 16:11:35.877132 2026-04-14 16:11:35.877132 +480 opp-pending 343 189 2026-04-14 16:11:35.881863 2026-04-14 16:11:35.881863 +481 opp-pending 387 189 2026-04-14 16:11:35.887202 2026-04-14 16:11:35.887202 +482 opp-pending 88 190 2026-04-14 16:11:35.964172 2026-04-14 16:11:35.964172 +483 opp-pending 107 191 2026-04-14 16:11:36.035171 2026-04-14 16:11:36.035171 +484 opp-pending 284 193 2026-04-14 16:11:36.346937 2026-04-14 16:11:36.346937 +485 opp-pending 210 194 2026-04-14 16:11:36.46196 2026-04-14 16:11:36.46196 +486 opp-pending 238 194 2026-04-14 16:11:36.466208 2026-04-14 16:11:36.466208 +487 opp-pending 283 194 2026-04-14 16:11:36.474128 2026-04-14 16:11:36.474128 +488 opp-pending 625 194 2026-04-14 16:11:36.478934 2026-04-14 16:11:36.478934 +489 opp-pending 14 197 2026-04-14 16:11:36.85106 2026-04-14 16:11:36.85106 +490 opp-pending 88 197 2026-04-14 16:11:36.855508 2026-04-14 16:11:36.855508 +491 opp-pending 151 197 2026-04-14 16:11:36.859862 2026-04-14 16:11:36.859862 +492 opp-pending 238 197 2026-04-14 16:11:36.864246 2026-04-14 16:11:36.864246 +493 opp-pending 143 198 2026-04-14 16:11:36.955135 2026-04-14 16:11:36.955135 +494 opp-pending 395 198 2026-04-14 16:11:36.959709 2026-04-14 16:11:36.959709 +495 opp-pending 153 199 2026-04-14 16:11:37.046974 2026-04-14 16:11:37.046974 +496 opp-pending 155 199 2026-04-14 16:11:37.051003 2026-04-14 16:11:37.051003 +497 opp-pending 157 199 2026-04-14 16:11:37.055108 2026-04-14 16:11:37.055108 +498 opp-pending 158 199 2026-04-14 16:11:37.059082 2026-04-14 16:11:37.059082 +499 opp-pending 160 199 2026-04-14 16:11:37.063505 2026-04-14 16:11:37.063505 +500 opp-pending 274 199 2026-04-14 16:11:37.067918 2026-04-14 16:11:37.067918 +501 opp-pending 182 199 2026-04-14 16:11:37.074004 2026-04-14 16:11:37.074004 +502 opp-pending 207 199 2026-04-14 16:11:37.078342 2026-04-14 16:11:37.078342 +503 opp-pending 280 199 2026-04-14 16:11:37.082457 2026-04-14 16:11:37.082457 +504 opp-pending 233 199 2026-04-14 16:11:37.086948 2026-04-14 16:11:37.086948 +505 opp-pending 285 199 2026-04-14 16:11:37.091165 2026-04-14 16:11:37.091165 +506 opp-pending 288 199 2026-04-14 16:11:37.095525 2026-04-14 16:11:37.095525 +507 opp-pending 303 199 2026-04-14 16:11:37.100059 2026-04-14 16:11:37.100059 +508 opp-pending 304 199 2026-04-14 16:11:37.105199 2026-04-14 16:11:37.105199 +509 opp-pending 305 199 2026-04-14 16:11:37.1103 2026-04-14 16:11:37.1103 +510 opp-pending 306 199 2026-04-14 16:11:37.114916 2026-04-14 16:11:37.114916 +511 opp-pending 308 199 2026-04-14 16:11:37.119386 2026-04-14 16:11:37.119386 +512 opp-pending 310 199 2026-04-14 16:11:37.123478 2026-04-14 16:11:37.123478 +513 opp-pending 312 199 2026-04-14 16:11:37.127603 2026-04-14 16:11:37.127603 +514 opp-pending 324 199 2026-04-14 16:11:37.131615 2026-04-14 16:11:37.131615 +515 opp-pending 438 199 2026-04-14 16:11:37.135901 2026-04-14 16:11:37.135901 +516 opp-pending 167 200 2026-04-14 16:11:37.210464 2026-04-14 16:11:37.210464 +517 opp-pending 176 200 2026-04-14 16:11:37.215295 2026-04-14 16:11:37.215295 +518 opp-pending 281 200 2026-04-14 16:11:37.219628 2026-04-14 16:11:37.219628 +519 opp-pending 290 200 2026-04-14 16:11:37.224222 2026-04-14 16:11:37.224222 +520 opp-pending 291 200 2026-04-14 16:11:37.228553 2026-04-14 16:11:37.228553 +521 opp-pending 101 201 2026-04-14 16:11:37.3134 2026-04-14 16:11:37.3134 +522 opp-pending 104 201 2026-04-14 16:11:37.31841 2026-04-14 16:11:37.31841 +523 opp-pending 116 201 2026-04-14 16:11:37.323049 2026-04-14 16:11:37.323049 +524 opp-pending 152 201 2026-04-14 16:11:37.327792 2026-04-14 16:11:37.327792 +525 opp-pending 234 201 2026-04-14 16:11:37.332744 2026-04-14 16:11:37.332744 +526 opp-pending 573 201 2026-04-14 16:11:37.337601 2026-04-14 16:11:37.337601 +527 opp-pending 167 202 2026-04-14 16:11:37.74263 2026-04-14 16:11:37.74263 +528 opp-pending 173 202 2026-04-14 16:11:37.746343 2026-04-14 16:11:37.746343 +529 opp-pending 176 202 2026-04-14 16:11:37.750001 2026-04-14 16:11:37.750001 +530 opp-pending 215 202 2026-04-14 16:11:37.753764 2026-04-14 16:11:37.753764 +531 opp-pending 290 202 2026-04-14 16:11:37.757714 2026-04-14 16:11:37.757714 +532 opp-pending 291 202 2026-04-14 16:11:37.762272 2026-04-14 16:11:37.762272 +533 opp-pending 32 204 2026-04-14 16:11:37.905647 2026-04-14 16:11:37.905647 +534 opp-pending 88 204 2026-04-14 16:11:37.909808 2026-04-14 16:11:37.909808 +535 opp-pending 115 204 2026-04-14 16:11:37.913612 2026-04-14 16:11:37.913612 +536 opp-pending 116 204 2026-04-14 16:11:37.91755 2026-04-14 16:11:37.91755 +537 opp-pending 132 205 2026-04-14 16:11:38.010636 2026-04-14 16:11:38.010636 +538 opp-pending 12 206 2026-04-14 16:11:38.108422 2026-04-14 16:11:38.108422 +539 opp-pending 152 206 2026-04-14 16:11:38.11312 2026-04-14 16:11:38.11312 +540 opp-pending 3 207 2026-04-14 16:11:38.216742 2026-04-14 16:11:38.216742 +541 opp-pending 151 207 2026-04-14 16:11:38.22056 2026-04-14 16:11:38.22056 +542 opp-pending 210 207 2026-04-14 16:11:38.224565 2026-04-14 16:11:38.224565 +543 opp-pending 238 207 2026-04-14 16:11:38.228234 2026-04-14 16:11:38.228234 +544 opp-pending 42 209 2026-04-14 16:11:38.353422 2026-04-14 16:11:38.353422 +545 opp-pending 263 210 2026-04-14 16:11:38.476263 2026-04-14 16:11:38.476263 +546 opp-pending 76 210 2026-04-14 16:11:38.480302 2026-04-14 16:11:38.480302 +547 opp-pending 617 210 2026-04-14 16:11:38.484429 2026-04-14 16:11:38.484429 +548 opp-pending 197 211 2026-04-14 16:11:38.569014 2026-04-14 16:11:38.569014 +549 opp-pending 421 211 2026-04-14 16:11:38.573229 2026-04-14 16:11:38.573229 +550 opp-pending 116 212 2026-04-14 16:11:38.666462 2026-04-14 16:11:38.666462 +551 opp-pending 32 213 2026-04-14 16:11:38.797312 2026-04-14 16:11:38.797312 +552 opp-pending 284 214 2026-04-14 16:11:38.938997 2026-04-14 16:11:38.938997 +553 opp-pending 254 214 2026-04-14 16:11:38.942698 2026-04-14 16:11:38.942698 +554 opp-pending 170 215 2026-04-14 16:11:38.991413 2026-04-14 16:11:38.991413 +555 opp-pending 32 216 2026-04-14 16:11:39.130987 2026-04-14 16:11:39.130987 +556 opp-pending 183 216 2026-04-14 16:11:39.134662 2026-04-14 16:11:39.134662 +557 opp-pending 284 216 2026-04-14 16:11:39.138921 2026-04-14 16:11:39.138921 +558 opp-pending 90 218 2026-04-14 16:11:39.265271 2026-04-14 16:11:39.265271 +559 opp-pending 153 219 2026-04-14 16:11:39.338995 2026-04-14 16:11:39.338995 +560 opp-pending 155 219 2026-04-14 16:11:39.343084 2026-04-14 16:11:39.343084 +561 opp-pending 157 219 2026-04-14 16:11:39.347411 2026-04-14 16:11:39.347411 +562 opp-pending 158 219 2026-04-14 16:11:39.351632 2026-04-14 16:11:39.351632 +563 opp-pending 160 219 2026-04-14 16:11:39.355958 2026-04-14 16:11:39.355958 +564 opp-pending 274 219 2026-04-14 16:11:39.359852 2026-04-14 16:11:39.359852 +565 opp-pending 207 219 2026-04-14 16:11:39.363912 2026-04-14 16:11:39.363912 +566 opp-pending 233 219 2026-04-14 16:11:39.368536 2026-04-14 16:11:39.368536 +567 opp-pending 255 219 2026-04-14 16:11:39.373252 2026-04-14 16:11:39.373252 +568 opp-pending 304 219 2026-04-14 16:11:39.378461 2026-04-14 16:11:39.378461 +569 opp-pending 346 219 2026-04-14 16:11:39.382428 2026-04-14 16:11:39.382428 +570 opp-pending 361 219 2026-04-14 16:11:39.38688 2026-04-14 16:11:39.38688 +571 opp-pending 438 219 2026-04-14 16:11:39.391221 2026-04-14 16:11:39.391221 +572 opp-pending 444 219 2026-04-14 16:11:39.395183 2026-04-14 16:11:39.395183 +573 opp-pending 100 220 2026-04-14 16:11:39.456289 2026-04-14 16:11:39.456289 +574 opp-pending 110 221 2026-04-14 16:11:39.533802 2026-04-14 16:11:39.533802 +575 opp-pending 77 222 2026-04-14 16:11:39.602309 2026-04-14 16:11:39.602309 +576 opp-pending 111 224 2026-04-14 16:11:39.788972 2026-04-14 16:11:39.788972 +577 opp-pending 112 224 2026-04-14 16:11:39.792578 2026-04-14 16:11:39.792578 +578 opp-pending 208 225 2026-04-14 16:11:39.859098 2026-04-14 16:11:39.859098 +579 opp-pending 12 226 2026-04-14 16:11:39.940211 2026-04-14 16:11:39.940211 +580 opp-pending 167 226 2026-04-14 16:11:39.944025 2026-04-14 16:11:39.944025 +581 opp-pending 93 227 2026-04-14 16:11:40.114655 2026-04-14 16:11:40.114655 +582 opp-pending 99 227 2026-04-14 16:11:40.118155 2026-04-14 16:11:40.118155 +583 opp-pending 120 229 2026-04-14 16:11:40.329799 2026-04-14 16:11:40.329799 +584 opp-pending 99 231 2026-04-14 16:11:40.448666 2026-04-14 16:11:40.448666 +585 opp-pending 177 231 2026-04-14 16:11:40.452263 2026-04-14 16:11:40.452263 +586 opp-pending 178 231 2026-04-14 16:11:40.455499 2026-04-14 16:11:40.455499 +587 opp-pending 190 231 2026-04-14 16:11:40.458918 2026-04-14 16:11:40.458918 +588 opp-pending 194 231 2026-04-14 16:11:40.462367 2026-04-14 16:11:40.462367 +589 opp-pending 195 231 2026-04-14 16:11:40.465654 2026-04-14 16:11:40.465654 +590 opp-pending 196 231 2026-04-14 16:11:40.469272 2026-04-14 16:11:40.469272 +591 opp-pending 287 231 2026-04-14 16:11:40.472707 2026-04-14 16:11:40.472707 +592 opp-pending 105 232 2026-04-14 16:11:40.54921 2026-04-14 16:11:40.54921 +593 opp-pending 170 233 2026-04-14 16:11:40.669039 2026-04-14 16:11:40.669039 +594 opp-pending 208 233 2026-04-14 16:11:40.672537 2026-04-14 16:11:40.672537 +595 opp-pending 389 233 2026-04-14 16:11:40.67601 2026-04-14 16:11:40.67601 +596 opp-active 562 233 2026-04-14 16:11:40.679895 2026-04-14 16:11:40.679895 +597 opp-pending 664 233 2026-04-14 16:11:40.683568 2026-04-14 16:11:40.683568 +598 opp-pending 169 234 2026-04-14 16:11:40.759959 2026-04-14 16:11:40.759959 +599 opp-pending 263 236 2026-04-14 16:11:41.085583 2026-04-14 16:11:41.085583 +600 opp-pending 106 236 2026-04-14 16:11:41.088941 2026-04-14 16:11:41.088941 +601 opp-pending 105 237 2026-04-14 16:11:41.171427 2026-04-14 16:11:41.171427 +602 opp-pending 110 237 2026-04-14 16:11:41.174955 2026-04-14 16:11:41.174955 +603 opp-pending 149 238 2026-04-14 16:11:41.252203 2026-04-14 16:11:41.252203 +604 opp-pending 174 238 2026-04-14 16:11:41.255732 2026-04-14 16:11:41.255732 +605 opp-pending 197 238 2026-04-14 16:11:41.259307 2026-04-14 16:11:41.259307 +606 opp-pending 280 238 2026-04-14 16:11:41.262706 2026-04-14 16:11:41.262706 +607 opp-pending 285 238 2026-04-14 16:11:41.266125 2026-04-14 16:11:41.266125 +608 opp-pending 288 238 2026-04-14 16:11:41.269396 2026-04-14 16:11:41.269396 +609 opp-pending 303 238 2026-04-14 16:11:41.27283 2026-04-14 16:11:41.27283 +610 opp-pending 306 238 2026-04-14 16:11:41.276376 2026-04-14 16:11:41.276376 +611 opp-pending 308 238 2026-04-14 16:11:41.28004 2026-04-14 16:11:41.28004 +612 opp-pending 310 238 2026-04-14 16:11:41.283361 2026-04-14 16:11:41.283361 +613 opp-pending 343 238 2026-04-14 16:11:41.286641 2026-04-14 16:11:41.286641 +614 opp-pending 387 238 2026-04-14 16:11:41.290109 2026-04-14 16:11:41.290109 +615 opp-pending 421 238 2026-04-14 16:11:41.293439 2026-04-14 16:11:41.293439 +616 opp-pending 495 238 2026-04-14 16:11:41.296805 2026-04-14 16:11:41.296805 +617 opp-pending 42 240 2026-04-14 16:11:41.455701 2026-04-14 16:11:41.455701 +618 opp-pending 18 242 2026-04-14 16:11:41.606406 2026-04-14 16:11:41.606406 +619 opp-pending 169 242 2026-04-14 16:11:41.610685 2026-04-14 16:11:41.610685 +620 opp-pending 25 243 2026-04-14 16:11:41.680213 2026-04-14 16:11:41.680213 +621 opp-pending 99 243 2026-04-14 16:11:41.683938 2026-04-14 16:11:41.683938 +622 opp-pending 108 243 2026-04-14 16:11:41.68768 2026-04-14 16:11:41.68768 +623 opp-pending 130 245 2026-04-14 16:11:41.798971 2026-04-14 16:11:41.798971 +624 opp-pending 175 246 2026-04-14 16:11:41.867391 2026-04-14 16:11:41.867391 +625 opp-pending 106 247 2026-04-14 16:11:41.9456 2026-04-14 16:11:41.9456 +626 opp-pending 203 247 2026-04-14 16:11:41.950073 2026-04-14 16:11:41.950073 +627 opp-pending 126 248 2026-04-14 16:11:42.04039 2026-04-14 16:11:42.04039 +628 opp-pending 124 249 2026-04-14 16:11:42.169159 2026-04-14 16:11:42.169159 +629 opp-matched 146 249 2026-04-14 16:11:42.17377 2026-04-14 16:11:42.17377 +630 opp-pending 165 249 2026-04-14 16:11:42.178212 2026-04-14 16:11:42.178212 +631 opp-pending 42 251 2026-04-14 16:11:42.425554 2026-04-14 16:11:42.425554 +632 opp-pending 77 251 2026-04-14 16:11:42.42931 2026-04-14 16:11:42.42931 +633 opp-pending 18 252 2026-04-14 16:11:42.499087 2026-04-14 16:11:42.499087 +634 opp-pending 203 252 2026-04-14 16:11:42.502682 2026-04-14 16:11:42.502682 +635 opp-pending 285 252 2026-04-14 16:11:42.506228 2026-04-14 16:11:42.506228 +636 opp-pending 127 253 2026-04-14 16:11:42.588464 2026-04-14 16:11:42.588464 +637 opp-pending 175 253 2026-04-14 16:11:42.592586 2026-04-14 16:11:42.592586 +638 opp-matched 127 254 2026-04-14 16:11:42.671933 2026-04-14 16:11:42.671933 +639 opp-matched 175 254 2026-04-14 16:11:42.676678 2026-04-14 16:11:42.676678 +640 opp-pending 228 254 2026-04-14 16:11:42.681452 2026-04-14 16:11:42.681452 +641 opp-pending 151 255 2026-04-14 16:11:42.754202 2026-04-14 16:11:42.754202 +642 opp-pending 170 255 2026-04-14 16:11:42.757646 2026-04-14 16:11:42.757646 +643 opp-pending 278 255 2026-04-14 16:11:42.761284 2026-04-14 16:11:42.761284 +644 opp-pending 183 255 2026-04-14 16:11:42.765243 2026-04-14 16:11:42.765243 +645 opp-pending 238 255 2026-04-14 16:11:42.769002 2026-04-14 16:11:42.769002 +646 opp-pending 283 255 2026-04-14 16:11:42.772662 2026-04-14 16:11:42.772662 +647 opp-pending 617 255 2026-04-14 16:11:42.776411 2026-04-14 16:11:42.776411 +648 opp-pending 129 256 2026-04-14 16:11:42.829733 2026-04-14 16:11:42.829733 +649 opp-pending 153 257 2026-04-14 16:11:42.908106 2026-04-14 16:11:42.908106 +650 opp-pending 155 257 2026-04-14 16:11:42.912063 2026-04-14 16:11:42.912063 +651 opp-pending 157 257 2026-04-14 16:11:42.916093 2026-04-14 16:11:42.916093 +652 opp-pending 158 257 2026-04-14 16:11:42.919773 2026-04-14 16:11:42.919773 +653 opp-pending 160 257 2026-04-14 16:11:42.923355 2026-04-14 16:11:42.923355 +654 opp-pending 164 257 2026-04-14 16:11:42.92682 2026-04-14 16:11:42.92682 +655 opp-pending 169 257 2026-04-14 16:11:42.93028 2026-04-14 16:11:42.93028 +656 opp-pending 180 257 2026-04-14 16:11:42.933858 2026-04-14 16:11:42.933858 +657 opp-pending 182 257 2026-04-14 16:11:42.937407 2026-04-14 16:11:42.937407 +658 opp-pending 207 257 2026-04-14 16:11:42.94092 2026-04-14 16:11:42.94092 +659 opp-pending 300 257 2026-04-14 16:11:42.94467 2026-04-14 16:11:42.94467 +660 opp-pending 47 258 2026-04-14 16:11:43.022312 2026-04-14 16:11:43.022312 +661 opp-pending 47 259 2026-04-14 16:11:43.124809 2026-04-14 16:11:43.124809 +662 opp-pending 274 259 2026-04-14 16:11:43.128311 2026-04-14 16:11:43.128311 +663 opp-pending 255 259 2026-04-14 16:11:43.131799 2026-04-14 16:11:43.131799 +664 opp-pending 300 259 2026-04-14 16:11:43.135208 2026-04-14 16:11:43.135208 +665 opp-pending 311 259 2026-04-14 16:11:43.138652 2026-04-14 16:11:43.138652 +666 opp-pending 444 259 2026-04-14 16:11:43.142004 2026-04-14 16:11:43.142004 +667 opp-pending 51 262 2026-04-14 16:11:43.364826 2026-04-14 16:11:43.364826 +668 opp-pending 170 262 2026-04-14 16:11:43.368336 2026-04-14 16:11:43.368336 +669 opp-pending 183 262 2026-04-14 16:11:43.371977 2026-04-14 16:11:43.371977 +670 opp-pending 131 263 2026-04-14 16:11:43.448156 2026-04-14 16:11:43.448156 +671 opp-pending 165 264 2026-04-14 16:11:43.545418 2026-04-14 16:11:43.545418 +672 opp-pending 183 266 2026-04-14 16:11:43.702564 2026-04-14 16:11:43.702564 +673 opp-pending 203 266 2026-04-14 16:11:43.706671 2026-04-14 16:11:43.706671 +674 opp-pending 387 266 2026-04-14 16:11:43.710291 2026-04-14 16:11:43.710291 +675 opp-pending 526 266 2026-04-14 16:11:43.714047 2026-04-14 16:11:43.714047 +676 opp-pending 153 267 2026-04-14 16:11:43.809803 2026-04-14 16:11:43.809803 +677 opp-pending 155 267 2026-04-14 16:11:43.814168 2026-04-14 16:11:43.814168 +678 opp-pending 157 267 2026-04-14 16:11:43.818268 2026-04-14 16:11:43.818268 +679 opp-pending 158 267 2026-04-14 16:11:43.821791 2026-04-14 16:11:43.821791 +680 opp-pending 160 267 2026-04-14 16:11:43.825505 2026-04-14 16:11:43.825505 +681 opp-pending 265 268 2026-04-14 16:11:43.970451 2026-04-14 16:11:43.970451 +682 opp-pending 88 268 2026-04-14 16:11:43.975002 2026-04-14 16:11:43.975002 +683 opp-pending 284 268 2026-04-14 16:11:43.978924 2026-04-14 16:11:43.978924 +684 opp-pending 254 268 2026-04-14 16:11:43.982575 2026-04-14 16:11:43.982575 +685 opp-pending 727 273 2026-04-14 16:11:44.344491 2026-04-14 16:11:44.344491 +686 opp-pending 136 278 2026-04-14 16:11:44.850242 2026-04-14 16:11:44.850242 +687 opp-pending 628 278 2026-04-14 16:11:44.853763 2026-04-14 16:11:44.853763 +688 opp-pending 103 279 2026-04-14 16:11:44.97802 2026-04-14 16:11:44.97802 +689 opp-pending 165 279 2026-04-14 16:11:44.981411 2026-04-14 16:11:44.981411 +690 opp-pending 12 280 2026-04-14 16:11:45.102344 2026-04-14 16:11:45.102344 +692 opp-pending 304 281 2026-04-14 16:11:45.173604 2026-04-14 16:11:45.173604 +693 opp-pending 305 281 2026-04-14 16:11:45.178036 2026-04-14 16:11:45.178036 +694 opp-active 342 281 2026-04-14 16:11:45.1856 2026-04-14 16:11:45.1856 +695 opp-pending 390 281 2026-04-14 16:11:45.192673 2026-04-14 16:11:45.192673 +696 opp-pending 138 282 2026-04-14 16:11:45.285194 2026-04-14 16:11:45.285194 +697 opp-pending 265 285 2026-04-14 16:11:45.560728 2026-04-14 16:11:45.560728 +698 opp-pending 167 285 2026-04-14 16:11:45.564788 2026-04-14 16:11:45.564788 +699 opp-pending 173 285 2026-04-14 16:11:45.568398 2026-04-14 16:11:45.568398 +700 opp-pending 215 285 2026-04-14 16:11:45.571933 2026-04-14 16:11:45.571933 +701 opp-pending 243 285 2026-04-14 16:11:45.57526 2026-04-14 16:11:45.57526 +702 opp-pending 244 285 2026-04-14 16:11:45.578738 2026-04-14 16:11:45.578738 +703 opp-pending 354 285 2026-04-14 16:11:45.58226 2026-04-14 16:11:45.58226 +704 opp-pending 511 285 2026-04-14 16:11:45.585774 2026-04-14 16:11:45.585774 +705 opp-pending 645 285 2026-04-14 16:11:45.589307 2026-04-14 16:11:45.589307 +706 opp-pending 170 287 2026-04-14 16:11:45.732951 2026-04-14 16:11:45.732951 +707 opp-pending 165 289 2026-04-14 16:11:45.853985 2026-04-14 16:11:45.853985 +708 opp-pending 183 291 2026-04-14 16:11:46.028614 2026-04-14 16:11:46.028614 +709 opp-pending 155 292 2026-04-14 16:11:46.082355 2026-04-14 16:11:46.082355 +710 opp-pending 274 294 2026-04-14 16:11:46.208166 2026-04-14 16:11:46.208166 +711 opp-pending 178 294 2026-04-14 16:11:46.211948 2026-04-14 16:11:46.211948 +712 opp-pending 195 294 2026-04-14 16:11:46.216027 2026-04-14 16:11:46.216027 +713 opp-pending 279 294 2026-04-14 16:11:46.219607 2026-04-14 16:11:46.219607 +714 opp-pending 255 294 2026-04-14 16:11:46.22343 2026-04-14 16:11:46.22343 +715 opp-pending 300 294 2026-04-14 16:11:46.227433 2026-04-14 16:11:46.227433 +716 opp-pending 304 294 2026-04-14 16:11:46.231451 2026-04-14 16:11:46.231451 +717 opp-pending 305 294 2026-04-14 16:11:46.235322 2026-04-14 16:11:46.235322 +718 opp-pending 342 294 2026-04-14 16:11:46.239445 2026-04-14 16:11:46.239445 +719 opp-pending 346 294 2026-04-14 16:11:46.243765 2026-04-14 16:11:46.243765 +720 opp-pending 361 294 2026-04-14 16:11:46.247597 2026-04-14 16:11:46.247597 +721 opp-pending 376 294 2026-04-14 16:11:46.251388 2026-04-14 16:11:46.251388 +722 opp-pending 396 294 2026-04-14 16:11:46.254946 2026-04-14 16:11:46.254946 +723 opp-pending 438 294 2026-04-14 16:11:46.25848 2026-04-14 16:11:46.25848 +724 opp-pending 474 294 2026-04-14 16:11:46.262118 2026-04-14 16:11:46.262118 +725 opp-pending 486 294 2026-04-14 16:11:46.266074 2026-04-14 16:11:46.266074 +726 opp-pending 510 294 2026-04-14 16:11:46.269955 2026-04-14 16:11:46.269955 +727 opp-pending 581 294 2026-04-14 16:11:46.274003 2026-04-14 16:11:46.274003 +728 opp-pending 644 294 2026-04-14 16:11:46.278094 2026-04-14 16:11:46.278094 +729 opp-pending 665 294 2026-04-14 16:11:46.281904 2026-04-14 16:11:46.281904 +730 opp-pending 686 294 2026-04-14 16:11:46.285768 2026-04-14 16:11:46.285768 +731 opp-pending 717 294 2026-04-14 16:11:46.289818 2026-04-14 16:11:46.289818 +732 opp-pending 736 294 2026-04-14 16:11:46.293788 2026-04-14 16:11:46.293788 +733 opp-pending 747 294 2026-04-14 16:11:46.297299 2026-04-14 16:11:46.297299 +734 opp-pending 183 297 2026-04-14 16:11:46.544395 2026-04-14 16:11:46.544395 +735 opp-pending 203 297 2026-04-14 16:11:46.547835 2026-04-14 16:11:46.547835 +736 opp-pending 254 297 2026-04-14 16:11:46.551193 2026-04-14 16:11:46.551193 +737 opp-pending 258 297 2026-04-14 16:11:46.554417 2026-04-14 16:11:46.554417 +738 opp-pending 350 297 2026-04-14 16:11:46.557829 2026-04-14 16:11:46.557829 +739 opp-pending 365 297 2026-04-14 16:11:46.561531 2026-04-14 16:11:46.561531 +740 opp-pending 375 297 2026-04-14 16:11:46.565121 2026-04-14 16:11:46.565121 +741 opp-pending 142 298 2026-04-14 16:11:46.661963 2026-04-14 16:11:46.661963 +742 opp-pending 12 301 2026-04-14 16:11:46.848379 2026-04-14 16:11:46.848379 +743 opp-pending 103 302 2026-04-14 16:11:46.910579 2026-04-14 16:11:46.910579 +744 opp-pending 172 304 2026-04-14 16:11:47.084971 2026-04-14 16:11:47.084971 +745 opp-pending 185 304 2026-04-14 16:11:47.089026 2026-04-14 16:11:47.089026 +746 opp-pending 186 304 2026-04-14 16:11:47.092866 2026-04-14 16:11:47.092866 +747 opp-pending 202 304 2026-04-14 16:11:47.096607 2026-04-14 16:11:47.096607 +748 opp-pending 211 304 2026-04-14 16:11:47.100214 2026-04-14 16:11:47.100214 +749 opp-pending 345 304 2026-04-14 16:11:47.103758 2026-04-14 16:11:47.103758 +750 opp-pending 575 304 2026-04-14 16:11:47.107312 2026-04-14 16:11:47.107312 +751 opp-pending 11 305 2026-04-14 16:11:47.168397 2026-04-14 16:11:47.168397 +752 opp-pending 300 306 2026-04-14 16:11:47.235443 2026-04-14 16:11:47.235443 +753 opp-pending 118 307 2026-04-14 16:11:47.318943 2026-04-14 16:11:47.318943 +754 opp-pending 55 308 2026-04-14 16:11:47.449884 2026-04-14 16:11:47.449884 +755 opp-pending 124 308 2026-04-14 16:11:47.453612 2026-04-14 16:11:47.453612 +756 opp-pending 290 308 2026-04-14 16:11:47.457399 2026-04-14 16:11:47.457399 +757 opp-pending 291 308 2026-04-14 16:11:47.461528 2026-04-14 16:11:47.461528 +758 opp-pending 122 309 2026-04-14 16:11:47.525337 2026-04-14 16:11:47.525337 +759 opp-pending 274 310 2026-04-14 16:11:47.592289 2026-04-14 16:11:47.592289 +760 opp-pending 159 310 2026-04-14 16:11:47.595823 2026-04-14 16:11:47.595823 +761 opp-pending 196 310 2026-04-14 16:11:47.599376 2026-04-14 16:11:47.599376 +762 opp-pending 207 310 2026-04-14 16:11:47.602742 2026-04-14 16:11:47.602742 +763 opp-pending 302 310 2026-04-14 16:11:47.606123 2026-04-14 16:11:47.606123 +764 opp-pending 304 310 2026-04-14 16:11:47.609456 2026-04-14 16:11:47.609456 +765 opp-pending 305 310 2026-04-14 16:11:47.612953 2026-04-14 16:11:47.612953 +766 opp-pending 342 310 2026-04-14 16:11:47.616857 2026-04-14 16:11:47.616857 +767 opp-pending 444 310 2026-04-14 16:11:47.620302 2026-04-14 16:11:47.620302 +768 opp-pending 76 311 2026-04-14 16:11:47.70245 2026-04-14 16:11:47.70245 +769 opp-pending 197 312 2026-04-14 16:11:47.80312 2026-04-14 16:11:47.80312 +770 opp-pending 280 312 2026-04-14 16:11:47.806772 2026-04-14 16:11:47.806772 +771 opp-pending 303 312 2026-04-14 16:11:47.810258 2026-04-14 16:11:47.810258 +772 opp-pending 343 312 2026-04-14 16:11:47.813474 2026-04-14 16:11:47.813474 +773 opp-pending 514 312 2026-04-14 16:11:47.816954 2026-04-14 16:11:47.816954 +774 opp-pending 501 313 2026-04-14 16:11:47.963891 2026-04-14 16:11:47.963891 +775 opp-pending 531 313 2026-04-14 16:11:47.967822 2026-04-14 16:11:47.967822 +776 opp-pending 593 313 2026-04-14 16:11:47.971312 2026-04-14 16:11:47.971312 +777 opp-pending 628 313 2026-04-14 16:11:47.974687 2026-04-14 16:11:47.974687 +778 opp-pending 12 314 2026-04-14 16:11:48.056009 2026-04-14 16:11:48.056009 +779 opp-pending 54 315 2026-04-14 16:11:48.239595 2026-04-14 16:11:48.239595 +780 opp-pending 211 315 2026-04-14 16:11:48.24324 2026-04-14 16:11:48.24324 +781 opp-pending 240 315 2026-04-14 16:11:48.247155 2026-04-14 16:11:48.247155 +782 opp-pending 283 315 2026-04-14 16:11:48.250623 2026-04-14 16:11:48.250623 +783 opp-pending 355 315 2026-04-14 16:11:48.25423 2026-04-14 16:11:48.25423 +784 opp-pending 357 315 2026-04-14 16:11:48.257967 2026-04-14 16:11:48.257967 +785 opp-pending 501 315 2026-04-14 16:11:48.261549 2026-04-14 16:11:48.261549 +786 opp-matched 201 317 2026-04-14 16:11:48.476451 2026-04-14 16:11:48.476451 +787 opp-matched 362 318 2026-04-14 16:11:48.575477 2026-04-14 16:11:48.575477 +788 opp-pending 211 320 2026-04-14 16:11:48.782169 2026-04-14 16:11:48.782169 +789 opp-pending 345 320 2026-04-14 16:11:48.78585 2026-04-14 16:11:48.78585 +790 opp-pending 198 321 2026-04-14 16:11:48.98515 2026-04-14 16:11:48.98515 +791 opp-pending 207 322 2026-04-14 16:11:49.15492 2026-04-14 16:11:49.15492 +792 opp-pending 237 322 2026-04-14 16:11:49.158895 2026-04-14 16:11:49.158895 +793 opp-pending 249 322 2026-04-14 16:11:49.162683 2026-04-14 16:11:49.162683 +794 opp-pending 254 322 2026-04-14 16:11:49.166534 2026-04-14 16:11:49.166534 +795 opp-pending 255 322 2026-04-14 16:11:49.171435 2026-04-14 16:11:49.171435 +796 opp-pending 286 322 2026-04-14 16:11:49.176005 2026-04-14 16:11:49.176005 +797 opp-pending 287 322 2026-04-14 16:11:49.180435 2026-04-14 16:11:49.180435 +798 opp-pending 304 322 2026-04-14 16:11:49.185097 2026-04-14 16:11:49.185097 +799 opp-pending 311 322 2026-04-14 16:11:49.189612 2026-04-14 16:11:49.189612 +800 opp-pending 320 322 2026-04-14 16:11:49.194349 2026-04-14 16:11:49.194349 +801 opp-pending 376 322 2026-04-14 16:11:49.198964 2026-04-14 16:11:49.198964 +802 opp-pending 382 322 2026-04-14 16:11:49.203548 2026-04-14 16:11:49.203548 +803 opp-pending 386 322 2026-04-14 16:11:49.207912 2026-04-14 16:11:49.207912 +804 opp-pending 444 322 2026-04-14 16:11:49.212208 2026-04-14 16:11:49.212208 +805 opp-pending 473 322 2026-04-14 16:11:49.216384 2026-04-14 16:11:49.216384 +806 opp-pending 474 322 2026-04-14 16:11:49.220429 2026-04-14 16:11:49.220429 +807 opp-pending 503 322 2026-04-14 16:11:49.224465 2026-04-14 16:11:49.224465 +808 opp-pending 504 322 2026-04-14 16:11:49.228598 2026-04-14 16:11:49.228598 +809 opp-pending 529 322 2026-04-14 16:11:49.232842 2026-04-14 16:11:49.232842 +810 opp-pending 530 322 2026-04-14 16:11:49.237621 2026-04-14 16:11:49.237621 +811 opp-active 643 322 2026-04-14 16:11:49.242321 2026-04-14 16:11:49.242321 +812 opp-pending 767 322 2026-04-14 16:11:49.246748 2026-04-14 16:11:49.246748 +813 opp-pending 769 322 2026-04-14 16:11:49.250985 2026-04-14 16:11:49.250985 +814 opp-pending 265 327 2026-04-14 16:11:49.858093 2026-04-14 16:11:49.858093 +815 opp-pending 657 330 2026-04-14 16:11:50.317176 2026-04-14 16:11:50.317176 +816 opp-pending 51 333 2026-04-14 16:11:51.032932 2026-04-14 16:11:51.032932 +817 opp-pending 383 333 2026-04-14 16:11:51.037203 2026-04-14 16:11:51.037203 +818 opp-pending 228 334 2026-04-14 16:11:51.212896 2026-04-14 16:11:51.212896 +819 opp-pending 238 334 2026-04-14 16:11:51.218183 2026-04-14 16:11:51.218183 +820 opp-pending 345 334 2026-04-14 16:11:51.222098 2026-04-14 16:11:51.222098 +821 opp-pending 355 334 2026-04-14 16:11:51.225956 2026-04-14 16:11:51.225956 +822 opp-pending 357 334 2026-04-14 16:11:51.230177 2026-04-14 16:11:51.230177 +823 opp-pending 452 334 2026-04-14 16:11:51.234547 2026-04-14 16:11:51.234547 +824 opp-pending 456 334 2026-04-14 16:11:51.238569 2026-04-14 16:11:51.238569 +825 opp-pending 475 334 2026-04-14 16:11:51.242772 2026-04-14 16:11:51.242772 +826 opp-pending 501 334 2026-04-14 16:11:51.24716 2026-04-14 16:11:51.24716 +827 opp-pending 539 334 2026-04-14 16:11:51.251325 2026-04-14 16:11:51.251325 +828 opp-pending 546 334 2026-04-14 16:11:51.2554 2026-04-14 16:11:51.2554 +829 opp-pending 570 334 2026-04-14 16:11:51.259596 2026-04-14 16:11:51.259596 +830 opp-pending 617 334 2026-04-14 16:11:51.263929 2026-04-14 16:11:51.263929 +831 opp-pending 623 334 2026-04-14 16:11:51.267927 2026-04-14 16:11:51.267927 +832 opp-pending 773 334 2026-04-14 16:11:51.271893 2026-04-14 16:11:51.271893 +833 opp-pending 526 335 2026-04-14 16:11:51.408324 2026-04-14 16:11:51.408324 +834 opp-pending 52 337 2026-04-14 16:11:51.634628 2026-04-14 16:11:51.634628 +835 opp-pending 204 337 2026-04-14 16:11:51.638597 2026-04-14 16:11:51.638597 +836 opp-pending 265 338 2026-04-14 16:11:51.739175 2026-04-14 16:11:51.739175 +837 opp-pending 215 338 2026-04-14 16:11:51.743292 2026-04-14 16:11:51.743292 +838 opp-pending 235 338 2026-04-14 16:11:51.7472 2026-04-14 16:11:51.7472 +839 opp-pending 284 338 2026-04-14 16:11:51.751003 2026-04-14 16:11:51.751003 +840 opp-pending 254 338 2026-04-14 16:11:51.754918 2026-04-14 16:11:51.754918 +841 opp-pending 388 338 2026-04-14 16:11:51.75917 2026-04-14 16:11:51.75917 +842 opp-pending 441 338 2026-04-14 16:11:51.763186 2026-04-14 16:11:51.763186 +843 opp-pending 448 338 2026-04-14 16:11:51.767126 2026-04-14 16:11:51.767126 +844 opp-pending 459 338 2026-04-14 16:11:51.771387 2026-04-14 16:11:51.771387 +845 opp-pending 511 338 2026-04-14 16:11:51.775327 2026-04-14 16:11:51.775327 +846 opp-pending 645 338 2026-04-14 16:11:51.779432 2026-04-14 16:11:51.779432 +847 opp-pending 278 339 2026-04-14 16:11:51.871429 2026-04-14 16:11:51.871429 +848 opp-pending 356 339 2026-04-14 16:11:51.875377 2026-04-14 16:11:51.875377 +849 opp-pending 3 340 2026-04-14 16:11:52.010295 2026-04-14 16:11:52.010295 +850 opp-pending 317 340 2026-04-14 16:11:52.014868 2026-04-14 16:11:52.014868 +851 opp-pending 236 347 2026-04-14 16:11:53.168588 2026-04-14 16:11:53.168588 +852 opp-pending 198 348 2026-04-14 16:11:53.330435 2026-04-14 16:11:53.330435 +853 opp-pending 218 350 2026-04-14 16:11:53.607035 2026-04-14 16:11:53.607035 +854 opp-pending 3 351 2026-04-14 16:11:53.701607 2026-04-14 16:11:53.701607 +855 opp-pending 422 351 2026-04-14 16:11:53.706466 2026-04-14 16:11:53.706466 +856 opp-pending 631 351 2026-04-14 16:11:53.71183 2026-04-14 16:11:53.71183 +857 opp-pending 531 352 2026-04-14 16:11:53.884901 2026-04-14 16:11:53.884901 +858 opp-pending 52 355 2026-04-14 16:11:54.229658 2026-04-14 16:11:54.229658 +859 opp-pending 265 355 2026-04-14 16:11:54.233949 2026-04-14 16:11:54.233949 +860 opp-pending 242 355 2026-04-14 16:11:54.238245 2026-04-14 16:11:54.238245 +861 opp-pending 243 355 2026-04-14 16:11:54.242122 2026-04-14 16:11:54.242122 +862 opp-pending 244 355 2026-04-14 16:11:54.246014 2026-04-14 16:11:54.246014 +863 opp-pending 290 355 2026-04-14 16:11:54.250239 2026-04-14 16:11:54.250239 +864 opp-pending 291 355 2026-04-14 16:11:54.254208 2026-04-14 16:11:54.254208 +865 opp-pending 448 355 2026-04-14 16:11:54.258318 2026-04-14 16:11:54.258318 +866 opp-pending 317 356 2026-04-14 16:11:54.420481 2026-04-14 16:11:54.420481 +867 opp-pending 229 357 2026-04-14 16:11:54.610206 2026-04-14 16:11:54.610206 +868 opp-pending 230 357 2026-04-14 16:11:54.61442 2026-04-14 16:11:54.61442 +869 opp-pending 238 357 2026-04-14 16:11:54.618574 2026-04-14 16:11:54.618574 +870 opp-pending 531 360 2026-04-14 16:11:54.977571 2026-04-14 16:11:54.977571 +871 opp-pending 531 361 2026-04-14 16:11:55.114407 2026-04-14 16:11:55.114407 +872 opp-pending 274 362 2026-04-14 16:11:55.298982 2026-04-14 16:11:55.298982 +873 opp-pending 279 362 2026-04-14 16:11:55.303005 2026-04-14 16:11:55.303005 +874 opp-pending 236 362 2026-04-14 16:11:55.306978 2026-04-14 16:11:55.306978 +875 opp-pending 255 362 2026-04-14 16:11:55.310975 2026-04-14 16:11:55.310975 +876 opp-pending 286 362 2026-04-14 16:11:55.31495 2026-04-14 16:11:55.31495 +877 opp-pending 287 362 2026-04-14 16:11:55.319021 2026-04-14 16:11:55.319021 +878 opp-pending 311 362 2026-04-14 16:11:55.323136 2026-04-14 16:11:55.323136 +879 opp-pending 345 362 2026-04-14 16:11:55.327392 2026-04-14 16:11:55.327392 +880 opp-pending 376 362 2026-04-14 16:11:55.331302 2026-04-14 16:11:55.331302 +881 opp-pending 382 362 2026-04-14 16:11:55.335512 2026-04-14 16:11:55.335512 +882 opp-pending 402 362 2026-04-14 16:11:55.339991 2026-04-14 16:11:55.339991 +883 opp-pending 408 362 2026-04-14 16:11:55.344135 2026-04-14 16:11:55.344135 +884 opp-pending 439 362 2026-04-14 16:11:55.348624 2026-04-14 16:11:55.348624 +885 opp-pending 444 362 2026-04-14 16:11:55.352827 2026-04-14 16:11:55.352827 +886 opp-pending 461 362 2026-04-14 16:11:55.357085 2026-04-14 16:11:55.357085 +887 opp-pending 464 362 2026-04-14 16:11:55.361287 2026-04-14 16:11:55.361287 +888 opp-pending 510 362 2026-04-14 16:11:55.365272 2026-04-14 16:11:55.365272 +889 opp-matched 564 362 2026-04-14 16:11:55.369415 2026-04-14 16:11:55.369415 +890 opp-pending 574 362 2026-04-14 16:11:55.373971 2026-04-14 16:11:55.373971 +891 opp-pending 597 362 2026-04-14 16:11:55.378297 2026-04-14 16:11:55.378297 +892 opp-pending 601 362 2026-04-14 16:11:55.382568 2026-04-14 16:11:55.382568 +893 opp-pending 615 362 2026-04-14 16:11:55.38686 2026-04-14 16:11:55.38686 +894 opp-pending 674 362 2026-04-14 16:11:55.390931 2026-04-14 16:11:55.390931 +895 opp-pending 737 362 2026-04-14 16:11:55.394749 2026-04-14 16:11:55.394749 +896 opp-pending 747 362 2026-04-14 16:11:55.398584 2026-04-14 16:11:55.398584 +897 opp-pending 766 362 2026-04-14 16:11:55.402544 2026-04-14 16:11:55.402544 +898 opp-pending 389 363 2026-04-14 16:11:55.664572 2026-04-14 16:11:55.664572 +899 opp-pending 496 363 2026-04-14 16:11:55.668592 2026-04-14 16:11:55.668592 +900 opp-pending 531 363 2026-04-14 16:11:55.672781 2026-04-14 16:11:55.672781 +901 opp-pending 535 363 2026-04-14 16:11:55.67684 2026-04-14 16:11:55.67684 +902 opp-pending 280 365 2026-04-14 16:11:55.956331 2026-04-14 16:11:55.956331 +903 opp-pending 282 365 2026-04-14 16:11:55.96039 2026-04-14 16:11:55.96039 +904 opp-pending 241 365 2026-04-14 16:11:55.964455 2026-04-14 16:11:55.964455 +905 opp-pending 251 365 2026-04-14 16:11:55.968464 2026-04-14 16:11:55.968464 +906 opp-pending 253 365 2026-04-14 16:11:55.972433 2026-04-14 16:11:55.972433 +907 opp-pending 285 365 2026-04-14 16:11:55.976354 2026-04-14 16:11:55.976354 +908 opp-pending 303 365 2026-04-14 16:11:55.980566 2026-04-14 16:11:55.980566 +909 opp-pending 343 365 2026-04-14 16:11:55.984962 2026-04-14 16:11:55.984962 +910 opp-pending 387 365 2026-04-14 16:11:55.989306 2026-04-14 16:11:55.989306 +911 opp-pending 421 365 2026-04-14 16:11:55.993601 2026-04-14 16:11:55.993601 +912 opp-pending 460 365 2026-04-14 16:11:55.998127 2026-04-14 16:11:55.998127 +913 opp-pending 495 365 2026-04-14 16:11:56.002417 2026-04-14 16:11:56.002417 +914 opp-pending 514 365 2026-04-14 16:11:56.006871 2026-04-14 16:11:56.006871 +915 opp-pending 324 366 2026-04-14 16:11:56.13202 2026-04-14 16:11:56.13202 +916 opp-pending 357 369 2026-04-14 16:11:56.549404 2026-04-14 16:11:56.549404 +917 opp-pending 277 370 2026-04-14 16:11:56.718233 2026-04-14 16:11:56.718233 +918 opp-pending 322 370 2026-04-14 16:11:56.722966 2026-04-14 16:11:56.722966 +919 opp-pending 264 374 2026-04-14 16:11:57.235972 2026-04-14 16:11:57.235972 +920 opp-pending 317 374 2026-04-14 16:11:57.239909 2026-04-14 16:11:57.239909 +921 opp-pending 278 375 2026-04-14 16:11:57.357885 2026-04-14 16:11:57.357885 +922 opp-pending 296 377 2026-04-14 16:11:57.699201 2026-04-14 16:11:57.699201 +923 opp-pending 278 378 2026-04-14 16:11:57.980498 2026-04-14 16:11:57.980498 +924 opp-pending 283 378 2026-04-14 16:11:57.985175 2026-04-14 16:11:57.985175 +925 opp-pending 323 378 2026-04-14 16:11:57.989625 2026-04-14 16:11:57.989625 +926 opp-pending 391 378 2026-04-14 16:11:57.994439 2026-04-14 16:11:57.994439 +927 opp-pending 456 378 2026-04-14 16:11:57.99863 2026-04-14 16:11:57.99863 +928 opp-pending 475 378 2026-04-14 16:11:58.002967 2026-04-14 16:11:58.002967 +929 opp-pending 540 378 2026-04-14 16:11:58.007322 2026-04-14 16:11:58.007322 +930 opp-pending 570 378 2026-04-14 16:11:58.011464 2026-04-14 16:11:58.011464 +931 opp-pending 630 378 2026-04-14 16:11:58.015934 2026-04-14 16:11:58.015934 +932 opp-pending 726 378 2026-04-14 16:11:58.019859 2026-04-14 16:11:58.019859 +933 opp-pending 773 378 2026-04-14 16:11:58.023831 2026-04-14 16:11:58.023831 +934 opp-pending 391 379 2026-04-14 16:11:58.272969 2026-04-14 16:11:58.272969 +935 opp-pending 573 380 2026-04-14 16:11:58.439903 2026-04-14 16:11:58.439903 +936 opp-pending 313 383 2026-04-14 16:11:58.810332 2026-04-14 16:11:58.810332 +937 opp-matched 265 385 2026-04-14 16:11:58.94309 2026-04-14 16:11:58.94309 +938 opp-pending 300 385 2026-04-14 16:11:58.947081 2026-04-14 16:11:58.947081 +939 opp-pending 46 387 2026-04-14 16:11:59.418579 2026-04-14 16:11:59.418579 +940 opp-pending 272 387 2026-04-14 16:11:59.422463 2026-04-14 16:11:59.422463 +941 opp-pending 234 387 2026-04-14 16:11:59.426489 2026-04-14 16:11:59.426489 +942 opp-pending 317 387 2026-04-14 16:11:59.430636 2026-04-14 16:11:59.430636 +943 opp-pending 420 387 2026-04-14 16:11:59.434633 2026-04-14 16:11:59.434633 +944 opp-pending 423 387 2026-04-14 16:11:59.43864 2026-04-14 16:11:59.43864 +945 opp-pending 427 387 2026-04-14 16:11:59.442953 2026-04-14 16:11:59.442953 +946 opp-pending 307 388 2026-04-14 16:11:59.60623 2026-04-14 16:11:59.60623 +947 opp-pending 743 390 2026-04-14 16:11:59.883193 2026-04-14 16:11:59.883193 +948 opp-pending 531 391 2026-04-14 16:12:00.305946 2026-04-14 16:12:00.305946 +949 opp-matched 341 392 2026-04-14 16:12:00.555642 2026-04-14 16:12:00.555642 +950 opp-pending 342 393 2026-04-14 16:12:00.745613 2026-04-14 16:12:00.745613 +951 opp-pending 198 394 2026-04-14 16:12:00.942171 2026-04-14 16:12:00.942171 +952 opp-pending 279 394 2026-04-14 16:12:00.946307 2026-04-14 16:12:00.946307 +953 opp-pending 342 394 2026-04-14 16:12:00.950316 2026-04-14 16:12:00.950316 +954 opp-pending 444 394 2026-04-14 16:12:00.954564 2026-04-14 16:12:00.954564 +955 opp-pending 482 394 2026-04-14 16:12:00.959056 2026-04-14 16:12:00.959056 +956 opp-matched 430 398 2026-04-14 16:12:02.28053 2026-04-14 16:12:02.28053 +957 opp-pending 313 399 2026-04-14 16:12:02.508501 2026-04-14 16:12:02.508501 +958 opp-pending 239 401 2026-04-14 16:12:02.879036 2026-04-14 16:12:02.879036 +959 opp-active 260 401 2026-04-14 16:12:02.889594 2026-04-14 16:12:02.889594 +961 opp-pending 137 402 2026-04-14 16:12:03.157661 2026-04-14 16:12:03.157661 +962 opp-active 239 402 2026-04-14 16:12:03.162695 2026-04-14 16:12:03.162695 +963 opp-pending 14 403 2026-04-14 16:12:03.363623 2026-04-14 16:12:03.363623 +964 opp-pending 218 403 2026-04-14 16:12:03.368767 2026-04-14 16:12:03.368767 +965 opp-pending 245 403 2026-04-14 16:12:03.373529 2026-04-14 16:12:03.373529 +966 opp-pending 657 403 2026-04-14 16:12:03.379097 2026-04-14 16:12:03.379097 +967 opp-pending 262 404 2026-04-14 16:12:03.532467 2026-04-14 16:12:03.532467 +968 opp-pending 193 404 2026-04-14 16:12:03.537035 2026-04-14 16:12:03.537035 +969 opp-pending 475 405 2026-04-14 16:12:03.888802 2026-04-14 16:12:03.888802 +970 opp-pending 531 405 2026-04-14 16:12:03.893474 2026-04-14 16:12:03.893474 +971 opp-pending 201 406 2026-04-14 16:12:04.037388 2026-04-14 16:12:04.037388 +972 opp-pending 319 407 2026-04-14 16:12:04.214158 2026-04-14 16:12:04.214158 +973 opp-pending 279 409 2026-04-14 16:12:04.380517 2026-04-14 16:12:04.380517 +974 opp-matched 316 409 2026-04-14 16:12:04.384844 2026-04-14 16:12:04.384844 +975 opp-pending 439 409 2026-04-14 16:12:04.38918 2026-04-14 16:12:04.38918 +976 opp-pending 461 409 2026-04-14 16:12:04.393766 2026-04-14 16:12:04.393766 +977 opp-pending 464 409 2026-04-14 16:12:04.398417 2026-04-14 16:12:04.398417 +978 opp-pending 273 411 2026-04-14 16:12:04.746652 2026-04-14 16:12:04.746652 +979 opp-pending 622 411 2026-04-14 16:12:04.75066 2026-04-14 16:12:04.75066 +980 opp-pending 426 412 2026-04-14 16:12:04.900396 2026-04-14 16:12:04.900396 +981 opp-matched 734 413 2026-04-14 16:12:05.083401 2026-04-14 16:12:05.083401 +982 opp-pending 217 415 2026-04-14 16:12:05.44989 2026-04-14 16:12:05.44989 +983 opp-pending 324 415 2026-04-14 16:12:05.454497 2026-04-14 16:12:05.454497 +984 opp-pending 343 415 2026-04-14 16:12:05.458951 2026-04-14 16:12:05.458951 +985 opp-pending 279 418 2026-04-14 16:12:05.898353 2026-04-14 16:12:05.898353 +986 opp-pending 239 418 2026-04-14 16:12:05.903496 2026-04-14 16:12:05.903496 +987 opp-matched 123 419 2026-04-14 16:12:05.980204 2026-04-14 16:12:05.980204 +988 opp-pending 345 422 2026-04-14 16:12:06.635809 2026-04-14 16:12:06.635809 +989 opp-pending 350 422 2026-04-14 16:12:06.640539 2026-04-14 16:12:06.640539 +990 opp-pending 494 422 2026-04-14 16:12:06.644823 2026-04-14 16:12:06.644823 +991 opp-pending 127 423 2026-04-14 16:12:06.761024 2026-04-14 16:12:06.761024 +992 opp-pending 213 426 2026-04-14 16:12:07.259838 2026-04-14 16:12:07.259838 +993 opp-pending 571 427 2026-04-14 16:12:07.478221 2026-04-14 16:12:07.478221 +994 opp-pending 193 428 2026-04-14 16:12:07.62327 2026-04-14 16:12:07.62327 +995 opp-pending 531 430 2026-04-14 16:12:08.18459 2026-04-14 16:12:08.18459 +996 opp-pending 14 431 2026-04-14 16:12:08.405561 2026-04-14 16:12:08.405561 +997 opp-pending 382 432 2026-04-14 16:12:08.625436 2026-04-14 16:12:08.625436 +998 opp-pending 439 432 2026-04-14 16:12:08.632054 2026-04-14 16:12:08.632054 +999 opp-pending 444 432 2026-04-14 16:12:08.636356 2026-04-14 16:12:08.636356 +1000 opp-pending 461 432 2026-04-14 16:12:08.64048 2026-04-14 16:12:08.64048 +1001 opp-pending 464 432 2026-04-14 16:12:08.644875 2026-04-14 16:12:08.644875 +1002 opp-pending 482 432 2026-04-14 16:12:08.649259 2026-04-14 16:12:08.649259 +1003 opp-pending 491 432 2026-04-14 16:12:08.653586 2026-04-14 16:12:08.653586 +1004 opp-pending 137 433 2026-04-14 16:12:08.840364 2026-04-14 16:12:08.840364 +1005 opp-pending 391 433 2026-04-14 16:12:08.844483 2026-04-14 16:12:08.844483 +1006 opp-pending 546 433 2026-04-14 16:12:08.848552 2026-04-14 16:12:08.848552 +1007 opp-pending 570 433 2026-04-14 16:12:08.852474 2026-04-14 16:12:08.852474 +1008 opp-pending 617 433 2026-04-14 16:12:08.856503 2026-04-14 16:12:08.856503 +1009 opp-pending 625 433 2026-04-14 16:12:08.860455 2026-04-14 16:12:08.860455 +1010 opp-pending 205 434 2026-04-14 16:12:08.99735 2026-04-14 16:12:08.99735 +1011 opp-pending 356 436 2026-04-14 16:12:09.360613 2026-04-14 16:12:09.360613 +1012 opp-pending 201 437 2026-04-14 16:12:09.58643 2026-04-14 16:12:09.58643 +1013 opp-pending 187 438 2026-04-14 16:12:09.878304 2026-04-14 16:12:09.878304 +1014 opp-pending 252 438 2026-04-14 16:12:09.88238 2026-04-14 16:12:09.88238 +1015 opp-pending 357 440 2026-04-14 16:12:10.271171 2026-04-14 16:12:10.271171 +1016 opp-pending 531 440 2026-04-14 16:12:10.275633 2026-04-14 16:12:10.275633 +1017 opp-pending 562 440 2026-04-14 16:12:10.280314 2026-04-14 16:12:10.280314 +1018 opp-pending 573 440 2026-04-14 16:12:10.284702 2026-04-14 16:12:10.284702 +1019 opp-pending 357 442 2026-04-14 16:12:10.58435 2026-04-14 16:12:10.58435 +1020 opp-pending 501 442 2026-04-14 16:12:10.588651 2026-04-14 16:12:10.588651 +1021 opp-pending 575 442 2026-04-14 16:12:10.593106 2026-04-14 16:12:10.593106 +1022 opp-pending 452 445 2026-04-14 16:12:11.158993 2026-04-14 16:12:11.158993 +1023 opp-pending 539 445 2026-04-14 16:12:11.163065 2026-04-14 16:12:11.163065 +1024 opp-pending 298 446 2026-04-14 16:12:11.302432 2026-04-14 16:12:11.302432 +1025 opp-pending 325 447 2026-04-14 16:12:11.456402 2026-04-14 16:12:11.456402 +1026 opp-pending 362 448 2026-04-14 16:12:11.608787 2026-04-14 16:12:11.608787 +1027 opp-pending 14 449 2026-04-14 16:12:11.74748 2026-04-14 16:12:11.74748 +1028 opp-pending 363 450 2026-04-14 16:12:11.898127 2026-04-14 16:12:11.898127 +1029 opp-pending 51 452 2026-04-14 16:12:12.151526 2026-04-14 16:12:12.151526 +1030 opp-pending 12 454 2026-04-14 16:12:12.393272 2026-04-14 16:12:12.393272 +1031 opp-pending 441 456 2026-04-14 16:12:12.706633 2026-04-14 16:12:12.706633 +1032 opp-pending 448 456 2026-04-14 16:12:12.711431 2026-04-14 16:12:12.711431 +1033 opp-pending 459 456 2026-04-14 16:12:12.717238 2026-04-14 16:12:12.717238 +1034 opp-pending 476 456 2026-04-14 16:12:12.723102 2026-04-14 16:12:12.723102 +1035 opp-pending 511 456 2026-04-14 16:12:12.727642 2026-04-14 16:12:12.727642 +1036 opp-pending 629 456 2026-04-14 16:12:12.731891 2026-04-14 16:12:12.731891 +1037 opp-pending 307 457 2026-04-14 16:12:12.924036 2026-04-14 16:12:12.924036 +1038 opp-pending 383 457 2026-04-14 16:12:12.928361 2026-04-14 16:12:12.928361 +1039 opp-pending 256 458 2026-04-14 16:12:13.093559 2026-04-14 16:12:13.093559 +1040 opp-pending 401 458 2026-04-14 16:12:13.098182 2026-04-14 16:12:13.098182 +1041 opp-pending 217 460 2026-04-14 16:12:13.372013 2026-04-14 16:12:13.372013 +1042 opp-matched 377 461 2026-04-14 16:12:13.545001 2026-04-14 16:12:13.545001 +1043 opp-pending 389 461 2026-04-14 16:12:13.549236 2026-04-14 16:12:13.549236 +1044 opp-pending 417 461 2026-04-14 16:12:13.553598 2026-04-14 16:12:13.553598 +1045 opp-pending 424 461 2026-04-14 16:12:13.558008 2026-04-14 16:12:13.558008 +1046 opp-pending 427 461 2026-04-14 16:12:13.562262 2026-04-14 16:12:13.562262 +1047 opp-pending 444 461 2026-04-14 16:12:13.566727 2026-04-14 16:12:13.566727 +1048 opp-pending 464 461 2026-04-14 16:12:13.570991 2026-04-14 16:12:13.570991 +1049 opp-pending 482 461 2026-04-14 16:12:13.575258 2026-04-14 16:12:13.575258 +1050 opp-active 487 461 2026-04-14 16:12:13.579642 2026-04-14 16:12:13.579642 +1051 opp-active 496 461 2026-04-14 16:12:13.583894 2026-04-14 16:12:13.583894 +1052 opp-pending 391 462 2026-04-14 16:12:13.711987 2026-04-14 16:12:13.711987 +1053 opp-matched 423 462 2026-04-14 16:12:13.716173 2026-04-14 16:12:13.716173 +1054 opp-pending 416 463 2026-04-14 16:12:13.798009 2026-04-14 16:12:13.798009 +1055 opp-pending 418 463 2026-04-14 16:12:13.801925 2026-04-14 16:12:13.801925 +1056 opp-pending 709 463 2026-04-14 16:12:13.805938 2026-04-14 16:12:13.805938 +1057 opp-pending 430 467 2026-04-14 16:12:14.425324 2026-04-14 16:12:14.425324 +1058 opp-pending 377 469 2026-04-14 16:12:14.789087 2026-04-14 16:12:14.789087 +1059 opp-pending 388 469 2026-04-14 16:12:14.793068 2026-04-14 16:12:14.793068 +1060 opp-pending 441 469 2026-04-14 16:12:14.797243 2026-04-14 16:12:14.797243 +1061 opp-pending 448 469 2026-04-14 16:12:14.801222 2026-04-14 16:12:14.801222 +1062 opp-pending 459 469 2026-04-14 16:12:14.805237 2026-04-14 16:12:14.805237 +1063 opp-pending 476 469 2026-04-14 16:12:14.809271 2026-04-14 16:12:14.809271 +1064 opp-pending 12 471 2026-04-14 16:12:15.182991 2026-04-14 16:12:15.182991 +1065 opp-pending 374 471 2026-04-14 16:12:15.187316 2026-04-14 16:12:15.187316 +1066 opp-pending 388 471 2026-04-14 16:12:15.191283 2026-04-14 16:12:15.191283 +1067 opp-pending 411 471 2026-04-14 16:12:15.195187 2026-04-14 16:12:15.195187 +1068 opp-pending 448 471 2026-04-14 16:12:15.198985 2026-04-14 16:12:15.198985 +1069 opp-pending 476 471 2026-04-14 16:12:15.203163 2026-04-14 16:12:15.203163 +1070 opp-pending 511 471 2026-04-14 16:12:15.207706 2026-04-14 16:12:15.207706 +1071 opp-pending 377 472 2026-04-14 16:12:15.377919 2026-04-14 16:12:15.377919 +1072 opp-pending 417 473 2026-04-14 16:12:15.54601 2026-04-14 16:12:15.54601 +1073 opp-pending 424 473 2026-04-14 16:12:15.550296 2026-04-14 16:12:15.550296 +1074 opp-pending 439 473 2026-04-14 16:12:15.554545 2026-04-14 16:12:15.554545 +1075 opp-pending 461 473 2026-04-14 16:12:15.558685 2026-04-14 16:12:15.558685 +1076 opp-pending 464 473 2026-04-14 16:12:15.563422 2026-04-14 16:12:15.563422 +1077 opp-pending 640 473 2026-04-14 16:12:15.567584 2026-04-14 16:12:15.567584 +1078 opp-pending 642 473 2026-04-14 16:12:15.571651 2026-04-14 16:12:15.571651 +1079 opp-pending 416 475 2026-04-14 16:12:15.863597 2026-04-14 16:12:15.863597 +1080 opp-pending 418 475 2026-04-14 16:12:15.867958 2026-04-14 16:12:15.867958 +1081 opp-pending 389 476 2026-04-14 16:12:15.993112 2026-04-14 16:12:15.993112 +1082 opp-pending 423 476 2026-04-14 16:12:15.997503 2026-04-14 16:12:15.997503 +1083 opp-pending 464 476 2026-04-14 16:12:16.001557 2026-04-14 16:12:16.001557 +1084 opp-pending 556 476 2026-04-14 16:12:16.006145 2026-04-14 16:12:16.006145 +1085 opp-pending 700 478 2026-04-14 16:12:16.300738 2026-04-14 16:12:16.300738 +1086 opp-pending 392 479 2026-04-14 16:12:16.445204 2026-04-14 16:12:16.445204 +1087 opp-pending 432 479 2026-04-14 16:12:16.449367 2026-04-14 16:12:16.449367 +1088 opp-pending 504 479 2026-04-14 16:12:16.453573 2026-04-14 16:12:16.453573 +1089 opp-pending 362 480 2026-04-14 16:12:16.664004 2026-04-14 16:12:16.664004 +1090 opp-pending 621 480 2026-04-14 16:12:16.66838 2026-04-14 16:12:16.66838 +1091 opp-pending 417 481 2026-04-14 16:12:16.997601 2026-04-14 16:12:16.997601 +1092 opp-pending 424 481 2026-04-14 16:12:17.002497 2026-04-14 16:12:17.002497 +1093 opp-pending 486 481 2026-04-14 16:12:17.006886 2026-04-14 16:12:17.006886 +1094 opp-pending 488 481 2026-04-14 16:12:17.010975 2026-04-14 16:12:17.010975 +1095 opp-pending 502 481 2026-04-14 16:12:17.015103 2026-04-14 16:12:17.015103 +1096 opp-pending 503 481 2026-04-14 16:12:17.019077 2026-04-14 16:12:17.019077 +1097 opp-pending 521 481 2026-04-14 16:12:17.023128 2026-04-14 16:12:17.023128 +1098 opp-pending 530 481 2026-04-14 16:12:17.027245 2026-04-14 16:12:17.027245 +1099 opp-pending 581 481 2026-04-14 16:12:17.031245 2026-04-14 16:12:17.031245 +1100 opp-pending 592 481 2026-04-14 16:12:17.035233 2026-04-14 16:12:17.035233 +1101 opp-pending 603 481 2026-04-14 16:12:17.039384 2026-04-14 16:12:17.039384 +1102 opp-pending 647 481 2026-04-14 16:12:17.043259 2026-04-14 16:12:17.043259 +1103 opp-pending 675 481 2026-04-14 16:12:17.047359 2026-04-14 16:12:17.047359 +1104 opp-pending 680 481 2026-04-14 16:12:17.051374 2026-04-14 16:12:17.051374 +1105 opp-pending 710 481 2026-04-14 16:12:17.055311 2026-04-14 16:12:17.055311 +1106 opp-pending 748 481 2026-04-14 16:12:17.059145 2026-04-14 16:12:17.059145 +1107 opp-pending 766 481 2026-04-14 16:12:17.062963 2026-04-14 16:12:17.062963 +1108 opp-pending 786 481 2026-04-14 16:12:17.066938 2026-04-14 16:12:17.066938 +1109 opp-pending 347 483 2026-04-14 16:12:17.499691 2026-04-14 16:12:17.499691 +1110 opp-pending 416 483 2026-04-14 16:12:17.503836 2026-04-14 16:12:17.503836 +1111 opp-pending 418 483 2026-04-14 16:12:17.507913 2026-04-14 16:12:17.507913 +1112 opp-pending 406 484 2026-04-14 16:12:17.720813 2026-04-14 16:12:17.720813 +1113 opp-pending 452 484 2026-04-14 16:12:17.724846 2026-04-14 16:12:17.724846 +1114 opp-pending 374 489 2026-04-14 16:12:18.679574 2026-04-14 16:12:18.679574 +1115 opp-pending 401 489 2026-04-14 16:12:18.683637 2026-04-14 16:12:18.683637 +1116 opp-pending 406 489 2026-04-14 16:12:18.687997 2026-04-14 16:12:18.687997 +1117 opp-pending 424 490 2026-04-14 16:12:18.915317 2026-04-14 16:12:18.915317 +1118 opp-pending 430 492 2026-04-14 16:12:19.18858 2026-04-14 16:12:19.18858 +1119 opp-pending 428 494 2026-04-14 16:12:19.45496 2026-04-14 16:12:19.45496 +1120 opp-pending 416 497 2026-04-14 16:12:19.91497 2026-04-14 16:12:19.91497 +1121 opp-pending 418 497 2026-04-14 16:12:19.919047 2026-04-14 16:12:19.919047 +1122 opp-pending 523 497 2026-04-14 16:12:19.92308 2026-04-14 16:12:19.92308 +1123 opp-pending 694 497 2026-04-14 16:12:19.927191 2026-04-14 16:12:19.927191 +1124 opp-pending 407 498 2026-04-14 16:12:20.044833 2026-04-14 16:12:20.044833 +1125 opp-pending 417 498 2026-04-14 16:12:20.049461 2026-04-14 16:12:20.049461 +1126 opp-pending 420 498 2026-04-14 16:12:20.053773 2026-04-14 16:12:20.053773 +1127 opp-pending 423 498 2026-04-14 16:12:20.058288 2026-04-14 16:12:20.058288 +1128 opp-pending 427 498 2026-04-14 16:12:20.062262 2026-04-14 16:12:20.062262 +1129 opp-pending 431 498 2026-04-14 16:12:20.066351 2026-04-14 16:12:20.066351 +1130 opp-pending 439 498 2026-04-14 16:12:20.07314 2026-04-14 16:12:20.07314 +1131 opp-pending 444 498 2026-04-14 16:12:20.077384 2026-04-14 16:12:20.077384 +1132 opp-active 455 498 2026-04-14 16:12:20.081556 2026-04-14 16:12:20.081556 +1133 opp-pending 461 498 2026-04-14 16:12:20.085885 2026-04-14 16:12:20.085885 +1134 opp-pending 464 498 2026-04-14 16:12:20.090327 2026-04-14 16:12:20.090327 +1135 opp-pending 486 498 2026-04-14 16:12:20.094517 2026-04-14 16:12:20.094517 +1136 opp-pending 497 498 2026-04-14 16:12:20.098953 2026-04-14 16:12:20.098953 +1137 opp-active 587 498 2026-04-14 16:12:20.103083 2026-04-14 16:12:20.103083 +1138 opp-active 638 498 2026-04-14 16:12:20.107316 2026-04-14 16:12:20.107316 +1139 opp-active 672 498 2026-04-14 16:12:20.111562 2026-04-14 16:12:20.111562 +1140 opp-pending 420 499 2026-04-14 16:12:20.327142 2026-04-14 16:12:20.327142 +1141 opp-pending 423 499 2026-04-14 16:12:20.331255 2026-04-14 16:12:20.331255 +1142 opp-pending 427 499 2026-04-14 16:12:20.335335 2026-04-14 16:12:20.335335 +1143 opp-pending 539 499 2026-04-14 16:12:20.33928 2026-04-14 16:12:20.33928 +1144 opp-pending 501 502 2026-04-14 16:12:20.726981 2026-04-14 16:12:20.726981 +1145 opp-pending 14 503 2026-04-14 16:12:20.904136 2026-04-14 16:12:20.904136 +1146 opp-pending 239 503 2026-04-14 16:12:20.908246 2026-04-14 16:12:20.908246 +1147 opp-matched 423 503 2026-04-14 16:12:20.912206 2026-04-14 16:12:20.912206 +1148 opp-pending 307 504 2026-04-14 16:12:21.057988 2026-04-14 16:12:21.057988 +1149 opp-pending 416 504 2026-04-14 16:12:21.062172 2026-04-14 16:12:21.062172 +1150 opp-pending 475 504 2026-04-14 16:12:21.066285 2026-04-14 16:12:21.066285 +1151 opp-pending 51 505 2026-04-14 16:12:21.343928 2026-04-14 16:12:21.343928 +1152 opp-pending 373 505 2026-04-14 16:12:21.348326 2026-04-14 16:12:21.348326 +1153 opp-pending 431 505 2026-04-14 16:12:21.353418 2026-04-14 16:12:21.353418 +1154 opp-pending 427 506 2026-04-14 16:12:21.628703 2026-04-14 16:12:21.628703 +1155 opp-pending 437 506 2026-04-14 16:12:21.632934 2026-04-14 16:12:21.632934 +1156 opp-pending 570 507 2026-04-14 16:12:21.854494 2026-04-14 16:12:21.854494 +1157 opp-pending 623 507 2026-04-14 16:12:21.858578 2026-04-14 16:12:21.858578 +1158 opp-pending 328 508 2026-04-14 16:12:22.081567 2026-04-14 16:12:22.081567 +1159 opp-pending 447 509 2026-04-14 16:12:22.264597 2026-04-14 16:12:22.264597 +1160 opp-pending 224 511 2026-04-14 16:12:22.63698 2026-04-14 16:12:22.63698 +1161 opp-pending 222 512 2026-04-14 16:12:22.782015 2026-04-14 16:12:22.782015 +1162 opp-pending 589 512 2026-04-14 16:12:22.786131 2026-04-14 16:12:22.786131 +1163 opp-pending 318 513 2026-04-14 16:12:22.955415 2026-04-14 16:12:22.955415 +1164 opp-pending 307 514 2026-04-14 16:12:23.163938 2026-04-14 16:12:23.163938 +1165 opp-pending 442 514 2026-04-14 16:12:23.176533 2026-04-14 16:12:23.176533 +1166 opp-pending 452 514 2026-04-14 16:12:23.181055 2026-04-14 16:12:23.181055 +1167 opp-pending 453 514 2026-04-14 16:12:23.185933 2026-04-14 16:12:23.185933 +1168 opp-pending 438 518 2026-04-14 16:12:23.774264 2026-04-14 16:12:23.774264 +1169 opp-pending 486 518 2026-04-14 16:12:23.778687 2026-04-14 16:12:23.778687 +1170 opp-pending 488 518 2026-04-14 16:12:23.782938 2026-04-14 16:12:23.782938 +1171 opp-pending 531 518 2026-04-14 16:12:23.78708 2026-04-14 16:12:23.78708 +1172 opp-pending 654 518 2026-04-14 16:12:23.791083 2026-04-14 16:12:23.791083 +1173 opp-pending 710 518 2026-04-14 16:12:23.795218 2026-04-14 16:12:23.795218 +1174 opp-pending 444 522 2026-04-14 16:12:24.684461 2026-04-14 16:12:24.684461 +1175 opp-pending 494 522 2026-04-14 16:12:24.68863 2026-04-14 16:12:24.68863 +1176 opp-pending 531 522 2026-04-14 16:12:24.692588 2026-04-14 16:12:24.692588 +1177 opp-pending 437 524 2026-04-14 16:12:24.95287 2026-04-14 16:12:24.95287 +1178 opp-pending 452 529 2026-04-14 16:12:25.610476 2026-04-14 16:12:25.610476 +1179 opp-pending 681 530 2026-04-14 16:12:25.825738 2026-04-14 16:12:25.825738 +1180 opp-active 414 532 2026-04-14 16:12:26.198292 2026-04-14 16:12:26.198292 +1181 opp-pending 415 532 2026-04-14 16:12:26.202636 2026-04-14 16:12:26.202636 +1182 opp-active 452 533 2026-04-14 16:12:26.491478 2026-04-14 16:12:26.491478 +1183 opp-pending 453 533 2026-04-14 16:12:26.495239 2026-04-14 16:12:26.495239 +1184 opp-pending 577 533 2026-04-14 16:12:26.499257 2026-04-14 16:12:26.499257 +1185 opp-pending 593 533 2026-04-14 16:12:26.503106 2026-04-14 16:12:26.503106 +1186 opp-pending 469 534 2026-04-14 16:12:26.668638 2026-04-14 16:12:26.668638 +1187 opp-matched 406 535 2026-04-14 16:12:26.793147 2026-04-14 16:12:26.793147 +1188 opp-pending 453 535 2026-04-14 16:12:26.797283 2026-04-14 16:12:26.797283 +1189 opp-pending 482 538 2026-04-14 16:12:27.306175 2026-04-14 16:12:27.306175 +1190 opp-pending 486 538 2026-04-14 16:12:27.310055 2026-04-14 16:12:27.310055 +1191 opp-pending 488 538 2026-04-14 16:12:27.314424 2026-04-14 16:12:27.314424 +1192 opp-pending 494 538 2026-04-14 16:12:27.319661 2026-04-14 16:12:27.319661 +1193 opp-pending 510 538 2026-04-14 16:12:27.32389 2026-04-14 16:12:27.32389 +1194 opp-pending 531 538 2026-04-14 16:12:27.328011 2026-04-14 16:12:27.328011 +1195 opp-pending 553 538 2026-04-14 16:12:27.332123 2026-04-14 16:12:27.332123 +1196 opp-pending 653 538 2026-04-14 16:12:27.336129 2026-04-14 16:12:27.336129 +1197 opp-pending 698 538 2026-04-14 16:12:27.340128 2026-04-14 16:12:27.340128 +1198 opp-pending 707 538 2026-04-14 16:12:27.343895 2026-04-14 16:12:27.343895 +1199 opp-pending 482 539 2026-04-14 16:12:27.542906 2026-04-14 16:12:27.542906 +1200 opp-pending 486 539 2026-04-14 16:12:27.546992 2026-04-14 16:12:27.546992 +1201 opp-pending 482 540 2026-04-14 16:12:27.646103 2026-04-14 16:12:27.646103 +1202 opp-pending 486 540 2026-04-14 16:12:27.649996 2026-04-14 16:12:27.649996 +1203 opp-pending 488 540 2026-04-14 16:12:27.65455 2026-04-14 16:12:27.65455 +1204 opp-pending 491 540 2026-04-14 16:12:27.658556 2026-04-14 16:12:27.658556 +1205 opp-pending 503 540 2026-04-14 16:12:27.662589 2026-04-14 16:12:27.662589 +1206 opp-pending 525 540 2026-04-14 16:12:27.666752 2026-04-14 16:12:27.666752 +1207 opp-pending 527 540 2026-04-14 16:12:27.671027 2026-04-14 16:12:27.671027 +1208 opp-pending 541 540 2026-04-14 16:12:27.675331 2026-04-14 16:12:27.675331 +1209 opp-active 564 540 2026-04-14 16:12:27.680044 2026-04-14 16:12:27.680044 +1210 opp-pending 574 540 2026-04-14 16:12:27.684584 2026-04-14 16:12:27.684584 +1211 opp-pending 715 540 2026-04-14 16:12:27.689114 2026-04-14 16:12:27.689114 +1212 opp-pending 737 540 2026-04-14 16:12:27.693775 2026-04-14 16:12:27.693775 +1213 opp-pending 486 541 2026-04-14 16:12:27.91725 2026-04-14 16:12:27.91725 +1214 opp-pending 634 541 2026-04-14 16:12:27.922503 2026-04-14 16:12:27.922503 +1215 opp-pending 531 544 2026-04-14 16:12:28.408583 2026-04-14 16:12:28.408583 +1216 opp-pending 536 544 2026-04-14 16:12:28.413038 2026-04-14 16:12:28.413038 +1217 opp-pending 593 544 2026-04-14 16:12:28.419501 2026-04-14 16:12:28.419501 +1218 opp-pending 687 544 2026-04-14 16:12:28.423888 2026-04-14 16:12:28.423888 +1219 opp-pending 482 545 2026-04-14 16:12:28.683804 2026-04-14 16:12:28.683804 +1220 opp-pending 488 545 2026-04-14 16:12:28.687887 2026-04-14 16:12:28.687887 +1221 opp-pending 491 545 2026-04-14 16:12:28.692564 2026-04-14 16:12:28.692564 +1222 opp-pending 510 545 2026-04-14 16:12:28.69658 2026-04-14 16:12:28.69658 +1223 opp-pending 653 545 2026-04-14 16:12:28.700617 2026-04-14 16:12:28.700617 +1224 opp-pending 413 547 2026-04-14 16:12:28.969334 2026-04-14 16:12:28.969334 +1225 opp-pending 520 547 2026-04-14 16:12:28.973366 2026-04-14 16:12:28.973366 +1226 opp-pending 466 549 2026-04-14 16:12:29.458148 2026-04-14 16:12:29.458148 +1227 opp-pending 467 549 2026-04-14 16:12:29.462485 2026-04-14 16:12:29.462485 +1228 opp-pending 536 549 2026-04-14 16:12:29.466706 2026-04-14 16:12:29.466706 +1229 opp-pending 482 550 2026-04-14 16:12:29.633287 2026-04-14 16:12:29.633287 +1230 opp-pending 486 550 2026-04-14 16:12:29.637854 2026-04-14 16:12:29.637854 +1231 opp-pending 521 550 2026-04-14 16:12:29.642134 2026-04-14 16:12:29.642134 +1232 opp-pending 524 550 2026-04-14 16:12:29.646244 2026-04-14 16:12:29.646244 +1233 opp-pending 525 550 2026-04-14 16:12:29.650615 2026-04-14 16:12:29.650615 +1234 opp-pending 553 550 2026-04-14 16:12:29.654739 2026-04-14 16:12:29.654739 +1235 opp-pending 653 550 2026-04-14 16:12:29.658701 2026-04-14 16:12:29.658701 +1237 opp-pending 482 554 2026-04-14 16:12:30.552376 2026-04-14 16:12:30.552376 +1238 opp-pending 486 554 2026-04-14 16:12:30.556107 2026-04-14 16:12:30.556107 +1239 opp-pending 491 554 2026-04-14 16:12:30.560178 2026-04-14 16:12:30.560178 +1240 opp-pending 601 554 2026-04-14 16:12:30.564178 2026-04-14 16:12:30.564178 +1241 opp-pending 605 554 2026-04-14 16:12:30.568435 2026-04-14 16:12:30.568435 +1242 opp-pending 658 554 2026-04-14 16:12:30.572761 2026-04-14 16:12:30.572761 +1243 opp-pending 707 554 2026-04-14 16:12:30.578144 2026-04-14 16:12:30.578144 +1244 opp-pending 752 554 2026-04-14 16:12:30.582467 2026-04-14 16:12:30.582467 +1245 opp-pending 481 556 2026-04-14 16:12:30.909664 2026-04-14 16:12:30.909664 +1247 opp-pending 472 559 2026-04-14 16:12:31.464943 2026-04-14 16:12:31.464943 +1248 opp-pending 476 559 2026-04-14 16:12:31.469037 2026-04-14 16:12:31.469037 +1249 opp-pending 645 559 2026-04-14 16:12:31.473038 2026-04-14 16:12:31.473038 +1250 opp-pending 472 561 2026-04-14 16:12:31.720319 2026-04-14 16:12:31.720319 +1251 opp-pending 476 561 2026-04-14 16:12:31.724241 2026-04-14 16:12:31.724241 +1252 opp-pending 478 561 2026-04-14 16:12:31.728287 2026-04-14 16:12:31.728287 +1253 opp-pending 511 561 2026-04-14 16:12:31.732669 2026-04-14 16:12:31.732669 +1254 opp-pending 572 561 2026-04-14 16:12:31.736822 2026-04-14 16:12:31.736822 +1255 opp-pending 645 561 2026-04-14 16:12:31.740951 2026-04-14 16:12:31.740951 +1256 opp-pending 489 562 2026-04-14 16:12:32.109067 2026-04-14 16:12:32.109067 +1257 opp-pending 536 562 2026-04-14 16:12:32.113411 2026-04-14 16:12:32.113411 +1258 opp-pending 487 564 2026-04-14 16:12:32.390521 2026-04-14 16:12:32.390521 +1259 opp-pending 314 566 2026-04-14 16:12:32.704704 2026-04-14 16:12:32.704704 +1260 opp-pending 491 566 2026-04-14 16:12:32.708605 2026-04-14 16:12:32.708605 +1261 opp-pending 728 569 2026-04-14 16:12:33.282475 2026-04-14 16:12:33.282475 +1262 opp-pending 278 570 2026-04-14 16:12:33.449555 2026-04-14 16:12:33.449555 +1263 opp-pending 413 572 2026-04-14 16:12:33.920206 2026-04-14 16:12:33.920206 +1264 opp-pending 480 573 2026-04-14 16:12:34.121081 2026-04-14 16:12:34.121081 +1265 opp-pending 539 574 2026-04-14 16:12:34.387471 2026-04-14 16:12:34.387471 +1266 opp-pending 593 574 2026-04-14 16:12:34.392063 2026-04-14 16:12:34.392063 +1267 opp-pending 504 575 2026-04-14 16:12:34.725046 2026-04-14 16:12:34.725046 +1268 opp-pending 575 577 2026-04-14 16:12:35.216324 2026-04-14 16:12:35.216324 +1269 opp-pending 531 578 2026-04-14 16:12:35.376431 2026-04-14 16:12:35.376431 +1270 opp-pending 531 579 2026-04-14 16:12:35.545654 2026-04-14 16:12:35.545654 +1271 opp-pending 478 580 2026-04-14 16:12:35.720741 2026-04-14 16:12:35.720741 +1272 opp-pending 539 581 2026-04-14 16:12:35.952601 2026-04-14 16:12:35.952601 +1273 opp-pending 613 581 2026-04-14 16:12:35.956512 2026-04-14 16:12:35.956512 +1274 opp-pending 675 581 2026-04-14 16:12:35.960441 2026-04-14 16:12:35.960441 +1275 opp-pending 677 581 2026-04-14 16:12:35.964562 2026-04-14 16:12:35.964562 +1276 opp-pending 679 581 2026-04-14 16:12:35.968664 2026-04-14 16:12:35.968664 +1277 opp-pending 766 581 2026-04-14 16:12:35.972747 2026-04-14 16:12:35.972747 +1278 opp-pending 198 582 2026-04-14 16:12:36.17058 2026-04-14 16:12:36.17058 +1279 opp-pending 471 582 2026-04-14 16:12:36.175018 2026-04-14 16:12:36.175018 +1280 opp-pending 575 582 2026-04-14 16:12:36.179051 2026-04-14 16:12:36.179051 +1281 opp-pending 502 583 2026-04-14 16:12:36.447293 2026-04-14 16:12:36.447293 +1282 opp-pending 554 583 2026-04-14 16:12:36.451875 2026-04-14 16:12:36.451875 +1283 opp-pending 752 583 2026-04-14 16:12:36.45615 2026-04-14 16:12:36.45615 +1284 opp-pending 413 585 2026-04-14 16:12:36.796532 2026-04-14 16:12:36.796532 +1285 opp-pending 531 585 2026-04-14 16:12:36.801775 2026-04-14 16:12:36.801775 +1286 opp-pending 576 585 2026-04-14 16:12:36.806124 2026-04-14 16:12:36.806124 +1287 opp-pending 610 585 2026-04-14 16:12:36.810349 2026-04-14 16:12:36.810349 +1288 opp-pending 531 587 2026-04-14 16:12:37.204546 2026-04-14 16:12:37.204546 +1289 opp-pending 271 588 2026-04-14 16:12:37.416232 2026-04-14 16:12:37.416232 +1290 opp-pending 428 588 2026-04-14 16:12:37.421653 2026-04-14 16:12:37.421653 +1291 opp-pending 492 588 2026-04-14 16:12:37.426772 2026-04-14 16:12:37.426772 +1292 opp-pending 506 588 2026-04-14 16:12:37.431382 2026-04-14 16:12:37.431382 +1293 opp-pending 198 589 2026-04-14 16:12:37.602155 2026-04-14 16:12:37.602155 +1294 opp-pending 690 589 2026-04-14 16:12:37.607147 2026-04-14 16:12:37.607147 +1295 opp-pending 478 591 2026-04-14 16:12:37.925659 2026-04-14 16:12:37.925659 +1296 opp-pending 415 592 2026-04-14 16:12:38.185107 2026-04-14 16:12:38.185107 +1297 opp-pending 500 592 2026-04-14 16:12:38.189552 2026-04-14 16:12:38.189552 +1298 opp-pending 428 593 2026-04-14 16:12:38.361251 2026-04-14 16:12:38.361251 +1299 opp-pending 356 594 2026-04-14 16:12:38.509254 2026-04-14 16:12:38.509254 +1300 opp-pending 478 598 2026-04-14 16:12:39.191465 2026-04-14 16:12:39.191465 +1301 opp-active 222 599 2026-04-14 16:12:39.391364 2026-04-14 16:12:39.391364 +1302 opp-pending 624 599 2026-04-14 16:12:39.395621 2026-04-14 16:12:39.395621 +1303 opp-pending 631 599 2026-04-14 16:12:39.400146 2026-04-14 16:12:39.400146 +1304 opp-matched 11 600 2026-04-14 16:12:39.666588 2026-04-14 16:12:39.666588 +1305 opp-pending 531 601 2026-04-14 16:12:39.810957 2026-04-14 16:12:39.810957 +1306 opp-pending 575 601 2026-04-14 16:12:39.815234 2026-04-14 16:12:39.815234 +1307 opp-pending 230 603 2026-04-14 16:12:40.039589 2026-04-14 16:12:40.039589 +1308 opp-pending 471 603 2026-04-14 16:12:40.043428 2026-04-14 16:12:40.043428 +1309 opp-pending 222 606 2026-04-14 16:12:40.442764 2026-04-14 16:12:40.442764 +1310 opp-pending 539 606 2026-04-14 16:12:40.448159 2026-04-14 16:12:40.448159 +1311 opp-pending 414 608 2026-04-14 16:12:40.702071 2026-04-14 16:12:40.702071 +1312 opp-pending 541 608 2026-04-14 16:12:40.706265 2026-04-14 16:12:40.706265 +1313 opp-pending 551 608 2026-04-14 16:12:40.710313 2026-04-14 16:12:40.710313 +1314 opp-pending 601 608 2026-04-14 16:12:40.714416 2026-04-14 16:12:40.714416 +1315 opp-pending 612 608 2026-04-14 16:12:40.718457 2026-04-14 16:12:40.718457 +1316 opp-pending 640 608 2026-04-14 16:12:40.722319 2026-04-14 16:12:40.722319 +1317 opp-pending 642 608 2026-04-14 16:12:40.726454 2026-04-14 16:12:40.726454 +1318 opp-pending 539 609 2026-04-14 16:12:40.900222 2026-04-14 16:12:40.900222 +1319 opp-pending 588 609 2026-04-14 16:12:40.904471 2026-04-14 16:12:40.904471 +1320 opp-pending 606 609 2026-04-14 16:12:40.90883 2026-04-14 16:12:40.90883 +1321 opp-pending 525 611 2026-04-14 16:12:41.186252 2026-04-14 16:12:41.186252 +1322 opp-pending 527 611 2026-04-14 16:12:41.190642 2026-04-14 16:12:41.190642 +1323 opp-pending 606 611 2026-04-14 16:12:41.194753 2026-04-14 16:12:41.194753 +1324 opp-pending 632 611 2026-04-14 16:12:41.198711 2026-04-14 16:12:41.198711 +1325 opp-pending 642 611 2026-04-14 16:12:41.202644 2026-04-14 16:12:41.202644 +1326 opp-pending 647 611 2026-04-14 16:12:41.206739 2026-04-14 16:12:41.206739 +1327 opp-pending 786 611 2026-04-14 16:12:41.21087 2026-04-14 16:12:41.21087 +1328 opp-pending 524 612 2026-04-14 16:12:41.427484 2026-04-14 16:12:41.427484 +1329 opp-pending 525 613 2026-04-14 16:12:41.647212 2026-04-14 16:12:41.647212 +1330 opp-pending 527 613 2026-04-14 16:12:41.651705 2026-04-14 16:12:41.651705 +1331 opp-pending 524 614 2026-04-14 16:12:41.846447 2026-04-14 16:12:41.846447 +1332 opp-pending 541 614 2026-04-14 16:12:41.850988 2026-04-14 16:12:41.850988 +1333 opp-pending 544 614 2026-04-14 16:12:41.855273 2026-04-14 16:12:41.855273 +1334 opp-pending 588 614 2026-04-14 16:12:41.859382 2026-04-14 16:12:41.859382 +1335 opp-pending 644 614 2026-04-14 16:12:41.863666 2026-04-14 16:12:41.863666 +1336 opp-pending 648 614 2026-04-14 16:12:41.867869 2026-04-14 16:12:41.867869 +1337 opp-pending 676 614 2026-04-14 16:12:41.871939 2026-04-14 16:12:41.871939 +1338 opp-pending 717 614 2026-04-14 16:12:41.875941 2026-04-14 16:12:41.875941 +1339 opp-pending 755 614 2026-04-14 16:12:41.879939 2026-04-14 16:12:41.879939 +1340 opp-pending 551 615 2026-04-14 16:12:42.020544 2026-04-14 16:12:42.020544 +1341 opp-active 564 615 2026-04-14 16:12:42.02509 2026-04-14 16:12:42.02509 +1342 opp-pending 574 615 2026-04-14 16:12:42.02929 2026-04-14 16:12:42.02929 +1343 opp-pending 740 616 2026-04-14 16:12:42.165494 2026-04-14 16:12:42.165494 +1344 opp-pending 578 618 2026-04-14 16:12:42.544424 2026-04-14 16:12:42.544424 +1345 opp-pending 617 618 2026-04-14 16:12:42.548336 2026-04-14 16:12:42.548336 +1346 opp-pending 623 618 2026-04-14 16:12:42.552597 2026-04-14 16:12:42.552597 +1347 opp-pending 726 618 2026-04-14 16:12:42.556655 2026-04-14 16:12:42.556655 +1348 opp-pending 524 620 2026-04-14 16:12:42.826669 2026-04-14 16:12:42.826669 +1349 opp-pending 588 620 2026-04-14 16:12:42.832729 2026-04-14 16:12:42.832729 +1350 opp-pending 640 620 2026-04-14 16:12:42.837401 2026-04-14 16:12:42.837401 +1351 opp-pending 641 620 2026-04-14 16:12:42.842073 2026-04-14 16:12:42.842073 +1352 opp-pending 646 620 2026-04-14 16:12:42.84621 2026-04-14 16:12:42.84621 +1353 opp-pending 665 620 2026-04-14 16:12:42.850295 2026-04-14 16:12:42.850295 +1354 opp-pending 686 620 2026-04-14 16:12:42.854657 2026-04-14 16:12:42.854657 +1355 opp-pending 698 620 2026-04-14 16:12:42.858969 2026-04-14 16:12:42.858969 +1356 opp-pending 715 620 2026-04-14 16:12:42.863105 2026-04-14 16:12:42.863105 +1357 opp-pending 717 620 2026-04-14 16:12:42.867384 2026-04-14 16:12:42.867384 +1358 opp-pending 737 620 2026-04-14 16:12:42.872522 2026-04-14 16:12:42.872522 +1359 opp-pending 706 624 2026-04-14 16:12:43.444527 2026-04-14 16:12:43.444527 +1360 opp-pending 712 624 2026-04-14 16:12:43.452771 2026-04-14 16:12:43.452771 +1246 opp-active 478 557 2026-04-14 16:12:31.061775 2026-04-22 08:32:11.261356 +1361 opp-pending 729 624 2026-04-14 16:12:43.456979 2026-04-14 16:12:43.456979 +1362 opp-pending 730 624 2026-04-14 16:12:43.461166 2026-04-14 16:12:43.461166 +1363 opp-pending 531 625 2026-04-14 16:12:43.693834 2026-04-14 16:12:43.693834 +1364 opp-pending 222 626 2026-04-14 16:12:43.820317 2026-04-14 16:12:43.820317 +1365 opp-pending 594 626 2026-04-14 16:12:43.824376 2026-04-14 16:12:43.824376 +1366 opp-pending 531 627 2026-04-14 16:12:44.026092 2026-04-14 16:12:44.026092 +1367 opp-pending 573 627 2026-04-14 16:12:44.030476 2026-04-14 16:12:44.030476 +1368 opp-pending 277 631 2026-04-14 16:12:44.900497 2026-04-14 16:12:44.900497 +1369 opp-pending 624 631 2026-04-14 16:12:44.904253 2026-04-14 16:12:44.904253 +1370 opp-pending 219 633 2026-04-14 16:12:45.232817 2026-04-14 16:12:45.232817 +1371 opp-pending 500 633 2026-04-14 16:12:45.23769 2026-04-14 16:12:45.23769 +1372 opp-pending 360 635 2026-04-14 16:12:45.466247 2026-04-14 16:12:45.466247 +1373 opp-pending 610 638 2026-04-14 16:12:45.849017 2026-04-14 16:12:45.849017 +1374 opp-pending 538 640 2026-04-14 16:12:46.069338 2026-04-14 16:12:46.069338 +1375 opp-pending 307 642 2026-04-14 16:12:46.486904 2026-04-14 16:12:46.486904 +1376 opp-pending 558 642 2026-04-14 16:12:46.490681 2026-04-14 16:12:46.490681 +1377 opp-pending 213 643 2026-04-14 16:12:46.774419 2026-04-14 16:12:46.774419 +1378 opp-pending 515 645 2026-04-14 16:12:47.043228 2026-04-14 16:12:47.043228 +1379 opp-active 574 645 2026-04-14 16:12:47.047343 2026-04-14 16:12:47.047343 +1380 opp-active 580 645 2026-04-14 16:12:47.051439 2026-04-14 16:12:47.051439 +1381 opp-pending 586 645 2026-04-14 16:12:47.055641 2026-04-14 16:12:47.055641 +1382 opp-pending 592 645 2026-04-14 16:12:47.059865 2026-04-14 16:12:47.059865 +1383 opp-pending 597 645 2026-04-14 16:12:47.063904 2026-04-14 16:12:47.063904 +1384 opp-pending 598 645 2026-04-14 16:12:47.068034 2026-04-14 16:12:47.068034 +1385 opp-pending 604 645 2026-04-14 16:12:47.072242 2026-04-14 16:12:47.072242 +1386 opp-pending 607 645 2026-04-14 16:12:47.076607 2026-04-14 16:12:47.076607 +1387 opp-pending 608 645 2026-04-14 16:12:47.080944 2026-04-14 16:12:47.080944 +1388 opp-active 611 645 2026-04-14 16:12:47.085119 2026-04-14 16:12:47.085119 +1389 opp-pending 614 645 2026-04-14 16:12:47.089155 2026-04-14 16:12:47.089155 +1390 opp-pending 632 645 2026-04-14 16:12:47.093078 2026-04-14 16:12:47.093078 +1392 opp-pending 640 645 2026-04-14 16:12:47.100989 2026-04-14 16:12:47.100989 +1393 opp-pending 641 645 2026-04-14 16:12:47.104935 2026-04-14 16:12:47.104935 +1394 opp-pending 642 645 2026-04-14 16:12:47.108946 2026-04-14 16:12:47.108946 +1395 opp-pending 643 645 2026-04-14 16:12:47.112844 2026-04-14 16:12:47.112844 +1396 opp-pending 655 645 2026-04-14 16:12:47.116892 2026-04-14 16:12:47.116892 +1397 opp-pending 754 645 2026-04-14 16:12:47.120872 2026-04-14 16:12:47.120872 +1398 opp-pending 755 645 2026-04-14 16:12:47.124919 2026-04-14 16:12:47.124919 +1400 opp-pending 765 645 2026-04-14 16:12:47.132972 2026-04-14 16:12:47.132972 +1401 opp-pending 791 645 2026-04-14 16:12:47.136854 2026-04-14 16:12:47.136854 +1402 opp-pending 792 645 2026-04-14 16:12:47.140888 2026-04-14 16:12:47.140888 +1403 opp-pending 519 649 2026-04-14 16:12:47.815276 2026-04-14 16:12:47.815276 +1404 opp-active 618 649 2026-04-14 16:12:47.819561 2026-04-14 16:12:47.819561 +1405 opp-pending 619 649 2026-04-14 16:12:47.823962 2026-04-14 16:12:47.823962 +1406 opp-pending 3 650 2026-04-14 16:12:47.970516 2026-04-14 16:12:47.970516 +1407 opp-pending 576 653 2026-04-14 16:12:48.330226 2026-04-14 16:12:48.330226 +1408 opp-pending 700 654 2026-04-14 16:12:48.4975 2026-04-14 16:12:48.4975 +1409 opp-pending 579 655 2026-04-14 16:12:48.668228 2026-04-14 16:12:48.668228 +1410 opp-pending 256 658 2026-04-14 16:12:49.22545 2026-04-14 16:12:49.22545 +1411 opp-pending 538 659 2026-04-14 16:12:49.458906 2026-04-14 16:12:49.458906 +1412 opp-pending 557 660 2026-04-14 16:12:49.620593 2026-04-14 16:12:49.620593 +1413 opp-pending 597 660 2026-04-14 16:12:49.624978 2026-04-14 16:12:49.624978 +1414 opp-pending 632 660 2026-04-14 16:12:49.629026 2026-04-14 16:12:49.629026 +1415 opp-pending 307 661 2026-04-14 16:12:49.728345 2026-04-14 16:12:49.728345 +1416 opp-pending 628 662 2026-04-14 16:12:49.85254 2026-04-14 16:12:49.85254 +1417 opp-pending 667 662 2026-04-14 16:12:49.856434 2026-04-14 16:12:49.856434 +1418 opp-pending 670 662 2026-04-14 16:12:49.860432 2026-04-14 16:12:49.860432 +1419 opp-pending 673 662 2026-04-14 16:12:49.864198 2026-04-14 16:12:49.864198 +1420 opp-pending 688 662 2026-04-14 16:12:49.867986 2026-04-14 16:12:49.867986 +1421 opp-pending 699 662 2026-04-14 16:12:49.871859 2026-04-14 16:12:49.871859 +1422 opp-pending 732 662 2026-04-14 16:12:49.875786 2026-04-14 16:12:49.875786 +1423 opp-pending 767 662 2026-04-14 16:12:49.87977 2026-04-14 16:12:49.87977 +1424 opp-pending 175 664 2026-04-14 16:12:50.477926 2026-04-14 16:12:50.477926 +1425 opp-pending 498 665 2026-04-14 16:12:50.672261 2026-04-14 16:12:50.672261 +1426 opp-pending 596 667 2026-04-14 16:12:51.082445 2026-04-14 16:12:51.082445 +1427 opp-pending 631 669 2026-04-14 16:12:51.485465 2026-04-14 16:12:51.485465 +1428 opp-pending 271 670 2026-04-14 16:12:51.674139 2026-04-14 16:12:51.674139 +1429 opp-pending 687 670 2026-04-14 16:12:51.678209 2026-04-14 16:12:51.678209 +1430 opp-pending 729 673 2026-04-14 16:12:52.320506 2026-04-14 16:12:52.320506 +1431 opp-pending 577 674 2026-04-14 16:12:52.416142 2026-04-14 16:12:52.416142 +1432 opp-pending 668 675 2026-04-14 16:12:52.618924 2026-04-14 16:12:52.618924 +1433 opp-pending 678 675 2026-04-14 16:12:52.622911 2026-04-14 16:12:52.622911 +1434 opp-pending 749 675 2026-04-14 16:12:52.627599 2026-04-14 16:12:52.627599 +1435 opp-pending 517 676 2026-04-14 16:12:52.858394 2026-04-14 16:12:52.858394 +1436 opp-pending 516 677 2026-04-14 16:12:52.951199 2026-04-14 16:12:52.951199 +1437 opp-pending 619 679 2026-04-14 16:12:53.315708 2026-04-14 16:12:53.315708 +1438 opp-pending 624 679 2026-04-14 16:12:53.320084 2026-04-14 16:12:53.320084 +1439 opp-pending 490 681 2026-04-14 16:12:53.786542 2026-04-14 16:12:53.786542 +1440 opp-pending 727 683 2026-04-14 16:12:54.104569 2026-04-14 16:12:54.104569 +1441 opp-pending 469 684 2026-04-14 16:12:54.393072 2026-04-14 16:12:54.393072 +1443 opp-pending 621 685 2026-04-14 16:12:54.59603 2026-04-14 16:12:54.59603 +1444 opp-pending 500 687 2026-04-14 16:12:54.884212 2026-04-14 16:12:54.884212 +1445 opp-pending 543 687 2026-04-14 16:12:54.888469 2026-04-14 16:12:54.888469 +1446 opp-pending 14 691 2026-04-14 16:12:55.644394 2026-04-14 16:12:55.644394 +1447 opp-pending 625 691 2026-04-14 16:12:55.648436 2026-04-14 16:12:55.648436 +1448 opp-pending 630 691 2026-04-14 16:12:55.652452 2026-04-14 16:12:55.652452 +1449 opp-pending 639 692 2026-04-14 16:12:55.818162 2026-04-14 16:12:55.818162 +1450 opp-pending 219 693 2026-04-14 16:12:56.076818 2026-04-14 16:12:56.076818 +1451 opp-pending 362 696 2026-04-14 16:12:56.34038 2026-04-14 16:12:56.34038 +1452 opp-pending 594 696 2026-04-14 16:12:56.344341 2026-04-14 16:12:56.344341 +1453 opp-pending 577 699 2026-04-14 16:12:57.115082 2026-04-14 16:12:57.115082 +1454 opp-pending 639 699 2026-04-14 16:12:57.119014 2026-04-14 16:12:57.119014 +1455 opp-pending 14 700 2026-04-14 16:12:57.410464 2026-04-14 16:12:57.410464 +1456 opp-pending 656 700 2026-04-14 16:12:57.415684 2026-04-14 16:12:57.415684 +1457 opp-matched 522 702 2026-04-14 16:12:57.807296 2026-04-14 16:12:57.807296 +1458 opp-pending 594 703 2026-04-14 16:12:57.960418 2026-04-14 16:12:57.960418 +1459 opp-pending 658 705 2026-04-14 16:12:58.458902 2026-04-14 16:12:58.458902 +1460 opp-pending 680 705 2026-04-14 16:12:58.464 2026-04-14 16:12:58.464 +1461 opp-pending 739 705 2026-04-14 16:12:58.468276 2026-04-14 16:12:58.468276 +1462 opp-pending 758 705 2026-04-14 16:12:58.472351 2026-04-14 16:12:58.472351 +1464 opp-pending 634 707 2026-04-14 16:12:58.828171 2026-04-14 16:12:58.828171 +1465 opp-pending 647 707 2026-04-14 16:12:58.832119 2026-04-14 16:12:58.832119 +1466 opp-pending 653 707 2026-04-14 16:12:58.836188 2026-04-14 16:12:58.836188 +1467 opp-pending 677 707 2026-04-14 16:12:58.840185 2026-04-14 16:12:58.840185 +1468 opp-pending 680 707 2026-04-14 16:12:58.844247 2026-04-14 16:12:58.844247 +1469 opp-pending 771 707 2026-04-14 16:12:58.848254 2026-04-14 16:12:58.848254 +1470 opp-pending 589 711 2026-04-14 16:12:59.510596 2026-04-14 16:12:59.510596 +1471 opp-pending 577 713 2026-04-14 16:12:59.81337 2026-04-14 16:12:59.81337 +1472 opp-pending 659 715 2026-04-14 16:13:00.343407 2026-04-14 16:13:00.343407 +1473 opp-pending 675 715 2026-04-14 16:13:00.348229 2026-04-14 16:13:00.348229 +1474 opp-pending 715 715 2026-04-14 16:13:00.352331 2026-04-14 16:13:00.352331 +1475 opp-pending 739 715 2026-04-14 16:13:00.356121 2026-04-14 16:13:00.356121 +1476 opp-pending 770 715 2026-04-14 16:13:00.360004 2026-04-14 16:13:00.360004 +1477 opp-pending 528 716 2026-04-14 16:13:00.675363 2026-04-14 16:13:00.675363 +1479 opp-pending 102 719 2026-04-14 16:13:01.168651 2026-04-14 16:13:01.168651 +1480 opp-pending 222 719 2026-04-14 16:13:01.172772 2026-04-14 16:13:01.172772 +1481 opp-pending 688 719 2026-04-14 16:13:01.176758 2026-04-14 16:13:01.176758 +1482 opp-pending 708 719 2026-04-14 16:13:01.180851 2026-04-14 16:13:01.180851 +1483 opp-pending 714 719 2026-04-14 16:13:01.185094 2026-04-14 16:13:01.185094 +1484 opp-pending 791 719 2026-04-14 16:13:01.189341 2026-04-14 16:13:01.189341 +1485 opp-pending 557 721 2026-04-14 16:13:02.018426 2026-04-14 16:13:02.018426 +1486 opp-pending 559 721 2026-04-14 16:13:02.033624 2026-04-14 16:13:02.033624 +1487 opp-pending 560 721 2026-04-14 16:13:02.039986 2026-04-14 16:13:02.039986 +1488 opp-pending 614 721 2026-04-14 16:13:02.046765 2026-04-14 16:13:02.046765 +1489 opp-pending 666 721 2026-04-14 16:13:02.057959 2026-04-14 16:13:02.057959 +1490 opp-pending 737 721 2026-04-14 16:13:02.066863 2026-04-14 16:13:02.066863 +1491 opp-pending 739 721 2026-04-14 16:13:02.079823 2026-04-14 16:13:02.079823 +1492 opp-pending 766 721 2026-04-14 16:13:02.092283 2026-04-14 16:13:02.092283 +1493 opp-pending 651 722 2026-04-14 16:13:02.296266 2026-04-14 16:13:02.296266 +1494 opp-pending 654 723 2026-04-14 16:13:02.324886 2026-04-14 16:13:02.324886 +1495 opp-pending 516 724 2026-04-14 16:13:02.505256 2026-04-14 16:13:02.505256 +1496 opp-pending 691 724 2026-04-14 16:13:02.509961 2026-04-14 16:13:02.509961 +1478 opp-matched 652 717 2026-04-14 16:13:00.864121 2026-04-16 07:48:06.151924 +1463 opp-past 792 705 2026-04-14 16:12:58.476373 2026-04-23 14:11:15.748521 +1442 opp-active 618 685 2026-04-14 16:12:54.592196 2026-04-23 14:41:32.864645 +1497 opp-matched 560 725 2026-04-14 16:13:02.677557 2026-04-14 16:13:02.677557 +1498 opp-pending 698 726 2026-04-14 16:13:03.062084 2026-04-14 16:13:03.062084 +1499 opp-pending 732 726 2026-04-14 16:13:03.068457 2026-04-14 16:13:03.068457 +1500 opp-pending 767 726 2026-04-14 16:13:03.076026 2026-04-14 16:13:03.076026 +1501 opp-pending 594 727 2026-04-14 16:13:03.220957 2026-04-14 16:13:03.220957 +1502 opp-pending 709 727 2026-04-14 16:13:03.225917 2026-04-14 16:13:03.225917 +1503 opp-pending 668 728 2026-04-14 16:13:03.396925 2026-04-14 16:13:03.396925 +1504 opp-pending 728 728 2026-04-14 16:13:03.401601 2026-04-14 16:13:03.401601 +1505 opp-pending 219 729 2026-04-14 16:13:03.572168 2026-04-14 16:13:03.572168 +1506 opp-pending 319 729 2026-04-14 16:13:03.577012 2026-04-14 16:13:03.577012 +1507 opp-pending 364 729 2026-04-14 16:13:03.581508 2026-04-14 16:13:03.581508 +1508 opp-pending 621 730 2026-04-14 16:13:03.814431 2026-04-14 16:13:03.814431 +1509 opp-pending 364 731 2026-04-14 16:13:04.044236 2026-04-14 16:13:04.044236 +1510 opp-pending 567 734 2026-04-14 16:13:04.484795 2026-04-14 16:13:04.484795 +1511 opp-matched 651 734 2026-04-14 16:13:04.488881 2026-04-14 16:13:04.488881 +1512 opp-pending 639 735 2026-04-14 16:13:04.647424 2026-04-14 16:13:04.647424 +1513 opp-pending 730 735 2026-04-14 16:13:04.651518 2026-04-14 16:13:04.651518 +1514 opp-pending 222 737 2026-04-14 16:13:05.067473 2026-04-14 16:13:05.067473 +1515 opp-pending 589 737 2026-04-14 16:13:05.073641 2026-04-14 16:13:05.073641 +1516 opp-pending 610 737 2026-04-14 16:13:05.077766 2026-04-14 16:13:05.077766 +1517 opp-pending 560 738 2026-04-14 16:13:05.231817 2026-04-14 16:13:05.231817 +1518 opp-pending 668 738 2026-04-14 16:13:05.235838 2026-04-14 16:13:05.235838 +1521 opp-pending 104 740 2026-04-14 16:13:05.474191 2026-04-14 16:13:05.474191 +1522 opp-pending 425 740 2026-04-14 16:13:05.478222 2026-04-14 16:13:05.478222 +1523 opp-pending 567 740 2026-04-14 16:13:05.482169 2026-04-14 16:13:05.482169 +1524 opp-pending 651 740 2026-04-14 16:13:05.486241 2026-04-14 16:13:05.486241 +1525 opp-pending 705 740 2026-04-14 16:13:05.490306 2026-04-14 16:13:05.490306 +1526 opp-pending 724 740 2026-04-14 16:13:05.494284 2026-04-14 16:13:05.494284 +1528 opp-pending 505 743 2026-04-14 16:13:06.016553 2026-04-14 16:13:06.016553 +1529 opp-pending 538 743 2026-04-14 16:13:06.020636 2026-04-14 16:13:06.020636 +1530 opp-pending 602 743 2026-04-14 16:13:06.024772 2026-04-14 16:13:06.024772 +1531 opp-pending 609 743 2026-04-14 16:13:06.028922 2026-04-14 16:13:06.028922 +1532 opp-pending 610 743 2026-04-14 16:13:06.032832 2026-04-14 16:13:06.032832 +1533 opp-pending 723 743 2026-04-14 16:13:06.036795 2026-04-14 16:13:06.036795 +1534 opp-pending 724 743 2026-04-14 16:13:06.040978 2026-04-14 16:13:06.040978 +1535 opp-pending 731 743 2026-04-14 16:13:06.044866 2026-04-14 16:13:06.044866 +1536 opp-pending 749 743 2026-04-14 16:13:06.048862 2026-04-14 16:13:06.048862 +1537 opp-pending 693 744 2026-04-14 16:13:06.172023 2026-04-14 16:13:06.172023 +1538 opp-pending 217 746 2026-04-14 16:13:06.451385 2026-04-14 16:13:06.451385 +1539 opp-pending 478 746 2026-04-14 16:13:06.456012 2026-04-14 16:13:06.456012 +1540 opp-pending 572 746 2026-04-14 16:13:06.461097 2026-04-14 16:13:06.461097 +1541 opp-pending 693 746 2026-04-14 16:13:06.472504 2026-04-14 16:13:06.472504 +1542 opp-pending 716 746 2026-04-14 16:13:06.477047 2026-04-14 16:13:06.477047 +1543 opp-pending 213 748 2026-04-14 16:13:06.837893 2026-04-14 16:13:06.837893 +1544 opp-pending 616 748 2026-04-14 16:13:06.842002 2026-04-14 16:13:06.842002 +1545 opp-pending 731 748 2026-04-14 16:13:06.846223 2026-04-14 16:13:06.846223 +1546 opp-pending 691 749 2026-04-14 16:13:06.942457 2026-04-14 16:13:06.942457 +1547 opp-pending 14 750 2026-04-14 16:13:07.133029 2026-04-14 16:13:07.133029 +1548 opp-pending 585 750 2026-04-14 16:13:07.137775 2026-04-14 16:13:07.137775 +1549 opp-pending 682 750 2026-04-14 16:13:07.142453 2026-04-14 16:13:07.142453 +1550 opp-pending 362 751 2026-04-14 16:13:07.29604 2026-04-14 16:13:07.29604 +1552 opp-pending 749 752 2026-04-14 16:13:07.410746 2026-04-14 16:13:07.410746 +1553 opp-pending 14 753 2026-04-14 16:13:07.557833 2026-04-14 16:13:07.557833 +1554 opp-pending 522 753 2026-04-14 16:13:07.562442 2026-04-14 16:13:07.562442 +1555 opp-pending 585 753 2026-04-14 16:13:07.566547 2026-04-14 16:13:07.566547 +1556 opp-pending 682 753 2026-04-14 16:13:07.570686 2026-04-14 16:13:07.570686 +1557 opp-pending 690 753 2026-04-14 16:13:07.574947 2026-04-14 16:13:07.574947 +1558 opp-pending 700 754 2026-04-14 16:13:07.85822 2026-04-14 16:13:07.85822 +1559 opp-pending 705 754 2026-04-14 16:13:07.863121 2026-04-14 16:13:07.863121 +1560 opp-pending 759 754 2026-04-14 16:13:07.867731 2026-04-14 16:13:07.867731 +1561 opp-pending 20 755 2026-04-14 16:13:08.08374 2026-04-14 16:13:08.08374 +1562 opp-pending 693 755 2026-04-14 16:13:08.093201 2026-04-14 16:13:08.093201 +1563 opp-pending 730 755 2026-04-14 16:13:08.098253 2026-04-14 16:13:08.098253 +1565 opp-pending 760 756 2026-04-14 16:13:08.328193 2026-04-14 16:13:08.328193 +1566 opp-pending 774 756 2026-04-14 16:13:08.332683 2026-04-14 16:13:08.332683 +1567 opp-pending 668 757 2026-04-14 16:13:08.733371 2026-04-14 16:13:08.733371 +1568 opp-pending 213 758 2026-04-14 16:13:08.869509 2026-04-14 16:13:08.869509 +1569 opp-pending 318 758 2026-04-14 16:13:08.87444 2026-04-14 16:13:08.87444 +1570 opp-pending 478 759 2026-04-14 16:13:09.091845 2026-04-14 16:13:09.091845 +1571 opp-pending 557 759 2026-04-14 16:13:09.098874 2026-04-14 16:13:09.098874 +1572 opp-pending 774 759 2026-04-14 16:13:09.104976 2026-04-14 16:13:09.104976 +1574 opp-pending 557 761 2026-04-14 16:13:09.475854 2026-04-14 16:13:09.475854 +1575 opp-pending 774 761 2026-04-14 16:13:09.480535 2026-04-14 16:13:09.480535 +1576 opp-pending 775 761 2026-04-14 16:13:09.485798 2026-04-14 16:13:09.485798 +1577 opp-pending 104 763 2026-04-14 16:13:09.820359 2026-04-14 16:13:09.820359 +1578 opp-pending 105 763 2026-04-14 16:13:09.824503 2026-04-14 16:13:09.824503 +1579 opp-pending 106 763 2026-04-14 16:13:09.828519 2026-04-14 16:13:09.828519 +1580 opp-pending 584 763 2026-04-14 16:13:09.832556 2026-04-14 16:13:09.832556 +1581 opp-pending 478 764 2026-04-14 16:13:09.920435 2026-04-14 16:13:09.920435 +1582 opp-pending 729 765 2026-04-14 16:13:10.100243 2026-04-14 16:13:10.100243 +1583 opp-pending 14 766 2026-04-14 16:13:10.246987 2026-04-14 16:13:10.246987 +1584 opp-pending 585 766 2026-04-14 16:13:10.251059 2026-04-14 16:13:10.251059 +1585 opp-pending 682 766 2026-04-14 16:13:10.255089 2026-04-14 16:13:10.255089 +1587 opp-pending 499 769 2026-04-14 16:13:10.715803 2026-04-14 16:13:10.715803 +1588 opp-pending 595 769 2026-04-14 16:13:10.72024 2026-04-14 16:13:10.72024 +1589 opp-pending 668 769 2026-04-14 16:13:10.725005 2026-04-14 16:13:10.725005 +1590 opp-pending 430 770 2026-04-14 16:13:10.812759 2026-04-14 16:13:10.812759 +1591 opp-pending 572 770 2026-04-14 16:13:10.817205 2026-04-14 16:13:10.817205 +1592 opp-pending 709 770 2026-04-14 16:13:10.821488 2026-04-14 16:13:10.821488 +1594 opp-pending 775 776 2026-04-14 16:13:11.853253 2026-04-14 16:13:11.853253 +1595 opp-pending 622 777 2026-04-14 16:13:11.953931 2026-04-14 16:13:11.953931 +1596 opp-pending 650 777 2026-04-14 16:13:11.958313 2026-04-14 16:13:11.958313 +1597 opp-pending 217 778 2026-04-14 16:13:12.184054 2026-04-14 16:13:12.184054 +1598 opp-pending 362 778 2026-04-14 16:13:12.188307 2026-04-14 16:13:12.188307 +1599 opp-pending 650 778 2026-04-14 16:13:12.192436 2026-04-14 16:13:12.192436 +1600 opp-pending 706 778 2026-04-14 16:13:12.196597 2026-04-14 16:13:12.196597 +1601 opp-pending 723 778 2026-04-14 16:13:12.200939 2026-04-14 16:13:12.200939 +1602 opp-pending 362 780 2026-04-14 16:13:12.654647 2026-04-14 16:13:12.654647 +1603 opp-pending 622 780 2026-04-14 16:13:12.658951 2026-04-14 16:13:12.658951 +1604 opp-pending 746 783 2026-04-15 10:39:44.352472 2026-04-15 10:39:44.352472 +1605 opp-matched 746 783 2026-04-15 10:40:02.755869 2026-04-15 10:40:22.598563 +1631 opp-matched 745 669 2026-04-21 07:59:21.924751 2026-04-23 14:41:55.808971 +1391 opp-active 636 645 2026-04-14 16:12:47.097021 2026-04-15 12:42:13.310504 +1608 opp-matched 652 782 2026-04-16 07:47:05.716662 2026-04-16 07:47:20.956956 +1609 opp-pending 777 792 2026-04-16 07:50:17.673045 2026-04-16 07:50:17.673045 +1611 opp-pending 602 790 2026-04-16 09:20:46.115585 2026-04-16 09:20:46.115585 +1614 opp-pending 222 786 2026-04-16 09:34:52.566057 2026-04-16 09:34:52.566057 +1527 opp-active 602 742 2026-04-14 16:13:05.841964 2026-04-16 09:21:07.306552 +1612 opp-pending 322 790 2026-04-16 09:25:15.051965 2026-04-16 09:25:15.051965 +1564 opp-matched 705 756 2026-04-14 16:13:08.323427 2026-04-16 09:41:21.096874 +1615 opp-matched 705 781 2026-04-16 09:42:19.332243 2026-04-16 11:44:44.672821 +1617 opp-pending 793 658 2026-04-16 14:56:24.438355 2026-04-16 14:56:24.438355 +1618 opp-pending 793 432 2026-04-16 14:58:00.427137 2026-04-16 14:58:00.427137 +1621 opp-pending 807 504 2026-04-17 12:59:39.422879 2026-04-17 12:59:39.422879 +1620 opp-active 787 792 2026-04-17 10:12:54.564613 2026-04-17 10:13:08.183785 +1622 opp-matched 800 322 2026-04-17 13:30:27.769497 2026-04-17 13:30:37.958723 +1624 opp-matched 809 751 2026-04-20 07:57:45.349613 2026-04-20 07:57:51.669605 +1610 opp-matched 713 790 2026-04-16 09:19:58.224858 2026-04-20 10:52:37.901386 +1626 opp-matched 693 789 2026-04-20 11:06:06.820866 2026-04-20 14:30:46.30481 +1628 opp-matched 799 156 2026-04-20 14:32:42.933391 2026-04-20 14:32:49.198387 +1629 opp-matched 696 789 2026-04-20 14:35:18.188443 2026-04-20 14:35:53.829588 +1630 opp-pending 609 669 2026-04-21 07:58:18.520523 2026-04-21 07:58:18.520523 +1573 opp-matched 105 760 2026-04-14 16:13:09.26279 2026-04-21 08:45:35.101277 +1632 opp-pending 537 766 2026-04-21 09:07:05.580743 2026-04-21 09:07:05.580743 +1520 opp-past 762 738 2026-04-14 16:13:05.243644 2026-04-21 09:24:26.163093 +1519 opp-past 761 738 2026-04-14 16:13:05.239785 2026-04-21 09:24:46.631935 +1399 opp-past 757 645 2026-04-14 16:12:47.128924 2026-04-21 09:27:25.9715 +1593 opp-matched 711 776 2026-04-14 16:13:11.848896 2026-04-21 11:02:22.21213 +1616 opp-matched 793 630 2026-04-16 14:39:33.54794 2026-04-23 10:16:39.246267 +1551 opp-active 616 752 2026-04-14 16:13:07.406253 2026-04-23 09:37:26.721352 +1613 opp-matched 594 786 2026-04-16 09:33:16.607314 2026-04-23 14:01:05.132025 +1586 opp-matched 538 767 2026-04-14 16:13:10.461954 2026-04-23 14:57:27.263252 +1633 opp-matched 711 751 2026-04-21 11:02:08.994717 2026-04-21 11:02:13.297651 +1635 opp-pending 478 794 2026-04-22 08:31:43.311773 2026-04-22 08:31:43.311773 +1236 opp-active 478 553 2026-04-14 16:12:30.305813 2026-04-22 08:32:01.580645 +1636 opp-matched 814 721 2026-04-22 13:24:37.783208 2026-04-22 13:24:46.483457 +1637 opp-pending 804 761 2026-04-22 14:00:50.848853 2026-04-22 14:00:50.848853 +1639 opp-pending 810 32 2026-04-22 14:09:07.602826 2026-04-22 14:09:07.602826 +1640 opp-pending 794 126 2026-04-22 14:24:19.708026 2026-04-22 14:24:19.708026 +1641 opp-pending 813 583 2026-04-22 14:42:09.027347 2026-04-22 14:42:09.027347 +1643 opp-pending 443 786 2026-04-23 08:05:17.443924 2026-04-23 08:05:17.443924 +1644 opp-pending 572 786 2026-04-23 08:22:35.604495 2026-04-23 08:22:35.604495 +1645 opp-pending 693 729 2026-04-23 09:13:32.521761 2026-04-23 09:13:32.521761 +1647 opp-pending 716 768 2026-04-23 09:31:17.116316 2026-04-23 09:31:17.116316 +960 opp-matched 319 401 2026-04-14 16:12:02.900255 2026-04-23 09:46:36.73394 +1648 opp-pending 319 796 2026-04-23 09:46:39.119451 2026-04-23 09:46:39.119451 +1649 opp-pending 691 796 2026-04-23 09:53:12.004103 2026-04-23 09:53:12.004103 +1634 opp-matched 802 322 2026-04-21 12:37:05.734923 2026-04-23 13:00:35.124581 +691 opp-matched 594 280 2026-04-14 16:11:45.106298 2026-04-23 14:14:28.294593 +1651 opp-pending 788 786 2026-04-23 15:10:04.932209 2026-04-23 15:10:04.932209 +1652 opp-pending 788 766 2026-04-23 15:10:22.634848 2026-04-23 15:10:22.634848 +1653 opp-pending 788 785 2026-04-23 15:10:42.710047 2026-04-23 15:10:42.710047 +1654 opp-pending 788 762 2026-04-23 15:11:02.976769 2026-04-23 15:11:02.976769 +1655 opp-pending 788 783 2026-04-23 15:12:45.595618 2026-04-23 15:12:45.595618 +1656 opp-pending 788 801 2026-04-23 15:12:59.61318 2026-04-23 15:12:59.61318 +1657 opp-pending 788 793 2026-04-23 15:13:32.190504 2026-04-23 15:13:32.190504 +1658 opp-pending 818 798 2026-04-24 08:31:17.1957 2026-04-24 08:31:17.1957 +1659 opp-pending 813 85 2026-04-24 08:42:06.969289 2026-04-24 08:42:06.969289 +1660 opp-matched 804 475 2026-04-24 13:29:21.369384 2026-04-24 13:30:09.322693 +1661 opp-pending 810 312 2026-04-24 14:34:44.759971 2026-04-24 14:34:44.759971 +1662 opp-pending 810 238 2026-04-24 14:37:21.100388 2026-04-24 14:37:21.100388 +1663 opp-pending 817 662 2026-04-24 14:39:18.655589 2026-04-24 14:39:18.655589 +1664 opp-pending 819 726 2026-04-24 14:49:21.392366 2026-04-24 14:49:21.392366 +1646 opp-matched 652 799 2026-04-23 09:22:02.543656 2026-04-27 08:09:33.486292 +1665 opp-pending 557 778 2026-04-27 09:05:19.662148 2026-04-27 09:05:19.662148 +1666 opp-pending 650 778 2026-04-27 09:05:49.140235 2026-04-27 09:05:49.140235 +1667 opp-pending 711 778 2026-04-27 09:08:01.254426 2026-04-27 09:08:01.254426 +1668 opp-pending 712 778 2026-04-27 09:08:50.072659 2026-04-27 09:08:50.072659 +1669 opp-pending 538 778 2026-04-27 09:10:36.467374 2026-04-27 09:10:36.467374 +1670 opp-pending 538 778 2026-04-27 09:14:05.773665 2026-04-27 09:14:05.773665 +1671 opp-pending 537 778 2026-04-27 09:15:22.777535 2026-04-27 09:15:22.777535 +1672 opp-matched 788 779 2026-04-27 14:40:23.879951 2026-04-27 14:41:43.498324 +1673 opp-matched 776 779 2026-04-27 14:41:31.327281 2026-04-27 14:41:45.296712 +1674 opp-past 795 802 2026-04-27 16:06:32.568389 2026-04-27 16:06:48.647254 +\. + + +-- +-- Data for Name: option; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.option (id, item_type, item_id) FROM stdin; +1 language 345 +2 language 618 +3 language 1200 +4 language 1215 +5 language 1230 +6 language 1482 +7 language 1540 +8 language 1807 +9 language 1833 +10 language 1910 +11 language 1954 +12 language 2366 +13 language 2388 +14 language 2521 +15 language 2665 +16 language 2854 +17 language 3151 +18 language 4698 +19 language 5140 +20 language 5351 +21 language 5445 +22 language 5641 +23 language 5642 +24 language 5677 +25 language 5998 +26 language 6011 +27 language 6059 +28 language 6148 +29 language 6644 +30 language 6769 +31 language 6819 +32 language 6894 +33 language 7790 +34 language 7922 +35 activity 1 +36 activity 2 +37 activity 3 +38 activity 4 +39 activity 5 +40 activity 6 +41 activity 7 +42 activity 8 +43 activity 9 +44 activity 10 +45 activity 11 +46 activity 12 +47 activity 13 +48 activity 14 +49 activity 15 +50 activity 16 +51 activity 17 +52 activity 18 +53 activity 19 +54 activity 20 +55 activity 21 +56 activity 22 +57 district 1 +58 district 2 +59 district 3 +60 district 4 +61 district 5 +62 district 6 +63 district 7 +64 district 8 +65 district 9 +66 district 10 +67 district 11 +68 district 12 +69 lead_from 1 +70 lead_from 2 +71 lead_from 3 +72 lead_from 4 +73 lead_from 5 +74 lead_from 6 +75 lead_from 7 +76 skill 1 +77 skill 2 +78 skill 3 +79 skill 4 +80 skill 5 +81 skill 6 +82 skill 7 +83 skill 8 +84 skill 9 +85 skill 10 +86 skill 11 +87 skill 12 +88 skill 13 +89 skill 14 +90 skill 15 +91 skill 16 +92 skill 17 +93 skill 18 +94 skill 19 +95 skill 20 +96 skill 21 +97 skill 22 +98 skill 23 +99 skill 24 +100 skill 25 +101 skill 26 +102 skill 27 +103 skill 28 +104 skill 29 +105 skill 30 +106 skill 31 +107 skill 32 +108 skill 33 +\. + + +-- +-- Data for Name: organization; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.organization (id, title, email, phone, created_at, updated_at, address_id, person_id, website) FROM stdin; +\. + + +-- +-- Data for Name: person; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.person (id, first_name, middle_name, last_name, email, phone, avatar_url, created_at, updated_at, address_id, preferred_communication_type, landline) FROM stdin; +3 Qffq Xltk Rgt qffq.rgt@fttr2rttr.gku \N \N 2026-04-14 16:09:52.349132 2026-04-14 16:09:52.349132 1 {mobilePhone} \N +4 \N \N tleitfqsstt@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:52.610212 2026-04-14 16:09:52.610212 1 {mobilePhone} \N +5 Pxsoqft \N Dtzm pxsoqft.dtzm@syu-w.rt 5797 9970 3774 all_genders_avatar.png 2026-04-14 16:09:52.622927 2026-04-14 16:09:52.622927 1 {mobilePhone} \N +6 \N \N qvg-ktyxuoxd-iqxlcqztkvtu@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:52.697842 2026-04-14 16:09:52.697842 1 {mobilePhone} \N +7 Ukoz \N Sqfuwtif sqfuwtif@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:52.710348 2026-04-14 16:09:52.710348 1 {mobilePhone} \N +8 Eikolzghi \N Wkqxf qvg-ktyxuoxd-soeiztfwtku@qvg-dozzt.rt 5701 175 56 56 all_genders_avatar.png 2026-04-14 16:09:52.797815 2026-04-14 16:09:52.797815 1 {mobilePhone} \N +9 Froqwts \N Rotfu tiktfqdz-kioflzkqllt@qvg-dozzt.rt 571560021804 all_genders_avatar.png 2026-04-14 16:09:52.810462 2026-04-14 16:09:52.810462 1 {mobilePhone} \N +10 Ik. \N Vtzztk vtzztk@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:52.929523 2026-04-14 16:09:52.929523 1 {mobilePhone} \N +11 Lodgf \N Lztofoeat lztofoeat@rka-dxtuutslhktt.rt 5708 1490 232 all_genders_avatar.png 2026-04-14 16:09:52.939598 2026-04-14 16:09:52.939598 1 {mobilePhone} \N +12 \N \N lgmoqsrotflz.rofugsyofutk@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:52.949566 2026-04-14 16:09:52.949566 1 {mobilePhone} \N +14 Ctkq \N Qsuttk ctkq.qsuttk@itkgtxkght.egd +26799 17157343 all_genders_avatar.png 2026-04-14 16:09:53.144014 2026-04-14 16:09:53.144014 1 {mobilePhone} \N +15 Solq \N Wqxtk lgmoqsztqd.wsxdwtkutkrqdd@itkgtxkght.egd \N all_genders_avatar.png 2026-04-14 16:09:53.154468 2026-04-14 16:09:53.154468 1 {mobilePhone} \N +16 Ik. \N Qs-Qzonnqz ofyg@ux-ofcqsortflzk.rt \N all_genders_avatar.png 2026-04-14 16:09:53.360569 2026-04-14 16:09:53.360569 1 {mobilePhone} \N +17 Snroq \N Pqxydqff pqxydqff@ux-ofcqsortflzk.rt \N all_genders_avatar.png 2026-04-14 16:09:53.374493 2026-04-14 16:09:53.374493 1 {mobilePhone} \N +18 \N \N hqkaigzts@etfzkg-igztsl.rt \N all_genders_avatar.png 2026-04-14 16:09:53.509576 2026-04-14 16:09:53.509576 1 {mobilePhone} \N +20 Yk. \N Uümtsrqs loctklzgkhlzkqllt.wtksof@epr.rt 5705 682 65 73 all_genders_avatar.png 2026-04-14 16:09:53.682534 2026-04-14 16:09:53.682534 1 {mobilePhone} \N +21 Qswkteiz \N Yüklzt qswkteiz.yxtklzt@epr.rt 5705 1512019 all_genders_avatar.png 2026-04-14 16:09:53.697307 2026-04-14 16:09:53.697307 1 {mobilePhone} \N +22 Yk. \N Cossvgea qt-uel@dosqq-wtksof.rt 5790 00166493 all_genders_avatar.png 2026-04-14 16:09:53.746421 2026-04-14 16:09:53.746421 1 {mobilePhone} \N +23 Lqkq \N Bitfug tiktfqdz-uel@dosqq-wtksof.rt 5790 001 664 97 all_genders_avatar.png 2026-04-14 16:09:53.75643 2026-04-14 16:09:53.75643 1 {mobilePhone} \N +24 Itkk \N Cotzm qt-qlaqfotkkofu@qswqzkgluudwi.rt 5796 5 283 67 73 all_genders_avatar.png 2026-04-14 16:09:53.78609 2026-04-14 16:09:53.78609 1 {mobilePhone} \N +25 Pqldof \N Aqdiont lgmoqsrotflz-qlaqfotkkofu@qswqzkgluudwi.rt 579049551697 all_genders_avatar.png 2026-04-14 16:09:53.797276 2026-04-14 16:09:53.797276 1 {mobilePhone} \N +26 \N \N stozxfu-alr@tx-igdteqkt.egd \N all_genders_avatar.png 2026-04-14 16:09:53.830742 2026-04-14 16:09:53.830742 1 {mobilePhone} \N +27 Yqzodq \N Ikgxmq tiktfqdz-alr@tx-igdteqkt.egd +26 797 02892914 all_genders_avatar.png 2026-04-14 16:09:53.840433 2026-04-14 16:09:53.840433 1 {mobilePhone} \N +28 \N \N wtzktxxfu-alr@tx-igdteqkt.egd 579702893122 all_genders_avatar.png 2026-04-14 16:09:53.852934 2026-04-14 16:09:53.852934 1 {mobilePhone} \N +29 \N \N iteatligkf.wtksof@epr.rt \N all_genders_avatar.png 2026-04-14 16:09:54.004921 2026-04-14 16:09:54.004921 1 {mobilePhone} \N +30 Püku \N Leivqkm pxtku.leivqkm@epr.rt 5703-4266162 all_genders_avatar.png 2026-04-14 16:09:54.020257 2026-04-14 16:09:54.020257 1 {mobilePhone} \N +31 \N \N xfztkaxfyz-ziy@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:54.045157 2026-04-14 16:09:54.045157 1 {mobilePhone} \N +32 Kgwtkz \N Motustk xfztkaxfyz-ziy@qvg-dozzt.rt 5797 3803 2913 all_genders_avatar.png 2026-04-14 16:09:54.06763 2026-04-14 16:09:54.06763 1 {mobilePhone} \N +33 Dofft \N Iquts tiktfqdzlaggkrofqzogf-ziy@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:54.083209 2026-04-14 16:09:54.083209 1 {mobilePhone} \N +34 \N \N leivqswtfvtu.szu@tx-igdteqkt.egd \N all_genders_avatar.png 2026-04-14 16:09:54.170461 2026-04-14 16:09:54.170461 1 {mobilePhone} \N +35 Tcutfon \N Qkztdntc leivqswtfvtu.tiktf@tx-igdteqkt.egd 57979 9458211 all_genders_avatar.png 2026-04-14 16:09:54.181008 2026-04-14 16:09:54.181008 1 {mobilePhone} \N +36 Qffq \N Ltoytkz aotyigsmlzkqllt3@syu-w.rt +26 797 79502200 all_genders_avatar.png 2026-04-14 16:09:54.250533 2026-04-14 16:09:54.250533 1 {mobilePhone} \N +37 Aqziqkofq \N Leiqqrt aqziqkofq.leiqqrt@syu-w.rt 5797 795 011 27 all_genders_avatar.png 2026-04-14 16:09:54.260857 2026-04-14 16:09:54.260857 1 {mobilePhone} \N +38 \N \N \N +26 85 378566-592 all_genders_avatar.png 2026-04-14 16:09:54.272331 2026-04-14 16:09:54.272331 1 {mobilePhone} \N +39 \N \N jxozztfvtu.wtksof@epr.rt \N all_genders_avatar.png 2026-04-14 16:09:54.332197 2026-04-14 16:09:54.332197 1 {mobilePhone} \N +40 Offq \N Leitfwto offq.leitfwto@epr.rt \N all_genders_avatar.png 2026-04-14 16:09:54.346428 2026-04-14 16:09:54.346428 1 {mobilePhone} \N +41 Ik. \N Eqwktkq lzqfrgkzstozxfu.uxlg@zqdqpq-ux.rt 5701 386 869 76 all_genders_avatar.png 2026-04-14 16:09:54.393923 2026-04-14 16:09:54.393923 1 {mobilePhone} \N +42 Eikolzofq \N Lztofiäxltk ​tiktfqdz.uxlg@zqdqpq.rt 5701 - 370 274 20 all_genders_avatar.png 2026-04-14 16:09:54.405667 2026-04-14 16:09:54.405667 1 {mobilePhone} \N +43 Lgmoqsrotflz \N \N lgmoqsqkwtoz.uxlg@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:09:54.415623 2026-04-14 16:09:54.415623 1 {mobilePhone} \N +44 \N \N ykozm-vosrxfu-lzkqllt.37@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:54.45771 2026-04-14 16:09:54.45771 1 {mobilePhone} \N +45 Foegst \N Leivtoutk foegst.leivtoutk@syu-w.rt 5797 03048242 all_genders_avatar.png 2026-04-14 16:09:54.467221 2026-04-14 16:09:54.467221 1 {mobilePhone} \N +46 Lxqrq \N Rgsgcqe wkqwqfztk-lzkqllt.77-73@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:54.500199 2026-04-14 16:09:54.500199 1 {mobilePhone} \N +2 Lqkqi Eggkrofqzgk Rgt lqkqi.rgt@fttr2rttr.gku \N \N 2026-04-14 16:09:52.349132 2026-04-14 16:09:52.349132 155 {mobilePhone} \N +19 Dgiqdtr \N Tsaqztw tsaqztw@qvg-dozzt.rt +2679082409767 all_genders_avatar.png 2026-04-14 16:09:53.522401 2026-04-14 16:09:53.522401 1 {email} \N +1 Pgif Qrdof Rgt \N 2026-04-14 16:09:52.349132 2026-04-14 16:09:52.349132 \N {mobilePhone} \N +47 \N \N ykozm-vosrxfu-lzkqllt.35@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:54.538737 2026-04-14 16:09:54.538737 1 {mobilePhone} \N +48 Yk. \N Uxfltfitodtk vgifitod.mtxuigy@roqagfot-lzqrzdozzt.rt 5718 995 14 77 all_genders_avatar.png 2026-04-14 16:09:54.566044 2026-04-14 16:09:54.566044 1 {mobilePhone} \N +49 Lghiot \N Esqqlltf tiktfqdz.mtxuigy@roqagfot-lzqrzdozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:54.578055 2026-04-14 16:09:54.578055 1 {mobilePhone} \N +50 Okofq \N Dtorgv qszt-pqagwlzkqllt.2@syu-w.rt 5797 79 50 11 81 all_genders_avatar.png 2026-04-14 16:09:54.604967 2026-04-14 16:09:54.604967 1 {mobilePhone} \N +51 \N \N lzqssleiktowtk@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:54.630954 2026-04-14 16:09:54.630954 1 {mobilePhone} \N +52 Zitktlq \N Wkqxf tiktfqdz-lzqssleiktowtk@hkolgr-vgiftf.rt 5708 4358035 all_genders_avatar.png 2026-04-14 16:09:54.64083 2026-04-14 16:09:54.64083 1 {mobilePhone} \N +53 \N \N lzqssleiktowtk-lr@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:54.650491 2026-04-14 16:09:54.650491 1 {mobilePhone} \N +54 Yk. \N Ligkgv rtuftk@hkolgr-vgiftf.rt 5793 52 34 79 26 all_genders_avatar.png 2026-04-14 16:09:54.728583 2026-04-14 16:09:54.728583 1 {mobilePhone} \N +55 Pqejxtsoft \N Stlei tiktfqdz-rtuftk@hkolgr-vgiftf.rt 5793 827 986 19 all_genders_avatar.png 2026-04-14 16:09:54.738896 2026-04-14 16:09:54.738896 1 {mobilePhone} \N +56 Ik. \N Wüeiftk-Ytfftk wgkfozm@rka-dxtuutslhktt.rt 5790/ 88 36 86 31 all_genders_avatar.png 2026-04-14 16:09:54.791383 2026-04-14 16:09:54.791383 1 {mobilePhone} \N +57 Ktyoa \N Qrqn qrqn@rka-dxtuutslhktt.rt 570183123855 all_genders_avatar.png 2026-04-14 16:09:54.800768 2026-04-14 16:09:54.800768 1 {mobilePhone} \N +58 Xskoat \N Lhstzzlzößtk dqb-wkxffgv@hkolgr-vgiftf.rt 5793 30 96 01 59 all_genders_avatar.png 2026-04-14 16:09:54.83988 2026-04-14 16:09:54.83988 1 {mobilePhone} \N +59 Dqkopq \N Lqkoe tiktfqdz-dqb-wkxffgv@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:54.849252 2026-04-14 16:09:54.849252 1 {mobilePhone} \N +60 Lqsgdt \N Eiqfaltsoqfo avl21@cgsallgsorqkozqtz.rt 5799 79544066 all_genders_avatar.png 2026-04-14 16:09:54.885342 2026-04-14 16:09:54.885342 1 {mobilePhone} \N +61 Iqsq \N Qs-Aiqsqy avl21-tiktfqdz@cgsallgsorqkozqtz.rt 5797 79544064 all_genders_avatar.png 2026-04-14 16:09:54.895138 2026-04-14 16:09:54.895138 1 {mobilePhone} \N +62 \N \N ux-vgl@dosqq-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:54.926078 2026-04-14 16:09:54.926078 1 {mobilePhone} \N +63 \N \N wtoltk@dosqq-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:54.935532 2026-04-14 16:09:54.935532 1 {mobilePhone} \N +64 \N \N ux.utiktflttlzk@qswqzkgluudwi.rt 5796 52 92 331 all_genders_avatar.png 2026-04-14 16:09:54.965804 2026-04-14 16:09:54.965804 1 {mobilePhone} \N +65 Ik. \N Nxlxhgc ux.iqutfgvtk-kofu@qswqzkgluudwi.rt 5705 29 45 849 all_genders_avatar.png 2026-04-14 16:09:55.02633 2026-04-14 16:09:55.02633 1 {mobilePhone} \N +66 Fofq \N Wtoptk f.wtoptk@qswqzkgluudwi.rt +26793 99785374 all_genders_avatar.png 2026-04-14 16:09:55.038516 2026-04-14 16:09:55.038516 1 {mobilePhone} \N +67 \N \N ux-vwl@dosqq-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:55.12686 2026-04-14 16:09:55.12686 1 {mobilePhone} \N +68 Akolzofq \N Soeiftk soeiftk@dosqq-wtksof.rt 5790 00162927 all_genders_avatar.png 2026-04-14 16:09:55.135786 2026-04-14 16:09:55.135786 1 {mobilePhone} \N +69 Ocg \N Agrqs ukqytfqxtk-vtu.84-22@syu-w.rt 5797 03 04 82 06 all_genders_avatar.png 2026-04-14 16:09:55.158248 2026-04-14 16:09:55.158248 1 {mobilePhone} \N +70 Hioakoq \N Atlqfqlicoso lil20@cgsallgsorqkozqtz.rt 5797 74 54 46 10 all_genders_avatar.png 2026-04-14 16:09:55.179154 2026-04-14 16:09:55.179154 1 {mobilePhone} \N +71 Oknfq \N Sqfrtl oknfq.sqfrtl@cgsallgsorqkozqtz.rt 5797 79544498 all_genders_avatar.png 2026-04-14 16:09:55.190034 2026-04-14 16:09:55.190034 1 {mobilePhone} \N +72 Fqzqsooq \N Squxzofq lil20-lgmoqsztqd@cgsallgsorqkozqtz.rt 585 25811 7363 all_genders_avatar.png 2026-04-14 16:09:55.200099 2026-04-14 16:09:55.200099 1 {mobilePhone} \N +73 \N \N dqbot-vqfrtk-lzkqllt.04@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:55.308954 2026-04-14 16:09:55.308954 1 {mobilePhone} \N +74 Ltwqlzoqf \N Iqkiqxltf ltwqlzoqf.iqkiqxltf@syu-w.rt +26 797 71 39 89 40 all_genders_avatar.png 2026-04-14 16:09:55.318896 2026-04-14 16:09:55.318896 1 {mobilePhone} \N +75 Yokofeq \N Yoleitk ux.wozztkytsrtklzk@itkgtxkght.egd 5701 215 231 70 all_genders_avatar.png 2026-04-14 16:09:55.374705 2026-04-14 16:09:55.374705 1 {mobilePhone} \N +76 Mqaqkoq \N Uquq mqaqkoq.uquq@itkgtxkght.egd +26 79917966520 all_genders_avatar.png 2026-04-14 16:09:55.384863 2026-04-14 16:09:55.384863 1 {mobilePhone} \N +77 \N \N lzqfrgkzstozxfu.uxvl@zqdqpq.rt 5701 154 576 85 all_genders_avatar.png 2026-04-14 16:09:55.417054 2026-04-14 16:09:55.417054 1 {mobilePhone} \N +78 \N \N tiktfqdz.uxvl@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:09:55.426701 2026-04-14 16:09:55.426701 1 {mobilePhone} \N +79 \N \N uxhqxs.leivtfalzk@itkgtxkght.egd \N all_genders_avatar.png 2026-04-14 16:09:55.44638 2026-04-14 16:09:55.44638 1 {mobilePhone} \N +80 \N \N ksl78@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:09:55.484692 2026-04-14 16:09:55.484692 1 {mobilePhone} \N +81 Hiqfzofq \N Ligso ksl78-tiktfqdz@cgsallgsorqkozqtz.rt 5797 79544411 all_genders_avatar.png 2026-04-14 16:09:55.493917 2026-04-14 16:09:55.493917 1 {mobilePhone} \N +82 Lgmoqsztqd \N \N ksl78-lgmoqsztqd@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:09:55.503479 2026-04-14 16:09:55.503479 1 {mobilePhone} \N +83 Itoat \N Ztfut ux-qal@dosqq-wtksof.rt 5701 279 490 77 all_genders_avatar.png 2026-04-14 16:09:55.561989 2026-04-14 16:09:55.561989 1 {mobilePhone} \N +84 \N \N mglltftk-lzkqllt.792-791@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:55.60001 2026-04-14 16:09:55.60001 1 {mobilePhone} \N +85 Dqke \N Itsytkl dqke.itsytkl@epr.rt 5797 95447604 all_genders_avatar.png 2026-04-14 16:09:55.621554 2026-04-14 16:09:55.621554 1 {mobilePhone} \N +86 \N \N iqxlstg@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:09:55.674946 2026-04-14 16:09:55.674946 1 {mobilePhone} \N +87 Dqsof \N Dtszmtk cgfdtszmtk@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:09:55.685456 2026-04-14 16:09:55.685456 1 {mobilePhone} \N +88 \N \N ktyxuoxd@hullgmoqstl.rt \N all_genders_avatar.png 2026-04-14 16:09:55.712265 2026-04-14 16:09:55.712265 1 {mobilePhone} \N +89 Tsolqwtzi \N Egfzti tsolqwtzi.egfzti@hullgmoqstl.rt \N all_genders_avatar.png 2026-04-14 16:09:55.721185 2026-04-14 16:09:55.721185 1 {mobilePhone} \N +90 Yk. \N Rtuokdtfeo ofyg@eozn92.rt \N all_genders_avatar.png 2026-04-14 16:09:55.741539 2026-04-14 16:09:55.741539 1 {mobilePhone} \N +91 Qfutsoaq \N Lhtss lgmoqsqkwtoztk@eozn92.rt \N all_genders_avatar.png 2026-04-14 16:09:55.751552 2026-04-14 16:09:55.751552 1 {mobilePhone} \N +92 \N \N icui@eqkozql-wtksof.rt 5700 935 36 94 all_genders_avatar.png 2026-04-14 16:09:55.796785 2026-04-14 16:09:55.796785 1 {mobilePhone} \N +93 Eikolzofq \N Iqfftdqff ux-qsz-dgqwoz@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:55.816638 2026-04-14 16:09:55.816638 1 {mobilePhone} \N +94 Zgd \N Vtoeitkz z.vtoeitkz@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:55.825974 2026-04-14 16:09:55.825974 1 {mobilePhone} \N +95 \N \N iqqkstdtklzkqllt.46-67@syu-w.rt 5797 03 04 82 00 all_genders_avatar.png 2026-04-14 16:09:55.871357 2026-04-14 16:09:55.871357 1 {mobilePhone} \N +96 Dqkoq-Wtktfoat \N Iäxlstk dqkoq-wtktfoat.iqtxlstk@syu-w.rt +26 7977 950 118 2 all_genders_avatar.png 2026-04-14 16:09:55.880644 2026-04-14 16:09:55.880644 1 {mobilePhone} \N +97 \N \N aotyigsmlzkqllt.07@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:55.936247 2026-04-14 16:09:55.936247 1 {mobilePhone} \N +98 Aqziqkofq \N Leiqqrt ail.tiktfqdz@syu-w.rt 5797 79 50 11 27 all_genders_avatar.png 2026-04-14 16:09:55.945172 2026-04-14 16:09:55.945172 1 {mobilePhone} \N +99 Ik. \N Dgxzqgxats lzqfrgkzstozxfu.uxad@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:09:55.995973 2026-04-14 16:09:55.995973 1 {mobilePhone} \N +100 Eikolzofq \N Lztofiäxltk tiktfqdz.uxad@zqdqpq.rt +2679045183982 all_genders_avatar.png 2026-04-14 16:09:56.006209 2026-04-14 16:09:56.006209 1 {mobilePhone} \N +101 \N \N lzqfrgkzstozxfu.uxzv@zqdqpq-ux.rt \N all_genders_avatar.png 2026-04-14 16:09:56.063448 2026-04-14 16:09:56.063448 1 {mobilePhone} \N +102 Dqkot \N Exexktssq tiktfqdz.uxzv@zqdqpq.rt 579045183748 all_genders_avatar.png 2026-04-14 16:09:56.07519 2026-04-14 16:09:56.07519 1 {mobilePhone} \N +103 \N \N lgmoqsqkwtoz.uxzv@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:09:56.084807 2026-04-14 16:09:56.084807 1 {mobilePhone} \N +104 Igsutk \N Ykqfm yqsatfwtkutk-lzkqllt.792@syu-w.rt 5797 79 50 22 41 all_genders_avatar.png 2026-04-14 16:09:56.135522 2026-04-14 16:09:56.135522 1 {mobilePhone} \N +105 \N \N ofyg@lza774.rt \N all_genders_avatar.png 2026-04-14 16:09:56.156798 2026-04-14 16:09:56.156798 1 {mobilePhone} \N +106 Qfpq \N \N qfpq.rtiuiqf@gfhxkhglt.wtksof 5718 – 3639 104 all_genders_avatar.png 2026-04-14 16:09:56.166966 2026-04-14 16:09:56.166966 1 {mobilePhone} \N +107 \N \N lgmoqstqkwtoz774@lza774.rt \N all_genders_avatar.png 2026-04-14 16:09:56.17798 2026-04-14 16:09:56.17798 1 {mobilePhone} \N +108 \N \N dxtist@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:56.271689 2026-04-14 16:09:56.271689 1 {mobilePhone} \N +109 Qsoft \N Vtfrleitea tiktfqdz-dxtist@hkolgr-vgiftf.rt 5793/ 528 09 780 all_genders_avatar.png 2026-04-14 16:09:56.280958 2026-04-14 16:09:56.280958 1 {mobilePhone} \N +110 \N \N rqfotsq.afxzi@itkgtxkght.egd 5799 1796 4159 all_genders_avatar.png 2026-04-14 16:09:56.301943 2026-04-14 16:09:56.301943 1 {mobilePhone} \N +111 Pgqffq \N Sxfrz pgqffq.sxfrz@itkgtxkght.egd 5701 16050 943 all_genders_avatar.png 2026-04-14 16:09:56.311557 2026-04-14 16:09:56.311557 1 {mobilePhone} \N +112 Aqloq \N Łnpqa aqloq.snpqa@itkgtxkght.egd \N all_genders_avatar.png 2026-04-14 16:09:56.3207 2026-04-14 16:09:56.3207 1 {mobilePhone} \N +113 Zqzoqfq \N Kgzz zqzoqfq.kgzz@itkgtxkght.egd +26 799 179 667 24 all_genders_avatar.png 2026-04-14 16:09:56.397426 2026-04-14 16:09:56.397426 1 {mobilePhone} \N +114 Grosoq \N Cgouz grosoq.cgouz@itkgtxkght.egd +26 79 913 198 219 all_genders_avatar.png 2026-04-14 16:09:56.407122 2026-04-14 16:09:56.407122 1 {mobilePhone} \N +115 \N \N ux.lzgkagvtklzk@qswqzkgluudwi.rt \N all_genders_avatar.png 2026-04-14 16:09:56.451004 2026-04-14 16:09:56.451004 1 {mobilePhone} \N +116 \N \N \N 585 258 184 all_genders_avatar.png 2026-04-14 16:09:56.460117 2026-04-14 16:09:56.460117 1 {mobilePhone} \N +117 \N \N zktlagvlzkqllt.79-71@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:56.479966 2026-04-14 16:09:56.479966 1 {mobilePhone} \N +118 \N \N ux-vil@dosqq-wtksof.rt 5701 279 490 73 all_genders_avatar.png 2026-04-14 16:09:56.498118 2026-04-14 16:09:56.498118 1 {mobilePhone} \N +119 \N \N sofrtfwtkutk-vtu.39@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:56.518252 2026-04-14 16:09:56.518252 1 {mobilePhone} \N +120 Tdosn \N Tkrdqff tdosn.tkrdqff@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:56.527383 2026-04-14 16:09:56.527383 1 {mobilePhone} \N +121 \N \N ktffwqiflzkqllt.40@syu-w.rt 5797 79 50 22 41 all_genders_avatar.png 2026-04-14 16:09:56.547083 2026-04-14 16:09:56.547083 1 {mobilePhone} \N +122 \N \N \N +26 797 795 041 94 all_genders_avatar.png 2026-04-14 16:09:56.555705 2026-04-14 16:09:56.555705 1 {mobilePhone} \N +123 \N \N ktffwqiflzkqllt.07-02@syu-w.rt 5797 795 022 41 all_genders_avatar.png 2026-04-14 16:09:56.574849 2026-04-14 16:09:56.574849 1 {mobilePhone} \N +124 Yk. \N Vqlostvlao dqkot-leisto-iqxl@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:56.595762 2026-04-14 16:09:56.595762 1 {mobilePhone} \N +125 Ftst \N Wtkuit cqfrtfwtkuit@qvg-dozzt.rt 5797 03242355 all_genders_avatar.png 2026-04-14 16:09:56.604671 2026-04-14 16:09:56.604671 1 {mobilePhone} \N +126 \N \N ux.ltfyztfwtkutkkofu@qswqzkgluudwi.rt 5701 764 873 67 all_genders_avatar.png 2026-04-14 16:09:56.641842 2026-04-14 16:09:56.641842 1 {mobilePhone} \N +127 Ftpkq \N Usqdge f.usqdge@qswqzkgluudwi.rt 5701 - 764 873 19 all_genders_avatar.png 2026-04-14 16:09:56.651111 2026-04-14 16:09:56.651111 1 {mobilePhone} \N +128 \N \N hglzlztsst@sqy.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:56.67151 2026-04-14 16:09:56.67151 1 {mobilePhone} \N +129 Itkk \N Oldqoso hoeitslvtkrtk@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:56.691381 2026-04-14 16:09:56.691381 1 {mobilePhone} \N +130 \N \N tiktfqdz-hoeitslvtkrtk@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:56.700392 2026-04-14 16:09:56.700392 1 {mobilePhone} \N +131 Ykqx \N Lqiqkaiom ofyg@ux-yktxrlzk.rt \N all_genders_avatar.png 2026-04-14 16:09:56.737502 2026-04-14 16:09:56.737502 1 {mobilePhone} \N +132 Tscokq \N Dösstk dgtsstk@ux-yktxrlzk.rt \N all_genders_avatar.png 2026-04-14 16:09:56.747658 2026-04-14 16:09:56.747658 1 {mobilePhone} \N +133 Vossoqd \N Fpofuqfu fpofuqfu@ux-yktxrlzk.rt 585 3883 7617 76 all_genders_avatar.png 2026-04-14 16:09:56.757713 2026-04-14 16:09:56.757713 1 {mobilePhone} \N +134 \N \N ux-lhqfrqxtklzkqllt@lof-tc.rt 5793 964 522 85 all_genders_avatar.png 2026-04-14 16:09:56.798751 2026-04-14 16:09:56.798751 1 {mobilePhone} \N +135 Ftuof \N Qflqko f.qflqko@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:56.80748 2026-04-14 16:09:56.80748 1 {mobilePhone} \N +136 \N \N ofyg@eozntstctf.rt \N all_genders_avatar.png 2026-04-14 16:09:56.826866 2026-04-14 16:09:56.826866 1 {mobilePhone} \N +137 Kqshi \N Tiksoei tiktfqdz@eozntstctf.rt 57047468338 all_genders_avatar.png 2026-04-14 16:09:56.836702 2026-04-14 16:09:56.836702 1 {mobilePhone} \N +138 Dqfrn \N Xkwqf egfzqez@eozntstctf.rt 585 3556 31 68 all_genders_avatar.png 2026-04-14 16:09:56.845796 2026-04-14 16:09:56.845796 1 {mobilePhone} \N +139 \N \N ofyg@ux-kqxeilzk.rt \N all_genders_avatar.png 2026-04-14 16:09:56.93313 2026-04-14 16:09:56.93313 1 {mobilePhone} \N +140 \N \N izl30@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:09:56.95434 2026-04-14 16:09:56.95434 1 {mobilePhone} \N +141 Qrqd \N Qxuxlznf qrqd.qxuxlznf@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:09:56.96404 2026-04-14 16:09:56.96404 1 {mobilePhone} \N +142 \N \N qvg-ktyxuoxd-glzhktxlltfrqdd@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:57.051416 2026-04-14 16:09:57.051416 1 {mobilePhone} \N +143 Yk. \N Lqxfqk dqrtstoft.lqxfqk@epr.rt 5797 77143566 all_genders_avatar.png 2026-04-14 16:09:57.071902 2026-04-14 16:09:57.071902 1 {mobilePhone} \N +144 \N \N ux-stgfgktflzkqllt@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:57.091232 2026-04-14 16:09:57.091232 1 {mobilePhone} \N +145 Iqfl \N Itffofu i.itffofu@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:57.099877 2026-04-14 16:09:57.099877 1 {mobilePhone} \N +146 Ykotrtkoat \N Vtlzhiqs ykotrtkoat.vtlzhiqs@itkgtxkght.egd \N all_genders_avatar.png 2026-04-14 16:09:57.121596 2026-04-14 16:09:57.121596 1 {mobilePhone} \N +147 Mqaqkoq \N Uquq mqaqkoq.uquq@itkgtxkght.egd +26 799 17 96 65 20 all_genders_avatar.png 2026-04-14 16:09:57.136328 2026-04-14 16:09:57.136328 1 {mobilePhone} \N +148 Ik. \N Mvossofu ux-glv@dosqq-wtksof.rt 5790 001 673 24 all_genders_avatar.png 2026-04-14 16:09:57.173645 2026-04-14 16:09:57.173645 1 {mobilePhone} \N +149 Dtidtz \N Qsodgusx qsodgusx@dosqq-wtksof.rt 5790 00167395 all_genders_avatar.png 2026-04-14 16:09:57.184448 2026-04-14 16:09:57.184448 1 {mobilePhone} \N +150 Ik. \N Gzzg vi-w-zkqeitfwtkukofu@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.240797 2026-04-14 16:09:57.240797 1 {mobilePhone} \N +151 Ptffoytk \N Yotrstk ptffoytk.yotrstk@ow.rt 57031689961 all_genders_avatar.png 2026-04-14 16:09:57.250345 2026-04-14 16:09:57.250345 1 {mobilePhone} \N +152 \N \N vi-w-dqkotfytsrt@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.290079 2026-04-14 16:09:57.290079 1 {mobilePhone} \N +153 Rgkgzq \N Iqstagzzt dqurqstfq.iqstagzzt@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.301014 2026-04-14 16:09:57.301014 1 {mobilePhone} \N +154 Yk. \N Uxtkkqmmo lzqfrgkzstozxfu.uxar@zqdqpq-ux.rt \N all_genders_avatar.png 2026-04-14 16:09:57.340142 2026-04-14 16:09:57.340142 1 {mobilePhone} \N +155 \N \N tiktfqdz.uxar@zqdqpq-ux.rt \N all_genders_avatar.png 2026-04-14 16:09:57.350293 2026-04-14 16:09:57.350293 1 {mobilePhone} \N +156 Ik. \N Iqpttk ux.egsrozmlzk@qswqzkgluudwi.rt 57904 955 16 94 all_genders_avatar.png 2026-04-14 16:09:57.37559 2026-04-14 16:09:57.37559 1 {mobilePhone} \N +157 Htztk \N Aqfng h.aqfng@qswqzkgluudwi.rt \N all_genders_avatar.png 2026-04-14 16:09:57.385578 2026-04-14 16:09:57.385578 1 {mobilePhone} \N +158 Lgmoqsrotflz \N \N lgmoqsrotflz.uxegsr@qswqzkgluudwi.rt \N all_genders_avatar.png 2026-04-14 16:09:57.395358 2026-04-14 16:09:57.395358 1 {mobilePhone} \N +159 Sxe \N Pgof-Sqdwtkz ukgllwttktflzkqllt.82-25@syu-w.rt 5797 79504196 all_genders_avatar.png 2026-04-14 16:09:57.465833 2026-04-14 16:09:57.465833 1 {mobilePhone} \N +160 Rgkgzitq \N Agsleitvlao rgkgzitq.agsleitvlao@syu-w.rt 5797 03 04 53 31 all_genders_avatar.png 2026-04-14 16:09:57.475804 2026-04-14 16:09:57.475804 1 {mobilePhone} \N +161 Yk. \N Usgxyzlo xfztkaxfyzlstozxfu@ux-fotrlzk.rt \N all_genders_avatar.png 2026-04-14 16:09:57.495751 2026-04-14 16:09:57.495751 1 {mobilePhone} \N +162 Ztgfq \N Zeiqfzxkoq-Aüiftdqff xfztkaxfyz-iqfrptkn@fwil.rt \N all_genders_avatar.png 2026-04-14 16:09:57.529097 2026-04-14 16:09:57.529097 1 {mobilePhone} \N +163 Lztyyo \N Dtztsdqff lztyyo.dtztsdqff@fwil.rt \N all_genders_avatar.png 2026-04-14 16:09:57.538497 2026-04-14 16:09:57.538497 1 {mobilePhone} \N +164 Dqkzof \N Lzkgiytsrz egsxdwoqrqdd.42@syu-w.rt 5797 79501180 all_genders_avatar.png 2026-04-14 16:09:57.558162 2026-04-14 16:09:57.558162 1 {mobilePhone} \N +165 Sqxkq \N Wtktmfqo sqxkq.wtktmfqo@syu-w.rt +26 797 71398993 all_genders_avatar.png 2026-04-14 16:09:57.567474 2026-04-14 16:09:57.567474 1 {mobilePhone} \N +166 \N \N dqkzofq.uqrrgfo@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:57.578164 2026-04-14 16:09:57.578164 1 {mobilePhone} \N +167 \N \N lgmoqstrotflzt@xfogfiosylvtka.rt \N all_genders_avatar.png 2026-04-14 16:09:57.660178 2026-04-14 16:09:57.660178 1 {mobilePhone} \N +168 Yk. \N Cossvgea kqr@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:57.744095 2026-04-14 16:09:57.744095 1 {mobilePhone} \N +169 Lsyqfq \N Axkwqu axkwqu@rka-dxtuutslhktt.rt 57081490587 all_genders_avatar.png 2026-04-14 16:09:57.753334 2026-04-14 16:09:57.753334 1 {mobilePhone} \N +170 \N \N ux-agthtfoeatk-ww@ow.rt 585 235 77 444 all_genders_avatar.png 2026-04-14 16:09:57.804202 2026-04-14 16:09:57.804202 1 {mobilePhone} \N +171 Hiosgdofq \N Zqdwt hiosgdofq.wtlgfu.zqdwt@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.814308 2026-04-14 16:09:57.814308 1 {mobilePhone} \N +172 Dqrstf \N Vosdl ux-euq20-ww@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.835515 2026-04-14 16:09:57.835515 1 {mobilePhone} \N +173 Dqfrn \N Iqfpgts dqfrn.qsnllq.iqfpgts@ow.rt 5797 33732232 all_genders_avatar.png 2026-04-14 16:09:57.844869 2026-04-14 16:09:57.844869 1 {mobilePhone} \N +174 \N \N vlh@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:57.888159 2026-04-14 16:09:57.888159 1 {mobilePhone} \N +175 Aofqfq \N Ltodxqq ltodxqq@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:57.903452 2026-04-14 16:09:57.903452 1 {mobilePhone} \N +176 Eqkdtf \N Wäeatk lql46@cgsallgsorqkozqtz.rt 5797 795 444 73 all_genders_avatar.png 2026-04-14 16:09:57.942625 2026-04-14 16:09:57.942625 1 {mobilePhone} \N +177 Iqffqi \N Kofrstk lql46-tiktfqdz@cgsallgsorqkozqtz.rt 5797 79544403 all_genders_avatar.png 2026-04-14 16:09:57.95124 2026-04-14 16:09:57.95124 1 {mobilePhone} \N +178 Uxorg \N Leivqkm iqllgvtu.87@syu-w.rt 5797 795 011 89 all_genders_avatar.png 2026-04-14 16:09:57.982437 2026-04-14 16:09:57.982437 1 {mobilePhone} \N +179 Yk. \N Dqlxei aqwsgvtk@rka-dxtuutslhktt.rt 5708 141 78 84 all_genders_avatar.png 2026-04-14 16:09:58.003033 2026-04-14 16:09:58.003033 1 {mobilePhone} \N +180 Lsyqfq \N Axkwqu axkwqu@rka-dxtuutslhktt.rt 579396309030 all_genders_avatar.png 2026-04-14 16:09:58.013448 2026-04-14 16:09:58.013448 1 {mobilePhone} \N +181 \N \N ofyg@w-w-t.rt \N all_genders_avatar.png 2026-04-14 16:09:58.064259 2026-04-14 16:09:58.064259 1 {mobilePhone} \N +182 \N \N agfzqaz@yvq-di.rt \N all_genders_avatar.png 2026-04-14 16:09:58.094085 2026-04-14 16:09:58.094085 1 {mobilePhone} \N +183 \N \N ofyg@oaiwtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.115023 2026-04-14 16:09:58.115023 1 {mobilePhone} \N +184 \N \N ztqd@wgxstcqkr-aqlzqfotfqsstt.rt \N all_genders_avatar.png 2026-04-14 16:09:58.134758 2026-04-14 16:09:58.134758 1 {mobilePhone} \N +185 \N \N qykgzqa@enwtkfgdqrl.rt \N all_genders_avatar.png 2026-04-14 16:09:58.155885 2026-04-14 16:09:58.155885 1 {mobilePhone} \N +186 \N \N sqsgaq@hqr-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.18115 2026-04-14 16:09:58.18115 1 {mobilePhone} \N +187 \N \N ofyg@qkkocqslxhhgkz.wtksof \N all_genders_avatar.png 2026-04-14 16:09:58.202938 2026-04-14 16:09:58.202938 1 {mobilePhone} \N +188 \N \N eqyt-hofa@hyi-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.22861 2026-04-14 16:09:58.22861 1 {mobilePhone} \N +189 \N \N ofyg@esxw-roqsgu.rt \N all_genders_avatar.png 2026-04-14 16:09:58.253846 2026-04-14 16:09:58.253846 1 {mobilePhone} \N +190 \N \N wtksof@rqdoukq.rt \N all_genders_avatar.png 2026-04-14 16:09:58.284871 2026-04-14 16:09:58.284871 1 {mobilePhone} \N +191 \N \N ofyg@lxlo-ykqxtf-mtfzkxd.egd \N all_genders_avatar.png 2026-04-14 16:09:58.31027 2026-04-14 16:09:58.31027 1 {mobilePhone} \N +192 \N \N vrl.fqeiwqkleiqyz@coq-of-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.336867 2026-04-14 16:09:58.336867 1 {mobilePhone} \N +193 \N \N egfzqez@tsoaoq-tc.gku \N all_genders_avatar.png 2026-04-14 16:09:58.357069 2026-04-14 16:09:58.357069 1 {mobilePhone} \N +194 \N \N agfzqaz@ymd-wtksof.egd \N all_genders_avatar.png 2026-04-14 16:09:58.391541 2026-04-14 16:09:58.391541 1 {mobilePhone} \N +195 \N \N hkgqlns@hkgqlns.rt \N all_genders_avatar.png 2026-04-14 16:09:58.423955 2026-04-14 16:09:58.423955 1 {mobilePhone} \N +196 \N \N utgkuoleitliqxl@nqigg.rt \N all_genders_avatar.png 2026-04-14 16:09:58.449801 2026-04-14 16:09:58.449801 1 {mobilePhone} \N +197 \N \N wkoleikq@qgs.egd \N all_genders_avatar.png 2026-04-14 16:09:58.478863 2026-04-14 16:09:58.478863 1 {mobilePhone} \N +198 \N \N agfzqaz@utltssleiqyzllhotst.wtksof \N all_genders_avatar.png 2026-04-14 16:09:58.502463 2026-04-14 16:09:58.502463 1 {mobilePhone} \N +199 \N \N ofyg@usqrz.rt \N all_genders_avatar.png 2026-04-14 16:09:58.532661 2026-04-14 16:09:58.532661 1 {mobilePhone} \N +200 \N \N ofyg@ufuwtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.561827 2026-04-14 16:09:58.561827 1 {mobilePhone} \N +201 \N \N ofyg@olo-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:58.606056 2026-04-14 16:09:58.606056 1 {mobilePhone} \N +202 \N \N ofyg@ofllqf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.635022 2026-04-14 16:09:58.635022 1 {mobilePhone} \N +203 \N \N ktrqazogf@aotmlhofft.rt \N all_genders_avatar.png 2026-04-14 16:09:58.660151 2026-04-14 16:09:58.660151 1 {mobilePhone} \N +204 \N \N qfft.ptkmqa@wq-di.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.690405 2026-04-14 16:09:58.690405 1 {mobilePhone} \N +205 \N \N hiosohh.kitof@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.720018 2026-04-14 16:09:58.720018 1 {mobilePhone} \N +206 \N \N pxsoq.lzqrzytsr@ktofoeatfrgky.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.7486 2026-04-14 16:09:58.7486 1 {mobilePhone} \N +207 \N \N eqkgsnf.aqfpq@wq-dozzt.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.774742 2026-04-14 16:09:58.774742 1 {mobilePhone} \N +208 \N \N sxolt.wxrqtxl@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.803284 2026-04-14 16:09:58.803284 1 {mobilePhone} \N +209 \N \N \N 5702 715 09 98 all_genders_avatar.png 2026-04-14 16:09:58.828589 2026-04-14 16:09:58.828589 1 {mobilePhone} \N +210 \N \N yqwoqf.wgka@wq-za.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.837269 2026-04-14 16:09:58.837269 1 {mobilePhone} \N +211 \N \N ofztukqzogf@wq-za.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.861249 2026-04-14 16:09:58.861249 1 {mobilePhone} \N +212 \N \N hktlltlztsst@ltfqluocq.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.882143 2026-04-14 16:09:58.882143 1 {mobilePhone} \N +213 \N \N wtkqzxfu@ofzdou.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.910413 2026-04-14 16:09:58.910413 1 {mobilePhone} \N +214 \N \N tsat.doeiqxa@wq-lhqfrqx.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.936421 2026-04-14 16:09:58.936421 1 {mobilePhone} \N +215 \N \N uxtftk.wqseo@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.960184 2026-04-14 16:09:58.960184 1 {mobilePhone} \N +216 \N \N xakqoft-iosyt-ztqd@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.982857 2026-04-14 16:09:58.982857 1 {mobilePhone} \N +217 \N \N tiktfqdzlwxtkg@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.008904 2026-04-14 16:09:59.008904 1 {mobilePhone} \N +218 \N \N wxtkg@ofztkysxul.rt \N all_genders_avatar.png 2026-04-14 16:09:59.035334 2026-04-14 16:09:59.035334 1 {mobilePhone} \N +219 \N \N qstbqfrtk.rqn@ktlext.gku \N all_genders_avatar.png 2026-04-14 16:09:59.058907 2026-04-14 16:09:59.058907 1 {mobilePhone} \N +220 \N \N ofyg@pxdtf.gku \N all_genders_avatar.png 2026-04-14 16:09:59.090819 2026-04-14 16:09:59.090819 1 {mobilePhone} \N +221 \N \N us@aqkxfq-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:59.121182 2026-04-14 16:09:59.121182 1 {mobilePhone} \N +222 \N \N ofyg@aga-wxtkg.rt \N all_genders_avatar.png 2026-04-14 16:09:59.148538 2026-04-14 16:09:59.148538 1 {mobilePhone} \N +223 \N \N agfzqaz@axw-wtksof.gku \N all_genders_avatar.png 2026-04-14 16:09:59.175646 2026-04-14 16:09:59.175646 1 {mobilePhone} \N +224 \N \N agfzqaz@sqkxitshlxakqoft.egd \N all_genders_avatar.png 2026-04-14 16:09:59.203094 2026-04-14 16:09:59.203094 1 {mobilePhone} \N +225 \N \N io@ktyxuttl-vtsegdt.ftz \N all_genders_avatar.png 2026-04-14 16:09:59.224506 2026-04-14 16:09:59.224506 1 {mobilePhone} \N +226 \N \N agfzqaz@dofukx-pohtf.egd \N all_genders_avatar.png 2026-04-14 16:09:59.249555 2026-04-14 16:09:59.249555 1 {mobilePhone} \N +227 \N \N ofyg@doz-dqei-dxloa.rt \N all_genders_avatar.png 2026-04-14 16:09:59.274834 2026-04-14 16:09:59.274834 1 {mobilePhone} \N +228 \N \N agfzqaz@dozztsigy.gku \N all_genders_avatar.png 2026-04-14 16:09:59.304579 2026-04-14 16:09:59.304579 1 {mobilePhone} \N +229 \N \N ofyg@dgqwoz-iosyz.egd \N all_genders_avatar.png 2026-04-14 16:09:59.331138 2026-04-14 16:09:59.331138 1 {mobilePhone} \N +230 \N \N zkoj@zkqflofztkjxttk.gku \N all_genders_avatar.png 2026-04-14 16:09:59.356157 2026-04-14 16:09:59.356157 1 {mobilePhone} \N +231 \N \N ustoeiztosiqwtf@dgctusgwqs.rt \N all_genders_avatar.png 2026-04-14 16:09:59.382439 2026-04-14 16:09:59.382439 1 {mobilePhone} \N +232 \N \N hqkozqtzoleit@qaqrtdot.gku \N all_genders_avatar.png 2026-04-14 16:09:59.407403 2026-04-14 16:09:59.407403 1 {mobilePhone} \N +233 \N \N ofyg@htqet-zkqof-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.427382 2026-04-14 16:09:59.427382 1 {mobilePhone} \N +234 \N \N ofyg@voagwxtlm.wtksof \N all_genders_avatar.png 2026-04-14 16:09:59.452352 2026-04-14 16:09:59.452352 1 {mobilePhone} \N +235 \N \N utleiqtyzllztsst@hofts.rt \N all_genders_avatar.png 2026-04-14 16:09:59.47859 2026-04-14 16:09:59.47859 1 {mobilePhone} \N +236 \N \N ofyg@jxqkzttkq.rt \N all_genders_avatar.png 2026-04-14 16:09:59.498858 2026-04-14 16:09:59.498858 1 {mobilePhone} \N +237 \N \N ktyxuog@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:09:59.524732 2026-04-14 16:09:59.524732 1 {mobilePhone} \N +238 \N \N ofyg@ktolzkgddts-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:59.549553 2026-04-14 16:09:59.549553 1 {mobilePhone} \N +239 \N \N iqmtd.qwrtskqidqf@le-igkxl.egd \N all_genders_avatar.png 2026-04-14 16:09:59.57091 2026-04-14 16:09:59.57091 1 {mobilePhone} \N +240 \N \N agfzqaz@iqfuqk7.rt \N all_genders_avatar.png 2026-04-14 16:09:59.59442 2026-04-14 16:09:59.59442 1 {mobilePhone} \N +241 \N \N agfzqaz@lhkqeieqyt-hgsfolei.gku \N all_genders_avatar.png 2026-04-14 16:09:59.620423 2026-04-14 16:09:59.620423 1 {mobilePhone} \N +242 \N \N ofyg@zoa-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.640212 2026-04-14 16:09:59.640212 1 {mobilePhone} \N +243 \N \N ofyg@fqeiwqkleiqyyz-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:59.667231 2026-04-14 16:09:59.667231 1 {mobilePhone} \N +244 \N \N ofyg@zxtkaoleitkykqxtfctktof-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.692347 2026-04-14 16:09:59.692347 1 {mobilePhone} \N +245 \N \N ztqd@xtwtkrtfztsstkkqfr.gku \N all_genders_avatar.png 2026-04-14 16:09:59.721725 2026-04-14 16:09:59.721725 1 {mobilePhone} \N +246 \N \N ofyg@btfogf.gku \N all_genders_avatar.png 2026-04-14 16:09:59.74108 2026-04-14 16:09:59.74108 1 {mobilePhone} \N +247 \N \N dqos@bgeioexoeqzs.rt \N all_genders_avatar.png 2026-04-14 16:09:59.770917 2026-04-14 16:09:59.770917 1 {mobilePhone} \N +248 \N \N sq-ktr@sq-ktr.tx \N all_genders_avatar.png 2026-04-14 16:09:59.794525 2026-04-14 16:09:59.794525 1 {mobilePhone} \N +249 \N \N ofyg@nqqkwtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.813253 2026-04-14 16:09:59.813253 1 {mobilePhone} \N +250 \N \N ofyg@mqao-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:59.837335 2026-04-14 16:09:59.837335 1 {mobilePhone} \N +251 \N \N ofyg-mcxr@xak.ftz \N all_genders_avatar.png 2026-04-14 16:09:59.866245 2026-04-14 16:09:59.866245 1 {mobilePhone} \N +252 \N \N agfzqaz@k-soeiztfwtku.rt \N all_genders_avatar.png 2026-04-14 16:09:59.885286 2026-04-14 16:09:59.885286 1 {mobilePhone} \N +253 \N \N stozxfu.lhqet3ukgv@ykqxtfaktolt-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.909121 2026-04-14 16:09:59.909121 1 {mobilePhone} \N +254 \N \N zigdql.wknqfz@wq-di.ctkvqsz-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.933131 2026-04-14 16:09:59.933131 1 {mobilePhone} \N +255 \N \N leixst@rka-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.952286 2026-04-14 16:09:59.952286 1 {mobilePhone} \N +256 \N \N ktazgkqz@qli-wtksof.tx \N all_genders_avatar.png 2026-04-14 16:09:59.97125 2026-04-14 16:09:59.97125 1 {mobilePhone} \N +257 \N \N ofyg@qxlwosrxfu-gzq.rt \N all_genders_avatar.png 2026-04-14 16:09:59.99109 2026-04-14 16:09:59.99109 1 {mobilePhone} \N +258 \N \N vtsegdt-qssoqfet@hkgptezzgutzitk.gku \N all_genders_avatar.png 2026-04-14 16:10:00.146462 2026-04-14 16:10:00.146462 1 {mobilePhone} \N +259 \N \N iqssg@r-l-t-t.rt \N all_genders_avatar.png 2026-04-14 16:10:00.203403 2026-04-14 16:10:00.203403 1 {mobilePhone} \N +260 \N \N ofyg@tqlntkdqf.gku \N all_genders_avatar.png 2026-04-14 16:10:00.235474 2026-04-14 16:10:00.235474 1 {mobilePhone} \N +261 \N \N gtmstd.eofqk@hyi-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:00.268387 2026-04-14 16:10:00.268387 1 {mobilePhone} \N +262 \N \N lzqrzqeatk@htuqlxludwi.rt \N all_genders_avatar.png 2026-04-14 16:10:00.301445 2026-04-14 16:10:00.301445 1 {mobilePhone} \N +263 \N \N q.leidtrrofu@lzoyzxfu-wtksoftk-stwtf.rt \N all_genders_avatar.png 2026-04-14 16:10:00.327549 2026-04-14 16:10:00.327549 1 {mobilePhone} \N +264 \N \N ofyg@cglzts.rt \N all_genders_avatar.png 2026-04-14 16:10:00.354276 2026-04-14 16:10:00.354276 1 {mobilePhone} \N +265 \N \N qla@qla-rguqf.rt \N all_genders_avatar.png 2026-04-14 16:10:00.373892 2026-04-14 16:10:00.373892 1 {mobilePhone} \N +266 \N \N ofyg@pxdq-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:00.400212 2026-04-14 16:10:00.400212 1 {mobilePhone} \N +267 \N \N dqos@roqagfotvtka-lodtgf.rt \N all_genders_avatar.png 2026-04-14 16:10:00.429563 2026-04-14 16:10:00.429563 1 {mobilePhone} \N +268 \N \N wtksof@uktfmuqtfut.ftz \N all_genders_avatar.png 2026-04-14 16:10:00.458824 2026-04-14 16:10:00.458824 1 {mobilePhone} \N +269 \N \N qyuiqfolzqf-agdoztt-wtksof@gxzsgga.rt grtk ofyg@qyuiqfolzqfagdoztt.rt / lqrtd.uqwwqkq37@udqos.egd / kqiodlqyo@z-gfsoft.rt \N all_genders_avatar.png 2026-04-14 16:10:00.483266 2026-04-14 16:10:00.483266 1 {mobilePhone} \N +270 \N \N qaqrtdot@tiktfqdz.rt \N all_genders_avatar.png 2026-04-14 16:10:00.508272 2026-04-14 16:10:00.508272 1 {mobilePhone} \N +271 \N \N qaofrq@btfogf.gku \N all_genders_avatar.png 2026-04-14 16:10:00.53371 2026-04-14 16:10:00.53371 1 {mobilePhone} \N +272 \N \N ofyg@qdqkgygkg.rt \N all_genders_avatar.png 2026-04-14 16:10:00.560033 2026-04-14 16:10:00.560033 1 {mobilePhone} \N +273 \N \N tcq.sotweitf@udb.ftz \N all_genders_avatar.png 2026-04-14 16:10:00.590875 2026-04-14 16:10:00.590875 1 {mobilePhone} \N +274 \N \N ofyg@qdxwtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:00.617998 2026-04-14 16:10:00.617998 1 {mobilePhone} \N +275 \N \N wrw@wrw-utkdqfn.rt \N all_genders_avatar.png 2026-04-14 16:10:00.64469 2026-04-14 16:10:00.64469 1 {mobilePhone} \N +276 \N \N ofyg@wtksof-iosyz.egd \N all_genders_avatar.png 2026-04-14 16:10:00.665779 2026-04-14 16:10:00.665779 1 {mobilePhone} \N +277 \N \N stuqs@wtksofzgwgkrtkl.gku \N all_genders_avatar.png 2026-04-14 16:10:00.694487 2026-04-14 16:10:00.694487 1 {mobilePhone} \N +278 \N \N ofyg@wtulhg.rt \N all_genders_avatar.png 2026-04-14 16:10:00.723093 2026-04-14 16:10:00.723093 1 {mobilePhone} \N +279 \N \N tiktfqdz@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:10:00.751816 2026-04-14 16:10:00.751816 1 {mobilePhone} \N +280 \N \N wquyq@wquyq.rt \N all_genders_avatar.png 2026-04-14 16:10:00.781948 2026-04-14 16:10:00.781948 1 {mobilePhone} \N +281 \N \N ofyg@wqyy-mtfzktf.gku \N all_genders_avatar.png 2026-04-14 16:10:00.822001 2026-04-14 16:10:00.822001 1 {mobilePhone} \N +282 \N \N ztqd@wxfzaoeazuxz.rt \N all_genders_avatar.png 2026-04-14 16:10:00.890946 2026-04-14 16:10:00.890946 1 {mobilePhone} \N +283 \N \N ytkql.qwgxlqsti@ofztkaxsqk.rt \N all_genders_avatar.png 2026-04-14 16:10:00.922619 2026-04-14 16:10:00.922619 1 {mobilePhone} \N +284 \N \N ofyg@eqkozql-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:00.966377 2026-04-14 16:10:00.966377 1 {mobilePhone} \N +285 \N \N ofyg@eiqwtksof.gku \N all_genders_avatar.png 2026-04-14 16:10:00.994978 2026-04-14 16:10:00.994978 1 {mobilePhone} \N +286 \N \N agfzqaz@sfgw.ftz \N all_genders_avatar.png 2026-04-14 16:10:01.017213 2026-04-14 16:10:01.017213 1 {mobilePhone} \N +287 \N \N ofyg@rqal-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:01.046382 2026-04-14 16:10:01.046382 1 {mobilePhone} \N +288 \N \N ofyg@rtaqwkolztf.gku \N all_genders_avatar.png 2026-04-14 16:10:01.07698 2026-04-14 16:10:01.07698 1 {mobilePhone} \N +289 \N \N ofyg@hqkozqtz.gku \N all_genders_avatar.png 2026-04-14 16:10:01.107561 2026-04-14 16:10:01.107561 1 {mobilePhone} \N +290 \N \N ofyg@rpg-iosyz.rt \N all_genders_avatar.png 2026-04-14 16:10:01.133308 2026-04-14 16:10:01.133308 1 {mobilePhone} \N +291 \N \N mui@mui-ykotrtfqx.rt \N all_genders_avatar.png 2026-04-14 16:10:01.183309 2026-04-14 16:10:01.183309 1 {mobilePhone} \N +292 \N \N ofyg@yqwkoa-glsgtk-lzkqllt.rt \N all_genders_avatar.png 2026-04-14 16:10:01.370808 2026-04-14 16:10:01.370808 1 {mobilePhone} \N +293 \N \N wxtkg@ysxteizsofulkqz-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:01.485343 2026-04-14 16:10:01.485343 1 {mobilePhone} \N +294 \N \N agfzqaz@dod-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:01.5473 2026-04-14 16:10:01.5473 1 {mobilePhone} \N +295 \N \N ofyg@yktovossoutfqutfzxk.ofyg \N all_genders_avatar.png 2026-04-14 16:10:01.580129 2026-04-14 16:10:01.580129 1 {mobilePhone} \N +296 \N \N egtftf@ugsrftzm-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:01.609904 2026-04-14 16:10:01.609904 1 {mobilePhone} \N +297 \N \N ofyg@uyh-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:01.63271 2026-04-14 16:10:01.63271 1 {mobilePhone} \N +298 \N \N ofyg@ugcgsxfzttk.egd \N all_genders_avatar.png 2026-04-14 16:10:01.664543 2026-04-14 16:10:01.664543 1 {mobilePhone} \N +299 \N \N ofyg@rtxzleisqfr.io.gku \N all_genders_avatar.png 2026-04-14 16:10:01.698894 2026-04-14 16:10:01.698894 1 {mobilePhone} \N +300 \N \N wqwts-wtksof@z-gfsoft.rt \N all_genders_avatar.png 2026-04-14 16:10:01.725426 2026-04-14 16:10:01.725426 1 {mobilePhone} \N +301 \N \N wtksof-lxtrvtlz@itoslqkdtt.rt \N all_genders_avatar.png 2026-04-14 16:10:01.754035 2026-04-14 16:10:01.754035 1 {mobilePhone} \N +302 \N \N utleiqtyzllztsst@vok-ftzmvtka.rt \N all_genders_avatar.png 2026-04-14 16:10:01.820025 2026-04-14 16:10:01.820025 1 {mobilePhone} \N +303 \N \N agfzqaz@igxlt-gy-ktlgxketl.wtksof \N all_genders_avatar.png 2026-04-14 16:10:01.888712 2026-04-14 16:10:01.888712 1 {mobilePhone} \N +304 \N \N ofyg@icr-ww.rt \N all_genders_avatar.png 2026-04-14 16:10:01.990146 2026-04-14 16:10:01.990146 1 {mobilePhone} \N +305 \N \N ofyg@gsqdqor.gku \N all_genders_avatar.png 2026-04-14 16:10:02.141629 2026-04-14 16:10:02.141629 1 {mobilePhone} \N +306 \N \N ofyg@pgiqffoztk.rt \N all_genders_avatar.png 2026-04-14 16:10:02.197322 2026-04-14 16:10:02.197322 1 {mobilePhone} \N +307 \N \N ofyg@awv.rt \N all_genders_avatar.png 2026-04-14 16:10:02.281927 2026-04-14 16:10:02.281927 1 {mobilePhone} \N +308 \N \N ofyg@squyq.wtksof \N all_genders_avatar.png 2026-04-14 16:10:02.325797 2026-04-14 16:10:02.325797 1 {mobilePhone} \N +309 \N \N owkqiodgcq@sqfrtlyktovossoutfqutfzxk.wtksof \N all_genders_avatar.png 2026-04-14 16:10:02.355551 2026-04-14 16:10:02.355551 1 {mobilePhone} \N +310 \N \N agkdqffg@rka-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:02.384992 2026-04-14 16:10:02.384992 1 {mobilePhone} \N +311 \N \N wtkqzxfu@sqkq-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:02.447895 2026-04-14 16:10:02.447895 1 {mobilePhone} \N +312 \N \N ofyg@stkfsqwgk.wtksof \N all_genders_avatar.png 2026-04-14 16:10:02.501913 2026-04-14 16:10:02.501913 1 {mobilePhone} \N +313 \N \N ofyg@stzlqez.rt \N all_genders_avatar.png 2026-04-14 16:10:02.540129 2026-04-14 16:10:02.540129 1 {mobilePhone} \N +314 \N \N vow@vow-pxutfr.rt \N all_genders_avatar.png 2026-04-14 16:10:02.576873 2026-04-14 16:10:02.576873 1 {mobilePhone} \N +315 \N \N ofyg.wtksof@dqsztltk.gku \N all_genders_avatar.png 2026-04-14 16:10:02.628373 2026-04-14 16:10:02.628373 1 {mobilePhone} \N +316 \N \N ofygkdqzogf@fwil.rt \N all_genders_avatar.png 2026-04-14 16:10:02.659055 2026-04-14 16:10:02.659055 1 {mobilePhone} \N +317 \N \N ofyg@ftm-ftxagtssf.rt; lxtfftdqff@ftm-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:10:02.716141 2026-04-14 16:10:02.716141 1 {mobilePhone} \N +318 \N \N ofyg@glaqk.wtksof \N all_genders_avatar.png 2026-04-14 16:10:02.76581 2026-04-14 16:10:02.76581 1 {mobilePhone} \N +319 \N \N hktkfq@htghstwtngfrwgkrtkl.gku \N all_genders_avatar.png 2026-04-14 16:10:02.811581 2026-04-14 16:10:02.811581 1 {mobilePhone} \N +320 \N \N qfft@ktro-leiggs.gku \N all_genders_avatar.png 2026-04-14 16:10:02.84172 2026-04-14 16:10:02.84172 1 {mobilePhone} \N +321 \N \N ofyg@kse-wtksof.gku \N all_genders_avatar.png 2026-04-14 16:10:02.866999 2026-04-14 16:10:02.866999 1 {mobilePhone} \N +322 \N \N ofyg@lqctziteiosrktf.rt \N all_genders_avatar.png 2026-04-14 16:10:02.906591 2026-04-14 16:10:02.906591 1 {mobilePhone} \N +323 \N \N cgklzqfr@leigtftwtku-iosyz.rt \N all_genders_avatar.png 2026-04-14 16:10:02.93465 2026-04-14 16:10:02.93465 1 {mobilePhone} \N +324 \N \N lhgkzwxfr@slw-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:02.98343 2026-04-14 16:10:02.98343 1 {mobilePhone} \N +325 \N \N lzm-itsstklrgky-glz@tc-dozztfrkof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.018568 2026-04-14 16:10:03.018568 1 {mobilePhone} \N +326 \N \N ofyg@ziyvtsegdt.rt \N all_genders_avatar.png 2026-04-14 16:10:03.052206 2026-04-14 16:10:03.052206 1 {mobilePhone} \N +327 \N \N ofyg@xsdt89.rt \N all_genders_avatar.png 2026-04-14 16:10:03.083084 2026-04-14 16:10:03.083084 1 {mobilePhone} \N +328 \N \N ofyg@coq-of-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.116977 2026-04-14 16:10:03.116977 1 {mobilePhone} \N +329 \N \N ofyg@vtsswtofu2tctkngft.egd \N all_genders_avatar.png 2026-04-14 16:10:03.140977 2026-04-14 16:10:03.140977 1 {mobilePhone} \N +330 \N \N qktmg.iqorqko@zxtkgtyyftk-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:03.168436 2026-04-14 16:10:03.168436 1 {mobilePhone} \N +331 \N \N uvcwsf@qgs.egd \N all_genders_avatar.png 2026-04-14 16:10:03.204763 2026-04-14 16:10:03.204763 1 {mobilePhone} \N +332 \N \N wtff-vosdtklrgky@dzl-lgeoqsrtlouf.egd \N all_genders_avatar.png 2026-04-14 16:10:03.227854 2026-04-14 16:10:03.227854 1 {mobilePhone} \N +333 \N \N wtff@lgmroq.rt \N all_genders_avatar.png 2026-04-14 16:10:03.260564 2026-04-14 16:10:03.260564 1 {mobilePhone} \N +334 \N \N wtff.ytffhyxis.wtksof@epr.rt \N all_genders_avatar.png 2026-04-14 16:10:03.283834 2026-04-14 16:10:03.283834 1 {mobilePhone} \N +335 \N \N wtff@qsz-ili.rt \N all_genders_avatar.png 2026-04-14 16:10:03.309357 2026-04-14 16:10:03.309357 1 {mobilePhone} \N +336 \N \N wtff.vqkztfwtku@lgmroq.rt \N all_genders_avatar.png 2026-04-14 16:10:03.3425 2026-04-14 16:10:03.3425 1 {mobilePhone} \N +337 \N \N ofyg@wtff-wsxdwtkutkrqdd.rt \N all_genders_avatar.png 2026-04-14 16:10:03.366019 2026-04-14 16:10:03.366019 1 {mobilePhone} \N +338 \N \N wtff-ssl@lzthiqfxl.gku \N all_genders_avatar.png 2026-04-14 16:10:03.391163 2026-04-14 16:10:03.391163 1 {mobilePhone} \N +339 \N \N wtff@dqkmqif-lxtr.rt \N all_genders_avatar.png 2026-04-14 16:10:03.427495 2026-04-14 16:10:03.427495 1 {mobilePhone} \N +340 \N \N wtff-vozztfwtkutk@vttwtkhqkzftk.rt \N all_genders_avatar.png 2026-04-14 16:10:03.455999 2026-04-14 16:10:03.455999 1 {mobilePhone} \N +341 \N \N wtff.hsxl@rka-wtksof-fgkrglz.rt \N all_genders_avatar.png 2026-04-14 16:10:03.481861 2026-04-14 16:10:03.481861 1 {mobilePhone} \N +342 \N \N wtff-wkozm@dzl-lgeoqsrtlouf.egd \N all_genders_avatar.png 2026-04-14 16:10:03.511762 2026-04-14 16:10:03.511762 1 {mobilePhone} \N +343 \N \N agfzqaz@wtff-wxei.rt \N all_genders_avatar.png 2026-04-14 16:10:03.53632 2026-04-14 16:10:03.53632 1 {mobilePhone} \N +344 \N \N vtolltfltt@qu-lhql.rt \N all_genders_avatar.png 2026-04-14 16:10:03.559642 2026-04-14 16:10:03.559642 1 {mobilePhone} \N +345 \N \N ofyg@wtffoddc.rt \N all_genders_avatar.png 2026-04-14 16:10:03.583383 2026-04-14 16:10:03.583383 1 {mobilePhone} \N +346 \N \N agfzqaz@wtff-ztutslxtr.rt \N all_genders_avatar.png 2026-04-14 16:10:03.608563 2026-04-14 16:10:03.608563 1 {mobilePhone} \N +347 \N \N wtff@vozztfqx-lxtr.rt \N all_genders_avatar.png 2026-04-14 16:10:03.633435 2026-04-14 16:10:03.633435 1 {mobilePhone} \N +348 \N \N wtff-iqatfytsrt@dzl-lgeoqsrtlouf.egd \N all_genders_avatar.png 2026-04-14 16:10:03.655522 2026-04-14 16:10:03.655522 1 {mobilePhone} \N +349 \N \N wtff-lzqqatf@uvc-ittklzkqllt.rt \N all_genders_avatar.png 2026-04-14 16:10:03.679505 2026-04-14 16:10:03.679505 1 {mobilePhone} \N +350 \N \N wtff-iofrtfwxkurqdd@solz-udwi.rt \N all_genders_avatar.png 2026-04-14 16:10:03.708579 2026-04-14 16:10:03.708579 1 {mobilePhone} \N +351 \N \N wtff.dq-zt@qu-lhql.rt \N all_genders_avatar.png 2026-04-14 16:10:03.731955 2026-04-14 16:10:03.731955 1 {mobilePhone} \N +352 \N \N wtff-qsstfrt-cotkzts@solz-udwi.rt \N all_genders_avatar.png 2026-04-14 16:10:03.753864 2026-04-14 16:10:03.753864 1 {mobilePhone} \N +353 \N \N ofyg@wtff-qszusotfoeat.rt \N all_genders_avatar.png 2026-04-14 16:10:03.780088 2026-04-14 16:10:03.780088 1 {mobilePhone} \N +354 \N \N ofztukqzogf@wq-lm.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.81318 2026-04-14 16:10:03.81318 1 {mobilePhone} \N +355 \N \N fofq.leigsm@wq-lm.wtksof.rt; tfuqutdtfz@wq-lm.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.83945 2026-04-14 16:10:03.83945 1 {mobilePhone} \N +356 \N \N ofztukqzogflwtqxyzkquztk@eiqksgzztfwxku-vosdtklrgky.rt \N all_genders_avatar.png 2026-04-14 16:10:03.863071 2026-04-14 16:10:03.863071 1 {mobilePhone} \N +357 \N \N hkoleq.dqkzquxtz@eiqksgzztfwxku-vosdtklrgky.rt \N all_genders_avatar.png 2026-04-14 16:10:03.893094 2026-04-14 16:10:03.893094 1 {mobilePhone} \N +358 \N \N lqikq.ftss@wq-ya.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.921123 2026-04-14 16:10:03.921123 1 {mobilePhone} \N +359 \N \N ygkgxmqf.ygkgxui@wq-ya.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.948089 2026-04-14 16:10:03.948089 1 {mobilePhone} \N +360 \N \N pgiqffq.agtlztkl@wq-dozzt.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.976654 2026-04-14 16:10:03.976654 1 {mobilePhone} \N +361 \N \N fgtdo.dqptk@wq-dozzt.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.012141 2026-04-14 16:10:04.012141 1 {mobilePhone} \N +362 \N \N yqwoqf.ftikofu@soeiztfwtku.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.045327 2026-04-14 16:10:04.045327 1 {mobilePhone} \N +363 \N \N okofq.hsqz@soeiztfwtku.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.0768 2026-04-14 16:10:04.0768 1 {mobilePhone} \N +364 \N \N miqffq.akqdtk@soeiztfwtku.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.110078 2026-04-14 16:10:04.110078 1 {mobilePhone} \N +365 \N \N aqziqkofq.lzgteas@wq-za.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.165871 2026-04-14 16:10:04.165871 1 {mobilePhone} \N +366 \N \N ofztukqzogflwtqxyzkquzt@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.197028 2026-04-14 16:10:04.197028 1 {mobilePhone} \N +367 \N \N kgdn.hgvosl@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.232232 2026-04-14 16:10:04.232232 1 {mobilePhone} \N +368 \N \N qkoqft.gkzdqff@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.259971 2026-04-14 16:10:04.259971 1 {mobilePhone} \N +369 \N \N dqb.dtotk@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.289163 2026-04-14 16:10:04.289163 1 {mobilePhone} \N +370 \N \N dqkzof.htztkl@wq-lhqfrqx.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.324786 2026-04-14 16:10:04.324786 1 {mobilePhone} \N +371 \N \N ei.laokrt@wq-lhqfrqx.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.355095 2026-04-14 16:10:04.355095 1 {mobilePhone} \N +372 \N \N pxsoqfq.kqdd@ktofoeatfrgky.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.385967 2026-04-14 16:10:04.385967 1 {mobilePhone} \N +373 \N \N \N 5797 71398687 all_genders_avatar.png 2026-04-14 16:10:04.414736 2026-04-14 16:10:04.414736 1 {mobilePhone} \N +374 \N \N qfft.lhtea@wq-hqfagv.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.425696 2026-04-14 16:10:04.425696 1 {mobilePhone} \N +375 \N \N ofyg@zww-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.454207 2026-04-14 16:10:04.454207 1 {mobilePhone} \N +376 \N \N ofyg@atof-qwltozl.rt \N all_genders_avatar.png 2026-04-14 16:10:04.485153 2026-04-14 16:10:04.485153 1 {mobilePhone} \N +377 \N \N ofyg@zgkiqxlwtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.515225 2026-04-14 16:10:04.515225 1 {mobilePhone} \N +378 \N \N iqssg@ofztkaxsqk.rt \N all_genders_avatar.png 2026-04-14 16:10:04.544071 2026-04-14 16:10:04.544071 1 {mobilePhone} \N +379 \N \N ygkgxui.uioqlo@wq-lm.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.568446 2026-04-14 16:10:04.568446 1 {mobilePhone} \N +380 \N \N ofyg@sosohqrsowkqkn.gku \N all_genders_avatar.png 2026-04-14 16:10:04.590906 2026-04-14 16:10:04.590906 1 {mobilePhone} \N +381 \N \N wtkxy@hqfagv-iosyz.rt \N all_genders_avatar.png 2026-04-14 16:10:04.615623 2026-04-14 16:10:04.615623 1 {mobilePhone} \N +382 \N \N hglz@estqfxhzkthfoea.rt \N all_genders_avatar.png 2026-04-14 16:10:04.641397 2026-04-14 16:10:04.641397 1 {mobilePhone} \N +383 \N \N dozdqeitf@ugcgsxfzttk.egd \N all_genders_avatar.png 2026-04-14 16:10:04.6624 2026-04-14 16:10:04.6624 1 {mobilePhone} \N +384 \N \N ofyg@okqfoleitutdtofrt.rt, ofztukqzogflsgzltf@okqfoleitutdtofrt.rt \N all_genders_avatar.png 2026-04-14 16:10:04.702229 2026-04-14 16:10:04.702229 1 {mobilePhone} \N +385 \N \N dqos@ghtfzofn.rt \N all_genders_avatar.png 2026-04-14 16:10:04.784373 2026-04-14 16:10:04.784373 1 {mobilePhone} \N +386 \N \N hqlistn@sqfrtlyktovossoutfqutfzxk.wtksof \N all_genders_avatar.png 2026-04-14 16:10:04.811915 2026-04-14 16:10:04.811915 1 {mobilePhone} \N +387 \N \N qrrol.utwktaorqf@ow.rt, qrkoqf.rt.lgxmq.dqkzofl@ow.rt, lqkqi.yqrzat@ow.rt \N all_genders_avatar.png 2026-04-14 16:10:04.842137 2026-04-14 16:10:04.842137 1 {mobilePhone} \N +388 \N \N aqdqfr.qlqro@plr.rt \N all_genders_avatar.png 2026-04-14 16:10:04.869613 2026-04-14 16:10:04.869613 1 {mobilePhone} \N +389 \N \N dqos@xtwtkstwtf.gku \N all_genders_avatar.png 2026-04-14 16:10:04.895522 2026-04-14 16:10:04.895522 1 {mobilePhone} \N +390 \N \N wtksof@qsth-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:04.933743 2026-04-14 16:10:04.933743 1 {mobilePhone} \N +391 \N \N hkxtylzqfr@ktykqz.ix-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.968136 2026-04-14 16:10:04.968136 1 {mobilePhone} \N +392 Iqfftl \N Wqkzm qvg-ktyxuoxd-ukxtfqx@qvg-dozzt.rt 5797 107 833 79 all_genders_avatar.png 2026-04-14 16:10:05.098495 2026-04-14 16:10:05.098495 1 {mobilePhone} \N +393 Iqfftl \N Wqkzm wqkzm@qvg-dozzt.rt 5797 107 833 79 all_genders_avatar.png 2026-04-14 16:10:05.110258 2026-04-14 16:10:05.110258 1 {mobilePhone} \N +394 \N \N tiktfqdz@aofrtkaxszxkdgfqz.rt \N all_genders_avatar.png 2026-04-14 16:10:05.156962 2026-04-14 16:10:05.156962 1 {mobilePhone} \N +395 \N \N wtksof@ktygkxd.og \N all_genders_avatar.png 2026-04-14 16:10:05.179944 2026-04-14 16:10:05.179944 1 {mobilePhone} \N +396 \N \N cil@soeiztfwtku.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.21518 2026-04-14 16:10:05.21518 1 {mobilePhone} \N +397 \N \N hglz@cilhqfagv.rt \N all_genders_avatar.png 2026-04-14 16:10:05.236148 2026-04-14 16:10:05.236148 1 {mobilePhone} \N +398 \N \N ofyg@cil-lhqfrqx.rt \N all_genders_avatar.png 2026-04-14 16:10:05.257427 2026-04-14 16:10:05.257427 1 {mobilePhone} \N +399 \N \N cil@ktofoeatfrgky.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.278319 2026-04-14 16:10:05.278319 1 {mobilePhone} \N +400 \N \N ofygcil@wq-di.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.299004 2026-04-14 16:10:05.299004 1 {mobilePhone} \N +401 \N \N hglz@cilza.rt \N all_genders_avatar.png 2026-04-14 16:10:05.320506 2026-04-14 16:10:05.320506 1 {mobilePhone} \N +402 \N \N cilofyg@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:10:05.340493 2026-04-14 16:10:05.340493 1 {mobilePhone} \N +403 \N \N cil@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.361397 2026-04-14 16:10:05.361397 1 {mobilePhone} \N +404 \N \N dokoqd.sxeiztkiqfrz@hqkqukqy7.rt \N all_genders_avatar.png 2026-04-14 16:10:05.388782 2026-04-14 16:10:05.388782 1 {mobilePhone} \N +405 Qkzqf \N Mtaq ux-wtlltdtk-ww@ow.rt 5793 318 991 53 all_genders_avatar.png 2026-04-14 16:10:05.445774 2026-04-14 16:10:05.445774 1 {mobilePhone} \N +406 \N \N ux-kgtwsofulzkqllt@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:05.472904 2026-04-14 16:10:05.472904 1 {mobilePhone} \N +407 \N \N yqeiqxyloeiz.tiktfqdz@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:10:05.499898 2026-04-14 16:10:05.499898 1 {mobilePhone} \N +408 \N \N vgifitod-itortk@igzdqos.rt 5703 434 9759 all_genders_avatar.png 2026-04-14 16:10:05.537667 2026-04-14 16:10:05.537667 1 {mobilePhone} \N +409 \N \N ofyg@wtregf.ftz \N all_genders_avatar.png 2026-04-14 16:10:05.563521 2026-04-14 16:10:05.563521 1 {mobilePhone} \N +410 \N \N igdt.q.wtngfr@udqos.egd \N all_genders_avatar.png 2026-04-14 16:10:05.591072 2026-04-14 16:10:05.591072 1 {mobilePhone} \N +411 \N \N ofyg@aokeitfqlns.rt \N all_genders_avatar.png 2026-04-14 16:10:05.618181 2026-04-14 16:10:05.618181 1 {mobilePhone} \N +412 \N \N ofyg@qazogf-yi.rt \N all_genders_avatar.png 2026-04-14 16:10:05.644977 2026-04-14 16:10:05.644977 1 {mobilePhone} \N +413 \N \N wsqolt.ytktz-hgagl@wtksof-qorliosyt.rt \N all_genders_avatar.png 2026-04-14 16:10:05.671152 2026-04-14 16:10:05.671152 1 {mobilePhone} \N +414 \N \N ofyg@wva-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.697475 2026-04-14 16:10:05.697475 1 {mobilePhone} \N +415 \N \N ctktofokqfoleitkysxteizsofut@udb.rt \N all_genders_avatar.png 2026-04-14 16:10:05.720009 2026-04-14 16:10:05.720009 1 {mobilePhone} \N +416 \N \N ofyg@wgfq-htoltk.rt \N all_genders_avatar.png 2026-04-14 16:10:05.748235 2026-04-14 16:10:05.748235 1 {mobilePhone} \N +417 \N \N qlzkteatkz@wosrxfuldqkaz.gku; qkkocg-iglhozqsozn@wosrxfuldqkaz.rt \N all_genders_avatar.png 2026-04-14 16:10:05.773703 2026-04-14 16:10:05.773703 1 {mobilePhone} \N +418 \N \N ofyg@l30.rt \N all_genders_avatar.png 2026-04-14 16:10:05.794669 2026-04-14 16:10:05.794669 1 {mobilePhone} \N +419 \N \N f.cotz-wtksof@udb.rt \N all_genders_avatar.png 2026-04-14 16:10:05.836932 2026-04-14 16:10:05.836932 1 {mobilePhone} \N +420 \N \N agfzqaz@lgdqsol-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.863988 2026-04-14 16:10:05.863988 1 {mobilePhone} \N +421 \N \N iqxl-aghtkfoaxl@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:10:05.910406 2026-04-14 16:10:05.910406 1 {mobilePhone} \N +422 Yosom \N Iqbiqp iqbiqp@wtksoftk-lzqrzdollogf.rt 5705 3590161 all_genders_avatar.png 2026-04-14 16:10:05.920697 2026-04-14 16:10:05.920697 1 {mobilePhone} \N +423 Esqkq \N Gldq gldq@qvg-dozzt.rt 57152861332 all_genders_avatar.png 2026-04-14 16:10:05.993777 2026-04-14 16:10:05.993777 1 {mobilePhone} \N +424 Ptffo \N Dozzqu dozzqu@qvg-dozzt.rt 579703495688 all_genders_avatar.png 2026-04-14 16:10:06.009441 2026-04-14 16:10:06.009441 1 {mobilePhone} \N +425 Okofq \N Sgyofa sqfrlwtkutk-qsstt.357-359@syu-w.rt 5797 03 04 82 69 all_genders_avatar.png 2026-04-14 16:10:06.093843 2026-04-14 16:10:06.093843 1 {mobilePhone} \N +426 Ykqfetleq \N Leqkqyoq swq.tiktfqdz@syu-w.rt +26 797 71398220 all_genders_avatar.png 2026-04-14 16:10:06.104143 2026-04-14 16:10:06.104143 1 {mobilePhone} \N +427 Uxorg \N Leivqkm wgiflrgkytk-vtu.757@syu-w.rt 5797 795 011 89 all_genders_avatar.png 2026-04-14 16:10:06.192501 2026-04-14 16:10:06.192501 1 {mobilePhone} \N +428 \N \N qvg-ktyxuoxd-ugztfwxkutk@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:10:06.228203 2026-04-14 16:10:06.228203 1 {mobilePhone} \N +429 \N \N vgzqf@rka-dxtuutslhktt.rt 5708 14 90 455 all_genders_avatar.png 2026-04-14 16:10:06.250368 2026-04-14 16:10:06.250368 1 {mobilePhone} \N +430 Dqurqstfq \N Lmqdh qd-kxrgsyhsqzm.8-2@syu-w.rt 5797 038 618 12 all_genders_avatar.png 2026-04-14 16:10:06.324687 2026-04-14 16:10:06.324687 1 {mobilePhone} \N +431 Doeitst \N Wgkmo qlaqfotkkofu.05@syu-w.rt 5797 03 04 53 38 all_genders_avatar.png 2026-04-14 16:10:06.346178 2026-04-14 16:10:06.346178 1 {mobilePhone} \N +432 Yk. \N Dqkb p.dqkb@fgcxd-iglhozqsozn.egd \N all_genders_avatar.png 2026-04-14 16:10:06.368722 2026-04-14 16:10:06.368722 1 {mobilePhone} \N +433 Ktfqzt \N Rmoxa ktfqzt.rmoxa@ow.rt 57904 9923701 all_genders_avatar.png 2026-04-14 16:10:06.379119 2026-04-14 16:10:06.379119 1 {mobilePhone} \N +434 \N \N dqkzofq.agtift@rgkdtkg.rt \N all_genders_avatar.png 2026-04-14 16:10:06.400681 2026-04-14 16:10:06.400681 1 {mobilePhone} \N +435 Uvtfinyqk \N Wüeiftk uvtfinyqk.wüeiftk@ow.rt 5797 337 364 95 all_genders_avatar.png 2026-04-14 16:10:06.410818 2026-04-14 16:10:06.410818 1 {mobilePhone} \N +436 Ik. \N Itif k.itif@qstelq-igzts.rt 5707 984 3773 all_genders_avatar.png 2026-04-14 16:10:06.436283 2026-04-14 16:10:06.436283 1 {mobilePhone} \N +437 Qdn \N Moddtkdqff moddtkdqff@qvg-dozzt.rt 5797 96388990 all_genders_avatar.png 2026-04-14 16:10:06.450205 2026-04-14 16:10:06.450205 1 {mobilePhone} \N +438 Ik. \N Hkqriqf hkqriqf@udb.rt \N all_genders_avatar.png 2026-04-14 16:10:06.506566 2026-04-14 16:10:06.506566 1 {mobilePhone} \N +439 Uvtfinyqk \N Wüeiftk uvtfinyqk.wxteiftk@ow.rt 5797 337 364 95 all_genders_avatar.png 2026-04-14 16:10:06.521317 2026-04-14 16:10:06.521317 1 {mobilePhone} \N +440 Uvtfinyqk \N Wüeiftk uvtfinyqk.wxteiftk@ow.rt 5797 337 364 95 all_genders_avatar.png 2026-04-14 16:10:06.56709 2026-04-14 16:10:06.56709 1 {mobilePhone} \N +441 Uvtfinyqk \N Wüeiftk uvtfinyqk.wüeiftk@ow.rt 5797 337 364 95 all_genders_avatar.png 2026-04-14 16:10:06.600368 2026-04-14 16:10:06.600368 1 {mobilePhone} \N +442 \N \N ud@igzts-qd-ustolrktotea.rt \N all_genders_avatar.png 2026-04-14 16:10:06.633428 2026-04-14 16:10:06.633428 1 {mobilePhone} \N +443 \N \N aqkof.wqkfqkr@plr.rt \N all_genders_avatar.png 2026-04-14 16:10:06.674147 2026-04-14 16:10:06.674147 1 {mobilePhone} \N +444 Lctzsqfq \N Tcrgaodgcq lctzsqfq.tcrgaodgcq@plr.rt 57935 2091853 all_genders_avatar.png 2026-04-14 16:10:06.685015 2026-04-14 16:10:06.685015 1 {mobilePhone} \N +445 \N \N ofyg@ux-jxtrsofwxkutk.rt \N all_genders_avatar.png 2026-04-14 16:10:06.715201 2026-04-14 16:10:06.715201 1 {mobilePhone} \N +446 Qwrxssqi \N Pgfqor tiktfqdzlaggkrofqzogf@ux-jxtrsofwxkutk.rt 585 3883 7617 – 21 all_genders_avatar.png 2026-04-14 16:10:06.725722 2026-04-14 16:10:06.725722 1 {mobilePhone} \N +447 Yqkkgai \N Dqirqcoliqiko lgmoqsqkwtoz@ux-jxtrsofwxkutk.rt \N all_genders_avatar.png 2026-04-14 16:10:06.736147 2026-04-14 16:10:06.736147 1 {mobilePhone} \N +448 \N \N dqfqutk@tfpgnigzts.rt \N all_genders_avatar.png 2026-04-14 16:10:06.757443 2026-04-14 16:10:06.757443 1 {mobilePhone} \N +449 Yk. \N Wqxduqkztf z.wqxduqkztf@ystbhktll.ofyg 5707 144 69 95 all_genders_avatar.png 2026-04-14 16:10:06.798373 2026-04-14 16:10:06.798373 1 {mobilePhone} \N +450 Yk. \N Wqxduqkztf z.wqxduqkztf@ystbhktll.ofyg 5707 144 69 95 all_genders_avatar.png 2026-04-14 16:10:06.821221 2026-04-14 16:10:06.821221 1 {mobilePhone} \N +451 Ik. \N Dgsst zktlagvlzkqllt.72@syu-w.rt 5797 030 453 76 all_genders_avatar.png 2026-04-14 16:10:06.844971 2026-04-14 16:10:06.844971 1 {mobilePhone} \N +452 Ftsso \N Akqxlt ftsso.akqxlt@syu-w.rt +26 797 795 022 14 all_genders_avatar.png 2026-04-14 16:10:06.855268 2026-04-14 16:10:06.855268 1 {mobilePhone} \N +453 Aqziqkofq \N Hgis aqziqkofq.hgis@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:10:06.865241 2026-04-14 16:10:06.865241 1 {mobilePhone} \N +454 Trkoll \N Wtikqp wtikqp@qvg-dozzt.rt 57050202443 all_genders_avatar.png 2026-04-14 16:10:06.921721 2026-04-14 16:10:06.921721 1 {mobilePhone} \N +455 Qstlloq \N Qkwxlzofo qstlloq.qkwxlzofo@ow.rt +26 79049990859 all_genders_avatar.png 2026-04-14 16:10:06.932089 2026-04-14 16:10:06.932089 1 {mobilePhone} \N +456 \N \N lzl757@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:10:07.312491 2026-04-14 16:10:07.312491 1 {mobilePhone} \N +457 Cqstfzofq \N Egssq cqstfzofq.egssq@cgsallgsorqkozqtz.rt 5797 79544432 all_genders_avatar.png 2026-04-14 16:10:07.323015 2026-04-14 16:10:07.323015 1 {mobilePhone} \N +458 \N \N kxrgvtk-lzkqllt.742@syu-w.rt 5797 713 98 224 all_genders_avatar.png 2026-04-14 16:10:07.390249 2026-04-14 16:10:07.390249 1 {mobilePhone} \N +459 Cogsq \N Vofztklztof of-rtf-wqxtkfuqtkztf.3@syu-w.rt 5797 71398224 all_genders_avatar.png 2026-04-14 16:10:07.413546 2026-04-14 16:10:07.413546 1 {mobilePhone} \N +460 \N \N \N 5797 7139 8224 all_genders_avatar.png 2026-04-14 16:10:07.425023 2026-04-14 16:10:07.425023 1 {mobilePhone} \N +461 \N \N agfzqaz@rrqeqrtdn.rt \N all_genders_avatar.png 2026-04-14 16:10:07.458156 2026-04-14 16:10:07.458156 1 {mobilePhone} \N +462 \N \N o.cnlitdoklaqnq@axszxkleiqyyz.rt \N all_genders_avatar.png 2026-04-14 16:10:07.490172 2026-04-14 16:10:07.490172 1 {mobilePhone} \N +463 \N \N agvleitm@lza774.rt ugkkol@lza744.rt \N all_genders_avatar.png 2026-04-14 16:10:07.524392 2026-04-14 16:10:07.524392 1 {mobilePhone} \N +464 \N \N ofyg@axszxkstwtf-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.555147 2026-04-14 16:10:07.555147 1 {mobilePhone} \N +465 \N \N qfqlzqloq.lxrmosgclaqnq@wckt.rt \N all_genders_avatar.png 2026-04-14 16:10:07.585452 2026-04-14 16:10:07.585452 1 {mobilePhone} \N +466 \N \N lzqrzztosdxtzztk@wtziqfoq.rt \N all_genders_avatar.png 2026-04-14 16:10:07.621458 2026-04-14 16:10:07.621458 1 {mobilePhone} \N +467 \N \N ofyg@aotmzqfrtd.rt \N all_genders_avatar.png 2026-04-14 16:10:07.654109 2026-04-14 16:10:07.654109 1 {mobilePhone} \N +468 \N \N ofyg@wxfz-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.693087 2026-04-14 16:10:07.693087 1 {mobilePhone} \N +469 \N \N dqeiwqk@leiosrakgtzt-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.724454 2026-04-14 16:10:07.724454 1 {mobilePhone} \N +470 \N \N leixst@zog-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.75388 2026-04-14 16:10:07.75388 1 {mobilePhone} \N +471 \N \N ts-dqiro@qutfl-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.782907 2026-04-14 16:10:07.782907 1 {mobilePhone} \N +472 \N \N ofyg@lztkftfyoleitk.gku \N all_genders_avatar.png 2026-04-14 16:10:07.81566 2026-04-14 16:10:07.81566 1 {mobilePhone} \N +473 \N \N btfoq.ukxtfofu@ow.rt \N all_genders_avatar.png 2026-04-14 16:10:07.844834 2026-04-14 16:10:07.844834 1 {mobilePhone} \N +474 \N \N ofyg@uwm-utkdqfn.gku \N all_genders_avatar.png 2026-04-14 16:10:07.875694 2026-04-14 16:10:07.875694 1 {mobilePhone} \N +475 \N \N ofyg@tztiqrwtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.905171 2026-04-14 16:10:07.905171 1 {mobilePhone} \N +476 \N \N d.uqkrolo@ohlgegfztbz.gku \N all_genders_avatar.png 2026-04-14 16:10:07.932247 2026-04-14 16:10:07.932247 1 {mobilePhone} \N +477 \N \N dqos@cgklhots-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.963161 2026-04-14 16:10:07.963161 1 {mobilePhone} \N +478 \N \N ofyg@qkzocolztf.gku \N all_genders_avatar.png 2026-04-14 16:10:07.994976 2026-04-14 16:10:07.994976 1 {mobilePhone} \N +479 \N \N wwa-sofrt@lqsqdaxszxkesxw.rt \N all_genders_avatar.png 2026-04-14 16:10:08.02774 2026-04-14 16:10:08.02774 1 {mobilePhone} \N +480 \N \N wtff-dotktfrgkyyoflts@dzl-lgeoqsrtlouf.egd \N all_genders_avatar.png 2026-04-14 16:10:08.076118 2026-04-14 16:10:08.076118 1 {mobilePhone} \N +481 \N \N ofyg@gyytftzxtk.ftz \N all_genders_avatar.png 2026-04-14 16:10:08.168016 2026-04-14 16:10:08.168016 1 {mobilePhone} \N +482 \N \N dokpqd.tatsdqff@vokutlzqsztftc.rt \N all_genders_avatar.png 2026-04-14 16:10:08.199603 2026-04-14 16:10:08.199603 1 {mobilePhone} \N +483 \N \N kxealqea@qvg-lhktt-vxist.rt \N all_genders_avatar.png 2026-04-14 16:10:08.235471 2026-04-14 16:10:08.235471 1 {mobilePhone} \N +484 \N \N tiktfqdz@hlc-zkthzgv.rt \N all_genders_avatar.png 2026-04-14 16:10:08.259078 2026-04-14 16:10:08.259078 1 {mobilePhone} \N +485 \N \N ofyg@wtkqzxfulftzm-doukqzogf.rt \N all_genders_avatar.png 2026-04-14 16:10:08.298486 2026-04-14 16:10:08.298486 1 {mobilePhone} \N +486 \N \N ofyg@mxaxfyz-dtdgkoqs.gku \N all_genders_avatar.png 2026-04-14 16:10:08.370118 2026-04-14 16:10:08.370118 1 {mobilePhone} \N +487 \N \N ofyg@esqcol-leixst.rt \N all_genders_avatar.png 2026-04-14 16:10:08.403494 2026-04-14 16:10:08.403494 1 {mobilePhone} \N +1351 Fqrqc \N Fok \N \N \N 2026-04-20 13:44:53.208722 2026-04-20 13:44:53.208722 \N {mobilePhone} \N +488 \N \N vqkleiqxtk-hsqzm.1@syu-w.rt 5797 79 50 41 91 all_genders_avatar.png 2026-04-14 16:10:08.428834 2026-04-14 16:10:08.428834 1 {mobilePhone} \N +489 \N \N ofyg@kovvts.tx \N all_genders_avatar.png 2026-04-14 16:10:08.457005 2026-04-14 16:10:08.457005 1 {mobilePhone} \N +490 \N \N ofyg@utzldqkzqaqrtdot.rt \N all_genders_avatar.png 2026-04-14 16:10:08.48875 2026-04-14 16:10:08.48875 1 {mobilePhone} \N +491 \N \N qxlwosrxfu@zxtkgtyyftk-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:08.517217 2026-04-14 16:10:08.517217 1 {mobilePhone} \N +492 \N \N lqkqi.xssdqff@ofrqtr-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:08.545332 2026-04-14 16:10:08.545332 1 {mobilePhone} \N +493 Nqldof \N Sqfutfoea lgfftfqsstt.20-26@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:10:08.582216 2026-04-14 16:10:08.582216 1 {mobilePhone} \N +494 Votwat \N Yofatfvokzi lgq.tiktfqdz@syu-w.rt 579703861890 all_genders_avatar.png 2026-04-14 16:10:08.593536 2026-04-14 16:10:08.593536 1 {mobilePhone} \N +495 Xskoat \N Leiközztk leikgtzztk@dozztsigy.gku 57023277168 all_genders_avatar.png 2026-04-14 16:10:08.633099 2026-04-14 16:10:08.633099 1 {mobilePhone} \N +496 Ik. \N Qbfoea ykotrtkoat@lgmoqstl-wtksof.egd \N all_genders_avatar.png 2026-04-14 16:10:08.658956 2026-04-14 16:10:08.658956 1 {mobilePhone} \N +497 Yk. \N Leifthy ittklzk.stozxfu@tx-igdteqkt.egd 5797 028 951 41 all_genders_avatar.png 2026-04-14 16:10:08.7275 2026-04-14 16:10:08.7275 1 {mobilePhone} \N +498 \N \N ittklzk.tiktf@tx-igdteqkt.egd \N all_genders_avatar.png 2026-04-14 16:10:08.739432 2026-04-14 16:10:08.739432 1 {mobilePhone} \N +499 \N \N ittklzk.lgmoqs@tx-igdteqkt.egd 57097702733 all_genders_avatar.png 2026-04-14 16:10:08.753933 2026-04-14 16:10:08.753933 1 {mobilePhone} \N +500 Ykqx \N Wqxduqkztf z.wqxduqkztf@ystbhktll.ofyg 5707 – 144 69 95 all_genders_avatar.png 2026-04-14 16:10:08.798194 2026-04-14 16:10:08.798194 1 {mobilePhone} \N +501 \N \N hgzlrqdtk@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:10:08.82322 2026-04-14 16:10:08.82322 1 {mobilePhone} \N +502 \N \N ul792-stozxfu@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:10:08.847483 2026-04-14 16:10:08.847483 1 {mobilePhone} \N +503 Tsomqctzq \N Vosstkz tsomqctzq.vosstkz@cgsallgsorqkozqtz.rt 579779544459 all_genders_avatar.png 2026-04-14 16:10:08.859507 2026-04-14 16:10:08.859507 1 {mobilePhone} \N +504 \N \N rotlztkvtulzkqllt.33-31@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:10:08.881539 2026-04-14 16:10:08.881539 1 {mobilePhone} \N +505 \N \N lzkqllt-783.78@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:10:08.912965 2026-04-14 16:10:08.912965 1 {mobilePhone} \N +506 \N \N agzzodgwos@agzzowtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:08.969314 2026-04-14 16:10:08.969314 1 {mobilePhone} \N +507 \N \N gyyoet@axszxkftlz.gku \N all_genders_avatar.png 2026-04-14 16:10:08.996869 2026-04-14 16:10:08.996869 1 {mobilePhone} \N +508 \N \N hkgsolga84@udqos.egd \N all_genders_avatar.png 2026-04-14 16:10:09.037783 2026-04-14 16:10:09.037783 1 {mobilePhone} \N +509 \N \N ftzmvtka@iqfrwggautkdqfn.rt \N all_genders_avatar.png 2026-04-14 16:10:09.064447 2026-04-14 16:10:09.064447 1 {mobilePhone} \N +510 \N \N ofyg@ysgzzt-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.127513 2026-04-14 16:10:09.127513 1 {mobilePhone} \N +511 \N \N agfzqaz@igxlt-gy-ktlgxetl.wtksof \N all_genders_avatar.png 2026-04-14 16:10:09.15781 2026-04-14 16:10:09.15781 1 {mobilePhone} \N +512 Yk. \N Ligkgv yqsatfwtkutk@hkolgr-vgiftf.rt 5793 523 479 26 all_genders_avatar.png 2026-04-14 16:10:09.184602 2026-04-14 16:10:09.184602 1 {mobilePhone} \N +513 \N \N yqeilztsst@yqokdotztf-yqokvgiftf.rt \N all_genders_avatar.png 2026-04-14 16:10:09.221985 2026-04-14 16:10:09.221985 1 {mobilePhone} \N +514 \N \N vyk@uom.wtksof \N all_genders_avatar.png 2026-04-14 16:10:09.2524 2026-04-14 16:10:09.2524 1 {mobilePhone} \N +515 \N \N ofyg@dxloe-ygk-ortfzozn.egd qsqfowkqiod.uzk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:10:09.28642 2026-04-14 16:10:09.28642 1 {mobilePhone} \N +516 \N \N qrfw@zww-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.321669 2026-04-14 16:10:09.321669 1 {mobilePhone} \N +517 \N \N ofyg@esqod-qssoqfm.rt \N all_genders_avatar.png 2026-04-14 16:10:09.352074 2026-04-14 16:10:09.352074 1 {mobilePhone} \N +518 \N \N wtkqzxfu@qrql-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.383076 2026-04-14 16:10:09.383076 1 {mobilePhone} \N +519 \N \N ofyg@yqdosotfwxtkg-soeiztfwtku.rt \N all_genders_avatar.png 2026-04-14 16:10:09.412375 2026-04-14 16:10:09.412375 1 {mobilePhone} \N +520 \N \N wosofuxqsozqtzqsleiqfet@udqos.egd \N all_genders_avatar.png 2026-04-14 16:10:09.440481 2026-04-14 16:10:09.440481 1 {mobilePhone} \N +521 \N \N wtksof@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:10:09.494004 2026-04-14 16:10:09.494004 1 {mobilePhone} \N +522 \N \N ofyg@aokeitutdtofrt-lzqqatf.rt \N all_genders_avatar.png 2026-04-14 16:10:09.532014 2026-04-14 16:10:09.532014 1 {mobilePhone} \N +523 \N \N colzq@colzqwtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.560515 2026-04-14 16:10:09.560515 1 {mobilePhone} \N +524 \N \N agfzqaz@axfutkaotm.rt \N all_genders_avatar.png 2026-04-14 16:10:09.589738 2026-04-14 16:10:09.589738 1 {mobilePhone} \N +525 \N \N agfzqaz@aotmasxw-qsstfrt-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:09.619201 2026-04-14 16:10:09.619201 1 {mobilePhone} \N +526 \N \N tiktfqdz@wq-dozzt.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.648542 2026-04-14 16:10:09.648542 1 {mobilePhone} \N +527 \N \N ofyg@wdwylypltkcoet.wxfr.rt \N all_genders_avatar.png 2026-04-14 16:10:09.682384 2026-04-14 16:10:09.682384 1 {mobilePhone} \N +528 \N \N ztqd@egddxfozntdhgvtkdtfz.rt \N all_genders_avatar.png 2026-04-14 16:10:09.706257 2026-04-14 16:10:09.706257 1 {mobilePhone} \N +529 \N \N ofyg@fqeiiosy-lhkqeitf-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.733251 2026-04-14 16:10:09.733251 1 {mobilePhone} \N +530 \N \N vtkalzqzz@iqxlrtklzqzolzoa.gku \N all_genders_avatar.png 2026-04-14 16:10:09.756302 2026-04-14 16:10:09.756302 1 {mobilePhone} \N +531 \N \N ofyg@dgdtfz-dqs.gku \N all_genders_avatar.png 2026-04-14 16:10:09.784465 2026-04-14 16:10:09.784465 1 {mobilePhone} \N +532 \N \N ofyg@axszxkleiqyyz.rt \N all_genders_avatar.png 2026-04-14 16:10:09.813031 2026-04-14 16:10:09.813031 1 {mobilePhone} \N +533 \N \N ofyg@hqfrq-hsqzygkdq.wtksof \N all_genders_avatar.png 2026-04-14 16:10:09.861175 2026-04-14 16:10:09.861175 1 {mobilePhone} \N +534 \N \N odhktllxd@utlgwqx.rt \N all_genders_avatar.png 2026-04-14 16:10:09.889142 2026-04-14 16:10:09.889142 1 {mobilePhone} \N +535 \N \N ofyg@agdhtztfm-vqlltk.rt \N all_genders_avatar.png 2026-04-14 16:10:09.917517 2026-04-14 16:10:09.917517 1 {mobilePhone} \N +536 \N \N y.fqtitk@apli.rt, q.kothtk@apic.rt \N all_genders_avatar.png 2026-04-14 16:10:09.946789 2026-04-14 16:10:09.946789 1 {mobilePhone} \N +537 \N \N t-dqos: agfzqaz@zitllq-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:09.992134 2026-04-14 16:10:09.992134 1 {mobilePhone} \N +538 \N \N dqos@eiteaxh-ofyg.rt \N all_genders_avatar.png 2026-04-14 16:10:10.039539 2026-04-14 16:10:10.039539 1 {mobilePhone} \N +539 \N \N iw@xfogfiosylvtka.rt \N all_genders_avatar.png 2026-04-14 16:10:10.072187 2026-04-14 16:10:10.072187 1 {mobilePhone} \N +540 \N \N agfzqaz@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:10:10.147595 2026-04-14 16:10:10.147595 1 {mobilePhone} \N +541 \N \N roqsgu@xfogfiosylvtka.rt \N all_genders_avatar.png 2026-04-14 16:10:10.177186 2026-04-14 16:10:10.177186 1 {mobilePhone} \N +542 \N \N raiv@raiv.rt \N all_genders_avatar.png 2026-04-14 16:10:10.226151 2026-04-14 16:10:10.226151 1 {mobilePhone} \N +543 \N \N ofyg@eiosrktfgyuxztfwtku.rt \N all_genders_avatar.png 2026-04-14 16:10:10.25535 2026-04-14 16:10:10.25535 1 {mobilePhone} \N +544 \N \N ofyg@agl-jxqsozqtz.rt \N all_genders_avatar.png 2026-04-14 16:10:10.28667 2026-04-14 16:10:10.28667 1 {mobilePhone} \N +545 \N \N t-dqos agfzqaz@gyytfloc67.rt \N all_genders_avatar.png 2026-04-14 16:10:10.336683 2026-04-14 16:10:10.336683 1 {mobilePhone} \N +546 \N \N ofyg@lnsctlztk-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:10.366814 2026-04-14 16:10:10.366814 1 {mobilePhone} \N +547 \N \N ofyg@zxtkgtyyftk-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:10.39461 2026-04-14 16:10:10.39461 1 {mobilePhone} \N +548 \N \N etktf.wgsqz@lgmoqstl-wtksof.egd \N all_genders_avatar.png 2026-04-14 16:10:10.47497 2026-04-14 16:10:10.47497 1 {mobilePhone} \N +549 \N \N pqfrtea@lzxtzmkqr.rt 5799 11528850 all_genders_avatar.png 2026-04-14 16:10:10.50832 2026-04-14 16:10:10.50832 1 {mobilePhone} \N +551 \N \N q.leidorz@rpg-ww.rt \N all_genders_avatar.png 2026-04-14 16:10:10.622952 2026-04-14 16:10:10.622952 1 {mobilePhone} \N +552 Ykqx \N Züdhzftk zxtdhzftk@ktofigsr-wxkutk-leixst.rt 57069613054 all_genders_avatar.png 2026-04-14 16:10:10.650903 2026-04-14 16:10:10.650903 1 {mobilePhone} \N +553 Qdn \N Moddtkdqff moddtkdqff@qvg-dozzt.rt 579040177422 all_genders_avatar.png 2026-04-14 16:10:10.81095 2026-04-14 16:10:10.81095 1 {mobilePhone} \N +554 Lgyoq \N Utsyqfr lgutsyqfr@udqos.egd +2679356931412 all_genders_avatar.png 2026-04-14 16:11:18.202345 2026-04-14 16:11:18.202345 2 {mobilePhone} \N +555 Tsolqwtzi \N \N tsolqwtzi_kgltfakqfm@z-gfsoft.rt \N all_genders_avatar.png 2026-04-14 16:11:18.498506 2026-04-14 16:11:18.498506 2 {mobilePhone} \N +556 Eikolzoft \N \N zofgxlittf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.551852 2026-04-14 16:11:18.551852 2 {mobilePhone} \N +557 LqattfqZqsqz \N \N lqattfq.zqsqz@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.60714 2026-04-14 16:11:18.60714 2 {mobilePhone} \N +558 Tsstft \N \N tsstft.iqkzgxfoqf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.655022 2026-04-14 16:11:18.655022 2 {mobilePhone} \N +559 Qstpqfrkg \N Wgfqzzg qstpqfrkg_wgfqzzg@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:18.720375 2026-04-14 16:11:18.720375 2 {mobilePhone} \N +560 Dnziko \N \N dnziko.eiqfrkqdgiqf77@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.812957 2026-04-14 16:11:18.812957 2 {mobilePhone} \N +561 Qsoft \N \N qsoftk.tcqfutsolzq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.871433 2026-04-14 16:11:18.871433 2 {mobilePhone} \N +562 Doq \N \N doqlrqkdqvqf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.940183 2026-04-14 16:11:18.940183 2 {mobilePhone} \N +563 Csqrolsqc \N Zodglitfag aorqsc3573@udqos.egd 57040910234 all_genders_avatar.png 2026-04-14 16:11:19.012129 2026-04-14 16:11:19.012129 2 {mobilePhone} \N +564 Tsoqfq \N Egleioufqfg tso.egleioufqfg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.280355 2026-04-14 16:11:19.280355 2 {mobilePhone} \N +565 Qffq \N Aqkqhohtkorol qffqaqkqhohtkorol@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.344068 2026-04-14 16:11:19.344068 2 {mobilePhone} \N +566 Hqxsq \N Wktxeadqff hqxsq.wktxeadqff@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.409275 2026-04-14 16:11:19.409275 2 {mobilePhone} \N +567 Lqkq \N Htktug htktuglqkq51@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:19.551554 2026-04-14 16:11:19.551554 2 {mobilePhone} \N +568 Iqliqqd \N Qidtr l.qidtr.iqliqqd@udqos.egd 57189702177 all_genders_avatar.png 2026-04-14 16:11:19.633472 2026-04-14 16:11:19.633472 2 {mobilePhone} \N +569 Wqkol \N Aqkqsqk aqkqsqkwqkol@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.730711 2026-04-14 16:11:19.730711 2 {mobilePhone} \N +570 Qstai \N Qfos qstaiqfos7@udqos.egd 70183934784 all_genders_avatar.png 2026-04-14 16:11:19.803387 2026-04-14 16:11:19.803387 2 {mobilePhone} \N +571 Dqkotsq \N Mtfrtpql dqkotsq.mtfrtpql@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.879086 2026-04-14 16:11:19.879086 2 {mobilePhone} \N +572 Aqzofaq \N Hod aqzofaqhod37@oesgxr.egd \N all_genders_avatar.png 2026-04-14 16:11:19.939958 2026-04-14 16:11:19.939958 2 {mobilePhone} \N +573 Ykqfao \N Ptfaofl yuptfaofl@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.02694 2026-04-14 16:11:20.02694 2 {mobilePhone} \N +574 Pxsoq \N Kxlzgf pxsoqkxlzgf7666@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.087046 2026-04-14 16:11:20.087046 2 {mobilePhone} \N +575 Foea \N Ctkitxs foeactkitxs@soct.fs +87122241023 all_genders_avatar.png 2026-04-14 16:11:20.205932 2026-04-14 16:11:20.205932 2 {mobilePhone} \N +576 Foagsq \N Říigcá foagsq.koigcq71@ltmfqd.em +235 033091341 all_genders_avatar.png 2026-04-14 16:11:20.275056 2026-04-14 16:11:20.275056 2 {mobilePhone} \N +577 Twkx \N Rxiqf t.rxklf@igzdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.385224 2026-04-14 16:11:20.385224 2 {mobilePhone} \N +578 Ykqfetleq \N \N dtnykqfetleq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.462294 2026-04-14 16:11:20.462294 2 {mobilePhone} \N +579 Eqdosst \N Sxe eqdosstdsxe@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.525392 2026-04-14 16:11:20.525392 2 {mobilePhone} \N +580 Soff \N Wsgdacolz soff.d.wsgdacolz@udqos.egd +2064470198 all_genders_avatar.png 2026-04-14 16:11:20.592653 2026-04-14 16:11:20.592653 2 {mobilePhone} \N +581 Uxn \N Fgkzgf uxnfgkzgf@hkgzgf.dt 579738195413 all_genders_avatar.png 2026-04-14 16:11:20.686547 2026-04-14 16:11:20.686547 2 {mobilePhone} \N +582 Sxpqof \N Dqflgxk iqmtd_sxpqof@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:20.749152 2026-04-14 16:11:20.749152 2 {mobilePhone} \N +583 Nqktf \N Qçıauöm lxrt.qeoaugm@igzdqos.egd +26 7182988325 all_genders_avatar.png 2026-04-14 16:11:20.817818 2026-04-14 16:11:20.817818 2 {mobilePhone} \N +584 Eqkgsoft \N \N el.dqftfg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.937316 2026-04-14 16:11:20.937316 2 {mobilePhone} \N +585 Fqpow \N Lqrqqz fqpttw.lmx@udqos.egd 579082756039 all_genders_avatar.png 2026-04-14 16:11:21.110401 2026-04-14 16:11:21.110401 2 {mobilePhone} \N +586 Odkqf \N Dgiqddqr litoaiodkqflok@udqos.egd 579373437886 all_genders_avatar.png 2026-04-14 16:11:21.257479 2026-04-14 16:11:21.257479 2 {mobilePhone} \N +587 Ftst \N Rotzkoei fbrotzkoei@udqos.egd +26 793 98868811 all_genders_avatar.png 2026-04-14 16:11:21.331631 2026-04-14 16:11:21.331631 2 {mobilePhone} \N +588 Qstpqfrkq \N Dgkof qstpqfrkqcopos@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.444918 2026-04-14 16:11:21.444918 2 {mobilePhone} \N +589 Pttz \N Ziqaaqk pttz.ziqaaqkk@udqos.egd 5708 9882286 all_genders_avatar.png 2026-04-14 16:11:21.513288 2026-04-14 16:11:21.513288 2 {mobilePhone} \N +590 Fqkutl \N Zgnltkaqfo fqkutll.dz@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.580097 2026-04-14 16:11:21.580097 2 {mobilePhone} \N +591 Qrqd \N \N qrqd.qfrzkqgkt@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.662209 2026-04-14 16:11:21.662209 2 {mobilePhone} \N +592 Qwiodqfnx \N Lofui qwiodqfnx7lofui57@udqos.egd +26 70148816212 all_genders_avatar.png 2026-04-14 16:11:21.752073 2026-04-14 16:11:21.752073 2 {mobilePhone} \N +593 Cqstfzofq \N Wgrofo cqstfzofq.wgrofo68@udqos.egd +2670185112899 all_genders_avatar.png 2026-04-14 16:11:21.811925 2026-04-14 16:11:21.811925 2 {mobilePhone} \N +594 Xdqok \N Lqkykqm qjxqrtlzkxezgk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.876975 2026-04-14 16:11:21.876975 2 {mobilePhone} \N +595 Tkuof \N Tutso tutsotkuof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.966037 2026-04-14 16:11:21.966037 2 {mobilePhone} \N +596 Foegsq \N Dtssgk foaao.dtssgk7@udqos.egd +220646536032 all_genders_avatar.png 2026-04-14 16:11:22.052315 2026-04-14 16:11:22.052315 2 {mobilePhone} \N +597 pgltyofq \N tkkqmaof pgltyofq.tkkqmaof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:22.144682 2026-04-14 16:11:22.144682 2 {mobilePhone} \N +598 Ltsof \N Wqs ltsoffwqs60@udqos.egd 579095196954 all_genders_avatar.png 2026-04-14 16:11:22.215094 2026-04-14 16:11:22.215094 2 {mobilePhone} \N +599 Coezgk \N Lgffzqu kqhiqtslgffzqu@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:22.37141 2026-04-14 16:11:22.37141 2 {mobilePhone} \N +600 Fqriossq \N Dqmqnq fqriossqdqmqnq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:22.441862 2026-04-14 16:11:22.441862 2 {mobilePhone} \N +601 Fqfr \N Liqkdq fqfrxxhqrinqn64@udqos.egd 570134937279 all_genders_avatar.png 2026-04-14 16:11:22.554666 2026-04-14 16:11:22.554666 2 {mobilePhone} \N +602 Qfrktq \N Gkzom qfrktqgkxom71@udqos.egd +82 176014767 all_genders_avatar.png 2026-04-14 16:11:22.736208 2026-04-14 16:11:22.736208 2 {mobilePhone} \N +603 Hios \N Eqzzqfo hios_eqzzqfo@lzqkzdqos.egd +267004457074 all_genders_avatar.png 2026-04-14 16:11:22.813341 2026-04-14 16:11:22.813341 2 {mobilePhone} \N +604 Lgyot \N Dxfei lgyot_ipgkzlagcdxfei@igzdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:22.901904 2026-04-14 16:11:22.901904 2 {mobilePhone} \N +605 Uvnfozi \N Zxeatk uvnfoziz@udqos.egd +2670196700935 all_genders_avatar.png 2026-04-14 16:11:22.971041 2026-04-14 16:11:22.971041 2 {mobilePhone} \N +606 Zqdolq \N Igfrq lttagigfrq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.069472 2026-04-14 16:11:23.069472 2 {mobilePhone} \N +607 Koeiqkr \N Vqftatnq koeiqkr.vqftatnq@udqos.egd +2679092487808 all_genders_avatar.png 2026-04-14 16:11:23.116795 2026-04-14 16:11:23.116795 2 {mobilePhone} \N +608 Kqixs \N Hkglhtk kqixsptklgfd@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.276808 2026-04-14 16:11:23.276808 2 {mobilePhone} \N +609 Qsuiqozi \N Qsqlql \N +2670111471871 all_genders_avatar.png 2026-04-14 16:11:23.361782 2026-04-14 16:11:23.361782 2 {mobilePhone} \N +610 Ptffoytk \N \N ptffoytkpqolgf58@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.459919 2026-04-14 16:11:23.459919 2 {mobilePhone} \N +611 Dqrrn \N Wsqea dpwsqea3535@gxzsgga.egd 50083346578 all_genders_avatar.png 2026-04-14 16:11:23.55096 2026-04-14 16:11:23.55096 2 {mobilePhone} \N +612 Fgédot \N Jxoflgf fgtdot.jxoflgf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.658933 2026-04-14 16:11:23.658933 2 {mobilePhone} \N +613 Lodgf \N Trvqkrl lotrvqkrl1@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.725867 2026-04-14 16:11:23.725867 2 {mobilePhone} \N +614 Nqfq \N Ocqfgcq ocqfgcqnqfq@igzdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.789392 2026-04-14 16:11:23.789392 2 {mobilePhone} \N +615 wqrkot \N aiqsoso wqrkoeie@dgslq.ugc.os 5951377788 all_genders_avatar.png 2026-04-14 16:11:23.862317 2026-04-14 16:11:23.862317 2 {mobilePhone} \N +616 Ztllq \N \N ztllq.lhqd@hglztg.rt \N all_genders_avatar.png 2026-04-14 16:11:23.91055 2026-04-14 16:11:23.91055 2 {mobilePhone} \N +617 Qszqï \N \N qszqorqkkotx@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.982434 2026-04-14 16:11:23.982434 2 {mobilePhone} \N +618 Qffq \N Wtmwgkgrgcq qffqwtmwgkgrgcq65@udqos.egd 570180786272 all_genders_avatar.png 2026-04-14 16:11:24.053345 2026-04-14 16:11:24.053345 2 {mobilePhone} \N +619 Cozgkoq \N dqotsg cozgkoqdqotsgwqkktzgdqeiqrg@udqos.egd +26 70133136297 all_genders_avatar.png 2026-04-14 16:11:24.175902 2026-04-14 16:11:24.175902 2 {mobilePhone} \N +620 Uoqfhotzkg \N Wqzzolzxzzo wkouitst@oesgxr.egd +2679799799414 all_genders_avatar.png 2026-04-14 16:11:24.361382 2026-04-14 16:11:24.361382 2 {mobilePhone} \N +621 Lqdok \N Qs-Dqqdggkn lqdok.dle.48@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:24.46903 2026-04-14 16:11:24.46903 2 {mobilePhone} \N +622 Qsolq \N Foaozofq qs.hkofztdhg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:24.66639 2026-04-14 16:11:24.66639 2 {mobilePhone} \N +623 Lofrxpq \N Eiqfrkqltaqkqf lofrxeiqfrkx63@udqos.egd +2679358607216 all_genders_avatar.png 2026-04-14 16:11:24.797053 2026-04-14 16:11:24.797053 3 {mobilePhone} \N +624 Ustw \N Wtsgwgkgrgc wtsuqfustw@udqos.egd +2670113110228 all_genders_avatar.png 2026-04-14 16:11:24.888335 2026-04-14 16:11:24.888335 2 {mobilePhone} \N +625 Ztcrgkt \N Qcqsolicoso ztcrgktqcqsolicoso@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:24.970476 2026-04-14 16:11:24.970476 2 {mobilePhone} \N +626 Dqilior \N Litkqyqz litkqyqz.dqilior@udqos.egd 57067706597 all_genders_avatar.png 2026-04-14 16:11:25.015709 2026-04-14 16:11:25.015709 2 {mobilePhone} \N +627 Qnltuxs \N Gmdtf qnltuxsgmdtf.ox@udqos.egd 570132652576 all_genders_avatar.png 2026-04-14 16:11:25.115663 2026-04-14 16:11:25.115663 2 {mobilePhone} \N +628 Rdozkoo \N \N rcligkmi@udqos.egd +2679358627452 all_genders_avatar.png 2026-04-14 16:11:25.20373 2026-04-14 16:11:25.20373 2 {mobilePhone} \N +629 Iqwow \N olqdos iqwow.oldqts8@udqos.egd +26 701 42843908 all_genders_avatar.png 2026-04-14 16:11:25.313523 2026-04-14 16:11:25.313523 2 {mobilePhone} \N +630 Lqfrkq \N Pqnqdqiq lqfrkqpqnqdqiq255@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:25.496365 2026-04-14 16:11:25.496365 2 {mobilePhone} \N +631 Dqkoq \N Ugdtm dqkoq.ytkfqfrq.ugdtm@mqsqfrg.rt \N all_genders_avatar.png 2026-04-14 16:11:25.581407 2026-04-14 16:11:25.581407 2 {mobilePhone} \N +632 Hqdtsq \N (eggkrofqzgk) hqdtsq.ptlktos@pgofrttr.egd \N all_genders_avatar.png 2026-04-14 16:11:25.658237 2026-04-14 16:11:25.658237 2 {mobilePhone} \N +633 Dosqf \N Qswsofutk doqdoeq7664@igzdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:25.739178 2026-04-14 16:11:25.739178 2 {mobilePhone} \N +634 Qswq \N Dtsuxomg qswqdtsuqh@udqos.egd 5582107489926 all_genders_avatar.png 2026-04-14 16:11:25.857251 2026-04-14 16:11:25.857251 2 {mobilePhone} \N +635 Hqgsq \N Utuq h-utuq@soct.rt +267183719046 all_genders_avatar.png 2026-04-14 16:11:25.921028 2026-04-14 16:11:25.921028 2 {mobilePhone} \N +636 Qstbqfrkq \N Lqliq) l.qstbqfrkq.gksgcq@udqos.egd 579712115502 all_genders_avatar.png 2026-04-14 16:11:26.023702 2026-04-14 16:11:26.023702 2 {mobilePhone} \N +637 Ptlloeq \N rtfItntk ptll.rtfitntk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:26.179611 2026-04-14 16:11:26.179611 2 {mobilePhone} \N +638 Dqkooq \N Ztktlieitfag xfsqwts77@udqos.egd +2671561356797 all_genders_avatar.png 2026-04-14 16:11:26.262087 2026-04-14 16:11:26.262087 2 {mobilePhone} \N +639 Eqksgzzq \N Uttkrl sgzzq.uttkrl@udqos.egd 57028898873 all_genders_avatar.png 2026-04-14 16:11:26.412537 2026-04-14 16:11:26.412537 2 {mobilePhone} \N +640 Dqkcof \N Ioeat ziololdqkcofi@udqos.egd 7 (419) 152- 0269 all_genders_avatar.png 2026-04-14 16:11:26.488168 2026-04-14 16:11:26.488168 2 {mobilePhone} \N +641 Aktšodok \N Ykqfof akykqfof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:26.683176 2026-04-14 16:11:26.683176 2 {mobilePhone} \N +642 Qffq \N Voflsgv ytsoealb@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:26.727508 2026-04-14 16:11:26.727508 2 {mobilePhone} \N +643 Lxlqf \N Vtkt lxlqfvtkt79@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:26.807278 2026-04-14 16:11:26.807278 2 {mobilePhone} \N +644 Olqwts \N \N olqwts.hqzzxmmo@udqos.egd 579084359303 all_genders_avatar.png 2026-04-14 16:11:26.843448 2026-04-14 16:11:26.843448 2 {mobilePhone} \N +645 Etsofq \N Leidorzat etsofqleidorzat@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:26.915397 2026-04-14 16:11:26.915397 2 {mobilePhone} \N +646 Fqrpq \N Lofutk flofutk@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:26.981466 2026-04-14 16:11:26.981466 2 {mobilePhone} \N +647 Lqdlgfrttf \N Rqkt rlqdlgfrttf@udqos.egd 570189689361 all_genders_avatar.png 2026-04-14 16:11:27.043993 2026-04-14 16:11:27.043993 2 {mobilePhone} \N +648 Qrkoqf \N Ktoeigv qrkoqfktoeigv@uggustdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:27.10172 2026-04-14 16:11:27.10172 2 {mobilePhone} \N +649 Qfpq \N Ygkrgf qygkrgf@hglztg.rt \N all_genders_avatar.png 2026-04-14 16:11:27.179588 2026-04-14 16:11:27.179588 2 {mobilePhone} \N +650 DGK \N TOFO dgk.tofo85@udqos.egd 570137290601 all_genders_avatar.png 2026-04-14 16:11:27.253286 2026-04-14 16:11:27.253286 2 {mobilePhone} \N +651 Rqfoos \N \N rqfoos.ugfoadqf.5850@udqos.egd +2679089052229 all_genders_avatar.png 2026-04-14 16:11:27.338023 2026-04-14 16:11:27.338023 2 {mobilePhone} \N +652 Vqpoi \N \N vqpoie73576@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:27.50916 2026-04-14 16:11:27.50916 2 {mobilePhone} \N +653 Pqlgf \N Vggrl vggrl.pql@dt.egd 57030397993 all_genders_avatar.png 2026-04-14 16:11:27.691047 2026-04-14 16:11:27.691047 2 {mobilePhone} \N +654 Aqn \N Ztxwtk aqnztxwtk26@udqos.egd 579357874603 all_genders_avatar.png 2026-04-14 16:11:27.773208 2026-04-14 16:11:27.773208 2 {mobilePhone} \N +655 Dqkoqd \N Qats dqkoqdqwgxqats@udqos.egd 57044687918 all_genders_avatar.png 2026-04-14 16:11:27.835811 2026-04-14 16:11:27.835811 4 {mobilePhone} \N +656 Tsgïlt \N Lofgx tsgolt.lofgx@leotfetlhg.yk 5588 0 22 25 57 20 all_genders_avatar.png 2026-04-14 16:11:27.920012 2026-04-14 16:11:27.920012 2 {mobilePhone} \N +657 Lqwoft \N mtsqfrg lqwoft.ighdqff.sghtm@mqsqfrg.rt \N all_genders_avatar.png 2026-04-14 16:11:27.962091 2026-04-14 16:11:27.962091 2 {mobilePhone} \N +658 dqzo \N \N dqzzuqddot@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.008912 2026-04-14 16:11:28.008912 2 {mobilePhone} \N +659 Kqiqy \N \N kqiqy.qslqwqqui@udqos.egd ‏‪552679728845138‬‏ all_genders_avatar.png 2026-04-14 16:11:28.049002 2026-04-14 16:11:28.049002 2 {mobilePhone} \N +660 lgxaqofq \N ltyyqk ltyyqk.laf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.11137 2026-04-14 16:11:28.11137 2 {mobilePhone} \N +661 Zgwoql \N Zqkfgv zgwo.zqkfgv@udb.rt 55267042977653 all_genders_avatar.png 2026-04-14 16:11:28.233618 2026-04-14 16:11:28.233618 2 {mobilePhone} \N +662 Todqs \N Rqjoj qodqsrqjoj041@udqos.egd +26 790 98335644 all_genders_avatar.png 2026-04-14 16:11:28.310181 2026-04-14 16:11:28.310181 2 {mobilePhone} \N +663 Qstllqfrkq \N Esqka qstllqfrkq.esqka@igzdqos.egd +22 0205553618 all_genders_avatar.png 2026-04-14 16:11:28.484738 2026-04-14 16:11:28.484738 2 {mobilePhone} \N +664 Dtkct \N Quof dtkctquof@udqos.egd +26 7935 2956818 all_genders_avatar.png 2026-04-14 16:11:28.566186 2026-04-14 16:11:28.566186 2 {mobilePhone} \N +665 Lqkq \N Qligxk lqkq.lqdok.46@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.630935 2026-04-14 16:11:28.630935 2 {mobilePhone} \N +666 Yggmont \N Liqnaimqrt litnaimqrt.yq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.743 2026-04-14 16:11:28.743 2 {mobilePhone} \N +667 Dqoiqf \N \N doiqftaiztnqko22@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.849057 2026-04-14 16:11:28.849057 2 {mobilePhone} \N +668 Lxf \N Dxf dxfpgqfft@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.919996 2026-04-14 16:11:28.919996 2 {mobilePhone} \N +669 Hqxs \N Rxstniq hqxs.rxstniq@udqos.egd +88 1 58 42 77 32 all_genders_avatar.png 2026-04-14 16:11:29.013352 2026-04-14 16:11:29.013352 2 {mobilePhone} \N +670 Zodg \N \N qwqzod@vtw.rt 570129838170 all_genders_avatar.png 2026-04-14 16:11:29.112174 2026-04-14 16:11:29.112174 5 {mobilePhone} \N +671 Ykqfetleq \N Wkqxtk ykqffowk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:29.214334 2026-04-14 16:11:29.214334 2 {mobilePhone} \N +672 Taof \N Qazqkoeo qazqkoeotaof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:29.311661 2026-04-14 16:11:29.311661 2 {mobilePhone} \N +673 Dqzosrq \N Uxlzqyllgf dqzosrq.uxlzqyllgf@udb.egd 70115744247 all_genders_avatar.png 2026-04-14 16:11:29.395066 2026-04-14 16:11:29.395066 2 {mobilePhone} \N +674 Eqdosq \N \N eqdtfrgmqcorqs@udqos.egd +267131221249 all_genders_avatar.png 2026-04-14 16:11:29.455578 2026-04-14 16:11:29.455578 2 {mobilePhone} \N +675 Gdqk \N \N gdqk.ad67d@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:29.531311 2026-04-14 16:11:29.531311 2 {mobilePhone} \N +676 Gsuq \N \N cqsstfq999@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:29.604256 2026-04-14 16:11:29.604256 2 {mobilePhone} \N +677 Dqkotsq \N Mtfrtpql hqxsqvxkeit@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:29.675388 2026-04-14 16:11:29.675388 2 {mobilePhone} \N +678 Fqzoq \N Dqaolicoso dqaolicosofqzoq646@udqos.egd 570142022846 all_genders_avatar.png 2026-04-14 16:11:29.779242 2026-04-14 16:11:29.779242 2 {mobilePhone} \N +679 Altfopq \N LxfrtptcQ altfopq.lxfrtptcq@hglztg.ftz \N all_genders_avatar.png 2026-04-14 16:11:29.82597 2026-04-14 16:11:29.82597 2 {mobilePhone} \N +680 Ctkq \N Lieitsaofq odozqzgk@udqos.egd +267043514747 all_genders_avatar.png 2026-04-14 16:11:29.961454 2026-04-14 16:11:29.961454 2 {mobilePhone} \N +681 Hgsofq \N \N hgsvtnr@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.12275 2026-04-14 16:11:30.12275 2 {mobilePhone} \N +682 qffq \N \N zxaqeixsq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.183912 2026-04-14 16:11:30.183912 2 {mobilePhone} \N +683 Dqkoq \N Ugsxwtcq dqkoq.ltkuttcfq.ugsxwtcq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.234749 2026-04-14 16:11:30.234749 2 {mobilePhone} \N +684 Ltkioo \N \N dqeiqokgrxl3573@udqos.egd +26 701 412 62 359 all_genders_avatar.png 2026-04-14 16:11:30.409459 2026-04-14 16:11:30.409459 2 {mobilePhone} \N +685 Wktfrz \N \N yotrstk_wtkfr@nqigg.rt \N all_genders_avatar.png 2026-04-14 16:11:30.550638 2026-04-14 16:11:30.550638 2 {mobilePhone} \N +686 Gfrktp \N Lxkgcte g.lxkgcte@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.658127 2026-04-14 16:11:30.658127 2 {mobilePhone} \N +687 Tmuo \N Roarxk tmuoroarxk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.725589 2026-04-14 16:11:30.725589 2 {mobilePhone} \N +688 Sqowq \N Dqsoa sqowqdqsoa664@udqos.egd 570131921807 all_genders_avatar.png 2026-04-14 16:11:30.814151 2026-04-14 16:11:30.814151 2 {mobilePhone} \N +689 Kqyqts \N Extzg kqyq.wtdwoq@udqos.egd +267032353806 all_genders_avatar.png 2026-04-14 16:11:30.890548 2026-04-14 16:11:30.890548 2 {mobilePhone} \N +690 Iqylq \N Wtffol iqylq.wtffol@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.956189 2026-04-14 16:11:30.956189 2 {mobilePhone} \N +691 Qddqk \N \N qddqkkqsqidqr@udqos.egd 57000370993 all_genders_avatar.png 2026-04-14 16:11:31.065938 2026-04-14 16:11:31.065938 2 {mobilePhone} \N +692 Qolivqknq \N Dxkqso qqolivqknqdxkqso@udqos.egd 57132036535 all_genders_avatar.png 2026-04-14 16:11:31.124737 2026-04-14 16:11:31.124737 2 {mobilePhone} \N +693 Lqfrkq \N Lggdkt lqfffxi@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.171623 2026-04-14 16:11:31.171623 2 {mobilePhone} \N +694 Ltkioo \N \N ltkioo.liztofoagc@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:31.239362 2026-04-14 16:11:31.239362 2 {mobilePhone} \N +695 Qffq \N Doaiqsgclaqoq qffqdoai@ltmfqd.em 570127785660 all_genders_avatar.png 2026-04-14 16:11:31.373434 2026-04-14 16:11:31.373434 2 {mobilePhone} \N +696 Dqkn-Rgkq \N Wsgei-Iqfltf dqknrgkqwi@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.45781 2026-04-14 16:11:31.45781 2 {mobilePhone} \N +697 Ktwteeq \N Ioss kp.ioss32@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.5454 2026-04-14 16:11:31.5454 2 {mobilePhone} \N +698 Qdtsot \N Teatklstn qdtsot.teatklstn@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.639578 2026-04-14 16:11:31.639578 2 {mobilePhone} \N +699 Lqkq \N Ligakqco lqkqligakqco@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:31.718425 2026-04-14 16:11:31.718425 2 {mobilePhone} \N +700 Tkof \N Atslg tkof.dqkoq.atslg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.815918 2026-04-14 16:11:31.815918 2 {mobilePhone} \N +701 Itstf \N Yqsstk itstf.yqsstk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.909888 2026-04-14 16:11:31.909888 2 {mobilePhone} \N +702 Lnscoq \N Eitf lnscoq.n.eitf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:32.03042 2026-04-14 16:11:32.03042 2 {mobilePhone} \N +703 Pxsotz \N Atslg pxsotzdatslg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:32.121539 2026-04-14 16:11:32.121539 2 {mobilePhone} \N +704 Rqfots \N Sghtm aktdtkrqfots@nqigg.rt \N all_genders_avatar.png 2026-04-14 16:11:32.200293 2026-04-14 16:11:32.200293 2 {mobilePhone} \N +705 Qkoqffq \N Rqstkeo qkoqffq.rqstkeo@udqos.egd 552670115222723 all_genders_avatar.png 2026-04-14 16:11:32.282575 2026-04-14 16:11:32.282575 2 {mobilePhone} \N +706 EIKOLZOQF \N IQVATN eikolzoqfiqvatn@udqos.egd 570112331166 all_genders_avatar.png 2026-04-14 16:11:32.369189 2026-04-14 16:11:32.369189 2 {mobilePhone} \N +707 Zkqen \N Yxqr zkqendqnyxqr@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:32.427376 2026-04-14 16:11:32.427376 2 {mobilePhone} \N +708 Iqsq \N Dqkrofo iqsqdqkrofo666@igzdqos.egd 57048946929 all_genders_avatar.png 2026-04-14 16:11:32.486438 2026-04-14 16:11:32.486438 2 {mobilePhone} \N +709 Qffq \N Likqtk qffqlikqtk@udqos.egd 57062354416 all_genders_avatar.png 2026-04-14 16:11:32.583939 2026-04-14 16:11:32.583939 6 {mobilePhone} \N +710 Qffq \N Rofvggrot qffqsgct2@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:32.797589 2026-04-14 16:11:32.797589 2 {mobilePhone} \N +711 Ftqdq \N Aiqstr ftqdqqaqistrdqflgxk738@udqos.egd +357559873009 all_genders_avatar.png 2026-04-14 16:11:32.851528 2026-04-14 16:11:32.851528 2 {mobilePhone} \N +712 Hqxsq \N Gsoctokq hqxsqtddtksofu@udqos.egd 579391927767 all_genders_avatar.png 2026-04-14 16:11:32.965157 2026-04-14 16:11:32.965157 7 {mobilePhone} \N +713 Odqft \N Qsqgxo tsgd.odqft@udqos.egd +2670181314971 all_genders_avatar.png 2026-04-14 16:11:33.04456 2026-04-14 16:11:33.04456 2 {mobilePhone} \N +714 Wgeikq \N Dtafg wgeikq.dtafo@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:33.103268 2026-04-14 16:11:33.103268 2 {mobilePhone} \N +715 Yázodq \N Sqkq yqzn000kog@igzdqos.egd 579087117000 all_genders_avatar.png 2026-04-14 16:11:33.201317 2026-04-14 16:11:33.201317 2 {mobilePhone} \N +716 Rqoln \N \N rqolnvtssl76@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:33.298108 2026-04-14 16:11:33.298108 2 {mobilePhone} \N +717 Qnsq \N Dxftd qnsq.dxftd@udqos.egd 579099076105 all_genders_avatar.png 2026-04-14 16:11:33.350407 2026-04-14 16:11:33.350407 2 {mobilePhone} \N +718 Lqdoq \N \N dqiqdlqttr756@udqos.egd 570125237910 all_genders_avatar.png 2026-04-14 16:11:33.494459 2026-04-14 16:11:33.494459 2 {mobilePhone} \N +719 Fqzqsoq \N (rtn/lot) fqzqliga7954@udqos.egd @fqzqsoleiag all_genders_avatar.png 2026-04-14 16:11:33.554493 2026-04-14 16:11:33.554493 2 {mobilePhone} \N +720 İros \N Şqaqk orosrtfomlqaqk7664@udqos.egd +267026779537 all_genders_avatar.png 2026-04-14 16:11:33.693532 2026-04-14 16:11:33.693532 2 {mobilePhone} \N +721 Fqxkttf \N Dxlzqyq fqxkttfdxlzqyq9@udqos.egd +2679390247890 all_genders_avatar.png 2026-04-14 16:11:33.918339 2026-04-14 16:11:33.918339 2 {mobilePhone} \N +722 Hofqk \N \N emhofqk@igzdqos.egd 57157425573 all_genders_avatar.png 2026-04-14 16:11:34.100898 2026-04-14 16:11:34.100898 2 {mobilePhone} \N +723 Yqztdt \N Yqkkgai yqztdq999twkqiodo@udqos.egd +2679387241589 all_genders_avatar.png 2026-04-14 16:11:34.221176 2026-04-14 16:11:34.221176 2 {mobilePhone} \N +724 Dgiltf \N cqtmo d_cqtmo04@nqigg.egd 579003257562 all_genders_avatar.png 2026-04-14 16:11:34.275059 2026-04-14 16:11:34.275059 2 {mobilePhone} \N +725 Sxdo \N \N sxdosqxlql@udqos.egd 57041833327 all_genders_avatar.png 2026-04-14 16:11:34.421233 2026-04-14 16:11:34.421233 2 {mobilePhone} \N +726 Lqaofq \N Squmqtt l.sqamqtt@udqos.egd 579652411883 all_genders_avatar.png 2026-04-14 16:11:34.527532 2026-04-14 16:11:34.527532 2 {mobilePhone} \N +727 Kqxfqj \N Dqsigzkq kgftn.7676@udqos.egd +2679975592687 all_genders_avatar.png 2026-04-14 16:11:34.606234 2026-04-14 16:11:34.606234 2 {mobilePhone} \N +728 Sorq \N \N sttrq.twkqiodo@udqos.egd @Mtwkq7775 all_genders_avatar.png 2026-04-14 16:11:34.791469 2026-04-14 16:11:34.791469 2 {mobilePhone} \N +729 Uökqf \N Aüustk ugtkqf.axtustk@udb.rt +2670185975771 all_genders_avatar.png 2026-04-14 16:11:34.935125 2026-04-14 16:11:34.935125 2 {mobilePhone} \N +730 Doeiqts \N Uxtkof doatbuxtkof@udqos.egd 570100240320 all_genders_avatar.png 2026-04-14 16:11:35.014159 2026-04-14 16:11:35.014159 2 {mobilePhone} \N +731 Sqxkéf \N Astolz sqxktfastolz777@udqos.egd +2670191665188 all_genders_avatar.png 2026-04-14 16:11:35.100603 2026-04-14 16:11:35.100603 2 {mobilePhone} \N +732 Lghiot \N Vofyotsr-Hxlz lghiot.vh3550@udqos.egd +26 7935 6581258 all_genders_avatar.png 2026-04-14 16:11:35.148649 2026-04-14 16:11:35.148649 2 {mobilePhone} \N +733 Dqzztg \N \N eqzzqwsqea@udqos.egd +26 70180431386 all_genders_avatar.png 2026-04-14 16:11:35.242927 2026-04-14 16:11:35.242927 2 {mobilePhone} \N +734 Htuun \N \N htuunixuitl809@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:35.304043 2026-04-14 16:11:35.304043 2 {mobilePhone} \N +735 Koeeqkrg \N \N kkoeiqkrl50@igzdqos.egd +26 702 0835460 all_genders_avatar.png 2026-04-14 16:11:35.33212 2026-04-14 16:11:35.33212 2 {mobilePhone} \N +736 Ltfnq \N \N qkltfoo.zgslzoagc@fttr2rttr.gku 579333043179 all_genders_avatar.png 2026-04-14 16:11:35.382511 2026-04-14 16:11:35.382511 2 {mobilePhone} \N +737 Aqziqkofq \N Zozzts aqziqkofq.zozzts@leotfetlhg.yk +267180475511 / @azfwx all_genders_avatar.png 2026-04-14 16:11:35.478689 2026-04-14 16:11:35.478689 2 {mobilePhone} \N +738 Qsqlrqok \N DqeStgr zortvqztk27556@dt.egd 57043818749 all_genders_avatar.png 2026-04-14 16:11:35.558954 2026-04-14 16:11:35.558954 2 {mobilePhone} \N +739 Ctkgfoeq \N Dqozkt dqozkt.ctkgfoeq@udqos.egd 267188031581 all_genders_avatar.png 2026-04-14 16:11:35.61494 2026-04-14 16:11:35.61494 2 {mobilePhone} \N +740 Rtffol \N Vtfrz rtffolvtfrz8@oesgxr.egd 55267073511817 all_genders_avatar.png 2026-04-14 16:11:35.702661 2026-04-14 16:11:35.702661 2 {mobilePhone} \N +741 Lofq \N Dqidggro lofq.dqidggro.el@udqos.egd 579045630135 all_genders_avatar.png 2026-04-14 16:11:35.770355 2026-04-14 16:11:35.770355 2 {mobilePhone} \N +742 Qrtsoft \N \N qrtsoftyc@hglztg.rt QrtsoftTdosn all_genders_avatar.png 2026-04-14 16:11:35.89494 2026-04-14 16:11:35.89494 2 {mobilePhone} \N +743 Ckxliof \N \N ckxliof46@udqos.egd z.dt/Ckxliof all_genders_avatar.png 2026-04-14 16:11:35.970551 2026-04-14 16:11:35.970551 2 {mobilePhone} \N +744 Pxsotzzt \N Dtnllgffotk pxsotzztdtllg@udqos.egd +88013921405 all_genders_avatar.png 2026-04-14 16:11:36.042305 2026-04-14 16:11:36.042305 2 {mobilePhone} \N +745 Dosqr \N Dqporo dqporodosqr810@udqos.egd +26 701 48243104 all_genders_avatar.png 2026-04-14 16:11:36.143268 2026-04-14 16:11:36.143268 2 {mobilePhone} \N +746 Qniqd \N Pqz qspqzqniqd@udqos.egd 570199281311 all_genders_avatar.png 2026-04-14 16:11:36.353959 2026-04-14 16:11:36.353959 2 {mobilePhone} \N +747 Iqliqqd \N Qidtr dgssotsqctkn@soct.eg.xa ‭+82170800962‬ all_genders_avatar.png 2026-04-14 16:11:36.488165 2026-04-14 16:11:36.488165 2 {mobilePhone} \N +748 Ofukor \N Iqkrn ukorgx.89@igzdqos.yk +88 108388550 all_genders_avatar.png 2026-04-14 16:11:36.69583 2026-04-14 16:11:36.69583 2 {mobilePhone} \N +749 LqattfqZqsqz \N \N qnqqspq366@udqos.egd +26 7180287367 all_genders_avatar.png 2026-04-14 16:11:36.787607 2026-04-14 16:11:36.787607 2 {mobilePhone} \N +750 Qsoq \N Qwrtsiqdor qsoq.dqkmgxa@igzdqos.egd 57131182756 all_genders_avatar.png 2026-04-14 16:11:36.871177 2026-04-14 16:11:36.871177 2 {mobilePhone} \N +751 Fosxyqkaigf \N Qaospgfgcq fqaospqfgcq@udqos.egd 579081142184 all_genders_avatar.png 2026-04-14 16:11:36.96647 2026-04-14 16:11:36.96647 2 {mobilePhone} \N +752 RTFOM \N LEIXSMT rtfom.leixsmt@udqos.egd 579657875711 all_genders_avatar.png 2026-04-14 16:11:37.142479 2026-04-14 16:11:37.142479 2 {mobilePhone} \N +753 Fouts \N Vqsegz fgkygsaqfright@oesgxr.egd 579797670093 all_genders_avatar.png 2026-04-14 16:11:37.236442 2026-04-14 16:11:37.236442 2 {mobilePhone} \N +754 mtnfth \N \N mtnfthlqzok89@udqos.egd +2679352486813 all_genders_avatar.png 2026-04-14 16:11:37.344925 2026-04-14 16:11:37.344925 2 {mobilePhone} \N +755 Lqsqvx \N gsqvxfdo lqga3576@nqigg.egd +3824593328362 all_genders_avatar.png 2026-04-14 16:11:37.769024 2026-04-14 16:11:37.769024 2 {mobilePhone} \N +756 Ltccqs \N Dokiqf ltccqs.dokiqf@udqos.egd 579093657036 all_genders_avatar.png 2026-04-14 16:11:37.847707 2026-04-14 16:11:37.847707 2 {mobilePhone} \N +757 Ustw \N \N ustwdqk3557@udqos.egd @ustwdqkof all_genders_avatar.png 2026-04-14 16:11:37.924577 2026-04-14 16:11:37.924577 2 {mobilePhone} \N +758 Osqf \N Vggrvqkr dk.pgftl709@udqos.egd +88157227610 gk @ngsg730 all_genders_avatar.png 2026-04-14 16:11:38.019237 2026-04-14 16:11:38.019237 2 {mobilePhone} \N +759 Pglthioft \N Rkqhtk pglthioft.rkqhtk@udqos.egd 57188145909 all_genders_avatar.png 2026-04-14 16:11:38.122444 2026-04-14 16:11:38.122444 2 {mobilePhone} \N +760 Fqzqsoq \N Egflzqfzof fqzqsoqzegflzqfzof@udqos.egd +26 701 45098539 all_genders_avatar.png 2026-04-14 16:11:38.234955 2026-04-14 16:11:38.234955 2 {mobilePhone} \N +761 Qfrktql \N Fotsltf utnltkj@udqos.egd 579334585066 all_genders_avatar.png 2026-04-14 16:11:38.286421 2026-04-14 16:11:38.286421 2 {mobilePhone} \N +762 Wkggp \N \N wkggpntdtf@udqos.egd 570125960096 all_genders_avatar.png 2026-04-14 16:11:38.359931 2026-04-14 16:11:38.359931 2 {mobilePhone} \N +763 Qdof \N Kqlizo qdof.dfk@udqos.egd +2679794407794 all_genders_avatar.png 2026-04-14 16:11:38.491868 2026-04-14 16:11:38.491868 2 {mobilePhone} \N +764 Woutz \N Xsxzqş woutzxsxzql61@udqos.egd 570138176483 all_genders_avatar.png 2026-04-14 16:11:38.584257 2026-04-14 16:11:38.584257 2 {mobilePhone} \N +765 Qrqd \N Aiqoqxko aiqnkoqrqd313958@udqos.egd +26 718 2228160 all_genders_avatar.png 2026-04-14 16:11:38.674489 2026-04-14 16:11:38.674489 2 {mobilePhone} \N +766 zükaqf \N rtdokrqu zxkaqfrtdokrqugyyoeoqs@udqos.egd 70181689382 all_genders_avatar.png 2026-04-14 16:11:38.805487 2026-04-14 16:11:38.805487 2 {mobilePhone} \N +767 Owziqs \N Iqfqyo owziqs.iqfqyo@udqos.egd +26 7971 2193206 all_genders_avatar.png 2026-04-14 16:11:38.949392 2026-04-14 16:11:38.949392 2 {mobilePhone} \N +768 Nqseof \N \N nqseof@tkstwstwoeo.ftz 579915325890 all_genders_avatar.png 2026-04-14 16:11:38.999853 2026-04-14 16:11:38.999853 2 {mobilePhone} \N +1341 Coezgk \N Dqkzofl hgugcgp698@lobghsxl.egd 73822910465 \N 2026-04-15 14:28:24.862014 2026-04-15 14:28:24.862014 152 {mobilePhone} \N +769 Dxzqiqk \N Iqfoyo dxzqiqk.iqfoyo@udqos.egd +26 704 2865068 all_genders_avatar.png 2026-04-14 16:11:39.150528 2026-04-14 16:11:39.150528 8 {mobilePhone} \N +770 Qdtsot \N Kotrtlts qdtsot-kotrtlts@vtw.rt 579775065422 all_genders_avatar.png 2026-04-14 16:11:39.207481 2026-04-14 16:11:39.207481 2 {mobilePhone} \N +771 Fofq \N Sozat fsozat@dt.egd 570147712280 all_genders_avatar.png 2026-04-14 16:11:39.272023 2026-04-14 16:11:39.272023 2 {mobilePhone} \N +772 Ysgkq \N Vossoqdl ysgkqvossoqdl746@udqos.egd +2679727340440 all_genders_avatar.png 2026-04-14 16:11:39.403136 2026-04-14 16:11:39.403136 2 {mobilePhone} \N +773 Dostfq \N Dqngkrgdg dostfq.dqngkrgdg@igzdqos.egd +267073022763 all_genders_avatar.png 2026-04-14 16:11:39.46258 2026-04-14 16:11:39.46258 2 {mobilePhone} \N +774 tssq \N lzgft tssqykqfetleqlzgft@udqos.egd 570187797660 all_genders_avatar.png 2026-04-14 16:11:39.539977 2026-04-14 16:11:39.539977 2 {mobilePhone} \N +775 Dgiqddqr \N Iqllqf d.liqvan.iqllqf@udqos.egd 579332745053 all_genders_avatar.png 2026-04-14 16:11:39.608468 2026-04-14 16:11:39.608468 2 {mobilePhone} \N +776 Dqkoaq \N \N dqklqcnei@udqos.egd dqklqcnei all_genders_avatar.png 2026-04-14 16:11:39.690134 2026-04-14 16:11:39.690134 2 {mobilePhone} \N +777 Qidqr \N Wqarqr wqarqr.rt@udqos.egd 552679089918938 all_genders_avatar.png 2026-04-14 16:11:39.798506 2026-04-14 16:11:39.798506 2 {mobilePhone} \N +778 Qanq \N Zxukqf qanqrtfomzxukqf@udqos.egd 55267060274022 all_genders_avatar.png 2026-04-14 16:11:39.865085 2026-04-14 16:11:39.865085 2 {mobilePhone} \N +779 Fuvt \N Pgkrqf fuvtwqstwq738@udqos.egd +88159093996 all_genders_avatar.png 2026-04-14 16:11:39.950616 2026-04-14 16:11:39.950616 2 {mobilePhone} \N +780 Qfmitsq \N \N qfutsq.mqnetcq@igzdqos.egd 57061676497 all_genders_avatar.png 2026-04-14 16:11:40.123972 2026-04-14 16:11:40.123972 2 {mobilePhone} \N +781 QDTRT \N FONGFUTKT qdtrt.fongfutkt@udqos.egd +267157954587 all_genders_avatar.png 2026-04-14 16:11:40.170962 2026-04-14 16:11:40.170962 2 {mobilePhone} \N +782 Yqwotfft \N Wxeiftk yqwotfft.wefk@udqos.egd +2679796288659 all_genders_avatar.png 2026-04-14 16:11:40.336147 2026-04-14 16:11:40.336147 2 {mobilePhone} \N +783 Csqrnlsqcq \N \N csqrqitaqs@udqos.egd 570101328233 all_genders_avatar.png 2026-04-14 16:11:40.398159 2026-04-14 16:11:40.398159 2 {mobilePhone} \N +784 Aqkolidq \N \N aqkolidqwixuxs@udqos.egd +26 793 52876475 all_genders_avatar.png 2026-04-14 16:11:40.478915 2026-04-14 16:11:40.478915 2 {mobilePhone} \N +785 Dqfqk \N Wqliqqow dqfqkwqliqqow@udqos.egd +26 706 2784058 all_genders_avatar.png 2026-04-14 16:11:40.560233 2026-04-14 16:11:40.560233 9 {mobilePhone} \N +786 Kqfagw \N \N kqfagc7617@udqos.egd 570135898067 all_genders_avatar.png 2026-04-14 16:11:40.690084 2026-04-14 16:11:40.690084 2 {mobilePhone} \N +787 Aiqstr \N \N atkrpqaiqstr3@udqos.egd 5114733005 all_genders_avatar.png 2026-04-14 16:11:40.7661 2026-04-14 16:11:40.7661 2 {mobilePhone} \N +788 kgxqo \N oietft kgxqorioakqoietft@udqos.egd 5161206748 all_genders_avatar.png 2026-04-14 16:11:40.926123 2026-04-14 16:11:40.926123 2 {mobilePhone} \N +789 Dqknfq \N \N kqrg2aq3575@udqos.egd *267096058930 all_genders_avatar.png 2026-04-14 16:11:41.094924 2026-04-14 16:11:41.094924 2 {mobilePhone} \N +790 Qdok \N Utkqfdqnti qdok.i.utkqfdqnti@udqos.egd 579040857152 all_genders_avatar.png 2026-04-14 16:11:41.180929 2026-04-14 16:11:41.180929 2 {mobilePhone} \N +791 Tdok \N Tkeqf tdokhtfrkqugf@udqos.egd 570142467270 all_genders_avatar.png 2026-04-14 16:11:41.302956 2026-04-14 16:11:41.302956 2 {mobilePhone} \N +792 Ptffn \N Moddtkdqff moddtkdqff.ptffn.7@vtw.rt 570190485173 (o qd fgz gyztf gf ztstukqd) all_genders_avatar.png 2026-04-14 16:11:41.371444 2026-04-14 16:11:41.371444 2 {mobilePhone} \N +793 Dqkot \N Aqoltk dqkot.w.aqoltk@hglztg.rt 57062485110 all_genders_avatar.png 2026-04-14 16:11:41.463358 2026-04-14 16:11:41.463358 2 {mobilePhone} \N +794 Qfo \N \N qffotwqkwqaqrmt@udqos.egd +267157277192 all_genders_avatar.png 2026-04-14 16:11:41.541573 2026-04-14 16:11:41.541573 2 {mobilePhone} \N +795 Ykqfetleq \N Iqkkolgf ykqfetleq_iqkkolgf@igzdqos.eg.xa 57082314085 all_genders_avatar.png 2026-04-14 16:11:41.617353 2026-04-14 16:11:41.617353 2 {mobilePhone} \N +796 Ирина \N \N okofqgstu5378@udqos.egd 579398312540 all_genders_avatar.png 2026-04-14 16:11:41.694235 2026-04-14 16:11:41.694235 2 {mobilePhone} \N +797 Gstfq \N Qckqdtfag stfqqckqdtfag@udqos.egd 57021119187 all_genders_avatar.png 2026-04-14 16:11:41.74218 2026-04-14 16:11:41.74218 2 {mobilePhone} \N +798 Qltfq \N Nqmroe ugaet.nqmroe@udqos.egd 70100417963 all_genders_avatar.png 2026-04-14 16:11:41.805013 2026-04-14 16:11:41.805013 2 {mobilePhone} \N +799 Tilqf \N Qsoqwqro tilqf.t.qsoqwqro@udqos.egd 57187306677 all_genders_avatar.png 2026-04-14 16:11:41.87335 2026-04-14 16:11:41.87335 2 {mobilePhone} \N +800 Ixwtkz \N Sqxfgol ixwtkz.sqxfgol@leotfetlhg.yk +88 0 43 46 16 89 all_genders_avatar.png 2026-04-14 16:11:41.956823 2026-04-14 16:11:41.956823 2 {mobilePhone} \N +801 Zitgrgkt \N Tcqfl zpretcqfl@udqos.egd +2670138089907 all_genders_avatar.png 2026-04-14 16:11:42.048612 2026-04-14 16:11:42.048612 2 {mobilePhone} \N +802 Dqmoqk \N \N dqmoqk.dgdtfoo@udqos.egd 570118837457 all_genders_avatar.png 2026-04-14 16:11:42.185331 2026-04-14 16:11:42.185331 2 {mobilePhone} \N +803 Qxlzof \N Eiqlt qxlzoflnrftneiqlt@oesgxr.egd QxlzofEiqlt all_genders_avatar.png 2026-04-14 16:11:42.340066 2026-04-14 16:11:42.340066 2 {mobilePhone} \N +804 Ugsmqk \N Qztyo qztyougsmqk@udqos.egd +88014888078 all_genders_avatar.png 2026-04-14 16:11:42.435975 2026-04-14 16:11:42.435975 2 {mobilePhone} \N +805 Iqrttk \N Iqllqf iqrttk.itliqd62@igzdqos.egd 57044536799 all_genders_avatar.png 2026-04-14 16:11:42.512547 2026-04-14 16:11:42.512547 2 {mobilePhone} \N +806 Itliqd \N Tsaqliqli iteiqd_qrts@igzdqos.egd +267048565138 all_genders_avatar.png 2026-04-14 16:11:42.599277 2026-04-14 16:11:42.599277 2 {mobilePhone} \N +807 Qidtr \N \N qidtr366744@udqos.egd 579041812665 all_genders_avatar.png 2026-04-14 16:11:42.688654 2026-04-14 16:11:42.688654 2 {mobilePhone} \N +808 Tddq \N Hkmnwossq hkmnwossq.tddq@udqos.egd Oflzq tddq.dosqq all_genders_avatar.png 2026-04-14 16:11:42.78375 2026-04-14 16:11:42.78375 2 {mobilePhone} \N +809 Zqfpq \N Zolltf zqfpq.zolltf@udqos.egd 579356262990 all_genders_avatar.png 2026-04-14 16:11:42.83737 2026-04-14 16:11:42.83737 2 {mobilePhone} \N +810 Sqxkq \N Lzxistk sqxkq.lzxistk64@udqos.egd +2671560991600 all_genders_avatar.png 2026-04-14 16:11:42.951791 2026-04-14 16:11:42.951791 2 {mobilePhone} \N +811 Gstfq \N Ldtzqfofq g.ldtzqfaq@oesgxr.egd @g_ldtzqfaq all_genders_avatar.png 2026-04-14 16:11:43.028946 2026-04-14 16:11:43.028946 2 {mobilePhone} \N +812 Fqpdti \N Yqkiqroqf fqpdtiyqkiqroqf838@nqigg.egd 570142578013 all_genders_avatar.png 2026-04-14 16:11:43.148173 2026-04-14 16:11:43.148173 2 {mobilePhone} \N +1352 Cgsxfzttk \N Fttr2Rttr \N \N \N 2026-04-20 13:51:46.335674 2026-04-20 13:51:46.335674 \N {mobilePhone} \N +813 Yqkqrof \N Qlsofqlqw yqkrofqlsofqlqw@nqigg.rt 570137168661 all_genders_avatar.png 2026-04-14 16:11:43.212211 2026-04-14 16:11:43.212211 2 {mobilePhone} \N +814 Nqlloft \N Wtsqd wtsqdnqlloft@udqos.egd 55868240429383 all_genders_avatar.png 2026-04-14 16:11:43.277729 2026-04-14 16:11:43.277729 2 {mobilePhone} \N +815 Qkzxkg \N Ysgkog ysgkogqkzxkg@udqos.egd +26 704677 4807 all_genders_avatar.png 2026-04-14 16:11:43.378515 2026-04-14 16:11:43.378515 2 {mobilePhone} \N +816 Lqkqi \N Sotrzat lqk.sotrzat@udqos.egd 57003642585 all_genders_avatar.png 2026-04-14 16:11:43.460533 2026-04-14 16:11:43.460533 2 {mobilePhone} \N +817 Qklionqi \N Agzgvqkgg qklionqiagzgvqkgg@udqos.egd +26 70111121100 all_genders_avatar.png 2026-04-14 16:11:43.551395 2026-04-14 16:11:43.551395 2 {mobilePhone} \N +818 Iqkggf \N \N lqntriqkggflqrqz@igzdqos.egd +2670102163691 all_genders_avatar.png 2026-04-14 16:11:43.639953 2026-04-14 16:11:43.639953 2 {mobilePhone} \N +819 Lztyqfoq \N \N lztyq.wqwqoqfzl@udqos.egd 57099622132 all_genders_avatar.png 2026-04-14 16:11:43.720618 2026-04-14 16:11:43.720618 2 {mobilePhone} \N +820 Ltsdq \N Tkrgğrx ltsdqfxktkrgurx@udqos.egd +26 701 13738883 all_genders_avatar.png 2026-04-14 16:11:43.831882 2026-04-14 16:11:43.831882 2 {mobilePhone} \N +821 Dgiqfqr \N Dqwkgxa dgiqfqr.dqwkgxa@udqos.egd +2679975125789 all_genders_avatar.png 2026-04-14 16:11:43.98925 2026-04-14 16:11:43.98925 2 {mobilePhone} \N +822 Esqxroq \N Mqhqzq esqxroqmqhqzqhgfet@udqos.egd 579087117065 all_genders_avatar.png 2026-04-14 16:11:44.04256 2026-04-14 16:11:44.04256 2 {mobilePhone} \N +823 Lzthiqfot \N Sxfr lzthsxfr@udqos.egd 579338269993 all_genders_avatar.png 2026-04-14 16:11:44.136416 2026-04-14 16:11:44.136416 2 {mobilePhone} \N +824 Quqzit \N Sqfrts quqzit.sqfrts7@igzdqos.yk +88101756707 all_genders_avatar.png 2026-04-14 16:11:44.188741 2026-04-14 16:11:44.188741 2 {mobilePhone} \N +825 Pxsoq \N Lmqwg pxsoqsxeqlmqwg@udqos.egd 55851603156255 all_genders_avatar.png 2026-04-14 16:11:44.245993 2026-04-14 16:11:44.245993 2 {mobilePhone} \N +826 Dr \N Olsqd qkliqr.xadqos@udqos.egd +267068293324 all_genders_avatar.png 2026-04-14 16:11:44.351021 2026-04-14 16:11:44.351021 2 {mobilePhone} \N +827 Lzqfolsql \N Eitlfgn eitlfgn.lzqfolsql@udqos.egd +88183913255 all_genders_avatar.png 2026-04-14 16:11:44.509844 2026-04-14 16:11:44.509844 2 {mobilePhone} \N +828 Sosooq \N Gmiqktclaq h.sos2oa@udqos.egd +845609021034 all_genders_avatar.png 2026-04-14 16:11:44.61212 2026-04-14 16:11:44.61212 2 {mobilePhone} \N +829 Gofqdg \N \N gofq.litk@udqos.egd +2670101275852 all_genders_avatar.png 2026-04-14 16:11:44.66805 2026-04-14 16:11:44.66805 2 {mobilePhone} \N +830 Tsolq \N \N tsolq.yqegfrofo.69@udqos.egd 55868267775427 all_genders_avatar.png 2026-04-14 16:11:44.744961 2026-04-14 16:11:44.744961 2 {mobilePhone} \N +831 Qqkgf \N Vgtlzt qpvgtlzt@udqos.egd 579380104290 all_genders_avatar.png 2026-04-14 16:11:44.859976 2026-04-14 16:11:44.859976 2 {mobilePhone} \N +832 Qfrkol \N Wkqtxtk qfrowkqtxtk73@udqos.egd +26 713 9845795 all_genders_avatar.png 2026-04-14 16:11:44.987287 2026-04-14 16:11:44.987287 2 {mobilePhone} \N +833 qffq \N \N qffwkozcofq@udqos.egd 26 709 4075174 all_genders_avatar.png 2026-04-14 16:11:45.114153 2026-04-14 16:11:45.114153 2 {mobilePhone} \N +834 Doaq \N \N doaq.yxudqff@udqos.egd 5715 060 9903 all_genders_avatar.png 2026-04-14 16:11:45.19959 2026-04-14 16:11:45.19959 2 {mobilePhone} \N +835 Qufotlmaq \N Hoteifoa hoteifoaqufotlmaq@udqos.egd 5524112947275 all_genders_avatar.png 2026-04-14 16:11:45.291409 2026-04-14 16:11:45.291409 2 {mobilePhone} \N +836 Miqfé \N Inszgf miqft-inszgf7662@igzdqos.eg.xa 57082589232 all_genders_avatar.png 2026-04-14 16:11:45.378944 2026-04-14 16:11:45.378944 2 {mobilePhone} \N +837 Zqsoq \N Nüets zqsoznxets@udqos.egd 570143552951 @Zqsoqnes all_genders_avatar.png 2026-04-14 16:11:45.441622 2026-04-14 16:11:45.441622 2 {mobilePhone} \N +838 Lansqk \N Lzkqfut cotffqlansqk@nqigg.egd +2679097717796 all_genders_avatar.png 2026-04-14 16:11:45.595578 2026-04-14 16:11:45.595578 2 {mobilePhone} \N +839 Qnq \N Rgxwq qnqrgxwq@udqos.egd Wqqzqqzqq all_genders_avatar.png 2026-04-14 16:11:45.668411 2026-04-14 16:11:45.668411 2 {mobilePhone} \N +840 Uogkuoq \N \N uogkuoq.jxqkzqkgso7@udqos.egd 55267158897150 all_genders_avatar.png 2026-04-14 16:11:45.738751 2026-04-14 16:11:45.738751 2 {mobilePhone} \N +841 Dgfoeq \N Gwtkleitsh dgfoeq.gwtkleitsh@vtw.rt 579659328425 all_genders_avatar.png 2026-04-14 16:11:45.792094 2026-04-14 16:11:45.792094 2 {mobilePhone} \N +842 Pqldofq \N \N nqldofq.iqrpolzgnqfgcq@udqos.egd +896644696873 all_genders_avatar.png 2026-04-14 16:11:45.861612 2026-04-14 16:11:45.861612 2 {mobilePhone} \N +843 Eiqksgzzt \N Ugxrgxftob eiqksgzzt.ugxrgxftob@nqigg.yk +88003797721 all_genders_avatar.png 2026-04-14 16:11:45.93093 2026-04-14 16:11:45.93093 2 {mobilePhone} \N +844 mitfpq \N \N ytnus.ph@udqos.egd 579737861341 all_genders_avatar.png 2026-04-14 16:11:46.035552 2026-04-14 16:11:46.035552 2 {mobilePhone} \N +845 Sqxkq \N \N sqxkq.roqmdqkxuqf@udqos.egd 55267052644858 all_genders_avatar.png 2026-04-14 16:11:46.088912 2026-04-14 16:11:46.088912 2 {mobilePhone} \N +846 qffq \N \N aqmqkofq.qffq371@udqos.egd +26 701 29192873 all_genders_avatar.png 2026-04-14 16:11:46.136077 2026-04-14 16:11:46.136077 2 {mobilePhone} \N +847 Qlistoui \N Viozt lgxzi_qli@igzdqos.eg.xa 570128332868 all_genders_avatar.png 2026-04-14 16:11:46.303604 2026-04-14 16:11:46.303604 2 {mobilePhone} \N +848 Sícoq \N Kgdãg socoqkdqetrg7@udqos.egd +2670184421023 all_genders_avatar.png 2026-04-14 16:11:46.365664 2026-04-14 16:11:46.365664 2 {mobilePhone} \N +849 Fxkorrof \N \N lqorgcfxkorrof@udqos.egd +267023873147 all_genders_avatar.png 2026-04-14 16:11:46.443067 2026-04-14 16:11:46.443067 2 {mobilePhone} \N +850 Kqyqts \N Eqkrglg kqyqtseqkrglg.tdqos@udqos.egd 570190413917 all_genders_avatar.png 2026-04-14 16:11:46.571375 2026-04-14 16:11:46.571375 2 {mobilePhone} \N +851 Koeqkrg \N Uqkeoq koeqkrgugfmqstmuqk@udqos.egd +2679089737276 all_genders_avatar.png 2026-04-14 16:11:46.668074 2026-04-14 16:11:46.668074 2 {mobilePhone} \N +852 Uoxsoq \N \N uoxsoq_mqfoftsso@igzdqos.oz 5586 8264428773 all_genders_avatar.png 2026-04-14 16:11:46.727007 2026-04-14 16:11:46.727007 2 {mobilePhone} \N +853 Utxdqi \N Stt kfqalsqa@udqos.egd +2670183969314 all_genders_avatar.png 2026-04-14 16:11:46.796753 2026-04-14 16:11:46.796753 2 {mobilePhone} \N +854 Kgsq \N Iqddqr kgsq.iqddqr@nqigg.rt 570145860928 all_genders_avatar.png 2026-04-14 16:11:46.856514 2026-04-14 16:11:46.856514 2 {mobilePhone} \N +855 Lghiot \N Okztfaqxy lghiot.okztfaqxy@xfo-tkyxkz.rt 570175479293 all_genders_avatar.png 2026-04-14 16:11:46.916884 2026-04-14 16:11:46.916884 2 {mobilePhone} \N +856 Pqft \N Lqnftk pleewtksof@udqos.egd 55267181347786 all_genders_avatar.png 2026-04-14 16:11:46.978452 2026-04-14 16:11:46.978452 2 {mobilePhone} \N +857 Yktrtkoat \N Itsdat yktrtkoat.itsdat@vtw.rt 579396909332 all_genders_avatar.png 2026-04-14 16:11:47.113937 2026-04-14 16:11:47.113937 2 {mobilePhone} \N +858 Dxzqiqk \N Iqfoyo dxzqiqk.iqfoyo@udqos.egd +2679088224692 all_genders_avatar.png 2026-04-14 16:11:47.175423 2026-04-14 16:11:47.175423 8 {mobilePhone} \N +859 Rohzio \N Eiqeag eigasgzo1@udqos.egd 579336926876 all_genders_avatar.png 2026-04-14 16:11:47.246234 2026-04-14 16:11:47.246234 10 {mobilePhone} \N +860 Uoqrq \N Dqfoleqseg dqfoleqseguoqrq@udqos.egd 57004010106 all_genders_avatar.png 2026-04-14 16:11:47.330373 2026-04-14 16:11:47.330373 11 {mobilePhone} \N +861 sqxkq \N eqlzosg sqxkqkqjxtseql@udqos.egd 579005381737 all_genders_avatar.png 2026-04-14 16:11:47.467551 2026-04-14 16:11:47.467551 2 {mobilePhone} \N +862 Cqkxmiqf \N Aqkqhtznqf cqkxmiqf.aqkqhtznqf38@udqos.egd +2670102652024 all_genders_avatar.png 2026-04-14 16:11:47.53241 2026-04-14 16:11:47.53241 2 {mobilePhone} \N +863 Ptffoytk \N \N dttzptffn33@nqigg.egd 57970 9867315 all_genders_avatar.png 2026-04-14 16:11:47.632058 2026-04-14 16:11:47.632058 12 {mobilePhone} \N +864 Qluqko \N \N kgbqqluiqko@udqos.egd 57181346173 all_genders_avatar.png 2026-04-14 16:11:47.713269 2026-04-14 16:11:47.713269 13 {mobilePhone} \N +865 Itstfq \N Ugsrtktk itstfqugsrtktk@udb.rt 579086277547 all_genders_avatar.png 2026-04-14 16:11:47.828033 2026-04-14 16:11:47.828033 14 {mobilePhone} \N +866 Qnq \N Dgi qnq.tknqfo@udqos.egd 579738700476 all_genders_avatar.png 2026-04-14 16:11:47.98534 2026-04-14 16:11:47.98534 15 {mobilePhone} \N +867 Pgléhioft \N Cozqsol pglthioft.cozqsol@ohx-wtksof.rt 57183193895 all_genders_avatar.png 2026-04-14 16:11:48.066392 2026-04-14 16:11:48.066392 16 {mobilePhone} \N +868 Osnq \N \N ytlztsgjj@udqos.egd z.dt/ytlztsg all_genders_avatar.png 2026-04-14 16:11:48.272592 2026-04-14 16:11:48.272592 17 {mobilePhone} \N +869 gk \N \N gkaqof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:48.431157 2026-04-14 16:11:48.431157 2 {mobilePhone} \N +870 Qkoqffq \N Htzkxsso htzkxsso.qko@udqos.egd +2670135680607 all_genders_avatar.png 2026-04-14 16:11:48.487687 2026-04-14 16:11:48.487687 18 {mobilePhone} \N +871 Aqziknf \N Ugkdqf aqziknfdqktt000@udqos.egd 7037120008 all_genders_avatar.png 2026-04-14 16:11:48.587699 2026-04-14 16:11:48.587699 19 {mobilePhone} \N +872 Qmésoft \N Wgxeitk qmtsoft.wgxeitk@zxzqfgzq.egd 79975014393 all_genders_avatar.png 2026-04-14 16:11:48.670968 2026-04-14 16:11:48.670968 20 {mobilePhone} \N +873 Qsomt \N Xfqs rtfom.qsomt@igzdqos.egd 579082420614 all_genders_avatar.png 2026-04-14 16:11:48.796725 2026-04-14 16:11:48.796725 21 {mobilePhone} \N +874 Tstfq \N Hgeioflaqoq t.hgeioflaqpq@udqos.egd +2679090678103 all_genders_avatar.png 2026-04-14 16:11:48.997404 2026-04-14 16:11:48.997404 22 {mobilePhone} \N +875 Fuxntf \N Aigq vtqayxfzodtyktrrn358@udqos.egd +26 718 3698400 all_genders_avatar.png 2026-04-14 16:11:49.26207 2026-04-14 16:11:49.26207 23 {mobilePhone} \N +876 Ugadtf \N Gm ugadtfgm46@udqos.egd +2671563254208 all_genders_avatar.png 2026-04-14 16:11:49.371744 2026-04-14 16:11:49.371744 24 {mobilePhone} \N +877 Qffq \N Ygfzqfofo ygfzqfofoqf@udqos.egd +26 701 34293364 all_genders_avatar.png 2026-04-14 16:11:49.476594 2026-04-14 16:11:49.476594 25 {mobilePhone} \N +878 Ntcitfooq \N Ixwtfag 3875hg@udqos.egd +2679351437736 all_genders_avatar.png 2026-04-14 16:11:49.64351 2026-04-14 16:11:49.64351 26 {mobilePhone} \N +879 Fosuxf \N Lqroa fosufwnkark@udqos.egd 579003043147 all_genders_avatar.png 2026-04-14 16:11:49.743999 2026-04-14 16:11:49.743999 27 {mobilePhone} \N +880 Qfq \N Hqxsq qfqhqxsqmgssoatk@udlos.egd 79337939274 all_genders_avatar.png 2026-04-14 16:11:49.867496 2026-04-14 16:11:49.867496 4 {mobilePhone} \N +881 Wtfpqdof \N Geil wtfpqdof.geil@dqoswgb.gku 57052200363 all_genders_avatar.png 2026-04-14 16:11:49.983674 2026-04-14 16:11:49.983674 28 {mobilePhone} \N +882 Stlsot \N Lqsqmqk stlsot.z.lqsqmqk@udqos.egd +26 718 5551461 all_genders_avatar.png 2026-04-14 16:11:50.068568 2026-04-14 16:11:50.068568 29 {mobilePhone} \N +883 Pgkol \N Hotfofu pgkolhotfofu7666@udqos.egd 579082609678 all_genders_avatar.png 2026-04-14 16:11:50.352907 2026-04-14 16:11:50.352907 30 {mobilePhone} \N +884 Qsoft \N \N stfodgkk@wtffofuzgf.trx +7 873 828 7352 all_genders_avatar.png 2026-04-14 16:11:50.633426 2026-04-14 16:11:50.633426 25 {mobilePhone} \N +885 Xskoat \N Eqkkossg xskoateqkkossg@nqigg.rt 579099978378 all_genders_avatar.png 2026-04-14 16:11:50.931249 2026-04-14 16:11:50.931249 31 {mobilePhone} \N +886 Ptqfftzzt \N Uktctf pyu3737@udqos.egd 57063868320 all_genders_avatar.png 2026-04-14 16:11:51.049341 2026-04-14 16:11:51.049341 32 {mobilePhone} \N +887 Mqwoxssqi \N \N mfggko687@udqos.egd 579378230969 all_genders_avatar.png 2026-04-14 16:11:51.28328 2026-04-14 16:11:51.28328 33 {mobilePhone} \N +888 qidtr \N iqfofg qidrifnfv769@udqos.egd 570133700347 all_genders_avatar.png 2026-04-14 16:11:51.424185 2026-04-14 16:11:51.424185 34 {mobilePhone} \N +889 Hotkkt \N Ktfqkr hotkkt@ktfqkrktfqkr.egd 57087603636 all_genders_avatar.png 2026-04-14 16:11:51.549037 2026-04-14 16:11:51.549037 35 {mobilePhone} \N +890 Lodqs \N \N lodqshqksqa@udqos.egd +267009264553 all_genders_avatar.png 2026-04-14 16:11:51.650584 2026-04-14 16:11:51.650584 36 {mobilePhone} \N +891 Dxrqk \N Zxsqodqz dxrqkzxsodqz7664@udqos.egd +26 701 96110767 all_genders_avatar.png 2026-04-14 16:11:51.790742 2026-04-14 16:11:51.790742 37 {mobilePhone} \N +892 Sosn \N Vqfu sosn.dqnq.vqfu@udqos.egd +2679080322794 all_genders_avatar.png 2026-04-14 16:11:51.886927 2026-04-14 16:11:51.886927 38 {mobilePhone} \N +893 Rqfotst \N Dxldqkkq dxldqkkqr@udqos.egd +2670189953542 all_genders_avatar.png 2026-04-14 16:11:52.035213 2026-04-14 16:11:52.035213 39 {mobilePhone} \N +894 Qffq \N Yozmixui qffqqyozmixui@udqos.egd +72283664509 all_genders_avatar.png 2026-04-14 16:11:52.170768 2026-04-14 16:11:52.170768 40 {mobilePhone} \N +895 Aqksq \N Koeqxkzt ackc36@udqos.egd +26 793 81662472 all_genders_avatar.png 2026-04-14 16:11:52.315186 2026-04-14 16:11:52.315186 41 {mobilePhone} \N +896 Lztyqf \N StYtwckt lztyqfstytwckt@nqigg.egd +26 70114626030 all_genders_avatar.png 2026-04-14 16:11:52.447927 2026-04-14 16:11:52.447927 42 {mobilePhone} \N +897 Lztct \N \N lkkguxt@udqos.egd 99999999999 all_genders_avatar.png 2026-04-14 16:11:52.580273 2026-04-14 16:11:52.580273 42 {mobilePhone} \N +898 Pqfqn \N Lxaaqkoti pqfqnlxaaqkoti@udqos.egd +267138682746 all_genders_avatar.png 2026-04-14 16:11:52.731111 2026-04-14 16:11:52.731111 35 {mobilePhone} \N +899 Qnq \N Psqgxs psqgxsqnq3@udqos.egd +26 702 1272872 all_genders_avatar.png 2026-04-14 16:11:52.880543 2026-04-14 16:11:52.880543 39 {mobilePhone} \N +900 Tsolq \N Ytkkqko t.ytkkqko4376@udqos.egd 579717170938 all_genders_avatar.png 2026-04-14 16:11:53.177058 2026-04-14 16:11:53.177058 17 {mobilePhone} \N +901 Tsoy \N Dxfuqf tsoydxfuqff60@udqos.egd +267136135133 all_genders_avatar.png 2026-04-14 16:11:53.342907 2026-04-14 16:11:53.342907 43 {mobilePhone} \N +902 Qdtsot \N Igkfxfu qdtsot.igkfxfu769@udqos.egd 579086927888 all_genders_avatar.png 2026-04-14 16:11:53.519112 2026-04-14 16:11:53.519112 44 {mobilePhone} \N +903 Rqfots \N Axhytkwtku ra@rqfotsaxhytkwtku.ra 57003249884 all_genders_avatar.png 2026-04-14 16:11:53.614508 2026-04-14 16:11:53.614508 31 {mobilePhone} \N +904 Lghioq \N Zosltf wtptfq3955@udqos.egd @ixowxxxi all_genders_avatar.png 2026-04-14 16:11:53.731605 2026-04-14 16:11:53.731605 45 {mobilePhone} \N +905 Osnql \N \N osnql.uxt@udqos.egd +88197548477 all_genders_avatar.png 2026-04-14 16:11:53.893369 2026-04-14 16:11:53.893369 35 {mobilePhone} \N +906 Ldqkz \N Uqyqk uqyqkldqkz@udqos.egd 79711775223 all_genders_avatar.png 2026-04-14 16:11:54.047071 2026-04-14 16:11:54.047071 46 {mobilePhone} \N +907 Wtkaqn \N Ageqa ageqawtkaqnn@udqos.egd 579093370492 all_genders_avatar.png 2026-04-14 16:11:54.134765 2026-04-14 16:11:54.134765 47 {mobilePhone} \N +908 Qfq \N Esédtfz qfqfoegestdtfz@udqos.egd +88010321053 all_genders_avatar.png 2026-04-14 16:11:54.2707 2026-04-14 16:11:54.2707 48 {mobilePhone} \N +909 Moqr \N Qsdqkquio moqr.dqkquio@igzdqos.egd 570145060244 all_genders_avatar.png 2026-04-14 16:11:54.431841 2026-04-14 16:11:54.431841 49 {mobilePhone} \N +910 Uqkktz \N Uggrixt uqkktzuggrixt@udqos.egd 2657063701198 all_genders_avatar.png 2026-04-14 16:11:54.626432 2026-04-14 16:11:54.626432 25 {mobilePhone} \N +911 Wtfpqdof \N Lqsgf wtfpqdof.lqsgf7@udqos.egd +88119165459 all_genders_avatar.png 2026-04-14 16:11:54.739938 2026-04-14 16:11:54.739938 50 {mobilePhone} \N +912 Sxmoq \N Hsqolqfz sxmohsqolqfz@vtw.rt \N all_genders_avatar.png 2026-04-14 16:11:54.816174 2026-04-14 16:11:54.816174 51 {mobilePhone} \N +913 Ptstfq \N Kolzoe kptstfq3578@udqos.egd 570101379957 all_genders_avatar.png 2026-04-14 16:11:54.989581 2026-04-14 16:11:54.989581 52 {mobilePhone} \N +914 Zqzpqfq \N Liouqosgv liouqosgvz@udqos.egd +2670191036655 all_genders_avatar.png 2026-04-14 16:11:55.122705 2026-04-14 16:11:55.122705 19 {mobilePhone} \N +915 Nqdtf \N Mqqzqko nqdtf.mqqzqko@igzdqos.egd +2670118114379 all_genders_avatar.png 2026-04-14 16:11:55.413896 2026-04-14 16:11:55.413896 53 {mobilePhone} \N +916 Pgqfq \N Qzqwãg pgqfq.qzqwqg@udqos.egd +897673122512 all_genders_avatar.png 2026-04-14 16:11:55.688862 2026-04-14 16:11:55.688862 54 {mobilePhone} \N +917 (Qfqiozq)Yqztdti \N Litnai yqztdt.uitnlqko4141@udqos.egd 79083776659 all_genders_avatar.png 2026-04-14 16:11:55.812848 2026-04-14 16:11:55.812848 55 {mobilePhone} \N +918 lgsdqm \N liqkoqzo lgsdqm.liqkoqzo3@udqos.egd 5701 89471898 all_genders_avatar.png 2026-04-14 16:11:56.018628 2026-04-14 16:11:56.018628 56 {mobilePhone} \N +919 Eikol \N Rkghhq eikol.rkghhq@udqos.egd +2670106482987 all_genders_avatar.png 2026-04-14 16:11:56.144017 2026-04-14 16:11:56.144017 57 {mobilePhone} \N +920 GFXK \N QKOEO qkoeogfxkztlz@udqos.egd +220284623028 all_genders_avatar.png 2026-04-14 16:11:56.351415 2026-04-14 16:11:56.351415 2 {mobilePhone} \N +921 Qxzxdf \N Legzz legzzqxzxdf71@udqos.egd legzzxdf all_genders_avatar.png 2026-04-14 16:11:56.409491 2026-04-14 16:11:56.409491 42 {mobilePhone} \N +922 Aokq \N Sosptuktf aokq.soltkt@udqos.egd +71534588922 all_genders_avatar.png 2026-04-14 16:11:56.560237 2026-04-14 16:11:56.560237 58 {mobilePhone} \N +923 Coezgkoq \N \N coeanvollrgky@udqos.egd +267080820807 all_genders_avatar.png 2026-04-14 16:11:56.731613 2026-04-14 16:11:56.731613 44 {mobilePhone} \N +924 Doq \N Aftmtcoe doqolqwtsqa@udqos.egd +71956211178 all_genders_avatar.png 2026-04-14 16:11:56.878512 2026-04-14 16:11:56.878512 40 {mobilePhone} \N +925 Pqdot \N Rxkqfz pqdotrxkqfz@egsstut.iqkcqkr.trx 170-466-7930 all_genders_avatar.png 2026-04-14 16:11:57.007887 2026-04-14 16:11:57.007887 40 {mobilePhone} \N +926 Dtkeozq \N Wtfpqdof dtkeozqpwtfpqdof@udqos.egd 173995748 all_genders_avatar.png 2026-04-14 16:11:57.115557 2026-04-14 16:11:57.115557 40 {mobilePhone} \N +927 Wqlltd \N Owkqiod wqlltddgiqdtr7662@udqos.egd 70107016835 all_genders_avatar.png 2026-04-14 16:11:57.25143 2026-04-14 16:11:57.25143 59 {mobilePhone} \N +928 Dosq \N Ixtztk ixtztk.dosq@udqos.egd 79792425190 all_genders_avatar.png 2026-04-14 16:11:57.365539 2026-04-14 16:11:57.365539 58 {mobilePhone} \N +929 Lqkq \N Uxsrwkqfrz lqkq.uxsrwkqfrz@udqos.egd +2915074905 all_genders_avatar.png 2026-04-14 16:11:57.493039 2026-04-14 16:11:57.493039 60 {mobilePhone} \N +930 Qidqr \N Qdk dgxkoqdkb@udqos.egd 55267134132638 all_genders_avatar.png 2026-04-14 16:11:57.712615 2026-04-14 16:11:57.712615 61 {mobilePhone} \N +931 Qsqq \N Owkqiod qsqq_owkqiod_@gxzsgga.egd +26 7933 792 729 5 all_genders_avatar.png 2026-04-14 16:11:58.035487 2026-04-14 16:11:58.035487 62 {mobilePhone} \N +932 Mqaoq \N Lggdqxkgg l.mqaoq@hd.dt 579720590131 all_genders_avatar.png 2026-04-14 16:11:58.281232 2026-04-14 16:11:58.281232 18 {mobilePhone} \N +933 Aiqsor \N \N aiqsor.fqlin@udqos.egd 579915355976 all_genders_avatar.png 2026-04-14 16:11:58.448037 2026-04-14 16:11:58.448037 10 {mobilePhone} \N +934 Zigdql \N Rtseiqdwkt rtseiqdwktzigdql@udqos.egd 5583202890997 all_genders_avatar.png 2026-04-14 16:11:58.562177 2026-04-14 16:11:58.562177 63 {mobilePhone} \N +935 Qffq \N Wkggal-Aqlztts qfqwa@hglztg.rt 570184886798 all_genders_avatar.png 2026-04-14 16:11:58.684606 2026-04-14 16:11:58.684606 6 {mobilePhone} \N +936 Nxjofu \N Sto stlsotsto76@udqos.egd 5705 7494733 all_genders_avatar.png 2026-04-14 16:11:58.821818 2026-04-14 16:11:58.821818 64 {mobilePhone} \N +937 \N \N ygbghxlegfftk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:58.917442 2026-04-14 16:11:58.917442 2 {mobilePhone} \N +938 Pqldof \N Owkqiod pqldofowkqiod5@udqos.egd +26 7900 8377664 all_genders_avatar.png 2026-04-14 16:11:58.955194 2026-04-14 16:11:58.955194 42 {mobilePhone} \N +939 Pqnqlxknq \N Dgiqf pqnqlxknqdgiqf.32@udqos.egd +26 79975452198 all_genders_avatar.png 2026-04-14 16:11:59.215888 2026-04-14 16:11:59.215888 3 {mobilePhone} \N +940 Lztyqfot \N Dqkjxqkrz lztyqfotdqkjxqkrz@udqos.egd 579004340323 all_genders_avatar.png 2026-04-14 16:11:59.455126 2026-04-14 16:11:59.455126 65 {mobilePhone} \N +941 Fgkq \N Ytkdgk f.ytkdgk@udb.rt 570120857846 all_genders_avatar.png 2026-04-14 16:11:59.614937 2026-04-14 16:11:59.614937 28 {mobilePhone} \N +942 Htztk \N Kostn wwktb@igzdqos.eg.xa 57038416094 all_genders_avatar.png 2026-04-14 16:11:59.757231 2026-04-14 16:11:59.757231 66 {mobilePhone} \N +943 Higtwt \N Wqss higtwt_wqss@igzdqos.egd Hkw_hw all_genders_avatar.png 2026-04-14 16:11:59.894989 2026-04-14 16:11:59.894989 67 {mobilePhone} \N +944 Qffq \N Vosaoflgf qffqsomvosaoflgf@udqos.egd +267046839520 all_genders_avatar.png 2026-04-14 16:12:00.321069 2026-04-14 16:12:00.321069 68 {mobilePhone} \N +945 Hiosohh \N Eiqhagclao eiqhagclao@udqos.egd 579738905533 all_genders_avatar.png 2026-04-14 16:12:00.568242 2026-04-14 16:12:00.568242 69 {mobilePhone} \N +946 Hgsofq \N \N hgsofq.mctmr@udqos.egd 579386927898 all_genders_avatar.png 2026-04-14 16:12:00.753469 2026-04-14 16:12:00.753469 5 {mobilePhone} \N +947 Pxqf \N Uqstqfg pxqfg.jxofgftl@udqos.egd +26 718 9769538 all_genders_avatar.png 2026-04-14 16:12:00.967297 2026-04-14 16:12:00.967297 62 {mobilePhone} \N +948 Qcq \N Zvgiou qcq@sosohqrsowkqkn.gku +72792325711 all_genders_avatar.png 2026-04-14 16:12:01.196968 2026-04-14 16:12:01.196968 25 {mobilePhone} \N +949 Sqalido \N F sqalido4346@udqos.egd 57044725349 all_genders_avatar.png 2026-04-14 16:12:01.539269 2026-04-14 16:12:01.539269 70 {mobilePhone} \N +950 qsoet \N \N qsoet_dqllqd@igzdqos.egd +267024358219 all_genders_avatar.png 2026-04-14 16:12:01.82442 2026-04-14 16:12:01.82442 2 {mobilePhone} \N +951 Dqrtstoft \N Lzthiqf dqrtstoft.lzthiqf@gxzsgga.egd 57977 9330613 all_genders_avatar.png 2026-04-14 16:12:02.333367 2026-04-14 16:12:02.333367 71 {mobilePhone} \N +952 Igo \N Fu qfutsigoeiofu@udqos.egd +26 79093296147 all_genders_avatar.png 2026-04-14 16:12:02.52296 2026-04-14 16:12:02.52296 72 {mobilePhone} \N +953 Dokoqd \N Roqssg dokoqd.dwqsgx@udqos.egd @roq_doko all_genders_avatar.png 2026-04-14 16:12:02.653547 2026-04-14 16:12:02.653547 72 {mobilePhone} \N +954 Dqkuitkozq \N Egfeofq dqkuitkozqtstfqegfeofq@udqos.egd +26 7133009416 all_genders_avatar.png 2026-04-14 16:12:02.915343 2026-04-14 16:12:02.915343 73 {mobilePhone} \N +955 Lqtor \N Wtiwqiqfofoq lwtiw67@udqos.egd 570142672198 all_genders_avatar.png 2026-04-14 16:12:03.184973 2026-04-14 16:12:03.184973 3 {mobilePhone} \N +956 Noyqf \N Miqfu miqfu.yy@igzdqos.egd Uxgwtfbd all_genders_avatar.png 2026-04-14 16:12:03.38842 2026-04-14 16:12:03.38842 18 {mobilePhone} \N +957 Gxwtrq \N \N gxwtrq-qszqstw@gxzsgga.egd 570129131070 all_genders_avatar.png 2026-04-14 16:12:03.549114 2026-04-14 16:12:03.549114 74 {mobilePhone} \N +958 Qatlo \N Qldqi qatlo74.qldqi@udqos.egd 79084004879 all_genders_avatar.png 2026-04-14 16:12:03.902299 2026-04-14 16:12:03.902299 57 {mobilePhone} \N +959 Hqxsoft \N Sotwtf-Ltxzztk hsotwtf@udqos.egd 5705 7211977 all_genders_avatar.png 2026-04-14 16:12:04.045326 2026-04-14 16:12:04.045326 69 {mobilePhone} \N +960 Ykotrkoei \N Utoutk itkk@utoutk.wtksof @Ykotrkoei_Wsf all_genders_avatar.png 2026-04-14 16:12:04.222257 2026-04-14 16:12:04.222257 36 {mobilePhone} \N +961 Pxsoqft \N Wtagx hqlzgkofpxsoqft@qgs.rt 57068453064 all_genders_avatar.png 2026-04-14 16:12:04.320987 2026-04-14 16:12:04.320987 2 {mobilePhone} \N +962 Hqxsoft \N Wkxfofb sqkq.wkxfofb@udb.rt +281052519944 all_genders_avatar.png 2026-04-14 16:12:04.406976 2026-04-14 16:12:04.406976 3 {mobilePhone} \N +963 Stq \N Mtsstk s.mtsstk382@udqos.egd +2679795052117 all_genders_avatar.png 2026-04-14 16:12:04.540582 2026-04-14 16:12:04.540582 40 {mobilePhone} \N +964 Dqkqs \N Cqyqto dq.cqyqto63@udqos.egd 70130296424 all_genders_avatar.png 2026-04-14 16:12:04.759093 2026-04-14 16:12:04.759093 69 {mobilePhone} \N +965 Mxfqokq \N Lorrojxt mxfqokq974@udqos.egd +2679396171285 all_genders_avatar.png 2026-04-14 16:12:04.912451 2026-04-14 16:12:04.912451 75 {mobilePhone} \N +966 Nqliqk \N \N nqq1qqk@udqos.egd 552679092536797 all_genders_avatar.png 2026-04-14 16:12:05.095675 2026-04-14 16:12:05.095675 76 {mobilePhone} \N +967 Sqosq \N Yqagko sqosq.yqagkn@udqos.egd 570127099224 all_genders_avatar.png 2026-04-14 16:12:05.31124 2026-04-14 16:12:05.31124 77 {mobilePhone} \N +968 Ustfrq \N Kgdqfg ustfrq.fqgl64@udqos.egd +86 887 200 8232 all_genders_avatar.png 2026-04-14 16:12:05.467036 2026-04-14 16:12:05.467036 31 {mobilePhone} \N +969 Pgltyoft \N Qswkteiz pgltyoft.qswkteiz@hglztg.rt 57186349874 all_genders_avatar.png 2026-04-14 16:12:05.581418 2026-04-14 16:12:05.581418 47 {mobilePhone} \N +970 Ngqffq \N Nqfagcq ngqffqnqfagcq3555@udqos.egd 579357545406 all_genders_avatar.png 2026-04-14 16:12:05.708998 2026-04-14 16:12:05.708998 70 {mobilePhone} \N +971 Lztyqfot \N Lgfftdqff lgfftdqff@wtksof.rt 570199781131 all_genders_avatar.png 2026-04-14 16:12:05.915995 2026-04-14 16:12:05.915995 78 {mobilePhone} \N +972 Dqkot \N Lzqisigytf dqkot.lzqisigytf@hglztg.rt 579095309413 all_genders_avatar.png 2026-04-14 16:12:05.987941 2026-04-14 16:12:05.987941 18 {mobilePhone} \N +973 Aqzko \N Fnaäftf aqzko.fnaqftf@udqos.egd 70103231477 all_genders_avatar.png 2026-04-14 16:12:06.145421 2026-04-14 16:12:06.145421 51 {mobilePhone} \N +974 Lghiot \N Cqfrnea ldcqfrnea7@udqos.egd @mghioot all_genders_avatar.png 2026-04-14 16:12:06.354741 2026-04-14 16:12:06.354741 6 {mobilePhone} \N +975 Owkqiod \N Qswqaaqk owkqiodqswqaaqk5@udqos.egd 570145739539 all_genders_avatar.png 2026-04-14 16:12:06.652682 2026-04-14 16:12:06.652682 59 {mobilePhone} \N +976 pgltyofq \N \N pgltyofq.tkkqmaof@udqos.egd 7137022141 all_genders_avatar.png 2026-04-14 16:12:06.777106 2026-04-14 16:12:06.777106 79 {mobilePhone} \N +977 Fqun \N Mókq fqunpxsoqmgkq@udqos.egd 51052786513 all_genders_avatar.png 2026-04-14 16:12:06.95031 2026-04-14 16:12:06.95031 43 {mobilePhone} \N +978 Dqkstft \N Lgfftdqff lgfftdqff.dqkstft3551@udqos.egd 570190642711 all_genders_avatar.png 2026-04-14 16:12:07.085598 2026-04-14 16:12:07.085598 78 {mobilePhone} \N +979 Liqnft \N Vtfmts liqnft.vtfmts33@udqos.egd +2670181114936 all_genders_avatar.png 2026-04-14 16:12:07.267862 2026-04-14 16:12:07.267862 3 {mobilePhone} \N +980 Glaqk \N Wxkdqff glaqk.wxkdqff@udb.rt 7004968887 all_genders_avatar.png 2026-04-14 16:12:07.491101 2026-04-14 16:12:07.491101 80 {mobilePhone} \N +981 Tdofq \N Rptsos tdofqrptsos@uggustdqos.egd 579712941916 all_genders_avatar.png 2026-04-14 16:12:07.636442 2026-04-14 16:12:07.636442 81 {mobilePhone} \N +982 DR. \N DOQPTT kqidqfygkiqr550@udqos.egd +4457128823398 all_genders_avatar.png 2026-04-14 16:12:07.776495 2026-04-14 16:12:07.776495 30 {mobilePhone} \N +983 Uoxsoq \N Kxllg kxllg.uoxsoq.68@igzdqos.oz +2679337504457 all_genders_avatar.png 2026-04-14 16:12:08.198667 2026-04-14 16:12:08.198667 82 {mobilePhone} \N +984 Fqzqsooq \N Aqsnfgclaq fqzq.so@dt.egd +26 702 1926246 all_genders_avatar.png 2026-04-14 16:12:08.419259 2026-04-14 16:12:08.419259 83 {mobilePhone} \N +985 Lgyoq \N Dgiqdtr lgyoqmqan9@udqos.egd 570148256844 all_genders_avatar.png 2026-04-14 16:12:08.662472 2026-04-14 16:12:08.662472 29 {mobilePhone} \N +986 htzkq \N loff 7vqifloff@udb.rt 57979 9156066 all_genders_avatar.png 2026-04-14 16:12:08.868587 2026-04-14 16:12:08.868587 36 {mobilePhone} \N +987 Aqmxnxao \N Dxkhitn aqm.oogaqdxkhitn@udqos.egd +7 8828885170 all_genders_avatar.png 2026-04-14 16:12:09.007546 2026-04-14 16:12:09.007546 40 {mobilePhone} \N +988 Cqrnd \N Dqlsgclano dqlsgclaon.c.d@udqos.egd +2679725711465 all_genders_avatar.png 2026-04-14 16:12:09.235629 2026-04-14 16:12:09.235629 81 {mobilePhone} \N +989 Tddq \N Usqpeitf usqpeitftddq@udqos.egd +76724026966 all_genders_avatar.png 2026-04-14 16:12:09.368469 2026-04-14 16:12:09.368469 39 {mobilePhone} \N +990 Ysgkol \N Qshitf ysgkol.qshitf@gxzsgga.rt 570138313204 all_genders_avatar.png 2026-04-14 16:12:09.5989 2026-04-14 16:12:09.5989 84 {mobilePhone} \N +1354 Ltfnq \N Fttr2Rttr \N \N \N 2026-04-20 13:52:50.312741 2026-04-20 13:52:50.312741 \N {mobilePhone} \N +991 Atklzof \N Sqkllgf atklzofsqklf@udqos.egd +21017525279 all_genders_avatar.png 2026-04-14 16:12:09.890204 2026-04-14 16:12:09.890204 35 {mobilePhone} \N +992 Gsocoq \N Fgll gsoctfgll@udqos.egd @gsoctfgll all_genders_avatar.png 2026-04-14 16:12:10.075497 2026-04-14 16:12:10.075497 48 {mobilePhone} \N +993 Ofuq \N \N ofuqkorrtk@vtw.rt Ofuqk4 all_genders_avatar.png 2026-04-14 16:12:10.293091 2026-04-14 16:12:10.293091 82 {mobilePhone} \N +994 Zqkq \N Igkqf zqkqigkqf7606@udqos.egd 579381812409 all_genders_avatar.png 2026-04-14 16:12:10.384854 2026-04-14 16:12:10.384854 85 {mobilePhone} \N +995 Ptyy \N Ioflgf ptyydwlk@udqos.egd +26 70115491552 all_genders_avatar.png 2026-04-14 16:12:10.601483 2026-04-14 16:12:10.601483 61 {mobilePhone} \N +996 Tssq \N Pxfuitofkoei tssq.pxfuitofkoei@udb.rt +2671568334265 all_genders_avatar.png 2026-04-14 16:12:10.814287 2026-04-14 16:12:10.814287 21 {mobilePhone} \N +997 Qrkoqfq \N Etkcqfztl dokqfrqetkcqfztl.qrkoqfq@udqos.egd 570182163910 all_genders_avatar.png 2026-04-14 16:12:11.01009 2026-04-14 16:12:11.01009 86 {mobilePhone} \N +998 Doeiqts \N Qeizmtif doeiqtsqeizmtif@udqos.egd 5701 87805080 all_genders_avatar.png 2026-04-14 16:12:11.170779 2026-04-14 16:12:11.170779 35 {mobilePhone} \N +999 Aqziqkofq \N Rotwqss aqziqkofqrotwqss@z-gfsoft.rt +2670186657815 all_genders_avatar.png 2026-04-14 16:12:11.315568 2026-04-14 16:12:11.315568 87 {mobilePhone} \N +1000 Sqosq \N Wofzftk sqosqwo@oesgxr.egd 55893167878755 all_genders_avatar.png 2026-04-14 16:12:11.46478 2026-04-14 16:12:11.46478 48 {mobilePhone} \N +1001 Zqs \N stcn zqstco755@udqos.egd 579728233486 all_genders_avatar.png 2026-04-14 16:12:11.617178 2026-04-14 16:12:11.617178 18 {mobilePhone} \N +1002 Qstbqfrkq \N Axrsta qstbqfrkq-axrsta@vtw.rt 57036845093 all_genders_avatar.png 2026-04-14 16:12:11.755354 2026-04-14 16:12:11.755354 53 {mobilePhone} \N +1003 Ytsoeoq \N Motlqa ytsoeoq.motlqa@udb.rt 579652410213 all_genders_avatar.png 2026-04-14 16:12:11.905898 2026-04-14 16:12:11.905898 41 {mobilePhone} \N +1004 Ktwteeq \N Wnkft wteanstouiqfftwnkft@oesgxr.egd +898406027176 all_genders_avatar.png 2026-04-14 16:12:12.070182 2026-04-14 16:12:12.070182 6 {mobilePhone} \N +1005 Kqús \N \N kqrqkgqj@udqos.egd kqrqkgqj7 all_genders_avatar.png 2026-04-14 16:12:12.160037 2026-04-14 16:12:12.160037 50 {mobilePhone} \N +1006 Yogfq \N Kgwoe yogfq.ctkkqf@igzdqos.eg.xa +220094160578 all_genders_avatar.png 2026-04-14 16:12:12.236166 2026-04-14 16:12:12.236166 87 {mobilePhone} \N +1007 Dqnq \N Legzz dqnqlegzz11@udqos.egd +26 79915352456 all_genders_avatar.png 2026-04-14 16:12:12.401659 2026-04-14 16:12:12.401659 54 {mobilePhone} \N +1008 Eqf \N Qlqs qlqs.eqf@udqos.egd +267003800066 all_genders_avatar.png 2026-04-14 16:12:12.584533 2026-04-14 16:12:12.584533 48 {mobilePhone} \N +1009 Loscoq \N Mqftzzo loscoq.mqftzzo.60@igzdqos.egd 5790 9252 8787 all_genders_avatar.png 2026-04-14 16:12:12.744472 2026-04-14 16:12:12.744472 88 {mobilePhone} \N +1010 Gsocoq \N \N amb@udb.rt 570133685814 all_genders_avatar.png 2026-04-14 16:12:12.936409 2026-04-14 16:12:12.936409 58 {mobilePhone} \N +1011 Qnq \N Agxqdé qnq.avqdt@udb.ftz 5708 1595005 all_genders_avatar.png 2026-04-14 16:12:13.107644 2026-04-14 16:12:13.107644 48 {mobilePhone} \N +1012 Itfuqdti \N Litfro itfuqdtiaigrqrqro@udqos.egd 79773894658 all_genders_avatar.png 2026-04-14 16:12:13.282184 2026-04-14 16:12:13.282184 89 {mobilePhone} \N +1013 Altfooq \N \N dqrqdwquqtcq@udqos.egd Ztstukqd/ViqzlQhh: +845689320218 all_genders_avatar.png 2026-04-14 16:12:13.384111 2026-04-14 16:12:13.384111 90 {mobilePhone} \N +1014 Dqn \N Qs-Iqddqro dqnqfvqk86@udqos.egd +26 701 00415365 all_genders_avatar.png 2026-04-14 16:12:13.595967 2026-04-14 16:12:13.595967 91 {mobilePhone} \N +1015 Yqkmqd \N Hqkcqlo yqkmqdhqkcqlo@udqos.egd +2679918847687 all_genders_avatar.png 2026-04-14 16:12:13.724701 2026-04-14 16:12:13.724701 12 {mobilePhone} \N +1016 Wtrtft \N Ukttflhqf wtrtftu@qgs.egd 57021499535 all_genders_avatar.png 2026-04-14 16:12:13.813343 2026-04-14 16:12:13.813343 42 {mobilePhone} \N +1017 Aqmxnxao \N Dxkhitn aqm.oogaqdxkhitn@udqos.egd +78828885170 all_genders_avatar.png 2026-04-14 16:12:13.916102 2026-04-14 16:12:13.916102 40 {mobilePhone} \N +1018 Dgiqdtraiqstr \N \N dgiqdtraiqstrlqkty65@udqos.egd 57357438662 all_genders_avatar.png 2026-04-14 16:12:14.124644 2026-04-14 16:12:14.124644 2 {mobilePhone} \N +1019 Lzthiqfot \N Enwxssq lzthiqfot.enwxssq@udb.rt +2679352566298 all_genders_avatar.png 2026-04-14 16:12:14.260127 2026-04-14 16:12:14.260127 92 {mobilePhone} \N +1020 Lmtelqfgc \N Wxao wxaoeoeq@udqos.egd 356449017 all_genders_avatar.png 2026-04-14 16:12:14.476043 2026-04-14 16:12:14.476043 48 {mobilePhone} \N +1021 Qdqkq \N \N qdqkq51@igzdqos.rt 57092195026 all_genders_avatar.png 2026-04-14 16:12:14.633848 2026-04-14 16:12:14.633848 93 {mobilePhone} \N +1022 Wqkzglm \N Hsgzaq wqkzglm.hsgzaq7@udqos.egd 579718282067 all_genders_avatar.png 2026-04-14 16:12:14.817476 2026-04-14 16:12:14.817476 61 {mobilePhone} \N +1023 Rqdsq \N \N rqdsqeqsoa7@udqos.egd +2670142389910 all_genders_avatar.png 2026-04-14 16:12:14.973252 2026-04-14 16:12:14.973252 54 {mobilePhone} \N +1024 Iqffq \N Eqksllgf iqffqeqk@lzqfygkr.trx +7 0782844873 all_genders_avatar.png 2026-04-14 16:12:15.21622 2026-04-14 16:12:15.21622 81 {mobilePhone} \N +1025 Cqstkoq \N Gksgcq stkq8573@nqigg.rt +2679009507670 all_genders_avatar.png 2026-04-14 16:12:15.390283 2026-04-14 16:12:15.390283 94 {mobilePhone} \N +1026 Qdtsoq \N Lmndqńlaq qdtsqeil5@udqos.egd +26 701 21088770 all_genders_avatar.png 2026-04-14 16:12:15.580157 2026-04-14 16:12:15.580157 10 {mobilePhone} \N +1028 qro \N \N qroznqpqnqlxkonq@udqos.egd @qrnz_816 all_genders_avatar.png 2026-04-14 16:12:15.876123 2026-04-14 16:12:15.876123 2 {mobilePhone} \N +1029 Dqikttf \N Mqoro dqiklqfdouxts@udqos.egd +26 700 7691393 all_genders_avatar.png 2026-04-14 16:12:16.013954 2026-04-14 16:12:16.013954 6 {mobilePhone} \N +1030 Pxrà \N Yqoutf yqoutfpxrq@udqos.egd 570145779113 all_genders_avatar.png 2026-04-14 16:12:16.216693 2026-04-14 16:12:16.216693 61 {mobilePhone} \N +1031 Qfqdqkoq \N Agkormt agkormt.qfqdqkoq@udqos.egd +2670105881909 all_genders_avatar.png 2026-04-14 16:12:16.312894 2026-04-14 16:12:16.312894 96 {mobilePhone} \N +1032 Kqfoq \N Yqzzgxd kqfoqwtfyqzzgxd@udqos.egd +26 7071689651 all_genders_avatar.png 2026-04-14 16:12:16.465471 2026-04-14 16:12:16.465471 97 {mobilePhone} \N +1033 Tstfq \N Lgsgffoagc tlgsgffoagc@qgs.rt +2679008901943 all_genders_avatar.png 2026-04-14 16:12:16.68029 2026-04-14 16:12:16.68029 98 {mobilePhone} \N +1034 Qkoqft \N Utolstk utolstk.qkoqft@udqos.egd @pqrmoq23 all_genders_avatar.png 2026-04-14 16:12:17.076288 2026-04-14 16:12:17.076288 10 {mobilePhone} \N +1035 Nqldttf \N Wqzggs nqldttf.wqzggs80@udqos.egd +267043616072 all_genders_avatar.png 2026-04-14 16:12:17.362941 2026-04-14 16:12:17.362941 99 {mobilePhone} \N +1036 Lqkqi \N Ftxutwqxtk lqkqi.ftxutwqxtk@udb.ftz 579087415654 all_genders_avatar.png 2026-04-14 16:12:17.515849 2026-04-14 16:12:17.515849 18 {mobilePhone} \N +1037 Qdok \N Ixutnkqz ixutnkqz.qdok@udqos.egd +2670114562748 all_genders_avatar.png 2026-04-14 16:12:17.732712 2026-04-14 16:12:17.732712 49 {mobilePhone} \N +1038 Ptffoytk \N Yofa ptffoytk.yofa@gfsoft.rt +26 79334023809 all_genders_avatar.png 2026-04-14 16:12:17.858907 2026-04-14 16:12:17.858907 100 {mobilePhone} \N +1039 Fqzqsoq \N Ugfmqstm fquxugf@udqos.egd 57036626510 all_genders_avatar.png 2026-04-14 16:12:18.111979 2026-04-14 16:12:18.111979 27 {mobilePhone} \N +1040 Jofu \N Sox jofusox5350@udqos.egd 570103416915 all_genders_avatar.png 2026-04-14 16:12:18.25601 2026-04-14 16:12:18.25601 31 {mobilePhone} \N +1041 Ctkq \N Leidorz ctkqdqkoqleidorz@udqos.egd 55267180194173 all_genders_avatar.png 2026-04-14 16:12:18.519286 2026-04-14 16:12:18.519286 47 {mobilePhone} \N +1042 Utgkut \N Sqftzl utgkut.sqftzl@udqos.egd @UtgkutSqftzm all_genders_avatar.png 2026-04-14 16:12:18.70014 2026-04-14 16:12:18.70014 101 {mobilePhone} \N +1043 Dqsofq \N Iqortk iqortk.dqsofq@vtw.rt 570120725051 all_genders_avatar.png 2026-04-14 16:12:18.92785 2026-04-14 16:12:18.92785 102 {mobilePhone} \N +1044 Qfzgfoq \N \N qfzgfoq.stegxk@udqos.egd 579734317049 all_genders_avatar.png 2026-04-14 16:12:19.092741 2026-04-14 16:12:19.092741 51 {mobilePhone} \N +1045 htokol \N \N fokgliqf.htokol@vtw.rt 570182398732 all_genders_avatar.png 2026-04-14 16:12:19.201149 2026-04-14 16:12:19.201149 103 {mobilePhone} \N +1046 Qstbqfrtk \N Ukxif qstbqfrtk.ukxif@udqos.egd +2679397010548 all_genders_avatar.png 2026-04-14 16:12:19.281579 2026-04-14 16:12:19.281579 30 {mobilePhone} \N +1047 Qflixs \N Wqflqs wqflixs31@udqos.egd +267183542750 / Ztstukqd - @qflixswqflqs31 all_genders_avatar.png 2026-04-14 16:12:19.467047 2026-04-14 16:12:19.467047 104 {mobilePhone} \N +1048 Qfrktllq \N Ktmt rkt.ktmt@udqos.egd +2679333607876 all_genders_avatar.png 2026-04-14 16:12:19.677634 2026-04-14 16:12:19.677634 57 {mobilePhone} \N +1049 Dozkq \N Ztodggkmqrti dozkq5375@udqos.egd 57003787885 all_genders_avatar.png 2026-04-14 16:12:19.82489 2026-04-14 16:12:19.82489 105 {mobilePhone} \N +1050 Loscoq \N Agei loswq.agei@vtw.rt +26 701 03449645 all_genders_avatar.png 2026-04-14 16:12:19.939018 2026-04-14 16:12:19.939018 106 {mobilePhone} \N +1051 Wxsof \N \N yogfqwxsof@udqos.egd +2679098258438 all_genders_avatar.png 2026-04-14 16:12:20.123464 2026-04-14 16:12:20.123464 107 {mobilePhone} \N +1052 Hqwsg \N \N hqwsglxqfq37@igzdqos.egd +82106123591 all_genders_avatar.png 2026-04-14 16:12:20.34712 2026-04-14 16:12:20.34712 86 {mobilePhone} \N +1053 Qqlixzgli \N \N qqlixzgliaxdqkliqi3@udqos.egd 579975509566 all_genders_avatar.png 2026-04-14 16:12:20.505349 2026-04-14 16:12:20.505349 12 {mobilePhone} \N +1054 Dtroiq \N Ixloe d.ixloe@udb.rt 570129112989 all_genders_avatar.png 2026-04-14 16:12:20.605798 2026-04-14 16:12:20.605798 43 {mobilePhone} \N +1055 Dgxfq \N Iqddgxro dgxfqiqddgxro4@udqos.egd +26 701 45499711 all_genders_avatar.png 2026-04-14 16:12:20.734625 2026-04-14 16:12:20.734625 29 {mobilePhone} \N +1056 Fomqk \N Aqmqs yqwoqf.aqmqs@udqos.egd 579091968536 all_genders_avatar.png 2026-04-14 16:12:20.919718 2026-04-14 16:12:20.919718 71 {mobilePhone} \N +1057 Aqztkofq \N Ktlta aqztkofq.ktlta@udqos.egd +26 701 37254100 all_genders_avatar.png 2026-04-14 16:12:21.075216 2026-04-14 16:12:21.075216 3 {mobilePhone} \N +1058 RGDOFOE \N VQZTKIGXLT rzdv0330@udqos.egd @AkglltftkLz all_genders_avatar.png 2026-04-14 16:12:21.362526 2026-04-14 16:12:21.362526 6 {mobilePhone} \N +1059 Uoqf \N Qwrxssq uoqf.qwrxssq@udqos.egd 570148343302 all_genders_avatar.png 2026-04-14 16:12:21.640946 2026-04-14 16:12:21.640946 105 {mobilePhone} \N +1060 eioqkq \N \N eioqkqsqfmo68@udqos.egd 5526 70117628340 all_genders_avatar.png 2026-04-14 16:12:21.866915 2026-04-14 16:12:21.866915 35 {mobilePhone} \N +1061 Dqkot \N Dofrtkpqif dqkotdofrtkpqif@udqos.egd +267180549270 all_genders_avatar.png 2026-04-14 16:12:22.098528 2026-04-14 16:12:22.098528 108 {mobilePhone} \N +1062 Qfq \N Uqsofrg kxzi@ysgvtk.qo +26 708 4415798 all_genders_avatar.png 2026-04-14 16:12:22.272597 2026-04-14 16:12:22.272597 12 {mobilePhone} \N +1063 Pxsoq \N Dggu pxsoq-dggu@vtw.rt 579727426510 all_genders_avatar.png 2026-04-14 16:12:22.442006 2026-04-14 16:12:22.442006 35 {mobilePhone} \N +1064 Esédtfet \N EQKKT estdtfet.3609@udqos.egd +88174351838 all_genders_avatar.png 2026-04-14 16:12:22.64326 2026-04-14 16:12:22.64326 2 {mobilePhone} \N +1065 Zitktlq \N Yktozqu zitktlq.yktozqu@udb.ftz 579382753293 all_genders_avatar.png 2026-04-14 16:12:22.793994 2026-04-14 16:12:22.793994 28 {mobilePhone} \N +1066 Ltstfq \N Uqkeoq ltstfq.uqkeoq.dqozq@udqos.egd +2670181193043 all_genders_avatar.png 2026-04-14 16:12:22.968857 2026-04-14 16:12:22.968857 109 {mobilePhone} \N +1067 Qlso \N Nosdqm lgsdqmm.qlso@udqos.egd izzhl://z.dt/lgsdqmmqlso all_genders_avatar.png 2026-04-14 16:12:23.193547 2026-04-14 16:12:23.193547 7 {mobilePhone} \N +1068 Tsolq \N Tleqwoq tsolq.tleqwoq@udqos.egd 2679098308419 all_genders_avatar.png 2026-04-14 16:12:23.297568 2026-04-14 16:12:23.297568 47 {mobilePhone} \N +1069 Qlnq \N Qsroko lqkqnqkq028@udqos.egd 57036141802 all_genders_avatar.png 2026-04-14 16:12:23.505297 2026-04-14 16:12:23.505297 110 {mobilePhone} \N +1070 Ytkxmq \N Geiosgcq ytkxmmaqgeiosgcq@udqos.egd 570105557308 all_genders_avatar.png 2026-04-14 16:12:23.576037 2026-04-14 16:12:23.576037 111 {mobilePhone} \N +1071 Liokdqiroti \N \N dglzqyq.liokdqiroti@udqos.egd +2679085016869 all_genders_avatar.png 2026-04-14 16:12:23.803191 2026-04-14 16:12:23.803191 46 {mobilePhone} \N +1072 Sqxkq \N Lotkkq lotkkqsqxkq868@udqos.egd +267133163931 all_genders_avatar.png 2026-04-14 16:12:23.911893 2026-04-14 16:12:23.911893 17 {mobilePhone} \N +1073 Ytrtkoeq \N \N ytrtku.64.yk@udqos.egd +868828833962 all_genders_avatar.png 2026-04-14 16:12:24.177292 2026-04-14 16:12:24.177292 58 {mobilePhone} \N +1074 Mtdyokq \N \N mtdyokt66@udqos.egd +26 709 7231346 all_genders_avatar.png 2026-04-14 16:12:24.443961 2026-04-14 16:12:24.443961 2 {mobilePhone} \N +1075 Eqkgsoft \N Igsstn eqkgsoftsigsstn@udqos.egd 79092808488 all_genders_avatar.png 2026-04-14 16:12:24.700452 2026-04-14 16:12:24.700452 4 {mobilePhone} \N +1076 Qyqliot \N Stzlx qyqliot@igzdqos.egd +26 790 91254036 all_genders_avatar.png 2026-04-14 16:12:24.828919 2026-04-14 16:12:24.828919 32 {mobilePhone} \N +1077 Zqodgk \N Iqlitdo zqodgkliqi77iqlitdo@udqos.egd 579007292429 all_genders_avatar.png 2026-04-14 16:12:24.964658 2026-04-14 16:12:24.964658 112 {mobilePhone} \N +1078 Qosof \N Ygkdoq qosofygkdoq@udqos.egd 579094078037 all_genders_avatar.png 2026-04-14 16:12:25.046319 2026-04-14 16:12:25.046319 61 {mobilePhone} \N +1079 Iqkliozq \N \N woliz.iq@udqos.egd 570181255165 all_genders_avatar.png 2026-04-14 16:12:25.221269 2026-04-14 16:12:25.221269 61 {mobilePhone} \N +1080 Tsolt \N Ktiwtof tsolt@rtldgxsof.rt 579357879043 all_genders_avatar.png 2026-04-14 16:12:25.329041 2026-04-14 16:12:25.329041 56 {mobilePhone} \N +1081 Aqzitkoft \N Hgkkql aqzin_hh75@igzdqos.egd 57060235400 all_genders_avatar.png 2026-04-14 16:12:25.44392 2026-04-14 16:12:25.44392 36 {mobilePhone} \N +1082 Zkqfu \N \N ntfzkqfu@soct.rt 579091188438 all_genders_avatar.png 2026-04-14 16:12:25.618197 2026-04-14 16:12:25.618197 61 {mobilePhone} \N +1083 Yqkqu \N qidtr y.qwrxqidty@udqos.egd +26 701 87290047 all_genders_avatar.png 2026-04-14 16:12:25.833897 2026-04-14 16:12:25.833897 76 {mobilePhone} \N +1084 Foasql \N Rktotk foasql.8tk@dt.egd 570123524952 all_genders_avatar.png 2026-04-14 16:12:25.980669 2026-04-14 16:12:25.980669 113 {mobilePhone} \N +1085 Qwkqiqd \N Rtsuqrg q_rtsuqrg57@igzdqos.egd +267004305683 all_genders_avatar.png 2026-04-14 16:12:26.214277 2026-04-14 16:12:26.214277 114 {mobilePhone} \N +1086 Rqfots \N Itffqvo rqfotsdoeiqtsuiqsn@udqos.egd +267022399024 all_genders_avatar.png 2026-04-14 16:12:26.514416 2026-04-14 16:12:26.514416 115 {mobilePhone} \N +1087 Pqcotk \N \N pqco.eqlzst73@udqos.egd +2679705918946 all_genders_avatar.png 2026-04-14 16:12:26.683105 2026-04-14 16:12:26.683105 116 {mobilePhone} \N +1088 Kqeits \N Rnat kqrnat@udqos.egd Kqr_8888 all_genders_avatar.png 2026-04-14 16:12:26.805817 2026-04-14 16:12:26.805817 81 {mobilePhone} \N +1089 Qffoaq \N \N thitdtkq@hglztg.rt 570137299185 all_genders_avatar.png 2026-04-14 16:12:27.002348 2026-04-14 16:12:27.002348 11 {mobilePhone} \N +1090 Qfqlzqlooq \N \N xlzofgcq.qfqlzqlopq3575@udqos.egd +845604631315 all_genders_avatar.png 2026-04-14 16:12:27.127556 2026-04-14 16:12:27.127556 31 {mobilePhone} \N +1091 Qffq \N Zlqktfag eqktfagqfaq@udqos.egd +26 702 119 7044/ @qffotkt6 all_genders_avatar.png 2026-04-14 16:12:27.355263 2026-04-14 16:12:27.355263 117 {mobilePhone} \N +1092 Qssq \N Hknaigrag soaqk.qssq78@udqos.egd +2671569562090 all_genders_avatar.png 2026-04-14 16:12:27.555391 2026-04-14 16:12:27.555391 10 {mobilePhone} \N +1093 Nqkglsqcq \N \N sqyqtzaq88@udqos.egd 571563220740 all_genders_avatar.png 2026-04-14 16:12:27.70245 2026-04-14 16:12:27.70245 87 {mobilePhone} \N +1094 Hqfztq \N Wqikqdqsoqwiqko hqfztq.wqikqdqsoqwiqko@udqos.egd 570122212157 all_genders_avatar.png 2026-04-14 16:12:27.930979 2026-04-14 16:12:27.930979 86 {mobilePhone} \N +1095 Köddstk \N Pqf pk2vgksr@oesgxr.egd 70137254213 all_genders_avatar.png 2026-04-14 16:12:28.087692 2026-04-14 16:12:28.087692 118 {mobilePhone} \N +1096 Lghiot \N Igsdtl lghiotfigsdtl@udqos.egd +26 793 53790327 all_genders_avatar.png 2026-04-14 16:12:28.205125 2026-04-14 16:12:28.205125 58 {mobilePhone} \N +1097 Fqzqsoq \N Cnaiknlzoxa rgefqzqsoq75@udqos.egd +267057436073 all_genders_avatar.png 2026-04-14 16:12:28.432041 2026-04-14 16:12:28.432041 21 {mobilePhone} \N +1098 Pxf \N Aod qloqrtag@udqos.egd +26 7977 5434272 all_genders_avatar.png 2026-04-14 16:12:28.708706 2026-04-14 16:12:28.708706 64 {mobilePhone} \N +1099 Pqfq \N Vqllgfu pqfq.vqllgfu@udb.rt 579084737371 all_genders_avatar.png 2026-04-14 16:12:28.828688 2026-04-14 16:12:28.828688 61 {mobilePhone} \N +1100 Lqo \N Aqsqhxkqaaqs lqoliqkqf7452@udqos.egd +2679381089180 all_genders_avatar.png 2026-04-14 16:12:28.98601 2026-04-14 16:12:28.98601 119 {mobilePhone} \N +1101 Pgqfq \N Vtosqfr pgqfq.vtosqfr.wtksof@udqos.egd 570181883597 all_genders_avatar.png 2026-04-14 16:12:29.132942 2026-04-14 16:12:29.132942 102 {mobilePhone} \N +1102 Ntcitfooq \N Axsna tcutfnq.axsna@udqos.egd 579792587065 all_genders_avatar.png 2026-04-14 16:12:29.475621 2026-04-14 16:12:29.475621 80 {mobilePhone} \N +1103 Gsuq \N Hgfgdqkngcq gsuqfgcqnqlosq@udqos.egd izzhl://z.dt/Ysgktfetnq44 all_genders_avatar.png 2026-04-14 16:12:29.670348 2026-04-14 16:12:29.670348 120 {mobilePhone} \N +1104 Aqnzot \N Ftvwn aqnzot.ftvwn@udqos.egd +2679394655360 all_genders_avatar.png 2026-04-14 16:12:29.840431 2026-04-14 16:12:29.840431 35 {mobilePhone} \N +1105 Rqfq \N Dttlztkl rqfqzd73@udqos.egd +267060803108 all_genders_avatar.png 2026-04-14 16:12:30.022686 2026-04-14 16:12:30.022686 18 {mobilePhone} \N +1106 Ztzoqfq \N Dtroflao dtrofztz@udqos.egd 57067713765 all_genders_avatar.png 2026-04-14 16:12:30.315901 2026-04-14 16:12:30.315901 41 {mobilePhone} \N +1107 Lqfrkq \N Lzqka lqfrkqqfutsq.lzqka@udqos.egd +26579098882749 all_genders_avatar.png 2026-04-14 16:12:30.590962 2026-04-14 16:12:30.590962 51 {mobilePhone} \N +1108 Esqkq \N Leiöhyts esqkq.leigthyts@hglztg.rt 57151828233 all_genders_avatar.png 2026-04-14 16:12:30.734988 2026-04-14 16:12:30.734988 121 {mobilePhone} \N +1109 Solq \N Iöif solq.igtif@gxzsgga.egd 570104118199 all_genders_avatar.png 2026-04-14 16:12:30.922777 2026-04-14 16:12:30.922777 122 {mobilePhone} \N +1110 Dtkts \N Wtkatfiqutf dtktswtkatfiqutf@igzdqos.egd 57001165931 all_genders_avatar.png 2026-04-14 16:12:31.072062 2026-04-14 16:12:31.072062 66 {mobilePhone} \N +1111 Tfctk \N Zxfetk tfctk@udb.yk 570166475357 all_genders_avatar.png 2026-04-14 16:12:31.203809 2026-04-14 16:12:31.203809 116 {mobilePhone} \N +1112 Wtzzofq \N Lfnrtk wtzzofqlfnrtk@igzdqos.egd 5713 4165898 all_genders_avatar.png 2026-04-14 16:12:31.484408 2026-04-14 16:12:31.484408 123 {mobilePhone} \N +1113 Ltcos \N Qzoaro qzoaroltcos@udb.rt 57036533090 all_genders_avatar.png 2026-04-14 16:12:31.572365 2026-04-14 16:12:31.572365 12 {mobilePhone} \N +1114 Qkkqf \N Ysgnr) io.ysgnr@gxzsgga.egd +22 0035 000394 all_genders_avatar.png 2026-04-14 16:12:31.748604 2026-04-14 16:12:31.748604 7 {mobilePhone} \N +1115 Qfrktq \N Ukqfrt dlukqfrt.eg@udqos.egd +267138650286 all_genders_avatar.png 2026-04-14 16:12:32.12136 2026-04-14 16:12:32.12136 105 {mobilePhone} \N +1116 Loftd \N Ømwqs loftd.gmwqs@udqos.egd +2020331144 all_genders_avatar.png 2026-04-14 16:12:32.249745 2026-04-14 16:12:32.249745 87 {mobilePhone} \N +1117 Dtkntd \N Dquiktwo dtkntd.dquiktwo@udqos.egd 57054546569 all_genders_avatar.png 2026-04-14 16:12:32.399725 2026-04-14 16:12:32.399725 119 {mobilePhone} \N +1118 Fqzqsnq \N Uqckostfag fqzqsnquqckostfag@igzdqos.egd 57036054291 all_genders_avatar.png 2026-04-14 16:12:32.544094 2026-04-14 16:12:32.544094 105 {mobilePhone} \N +1119 Çqğsq \N Uümtsuüf equsq3774@udqos.egd 579975625786 all_genders_avatar.png 2026-04-14 16:12:32.717532 2026-04-14 16:12:32.717532 2 {mobilePhone} \N +1120 Qndqf \N Tllq qndqftllq34@udqos.egd 326738808061 all_genders_avatar.png 2026-04-14 16:12:32.962162 2026-04-14 16:12:32.962162 86 {mobilePhone} \N +1121 Fgxk \N \N fgxkzititqstk@udqos.egd 57053887799 all_genders_avatar.png 2026-04-14 16:12:33.147931 2026-04-14 16:12:33.147931 58 {mobilePhone} \N +1122 Dqfgsg \N Kgrkouxtm dqfgsgrtvoftk@udqos.egd +82116331449 all_genders_avatar.png 2026-04-14 16:12:33.290171 2026-04-14 16:12:33.290171 20 {mobilePhone} \N +1123 Qkgio \N Hkqwix hglz.qkgio@udqos.egd 57023047195 all_genders_avatar.png 2026-04-14 16:12:33.457776 2026-04-14 16:12:33.457776 54 {mobilePhone} \N +1124 Eqdosst \N Sotwolei eqdosstsotwolei@udqos.egd +26 718 8207692 all_genders_avatar.png 2026-04-14 16:12:33.677942 2026-04-14 16:12:33.677942 86 {mobilePhone} \N +1344 Sgktlq \N \N sgktlq59@igzdqos.rt +2679657815072 \N 2026-04-17 15:15:32.742127 2026-04-17 15:15:32.742127 156 {mobilePhone} \N +1125 Rtwwot \N Vtollofutk rtwwot.vtollofutk@igzdqos.rt 579080692343 all_genders_avatar.png 2026-04-14 16:12:33.927576 2026-04-14 16:12:33.927576 18 {mobilePhone} \N +1126 Gsuq \N Zkgzltfag itsssuqz@igzdqos.egd 571567289449 all_genders_avatar.png 2026-04-14 16:12:34.129035 2026-04-14 16:12:34.129035 86 {mobilePhone} \N +1127 Kxlxrqf \N Htzkoqlicoso kxlxrqfhtzkoqlicoso@nqigg.egd 57046482929 all_genders_avatar.png 2026-04-14 16:12:34.406572 2026-04-14 16:12:34.406572 124 {mobilePhone} \N +1128 Lqsgdt \N \N lqsgdt_vquftk@igzdqos.rt 57058919117 all_genders_avatar.png 2026-04-14 16:12:34.733651 2026-04-14 16:12:34.733651 79 {mobilePhone} \N +1129 Eqkgst \N Sqcossgffoèkt eqkgst.sqcossgffotkt@udqos.egd 57096592630 all_genders_avatar.png 2026-04-14 16:12:35.00673 2026-04-14 16:12:35.00673 125 {mobilePhone} \N +1130 Ocgffq \N \N kgdqfnxaocgffq@udqos.egd @ocqpocq all_genders_avatar.png 2026-04-14 16:12:35.223945 2026-04-14 16:12:35.223945 48 {mobilePhone} \N +1131 Dqkoq \N \N dqkoqi.ugkwxfgcq@udqos.egd 57046130520 all_genders_avatar.png 2026-04-14 16:12:35.383984 2026-04-14 16:12:35.383984 58 {mobilePhone} \N +1132 Qfft \N Pxfudqff qfft.pxfudqff@udqos.egd 570187294687 all_genders_avatar.png 2026-04-14 16:12:35.553773 2026-04-14 16:12:35.553773 44 {mobilePhone} \N +1133 Cqlosollq \N Päälatsäoftf cqlopqqla2@udqos.egd +26 790 99340674 all_genders_avatar.png 2026-04-14 16:12:35.728476 2026-04-14 16:12:35.728476 119 {mobilePhone} \N +1134 Coezgkoq \N Htklgfft coe.htklgfft@udqos.egd 579387542670 all_genders_avatar.png 2026-04-14 16:12:35.99871 2026-04-14 16:12:35.99871 113 {mobilePhone} \N +1135 Rqkoq \N Stikdqff rqkoq_7150@nqigg.rt 57086073763 all_genders_avatar.png 2026-04-14 16:12:36.186958 2026-04-14 16:12:36.186958 51 {mobilePhone} \N +1136 Lztyqfg \N \N lztyqfgsgdwqkrg@hglztg.rt lzy99 / 57007458262 all_genders_avatar.png 2026-04-14 16:12:36.47212 2026-04-14 16:12:36.47212 6 {mobilePhone} \N +1137 Ykorq \N Wkqfrz ykorqlwkqfrz@udqos.egd +2938750007 all_genders_avatar.png 2026-04-14 16:12:36.56328 2026-04-14 16:12:36.56328 100 {mobilePhone} \N +1138 Qxlqy \N \N qilqfqxlqyy@udqos.egd +26 701 03949699 all_genders_avatar.png 2026-04-14 16:12:36.819048 2026-04-14 16:12:36.819048 40 {mobilePhone} \N +1139 Púsoq \N \N pxsoqlqfeig.6@udqos.egd +82 171 71 52 43 all_genders_avatar.png 2026-04-14 16:12:36.924846 2026-04-14 16:12:36.924846 124 {mobilePhone} \N +1140 Pqf \N Hxkzmts pqfhxkzmts@udqos.egd 57031259572 all_genders_avatar.png 2026-04-14 16:12:37.212296 2026-04-14 16:12:37.212296 62 {mobilePhone} \N +1141 Iqffqi \N Usqolztk iqffqi.usqolztk@mqsqfrg.rt 57132837054 all_genders_avatar.png 2026-04-14 16:12:37.44107 2026-04-14 16:12:37.44107 3 {mobilePhone} \N +1142 Zod \N Pqfeat zodpqfeat@udb.rt 7036349607 all_genders_avatar.png 2026-04-14 16:12:37.622386 2026-04-14 16:12:37.622386 126 {mobilePhone} \N +1143 Sxolq \N Kqx sxolqkqx@igzdqos.rt +2679658012758 all_genders_avatar.png 2026-04-14 16:12:37.768511 2026-04-14 16:12:37.768511 82 {mobilePhone} \N +1144 Dqbodosoqf \N Hxszm dqbodosoqf.hxszm@udqos.egd 570137984299 all_genders_avatar.png 2026-04-14 16:12:37.935356 2026-04-14 16:12:37.935356 102 {mobilePhone} \N +1145 Orq \N Agkzi orq.agkzi@vtw.rt 570105592099 all_genders_avatar.png 2026-04-14 16:12:38.198763 2026-04-14 16:12:38.198763 60 {mobilePhone} \N +1146 Ktrq \N Qsaiqsqy aqsqykrqq@udqos.egd 570132606689 all_genders_avatar.png 2026-04-14 16:12:38.370127 2026-04-14 16:12:38.370127 16 {mobilePhone} \N +1147 Pqktr \N Zkossiqqlt pzkossiqqlt@udqos.egd +2670130692611 all_genders_avatar.png 2026-04-14 16:12:38.518548 2026-04-14 16:12:38.518548 27 {mobilePhone} \N +1148 Rqcor \N Hotkofo hotkofo.rqcor@udb.rt +2679703105101 all_genders_avatar.png 2026-04-14 16:12:38.713623 2026-04-14 16:12:38.713623 84 {mobilePhone} \N +1149 Lqkqi \N Uqst lqkqilztksofuuqst@udqos.egd +2679710649023 all_genders_avatar.png 2026-04-14 16:12:38.842573 2026-04-14 16:12:38.842573 95 {mobilePhone} \N +1150 Rqfots \N \N rqfotssggltk60@udqos.egd +2670185712765 all_genders_avatar.png 2026-04-14 16:12:39.04517 2026-04-14 16:12:39.04517 82 {mobilePhone} \N +1151 Qfqlzqlooq \N \N fqlhtli@udqos.egd 57047048642 all_genders_avatar.png 2026-04-14 16:12:39.205287 2026-04-14 16:12:39.205287 124 {mobilePhone} \N +1152 Eiqksgzzt \N Htsk ewtphtsz@udqos.egd 55267130048163 all_genders_avatar.png 2026-04-14 16:12:39.408367 2026-04-14 16:12:39.408367 116 {mobilePhone} \N +1153 Ofèl \N Wtkaigxvtk oftl.wtkaigxvtk@leotfetlhg.yk 57034142440 all_genders_avatar.png 2026-04-14 16:12:39.674547 2026-04-14 16:12:39.674547 25 {mobilePhone} \N +1154 Sxqfq \N Gsoctokq youxtoktrg.sxqfq@udqos.egd 57043860906 all_genders_avatar.png 2026-04-14 16:12:39.823226 2026-04-14 16:12:39.823226 69 {mobilePhone} \N +1155 Iqffqi \N Hstozutf hstozutfiqffqi@udqos.egd 55 26 709 0455677 all_genders_avatar.png 2026-04-14 16:12:39.920964 2026-04-14 16:12:39.920964 89 {mobilePhone} \N +1156 qffq \N \N qffqsxeot@udb.ftz 570110381625 all_genders_avatar.png 2026-04-14 16:12:40.050975 2026-04-14 16:12:40.050975 125 {mobilePhone} \N +1157 Pgif \N Eixq eixqpgifsxat@udqos.egd +15736554539. all_genders_avatar.png 2026-04-14 16:12:40.181478 2026-04-14 16:12:40.181478 18 {mobilePhone} \N +1158 Dqkukéz \N Wsöfrqs wsgfrqsdqkuktz@udqos.egd +8924106658 all_genders_avatar.png 2026-04-14 16:12:40.280033 2026-04-14 16:12:40.280033 37 {mobilePhone} \N +1159 Ktrotz \N \N utmtktr@udqos.egd +2670185983217 all_genders_avatar.png 2026-04-14 16:12:40.457018 2026-04-14 16:12:40.457018 84 {mobilePhone} \N +1160 Ktiqzo \N Dqrofq dqrofqktiqzo@udqos.egd 579387195639 all_genders_avatar.png 2026-04-14 16:12:40.555432 2026-04-14 16:12:40.555432 60 {mobilePhone} \N +1161 Aqztknfq \N Zqsqliga zqsqligaa@udqos.egd 579772864494 all_genders_avatar.png 2026-04-14 16:12:40.739229 2026-04-14 16:12:40.739229 127 {mobilePhone} \N +1162 Aqknfq \N Lqctfag aqkofaqlqctfag@udqos.egd 579339608843 all_genders_avatar.png 2026-04-14 16:12:40.916933 2026-04-14 16:12:40.916933 119 {mobilePhone} \N +1163 Dosq \N \N zqkozlq907@udqos.egd 579651770153 all_genders_avatar.png 2026-04-14 16:12:41.054911 2026-04-14 16:12:41.054911 128 {mobilePhone} \N +1164 Soxrdnsq \N \N soxrqeiqoaq71@udqos.egd 57031093268 all_genders_avatar.png 2026-04-14 16:12:41.222923 2026-04-14 16:12:41.222923 129 {mobilePhone} \N +1165 Htzktfag \N Soxrdnsq htzktfag.dosq@udb.rt +267021107290 all_genders_avatar.png 2026-04-14 16:12:41.435591 2026-04-14 16:12:41.435591 129 {mobilePhone} \N +1166 Gstalqfrkq \N \N agsgdotzlfoll@udqos.egd +2679712850764 all_genders_avatar.png 2026-04-14 16:12:41.664051 2026-04-14 16:12:41.664051 130 {mobilePhone} \N +1167 Aqdosq \N Mqaikqwtagcq mqaikqwtagcqaqdosq@udqos.egd 5642463939 Ztstukqdd all_genders_avatar.png 2026-04-14 16:12:41.891794 2026-04-14 16:12:41.891794 131 {mobilePhone} \N +1168 Gsiq \N \N einiosgcqgsuqwgb@xak.ftz +845666152806 all_genders_avatar.png 2026-04-14 16:12:42.040717 2026-04-14 16:12:42.040717 97 {mobilePhone} \N +1169 Fqzqsonq \N \N f951511806@udqos.egd +26 715 61324665 all_genders_avatar.png 2026-04-14 16:12:42.176878 2026-04-14 16:12:42.176878 11 {mobilePhone} \N +1170 Kqfoq \N Gzidqf wgkqfoq66@udqos.egd 57052619237 all_genders_avatar.png 2026-04-14 16:12:42.323984 2026-04-14 16:12:42.323984 38 {mobilePhone} \N +1171 Uogkuog \N Sxhg uog.sxhg0@udqos.egd 55868826009031 all_genders_avatar.png 2026-04-14 16:12:42.564409 2026-04-14 16:12:42.564409 3 {mobilePhone} \N +1172 Ctkgfoaq \N \N cqaifgclaqctkgfoaq@udqos.egd +2670142307775 all_genders_avatar.png 2026-04-14 16:12:42.670979 2026-04-14 16:12:42.670979 27 {mobilePhone} \N +1173 Nxsooq \N Yofoxa pxsoqyofnxa@udqos.egd +2679094580932 all_genders_avatar.png 2026-04-14 16:12:42.880727 2026-04-14 16:12:42.880727 39 {mobilePhone} \N +1174 Asqkq \N Ptlln asqkqptlln7@udqos.egd 570103939936 all_genders_avatar.png 2026-04-14 16:12:43.050733 2026-04-14 16:12:43.050733 84 {mobilePhone} \N +1175 Dqkot \N Iqxtol-Kgwoflgf dqkotiqxkgw@oesgxr.egd +26 7001200410 all_genders_avatar.png 2026-04-14 16:12:43.155956 2026-04-14 16:12:43.155956 124 {mobilePhone} \N +1176 Aqzofq \N Leivqkm aqzofq.leivqkm@hglztg.rt 570183198534 all_genders_avatar.png 2026-04-14 16:12:43.276617 2026-04-14 16:12:43.276617 65 {mobilePhone} \N +1177 Tcq \N Ziodltf tcqziodltf@nqigg.egd 57000778870 all_genders_avatar.png 2026-04-14 16:12:43.468671 2026-04-14 16:12:43.468671 3 {mobilePhone} \N +1178 Sqxkq \N Zgkg sqxkqzgkg102@udqos.egd +908782047533 all_genders_avatar.png 2026-04-14 16:12:43.707431 2026-04-14 16:12:43.707431 132 {mobilePhone} \N +1179 Ntigk \N Dxrkno ntigk_dxrkno@nqigg.egd 552679712862885 all_genders_avatar.png 2026-04-14 16:12:43.832485 2026-04-14 16:12:43.832485 16 {mobilePhone} \N +1180 Qroznq \N Dqzqst dqzqst.qroznq@udqos.egd +26 700 092 1441 all_genders_avatar.png 2026-04-14 16:12:44.038744 2026-04-14 16:12:44.038744 45 {mobilePhone} \N +1181 Sqkollq \N Cgssiqkrz c.sqk.ollq@udb.rt @w_ollq50 all_genders_avatar.png 2026-04-14 16:12:44.226122 2026-04-14 16:12:44.226122 133 {mobilePhone} \N +1182 Lgyoq \N Yxleg yxleg.lgyoq@udb.rt 57130341188 all_genders_avatar.png 2026-04-14 16:12:44.513782 2026-04-14 16:12:44.513782 33 {mobilePhone} \N +1183 Doq \N Zqitko doq.z2itko@udqos.egd 57089165937 all_genders_avatar.png 2026-04-14 16:12:44.769869 2026-04-14 16:12:44.769869 12 {mobilePhone} \N +1184 Wqnq \N Gxqrio wqnq.gxqrio@udqos.egd +2670133866257 all_genders_avatar.png 2026-04-14 16:12:44.91198 2026-04-14 16:12:44.91198 43 {mobilePhone} \N +1185 Kgwtkz \N Solftn kgwtkzsolftn@udqos.egd 579081743793 all_genders_avatar.png 2026-04-14 16:12:45.034254 2026-04-14 16:12:45.034254 47 {mobilePhone} \N +1186 Dqnlt \N Wqatk dqnltwqatk@udqos.egd 570139514142 all_genders_avatar.png 2026-04-14 16:12:45.246195 2026-04-14 16:12:45.246195 69 {mobilePhone} \N +1187 Pgqffq \N Vosaqfl pgqffqvosaqfl@udqos.egd 57049540642 all_genders_avatar.png 2026-04-14 16:12:45.363103 2026-04-14 16:12:45.363103 82 {mobilePhone} \N +1188 Dgiqddtr \N Tsquwqli dgiqddtrtsquwqli@udqos.egd 7068627132 all_genders_avatar.png 2026-04-14 16:12:45.475102 2026-04-14 16:12:45.475102 58 {mobilePhone} \N +1189 Ptffn \N Sgidtotk ptffnsgidtotk@igzdqos.egd 79703790483 all_genders_avatar.png 2026-04-14 16:12:45.634428 2026-04-14 16:12:45.634428 116 {mobilePhone} \N +1190 Qhkostt \N Ftslgf qhkosttftslgf79@udqos.egd 5701 33496541 all_genders_avatar.png 2026-04-14 16:12:45.753966 2026-04-14 16:12:45.753966 122 {mobilePhone} \N +1191 Sqgolt \N Uqztsn sqgoltu@udqos.egd +898493583604 all_genders_avatar.png 2026-04-14 16:12:45.857198 2026-04-14 16:12:45.857198 7 {mobilePhone} \N +1192 Lghioq \N Wküddtfrgky l.wkxddtfrgky@wzofztkftz.egd +2934762231 all_genders_avatar.png 2026-04-14 16:12:45.962519 2026-04-14 16:12:45.962519 134 {mobilePhone} \N +1193 Eiqksgzzt \N Vqkft evqkft075@udqos.egd +267031037618 all_genders_avatar.png 2026-04-14 16:12:46.076928 2026-04-14 16:12:46.076928 21 {mobilePhone} \N +1194 Lofq \N Uktlldqff lofq.uktlldqff@z-gfsoft.rt 579399172747 all_genders_avatar.png 2026-04-14 16:12:46.242952 2026-04-14 16:12:46.242952 134 {mobilePhone} \N +1195 Iqmqs \N Lgntk iqmqs.lgntk@igzdqos.egd +2679975408005 all_genders_avatar.png 2026-04-14 16:12:46.498216 2026-04-14 16:12:46.498216 124 {mobilePhone} \N +1196 Fqmqfof \N Fquiohgxk fqmqff.fk@udqos.egd 579657182853 all_genders_avatar.png 2026-04-14 16:12:46.786186 2026-04-14 16:12:46.786186 135 {mobilePhone} \N +1197 Tstfq \N Utkwts tstfq.utkwts79@udqos.egd 579381014996 all_genders_avatar.png 2026-04-14 16:12:46.952152 2026-04-14 16:12:46.952152 136 {mobilePhone} \N +1198 Gnqfxk \N Wttutk gnqfxkgmaqf@udqos.egd +2670147284461 all_genders_avatar.png 2026-04-14 16:12:47.148549 2026-04-14 16:12:47.148549 32 {mobilePhone} \N +1199 Htkoiqf \N Gkiqf htkoiqfgkiqf236@udqos.egd 7133921088 all_genders_avatar.png 2026-04-14 16:12:47.284639 2026-04-14 16:12:47.284639 61 {mobilePhone} \N +1200 Eqkdtsofq \N Eqygkog eqkdtsofq.eqygkog@vtw.rt 570183104519 all_genders_avatar.png 2026-04-14 16:12:47.513081 2026-04-14 16:12:47.513081 21 {mobilePhone} \N +1201 Ltuxf \N Lxst ltuxf.l.eiqkstl@udqos.egd 79396187447 all_genders_avatar.png 2026-04-14 16:12:47.633106 2026-04-14 16:12:47.633106 25 {mobilePhone} \N +1202 Hqkcofq \N \N hqkcofq.jqlodgcq@udqos.egd 57008100005 all_genders_avatar.png 2026-04-14 16:12:47.832417 2026-04-14 16:12:47.832417 38 {mobilePhone} \N +1203 Aknlznfq \N Dgmgsnxa a.dgmgsnxa@gxzsgga.rt 579099197985 all_genders_avatar.png 2026-04-14 16:12:47.983626 2026-04-14 16:12:47.983626 137 {mobilePhone} \N +1204 Eikolzofq \N Wkouqzo eikolzofq.wkouqzo@udqos.egd 570199617725 all_genders_avatar.png 2026-04-14 16:12:48.110196 2026-04-14 16:12:48.110196 7 {mobilePhone} \N +1205 Sqkq \N Uqtkwtk sqkq.sqosq.uqtkwtk@mqsqfrg.rt 57136263229 all_genders_avatar.png 2026-04-14 16:12:48.233373 2026-04-14 16:12:48.233373 7 {mobilePhone} \N +1206 Qlloq \N Aqrrqeit qlloq.aqrrqeit52@udqos.egd 7935 9874519 all_genders_avatar.png 2026-04-14 16:12:48.338003 2026-04-14 16:12:48.338003 47 {mobilePhone} \N +1207 Lqfst \N Zgfu lqfst.zgfu@gxzsgga.egd 579391744669 all_genders_avatar.png 2026-04-14 16:12:48.505377 2026-04-14 16:12:48.505377 40 {mobilePhone} \N +1208 Qlzkor \N \N qlzkor.fgnq.eol@udqos.egd +26 701 34835201 all_genders_avatar.png 2026-04-14 16:12:48.676572 2026-04-14 16:12:48.676572 6 {mobilePhone} \N +1209 Atolxat \N Guqvq guqvq.atolxat.7738@udqos.egd +26 700 3820017 all_genders_avatar.png 2026-04-14 16:12:48.779596 2026-04-14 16:12:48.779596 79 {mobilePhone} \N +1210 Dqkzq \N Axwoemta dqkzq.axwoemta1@udqos.egd +24156274596 all_genders_avatar.png 2026-04-14 16:12:48.989208 2026-04-14 16:12:48.989208 138 {mobilePhone} \N +1211 Sofrlqn \N Ukqiqd sofrlqndukqiqd@udqos.egd +2679735397206 all_genders_avatar.png 2026-04-14 16:12:49.233145 2026-04-14 16:12:49.233145 10 {mobilePhone} \N +1212 Qffq \N Dtlieitknqagcq q.dtlieitknqagcq@soct.rt 57047237872 all_genders_avatar.png 2026-04-14 16:12:49.466385 2026-04-14 16:12:49.466385 60 {mobilePhone} \N +1213 Lodgft \N Wqrofu 6qxlltr9dqk@vtw.rt 585-10431371 all_genders_avatar.png 2026-04-14 16:12:49.640844 2026-04-14 16:12:49.640844 139 {mobilePhone} \N +1345 Sgktlq \N \N sgktlq59@igzdqos.rt +2679657815072 \N 2026-04-17 15:21:02.326297 2026-04-17 15:21:02.326297 157 {mobilePhone} \N +1214 Fqzqsoq \N Akqei fqzqsoq.akqei@udb.rt 579799126996 all_genders_avatar.png 2026-04-14 16:12:49.736087 2026-04-14 16:12:49.736087 136 {mobilePhone} \N +1215 Qstbqfrtk \N Dsxrta qstbqfrtkdsxrta@qkegk.rt +2679915749521 all_genders_avatar.png 2026-04-14 16:12:49.88731 2026-04-14 16:12:49.88731 139 {mobilePhone} \N +1216 Mqofqw \N Okxd mqofo.okgfqrroez@udqos.egd 579099112811 all_genders_avatar.png 2026-04-14 16:12:50.127915 2026-04-14 16:12:50.127915 64 {mobilePhone} \N +1217 QFQ \N SQWKQ qfqaqktfzgkktlrtsqwkq79@udqos.egd +267181649224 all_genders_avatar.png 2026-04-14 16:12:50.485397 2026-04-14 16:12:50.485397 65 {mobilePhone} \N +1218 Woqfeq \N Leifozmstk woqfeqleifozmstk@oesgxr.egd +25 (073) 897 353 all_genders_avatar.png 2026-04-14 16:12:50.679515 2026-04-14 16:12:50.679515 20 {mobilePhone} \N +1219 Dtkntd \N Nosrokod dtkntdqnrofeg@udqos.egd 57046141103 all_genders_avatar.png 2026-04-14 16:12:50.869812 2026-04-14 16:12:50.869812 38 {mobilePhone} \N +1220 Qwiolita \N Wqwwqk qwiolitawqwwqk753@udqos.egd 570117172226 all_genders_avatar.png 2026-04-14 16:12:51.094218 2026-04-14 16:12:51.094218 140 {mobilePhone} \N +1221 ssoq \N Mqhh nsnq.0@vtw.rt 57023575564 all_genders_avatar.png 2026-04-14 16:12:51.302924 2026-04-14 16:12:51.302924 51 {mobilePhone} \N +1222 Yqsag \N Väiftk yqsag.vqtiftk@udqos.egd +267048326876 all_genders_avatar.png 2026-04-14 16:12:51.495938 2026-04-14 16:12:51.495938 58 {mobilePhone} \N +1223 Hxpqf \N Pglio hxpqfp53@udqos.egd @Hggii45 all_genders_avatar.png 2026-04-14 16:12:51.686274 2026-04-14 16:12:51.686274 109 {mobilePhone} \N +1224 Qodqf \N Qkliqr qodqfqkliqr308@udqos.egd 57182904879 all_genders_avatar.png 2026-04-14 16:12:51.948537 2026-04-14 16:12:51.948537 13 {mobilePhone} \N +1225 Atfoq \N Cossqsgwgl atfoq.hqolqpt@udqos.egd 57044574771 all_genders_avatar.png 2026-04-14 16:12:52.139365 2026-04-14 16:12:52.139365 141 {mobilePhone} \N +1226 Dgiqddqr \N Iqppqk qsiqppqk.dgiqddqr@udqos.egd 570119381753 all_genders_avatar.png 2026-04-14 16:12:52.328239 2026-04-14 16:12:52.328239 29 {mobilePhone} \N +1227 Rqfots \N Ldozi rqfldozib3@oesgxr.egd +22(5)0948866607 all_genders_avatar.png 2026-04-14 16:12:52.423552 2026-04-14 16:12:52.423552 68 {mobilePhone} \N +1228 Dqkot \N Cgos dertcgos@udqos.egd 579094856242 all_genders_avatar.png 2026-04-14 16:12:52.635833 2026-04-14 16:12:52.635833 36 {mobilePhone} \N +1229 Lqzinq \N Kqd lqzinqkqd06@udqos.egd 579088192664 all_genders_avatar.png 2026-04-14 16:12:52.867692 2026-04-14 16:12:52.867692 42 {mobilePhone} \N +1230 Lqkq \N Tssoea lqkqetssoea@udqos.egd +26 701 79077651 all_genders_avatar.png 2026-04-14 16:12:52.958983 2026-04-14 16:12:52.958983 116 {mobilePhone} \N +1231 Rgkol \N \N rgkknvx@udqos.egd 570130263440 all_genders_avatar.png 2026-04-14 16:12:53.129117 2026-04-14 16:12:53.129117 35 {mobilePhone} \N +1232 Kqdof \N Yquioio ktqskqdofduhgh@udqos.egd +2670113601351 all_genders_avatar.png 2026-04-14 16:12:53.32788 2026-04-14 16:12:53.32788 79 {mobilePhone} \N +1233 Mtofqw \N Ntazq mtofqw.k.ntazq@udqos.egd 57180509153 all_genders_avatar.png 2026-04-14 16:12:53.486131 2026-04-14 16:12:53.486131 142 {mobilePhone} \N +1234 Sxaql \N Fösstk sxaql.t.fgtsstk@udqos.egd +2679081230330 all_genders_avatar.png 2026-04-14 16:12:53.796107 2026-04-14 16:12:53.796107 102 {mobilePhone} \N +1235 Pxsoq \N Lmgsuntdn pagsuntdn@udqos.egd +26 793 96912588 all_genders_avatar.png 2026-04-14 16:12:53.900493 2026-04-14 16:12:53.900493 140 {mobilePhone} \N +1236 Sqxknf \N DeFqdtt defqdtts@hkgzgf.dt +898 406586790 all_genders_avatar.png 2026-04-14 16:12:54.112652 2026-04-14 16:12:54.112652 44 {mobilePhone} \N +1237 Qdtsot \N \N ateaqdtsot@udqos.egd +2670103392820 all_genders_avatar.png 2026-04-14 16:12:54.400741 2026-04-14 16:12:54.400741 25 {mobilePhone} \N +1238 Nqkq \N \N nqkqiqfrleiof54@udqos.egd +76046691931 all_genders_avatar.png 2026-04-14 16:12:54.604028 2026-04-14 16:12:54.604028 20 {mobilePhone} \N +1239 Utgku \N Dqlthixs u.dqlthixs@gxzsgga.rt 57099901326 all_genders_avatar.png 2026-04-14 16:12:54.7781 2026-04-14 16:12:54.7781 143 {mobilePhone} \N +1240 Dqzoql \N Agloa dwtetr@udqos.egd 579333552321 all_genders_avatar.png 2026-04-14 16:12:54.896351 2026-04-14 16:12:54.896351 112 {mobilePhone} \N +1241 Kqidgxfq \N Aktrodo aktrodokqidgxfq@udqos.egd 579356203568 all_genders_avatar.png 2026-04-14 16:12:55.031893 2026-04-14 16:12:55.031893 124 {mobilePhone} \N +1242 Dokoqd \N Dqsta dokoqddqsta68@udqos.egd +26 790 001 998 81 all_genders_avatar.png 2026-04-14 16:12:55.364359 2026-04-14 16:12:55.364359 11 {mobilePhone} \N +1243 Yqkqi \N Agkkq yqkqiagkkq@oesgxr.egd 5701 09661663 all_genders_avatar.png 2026-04-14 16:12:55.527403 2026-04-14 16:12:55.527403 80 {mobilePhone} \N +1244 Fol \N Atosiqxtk atosiqxtkfol@udqos.egd 57184030894 all_genders_avatar.png 2026-04-14 16:12:55.661542 2026-04-14 16:12:55.661542 37 {mobilePhone} \N +1245 Mtnfth \N Yokrtclgusx mtnfth.yokrtclgusx@dqsztltk.gku 57154232552 all_genders_avatar.png 2026-04-14 16:12:55.825417 2026-04-14 16:12:55.825417 79 {mobilePhone} \N +1246 Zod \N \N zodgzinwtntk295@igzdqos.egd 579381252062 all_genders_avatar.png 2026-04-14 16:12:56.113319 2026-04-14 16:12:56.113319 96 {mobilePhone} \N +1247 Olgwts \N Ugkdqf-Wxeastn olgwts.uw@udqos.egd +220480963232 all_genders_avatar.png 2026-04-14 16:12:56.260557 2026-04-14 16:12:56.260557 29 {mobilePhone} \N +1248 Olq \N Ldozi olqldozi2@udqos.egd +26 701 44264783 all_genders_avatar.png 2026-04-14 16:12:56.352279 2026-04-14 16:12:56.352279 20 {mobilePhone} \N +1249 Iqfoft \N \N iqfoftsqso02@udqos.egd 579083805055 all_genders_avatar.png 2026-04-14 16:12:56.635364 2026-04-14 16:12:56.635364 132 {mobilePhone} \N +1250 Ysgkoqf \N Yqqwtk ysgkoqf.yqqwtk@yx-wtksof.rt 570191696996 all_genders_avatar.png 2026-04-14 16:12:56.903992 2026-04-14 16:12:56.903992 79 {mobilePhone} \N +1251 Sxeot \N Mns sxeotcqfmns@hglztg.rt 552670140623339 all_genders_avatar.png 2026-04-14 16:12:57.126935 2026-04-14 16:12:57.126935 79 {mobilePhone} \N +1252 Qaqroq \N Dqsao qaqroq.dqsao@gxzsgga.rt 5701/29002313 all_genders_avatar.png 2026-04-14 16:12:57.423848 2026-04-14 16:12:57.423848 69 {mobilePhone} \N +1253 Lgyot \N Iggutfwgtmtd lgyot.qrkoqfq@udqos.egd 579727845175 all_genders_avatar.png 2026-04-14 16:12:57.591242 2026-04-14 16:12:57.591242 3 {mobilePhone} \N +1254 Offq \N \N asohlq7074@udqos.egd +845685549023 all_genders_avatar.png 2026-04-14 16:12:57.815389 2026-04-14 16:12:57.815389 80 {mobilePhone} \N +1255 Coazgkooq \N \N zxlpqaq@udqos.egd @co_allll all_genders_avatar.png 2026-04-14 16:12:57.971875 2026-04-14 16:12:57.971875 144 {mobilePhone} \N +1256 Fqzqsoq \N Fnmifnagclaq fomifoagclaqfc@udqos.egd 579797262887 all_genders_avatar.png 2026-04-14 16:12:58.200142 2026-04-14 16:12:58.200142 66 {mobilePhone} \N +1257 qffq \N \N wgwkqagcqqffq61@udqos.egd 715 68221990 all_genders_avatar.png 2026-04-14 16:12:58.484477 2026-04-14 16:12:58.484477 99 {mobilePhone} \N +1258 Lzqfolsqc \N Lidqusg lidqusg.lzql7@udqos.egd +267158393544 all_genders_avatar.png 2026-04-14 16:12:58.57514 2026-04-14 16:12:58.57514 36 {mobilePhone} \N +1259 Lzthqf \N Hghgc lzthqfhghgc59@oesgxr.egd 579779016828 all_genders_avatar.png 2026-04-14 16:12:58.855911 2026-04-14 16:12:58.855911 99 {mobilePhone} \N +1260 Qkltf \N \N wqkl1927@udqos.egd 579776221191 all_genders_avatar.png 2026-04-14 16:12:59.002381 2026-04-14 16:12:59.002381 40 {mobilePhone} \N +1261 Qlso \N Rxkx qlsorxkx@igzdqos.egd 579332786979 all_genders_avatar.png 2026-04-14 16:12:59.124201 2026-04-14 16:12:59.124201 58 {mobilePhone} \N +1262 Qfxhdq \N Nqrqc nqrqcqfxhdq78@udqos.egd 579370615767 all_genders_avatar.png 2026-04-14 16:12:59.235951 2026-04-14 16:12:59.235951 145 {mobilePhone} \N +1263 Aqznq \N \N cgcaqztknfq@udqos.egd +267096904874 all_genders_avatar.png 2026-04-14 16:12:59.518734 2026-04-14 16:12:59.518734 17 {mobilePhone} \N +1264 Hqzkoea \N Leidor hqzkoea.leidor@hglztg.rt 579354965212 all_genders_avatar.png 2026-04-14 16:12:59.703878 2026-04-14 16:12:59.703878 3 {mobilePhone} \N +1265 Qstbqfrkq \N \N eikolzqfrs.qstbqfrkq@udqos.egd +2679727845061 all_genders_avatar.png 2026-04-14 16:12:59.820753 2026-04-14 16:12:59.820753 40 {mobilePhone} \N +1266 Dnanzq \N \N fzxslaoi46@udqos.egd 579732745074 ( ygk ztstukqd gk ViqzlQhh +24 954265096) all_genders_avatar.png 2026-04-14 16:12:59.952797 2026-04-14 16:12:59.952797 114 {mobilePhone} \N +1267 Somqctzq \N Dqiqktcoei tsomqctzq.dqu59@udqos.egd +2679089944709 all_genders_avatar.png 2026-04-14 16:13:00.368 2026-04-14 16:13:00.368 130 {mobilePhone} \N +1268 Sqkq \N Kqlirqf sqkqvdkqlirqf@udqos.egd +2679098324182 all_genders_avatar.png 2026-04-14 16:13:00.682979 2026-04-14 16:13:00.682979 18 {mobilePhone} \N +1269 Cqstfzofq \N Stgft cqstfzofq.ytsofq@udqos.egd 579045449513 all_genders_avatar.png 2026-04-14 16:13:00.871611 2026-04-14 16:13:00.871611 25 {mobilePhone} \N +1270 Qfqlzqloq \N Wqwqfleqoq qfqetkfgcqdr@udqos.egd +2657077699248 all_genders_avatar.png 2026-04-14 16:13:00.984949 2026-04-14 16:13:00.984949 17 {mobilePhone} \N +1271 Aqkgsof \N Akgeatk akgeatk@hglztg.rt +2670117569719 all_genders_avatar.png 2026-04-14 16:13:01.202274 2026-04-14 16:13:01.202274 146 {mobilePhone} \N +1272 Sxrdossq \N \N sxwgdoklaq@vtw.rt 57004995347 all_genders_avatar.png 2026-04-14 16:13:01.596107 2026-04-14 16:13:01.596107 73 {mobilePhone} \N +1273 Sofq \N Aössftk sofq.agssftk@udqos.egd 57031519031 all_genders_avatar.png 2026-04-14 16:13:02.120759 2026-04-14 16:13:02.120759 6 {mobilePhone} \N +1274 Uömrt \N Tkrguqf ugtmrt.tkrguqf37@igzdqos.rt 570105343168 all_genders_avatar.png 2026-04-14 16:13:02.333883 2026-04-14 16:13:02.333883 11 {mobilePhone} \N +1275 Aqztknfq \N Ntkdqa tkdqa.taqztkofq46@oesgxr.egd 7024017475 all_genders_avatar.png 2026-04-14 16:13:02.519065 2026-04-14 16:13:02.519065 90 {mobilePhone} \N +1276 Nxsooq \N Litceitfag pxs7agekohzg@udqos.egd +845109903010 Ztstukqd all_genders_avatar.png 2026-04-14 16:13:02.694781 2026-04-14 16:13:02.694781 14 {mobilePhone} \N +1277 Qsofq \N \N qsofqaqrkn@xak.ftz +845602580064 all_genders_avatar.png 2026-04-14 16:13:03.095724 2026-04-14 16:13:03.095724 114 {mobilePhone} \N +1278 Qneq \N Tsom aqneqtsom@udqos.egd 57134991842 all_genders_avatar.png 2026-04-14 16:13:03.238112 2026-04-14 16:13:03.238112 15 {mobilePhone} \N +1279 Tddqfgxos \N Aqzqhgzol aqzqhgzol@oesgxr.egd 26579353176429 all_genders_avatar.png 2026-04-14 16:13:03.411185 2026-04-14 16:13:03.411185 29 {mobilePhone} \N +1280 Stq \N Sqdwtkz stq.sqdwtkz@yktt.yk 5588154780306 all_genders_avatar.png 2026-04-14 16:13:03.590328 2026-04-14 16:13:03.590328 45 {mobilePhone} \N +1281 Lqdtk \N Yqitr lqdtk.yqitr46@udqos.egd 570107337487 all_genders_avatar.png 2026-04-14 16:13:03.823423 2026-04-14 16:13:03.823423 7 {mobilePhone} \N +1282 dofubof \N dq dofubof.dq@tldz.wtksof 267184017471 all_genders_avatar.png 2026-04-14 16:13:04.052008 2026-04-14 16:13:04.052008 10 {mobilePhone} \N +1283 Ougk \N \N ougklkz@nqigg.egd +2679712832565 all_genders_avatar.png 2026-04-14 16:13:04.220566 2026-04-14 16:13:04.220566 147 {mobilePhone} \N +1284 Pqorq \N Tsfquuqk pqorqtsfquuqk2@udqos.egd 570108662945 all_genders_avatar.png 2026-04-14 16:13:04.348625 2026-04-14 16:13:04.348625 35 {mobilePhone} \N +1285 Xsql \N Qnnosdqm xsqlqnnosdqm@udqos.egd +2679975449764 all_genders_avatar.png 2026-04-14 16:13:04.496463 2026-04-14 16:13:04.496463 73 {mobilePhone} \N +1286 Hgsofq \N Wsglieiozenfq hgsofqwsgli@udqos.egd +2679332003878 all_genders_avatar.png 2026-04-14 16:13:04.659266 2026-04-14 16:13:04.659266 142 {mobilePhone} \N +1287 Dqkzofq \N Leoqkkqwwq leoqkkqwwqdqkzofq7@udqos.egd +868218290587 all_genders_avatar.png 2026-04-14 16:13:04.854002 2026-04-14 16:13:04.854002 10 {mobilePhone} \N +1288 Oknfq \N Hknndqagcq o.hknndqagcq@vtw.rt +267009795144 all_genders_avatar.png 2026-04-14 16:13:05.086021 2026-04-14 16:13:05.086021 115 {mobilePhone} \N +1289 Ykqfetleq \N Jxqzzkgft ykqfetleqjxqzzkgft@nqigg.oz 579352833632 all_genders_avatar.png 2026-04-14 16:13:05.251491 2026-04-14 16:13:05.251491 32 {mobilePhone} \N +1290 Pxko \N Yotrstk pxko.yotrstk@udqos.egd +2670189249620 all_genders_avatar.png 2026-04-14 16:13:05.342999 2026-04-14 16:13:05.342999 31 {mobilePhone} \N +1291 Fqxkttf \N Dxlzqyq fqxkttfdxlzqyq9@udqos.egd 570136143927 all_genders_avatar.png 2026-04-14 16:13:05.50219 2026-04-14 16:13:05.50219 20 {mobilePhone} \N +1292 Aqziqkofq \N Sthh aqziqkofq.sthh@uggustdqos.egd 570114619923 all_genders_avatar.png 2026-04-14 16:13:05.649339 2026-04-14 16:13:05.649339 51 {mobilePhone} \N +1293 Qfzgfoq \N Leixsmt qfzgfoqleixsmt.wtksof@udqos.egd 570142216774 all_genders_avatar.png 2026-04-14 16:13:05.849568 2026-04-14 16:13:05.849568 4 {mobilePhone} \N +1294 Tdosonq \N Uxmoo tdosoq.uxmoo34@udqos.egd +26 797 79516943 all_genders_avatar.png 2026-04-14 16:13:06.056358 2026-04-14 16:13:06.056358 121 {mobilePhone} \N +1295 Wktsnqfzoaq \N ptlq wktsnqfzoaqofrkq@udqos.egd +2679378695035 all_genders_avatar.png 2026-04-14 16:13:06.179959 2026-04-14 16:13:06.179959 46 {mobilePhone} \N +1296 Lqsgdt \N Agystk lqsgdtagystk@vtw.rt 552679351899263 all_genders_avatar.png 2026-04-14 16:13:06.31788 2026-04-14 16:13:06.31788 81 {mobilePhone} \N +1297 Dqpq \N Lmvqpagvlaq dqpq.lmvqpagvlaq@udqos.egd 570120132653 all_genders_avatar.png 2026-04-14 16:13:06.485924 2026-04-14 16:13:06.485924 95 {mobilePhone} \N +1298 Pqcotkq \N Pgftl wtstfpgftl3@udqos.egd +267032927861 all_genders_avatar.png 2026-04-14 16:13:06.700088 2026-04-14 16:13:06.700088 61 {mobilePhone} \N +1299 Zlokq \N Dqfpqcormt zlokqdqfpqcormt@udqos.egd +2679393586830 all_genders_avatar.png 2026-04-14 16:13:06.854367 2026-04-14 16:13:06.854367 35 {mobilePhone} \N +1300 Woqfeq \N Gkogs woqfeq.wtftfzo@udqos.egd 570187004452 all_genders_avatar.png 2026-04-14 16:13:06.950455 2026-04-14 16:13:06.950455 25 {mobilePhone} \N +1301 Uoxsoqfq \N Lhtkqfmq uoxsolhtkqfmq@udqos.egd 579652167382 all_genders_avatar.png 2026-04-14 16:13:07.150984 2026-04-14 16:13:07.150984 141 {mobilePhone} \N +1302 Iqo \N Fuxntf iqontf3875@nqigg.rt 579396180573 all_genders_avatar.png 2026-04-14 16:13:07.303825 2026-04-14 16:13:07.303825 125 {mobilePhone} \N +1303 Sommn \N \N som.z.ltss@udqos.egd 57069853495 all_genders_avatar.png 2026-04-14 16:13:07.419549 2026-04-14 16:13:07.419549 82 {mobilePhone} \N +1304 Doeiqts \N Ltsocqfgc doeiqts-ltsocqfgc@gxzsgga.rt 570117060631 all_genders_avatar.png 2026-04-14 16:13:07.585023 2026-04-14 16:13:07.585023 26 {mobilePhone} \N +1305 Ktwteeq \N Wkqxf wkqxfktwteeq@igzdqos.rt 571564350839 all_genders_avatar.png 2026-04-14 16:13:07.878376 2026-04-14 16:13:07.878376 62 {mobilePhone} \N +1306 Trozi \N Iqodwtkutk iqodwtkutt30@mtrqz.yx-wtksof.rt +26 706 9563896 all_genders_avatar.png 2026-04-14 16:13:08.108602 2026-04-14 16:13:08.108602 102 {mobilePhone} \N +1307 Uüsltktf \N \N uxslo.ql.3551@udqos.egd +26 793 58699597 all_genders_avatar.png 2026-04-14 16:13:08.341085 2026-04-14 16:13:08.341085 57 {mobilePhone} \N +1308 Vqfu \N \N uggggust35325273@udqos.egd 579372566349 all_genders_avatar.png 2026-04-14 16:13:08.747448 2026-04-14 16:13:08.747448 148 {mobilePhone} \N +1309 Xdq \N Dolaofnqk xdolaofnqk@udqos.egd +76268333037 all_genders_avatar.png 2026-04-14 16:13:08.883768 2026-04-14 16:13:08.883768 113 {mobilePhone} \N +1310 Nggfltg \N Ixk nggfltgixk39@udqos.egd +2679350676501 all_genders_avatar.png 2026-04-14 16:13:09.11654 2026-04-14 16:13:09.11654 45 {mobilePhone} \N +1311 dtsoaq \N dgxlqco dtsoaq.dxlqco48@udqos.egd 57188697521 all_genders_avatar.png 2026-04-14 16:13:09.271815 2026-04-14 16:13:09.271815 80 {mobilePhone} \N +1312 Yqwoqf \N Aquodx aqykqfa71@udqos.egd +267181600689 all_genders_avatar.png 2026-04-14 16:13:09.496249 2026-04-14 16:13:09.496249 10 {mobilePhone} \N +1313 Ofq \N Cqsrocotlg ofqrotflzc@gxzsgga.egd 579330461524 all_genders_avatar.png 2026-04-14 16:13:09.693254 2026-04-14 16:13:09.693254 149 {mobilePhone} \N +1314 Leityytk \N Qfrktq leityytk-wtksof@vtw.rt 57909 2274962 all_genders_avatar.png 2026-04-14 16:13:09.840179 2026-04-14 16:13:09.840179 11 {mobilePhone} \N +1315 Dqkoqfft \N Lotctkl dqkoqfftlotctkl@nqigg.rt 571568736062 all_genders_avatar.png 2026-04-14 16:13:09.932502 2026-04-14 16:13:09.932502 150 {mobilePhone} \N +1316 Stgfqkrg \N Rtdqkeio stgrtdq64@udqos.egd +868267198979 all_genders_avatar.png 2026-04-14 16:13:10.108651 2026-04-14 16:13:10.108651 6 {mobilePhone} \N +1317 Qxktsot \N Gglz qxktsot_cqfgglz@igzdqos.egd 579735321274 all_genders_avatar.png 2026-04-14 16:13:10.26234 2026-04-14 16:13:10.26234 86 {mobilePhone} \N +1318 pqean \N \N agpqel@udb.rt 5701-2931 3726 all_genders_avatar.png 2026-04-14 16:13:10.471022 2026-04-14 16:13:10.471022 42 {mobilePhone} \N +1319 Tddq \N Vofmtf vofmtf.tddq@udqos.egd 579085787208 all_genders_avatar.png 2026-04-14 16:13:10.61539 2026-04-14 16:13:10.61539 145 {mobilePhone} \N +1320 Dqkot \N Vtofat dqkot-eteosoq@hglztg.rt 579791673099 all_genders_avatar.png 2026-04-14 16:13:10.73325 2026-04-14 16:13:10.73325 39 {mobilePhone} \N +1321 qffq \N \N qffqltdtfetfag9@udqos.egd +267133046332 all_genders_avatar.png 2026-04-14 16:13:10.830281 2026-04-14 16:13:10.830281 119 {mobilePhone} \N +1322 Stfq \N Vquftk stfq75vquftk@udqos.egd 57022333331 all_genders_avatar.png 2026-04-14 16:13:11.107456 2026-04-14 16:13:11.107456 21 {mobilePhone} \N +1323 Tsolq \N \N tsolqleikgrtk9@udqos.egd 570117791561 all_genders_avatar.png 2026-04-14 16:13:11.222745 2026-04-14 16:13:11.222745 57 {mobilePhone} \N +1324 Qdn \N Pgli q.pgli@igzdqos.egd 57021736614 all_genders_avatar.png 2026-04-14 16:13:11.384683 2026-04-14 16:13:11.384683 44 {mobilePhone} \N +1325 Iqdlq \N Lkoaqfzi iqdlqlkoaqfzi@hkgzgfdqos.egd +267183899538 all_genders_avatar.png 2026-04-14 16:13:11.540674 2026-04-14 16:13:11.540674 31 {mobilePhone} \N +1326 Qoliq \N Iqkq qoliq.iqkq@gxzsgga.egd +26 799 10301182 all_genders_avatar.png 2026-04-14 16:13:11.764165 2026-04-14 16:13:11.764165 84 {mobilePhone} \N +1327 Stfo \N Pqkkl stfo.pqkkl@udqos.egd 5701 21580392 all_genders_avatar.png 2026-04-14 16:13:11.970356 2026-04-14 16:13:11.970356 151 {mobilePhone} \N +1328 Cqolifqco \N Ugztzo cqolifqcoaqhhquqfzx7664@udqos.egd 7003296632 all_genders_avatar.png 2026-04-14 16:13:12.208831 2026-04-14 16:13:12.208831 58 {mobilePhone} \N +1329 Olqwtssq \N Qwor olqwtssqcqstfzofqmqikq@gxzsgga.rt 70117956507 all_genders_avatar.png 2026-04-14 16:13:12.539994 2026-04-14 16:13:12.539994 39 {mobilePhone} \N +1330 Gzosoq \N Rkxux grtsoqdokoqd@udqos.egd 570163176625 all_genders_avatar.png 2026-04-14 16:13:12.666732 2026-04-14 16:13:12.666732 112 {mobilePhone} \N +1331 Wqrk \N Woi wqrk.woi@gxzsgga.egd 579723545018 all_genders_avatar.png 2026-04-14 16:13:12.787275 2026-04-14 16:13:12.787275 51 {mobilePhone} \N +1332 Igllqd \N Rqgxr igllqd.rqgxr40@udqos.egd 570105301032 all_genders_avatar.png 2026-04-14 16:13:12.97247 2026-04-14 16:13:12.97247 119 {mobilePhone} \N +1333 Lxdqnq \N Qwrts-Iqytm lxdqnq.mtor@udqos.egd +2670117413862 all_genders_avatar.png 2026-04-14 16:13:13.16347 2026-04-14 16:13:13.16347 63 {mobilePhone} \N +1334 Ytffq \N Cgutsmqfu ytffqcgutsmqfu@igzdqos.egd ytffqcguts all_genders_avatar.png 2026-04-14 16:13:13.29879 2026-04-14 16:13:13.29879 114 {mobilePhone} \N +1335 Mqofqw \N Gfoaglo wqaqkt_mqffn@nqigg.egd 579373280305 all_genders_avatar.png 2026-04-14 16:13:13.509538 2026-04-14 16:13:13.509538 92 {mobilePhone} \N +1336 Yokql \N Yqaoi yokqlqsyqaoi@gxzsgga.egd 57138134263 all_genders_avatar.png 2026-04-14 16:13:13.745358 2026-04-14 16:13:13.745358 8 {mobilePhone} \N +1337 Aqzot \N Dosft aqzot.dosft7668@udqos.egd +26 79977 815506 all_genders_avatar.png 2026-04-14 16:13:13.937684 2026-04-14 16:13:13.937684 3 {mobilePhone} \N +1338 Hotzkg \N Moctko h.moctko@udqos.egd 579381350107 all_genders_avatar.png 2026-04-14 16:13:14.164216 2026-04-14 16:13:14.164216 67 {mobilePhone} \N +1339 Esqxrog \N Atos esqxrogatos76@udqos.egd 579354319644 all_genders_avatar.png 2026-04-14 16:13:14.358562 2026-04-14 16:13:14.358562 27 {mobilePhone} \N +1340 Esqkq \N Tcqfl esqkqqsdxz@oesgxr.egd +2679725595529 all_genders_avatar.png 2026-04-14 16:13:14.569179 2026-04-14 16:13:14.569179 19 {mobilePhone} \N +13 Pgqfq \N Aqzlqkql pgqfq.aqzlqkql@itkgtxkght.egd +26 799 171 577 80 all_genders_avatar.png 2026-04-14 16:09:53.134202 2026-04-14 16:09:53.134202 1 {email} \N +1342 Cqlosoao \N Zitgrkorgx cqlosoaozitgrkorgx8@udqos.egd +851650190875 \N 2026-04-16 13:00:19.040375 2026-04-16 13:00:19.040375 153 {mobilePhone} \N +1343 Eioqkq Dqkoqdq Lzkteatkz eioqkqlzkteatkz@udb.rt +26 702 1621673 \N 2026-04-16 14:05:11.323451 2026-04-16 14:05:11.323451 154 {mobilePhone} \N +1346 Fqrqc \N F lqkqi.rgt@fttr2rttr.gku 579399881896 \N 2026-04-17 16:49:55.085792 2026-04-17 16:49:55.085792 158 {mobilePhone} \N +1347 Doeqtsq \N Ugsrlztof doeq.ugzzvqsrz@z-gfsoft.rt 579352634787 \N 2026-04-17 17:17:07.742546 2026-04-17 17:17:07.742546 159 {mobilePhone} \N +1348 Qnsof \N Kxll qnsof.kxll@udb.rt 579796447752 \N 2026-04-18 08:30:03.686864 2026-04-18 08:30:03.686864 160 {mobilePhone} \N +1349 Liodkoz \N Fqzoc Egfzqez@liodkozfqzoc.egd 570128927274 \N 2026-04-18 09:55:47.331667 2026-04-18 09:55:47.331667 161 {mobilePhone} \N +1350 Lgzokol Yosohhghgxsgl \N lgzokolyosohhghgxsgl80@udqos.egd +851603218741 \N 2026-04-20 09:39:23.116145 2026-04-20 09:39:23.116145 162 {mobilePhone} \N +1355 Qeegdhqfnofu \N Fttr2Rttr \N \N \N 2026-04-20 13:53:39.797795 2026-04-20 13:53:39.797795 \N {mobilePhone} \N +1356 Egddxfozn \N Fttr2Rttr \N \N \N 2026-04-20 13:54:15.918467 2026-04-20 13:54:15.918467 \N {mobilePhone} \N +1357 Ztzoqfq \N Ntkligcq zqzoqfqntkligcq717@udqos.egd 579771200817 \N 2026-04-21 13:39:09.291299 2026-04-21 13:39:09.291299 163 {mobilePhone} \N +1358 Ftt2Rttr \N Lzqyy \N \N \N 2026-04-21 17:29:32.835752 2026-04-21 17:29:32.835752 \N {mobilePhone} \N +1360 Aqngrê \N Hqllgl aqngrthqllgl46@udqos.egd +26 701 798 15351 \N 2026-04-22 08:04:20.524926 2026-04-22 08:04:20.524926 165 {mobilePhone} \N +1361 Qkltfoo \N Zgslzoagc \N \N \N 2026-04-22 08:46:41.165159 2026-04-22 08:46:41.165159 \N {mobilePhone} \N +1362 Atfmq \N Kqrn \N \N \N 2026-04-22 08:52:17.254145 2026-04-22 08:52:17.254145 \N {mobilePhone} \N +1363 Fqrqc \N Fok \N \N \N 2026-04-22 08:52:17.254145 2026-04-22 08:52:17.254145 \N {mobilePhone} \N +1364 Pglt Eqsksgl \N Dqngkuq \N \N \N 2026-04-22 08:52:17.254145 2026-04-22 08:52:17.254145 \N {mobilePhone} \N +1365 Tstfq \N Utkwts \N \N \N 2026-04-22 08:52:17.254145 2026-04-22 08:52:17.254145 \N {mobilePhone} \N +1366 Ktwteeq \N Ioss kp.ioss32@udqos.egd +267057790407 \N 2026-04-22 14:29:53.466416 2026-04-22 14:29:53.466416 166 {mobilePhone} \N +1027 Dqzof Igltofhqfqi ihqfqi.d@udqos.egd 579736977598 all_genders_avatar.png 2026-04-14 16:12:15.721951 2026-04-14 16:12:15.721951 95 {mobilePhone} \N +1359 LVQZO ATDHQFFQ FQOA FQOALVQZOW@UDQOS.EGD 54033802133 \N 2026-04-21 19:32:20.41088 2026-04-21 19:32:20.41088 164 {mobilePhone} \N +550 Soxrdosq Qcrgfofq soxrdosq.qcrgfofq@dq.pqg-wtksof.rt +2679652240338 all_genders_avatar.png 2026-04-14 16:10:10.540795 2026-04-14 16:10:10.540795 1 {} +40123412341244 +1367 Rqkkns \N Fgkgfiq rqkknsfgkgfiq3537@udqos.egd 579008180033 \N 2026-04-25 08:25:14.762699 2026-04-25 08:25:14.762699 167 {mobilePhone} \N +\. + + +-- +-- Data for Name: postcode; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.postcode (id, longitude, latitude, value) FROM stdin; +1 \N \N 12345 +2 13.3846074 52.5322530 10115 +3 13.3872223 52.5169655 10117 +4 13.4053209 52.5304772 10119 +5 13.4096284 52.5213124 10178 +6 13.4163353 52.5121934 10179 +7 13.4393827 52.5123063 10243 +8 13.4647553 52.5006585 10245 +9 13.4655536 52.5161596 10247 +10 13.4427724 52.5237626 10249 +11 13.5147644 52.5132299 10315 +12 13.4907669 52.4979014 10317 +13 13.5286872 52.4834850 10318 +14 13.5188024 52.4991936 10319 +15 13.4968621 52.5206131 10365 +16 13.4820993 52.5246229 10367 +17 13.4694499 52.5294756 10369 +18 13.4257038 52.5351824 10405 +19 13.4491709 52.5336070 10407 +20 13.4413572 52.5443185 10409 +21 13.4111863 52.5377637 10435 +22 13.4125808 52.5448532 10437 +23 13.4121146 52.5521596 10439 +24 13.3371634 52.5307202 10551 +25 13.3214655 52.5305064 10553 +26 13.3354570 52.5215317 10555 +27 13.3594370 52.5233235 10557 +28 13.3499203 52.5301232 10559 +29 13.3056876 52.5151965 10585 +30 13.3195166 52.5184473 10587 +31 13.3057090 52.5275504 10589 +32 13.3273638 52.5088240 10623 +33 13.3146866 52.5094582 10625 +34 13.3029957 52.5079844 10627 +35 13.3085871 52.5027952 10629 +36 13.3137529 52.4966568 10707 +37 13.3031166 52.4938818 10709 +38 13.2904513 52.4981211 10711 +39 13.3132726 52.4850887 10713 +40 13.3288773 52.4824450 10715 +41 13.3275478 52.4907978 10717 +42 13.3256787 52.4988463 10719 +43 13.3427020 52.4974551 10777 +44 13.3394753 52.4921119 10779 +45 13.3529141 52.4935684 10781 +46 13.3623702 52.4964239 10783 +47 13.3642499 52.5073096 10785 +48 13.3438693 52.5077800 10787 +49 13.3377037 52.5016673 10789 +50 13.3508815 52.4873089 10823 +51 13.3412437 52.4837595 10825 +52 13.3542578 52.4837764 10827 +53 13.3607965 52.4761881 10829 +54 13.3974708 52.4926228 10961 +55 13.3812583 52.5001610 10963 +56 13.3948846 52.4853754 10965 +57 13.4164153 52.4905026 10967 +58 13.4011321 52.5024880 10969 +59 13.4355579 52.5009216 10997 +60 13.4265585 52.4969173 10999 +61 13.4370598 52.4798983 12043 +62 13.4392319 52.4854637 12045 +63 13.4284746 52.4905245 12047 +64 13.4220096 52.4763489 12049 +65 13.4298765 52.4669011 12051 +66 13.4325289 52.4768383 12053 +67 13.4485985 52.4712085 12055 +68 13.4632834 52.4683988 12057 +69 13.4512862 52.4809198 12059 +70 13.4023350 52.4644018 12099 +71 13.3790681 52.4784948 12101 +72 13.3746916 52.4640553 12103 +73 13.3713783 52.4492183 12105 +74 13.3916956 52.4312234 12107 +75 13.3993547 52.4464376 12109 +76 13.3461930 52.4653194 12157 +77 13.3369177 52.4736776 12159 +78 13.3269683 52.4703786 12161 +79 13.3184588 52.4626412 12163 +80 13.3148381 52.4556652 12165 +81 13.3337921 52.4485942 12167 +82 13.3435329 52.4547905 12169 +83 13.3095486 52.4443763 12203 +84 13.2945233 52.4339729 12205 +85 13.3132013 52.4198864 12207 +86 13.3290974 52.4179166 12209 +87 13.3462165 52.4394748 12247 +88 13.3518131 52.4263655 12249 +89 13.3750326 52.4133955 12277 +90 13.3530530 52.4106265 12279 +91 13.4020728 52.4032700 12305 +92 13.3906968 52.3886300 12307 +93 13.4171451 52.3904869 12309 +94 13.4281341 52.4508702 12347 +95 13.4220802 52.4252545 12349 +96 13.4555127 52.4327583 12351 +97 13.4589222 52.4227378 12353 +98 13.4978282 52.4109915 12355 +99 13.4905231 52.4293003 12357 +100 13.4531345 52.4473339 12359 +101 13.4671837 52.4865593 12435 +102 13.4816810 52.4623959 12437 +103 13.5280824 52.4655687 12459 +104 13.5051497 52.4437059 12487 +105 13.5431533 52.4356043 12489 +106 13.5416543 52.4128329 12524 +107 13.5642097 52.3976388 12526 +108 13.6338820 52.3856250 12527 +109 13.5790983 52.4626736 12555 +110 13.5917549 52.4303434 12557 +111 13.6632729 52.4148970 12559 +112 13.6361643 52.4586110 12587 +113 13.7033607 52.4438132 12589 +114 13.5882914 52.5234890 12619 +115 13.5878077 52.5027261 12621 +116 13.6164940 52.5025915 12623 +117 13.6134938 52.5372253 12627 +118 13.5901148 52.5413115 12629 +119 13.5659854 52.5501377 12679 +120 13.5366916 52.5369038 12681 +121 13.5590592 52.5075193 12683 +122 13.5650082 52.5390868 12685 +123 13.5644734 52.5564134 12687 +124 13.5675161 52.5664762 12689 +125 13.4908448 52.5815103 13051 +126 13.5045996 52.5500144 13053 +127 13.4959966 52.5400851 13055 +128 13.5414743 52.5710531 13057 +129 13.5216911 52.5808522 13059 +130 13.4481848 52.5564791 13086 +131 13.4707988 52.5603234 13088 +132 13.4409974 52.5706802 13089 +133 13.4829397 52.6328592 13125 +134 13.4380363 52.6199998 13127 +135 13.4579275 52.5920578 13129 +136 13.3996793 52.5823594 13156 +137 13.3834822 52.5931990 13158 +138 13.3978193 52.6229802 13159 +139 13.4084067 52.5695443 13187 +140 13.4219228 52.5642815 13189 +141 13.3654554 52.5490604 13347 +142 13.3473385 52.5579884 13349 +143 13.3328290 52.5506527 13351 +144 13.3494934 52.5415929 13353 +145 13.3905844 52.5417740 13355 +146 13.3825454 52.5502547 13357 +147 13.3850886 52.5598757 13359 +148 13.3223947 52.5739096 13403 +149 13.2967157 52.5595627 13405 +150 13.3511527 52.5726566 13407 +151 13.3713614 52.5678750 13409 +152 13.3455836 52.6020476 13435 +153 13.3284333 52.5904606 13437 +154 13.3583654 52.5976339 13439 +155 13.2895520 52.6398939 13465 +156 13.3074771 52.6171050 13467 +157 13.3421701 52.6118861 13469 +158 13.2487547 52.6121623 13503 +159 13.2404369 52.5839011 13505 +160 13.2717063 52.5765026 13507 +161 13.3005851 52.5891876 13509 +162 13.1793722 52.5310243 13581 +163 13.1823535 52.5436597 13583 +164 13.2049129 52.5477271 13585 +165 13.1854257 52.5767180 13587 +166 13.1675593 52.5570279 13589 +167 13.1404510 52.5344700 13591 +168 13.1672052 52.5148261 13593 +169 13.1962245 52.5116147 13595 +170 13.2194947 52.5272474 13597 +171 13.2350066 52.5462937 13599 +172 13.2990918 52.5398280 13627 +173 13.2661218 52.5421736 13629 +174 13.2683381 52.5208268 14050 +175 13.2568588 52.5155892 14052 +176 13.2386960 52.5159052 14053 +177 13.2365122 52.4831290 14193 +178 13.2879138 52.5072502 14057 +179 13.2877739 52.5205239 14059 +180 13.1516432 52.4707850 14089 +181 13.1439867 52.4197352 14109 +182 13.2025783 52.4462865 14129 +183 13.2385050 52.4368309 14163 +184 13.2535592 52.4175191 14165 +185 13.2764669 52.4211709 14167 +186 13.2573183 52.4496179 14169 +187 13.2365122 52.4831290 14193 +188 13.2828670 52.4588830 14195 +189 13.3117896 52.4733586 14197 +190 13.2950710 52.4776610 14199 +191 13.5286443 52.4527703 12439 +192 13.2447320 52.5019509 14055 +193 13.6873885 52.3857080 15537 +194 13.7053667 52.4597828 15566 +195 13.7560579 52.4459538 15569 +196 \N \N 11111 +197 \N \N 13505 +198 \N \N 10099 +199 \N \N 45678 +200 \N \N 12243 +201 \N \N 10439 +\. + + +-- +-- Data for Name: profile; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.profile (id, info, category_id) FROM stdin; +1 \N \N +13 \N \N +14 \N \N +15 \N \N +18 \N \N +19 \N \N +20 \N \N +22 \N \N +24 \N \N +26 \N \N +27 \N \N +28 \N \N +35 \N \N +36 \N \N +39 \N \N +40 \N \N +41 \N \N +42 \N \N +43 \N \N +44 \N \N +45 \N \N +46 \N \N +47 \N \N +48 \N \N +49 \N \N +52 \N \N +53 \N \N +54 \N \N +58 \N \N +60 \N \N +61 \N \N +62 \N \N +65 \N \N +66 \N \N +68 \N \N +70 \N \N +71 \N \N +72 \N \N +75 \N \N +76 \N \N +77 \N \N +78 \N \N +79 \N \N +80 \N \N +81 \N \N +82 \N \N +87 \N \N +88 \N \N +89 \N \N +93 \N \N +94 \N \N +95 \N \N +96 \N \N +97 \N \N +98 \N \N +99 \N \N +100 \N \N +101 \N \N +102 \N \N +103 \N \N +104 \N \N +105 \N \N +106 \N \N +107 \N \N +109 \N \N +113 \N \N +114 \N \N +115 \N \N +116 \N \N +117 \N \N +118 \N \N +119 \N \N +120 \N \N +121 \N \N +122 \N \N +123 \N \N +124 \N \N +125 \N \N +126 \N \N +127 \N \N +129 \N \N +130 \N \N +131 \N \N +132 \N \N +134 \N \N +135 \N \N +136 \N \N +137 \N \N +138 \N \N +139 \N \N +140 \N \N +141 \N \N +143 \N \N +144 \N \N +145 \N \N +146 \N \N +147 \N \N +148 \N \N +149 \N \N +150 \N \N +151 \N \N +152 \N \N +153 \N \N +155 \N \N +156 \N \N +157 \N \N +158 \N \N +159 \N \N +160 \N \N +161 \N \N +162 \N \N +163 \N \N +164 \N \N +165 \N \N +166 \N \N +167 \N \N +169 \N \N +170 \N \N +171 \N \N +172 \N \N +173 \N \N +174 \N \N +175 \N \N +176 \N \N +177 \N \N +178 \N \N +180 \N \N +181 \N \N +183 \N \N +184 \N \N +185 \N \N +186 \N \N +187 \N \N +188 \N \N +189 \N \N +190 \N \N +191 \N \N +192 \N \N +193 \N \N +194 \N \N +196 \N \N +197 \N \N +198 \N \N +199 \N \N +200 \N \N +201 \N \N +202 \N \N +203 \N \N +204 \N \N +205 \N \N +206 \N \N +207 \N \N +208 \N \N +209 \N \N +210 \N \N +211 \N \N +212 \N \N +213 \N \N +214 \N \N +215 \N \N +216 \N \N +217 \N \N +218 \N \N +219 \N \N +222 \N \N +223 \N \N +225 \N \N +226 \N \N +69 \N 6 +112 \N 6 +16 \N 2 +17 \N 1 +224 \N 3 +34 \N 1 +142 \N 1 +57 \N 1 +110 \N 1 +111 \N 2 +220 \N 2 +56 \N 3 +55 \N 3 +221 \N 3 +168 \N 6 +37 \N 3 +63 \N 6 +64 \N 2 +67 \N 6 +73 \N 6 +133 \N 1 +154 \N 1 +195 \N 1 +74 \N 6 +84 \N 6 +21 \N 3 +51 \N 5 +128 \N 3 +108 \N 3 +182 \N 3 +83 \N 1 +91 \N 6 +85 \N 1 +90 \N 1 +92 \N 6 +86 \N 1 +25 \N 1 +33 \N 6 +31 \N 1 +32 \N 1 +30 \N 1 +29 \N 3 +59 \N 2 +179 \N 2 +38 \N 3 +50 \N 3 +23 \N 3 +230 \N \N +231 \N \N +232 \N \N +233 \N \N +234 \N \N +235 \N \N +236 \N \N +237 \N \N +240 \N \N +241 \N \N +243 \N \N +244 \N \N +245 \N \N +246 \N \N +247 \N \N +248 \N \N +249 \N \N +250 \N \N +251 \N \N +252 \N \N +253 \N \N +254 \N \N +255 \N \N +256 \N \N +257 \N \N +258 \N \N +259 \N \N +261 \N \N +262 \N \N +264 \N \N +265 \N \N +267 \N \N +268 \N \N +269 \N \N +270 \N \N +271 \N \N +272 \N \N +274 \N \N +275 \N \N +276 \N \N +277 \N \N +280 \N \N +281 \N \N +283 \N \N +284 \N \N +286 \N \N +287 \N \N +288 \N \N +289 \N \N +290 \N \N +291 \N \N +292 \N \N +293 \N \N +294 \N \N +295 \N \N +297 \N \N +298 \N \N +300 \N \N +302 \N \N +303 \N \N +304 \N \N +305 \N \N +306 \N \N +307 \N \N +308 \N \N +309 \N \N +310 \N \N +311 \N \N +312 \N \N +313 \N \N +314 \N \N +317 \N \N +318 \N \N +319 \N \N +320 \N \N +321 \N \N +322 \N \N +323 \N \N +324 \N \N +325 \N \N +328 \N \N +329 \N \N +331 \N \N +332 \N \N +333 \N \N +334 \N \N +335 \N \N +336 \N \N +337 \N \N +339 \N \N +340 \N \N +341 \N \N +343 \N \N +344 \N \N +345 \N \N +346 \N \N +347 \N \N +348 \N \N +349 \N \N +350 \N \N +352 \N \N +353 \N \N +355 \N \N +356 \N \N +357 \N \N +358 \N \N +359 \N \N +360 \N \N +361 \N \N +362 \N \N +363 \N \N +365 \N \N +366 \N \N +369 \N \N +371 \N \N +373 \N \N +375 \N \N +376 \N \N +377 \N \N +378 \N \N +379 \N \N +382 \N \N +383 \N \N +384 \N \N +385 \N \N +386 \N \N +387 \N \N +388 \N \N +390 \N \N +391 \N \N +392 \N \N +393 \N \N +394 \N \N +395 \N \N +396 \N \N +398 \N \N +399 \N \N +400 \N \N +401 \N \N +402 \N \N +403 \N \N +404 \N \N +405 \N \N +410 \N \N +411 \N \N +412 \N \N +413 \N \N +414 \N \N +416 \N \N +417 \N \N +418 \N \N +419 \N \N +421 \N \N +422 \N \N +424 \N \N +425 \N \N +429 \N \N +430 \N \N +434 \N \N +435 \N \N +437 \N \N +440 \N \N +442 \N \N +443 \N \N +444 \N \N +445 \N \N +447 \N \N +448 \N \N +449 \N \N +450 \N \N +451 \N \N +229 \N 3 +426 \N 6 +316 \N 6 +315 \N 1 +372 \N 5 +438 \N 1 +278 \N 1 +326 \N 2 +239 \N 1 +433 \N 1 +330 \N 1 +266 \N 1 +279 \N 3 +301 \N 1 +432 \N 6 +260 \N 6 +354 \N 6 +406 \N 6 +407 \N 6 +296 \N 3 +368 \N 3 +423 \N 3 +367 \N 2 +242 \N 6 +364 \N 3 +227 \N 3 +370 \N 2 +273 \N 3 +389 \N 6 +299 \N 1 +238 \N 1 +452 \N 1 +338 \N 3 +436 \N 1 +381 \N 3 +446 \N 4 +439 \N 4 +415 \N 4 +397 \N 4 +380 \N 4 +228 \N 3 +285 \N 2 +408 \N 1 +441 \N 3 +342 \N 3 +453 \N \N +455 \N \N +456 \N \N +457 \N \N +458 \N \N +459 \N \N +460 \N \N +461 \N \N +462 \N \N +463 \N \N +465 \N \N +466 \N \N +467 \N \N +470 \N \N +471 \N \N +472 \N \N +473 \N \N +474 \N \N +475 \N \N +476 \N \N +478 \N \N +479 \N \N +480 \N \N +481 \N \N +482 \N \N +483 \N \N +485 \N \N +486 \N \N +491 \N \N +492 \N \N +495 \N \N +500 \N \N +501 \N \N +502 \N \N +503 \N \N +506 \N \N +508 \N \N +511 \N \N +512 \N \N +515 \N \N +516 \N \N +517 \N \N +518 \N \N +519 \N \N +520 \N \N +521 \N \N +522 \N \N +523 \N \N +524 \N \N +525 \N \N +527 \N \N +528 \N \N +529 \N \N +532 \N \N +534 \N \N +535 \N \N +536 \N \N +538 \N \N +539 \N \N +542 \N \N +544 \N \N +545 \N \N +548 \N \N +549 \N \N +550 \N \N +551 \N \N +553 \N \N +554 \N \N +555 \N \N +556 \N \N +557 \N \N +558 \N \N +559 \N \N +560 \N \N +561 \N \N +563 \N \N +565 \N \N +567 \N \N +568 \N \N +570 \N \N +571 \N \N +572 \N \N +575 \N \N +577 \N \N +578 \N \N +579 \N \N +583 \N \N +584 \N \N +589 \N \N +590 \N \N +591 \N \N +592 \N \N +595 \N \N +596 \N \N +599 \N \N +601 \N \N +602 \N \N +605 \N \N +608 \N \N +609 \N \N +612 \N \N +616 \N \N +617 \N \N +620 \N \N +622 \N \N +624 \N \N +626 \N \N +628 \N \N +632 \N \N +638 \N \N +641 \N \N +643 \N \N +644 \N \N +645 \N \N +648 \N \N +651 \N \N +652 \N \N +654 \N \N +655 \N \N +656 \N \N +657 \N \N +658 \N \N +660 \N \N +663 \N \N +664 \N \N +665 \N \N +668 \N \N +669 \N \N +672 \N \N +675 \N \N +676 \N \N +514 \N 1 +670 \N 6 +504 \N 6 +634 \N 6 +464 \N 6 +671 \N 6 +650 \N 6 +667 \N 6 +653 \N 6 +613 \N 6 +507 \N 5 +647 \N 6 +585 \N 4 +487 \N 1 +661 \N 2 +627 \N 5 +618 \N 5 +631 \N 3 +581 \N 1 +600 \N 1 +509 \N 1 +477 \N 1 +541 \N 1 +611 \N 3 +635 \N 1 +636 \N 2 +576 \N 1 +604 \N 2 +566 \N 2 +547 \N 2 +603 \N 2 +537 \N 3 +640 \N 4 +468 \N 6 +621 \N 6 +494 \N 3 +497 \N 6 +510 \N 6 +530 \N 6 +533 \N 6 +642 \N 6 +646 \N 6 +586 \N 5 +582 \N 3 +489 \N 1 +673 \N 6 +615 \N 6 +607 \N 6 +580 \N 3 +552 \N 3 +593 \N 3 +531 \N 3 +666 \N 5 +639 \N 6 +659 \N 1 +630 \N 5 +562 \N 1 +490 \N 2 +488 \N 2 +546 \N 2 +674 \N 6 +574 \N 6 +564 \N 6 +484 \N 6 +594 \N 2 +679 \N \N +681 \N \N +682 \N \N +683 \N \N +684 \N \N +685 \N \N +686 \N \N +688 \N \N +689 \N \N +690 \N \N +691 \N \N +692 \N \N +694 \N \N +698 \N \N +707 \N \N +708 \N \N +709 \N \N +712 \N \N +717 \N \N +719 \N \N +723 \N \N +724 \N \N +731 \N \N +736 \N \N +755 \N \N +759 \N \N +770 \N \N +771 \N \N +775 \N \N +778 \N \N +802 \N \N +806 Contacted for post-match followup \N +807 Ich bin seit fast einem Jahr in der Unterkunft Columbiadamm 84 engagiert, dies wurde von Bevos vermittelt, aber dann sind alle Kontakte zu Bevos eingeschlafen, weil die e-Mail-Adressen nicht mehr funktionierten etc. Das hat mich doch sehr enttäuscht und ich war auf meine eigene Initiative angewiesen. Ich bin jweiter an einem Austausch mit andereren Sprachhelfern interessiert \N +808 \N \N +809 \N \N +810 \N \N +811 \N \N +812 Contacted for post-match followup \N +813 Contacted for post-match followup \N +814 Monday - Thursday might be hard for me as I need to work at 9 am \N +815 \N \N +816 \N \N +817 \N \N +818 Contacted for post-match followup \N +819 \N \N +820 \N \N +821 I will probably start working as a freelancer / full time and/or German classes in near future so i don't know about my available times yet \N +822 \N \N +823 \N \N +824 \N \N +825 I work full weekdays but can do m \N +826 \N \N +827 - \N +828 I am a working student and my schedule changes every semester so I would have to modify it according to that. \N +829 Contacted for post-match followup \N +830 can be flexible \N +831 \N \N +832 \N \N +833 \N \N +834 I will have wisdom teeth surgery on 05.03 so I expect to be able to start volunteering in mid-march. and to fit my schedule I would like to volunteer 1-3 days a week \N +835 \N \N +836 The schedule can change depending on the week but this is generally, with advance notice, can make it. \N +837 \N \N +838 Actually im not into regular volunteering as im working whenever im free i do volunteering \N +839 As I am a student and have a mini job as well, my availability might change throughout the next months because of possible classes or be subject to meetings scheduled for my job. I think I still have to figure out how to best integrate volunteer work into my usual schedule. / Contacted for post-match followup.\n \N +840 Contacted for post-match followup \N +841 Contacted for post-match followup \N +842 \N \N +843 Hello,\nMy name is Adam. I have read this position with interest. \nI am unemployed at the moment with loads of free time.\nI used to babysit and would like to become an Erzieher. / Contacted for post-match followup. \N +844 Nope / Contacted for post-match followup \N +845 \N \N +846 Contacted for post-match followup \N +847 \N \N +848 \N \N +849 \N \N +967 \N \N +1054 \N \N +795 \N 6 +794 \N 6 +787 \N 3 +785 \N 3 +781 \N 3 +773 \N 2 +772 \N 2 +769 \N 1 +766 \N 6 +765 \N 6 +748 \N 6 +746 \N 6 +726 \N 6 +696 \N 6 +767 \N 6 +796 \N 3 +793 \N 1 +789 \N 1 +784 \N 2 +783 \N 5 +758 \N 2 +744 \N 2 +742 \N 4 +739 \N 3 +737 \N 3 +792 \N 6 +790 \N 6 +791 \N 6 +786 \N 6 +788 \N 6 +782 \N 6 +741 \N 6 +697 \N 6 +695 \N 6 +693 \N 6 +777 \N 1 +757 \N 6 +779 \N 6 +780 \N 6 +776 \N 6 +774 \N 6 +768 \N 1 +764 \N 6 +754 \N 5 +704 \N 5 +761 \N 6 +756 \N 6 +745 \N 6 +715 \N 2 +750 \N 1 +730 \N 1 +725 \N 1 +722 \N 1 +762 \N 6 +714 \N 1 +733 \N 1 +727 \N 2 +751 \N 2 +763 \N 6 +752 \N 1 +747 \N 6 +716 \N 6 +705 \N 3 +702 \N 1 +735 \N 6 +710 \N 6 +740 \N 2 +732 \N 3 +720 \N 2 +703 \N 6 +699 \N 2 +706 \N 1 +687 \N 5 +749 \N 6 +713 \N 2 +711 \N 3 +700 \N 2 +718 \N 1 +760 \N 6 +753 \N 6 +743 \N 2 +738 \N 3 +701 \N 5 +734 \N 6 +850 My schedule changes every week/month because of my work. / Contacted for post-match followup \N +851 \N \N +852 I might need to adjust my schedule if I get hired by an employer. \N +853 Contacted for post-match followup \N +854 \N \N +855 I work in the evenings during the weekday. Currently need to be home by 4pm. \N +856 \N \N +857 For now I'm available 7 days a week but in 4 weeks time I'll be starting German language classes, from then I'll only be available evenings and weekends \N +858 Half of the month I'm available on Monday from 4pm, the other half I'm available 6pm. \N +859 \N \N +860 \N \N +861 \N \N +862 i am \N +863 \N \N +864 \N \N +865 I am allowed to take 1 day for volunteering each month. Fridays would work best with my work schedule. If possible. \N +866 n/a \N +867 i am a social worker working with young ofender \N +868 \N \N +869 I have a full time job during the weekday (8 to 6pm) so I can only work outside of these hours \N +870 \N \N +871 \N \N +872 \N \N +873 \N \N +874 \N \N +875 \N \N +876 My personal schedule could change, as I am a student and I don’t always have fixed schedule. As of now I’m relatively free, however that may change, of which I would let you know in advance. \N +877 \N \N +878 \N \N +879 \N \N +880 I will try to be consistant however the schedule will depend on my job interview schedule. \N +881 \N \N +882 \N \N +883 \N \N +884 \N \N +885 \N \N +886 No \N +887 i'm mostly very flexible due to work, sometimes i have to work on weekends but then i'm free during the week, this can vary from week to week \N +888 \N \N +889 \N \N +890 Available time as it is for now, but I would have to make changes to it in the future due to different reasons \N +891 \N \N +892 Dear Need4Deed team,Me and 2 of my close friends are coming from Tennessee to Berlin from May 26-June 2 in search of potential volunteering opportunities. We are specifically searching for ones assisting Ukrainian refugees in Berlin because one of my friends is Ukrainian and has much family still in Ukraine. He is fluent in Ukrainian and I am fluent in German. Please let me know if there are any opportunities, specifically ones helping Ukrainians.Thank you, Marvin \N +893 \N \N +894 \N \N +895 \N \N +896 \N \N +897 Ich kann bei Bedarf auch an anderen Tagen einspringen aber den Mittwoch Nachmittag habe ich immer frei und kann dementsprechend zu dieser Zeit regelmäßig. \N +898 \N \N +899 \N \N +900 \N \N +901 \N \N +902 \N \N +903 No \N +904 \N \N +905 \N \N +906 \N \N +907 \N \N +908 Canceled volunteering Praktikum because marzahn was the only option and it was too far for her \N +909 they want to have a company day on 24.6 they are ca. 9 people. \N +910 \N \N +911 Nein \N +912 \N \N +913 I am applying for payed jobs at the moment which is why my schedule could change by a bit in the next month or so. But then I should still be available for at least 10 hours a week for the next months. \N +914 - 28.05.2024: Dear Mohammad Hassan, I don't Führungszeugnis but I have Anmeldung in Berlin, I'm also living in a immigrants Heim and I don't have permit, even I don't have refugee permit but my permit is in process,  it will take months, I'm waiting for appointment so I don't know it's possible for me to take Führungszeugnis when I don't have permit?Best regards \N +915 no \N +916 \N \N +917 \N \N +918 \N \N +919 \N \N +920 \N \N +921 \N \N +922 Werktags keine verbindl. Festlegungen im Vorhinein wg. Arbeit. Jedoch relativ gute Schancen bei spontanen Anfragen für Treptow bzw. Rudow vormittags. \N +923 sometimes I have work on Fridays from 13.30 \N +924 \N \N +925 \N \N +926 \N \N +927 \N \N +928 \N \N +929 Bei mir variieren meien Verfügbarkeiten stark, da ich gerade keine wirklich geregelte Woche habe. Gebt mir aber gerne Bescheid wann und wo ihr Menschen benötigt, ich unterstütze euch gerne! \N +930 Nein \N +931 I work freelance and have two kids, so my availability changes from week to week. She is out of Berlin until June 23rd. \N +932 My schedule changes from day to day, so I might be able to help more or less depending on the schedule \N +933 \N \N +934 \N \N +935 \N \N +936 \N \N +937 \N \N +938 \N \N +939 \N \N +940 \N \N +941 \N \N +942 It all depends on my kids' schedule, so when the school or Kita are closed, I won't be available. \N +943 \N \N +944 \N \N +945 \N \N +946 \N \N +947 \N \N +948 \N \N +949 \N \N +950 \N \N +951 \N \N +952 \N \N +953 I'm very busy but would like to help with translation when I can. I had measles when I was a small child. \N +954 \N \N +955 I’m in town for 3 months doing research and am flexible in my schedule, though will be busy at different times for different meetings \N +956 \N \N +957 I am usually available Mon-Fri after 18:00 since I work full-time. I am free on the weekends. \N +958 \N \N +959 \N \N +960 Generally flexible for anytime \N +961 flexible but not always avilable- need to ask \N +962 \N \N +963 \N \N +964 Ich bin nur jede zweite Woche in Berlin \N +965 \N \N +966 I can be sometimes available in more time slots \N +968 I often work one week on one week off in my regular job so some at times I would be available during the week and other weeks I would not be available when working my regular job. When Im not working my hours can be flexible \N +969 \N \N +970 \N \N +971 My schedule is very irregular, so it is truly impossible to estimate availability. But if I'm notified about the event in advance (at least 2 weeks), then I can manage to fit in volunteering \N +972 \N \N +973 \N \N +974 \N \N +975 It changes the next month. \N +976 \N \N +977 I travel a lot so I cannot guarantee availability every week. \N +978 \N \N +979 \N \N +980 I could be available on other days. Please ask! \N +981 I am available from July 22 on and then for a couple of weeks as indicated above. After that I enter back into a tighter work schedule. \N +982 I'm flexible - all depends on how often I'm volunteering. Also Tempelhof is an option, just need more time to get there and back. \N +983 \N \N +984 I will be on vacation outside of Berlin until the 28th of June, but afterwards, I will be in Berlin and can commit to the hours marked above. \N +985 I finish my work every day at 15 mon-fri \N +986 \N \N +987 \N \N +988 \N \N +989 Flexible \N +990 Maybe I’ll only be available until the end of September \N +991 Earlier rather later in the day \N +992 Full availability at the moment however this may change upon employment / Experience working with kids, Pediatric occupational therapist in Australia, film and photography. A1.2 language course. Experience in arts/crafts with kids -Vostel. \N +993 \N \N +994 \N \N +995 \N \N +996 \N \N +997 \N \N +998 I am studying my my Deutsch Cours and it start at 9 o'clock morning up to 13 Afternoon and it’s from Monday to Friday \N +999 \N \N +1000 \N \N +1001 \N \N +1002 I can only work until October \N +1003 To be after working hours \N +1004 \N \N +1005 \N \N +1006 \N \N +1007 von 9-17 bin ich nicht verfügbar unter der Woche aber danach und am Wochenende ziemlich flexibel \N +1008 \N \N +1009 I live in Wilmersdorf that is why I only selected 2 options but I can also do other locations if needed \N +1010 I work full-time, but it's pretty flexible:) \N +1011 I will start studying in the middle of September and don't know yet what the schedule will be, but I will naturally be much less available. \N +1012 It can sometimes change but, in principle, I am relatively flexible as I work from home, but I will be fitting various other things in. It also somewhat depends on the location in question. As for locations, I could also potentially travel further afield, and have done in the past when going to accommodation centres to provide assistance, but my preference would be for around Neukölln, so I only ticked the actual preferences. It also perhaps depends on the time of the errand. In principle though, for a couple of hours a week/a couple of times a month, I should be rather flexible. \N +1013 \N \N +1014 Ich bin eigentlich flexibel aber dass sind doch meine Präferenzen \N +1015 Shawky 01.08.2024: She used to be a school teacher for math and physics back in Yemen\n\nSenya 19.01.2026: She works full time, but remotely, so she has some flexibility with her schedule. \N +1016 \N \N +1017 On October I will start school so my schedule might change and I won’t be in Germany for the last two weeks of August \N +1018 \N \N +1019 \N \N +1020 \N \N +1021 \N \N +1022 No \N +1023 Unfortuntaley I work full time, so after 6 would only work for me. \N +1024 In the end, availability depends on the workload, so it's difficult to say what would be possible during the week. \N +1025 I am very flexible, I can volunteer when most convenient for you! \N +1026 \N \N +1027 Ich bin bis September weg. Ich fange dann mit einem neuen Job an. Bin mir nicht sicher wie viele Energie ich danach haben wird. Hab daher nur donnerstags frei gemacht für jetzt. \N +1028 Schedule changes. Happy to help when needed, just let me know. \N +1029 I am only available for the rest of August \N +1030 \N \N +1031 I may have additional availability during the weekdays, however it depends on my work schedule and meetings, therefore it is difficult to commit to a slot on a regular basis. \N +1032 \N \N +1033 \N \N +1034 I prefer to volunteer in weekends \N +1035 Ich habe leider noch nicht meinen Stundenplan für die Uni bekommen deswegen kann es gut sein, dass die Zeiten an welchen ich Zeit habe sich nochmal verändern. Und ich kann erst ab dem 6.10 wieder weil ich dann erst zurück nach Berlin komme \N +1036 \N \N +1037 I am in my semester break so I am very flexible \N +1038 After choosing the schedule will I be able to change it later. \N +1039 Omaha pro Woche \N +1040 No i dont have \N +1041 nein \N +1042 Ja \N +1043 - Senya 17.10.25: He was initially volunteering in Buschkrugallee doing Sprachcafé there in 2023. Has not responded to any of my emails about accompanying recently. \N +1044 About my schedule right now my school is on vacation but it's gonna start October when it's started my schedule can be changed and I might have to do this preferances again thank you for understanding. 🙏 \N +1045 Hello! In the past I was volunteering in a cafe where we were taking care of refugee kids while their parents were attending a german course. Something like this or something like doing arts or crafts / leisure time activities with the kids, would be awesome. I habe basic skills in arabic. And I would like to volunteer approx 2h a week. Kind regards, Jenny \N +1046 I am unemployed at the moment. As soon as I find a job my volunteering opportunities will change. \N +1047 \N \N +1048 Ab Oktober bin ich werktags frei \N +1049 \N \N +1050 Ich habe von Montag bis Donnerstag einen Deutschkurs. Am liebsten die restlichen drei Tage nachmittags und abends. \N +1051 no \N +1052 \N \N +1053 I don’t have my university schedule yet, so I will have to adjust \N +1055 \N \N +1056 I may need to change it in the future as I intend to take German language classes (I am roughly B1 level). As of now I only want to do at most 20 hours per week. \N +1057 \N \N +1058 \N \N +1059 \N \N +1060 Contact me via whatsapp if needed whenever and I will see my availability \N +1061 \N \N +1062 I‘m also available for flexible/one time translations at different times \N +1063 \N \N +1064 \N \N +1065 \N \N +1066 \N \N +1067 \N \N +1068 I would probably need to adapt and update my schedule once i get the confirmation for my german classes schedule. \N +1069 \N \N +1070 My schedule might chance as from the next week \N +1071 \N \N +1072 I am working full time job, so unfortunately can support mostly on the weekends \N +1073 Ich wohne in Alt Buckow 12349. Ich hoffe, dass ich in der Nähe hier arbeiten kann. \N +1074 \N \N +1075 \N \N +1076 \N \N +1077 I am working shifts (early, late or night) so it really depends on my work schedule. Usually I am off monday and tuesday, so would be available in the afternoon (but again that can change from to week) \N +1078 \N \N +1079 I would mostly prefer the weekend. However, If that is not possible all the time, I can avail myself during the afternoon on some weekdays with prior notice. I live in Frankfurt (Oder). \N +1080 \N \N +1081 \N \N +1082 \N \N +1083 \N \N +1084 During the week generally available after 17 due to work obligations. Earlier may be possible on certain days. \N +1085 \N \N +1086 \N \N +1087 \N \N +1088 \N \N +1089 \N \N +1090 I am also working and studying therefore I am not available on Mondays, Tuesdays and Wednesdays originally, but in case of an urgent need I would work to make it possible \N +1091 \N \N +1092 My schedule will change in the next weeks \N +1093 I can be available most of the time between 9h-16h (with some exceptions) if I know in advance \N +1094 \N \N +1095 \N \N +1096 \N \N +1097 \N \N +1098 I have a disability related to my menstrual cycle. Because if this I can only guarantee I can participate between 1-2 a month. For Saturdays, I might be flexible and can do it either from 4-6 pm or 6-8pm \N +1099 \N \N +1100 \N \N +1101 I work as a model and I have a flexible routine. I never really know when I’m going to have work so I checked most times and days. \N +1102 \N \N +1103 My schedule is flexible. I can accommodate different time periods, if agreed in advance. \N +1104 \N \N +1105 I work on shift base, so I am not available for sure saturdays and sundays, during the week I could have some free days and different shifts. If you add me to a group with a planned and shared calendar I can join any location according to my shifts. \N +1106 I’d most preferably to have on Tuesdays but other days are also fine! \N +1107 \N \N +1108 Grundkenntnisse Arabisch ist auch sehr hochgegriffen; \N +1109 \N \N +1110 \N \N +1111 \N \N +1112 \N \N +1113 \N \N +1114 \N \N +1115 \N \N +1116 \N \N +1117 \N \N +1118 \N \N +1119 \N \N +1120 Picking Spanish up again. Soccer, May Thai, Lindy hop, Capoeira. \N +1121 \N \N +1122 \N \N +1123 \N \N +1124 \N \N +1125 \N \N +1126 \N \N +1127 \N \N +1128 \N \N +1129 A1.2 level German \N +1130 \N \N +1131 Mein Deutschniveau ist A2. Ich setze mein weiteres Studium fort \N +1132 \N \N +1133 \N \N +1134 \N \N +1135 \N \N +1136 \N \N +1137 \N \N +1138 \N \N +1139 \N \N +1140 \N \N +1141 \N \N +1142 I usually work in the cultural field as an event producer. \N +1143 \N \N +1144 \N \N +1145 \N \N +1146 I work on shifts, that Is why I did not select some time frames \N +1147 I speak A2/B1 German. \N +1148 \N \N +1149 \N \N +1150 \N \N +1151 Am available weekends at any time or early in the morning on weekdays or later in the day on weekdays. \N +1152 I also play american football, I like to create content.. \N +1153 I am good at small talk but of course in German is still a bit slow. Vielen Dank Elisa Ferrari \N +1154 \N \N +1155 \N \N +1156 As a freelancer with a patchwork of different dayjobs, my schedule varies from week to week. My main interest / thing I would currently like to offer is a set of art/sculpture workshop ideas for kids/youth, which I currently facilitate at Atrium Kunstschule in Reinickendorf. These workshop concepts can be adopted to various circumstances. \N +1157 \N \N +1158 I would like to have more information on how to help with translating from French to English. \N +1159 \N \N +1160 Hello dear community, I have a 5 volunteering day paid leave from my work that I want to use for a good cause this year with volunteering. I saw this opportunity that I thought I might be a good fit but I am also open for other opportunities. What is important for me is that I can commit to it for only 10 weeks in half days and preferably on Friday afternoon as I need to submit these days to my manager as soon as possible for approval. I would also appreciate if I could get somehow a participation letter that could be a proof. Please let me know if you can provide me these and if I need to do anything else to become a volunteer starting from February 7th until April 11th on Fridays in the afternoons. \N +1161 \N \N +1162 \N \N +1163 \N \N +1277 \N \N +1278 Ich bin erstmal nicht in Berlin, aber ungefähr ab Mitte August erreichbar. \N +1279 \N \N +1280 \N \N +1281 \N \N +1164 Hi, I am a young professional in IT. I have every friday free from the end of February to the end of March, I would love to help and support at the Tempelhof refugee center. I think I am quite good with children and I would really enjoy supporting the day care and committing to create and organize some fun activities for the children to do. On the side I can also help with anyone in need of programming or IT support! My skills in german are currently around A2/B1 but I am improving every day. Best, Benjamin \N +1165 \N \N +1166 \N \N +1167 I am working full time but am available most days during my lunch break (12-2pm), so could be available then for appointments for example. \N +1168 Hello, \N +1169 \N \N +1170 \N \N +1171 Please just email or message me to contact me. \N +1172 Ultimate Frisbee - i also put things i am not expert at but down to do (: \N +1173 This is a test from Onur ARICI \N +1174 Happy to teach self defence! \N +1175 My availability on Mondays & Fridays depends on the week--more often than not I am available, but sometimes I'm not in Berlin. I will also be gone from 17.04-25.04 (Easter holidays). Other than that, I have a lot of experience with theatre/acting in addition to the other ones I listed above. \N +1176 \N \N +1177 \N \N +1178 N/a \N +1179 \N \N +1180 Chess Football, basketball, chess, Support with \N +1181 \N \N +1182 I'm really good at playing the clarinet and sing so I can help and volunteer in teaching music \N +1183 \N \N +1184 \N \N +1185 I have a yoga teacher for children certification and would be happy to work with children. \N +1186 \N \N +1187 \N \N +1188 \N \N +1189 \N \N +1190 \N \N +1191 - Shawky 18.03.2024: She helped during the Iftar. She wants to do only accompanying, because her schedule is not clear (doing her MA) \N +1192 \N \N +1193 \N \N +1194 \N \N +1195 \N \N +1196 \N \N +1197 \N \N +1198 Liebes Need4Deed-Team, ich bin Vater von zwei kleinen Kindern (4 und 7 Jahre alt), lebe in Schöneberg, Berlin und arbeite an einer Universität. Ich komme ursprünglich aus Russland, spreche Russisch als Muttersprache und habe etwa B2-Niveau in Deutsch. Da ich selbst viel Freude daran habe, Zeit mit Kindern zu verbringen, würde ich mich sehr freuen, geflüchtete Kinder in der Gemeinschaftsunterkunft zu unterstützen – sei es beim Spielen, Basteln oder einfach im gemeinsamen Alltag. Es wäre schön, einen kleinen Beitrag zu ihrem Wohlbefinden leisten zu können. Ich freue mich auf Ihre Rückmeldung! Herzliche Grüße, Philipp Chapkovski, Ph.D https://chapkovski.github.io/ +4915123570022 \N +1199 ok with bein translation on the list for appointments but not a priority she is into regular volunteering and close to her place so in radickestrs RAC is 22 min bus. \N +1200 \N \N +1201 \N \N +1202 \N \N +1203 Hey! I would love to help out. I currently work at an NGO which does an online 'sprachcafé' and I would be more than happy to use what I have learned through organising this:) Or generally would be keen to help. \N +1204 \N \N +1205 I am Angela from Hong Kong, wanted to participate as a volunteer to help people, I did it many time since teenager. \N +1206 Hello! I've selected all the time frames that would fit in my schedule, however, since I am still studying and working, I can only volunteer regularly (bi-weekly preferred but every week also works) in ONE of these time frames. On thursdays I have a bi-weekly uni class, so for those timeframes (except the 17-20) I could only do every other thursday! \N +1207 Hi! I would love to get involved in your activities, especially creative ones. I have some experience from a few years ago in arts&crafts for 1-3 year olds for KiezOase Schöneberg, which was very fun, and with adults with disabilities. My Führungszeugnis is unfortunately not up to date. \N +1208 I would like to preferably work with kids and queer refugees. \N +1209 \N \N +1210 \N \N +1211 \N \N +1212 \N \N +1213 Gegen Masern bin ich bin aufgrund einer Masernerkrankung während meiner Kindheit immun \N +1214 not registered for regular, just asked to do one time translation \N +1215 \N \N +1216 I'm a fully qualified fitness coach \N +1217 \N \N +1218 I am software engineer and can teach programming \N +1219 \N \N +1220 \N \N +1221 Hello! I'm a certificated yoga teacher, I will be happy to volunteering offering some lessons. \N +1222 \N \N +1223 Hey Team, I am Yoanna and am a native Bulgarian speaker (German & English C1). I am a student working part-time and am generally flexible Thursday and Friday either mornings/afternoons as well as evenings (17-20h) and sometimes on the weekend. I am open to any activities and would love to also engage in organizing some events like Sprachcafe or Festivals. Let me know how I can be helpful! \N +1224 Ich arbeite selbst in einer Behörde und kann daher bei Antragstellungen ggf. unterstützen. \N +1225 Preferred time frame would be either fridays (any time) or on the weekend. \N +1226 \N \N +1227 \N \N +1228 Ich fahre schon lange Skateboard und mach Kickboxen. Diese kann ich den Kindern beibringen. \N +1229 \N \N +1230 I am from Hungary, and i would like to volunteer for two weeks in June! \N +1231 I can also crochet and braid hairstyles from series and movies, I don't know whether that is relevant or even helpful. \N +1232 \N \N +1233 \N \N +1234 \N \N +1235 I can speak Bengali, English, and basic German (A2 level). I am flexible with working times and willing to work on weekdays and weekends if needed. I am open to working in any location in Germany where accommodation is available. I am interested in healthcare, elderly care, working with people with disabilities, and helping in hospitals or care homes. \N +1236 I have long experience working with children, both due to professional activities (summer schools, baby sitting) and as a volunteer, more recently worked with an association offering after school activities of an underserved community in the amazons in Peru. \N +1237 \N \N +1238 \N \N +1239 \N \N +1240 \N \N +1282 \N \N +1283 \N \N +1284 \N \N +1285 \N \N +1345 \N \N +1241 Hello here, I am currently looking for an opportunity to volunteer and realize myself in this need. I am from Ukraine and have been living and working in Berlin for over a year, studying the language. I am fluent in Ukrainian and Russian. A little worse in English and at an intermediate level in German. But I am constantly working on it. I work in the IT field, but in the past, while studying at the university, I worked part-time as a tutor in mathematics, Ukrainian language and history mostly with young people. If you suddenly have a need, I can find free time after 6 pm (Monday, Wednesday, and also up to 3 hours on weekends). Best wishes, Vadym \N +1242 I am a classically trained flautist and am comfortable teaching the recorder. Also can read sheet music. I am also involved at a basketball club in Berlin so can potentially organize an event through that. \N +1243 \N \N +1244 Hello, My name is Kerstin Larsson and I am a student pursuing my master's degree in Paris in International Development. I will be going to Berlin over the summer from June 22 for at least a month, probably longer. I will be studying German each day from 9-12.30 during the weeks and the hours after that I would like to help out and volunteer. I am also available during the weekends. Please let me know if you need any additional information about me and my experiences. Best regards/ Kerstin Larsson \N +1245 \N \N +1246 \N \N +1247 \N \N +1248 I'm also a meditation and mindfulness teacher, and happy to volunteer to teach that to children or adults. \N +1249 \N \N +1250 \N \N +1251 \N \N +1252 \N \N +1253 \N \N +1254 Times are flexible. Preference would be teaching kids chess/guitar \N +1255 \N \N +1256 \N \N +1257 \N \N +1258 I'd like to work in gardening, planting trees, etc., and I can also help sort clothes. I'm a teacher with 15 years of experience in Venezuela, but I've only been here in Germany for a short time. \N +1259 \N \N +1260 \N \N +1261 \N \N +1262 \N \N +1263 \N \N +1264 \N \N +1265 \N \N +1266 \N \N +1267 \N \N +1268 \N \N +1269 \N \N +1270 \N \N +1271 \N \N +1272 \N \N +1273 \N \N +1274 \N \N +1275 \N \N +1276 \N \N +1286 I can write. I can do writing Workshops. \N +1287 Valid from 21st July 2025 until 30th July. Before starting my new job I have 2 weeks off. I have worked in big companies as Executive Assistant and also in a ministry recently, so I know German bureaucracy and also real estate agents etc. Very well and would like to help. Lots of experience in Hospitality & Event Management, Star Trek, Architecture / Guide Tours, Club Culture, Chaos Computer Club \N +1288 \N \N +1289 \N \N +1290 \N \N +1291 \N \N +1292 \N \N +1293 \N \N +1294 hi, zu den Zeiten: ich habe eine Auswahl angegeben, die für mich grundsätzlich regelmäßig möglich sind. Insgesamt kann ich mir so 4-8h pro Woche vorstellen. Machmal muss ich wegen des Studiums ist Arbeit über mehrere Tage wegfahren. Ich habe eine Schauspielausbildung und kann gerne, was mit Sprechen und Vorlesen machen. Außerdem Interesse an schulischer Mathematik. Gruppen geleitet habe ich noch nicht und ist mir möglicherweise zu schwierig. Ich habe ein Führungszeugnis von 2021/2022, ist das aktuell genug? Freue mich über ein Kennenlernen. \N +1295 I've heard good things of your team and activity, so I'm inspired to join. \N +1296 \N \N +1297 \N \N +1298 nice to hear \N +1299 \N \N +1300 \N \N +1301 My mother tongue is brazilian portuguese. \N +1302 \N \N +1303 \N \N +1304 Ich habe einen Minijob, wo ich sehr unterschiedliche Zeiten habe, ich kann also jede Woche unterschiedlich. An den angegebenen Zeiten sollte ich (hoffentlich) immer können und manchmal auch an den anderen Tagen:) \N +1305 \N \N +1306 \N \N +1307 \N \N +1308 \N \N +1309 \N \N +1310 I speak fluent Portuguese and am currently learning Russian. \N +1311 \N \N +1312 \N \N +1313 \N \N +1314 \N \N +1315 \N \N +1316 Ich habe die Trainer C-Linzenz fürs Jugendfussball. Würde gerne Kindern, wenn Interesse da ist Tennis beibringen. Ich spiele selbst erst ein halbes Jahr, aber finde den Sport sowohl sehr gut für den Körper als auch um Fähigkeiten fürs Leben zu erlernen. \N +1317 \N \N +1318 \N \N +1319 \N \N +1320 \N \N +1321 \N \N +1322 Arabic \N +1323 \N \N +1324 \N \N +1325 \N \N +1326 \N \N +1327 I live near to Berlin but going to Berlin is not a problem for me, especially if it's 2-3 times per week.Also it's been a long time since I haven't played piano so I'm not sure about this skill.I also have another instrument like ukulele, kalimba und Blockflaute \N +1328 \N \N +1329 I am looking for vollunteer opportunity’s for coming week. I am flexibel and have a lot of time \N +1330 \N \N +1331 \N \N +1332 \N \N +1333 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N +1334 \N \N +1335 \N \N +1336 Ich heiße Faraj Ahmed, bin 43 Jahre alt und treibe täglich Sport. Ich arbeite als Telekommunikationsingenieur. Ich spreche Arabisch, Französisch und Englisch und lerne derzeit Deutsch. Ich möchte gerne an diesem Programm teilnehmen, weil ich Kinder sehr mag. \N +1337 \N \N +1338 \N \N +1339 \N \N +1340 \N \N +1341 \N \N +1342 \N \N +1343 Also native russian speaker \N +1344 I am highly motivated and truly eager to join your volunteer team. For me, this is a chance to contribute to something meaningful, grow through new experiences, and connect with people who share the same values. Since I haven’t received my school schedule yet, I am not entirely sure about my availability on weekdays, but I am confident I can commit on weekends and dedicate myself fully. I believe my energy and genuine desire to help could be a valuable addition to your team. \N +1346 My name is Yaroslava and I came from Ukraine. I am a journalist by education. I am 39 years old. I am currently preparing for the German language exam, level B1. I plan to continue my studies to level C1. Since I am currently looking for a job, I have free time. I would be happy to help people. I have experience volunteering in the OlamAid organization, as well as in Diakonie Krefeld und Viersen. I also have experience accompanying Ukrainians to appointments with doctors, to government agencies, to viewing apartments and signing rental contracts. \N +1347 \N \N +1348 \N \N +1349 After ten years working as a physician in the UK, I moved to Berlin to work as a medical editor at digital education platform AMBOSS. I recently passed Telc C1 German with “Sehr gut.” I am interested in finding out more about opportunities to volunteer with you. \N +1350 \N \N +1351 \N \N +1352 \N \N +1353 \N \N +1354 Staatlich anerkannte Sozialassistentin, Betreuungsassistentin sowie Altenpflegehelferin. \N +1355 \N \N +1356 \N \N +1357 \N \N +1358 I'm really looking forward to working with Need4Deed, and to contribute to supporting migrants in their journey of integrating in Germany. I want them to know that they are seen and heard, and that they don't have to go through this challenging process by themselves. \N +1359 \N \N +1360 \N \N +1361 Basic Level Kiswahili \N +1362 Ehrenamtsspaziergang Neukölln \N +1363 \N \N +1364 LGBTIQ+ \N +1365 \N \N +1366 \N \N +1367 \N \N +1368 \N \N +1369 I know Norwegian, English and Turkish fluently. Because of this I can also communicate with most Swedish people because the language is very similar. I know a bit french as well, A2 level. I study full-time, so for me the weekends are best. However, I would love to help with projects or festivals whenever that happens. I like to be with children and be active, so maybe football or basketball with the young and girls particularly. \N +1370 \N \N +1371 \N \N +1372 \N \N +1373 Iam outside Germany .iam looking forward to have an online interview.please just give me the chance. \N +1374 i cook delicious egyptian food and would love to make meals for the refugees \N +1375 \N \N +1376 I speak Marathi fluently as well. I would like to add that i would be available to do online volunteering as well. Such as tutoring online. \N +1377 I am available most days of the week since I have a very flexible job at the moment! I recently moved to Berlin so I'd like to participate and help with any activities that still need support. \N +1378 \N \N +1379 \N \N +1380 \N \N +1381 Im starting to learn arabic, but just started now \N +1382 \N \N +1383 \N \N +1384 \N \N +1385 \N \N +1386 Fluent Finnish (second language), basic German (A2). Generally, I’m open to any location depending on the day and time. I have a business degree with major in marketing and work experience in digital marketing. \N +1387 \N \N +1388 \N \N +1389 Hello there, a friend of mine told me you are looking for programmes knowing TS/Next.js to help out for a couple of hours/week. I'm a graduate of 42 Berlin and happy to help. \N +1390 I speak native danish \N +1391 \N \N +1392 I also speak catalan and I'm willed to help with everything i can \N +1393 ich komme auch von ALEF \N +1394 Ich wäre Donnerstags oder noch lieber Freitags verfügbar für ein paar Stunden auszuhelfen. Was gibt es für Standorte? Ich wohne in Neukölln und arbeite in Friedrichshain, bin also flexibel. Ich habe schon seit vielen Jahren mit Kindern gearbeitet, von Babysitten bis spachhilfe.  \N +1395 ich habe euer Engagementangebot zur Nachhilfe und Hausaufgabenhilfe für geflüchtete Kinder gesehen und würde mich gerne beteiligen. Ich habe Freude daran, mit Kindern zu arbeiten und sie beim Lernen zu unterstützen, insbesondere beim Deutschlernen (Muttersprache).Ich wohne in Wilmersdorf-Charlottenburg und wäre zeitlich flexibel an Wochentagen, sowohl tagsüber als auch abends. Ein erweitertes Führungszeugnis müsste ich noch beantragen. \N +1396 Sprachcafe Sonnenallee \N +1397 \N \N +1398 Hello, I'm part of the ALEF Team at the Student Forum for Participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/star \N +1399 Bitte per Mail antworten - ich verstehe noch kein Deutsch oder Englisch \N +1400 \N \N +1401 \N \N +1402 \N \N +1403 Sprach Café -Sonnenallee \N +1404 \N \N +1405 \N \N +1406 On Tuesdays I am available until max 19:00. I play the violin. \N +1407 Instagram: Hallo, guten Tag!\n\nMein Name ist Luana, auch Luah genannt, und ich bin Fotografin und Illustratorin. Ich würde mich sehr freuen, mich in kreativen Projekten mit Frauen und Kindern zu engagieren. Ich habe 6 Stunden pro Woche Zeit und helfe euch auch gerne bei allen anderen Anliegen.\nIch bin Brasilianerin, 45 Jahre alt, Mutter von zwei wundervollen Kindern und lebe seit 12 Jahren in Berlin. Ich verstehe und spreche +- gut Deutsch. Außerdem spreche ich durchschnittlich Englisch. Trotz meiner Schüchternheit bin ich sehr engagiert und motiviert und kann viele kreative Ideen einbringen. Es wäre mir eine Ehre, mich ehrenamtlich zu engagieren!\nLiebe Grüße\nLuana de Figueiredo \N +1408 \N \N +1409 I‘d like to work with women and Kids :) \N +1410 \N \N +1411 Native language is Icelandic. I also know some Danish and a little bit Arabic. \N +1412 \N \N +1413 \N \N +1414 \N \N +1415 \N \N +1416 \N \N +1417 \N \N +1418 \N \N +1419 \N \N +1420 \N \N +1421 Deutschkenntnisse B1 \N +1422 \N \N +1423 \N \N +1424 \N \N +1425 \N \N +1426 Ich wohne in Düsseldorf, gibt es auch hier die Einsatzmöglichkeiten oder nur in Berlin? \N +1427 \N \N +1428 \N \N +1429 \N \N +1430 danish \N +1431 Hello! I am a Colombian social worker with a little experience working with migrants, I am also currently studying a master in human rights so I hope maybe some of my knowledge could help \N +1432 \N \N +1433 \N \N +1434 I also know some Soranî \N +1435 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N +1436 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N +1437 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N +1438 \N \N +1439 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N +1440 \N \N +1441 \N \N +1442 I used to work as a legal aid at a refugee organization in Cairo, Egypt. I don’t know German, so I’m limited, but I’d love to help where needed. \N +1443 \N \N +1444 \N \N +1445 \N \N +1446 \N \N +1447 \N \N +1448 I graduated from Fine Arts in Ceramics and I am currently interning at a ceramics studio. This creative background helps me bring a hands-on and engaging approach to my volunteer work. \N +1449 \N \N +1450 \N \N +1451 \N \N +1452 \N \N +1453 \N \N +1454 I speak Italian at a bilingual level, and French and German at an intermediate level. \N +1455 \N \N +1456 \N \N +1457 my German is only A2, but I'm happy to muddle through. \N +1458 Thanks for this \N +1459 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N +1460 Hey, I'm a certified yoga teacher and would love to give yoga lessons :) \N +1461 \N \N +1462 \N \N +1463 I would be happy to work with children but I’m open to alll your suggestions :) \N +1464 \N \N +1465 \N \N +1466 \N \N +1467 \N \N +1468 \N \N +1469 My name is Zainab Irum, and I’m a certified fitness and physique coach with hands-on experience in well-known gyms in Dubai. I’m especially passionate about working with women and helping them build strength, confidence, and healthier lifestyles. I enjoy combining fitness, nutrition, and an understanding of people to create changes that truly last, and I’m always eager to keep learning and growing in this field. I‘m fluent in English, Dari, and Urdu/Hindi. I prefer afternoon timings as i am studying in the Mornings. I am living in District Pankow. \N +1470 \N \N +1471 \N \N +1472 \N \N +1473 \N \N +1474 \N \N +1475 \N \N +1476 I am ready for any opportunities till 1st March 2026 \N +1477 I am a PhD student and would like to support children with homework and learning activities. I am available in the afternoons and weekends. I can communicate in English and Urdu, and I am excited to help children improve their Math skills and enjoy learning. \N +1478 \N \N +1479 Friday is currently the most free day for me, but I do get some time free on thursday sporadically \N +1480 \N \N +1481 \N \N +1482 I have worked as a teacher in school and volunteered in a welcome class. I would like volunteer with refugees. I am currently unemployed so I have availability during the day, however once I get a job I would then be available to volunteer after 6pm. I look forward to hearing from you! \N +1483 \N \N +1484 I founded climb2connect and would be keen to also do collabs outside of volunteering :) \N +1485 \N \N +1486 \N \N +1487 I'm applying as a Back-End Developer volunteer \N +1488 I can also speak fluent Hungarian. \N +1489 \N \N +1490 \N \N +1491 \N \N +1492 I dont know, weather or not i need to reapply for my certificates \N +1493 \N \N +1494 I can start on mai 2026 \N +1495 I am talking with Fiore about potentially helping them \N +1496 \N \N +1497 other sports: table tennis, climbing and bouldering, (aggressive) inline skating; preferred school subjects: math, physics, biology (my skill in that order :) ) \N +1498 Hallo, Mein Name ist Zeynep Firdevsoglu. Ich bin Ehrenamtskoordinatorin beim Malteser Integrationsdienst und leite ein Integrationsprojekt, in dem wir mit zahlreichen Angeboten Migrantinnen sowie geflüchtete Menschen unterstützen. Obwohl ich mehrfach versucht habe, unsere Angebote in den Unterkünften bekannt zu machen und die Menschen zu unseren Unterstützungsangeboten einzuladen, ist dies bisher leider nicht gelungen. Daher möchte ich mich und unsere Angebote über diese Plattform vorstellen. Wir bieten folgende Angebote an und freuen uns sehr, wenn wir für die Zielgruppen hilfreich sein können: Deutschkurse von A1 bis C1 sowie Sprachcafés Individuelle Sprachlernunterstützung Englisch-Sprachcafé Frauentheater Sportprojekte (derzeit Bouldern) Kulturprojekte Kochprojekt Yoga-Projekt Kunstprojekt Unsere Ehrenamtlichen sprechen unter anderem folgende Sprachen: Deutsch, Englisch, Türkisch, Arabisch, Persisch, Armenisch, Spanisch, Ukrainisch u. v. m. Ich freue mich sehr auf Ihre Rückmeldungen. \N +1499 \N \N +1500 I am keen to work with young children (I am primary carer for my own) and would be happy to get hold of any necessary documentation \N +1501 Hallo! Mein Name ist Izzy. Ich bin 27 Jahre alt und lebe in Neukölln. Ich kann 3–5 Stunden pro Woche Zeit investieren. Ich bin kontaktfreudig und habe bereits ehrenamtlich Erfahrung gesammelt, unter anderem beim Kochen und Ausgeben von Essen in einer Tafel. \N +1502 \N \N +1503 \N \N +1504 \N \N +1505 The times are more flexible during the semester break. \N +1506 \N \N +12 \N 2 +469 \N 6 +427 \N 6 +351 \N 6 +680 \N 6 +662 \N 6 +649 \N 6 +513 \N 6 +493 \N 6 +729 \N 4 +728 \N 1 +721 \N 2 +1598 \N 6 +1597 \N 6 +1599 \N \N +1600 \N \N +1601 \N \N +1602 \N 3 +1603 \N 6 +505 \N 5 +1507 Hello Need4Deed Team! I'd love to help out whilst I am unemployed and looking for a new full-time job. I'd love to help out with sewing and arts&crafts, since I've got a lot of experience in running a fashion label and organizing arts&craft workshops for friends. Sharing my Instagram here, so that you can get an idea of my sewing projects: https://www.instagram.com/sophi.sets. If you like, I can also share some pictures of the ceramics and tie-dye workshops I organized. In addition, I am also very up for accompanying men and women with all sorts of things (also very experienced in organizing excursions, games and events). I am available during all weekdays and Sundays in February, and maybe March too. Once I start working again, I can continue to help out on Sundays. Wishing you a lovely day, and looking forward to hearing from you! \N +1508 \N \N +1509 \N \N +1510 \N \N +1511 \N \N +1512 I am more flexible w locations \N +1513 \N \N +1514 \N \N +1515 I am a trainee psychoanalyst and expressive arts facilitator; formerly an academic in urban studies. I'm a mother. I don't drive. I have passive German skills; can read and understand with lower ability to speak it. \N +1516 \N \N +1517 \N \N +1518 Times are just filled in with a first thought, can be discussed/adapted to needs :) \N +1519 \N \N +1520 \N \N +1521 I would love to help as a volunteer :) \N +1522 I'm starting a psychology masters starting September and I would love to have more social work - supervised, if possible. \N +1523 \N \N +1524 \N \N +1525 \N \N +1526 \N \N +1527 \N \N +1528 \N \N +1529 \N \N +1530 \N \N +1531 \N \N +1532 \N \N +1533 \N \N +1534 \N \N +1535 \N \N +1536 \N \N +1537 \N \N +1538 Guten Abend sehr geehrte Damen und Herren, mein Name ist Igor. Ich komme aus der Ukraine und wohne schon seit 2019 im Berlin. Liebe Grüße Igor \N +1539 \N \N +1540 Hi! I am a Master's Student at TU Berlin, with good background in math. I also play these sports in high level: Volleyball, table tennis, iceskating, gymnastics, hiphop dance and Turkish cultural dance, swimming. \N +1541 \N \N +1542 Hello! I just wanted to mention that I am currently working in a cafe and my shifts vary from week to week. Although I can ask my manager to schedule me according to my volunteer activities, in exceptional cases this may not be possible. \N +1543 \N \N +1544 \N \N +1545 \N \N +1546 \N \N +1547 \N \N +1548 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N +1549 I have a full time job (9-5) at a tech company, so I’ll only be available in the evenings on the weekdays. \N +1550 I would like to apply as Erasmus Internship, currently I am doing my PhD in social work and will send the rest of the documents through email \N +1551 \N \N +1552 \N \N +1553 I am also learning German (currently at A2 and actively learning), so happy to work with children who speak german! \N +1554 I can communicate well with children. I can also help in the kitchen.I am a nurse but my language skills are not good enough to help you with my profession. \N +1555 \N \N +1556 \N \N +1557 \N \N +1558 I teach natural dyeing and eco printing as well, and have a variable, but flexible schedule \N +1559 \N \N +1560 \N \N +1561 \N \N +1562 \N \N +1563 Ich hatte in den letzten Monaten etwas freie Zeit, um mich ehrenamtlich zu engagieren. Letztes Jahr habe ich während der Universitätsweltspiele im Volleyballstadion als Freiwilliger mitgeholfen. \N +1564 \N \N +1565 I speak some Japanese too. \N +1566 \N \N +1567 Still learning Deutsche . A2 \N +1568 \N \N +1569 \N \N +1570 I'm working 9-5pm so i could only support before or after \N +1571 \N \N +1572 \N \N +1573 bin ohne Träger seit 4 Jahren aktiv in der Unterstützung beim Ankommen ..und... auf dem Weg zum Abitur \N +1574 \N \N +1575 \N \N +1576 \N \N +1577 \N \N +1578 \N \N +1579 \N \N +1580 \N \N +1581 \N \N +1582 \N \N +1583 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N +1584 \N \N +1585 Deutsch spreche ich auch fließend! My schedule is often changing from week to week. I am a banqueting and restaurant manager. I would love to help out with children, although I don’t have too much professional experience working with young children, I am an older sister and have helped out teenagers before with homework when I was younger. I do have some basic understanding of the Cyrillic alphabet. In my free time I like to cook and paint. I’m very creative and caring as a person and would really like to help in any way that I can. I really look forward to being involved. I also studied social policy with government when I was at university. \N +1586 \N \N +1587 I became jobless recently and would like to use my time to give something back to the community if possible. Besides the German language courses I am taking from Monday to Thursday in the morning, I am free and flexible the rest of the time. \N +1588 \N \N +1589 \N \N +1590 K-Fetisch café \N +1591 \N \N +1592 \N \N +1593 \N \N +1594 \N \N +1595 \N \N +1596 Freie Universität \N +805 \N 6 +804 \N 6 +803 \N 6 +801 \N 6 +800 \N 6 +799 \N 6 +798 \N 6 +797 \N 4 +2 \N 1 +3 \N 2 +4 \N 2 +5 \N 2 +6 \N 1 +7 \N 1 +8 \N 1 +9 \N 5 +10 \N 3 +11 \N 5 +1604 \N 3 +409 \N 1 +327 \N 1 +263 \N 1 +619 \N 3 +598 \N 3 +1605 \N 6 +1606 \N \N +1607 \N \N +1608 \N \N +587 \N 6 +597 \N 6 +606 \N 6 +610 \N 6 +623 \N 6 +637 \N 6 +1609 \N 6 +1610 \N 6 +1611 \N 6 +1612 \N 3 +1613 \N \N +1614 \N \N +1615 \N \N +1616 \N \N +1617 \N \N +1618 \N \N +1619 \N \N +282 \N 3 +1620 \N \N +1621 \N 6 +1622 \N \N +1623 \N \N +1624 \N 6 +1625 \N 1 +1626 \N 6 +1627 \N 6 +1628 \N \N +569 \N 3 +526 \N 1 +543 \N 1 +677 \N 2 +614 \N 6 +678 \N 3 +573 \N 6 +454 \N 6 +588 \N 5 +625 \N 2 +431 \N 4 +428 \N 4 +374 \N 2 +420 \N 4 +1629 \N 6 +1630 \N 5 +1631 \N 6 +1632 \N 1 +1633 \N 6 +1635 \N 3 +1634 \N 2 +1636 \N \N +540 \N 3 +629 \N 1 +499 \N 3 +498 \N 4 +496 \N 4 +633 \N 2 +1637 \N 6 +1638 \N 6 +\. + + +-- +-- Data for Name: profile_activity; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.profile_activity (id, profile_id, activity_id) FROM stdin; +1 2 4 +2 3 1 +3 4 1 +4 5 1 +5 6 4 +6 7 3 +7 7 13 +8 8 3 +9 9 2 +10 10 14 +11 11 2 +12 12 1 +13 13 3 +14 14 1 +15 16 6 +16 17 4 +17 18 14 +18 19 14 +19 20 4 +20 21 17 +21 22 1 +22 23 7 +23 24 4 +24 25 4 +25 26 4 +26 28 1 +27 29 17 +28 30 4 +29 31 21 +30 31 4 +31 32 21 +32 32 4 +33 33 21 +34 34 3 +35 35 2 +36 36 13 +37 37 7 +38 38 17 +39 41 4 +40 42 10 +41 44 3 +42 46 1 +43 47 6 +44 48 21 +45 48 1 +46 48 4 +47 49 6 +48 50 7 +49 51 15 +50 51 17 +51 52 21 +52 53 3 +53 55 14 +54 56 14 +55 57 3 +56 58 2 +57 59 1 +58 60 21 +59 61 21 +60 62 21 +61 63 21 +62 64 6 +63 65 21 +64 66 21 +65 67 21 +66 68 21 +67 69 21 +68 70 21 +69 71 17 +70 72 21 +71 73 21 +72 74 21 +73 75 21 +74 76 21 +75 78 4 +76 79 13 +77 80 6 +78 80 1 +79 80 2 +80 81 2 +81 82 21 +82 83 4 +83 84 21 +84 84 4 +85 85 4 +86 86 4 +87 87 7 +88 88 14 +89 89 21 +90 89 6 +91 89 1 +92 90 4 +93 91 21 +94 92 21 +95 93 6 +96 95 17 +97 97 7 +98 98 13 +99 99 1 +100 100 13 +101 101 13 +102 102 17 +103 103 6 +104 103 1 +105 104 4 +106 105 1 +107 106 1 +108 108 17 +109 109 13 +110 110 13 +111 111 1 +112 112 21 +113 112 15 +114 114 17 +115 115 3 +116 115 17 +117 116 21 +118 120 13 +119 121 17 +120 122 17 +121 123 1 +122 124 21 +123 125 17 +124 126 8 +125 127 14 +126 128 15 +127 128 17 +128 129 3 +129 130 5 +130 131 13 +131 133 4 +132 134 2 +133 135 14 +134 136 8 +135 137 1 +136 138 4 +137 139 13 +138 140 15 +139 141 13 +140 142 3 +141 143 1 +142 144 1 +143 145 13 +144 146 21 +145 147 21 +146 148 2 +147 149 17 +148 150 13 +149 151 3 +150 151 13 +151 152 3 +152 152 13 +153 154 4 +154 157 22 +155 157 4 +156 159 19 +157 166 22 +158 168 21 +159 168 20 +160 169 22 +161 169 4 +162 170 21 +163 172 22 +164 172 4 +165 176 21 +166 178 21 +167 179 1 +168 180 22 +169 182 11 +170 190 21 +171 193 1 +172 194 13 +173 195 4 +174 196 4 +175 199 1 +176 200 3 +177 203 21 +178 203 22 +179 203 4 +180 205 1 +181 206 1 +182 207 21 +183 208 1 +184 211 17 +185 212 13 +186 217 21 +187 217 4 +188 219 13 +189 220 1 +190 221 14 +191 222 22 +192 222 4 +193 224 11 +194 224 3 +195 225 13 +196 226 3 +197 227 12 +198 228 11 +199 229 14 +200 231 1 +201 233 2 +202 234 1 +203 235 2 +204 236 13 +205 237 13 +206 238 4 +207 239 13 +208 241 16 +209 242 22 +210 245 21 +211 245 4 +212 246 3 +213 249 21 +214 249 22 +215 249 1 +216 250 21 +217 250 22 +218 250 1 +219 251 21 +220 251 22 +221 251 1 +222 252 1 +223 253 13 +224 255 21 +225 255 4 +226 256 21 +227 256 22 +228 257 13 +229 258 21 +230 258 4 +231 259 1 +232 260 21 +233 260 4 +234 263 13 +235 264 13 +236 265 22 +237 266 13 +238 267 3 +239 268 16 +240 269 13 +241 271 21 +242 272 22 +243 272 4 +244 273 12 +245 275 1 +246 276 21 +247 277 3 +248 278 13 +249 279 14 +250 280 2 +251 282 12 +252 283 2 +253 284 13 +254 285 6 +255 286 21 +256 286 4 +257 287 21 +258 288 22 +259 288 4 +260 289 22 +261 289 4 +262 291 22 +263 291 4 +264 293 3 +265 293 4 +266 296 17 +267 297 22 +268 298 22 +269 298 4 +270 299 4 +271 300 13 +272 301 13 +273 303 1 +274 305 16 +275 309 21 +276 310 21 +277 311 4 +278 312 22 +279 312 4 +280 315 5 +281 316 22 +282 316 4 +283 317 22 +284 322 15 +285 323 1 +286 324 22 +287 325 22 +288 326 1 +289 327 13 +290 329 16 +291 330 13 +292 332 22 +293 332 4 +294 333 13 +295 335 1 +296 336 2 +297 337 16 +298 338 11 +299 339 16 +300 340 13 +301 342 7 +302 345 16 +303 346 21 +304 348 3 +305 349 2 +306 350 22 +307 351 18 +308 351 4 +309 352 22 +310 353 22 +311 354 22 +312 354 4 +313 355 17 +314 356 17 +315 357 21 +316 357 4 +317 358 21 +318 358 4 +319 359 18 +320 360 2 +321 361 7 +322 362 22 +323 363 22 +324 364 12 +325 365 21 +326 366 1 +327 367 1 +328 368 17 +329 369 22 +330 370 1 +331 371 13 +332 372 2 +333 373 20 +334 374 1 +335 375 21 +336 377 4 +337 379 6 +338 380 8 +339 381 11 +340 382 15 +341 383 21 +342 383 20 +343 384 22 +344 385 8 +345 387 22 +346 388 4 +347 389 20 +348 390 18 +349 391 4 +350 392 8 +351 393 8 +352 394 22 +353 395 22 +354 396 22 +355 397 8 +356 398 22 +357 399 22 +358 400 4 +359 401 22 +360 402 22 +361 403 1 +362 404 22 +363 405 22 +364 406 18 +365 407 18 +366 408 3 +367 409 13 +368 410 22 +369 411 5 +370 412 1 +371 413 3 +372 414 12 +373 415 8 +374 416 22 +375 417 18 +376 418 21 +377 419 22 +378 420 8 +379 421 1 +380 422 3 +381 423 16 +382 424 21 +383 425 21 +384 425 22 +385 426 18 +386 427 22 +387 428 8 +388 429 22 +389 430 18 +390 431 8 +391 432 22 +392 433 13 +393 434 22 +394 435 8 +395 436 3 +396 437 1 +397 438 3 +398 439 8 +399 440 22 +400 441 7 +401 442 16 +402 443 18 +403 444 22 +404 445 18 +405 446 8 +406 447 22 +407 448 22 +408 449 22 +409 450 4 +410 451 21 +411 452 3 +412 453 22 +413 454 22 +414 455 18 +415 456 6 +416 457 22 +417 458 22 +418 459 22 +419 460 22 +420 461 22 +421 462 22 +422 463 22 +423 464 18 +424 465 22 +425 466 13 +426 467 22 +427 468 22 +428 469 22 +429 470 22 +430 471 22 +431 472 22 +432 473 22 +433 474 8 +434 475 8 +435 476 8 +436 477 3 +437 478 12 +438 479 13 +439 480 13 +440 481 22 +441 482 22 +442 483 22 +443 484 22 +444 485 22 +445 486 18 +446 487 3 +447 488 1 +448 489 3 +449 490 1 +450 493 22 +451 494 16 +452 495 22 +453 496 8 +454 497 18 +455 498 8 +456 499 16 +457 500 18 +458 501 13 +459 502 22 +460 504 18 +461 505 2 +462 506 22 +463 507 2 +464 508 9 +465 509 3 +466 510 18 +467 511 22 +468 512 22 +469 513 22 +470 514 3 +471 515 13 +472 516 16 +473 517 1 +474 518 18 +475 519 22 +476 520 22 +477 522 22 +478 523 22 +479 524 22 +480 525 13 +481 526 3 +482 527 13 +483 528 15 +484 529 8 +485 530 18 +486 531 16 +487 532 18 +488 533 18 +489 534 22 +490 535 18 +491 536 22 +492 537 14 +493 538 22 +494 539 22 +495 540 16 +496 541 13 +497 542 22 +498 543 13 +499 544 5 +500 545 22 +501 546 1 +502 546 2 +503 547 1 +504 548 22 +505 549 22 +506 550 18 +507 551 13 +508 552 17 +509 553 22 +510 554 21 +511 554 22 +512 555 22 +513 556 21 +514 556 22 +515 556 18 +516 556 19 +517 557 22 +518 558 21 +519 559 13 +520 560 22 +521 561 15 +522 562 4 +523 563 22 +524 564 22 +525 565 8 +526 566 6 +527 567 16 +528 568 13 +529 569 11 +530 570 17 +531 571 11 +532 572 22 +533 573 22 +534 574 22 +535 575 8 +536 576 13 +537 577 22 +538 578 22 +539 579 18 +540 580 12 +541 581 3 +542 582 16 +543 583 22 +544 584 4 +545 585 8 +546 586 2 +547 587 18 +548 588 2 +549 589 22 +550 590 22 +551 591 3 +552 592 1 +553 593 16 +554 594 1 +555 595 22 +556 596 22 +557 597 18 +558 598 14 +559 599 22 +560 600 3 +561 601 22 +562 602 22 +563 603 1 +564 604 6 +565 605 1 +566 606 18 +567 607 22 +568 608 18 +569 609 22 +570 610 18 +571 611 17 +572 611 13 +573 612 22 +574 613 22 +575 614 22 +576 615 22 +577 616 22 +578 617 22 +579 618 2 +580 619 14 +581 620 22 +582 621 18 +583 622 8 +584 623 18 +585 624 18 +586 625 6 +587 625 1 +588 626 21 +589 626 18 +590 627 2 +591 628 16 +592 629 11 +593 629 3 +594 629 13 +595 630 1 +596 630 16 +597 630 2 +598 631 1 +599 631 16 +600 633 1 +601 634 18 +602 635 1 +603 635 13 +604 636 1 +605 636 2 +606 636 13 +607 637 18 +608 638 4 +609 639 22 +610 640 14 +611 640 8 +612 641 22 +613 642 18 +614 643 4 +615 644 16 +616 645 22 +617 646 18 +618 647 18 +619 648 2 +620 649 22 +621 650 22 +622 651 18 +623 652 22 +624 653 18 +625 654 22 +626 655 22 +627 656 22 +628 657 22 +629 658 22 +630 659 1 +631 659 4 +632 660 13 +633 661 1 +634 661 2 +635 661 4 +636 662 18 +637 663 22 +638 664 22 +639 665 3 +640 666 2 +641 667 18 +642 668 22 +643 669 18 +644 670 18 +645 671 22 +646 672 21 +647 673 18 +648 674 22 +649 675 18 +650 676 22 +651 677 11 +652 677 6 +653 677 3 +654 678 3 +655 678 16 +656 679 22 +657 680 18 +658 681 22 +659 682 18 +660 683 18 +661 684 22 +662 685 22 +663 686 22 +664 687 2 +665 688 18 +666 689 18 +667 690 22 +668 691 1 +669 693 18 +670 694 22 +671 695 22 +672 696 18 +673 697 22 +674 698 22 +675 699 6 +676 699 1 +677 699 7 +678 699 9 +679 700 6 +680 700 1 +681 700 15 +682 700 16 +683 700 9 +684 700 10 +685 700 2 +686 700 13 +687 701 1 +688 701 2 +689 702 3 +690 702 9 +691 703 22 +692 704 11 +693 704 2 +694 705 12 +695 705 3 +696 705 17 +697 705 9 +698 706 3 +699 707 18 +700 709 4 +701 709 13 +702 710 18 +703 710 19 +704 711 1 +705 711 7 +706 711 17 +707 711 8 +708 711 13 +709 712 7 +710 712 3 +711 712 2 +712 713 6 +713 713 1 +714 714 4 +715 715 6 +716 715 1 +717 715 9 +718 716 22 +719 717 22 +720 718 11 +721 718 6 +722 718 3 +723 718 13 +724 719 22 +725 720 6 +726 720 1 +727 720 7 +728 720 3 +729 720 16 +730 721 11 +731 721 1 +732 722 3 +733 723 22 +734 724 18 +735 725 3 +736 726 18 +737 727 1 +738 727 13 +739 728 16 +740 728 8 +741 728 4 +742 729 1 +743 729 16 +744 729 8 +745 729 2 +746 730 12 +747 730 11 +748 730 6 +749 730 3 +750 730 16 +751 730 8 +752 730 9 +753 730 10 +754 730 4 +755 730 13 +756 731 16 +757 732 1 +758 732 15 +759 732 16 +760 733 17 +761 733 4 +762 733 13 +763 734 22 +764 735 22 +765 737 16 +766 737 8 +767 738 12 +768 738 11 +769 738 6 +770 738 15 +771 738 5 +772 738 3 +773 738 17 +774 738 16 +775 738 9 +776 738 10 +777 738 13 +778 739 12 +779 739 11 +780 739 16 +781 739 8 +782 739 2 +783 739 4 +784 740 6 +785 740 1 +786 740 9 +787 740 10 +788 741 18 +789 742 8 +790 743 6 +791 743 1 +792 743 16 +793 743 2 +794 743 13 +795 744 6 +796 744 1 +797 744 8 +798 744 2 +799 745 22 +800 746 18 +801 747 18 +802 748 18 +803 749 21 +804 750 4 +805 751 11 +806 751 1 +807 751 3 +808 752 7 +809 752 3 +810 753 22 +811 754 2 +812 756 22 +813 757 22 +814 758 11 +815 758 6 +816 758 1 +817 758 2 +818 759 2 +819 760 22 +820 761 22 +821 762 22 +822 763 22 +823 764 22 +824 765 18 +825 766 18 +826 767 22 +827 768 13 +828 769 1 +829 769 17 +830 769 2 +831 769 13 +832 772 1 +833 773 6 +834 773 16 +835 774 22 +836 776 18 +837 777 3 +838 779 22 +839 780 22 +840 781 11 +841 781 7 +842 781 3 +843 782 18 +844 783 15 +845 783 7 +846 783 3 +847 783 2 +848 784 1 +849 785 7 +850 786 18 +851 787 11 +852 788 18 +853 789 3 +854 790 22 +855 791 22 +856 792 22 +857 793 4 +858 794 22 +859 795 22 +860 796 12 +861 796 17 +862 796 16 +863 797 8 +864 798 22 +865 799 21 +866 800 18 +867 801 22 +868 803 22 +869 804 22 +870 805 22 +871 806 1 +872 809 1 +873 810 1 +874 811 1 +875 812 1 +876 813 1 +877 815 1 +878 818 1 +879 819 1 +880 820 1 +881 823 1 +882 824 1 +883 825 1 +884 826 1 +885 827 1 +886 828 1 +887 830 1 +888 831 1 +889 832 1 +890 834 1 +891 836 1 +892 838 1 +893 840 1 +894 843 1 +895 844 1 +896 845 1 +897 847 1 +898 848 1 +899 849 1 +900 852 1 +901 853 1 +902 856 1 +903 857 1 +904 861 1 +905 862 1 +906 863 1 +907 864 1 +908 865 1 +909 866 1 +910 868 1 +911 870 1 +912 871 1 +913 871 7 +914 872 1 +915 874 1 +916 875 1 +917 876 7 +918 878 1 +919 879 7 +920 880 1 +921 880 7 +922 881 1 +923 881 7 +924 882 1 +925 882 7 +926 884 7 +927 885 1 +928 886 1 +929 886 7 +930 887 1 +931 887 7 +932 888 1 +933 889 1 +934 889 7 +935 891 7 +936 892 1 +937 892 7 +938 902 7 +939 903 1 +940 904 1 +941 904 7 +942 906 7 +943 911 7 +944 912 1 +945 912 7 +946 913 1 +947 913 7 +948 914 1 +949 914 7 +950 915 1 +951 915 7 +952 917 7 +953 918 7 +954 919 7 +955 920 1 +956 923 7 +957 924 1 +958 924 7 +959 925 1 +960 925 7 +961 926 1 +962 926 7 +963 928 7 +964 936 7 +965 937 1 +966 938 7 +967 939 1 +968 939 7 +969 940 1 +970 940 7 +971 943 7 +972 945 7 +973 947 1 +974 947 7 +975 948 1 +976 948 7 +977 949 7 +978 950 7 +979 951 1 +980 951 7 +981 952 1 +982 952 7 +983 954 1 +984 954 7 +985 955 1 +986 955 7 +987 956 1 +988 957 7 +989 958 7 +990 959 1 +991 959 7 +992 960 1 +993 960 7 +994 965 1 +995 966 1 +996 966 7 +997 967 1 +998 967 7 +999 968 1 +1000 968 7 +1001 969 1 +1002 969 7 +1003 970 1 +1004 974 1 +1005 974 7 +1006 984 1 +1007 984 7 +1008 990 7 +1009 991 7 +1010 992 1 +1011 992 7 +1012 996 1 +1013 996 7 +1014 998 1 +1015 998 7 +1016 1000 1 +1017 1000 7 +1018 1001 1 +1019 1001 7 +1020 1002 1 +1021 1003 1 +1022 1008 1 +1023 1008 7 +1024 1009 7 +1025 1010 1 +1026 1010 7 +1027 1011 1 +1028 1011 7 +1029 1012 1 +1030 1012 7 +1031 1015 7 +1032 1017 1 +1033 1018 1 +1034 1019 1 +1035 1021 1 +1036 1025 1 +1037 1027 7 +1038 1029 7 +1039 1030 7 +1040 1031 7 +1041 1033 7 +1042 1035 7 +1043 1036 1 +1044 1037 1 +1045 1037 7 +1046 1038 11 +1047 1038 6 +1048 1038 8 +1049 1038 4 +1050 1040 1 +1051 1040 7 +1052 1041 1 +1053 1041 7 +1054 1044 7 +1055 1045 1 +1056 1045 7 +1057 1046 1 +1058 1046 7 +1059 1047 1 +1060 1049 1 +1061 1050 1 +1062 1050 7 +1063 1051 1 +1064 1052 1 +1065 1052 7 +1066 1053 1 +1067 1054 1 +1068 1054 7 +1069 1056 1 +1070 1056 7 +1071 1057 7 +1072 1058 1 +1073 1059 7 +1074 1064 7 +1075 1065 1 +1076 1065 7 +1077 1066 1 +1078 1066 7 +1079 1067 7 +1080 1069 1 +1081 1070 1 +1082 1070 7 +1083 1071 7 +1084 1072 1 +1085 1072 7 +1086 1074 7 +1087 1075 1 +1088 1077 1 +1089 1081 1 +1090 1082 7 +1091 1085 1 +1092 1085 7 +1093 1087 1 +1094 1087 7 +1095 1088 1 +1096 1088 7 +1097 1089 1 +1098 1090 7 +1099 1092 7 +1100 1095 7 +1101 1096 1 +1102 1100 7 +1103 1101 1 +1104 1103 7 +1105 1104 1 +1106 1105 7 +1107 1106 1 +1108 1109 1 +1109 1109 7 +1110 1110 7 +1111 1111 14 +1112 1112 3 +1113 1113 1 +1114 1114 3 +1115 1118 1 +1116 1118 2 +1117 1119 1 +1118 1120 7 +1119 1120 2 +1120 1122 1 +1121 1123 1 +1122 1123 7 +1123 1124 1 +1124 1124 2 +1125 1125 1 +1126 1125 2 +1127 1126 1 +1128 1126 7 +1129 1128 2 +1130 1129 1 +1131 1129 7 +1132 1129 2 +1133 1130 1 +1134 1131 1 +1135 1133 1 +1136 1135 7 +1137 1136 1 +1138 1136 2 +1139 1137 1 +1140 1137 7 +1141 1138 1 +1142 1140 2 +1143 1141 2 +1144 1144 1 +1145 1144 2 +1146 1146 1 +1147 1146 7 +1148 1147 1 +1149 1147 7 +1150 1147 2 +1151 1148 1 +1152 1148 7 +1153 1150 7 +1154 1151 1 +1155 1152 1 +1156 1152 7 +1157 1152 2 +1158 1153 2 +1159 1154 1 +1160 1154 7 +1161 1154 2 +1162 1155 1 +1163 1157 1 +1164 1157 2 +1165 1159 1 +1166 1161 1 +1167 1162 1 +1168 1162 7 +1169 1162 2 +1170 1163 2 +1171 1164 1 +1172 1165 1 +1173 1165 7 +1174 1168 1 +1175 1168 2 +1176 1169 7 +1177 1169 2 +1178 1170 2 +1179 1172 7 +1180 1172 2 +1181 1173 2 +1182 1174 2 +1183 1176 1 +1184 1176 2 +1185 1177 1 +1186 1178 2 +1187 1179 1 +1188 1180 2 +1189 1181 1 +1190 1181 2 +1191 1182 11 +1192 1182 6 +1193 1182 1 +1194 1182 9 +1195 1182 10 +1196 1182 2 +1197 1183 21 +1198 1183 12 +1199 1183 11 +1200 1183 1 +1201 1183 16 +1202 1183 8 +1203 1183 10 +1204 1183 4 +1205 1184 11 +1206 1184 6 +1207 1184 16 +1208 1184 8 +1209 1184 9 +1210 1184 10 +1211 1184 2 +1212 1184 4 +1213 1185 21 +1214 1185 11 +1215 1185 8 +1216 1185 10 +1217 1185 4 +1218 1186 2 +1219 1187 21 +1220 1187 11 +1221 1187 16 +1222 1188 11 +1223 1188 4 +1224 1189 1 +1225 1191 21 +1226 1191 11 +1227 1191 6 +1228 1191 1 +1229 1191 8 +1230 1191 9 +1231 1191 10 +1232 1192 12 +1233 1192 6 +1234 1192 1 +1235 1192 7 +1236 1192 8 +1237 1192 9 +1238 1192 2 +1239 1193 21 +1240 1193 11 +1241 1193 6 +1242 1193 9 +1243 1194 11 +1244 1194 6 +1245 1194 1 +1246 1194 7 +1247 1194 8 +1248 1194 4 +1249 1195 12 +1250 1195 6 +1251 1195 7 +1252 1195 16 +1253 1195 8 +1254 1197 21 +1255 1197 11 +1256 1197 6 +1257 1197 7 +1258 1197 9 +1259 1197 10 +1260 1197 2 +1261 1198 6 +1262 1198 1 +1263 1198 7 +1264 1198 2 +1265 1198 4 +1266 1199 11 +1267 1199 7 +1268 1199 16 +1269 1199 10 +1270 1200 21 +1271 1200 16 +1272 1200 8 +1273 1201 11 +1274 1201 6 +1275 1201 8 +1276 1201 9 +1277 1202 16 +1278 1202 10 +1279 1203 21 +1280 1203 11 +1281 1203 6 +1282 1203 4 +1283 1204 11 +1284 1204 1 +1285 1204 7 +1286 1204 16 +1287 1204 8 +1288 1205 6 +1289 1205 1 +1290 1205 8 +1291 1206 8 +1292 1206 2 +1293 1207 6 +1294 1207 1 +1295 1207 7 +1296 1207 8 +1297 1207 10 +1298 1208 21 +1299 1208 6 +1300 1208 1 +1301 1208 16 +1302 1208 2 +1303 1208 4 +1304 1209 9 +1305 1209 10 +1306 1209 4 +1307 1210 21 +1308 1210 12 +1309 1210 11 +1310 1210 6 +1311 1210 1 +1312 1210 7 +1313 1210 16 +1314 1210 8 +1315 1210 9 +1316 1210 10 +1317 1210 2 +1318 1210 4 +1319 1211 11 +1320 1211 6 +1321 1211 1 +1322 1212 6 +1323 1212 8 +1324 1212 9 +1325 1212 10 +1326 1213 21 +1327 1213 1 +1328 1213 8 +1329 1213 10 +1330 1214 16 +1331 1215 11 +1332 1215 7 +1333 1215 9 +1334 1215 10 +1335 1216 11 +1336 1216 8 +1337 1216 9 +1338 1216 10 +1339 1216 2 +1340 1217 11 +1341 1217 1 +1342 1217 8 +1343 1217 10 +1344 1218 6 +1345 1218 1 +1346 1218 7 +1347 1218 2 +1348 1219 6 +1349 1219 8 +1350 1219 9 +1351 1219 2 +1352 1220 11 +1353 1220 2 +1354 1220 4 +1355 1221 8 +1356 1221 2 +1357 1222 11 +1358 1222 6 +1359 1222 1 +1360 1222 10 +1361 1223 11 +1362 1223 6 +1363 1223 1 +1364 1223 16 +1365 1223 8 +1366 1223 9 +1367 1223 10 +1368 1224 21 +1369 1225 11 +1370 1225 6 +1371 1225 1 +1372 1225 9 +1373 1225 10 +1374 1225 2 +1375 1226 6 +1376 1227 21 +1377 1227 11 +1378 1227 6 +1379 1227 1 +1380 1227 7 +1381 1227 16 +1382 1227 10 +1383 1227 2 +1384 1227 4 +1385 1228 1 +1386 1228 2 +1387 1229 11 +1388 1229 6 +1389 1229 1 +1390 1229 10 +1391 1230 6 +1392 1230 1 +1393 1230 7 +1394 1231 11 +1395 1231 6 +1396 1231 9 +1397 1231 10 +1398 1232 12 +1399 1232 6 +1400 1232 7 +1401 1232 16 +1402 1232 9 +1403 1233 21 +1404 1233 8 +1405 1234 6 +1406 1234 1 +1407 1234 7 +1408 1234 8 +1409 1234 9 +1410 1234 2 +1411 1235 21 +1412 1235 12 +1413 1235 1 +1414 1235 7 +1415 1235 2 +1416 1236 21 +1417 1236 11 +1418 1236 1 +1419 1236 8 +1420 1236 9 +1421 1236 10 +1422 1236 4 +1423 1237 7 +1424 1237 10 +1425 1237 4 +1426 1238 11 +1427 1238 6 +1428 1238 1 +1429 1238 9 +1430 1239 21 +1431 1240 12 +1432 1240 6 +1433 1240 1 +1434 1240 7 +1435 1240 16 +1436 1240 8 +1437 1240 9 +1438 1240 10 +1439 1240 2 +1440 1242 11 +1441 1242 6 +1442 1242 1 +1443 1242 7 +1444 1242 8 +1445 1242 10 +1446 1242 2 +1447 1243 6 +1448 1243 9 +1449 1243 2 +1450 1244 11 +1451 1244 6 +1452 1244 1 +1453 1244 9 +1454 1245 11 +1455 1245 6 +1456 1245 7 +1457 1245 9 +1458 1245 10 +1459 1245 2 +1460 1246 21 +1461 1246 12 +1462 1246 11 +1463 1246 16 +1464 1246 2 +1465 1247 21 +1466 1247 11 +1467 1247 7 +1468 1247 16 +1469 1247 8 +1470 1247 4 +1471 1248 6 +1472 1248 7 +1473 1248 16 +1474 1248 2 +1475 1249 11 +1476 1249 6 +1477 1249 1 +1478 1249 8 +1479 1250 11 +1480 1250 6 +1481 1250 1 +1482 1250 16 +1483 1250 8 +1484 1250 10 +1485 1251 12 +1486 1251 6 +1487 1251 7 +1488 1251 10 +1489 1252 11 +1490 1252 8 +1491 1253 11 +1492 1253 6 +1493 1253 7 +1494 1253 10 +1495 1253 4 +1496 1254 6 +1497 1254 8 +1498 1254 9 +1499 1255 21 +1500 1255 11 +1501 1255 6 +1502 1255 1 +1503 1255 9 +1504 1255 10 +1505 1256 1 +1506 1256 7 +1507 1256 13 +1508 1257 3 +1509 1257 8 +1510 1257 10 +1511 1257 13 +1512 1258 14 +1513 1258 7 +1514 1259 11 +1515 1259 1 +1516 1259 16 +1517 1260 6 +1518 1260 14 +1519 1260 1 +1520 1260 7 +1521 1261 5 +1522 1261 3 +1523 1261 17 +1524 1261 8 +1525 1261 2 +1526 1261 4 +1527 1262 3 +1528 1262 8 +1529 1262 9 +1530 1262 2 +1531 1263 11 +1532 1263 6 +1533 1263 1 +1534 1263 15 +1535 1263 5 +1536 1263 3 +1537 1263 17 +1538 1263 16 +1539 1263 8 +1540 1263 9 +1541 1263 10 +1542 1263 2 +1543 1263 4 +1544 1263 13 +1545 1264 11 +1546 1264 1 +1547 1264 10 +1548 1264 2 +1549 1264 4 +1550 1264 13 +1551 1265 11 +1552 1265 14 +1553 1265 2 +1554 1266 6 +1555 1266 15 +1556 1266 3 +1557 1266 8 +1558 1266 9 +1559 1266 10 +1560 1266 2 +1561 1266 13 +1562 1267 11 +1563 1267 1 +1564 1267 7 +1565 1267 4 +1566 1268 9 +1567 1268 10 +1568 1269 22 +1569 1269 18 +1570 1269 5 +1571 1269 8 +1572 1269 4 +1573 1270 21 +1574 1270 12 +1575 1270 19 +1576 1270 14 +1577 1270 1 +1578 1270 17 +1579 1270 16 +1580 1270 8 +1581 1270 9 +1582 1270 10 +1583 1270 20 +1584 1270 2 +1585 1270 13 +1586 1271 12 +1587 1271 3 +1588 1271 10 +1589 1271 20 +1590 1271 2 +1591 1272 14 +1592 1272 7 +1593 1272 8 +1594 1273 11 +1595 1273 6 +1596 1273 1 +1597 1273 9 +1598 1273 10 +1599 1273 13 +1600 1274 18 +1601 1274 11 +1602 1274 1 +1603 1274 17 +1604 1274 20 +1605 1274 4 +1606 1274 13 +1607 1275 15 +1608 1275 3 +1609 1275 8 +1610 1275 2 +1611 1276 11 +1612 1276 4 +1613 1276 13 +1614 1277 11 +1615 1277 6 +1616 1277 14 +1617 1277 3 +1618 1277 8 +1619 1277 9 +1620 1278 21 +1621 1278 22 +1622 1278 18 +1623 1278 11 +1624 1278 19 +1625 1278 14 +1626 1278 1 +1627 1278 5 +1628 1278 16 +1629 1278 10 +1630 1278 20 +1631 1278 4 +1632 1279 11 +1633 1279 6 +1634 1279 3 +1635 1279 17 +1636 1279 8 +1637 1279 9 +1638 1280 21 +1639 1280 22 +1640 1280 18 +1641 1280 19 +1642 1280 14 +1643 1280 1 +1644 1280 5 +1645 1280 7 +1646 1280 8 +1647 1280 4 +1648 1280 13 +1649 1281 7 +1650 1281 3 +1651 1281 8 +1652 1282 11 +1653 1282 6 +1654 1282 14 +1655 1282 1 +1656 1282 15 +1657 1282 7 +1658 1282 17 +1659 1282 8 +1660 1282 9 +1661 1282 10 +1662 1282 13 +1663 1283 5 +1664 1283 4 +1665 1284 11 +1666 1284 19 +1667 1284 5 +1668 1284 8 +1669 1284 10 +1670 1284 20 +1671 1284 13 +1672 1285 11 +1673 1285 6 +1674 1285 9 +1675 1285 10 +1676 1285 2 +1677 1286 21 +1678 1286 22 +1679 1286 18 +1680 1286 12 +1681 1286 11 +1682 1286 19 +1683 1286 6 +1684 1286 14 +1685 1286 1 +1686 1286 15 +1687 1286 5 +1688 1286 3 +1689 1286 17 +1690 1286 8 +1691 1286 9 +1692 1286 10 +1693 1286 20 +1694 1286 4 +1695 1286 13 +1696 1287 21 +1697 1287 22 +1698 1287 18 +1699 1287 19 +1700 1287 6 +1701 1287 15 +1702 1287 5 +1703 1287 7 +1704 1287 3 +1705 1287 17 +1706 1287 16 +1707 1287 8 +1708 1287 20 +1709 1287 13 +1710 1288 11 +1711 1288 14 +1712 1288 15 +1713 1288 4 +1714 1289 18 +1715 1289 11 +1716 1289 6 +1717 1289 1 +1718 1289 5 +1719 1289 9 +1720 1289 10 +1721 1289 20 +1722 1289 2 +1723 1289 4 +1724 1289 13 +1725 1290 6 +1726 1290 1 +1727 1290 7 +1728 1290 3 +1729 1290 8 +1730 1290 2 +1731 1291 21 +1732 1291 11 +1733 1291 6 +1734 1291 14 +1735 1291 1 +1736 1291 3 +1737 1291 8 +1738 1291 10 +1739 1291 20 +1740 1291 13 +1741 1292 11 +1742 1292 14 +1743 1292 1 +1744 1292 3 +1745 1292 17 +1746 1292 8 +1747 1292 10 +1748 1293 21 +1749 1293 22 +1750 1293 18 +1751 1293 11 +1752 1293 19 +1753 1293 15 +1754 1293 5 +1755 1293 3 +1756 1293 17 +1757 1293 16 +1758 1293 10 +1759 1293 20 +1760 1293 4 +1761 1294 22 +1762 1294 5 +1763 1294 10 +1764 1294 20 +1765 1294 2 +1766 1294 13 +1767 1295 12 +1768 1295 6 +1769 1295 14 +1770 1295 7 +1771 1295 8 +1772 1295 9 +1773 1295 10 +1774 1295 2 +1775 1295 13 +1776 1296 11 +1777 1296 6 +1778 1296 1 +1779 1296 7 +1780 1296 17 +1781 1296 8 +1782 1296 9 +1783 1296 10 +1784 1296 20 +1785 1296 13 +1786 1297 17 +1787 1297 13 +1788 1298 3 +1789 1298 2 +1790 1299 18 +1791 1299 12 +1792 1299 1 +1793 1299 15 +1794 1299 5 +1795 1299 3 +1796 1299 17 +1797 1299 10 +1798 1299 13 +1799 1300 11 +1800 1300 6 +1801 1300 14 +1802 1300 1 +1803 1300 15 +1804 1300 5 +1805 1300 17 +1806 1300 8 +1807 1300 9 +1808 1300 10 +1809 1300 13 +1810 1301 11 +1811 1301 8 +1812 1301 2 +1813 1302 3 +1814 1303 18 +1815 1303 5 +1816 1303 3 +1817 1303 17 +1818 1303 13 +1819 1304 11 +1820 1304 6 +1821 1304 14 +1822 1304 1 +1823 1304 15 +1824 1304 7 +1825 1304 3 +1826 1304 8 +1827 1304 9 +1828 1304 10 +1829 1304 13 +1830 1305 6 +1831 1305 14 +1832 1305 17 +1833 1305 8 +1834 1305 10 +1835 1305 2 +1836 1305 13 +1837 1306 18 +1838 1306 13 +1839 1307 4 +1840 1308 7 +1841 1308 3 +1842 1308 8 +1843 1308 2 +1844 1308 4 +1845 1308 13 +1846 1309 18 +1847 1309 5 +1848 1309 4 +1849 1310 21 +1850 1310 22 +1851 1310 11 +1852 1310 6 +1853 1310 5 +1854 1310 3 +1855 1310 17 +1856 1310 16 +1857 1310 8 +1858 1310 9 +1859 1310 10 +1860 1310 20 +1861 1310 4 +1862 1311 21 +1863 1311 12 +1864 1311 6 +1865 1311 14 +1866 1311 15 +1867 1311 7 +1868 1311 17 +1869 1311 16 +1870 1311 8 +1871 1311 9 +1872 1311 10 +1873 1311 2 +1874 1311 4 +1875 1311 13 +1876 1312 11 +1877 1312 6 +1878 1312 1 +1879 1312 7 +1880 1312 3 +1881 1312 8 +1882 1312 9 +1883 1312 10 +1884 1312 2 +1885 1313 11 +1886 1313 6 +1887 1313 2 +1888 1314 21 +1889 1314 22 +1890 1314 18 +1891 1314 19 +1892 1314 6 +1893 1314 14 +1894 1314 1 +1895 1314 5 +1896 1314 7 +1897 1314 8 +1898 1314 9 +1899 1314 20 +1900 1314 2 +1901 1315 6 +1902 1315 1 +1903 1315 7 +1904 1315 8 +1905 1315 9 +1906 1315 10 +1907 1315 2 +1908 1316 1 +1909 1316 9 +1910 1316 2 +1911 1316 13 +1912 1317 11 +1913 1317 6 +1914 1317 14 +1915 1317 1 +1916 1317 7 +1917 1317 8 +1918 1317 9 +1919 1317 2 +1920 1318 11 +1921 1318 14 +1922 1318 1 +1923 1318 15 +1924 1318 7 +1925 1318 3 +1926 1318 8 +1927 1318 9 +1928 1318 10 +1929 1318 13 +1930 1319 18 +1931 1319 11 +1932 1319 19 +1933 1319 14 +1934 1319 15 +1935 1319 5 +1936 1319 17 +1937 1319 16 +1938 1319 20 +1939 1319 4 +1940 1320 6 +1941 1320 7 +1942 1320 8 +1943 1321 11 +1944 1321 6 +1945 1321 14 +1946 1321 1 +1947 1321 15 +1948 1321 7 +1949 1321 17 +1950 1321 16 +1951 1321 8 +1952 1321 9 +1953 1321 10 +1954 1321 13 +1955 1322 4 +1956 1323 21 +1957 1323 22 +1958 1323 18 +1959 1323 19 +1960 1323 5 +1961 1323 9 +1962 1323 10 +1963 1323 20 +1964 1323 2 +1965 1323 4 +1966 1324 3 +1967 1324 8 +1968 1324 4 +1969 1325 18 +1970 1325 11 +1971 1325 6 +1972 1325 14 +1973 1325 1 +1974 1325 15 +1975 1325 17 +1976 1325 8 +1977 1325 20 +1978 1325 2 +1979 1325 4 +1980 1326 21 +1981 1326 11 +1982 1326 19 +1983 1326 14 +1984 1326 1 +1985 1326 15 +1986 1326 7 +1987 1326 17 +1988 1326 8 +1989 1326 9 +1990 1326 13 +1991 1327 11 +1992 1327 6 +1993 1327 14 +1994 1327 15 +1995 1327 17 +1996 1327 16 +1997 1327 8 +1998 1327 10 +1999 1327 20 +2000 1327 4 +2001 1327 13 +2002 1328 11 +2003 1328 14 +2004 1328 17 +2005 1328 16 +2006 1328 8 +2007 1329 11 +2008 1329 1 +2009 1329 8 +2010 1329 2 +2011 1330 3 +2012 1331 6 +2013 1331 8 +2014 1332 21 +2015 1332 22 +2016 1332 11 +2017 1332 5 +2018 1332 13 +2019 1333 11 +2020 1333 3 +2021 1333 9 +2022 1334 21 +2023 1334 22 +2024 1334 18 +2025 1334 11 +2026 1334 3 +2027 1334 17 +2028 1334 9 +2029 1335 21 +2030 1335 22 +2031 1335 18 +2032 1335 11 +2033 1335 1 +2034 1335 15 +2035 1335 5 +2036 1335 17 +2037 1335 16 +2038 1335 10 +2039 1335 2 +2040 1335 4 +2041 1335 13 +2042 1336 3 +2043 1336 10 +2044 1336 2 +2045 1337 21 +2046 1337 18 +2047 1337 12 +2048 1337 11 +2049 1337 5 +2050 1337 3 +2051 1337 17 +2052 1337 8 +2053 1337 9 +2054 1337 13 +2055 1338 21 +2056 1338 22 +2057 1338 18 +2058 1338 12 +2059 1338 11 +2060 1338 19 +2061 1338 14 +2062 1338 5 +2063 1338 17 +2064 1338 16 +2065 1338 8 +2066 1338 20 +2067 1338 2 +2068 1339 14 +2069 1339 3 +2070 1339 8 +2071 1339 9 +2072 1339 10 +2073 1339 2 +2074 1339 13 +2075 1340 19 +2076 1340 15 +2077 1340 7 +2078 1340 9 +2079 1340 2 +2080 1341 11 +2081 1341 6 +2082 1341 14 +2083 1341 1 +2084 1341 3 +2085 1341 8 +2086 1341 2 +2087 1342 6 +2088 1342 15 +2089 1342 3 +2090 1342 8 +2091 1342 13 +2092 1343 18 +2093 1343 11 +2094 1343 3 +2095 1343 8 +2096 1343 10 +2097 1343 2 +2098 1343 13 +2099 1344 6 +2100 1344 1 +2101 1344 5 +2102 1344 7 +2103 1344 8 +2104 1344 2 +2105 1344 4 +2106 1345 22 +2107 1346 22 +2108 1346 18 +2109 1346 11 +2110 1346 6 +2111 1346 14 +2112 1346 15 +2113 1346 7 +2114 1346 8 +2115 1346 10 +2116 1346 20 +2117 1346 2 +2118 1346 13 +2119 1347 11 +2120 1347 5 +2121 1347 7 +2122 1347 4 +2123 1348 6 +2124 1348 1 +2125 1348 15 +2126 1348 7 +2127 1348 10 +2128 1349 22 +2129 1349 11 +2130 1349 6 +2131 1349 1 +2132 1349 5 +2133 1349 3 +2134 1349 8 +2135 1349 9 +2136 1349 10 +2137 1349 13 +2138 1350 22 +2139 1350 18 +2140 1350 11 +2141 1350 19 +2142 1350 1 +2143 1350 3 +2144 1350 9 +2145 1350 10 +2146 1350 4 +2147 1351 6 +2148 1352 6 +2149 1353 3 +2150 1353 8 +2151 1353 10 +2152 1353 13 +2153 1354 21 +2154 1354 22 +2155 1354 18 +2156 1354 11 +2157 1354 19 +2158 1354 1 +2159 1354 15 +2160 1354 5 +2161 1354 7 +2162 1354 3 +2163 1354 17 +2164 1354 8 +2165 1354 9 +2166 1354 10 +2167 1354 20 +2168 1354 13 +2169 1355 5 +2170 1355 3 +2171 1355 10 +2172 1355 2 +2173 1355 4 +2174 1356 11 +2175 1356 14 +2176 1356 7 +2177 1356 16 +2178 1356 8 +2179 1356 9 +2180 1357 11 +2181 1357 6 +2182 1357 14 +2183 1357 1 +2184 1357 15 +2185 1357 7 +2186 1357 16 +2187 1357 8 +2188 1357 10 +2189 1357 20 +2190 1357 13 +2191 1358 18 +2192 1358 19 +2193 1358 6 +2194 1358 1 +2195 1358 15 +2196 1358 3 +2197 1358 8 +2198 1358 9 +2199 1358 10 +2200 1358 13 +2201 1359 22 +2202 1359 18 +2203 1359 11 +2204 1359 19 +2205 1359 6 +2206 1359 15 +2207 1359 5 +2208 1359 3 +2209 1359 10 +2210 1359 4 +2211 1360 6 +2212 1360 7 +2213 1360 3 +2214 1361 11 +2215 1361 6 +2216 1361 1 +2217 1361 3 +2218 1361 8 +2219 1361 9 +2220 1361 10 +2221 1361 2 +2222 1362 5 +2223 1362 7 +2224 1362 3 +2225 1362 8 +2226 1362 4 +2227 1363 1 +2228 1364 21 +2229 1364 22 +2230 1364 18 +2231 1364 12 +2232 1364 19 +2233 1364 14 +2234 1364 1 +2235 1364 5 +2236 1364 3 +2237 1364 17 +2238 1364 20 +2239 1364 4 +2240 1364 13 +2241 1365 11 +2242 1365 3 +2243 1365 10 +2244 1365 13 +2245 1366 6 +2246 1366 1 +2247 1366 5 +2248 1366 7 +2249 1366 3 +2250 1366 8 +2251 1366 2 +2252 1366 4 +2253 1367 21 +2254 1367 19 +2255 1367 6 +2256 1367 14 +2257 1367 1 +2258 1367 15 +2259 1367 7 +2260 1367 17 +2261 1367 16 +2262 1367 9 +2263 1367 10 +2264 1367 2 +2265 1367 13 +2266 1368 11 +2267 1368 19 +2268 1368 15 +2269 1368 8 +2270 1368 4 +2271 1369 11 +2272 1369 6 +2273 1369 17 +2274 1369 8 +2275 1370 1 +2276 1370 17 +2277 1370 10 +2278 1371 22 +2279 1371 18 +2280 1371 11 +2281 1371 19 +2282 1371 14 +2283 1371 3 +2284 1371 8 +2285 1371 9 +2286 1371 2 +2287 1371 4 +2288 1371 13 +2289 1372 11 +2290 1372 10 +2291 1372 20 +2292 1372 13 +2293 1373 1 +2294 1373 3 +2295 1373 2 +2296 1373 4 +2297 1374 11 +2298 1374 6 +2299 1374 15 +2300 1374 10 +2301 1374 2 +2302 1375 12 +2303 1375 17 +2304 1375 2 +2305 1375 13 +2306 1376 17 +2307 1376 13 +2308 1377 21 +2309 1377 22 +2310 1377 11 +2311 1377 19 +2312 1377 6 +2313 1377 14 +2314 1377 1 +2315 1377 15 +2316 1377 7 +2317 1377 3 +2318 1377 8 +2319 1377 9 +2320 1377 20 +2321 1377 2 +2322 1378 22 +2323 1378 18 +2324 1378 11 +2325 1378 6 +2326 1378 1 +2327 1378 7 +2328 1378 3 +2329 1378 8 +2330 1378 9 +2331 1378 10 +2332 1378 20 +2333 1378 2 +2334 1378 13 +2335 1379 21 +2336 1379 22 +2337 1379 18 +2338 1379 19 +2339 1379 6 +2340 1379 5 +2341 1379 3 +2342 1379 4 +2343 1380 21 +2344 1380 11 +2345 1380 19 +2346 1380 6 +2347 1380 14 +2348 1380 1 +2349 1380 15 +2350 1380 5 +2351 1380 7 +2352 1380 3 +2353 1380 8 +2354 1380 10 +2355 1380 20 +2356 1380 4 +2357 1380 13 +2358 1381 21 +2359 1381 22 +2360 1381 18 +2361 1381 11 +2362 1381 19 +2363 1381 6 +2364 1381 14 +2365 1381 1 +2366 1381 5 +2367 1381 3 +2368 1381 17 +2369 1381 16 +2370 1381 8 +2371 1381 9 +2372 1381 10 +2373 1381 20 +2374 1381 13 +2375 1382 21 +2376 1382 22 +2377 1382 11 +2378 1382 19 +2379 1382 6 +2380 1382 5 +2381 1382 7 +2382 1382 8 +2383 1382 10 +2384 1382 20 +2385 1382 4 +2386 1382 13 +2387 1383 11 +2388 1383 6 +2389 1383 17 +2390 1383 8 +2391 1384 11 +2392 1384 6 +2393 1384 8 +2394 1384 10 +2395 1384 2 +2396 1385 19 +2397 1385 14 +2398 1385 1 +2399 1385 15 +2400 1385 7 +2401 1385 3 +2402 1385 8 +2403 1385 10 +2404 1385 20 +2405 1385 4 +2406 1385 13 +2407 1386 6 +2408 1386 1 +2409 1386 8 +2410 1386 9 +2411 1386 10 +2412 1387 11 +2413 1387 6 +2414 1387 1 +2415 1387 5 +2416 1387 9 +2417 1387 10 +2418 1387 20 +2419 1387 2 +2420 1388 22 +2421 1388 18 +2422 1388 11 +2423 1388 6 +2424 1388 14 +2425 1388 1 +2426 1388 5 +2427 1388 3 +2428 1388 8 +2429 1388 9 +2430 1388 4 +2431 1388 13 +2432 1389 7 +2433 1389 3 +2434 1389 16 +2435 1390 11 +2436 1390 6 +2437 1390 14 +2438 1390 1 +2439 1390 15 +2440 1390 7 +2441 1390 17 +2442 1390 9 +2443 1390 10 +2444 1390 2 +2445 1390 13 +2446 1391 19 +2447 1391 1 +2448 1391 5 +2449 1391 7 +2450 1391 17 +2451 1391 10 +2452 1392 21 +2453 1392 22 +2454 1392 12 +2455 1392 11 +2456 1392 6 +2457 1392 14 +2458 1392 1 +2459 1392 15 +2460 1392 7 +2461 1392 3 +2462 1392 8 +2463 1392 20 +2464 1392 2 +2465 1392 13 +2466 1393 5 +2467 1393 3 +2468 1393 17 +2469 1393 2 +2470 1393 13 +2471 1394 22 +2472 1394 11 +2473 1394 19 +2474 1394 17 +2475 1394 10 +2476 1394 20 +2477 1395 3 +2478 1395 8 +2479 1395 9 +2480 1395 2 +2481 1395 4 +2482 1395 13 +2483 1396 11 +2484 1396 15 +2485 1396 3 +2486 1396 17 +2487 1396 8 +2488 1396 9 +2489 1396 2 +2490 1397 21 +2491 1397 1 +2492 1397 15 +2493 1397 7 +2494 1397 3 +2495 1397 17 +2496 1397 8 +2497 1398 19 +2498 1398 5 +2499 1398 3 +2500 1398 9 +2501 1398 10 +2502 1398 20 +2503 1398 13 +2504 1399 12 +2505 1399 1 +2506 1399 7 +2507 1399 2 +2508 1400 22 +2509 1400 12 +2510 1400 19 +2511 1400 6 +2512 1400 14 +2513 1400 1 +2514 1400 15 +2515 1400 5 +2516 1400 7 +2517 1400 3 +2518 1400 17 +2519 1400 8 +2520 1400 10 +2521 1400 2 +2522 1400 13 +2523 1401 9 +2524 1401 10 +2525 1401 20 +2526 1401 2 +2527 1401 13 +2528 1402 11 +2529 1402 6 +2530 1402 7 +2531 1402 3 +2532 1402 16 +2533 1402 10 +2534 1402 2 +2535 1403 21 +2536 1403 19 +2537 1403 5 +2538 1403 7 +2539 1403 3 +2540 1404 1 +2541 1404 8 +2542 1404 2 +2543 1405 21 +2544 1405 11 +2545 1405 1 +2546 1405 15 +2547 1405 17 +2548 1405 8 +2549 1405 9 +2550 1405 10 +2551 1405 2 +2552 1405 13 +2553 1406 11 +2554 1406 6 +2555 1406 10 +2556 1407 11 +2557 1407 6 +2558 1408 22 +2559 1408 6 +2560 1408 9 +2561 1408 10 +2562 1409 11 +2563 1409 7 +2564 1409 3 +2565 1409 10 +2566 1409 2 +2567 1409 13 +2568 1410 12 +2569 1410 17 +2570 1410 2 +2571 1410 13 +2572 1411 6 +2573 1411 1 +2574 1411 2 +2575 1412 14 +2576 1412 1 +2577 1413 18 +2578 1413 11 +2579 1413 19 +2580 1413 3 +2581 1413 2 +2582 1413 4 +2583 1414 18 +2584 1414 19 +2585 1414 6 +2586 1414 3 +2587 1414 2 +2588 1415 21 +2589 1415 22 +2590 1415 18 +2591 1415 8 +2592 1415 10 +2593 1415 2 +2594 1416 1 +2595 1417 18 +2596 1417 19 +2597 1417 6 +2598 1417 1 +2599 1417 5 +2600 1417 3 +2601 1417 4 +2602 1418 11 +2603 1418 3 +2604 1418 17 +2605 1418 10 +2606 1418 20 +2607 1418 13 +2608 1419 21 +2609 1419 22 +2610 1419 18 +2611 1419 11 +2612 1419 19 +2613 1419 3 +2614 1419 17 +2615 1419 2 +2616 1419 4 +2617 1420 6 +2618 1421 21 +2619 1421 14 +2620 1421 7 +2621 1421 10 +2622 1422 3 +2623 1422 2 +2624 1423 21 +2625 1423 6 +2626 1423 7 +2627 1423 8 +2628 1423 9 +2629 1423 10 +2630 1423 2 +2631 1424 14 +2632 1424 1 +2633 1424 7 +2634 1424 16 +2635 1424 8 +2636 1425 21 +2637 1425 22 +2638 1425 18 +2639 1425 11 +2640 1425 15 +2641 1425 3 +2642 1425 17 +2643 1425 8 +2644 1425 9 +2645 1425 10 +2646 1425 2 +2647 1426 21 +2648 1426 22 +2649 1426 18 +2650 1426 19 +2651 1426 5 +2652 1427 1 +2653 1428 17 +2654 1428 4 +2655 1428 13 +2656 1429 11 +2657 1429 6 +2658 1429 3 +2659 1429 8 +2660 1429 9 +2661 1429 10 +2662 1430 21 +2663 1430 11 +2664 1430 6 +2665 1430 1 +2666 1430 15 +2667 1430 5 +2668 1430 3 +2669 1430 17 +2670 1430 10 +2671 1430 13 +2672 1431 11 +2673 1431 8 +2674 1431 9 +2675 1432 21 +2676 1432 12 +2677 1432 6 +2678 1432 3 +2679 1432 10 +2680 1433 12 +2681 1433 14 +2682 1433 1 +2683 1433 3 +2684 1433 17 +2685 1433 8 +2686 1433 2 +2687 1433 13 +2688 1434 22 +2689 1434 18 +2690 1434 19 +2691 1434 5 +2692 1434 3 +2693 1434 9 +2694 1434 10 +2695 1434 4 +2696 1434 13 +2697 1435 21 +2698 1435 22 +2699 1435 18 +2700 1435 11 +2701 1435 6 +2702 1435 7 +2703 1435 3 +2704 1435 8 +2705 1435 9 +2706 1435 10 +2707 1435 20 +2708 1435 4 +2709 1435 13 +2710 1436 6 +2711 1436 1 +2712 1436 5 +2713 1436 3 +2714 1436 9 +2715 1436 10 +2716 1436 13 +2717 1437 6 +2718 1437 1 +2719 1437 3 +2720 1437 9 +2721 1437 10 +2722 1438 5 +2723 1438 3 +2724 1438 9 +2725 1438 10 +2726 1438 4 +2727 1438 13 +2728 1439 6 +2729 1439 1 +2730 1439 3 +2731 1439 9 +2732 1439 10 +2733 1440 6 +2734 1441 22 +2735 1441 18 +2736 1441 6 +2737 1441 15 +2738 1441 4 +2739 1442 1 +2740 1442 15 +2741 1442 8 +2742 1442 10 +2743 1442 2 +2744 1443 11 +2745 1443 14 +2746 1443 15 +2747 1444 21 +2748 1444 22 +2749 1444 18 +2750 1444 11 +2751 1444 14 +2752 1444 1 +2753 1444 15 +2754 1445 1 +2755 1445 10 +2756 1446 11 +2757 1446 14 +2758 1446 1 +2759 1446 7 +2760 1446 17 +2761 1446 8 +2762 1446 10 +2763 1446 13 +2764 1447 21 +2765 1447 22 +2766 1447 18 +2767 1447 12 +2768 1447 11 +2769 1447 19 +2770 1447 6 +2771 1447 14 +2772 1447 1 +2773 1447 15 +2774 1447 5 +2775 1447 17 +2776 1447 16 +2777 1447 8 +2778 1447 9 +2779 1447 10 +2780 1447 20 +2781 1447 2 +2782 1447 13 +2783 1448 11 +2784 1448 6 +2785 1448 14 +2786 1448 1 +2787 1448 7 +2788 1448 16 +2789 1448 8 +2790 1448 9 +2791 1449 22 +2792 1449 18 +2793 1449 11 +2794 1449 6 +2795 1449 8 +2796 1449 10 +2797 1449 4 +2798 1450 22 +2799 1450 18 +2800 1450 20 +2801 1451 6 +2802 1451 14 +2803 1451 10 +2804 1451 2 +2805 1452 11 +2806 1452 6 +2807 1452 14 +2808 1452 1 +2809 1452 15 +2810 1452 5 +2811 1452 7 +2812 1452 17 +2813 1452 9 +2814 1452 10 +2815 1452 2 +2816 1452 13 +2817 1453 22 +2818 1453 11 +2819 1453 10 +2820 1453 20 +2821 1453 13 +2822 1454 18 +2823 1454 6 +2824 1454 1 +2825 1454 5 +2826 1454 10 +2827 1454 2 +2828 1454 4 +2829 1455 11 +2830 1455 6 +2831 1455 1 +2832 1455 7 +2833 1455 10 +2834 1456 5 +2835 1457 11 +2836 1457 6 +2837 1457 14 +2838 1457 1 +2839 1457 15 +2840 1457 8 +2841 1457 10 +2842 1458 8 +2843 1459 6 +2844 1459 15 +2845 1459 8 +2846 1459 9 +2847 1459 13 +2848 1460 2 +2849 1461 11 +2850 1461 3 +2851 1461 17 +2852 1462 6 +2853 1462 14 +2854 1462 8 +2855 1462 2 +2856 1463 21 +2857 1463 11 +2858 1463 6 +2859 1463 1 +2860 1463 7 +2861 1463 17 +2862 1463 16 +2863 1463 9 +2864 1463 20 +2865 1463 13 +2866 1464 21 +2867 1464 11 +2868 1464 6 +2869 1464 1 +2870 1464 7 +2871 1464 10 +2872 1464 2 +2873 1464 13 +2874 1465 21 +2875 1465 6 +2876 1465 5 +2877 1465 8 +2878 1466 5 +2879 1466 3 +2880 1467 21 +2881 1467 18 +2882 1467 19 +2883 1467 1 +2884 1467 15 +2885 1467 3 +2886 1467 20 +2887 1467 2 +2888 1468 22 +2889 1468 12 +2890 1468 11 +2891 1468 19 +2892 1468 14 +2893 1468 1 +2894 1468 15 +2895 1468 7 +2896 1468 3 +2897 1468 17 +2898 1468 8 +2899 1468 10 +2900 1468 20 +2901 1468 2 +2902 1468 13 +2903 1469 11 +2904 1469 1 +2905 1469 8 +2906 1469 10 +2907 1469 2 +2908 1470 21 +2909 1470 11 +2910 1470 6 +2911 1470 1 +2912 1470 15 +2913 1470 10 +2914 1470 2 +2915 1471 11 +2916 1471 6 +2917 1471 14 +2918 1471 1 +2919 1471 15 +2920 1471 7 +2921 1471 9 +2922 1471 10 +2923 1472 11 +2924 1472 6 +2925 1472 14 +2926 1472 1 +2927 1472 15 +2928 1472 7 +2929 1472 8 +2930 1472 13 +2931 1473 6 +2932 1473 7 +2933 1473 3 +2934 1473 17 +2935 1473 8 +2936 1473 9 +2937 1473 2 +2938 1473 4 +2939 1474 6 +2940 1474 3 +2941 1474 8 +2942 1474 2 +2943 1475 21 +2944 1475 18 +2945 1475 5 +2946 1475 3 +2947 1475 8 +2948 1475 2 +2949 1476 21 +2950 1476 22 +2951 1476 12 +2952 1476 11 +2953 1476 19 +2954 1476 14 +2955 1476 1 +2956 1476 7 +2957 1476 17 +2958 1476 8 +2959 1476 10 +2960 1476 2 +2961 1476 13 +2962 1477 11 +2963 1477 1 +2964 1477 8 +2965 1477 13 +2966 1478 11 +2967 1478 19 +2968 1478 6 +2969 1478 14 +2970 1478 15 +2971 1478 7 +2972 1478 3 +2973 1478 8 +2974 1479 6 +2975 1479 10 +2976 1479 2 +2977 1480 21 +2978 1480 22 +2979 1480 1 +2980 1480 7 +2981 1480 16 +2982 1480 13 +2983 1481 22 +2984 1481 18 +2985 1481 1 +2986 1481 15 +2987 1481 5 +2988 1481 3 +2989 1481 8 +2990 1481 9 +2991 1481 10 +2992 1481 13 +2993 1482 13 +2994 1483 11 +2995 1483 6 +2996 1483 1 +2997 1483 15 +2998 1483 7 +2999 1483 16 +3000 1483 8 +3001 1483 10 +3002 1483 2 +3003 1484 11 +3004 1484 14 +3005 1484 15 +3006 1484 7 +3007 1484 16 +3008 1484 8 +3009 1484 9 +3010 1484 10 +3011 1484 2 +3012 1484 13 +3013 1485 5 +3014 1485 3 +3015 1485 9 +3016 1485 10 +3017 1486 11 +3018 1486 6 +3019 1486 14 +3020 1486 1 +3021 1486 5 +3022 1486 7 +3023 1486 3 +3024 1486 8 +3025 1486 9 +3026 1486 10 +3027 1486 4 +3028 1486 13 +3029 1487 16 +3030 1488 6 +3031 1488 1 +3032 1488 5 +3033 1488 3 +3034 1488 8 +3035 1488 10 +3036 1488 4 +3037 1488 13 +3038 1489 11 +3039 1489 6 +3040 1489 14 +3041 1489 1 +3042 1489 15 +3043 1489 7 +3044 1489 16 +3045 1489 8 +3046 1489 9 +3047 1489 10 +3048 1489 13 +3049 1490 21 +3050 1490 22 +3051 1490 18 +3052 1490 19 +3053 1490 6 +3054 1490 15 +3055 1490 5 +3056 1490 7 +3057 1490 3 +3058 1490 17 +3059 1490 8 +3060 1490 9 +3061 1490 2 +3062 1490 13 +3063 1491 6 +3064 1491 7 +3065 1491 9 +3066 1491 10 +3067 1491 13 +3068 1492 12 +3069 1492 19 +3070 1492 7 +3071 1492 3 +3072 1492 8 +3073 1492 9 +3074 1492 4 +3075 1493 6 +3076 1493 7 +3077 1493 2 +3078 1494 21 +3079 1494 18 +3080 1494 19 +3081 1494 6 +3082 1494 1 +3083 1494 7 +3084 1494 9 +3085 1494 10 +3086 1494 2 +3087 1494 4 +3088 1494 13 +3089 1495 6 +3090 1495 1 +3091 1495 9 +3092 1495 2 +3093 1496 22 +3094 1496 18 +3095 1496 11 +3096 1496 15 +3097 1496 4 +3098 1497 2 +3099 1497 13 +3100 1498 11 +3101 1498 15 +3102 1498 3 +3103 1498 16 +3104 1498 8 +3105 1498 2 +3106 1500 1 +3107 1500 10 +3108 1500 13 +3109 1501 6 +3110 1501 1 +3111 1502 11 +3112 1502 14 +3113 1502 1 +3114 1502 7 +3115 1502 8 +3116 1502 9 +3117 1502 10 +3118 1503 22 +3119 1503 18 +3120 1503 19 +3121 1503 1 +3122 1503 15 +3123 1503 10 +3124 1504 12 +3125 1504 11 +3126 1504 6 +3127 1504 14 +3128 1504 1 +3129 1504 15 +3130 1504 7 +3131 1504 3 +3132 1504 17 +3133 1504 8 +3134 1504 9 +3135 1504 10 +3136 1504 2 +3137 1505 21 +3138 1505 11 +3139 1505 19 +3140 1505 6 +3141 1505 14 +3142 1505 1 +3143 1505 15 +3144 1505 5 +3145 1505 7 +3146 1505 3 +3147 1505 8 +3148 1505 9 +3149 1505 10 +3150 1505 2 +3151 1505 13 +3152 1506 10 +3153 1506 13 +3154 1507 21 +3155 1507 12 +3156 1507 11 +3157 1507 6 +3158 1507 15 +3159 1507 9 +3160 1508 6 +3161 1508 3 +3162 1508 8 +3163 1508 10 +3164 1509 11 +3165 1509 6 +3166 1509 7 +3167 1509 17 +3168 1509 16 +3169 1509 9 +3170 1509 2 +3171 1509 4 +3172 1510 21 +3173 1510 22 +3174 1510 18 +3175 1510 12 +3176 1510 11 +3177 1510 19 +3178 1510 6 +3179 1510 14 +3180 1510 1 +3181 1510 15 +3182 1510 5 +3183 1510 7 +3184 1510 3 +3185 1510 17 +3186 1510 16 +3187 1510 8 +3188 1510 9 +3189 1510 10 +3190 1510 2 +3191 1510 4 +3192 1510 13 +3193 1511 3 +3194 1511 8 +3195 1511 2 +3196 1512 21 +3197 1512 22 +3198 1512 18 +3199 1512 12 +3200 1512 5 +3201 1512 3 +3202 1512 8 +3203 1512 4 +3204 1513 21 +3205 1513 22 +3206 1513 18 +3207 1513 12 +3208 1513 19 +3209 1513 5 +3210 1513 16 +3211 1513 8 +3212 1514 22 +3213 1514 18 +3214 1515 11 +3215 1515 6 +3216 1515 17 +3217 1516 21 +3218 1516 22 +3219 1516 18 +3220 1516 11 +3221 1516 19 +3222 1516 6 +3223 1516 14 +3224 1516 1 +3225 1516 15 +3226 1516 7 +3227 1516 17 +3228 1516 16 +3229 1516 8 +3230 1516 9 +3231 1516 10 +3232 1517 22 +3233 1517 18 +3234 1517 11 +3235 1517 19 +3236 1517 1 +3237 1517 5 +3238 1517 3 +3239 1517 8 +3240 1517 9 +3241 1517 10 +3242 1517 13 +3243 1518 7 +3244 1518 10 +3245 1518 2 +3246 1518 13 +3247 1519 11 +3248 1519 19 +3249 1519 6 +3250 1519 9 +3251 1519 10 +3252 1519 13 +3253 1520 18 +3254 1520 15 +3255 1520 5 +3256 1520 2 +3257 1520 4 +3258 1520 13 +3259 1521 21 +3260 1521 11 +3261 1521 6 +3262 1521 14 +3263 1521 1 +3264 1521 15 +3265 1521 7 +3266 1521 17 +3267 1521 16 +3268 1521 8 +3269 1521 9 +3270 1521 10 +3271 1521 13 +3272 1522 18 +3273 1522 17 +3274 1523 1 +3275 1523 10 +3276 1524 6 +3277 1524 1 +3278 1524 5 +3279 1524 3 +3280 1524 8 +3281 1525 22 +3282 1525 18 +3283 1525 19 +3284 1525 5 +3285 1526 18 +3286 1526 19 +3287 1526 1 +3288 1526 15 +3289 1526 5 +3290 1526 4 +3291 1527 13 +3292 1529 11 +3293 1529 6 +3294 1529 1 +3295 1529 15 +3296 1529 17 +3297 1529 8 +3298 1529 9 +3299 1529 2 +3300 1529 13 +3301 1530 11 +3302 1530 6 +3303 1530 1 +3304 1530 9 +3305 1530 10 +3306 1530 2 +3307 1531 22 +3308 1531 18 +3309 1531 11 +3310 1531 19 +3311 1531 5 +3312 1531 17 +3313 1531 8 +3314 1531 4 +3315 1532 11 +3316 1532 1 +3317 1533 19 +3318 1533 6 +3319 1533 1 +3320 1533 5 +3321 1533 3 +3322 1533 10 +3323 1533 4 +3324 1533 13 +3325 1534 22 +3326 1534 19 +3327 1534 3 +3328 1534 17 +3329 1534 9 +3330 1534 2 +3331 1535 11 +3332 1535 6 +3333 1535 1 +3334 1535 15 +3335 1535 17 +3336 1535 8 +3337 1535 9 +3338 1535 10 +3339 1535 2 +3340 1536 22 +3341 1536 18 +3342 1536 12 +3343 1536 11 +3344 1536 19 +3345 1536 14 +3346 1536 3 +3347 1536 17 +3348 1536 8 +3349 1536 10 +3350 1536 4 +3351 1537 6 +3352 1537 3 +3353 1537 2 +3354 1538 18 +3355 1538 19 +3356 1538 5 +3357 1539 22 +3358 1539 18 +3359 1539 11 +3360 1539 19 +3361 1539 2 +3362 1539 4 +3363 1539 13 +3364 1540 6 +3365 1540 1 +3366 1540 3 +3367 1540 2 +3368 1540 4 +3369 1541 6 +3370 1541 3 +3371 1541 10 +3372 1541 13 +3373 1542 21 +3374 1542 11 +3375 1542 19 +3376 1542 6 +3377 1542 14 +3378 1542 15 +3379 1542 16 +3380 1542 8 +3381 1542 4 +3382 1543 3 +3383 1543 16 +3384 1543 10 +3385 1544 11 +3386 1544 1 +3387 1544 10 +3388 1544 2 +3389 1545 13 +3390 1546 1 +3391 1546 5 +3392 1546 3 +3393 1547 21 +3394 1547 11 +3395 1547 1 +3396 1547 7 +3397 1547 3 +3398 1547 17 +3399 1547 8 +3400 1547 9 +3401 1547 10 +3402 1547 2 +3403 1547 13 +3404 1548 11 +3405 1548 15 +3406 1548 5 +3407 1548 3 +3408 1548 10 +3409 1548 13 +3410 1549 4 +3411 1550 11 +3412 1550 17 +3413 1551 3 +3414 1552 11 +3415 1552 6 +3416 1552 7 +3417 1552 3 +3418 1552 10 +3419 1552 4 +3420 1552 13 +3421 1553 11 +3422 1553 6 +3423 1553 1 +3424 1553 10 +3425 1553 2 +3426 1554 1 +3427 1555 6 +3428 1555 1 +3429 1556 11 +3430 1556 3 +3431 1556 9 +3432 1556 4 +3433 1557 6 +3434 1557 9 +3435 1557 10 +3436 1557 2 +3437 1557 13 +3438 1558 6 +3439 1558 14 +3440 1558 7 +3441 1558 10 +3442 1559 12 +3443 1559 1 +3444 1559 3 +3445 1559 8 +3446 1559 10 +3447 1559 4 +3448 1560 11 +3449 1560 6 +3450 1560 14 +3451 1560 15 +3452 1560 5 +3453 1560 7 +3454 1560 17 +3455 1560 8 +3456 1560 9 +3457 1560 2 +3458 1561 22 +3459 1561 18 +3460 1561 19 +3461 1561 14 +3462 1561 5 +3463 1561 3 +3464 1561 4 +3465 1561 13 +3466 1562 22 +3467 1562 18 +3468 1562 11 +3469 1562 6 +3470 1562 14 +3471 1562 1 +3472 1562 15 +3473 1562 5 +3474 1562 3 +3475 1562 17 +3476 1562 8 +3477 1562 9 +3478 1562 10 +3479 1562 13 +3480 1563 1 +3481 1563 3 +3482 1563 8 +3483 1563 2 +3484 1564 5 +3485 1564 3 +3486 1564 10 +3487 1564 4 +3488 1564 13 +3489 1565 11 +3490 1565 17 +3491 1565 8 +3492 1565 9 +3493 1565 13 +3494 1566 11 +3495 1566 6 +3496 1566 7 +3497 1566 8 +3498 1567 21 +3499 1567 1 +3500 1567 15 +3501 1567 17 +3502 1567 16 +3503 1567 8 +3504 1567 10 +3505 1568 11 +3506 1568 14 +3507 1568 1 +3508 1568 8 +3509 1568 10 +3510 1569 3 +3511 1570 11 +3512 1570 6 +3513 1570 14 +3514 1570 15 +3515 1570 5 +3516 1570 7 +3517 1570 8 +3518 1570 9 +3519 1570 2 +3520 1570 4 +3521 1571 13 +3522 1572 11 +3523 1572 6 +3524 1572 14 +3525 1572 7 +3526 1572 16 +3527 1572 8 +3528 1572 9 +3529 1572 10 +3530 1572 2 +3531 1572 13 +3532 1573 21 +3533 1573 11 +3534 1573 15 +3535 1573 17 +3536 1574 6 +3537 1574 1 +3538 1574 10 +3539 1575 5 +3540 1575 7 +3541 1575 3 +3542 1576 21 +3543 1576 22 +3544 1576 18 +3545 1576 11 +3546 1576 19 +3547 1576 1 +3548 1576 5 +3549 1576 3 +3550 1576 17 +3551 1576 16 +3552 1576 9 +3553 1576 10 +3554 1576 2 +3555 1576 4 +3556 1577 11 +3557 1577 19 +3558 1577 6 +3559 1577 10 +3560 1577 13 +3561 1578 6 +3562 1578 1 +3563 1578 7 +3564 1578 3 +3565 1578 8 +3566 1578 2 +3567 1579 11 +3568 1579 6 +3569 1579 1 +3570 1579 7 +3571 1579 3 +3572 1579 17 +3573 1579 8 +3574 1579 9 +3575 1579 10 +3576 1579 2 +3577 1580 11 +3578 1580 6 +3579 1580 1 +3580 1580 15 +3581 1580 7 +3582 1580 17 +3583 1580 16 +3584 1580 10 +3585 1580 2 +3586 1581 11 +3587 1581 6 +3588 1581 8 +3589 1582 6 +3590 1582 3 +3591 1582 9 +3592 1583 21 +3593 1583 22 +3594 1583 18 +3595 1583 11 +3596 1583 19 +3597 1583 6 +3598 1583 14 +3599 1583 1 +3600 1583 15 +3601 1583 5 +3602 1583 7 +3603 1583 3 +3604 1583 9 +3605 1583 10 +3606 1583 2 +3607 1583 4 +3608 1583 13 +3609 1584 11 +3610 1584 6 +3611 1584 14 +3612 1584 15 +3613 1584 7 +3614 1584 3 +3615 1584 17 +3616 1584 16 +3617 1584 8 +3618 1584 10 +3619 1584 13 +3620 1585 6 +3621 1585 14 +3622 1585 1 +3623 1585 9 +3624 1585 10 +3625 1585 13 +3626 1586 16 +3627 1587 12 +3628 1587 14 +3629 1587 7 +3630 1587 17 +3631 1587 2 +3632 1587 13 +3633 1588 12 +3634 1588 11 +3635 1588 19 +3636 1588 6 +3637 1588 7 +3638 1588 3 +3639 1588 8 +3640 1588 9 +3641 1588 2 +3642 1588 4 +3643 1588 13 +3644 1589 22 +3645 1589 11 +3646 1589 10 +3647 1589 4 +3648 1589 13 +3649 1590 11 +3650 1590 6 +3651 1590 14 +3652 1590 1 +3653 1590 7 +3654 1590 9 +3655 1590 10 +3656 1591 21 +3657 1591 22 +3658 1591 18 +3659 1591 11 +3660 1591 19 +3661 1591 14 +3662 1591 1 +3663 1591 15 +3664 1591 3 +3665 1591 16 +3666 1591 10 +3667 1591 4 +3668 1592 21 +3669 1592 22 +3670 1592 12 +3671 1592 11 +3672 1592 19 +3673 1592 14 +3674 1592 1 +3675 1592 5 +3676 1592 3 +3677 1592 16 +3678 1592 8 +3679 1592 10 +3680 1592 13 +3681 1593 21 +3682 1593 22 +3683 1593 18 +3684 1593 11 +3685 1593 19 +3686 1593 6 +3687 1593 1 +3688 1593 15 +3689 1593 7 +3690 1593 3 +3691 1593 17 +3692 1593 9 +3693 1593 10 +3694 1593 2 +3695 1593 13 +3696 1594 11 +3697 1594 1 +3698 1594 15 +3699 1594 5 +3700 1594 3 +3701 1594 17 +3702 1594 8 +3703 1594 9 +3704 1594 10 +3705 1594 2 +3706 1594 13 +3707 1595 21 +3708 1595 22 +3709 1595 18 +3710 1595 19 +3711 1595 5 +3712 1595 7 +3713 1595 3 +3714 1595 17 +3715 1595 16 +3716 1595 9 +3717 1595 2 +3718 1595 4 +3719 1595 13 +3720 1596 21 +3721 1596 18 +3722 1596 5 +3723 1596 3 +3724 1596 13 +3725 1597 18 +3726 1598 18 +3727 1599 2 +3728 1602 12 +3729 1603 22 +3730 1604 3 +3731 1604 16 +3732 1605 22 +3733 1607 1 +3734 1607 2 +3735 1607 4 +3736 1607 6 +3737 1607 7 +3738 1607 8 +3739 1607 9 +3740 1607 10 +3741 1607 11 +3742 1607 12 +3743 1607 15 +3744 1607 16 +3745 1607 17 +3746 1607 21 +3747 1607 22 +3753 1609 22 +3754 1610 18 +3755 1611 18 +3756 1612 16 +3757 1612 17 +3758 1613 5 +3759 1613 6 +3760 1613 7 +3761 1613 8 +3762 1613 9 +3763 1613 10 +3764 1613 11 +3765 1613 13 +3766 1613 14 +3767 1613 15 +3768 1614 4 +3769 1614 5 +3770 1614 6 +3771 1614 7 +3772 1614 8 +3773 1614 9 +3774 1614 13 +3775 1614 14 +3776 1614 15 +3783 1616 3 +3784 1616 6 +3785 1616 8 +3786 1616 9 +3787 1616 10 +3788 1616 11 +3789 1616 15 +3790 1617 2 +3791 1617 4 +3792 1617 7 +3793 1617 18 +3794 1617 19 +3795 1617 21 +3796 1617 22 +3797 1618 1 +3798 1618 2 +3799 1618 6 +3800 1618 7 +3801 1618 8 +3802 1618 9 +3803 1618 10 +3804 1618 11 +3805 1618 14 +3806 1618 16 +3807 1618 17 +3812 1620 2 +3813 1620 8 +3814 1620 11 +3815 1621 18 +3816 1622 11 +3817 1619 2 +3818 1619 6 +3819 1619 8 +3820 1619 12 +3821 1608 1 +3822 1608 4 +3823 1608 6 +3824 1608 10 +3825 1608 11 +3826 1623 2 +3827 1623 8 +3828 1623 12 +3829 1624 18 +3830 1625 3 +3831 1626 22 +3832 1627 18 +3840 1629 22 +3841 1630 2 +3842 1628 7 +3843 1628 8 +3844 1628 10 +3845 1628 11 +3846 1628 14 +3847 1628 16 +3848 1628 21 +3849 1631 22 +3850 1632 13 +3851 1633 22 +3852 1615 6 +3853 1615 8 +3854 1615 16 +3855 1634 1 +3856 1635 2 +3857 1635 12 +3858 1636 2 +3859 1636 3 +3860 1636 8 +3861 1636 16 +3862 1637 22 +3863 1638 22 +\. + + +-- +-- Data for Name: profile_language; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.profile_language (id, proficiency, profile_id, language_id, purpose) FROM stdin; +1 advanced 1 1833 general +2 advanced 1 1540 general +3 advanced 2 1833 general +4 advanced 2 1540 general +5 advanced 2 1910 general +6 advanced 2 5677 general +7 advanced 3 345 general +8 advanced 3 5392 general +9 advanced 3 1833 general +10 advanced 3 1910 general +11 advanced 3 1954 general +12 advanced 3 1540 general +13 advanced 3 6644 general +14 advanced 4 345 general +15 advanced 4 1540 general +16 advanced 4 1910 general +17 advanced 4 5677 general +18 advanced 6 1954 general +19 advanced 6 5444 general +20 advanced 7 1540 general +21 advanced 8 1540 general +22 advanced 8 1910 general +23 advanced 8 6644 general +24 advanced 10 1833 general +25 advanced 10 1540 general +26 advanced 10 7922 general +27 advanced 11 345 general +28 advanced 11 5392 general +29 advanced 11 1910 general +30 advanced 11 6644 general +31 advanced 12 1833 general +32 advanced 12 1540 general +33 advanced 12 5677 general +34 advanced 12 6644 general +35 advanced 12 6769 general +36 advanced 13 1540 general +37 advanced 14 345 general +38 advanced 14 1833 general +39 advanced 14 1540 general +40 advanced 14 5677 general +41 advanced 14 6644 general +42 advanced 17 2854 general +43 advanced 17 1540 general +44 advanced 17 6644 general +45 advanced 18 1833 general +46 advanced 18 1540 general +47 advanced 18 7922 general +48 advanced 20 2854 general +49 advanced 20 1910 general +50 advanced 20 6059 general +51 advanced 20 6644 general +52 advanced 21 1540 general +53 advanced 22 345 general +54 advanced 22 1540 general +55 advanced 22 7922 general +56 advanced 22 1910 general +57 advanced 24 1833 general +58 advanced 24 1540 general +59 advanced 24 6644 general +60 advanced 25 5641 general +61 advanced 26 345 general +62 advanced 26 2854 general +63 advanced 26 1910 general +64 advanced 26 5677 general +65 advanced 26 6011 general +66 advanced 27 1540 general +67 advanced 27 6644 general +68 advanced 28 7922 general +69 advanced 29 1833 general +70 advanced 29 1954 general +71 advanced 29 1540 general +72 advanced 30 1540 general +73 advanced 30 1910 general +74 advanced 31 345 general +75 advanced 31 2854 general +76 advanced 31 1540 general +77 advanced 31 1910 general +78 advanced 31 5677 general +79 advanced 31 6644 general +80 advanced 32 345 general +81 advanced 32 1833 general +82 advanced 32 2854 general +83 advanced 32 1540 general +84 advanced 32 1910 general +85 advanced 32 5677 general +86 advanced 33 345 general +87 advanced 33 1954 general +88 advanced 33 1540 general +89 advanced 33 1910 general +90 advanced 33 5677 general +91 advanced 34 1540 general +92 advanced 35 345 general +93 advanced 35 1833 general +94 advanced 35 1540 general +95 advanced 35 7922 general +96 advanced 35 1910 general +97 advanced 35 6644 general +98 advanced 36 345 general +99 advanced 36 1540 general +100 advanced 36 1910 general +101 advanced 36 5677 general +102 advanced 36 6644 general +103 advanced 37 1540 general +104 advanced 38 345 general +105 advanced 38 1540 general +106 advanced 39 345 general +107 advanced 39 1540 general +108 advanced 39 1910 general +109 advanced 39 5677 general +110 advanced 40 1833 general +111 advanced 40 1540 general +112 advanced 41 1954 general +113 advanced 41 1540 general +114 advanced 42 1540 general +115 advanced 43 1833 general +116 advanced 43 1540 general +117 advanced 44 1540 general +118 advanced 45 1540 general +119 advanced 46 7922 general +120 advanced 47 1833 general +121 advanced 47 1540 general +122 advanced 47 1910 general +123 advanced 48 1833 general +124 advanced 48 1954 general +125 advanced 48 1540 general +126 advanced 49 345 general +127 advanced 49 1833 general +128 advanced 49 2854 general +129 advanced 49 1540 general +130 advanced 49 1910 general +131 advanced 49 6644 general +132 advanced 50 1833 general +133 advanced 50 1540 general +134 advanced 51 345 general +135 advanced 51 1833 general +136 advanced 51 1540 general +137 advanced 51 1910 general +138 advanced 51 6644 general +139 advanced 52 345 general +140 advanced 52 1833 general +141 advanced 52 1540 general +142 advanced 52 1910 general +143 advanced 52 5677 general +144 advanced 52 6644 general +145 advanced 53 1540 general +146 advanced 54 345 general +147 advanced 54 1833 general +148 advanced 54 1540 general +149 advanced 54 1910 general +150 advanced 54 6644 general +151 advanced 55 1833 general +152 advanced 55 1540 general +153 advanced 56 1833 general +154 advanced 56 1540 general +155 advanced 57 1540 general +156 advanced 58 1833 general +157 advanced 58 1540 general +158 advanced 58 5677 general +159 advanced 59 345 general +160 advanced 59 1540 general +161 advanced 59 7922 general +162 advanced 60 2854 general +163 advanced 60 1540 general +164 advanced 60 5677 general +165 advanced 61 1954 general +166 advanced 61 1540 general +167 advanced 62 1833 general +168 advanced 62 1540 general +169 advanced 62 3348 general +170 advanced 62 6644 general +171 advanced 63 1540 general +172 advanced 63 5677 general +173 advanced 64 1833 general +174 advanced 64 1540 general +175 advanced 65 1540 general +176 advanced 65 1910 general +177 advanced 66 1833 general +178 advanced 66 1540 general +179 advanced 66 5677 general +180 advanced 67 1540 general +181 advanced 67 5677 general +182 advanced 68 1540 general +183 advanced 68 6644 general +184 advanced 69 1833 general +185 advanced 69 1540 general +186 advanced 69 1910 general +187 advanced 70 1833 general +188 advanced 70 1540 general +189 advanced 71 1833 general +190 advanced 71 1540 general +191 advanced 72 1833 general +192 advanced 72 1540 general +193 advanced 73 1540 general +194 advanced 73 5677 general +195 advanced 74 1540 general +196 advanced 74 5677 general +197 advanced 75 1540 general +198 advanced 75 5677 general +199 advanced 76 1540 general +200 advanced 76 5677 general +201 advanced 77 345 general +202 advanced 77 1833 general +203 advanced 77 1540 general +204 advanced 77 6644 general +205 advanced 78 3348 general +206 advanced 78 6644 general +207 advanced 79 345 general +208 advanced 79 1540 general +209 advanced 79 1910 general +210 advanced 80 345 general +211 advanced 80 1540 general +212 advanced 80 7922 general +213 advanced 80 1910 general +214 advanced 80 5677 general +215 advanced 80 6644 general +216 advanced 81 345 general +217 advanced 81 1833 general +218 advanced 81 1540 general +219 advanced 81 7922 general +220 advanced 81 5677 general +221 advanced 82 1910 general +222 advanced 83 5392 general +223 advanced 83 1910 general +224 advanced 84 1540 general +225 advanced 84 5677 general +226 advanced 85 6894 general +227 advanced 86 345 general +228 advanced 86 1540 general +229 advanced 86 6644 general +230 advanced 89 345 general +231 advanced 89 1833 general +232 advanced 89 1540 general +233 advanced 89 7922 general +234 advanced 89 1910 general +235 advanced 89 5677 general +236 advanced 89 6769 general +237 advanced 90 1540 general +238 advanced 90 5677 general +239 advanced 91 1540 general +240 advanced 91 5677 general +241 advanced 92 1540 general +242 advanced 92 5677 general +243 advanced 93 345 general +244 advanced 93 1833 general +245 advanced 93 1540 general +246 advanced 93 1910 general +247 advanced 93 5677 general +248 advanced 94 1833 general +249 advanced 94 1540 general +250 advanced 95 345 general +251 advanced 95 1540 general +252 advanced 95 1910 general +253 advanced 95 5677 general +254 advanced 96 345 general +255 advanced 96 1833 general +256 advanced 96 1540 general +257 advanced 96 7922 general +258 advanced 96 1910 general +259 advanced 96 5677 general +260 advanced 97 1833 general +261 advanced 97 1540 general +262 advanced 98 1540 general +263 advanced 98 6644 general +264 advanced 99 345 general +265 advanced 99 1833 general +266 advanced 99 1540 general +267 advanced 99 7922 general +268 advanced 99 1910 general +269 advanced 99 5677 general +270 advanced 100 5392 general +271 advanced 100 1540 general +272 advanced 100 1910 general +273 advanced 101 1540 general +274 advanced 101 5677 general +275 advanced 101 6769 general +276 advanced 102 345 general +277 advanced 102 1833 general +278 advanced 102 1540 general +279 advanced 104 5392 general +280 advanced 104 1540 general +281 advanced 104 1910 general +282 advanced 105 345 general +283 advanced 105 1833 general +284 advanced 105 1540 general +285 advanced 105 7922 general +286 advanced 105 1910 general +287 advanced 105 5677 general +288 advanced 106 345 general +289 advanced 106 1833 general +290 advanced 106 2854 general +291 advanced 106 1540 general +292 advanced 106 7922 general +293 advanced 106 1910 general +294 advanced 106 5677 general +295 advanced 107 1833 general +296 advanced 107 1540 general +297 advanced 108 345 general +298 advanced 108 2854 general +299 advanced 108 1540 general +300 advanced 108 5677 general +301 advanced 108 6644 general +302 advanced 109 1540 general +303 advanced 110 345 general +304 advanced 110 1910 general +305 advanced 110 1540 general +306 advanced 110 6644 general +307 advanced 111 345 general +308 advanced 111 1833 general +309 advanced 111 1910 general +310 advanced 111 2854 general +311 advanced 111 1540 general +312 advanced 111 5677 general +313 advanced 111 6644 general +314 advanced 112 1540 general +315 advanced 113 1833 general +316 advanced 113 1540 general +317 advanced 114 345 general +318 advanced 114 1540 general +319 advanced 114 1910 general +320 advanced 114 6644 general +321 advanced 115 345 general +322 advanced 115 1540 general +323 advanced 115 1910 general +324 advanced 115 6644 general +325 advanced 116 1833 general +326 advanced 116 1540 general +327 advanced 117 1833 general +328 advanced 117 1540 general +329 advanced 118 1833 general +330 advanced 118 1540 general +331 advanced 119 1833 general +332 advanced 119 1540 general +333 advanced 120 1540 general +334 advanced 121 345 general +335 advanced 121 1540 general +336 advanced 122 345 general +337 advanced 122 5392 general +338 advanced 122 1833 general +339 advanced 122 1910 general +340 advanced 122 1540 general +341 advanced 122 5677 general +342 advanced 122 6644 general +343 advanced 123 345 general +344 advanced 123 1833 general +345 advanced 123 1540 general +346 advanced 123 6644 general +347 advanced 124 1833 general +348 advanced 124 1540 general +349 advanced 124 6644 general +350 advanced 125 1540 general +351 advanced 126 1833 general +352 advanced 126 1540 general +353 advanced 126 7922 general +354 advanced 127 7922 general +355 advanced 127 1833 general +356 advanced 127 1540 general +357 advanced 127 7922 general +358 advanced 128 345 general +359 advanced 128 1833 general +360 advanced 128 1910 general +361 advanced 128 1540 general +362 advanced 129 345 general +363 advanced 129 5392 general +364 advanced 129 1910 general +365 advanced 129 1540 general +366 advanced 129 6644 general +367 advanced 130 345 general +368 advanced 130 5392 general +369 advanced 130 1910 general +370 advanced 130 2854 general +371 advanced 130 1540 general +372 advanced 130 5677 general +373 advanced 130 6644 general +374 advanced 131 1540 general +375 advanced 132 7922 general +376 advanced 132 1833 general +377 advanced 132 1540 general +378 advanced 133 1954 general +379 advanced 133 1540 general +380 advanced 134 345 general +381 advanced 134 5392 general +382 advanced 134 1833 general +383 advanced 134 1540 general +384 advanced 134 7922 general +385 advanced 134 5677 general +386 advanced 134 6644 general +387 advanced 135 1833 general +388 advanced 135 1540 general +389 advanced 136 7922 general +390 advanced 137 7922 general +391 advanced 137 5677 general +392 advanced 138 5392 general +393 advanced 138 1910 general +394 advanced 138 1954 general +395 advanced 138 6644 general +396 advanced 139 7922 general +397 advanced 139 1540 general +398 advanced 140 345 general +399 advanced 140 1833 general +400 advanced 140 1910 general +401 advanced 140 6644 general +402 advanced 141 1540 general +403 advanced 141 6644 general +404 advanced 146 7922 general +405 advanced 147 7922 general +406 advanced 148 7922 general +407 advanced 149 5392 general +408 advanced 149 1910 general +409 advanced 149 1540 general +410 advanced 149 7922 general +411 advanced 149 6644 general +412 advanced 150 345 general +413 advanced 151 345 general +414 advanced 151 5392 general +415 advanced 151 1910 general +416 advanced 151 5677 general +417 advanced 151 6644 general +418 advanced 152 345 general +419 advanced 152 5392 general +420 advanced 152 1910 general +421 advanced 152 5677 general +422 advanced 152 6644 general +423 advanced 153 345 general +424 advanced 153 5392 general +425 advanced 153 1910 general +426 advanced 153 5677 general +427 advanced 153 6644 general +428 advanced 154 3348 general +429 advanced 154 6644 general +430 advanced 155 1910 general +431 advanced 156 5392 general +432 advanced 156 1910 general +433 advanced 157 5642 general +434 advanced 157 5677 general +435 advanced 158 345 general +436 advanced 159 1954 general +437 advanced 160 5677 general +438 advanced 161 5677 general +439 advanced 162 5677 general +440 advanced 163 2521 general +441 advanced 163 5677 general +442 advanced 164 2521 general +443 advanced 164 5677 general +444 advanced 165 2521 general +445 advanced 165 5677 general +446 advanced 166 2521 general +447 advanced 166 5677 general +448 advanced 167 5677 general +449 advanced 168 5392 general +450 advanced 168 1910 general +451 advanced 169 5392 general +452 advanced 169 1910 general +453 advanced 170 5642 general +454 advanced 170 5677 general +455 advanced 171 5677 general +456 advanced 171 6769 general +457 advanced 172 1833 general +458 advanced 173 5642 general +459 advanced 173 5677 general +460 advanced 174 3348 general +461 advanced 174 6644 general +462 advanced 175 5677 general +463 advanced 176 5677 general +464 advanced 177 345 general +465 advanced 178 6644 general +466 advanced 179 345 general +467 advanced 179 1833 general +468 advanced 179 1540 general +469 advanced 179 7922 general +470 advanced 179 1910 general +471 advanced 180 5392 general +472 advanced 180 1910 general +473 advanced 180 6644 general +474 advanced 181 5392 general +475 advanced 181 1910 general +476 advanced 182 345 general +477 advanced 182 5392 general +478 advanced 182 1910 general +479 advanced 182 1954 general +480 advanced 182 3348 general +481 advanced 182 5677 general +482 advanced 182 6644 general +483 advanced 183 6644 general +484 advanced 184 2521 general +485 advanced 184 5677 general +486 advanced 185 2521 general +487 advanced 185 5677 general +488 advanced 186 345 general +489 advanced 187 5677 general +490 advanced 189 5677 general +491 advanced 191 5677 general +492 advanced 191 6769 general +493 advanced 192 1954 general +494 advanced 193 5677 general +495 advanced 193 6769 general +496 advanced 194 5677 general +497 advanced 194 6769 general +498 advanced 195 5677 general +499 advanced 195 6769 general +500 advanced 196 2854 general +501 advanced 196 5677 general +502 advanced 197 5677 general +503 advanced 198 345 general +504 advanced 198 1540 general +505 advanced 198 1910 general +506 advanced 198 6644 general +507 advanced 200 5677 general +508 advanced 200 6769 general +509 advanced 201 5677 general +510 advanced 202 2521 general +511 advanced 202 5677 general +512 advanced 203 2521 general +513 advanced 203 5677 general +514 advanced 204 5392 general +515 advanced 204 1910 general +516 advanced 204 6644 general +517 advanced 205 5392 general +518 advanced 205 1954 general +519 advanced 205 2854 general +520 advanced 205 6644 general +521 advanced 206 345 general +522 advanced 206 5392 general +523 advanced 206 6644 general +524 advanced 207 345 general +525 advanced 207 5392 general +526 advanced 207 6644 general +527 advanced 208 5392 general +528 advanced 208 5641 general +529 advanced 208 5677 general +530 advanced 208 6644 general +531 advanced 210 1910 general +532 advanced 211 345 general +533 advanced 211 5392 general +534 advanced 211 1833 general +535 advanced 211 1910 general +536 advanced 211 2854 general +537 advanced 211 6011 general +538 advanced 211 6644 general +539 advanced 212 345 general +540 advanced 212 1954 general +541 advanced 212 2854 general +542 advanced 212 1540 general +543 advanced 212 6644 general +544 advanced 213 6644 general +545 advanced 214 5677 general +546 advanced 215 345 general +547 advanced 216 345 general +548 advanced 216 1833 general +549 advanced 216 1540 general +550 advanced 216 1910 general +551 advanced 216 6644 general +552 advanced 217 345 general +553 advanced 217 7922 general +554 advanced 218 1954 general +555 advanced 219 1540 general +556 advanced 220 345 general +557 advanced 220 1833 general +558 advanced 220 1954 general +559 advanced 220 2854 general +560 advanced 220 1540 general +561 advanced 220 1910 general +562 advanced 220 5677 general +563 advanced 220 6644 general +564 advanced 220 6769 general +565 advanced 220 6894 general +566 advanced 221 345 general +567 advanced 221 1833 general +568 advanced 221 1540 general +569 advanced 221 1910 general +570 advanced 221 6644 general +571 advanced 222 6644 general +572 advanced 223 345 general +573 advanced 224 345 general +574 advanced 224 1540 general +575 advanced 224 1910 general +576 advanced 224 6644 general +577 advanced 225 345 general +578 advanced 225 1540 general +579 advanced 225 1910 general +580 advanced 225 6644 general +581 advanced 226 345 general +582 advanced 226 1540 general +583 advanced 226 1910 general +584 advanced 226 6644 general +585 advanced 227 345 general +586 advanced 227 1540 general +587 advanced 227 1910 general +588 advanced 227 6644 general +589 advanced 228 345 general +590 advanced 228 1540 general +591 advanced 228 1910 general +592 advanced 228 6644 general +593 advanced 229 345 general +594 advanced 229 2854 general +595 advanced 229 1540 general +596 advanced 229 1910 general +597 advanced 229 5677 general +598 advanced 230 5677 general +599 advanced 231 345 general +600 advanced 231 1540 general +601 advanced 231 5677 general +602 advanced 231 6644 general +603 advanced 232 6644 general +604 advanced 233 345 general +605 advanced 233 1540 general +606 advanced 233 1910 general +607 advanced 233 5677 general +608 advanced 233 6644 general +609 advanced 234 345 general +610 advanced 234 1540 general +611 advanced 234 1910 general +612 advanced 234 6644 general +613 advanced 235 345 general +614 advanced 235 1540 general +615 advanced 235 1910 general +616 advanced 235 6644 general +617 advanced 236 1540 general +618 advanced 237 1540 general +619 advanced 237 6644 general +620 advanced 238 5392 general +621 advanced 238 1540 general +622 advanced 238 1910 general +623 advanced 239 1540 general +624 advanced 240 5677 general +625 advanced 240 6769 general +626 advanced 241 345 general +627 advanced 241 1833 general +628 advanced 241 1954 general +629 advanced 241 1540 general +630 advanced 241 6644 general +631 advanced 242 6644 general +632 advanced 243 345 general +633 advanced 243 5392 general +634 advanced 243 1540 general +635 advanced 243 1910 general +636 advanced 243 5677 general +637 advanced 243 6644 general +638 advanced 244 5677 general +639 advanced 244 6769 general +640 advanced 245 345 general +641 advanced 246 345 general +642 advanced 246 1833 general +643 advanced 246 2854 general +644 advanced 246 1540 general +645 advanced 246 5444 general +646 advanced 246 1910 general +647 advanced 246 5677 general +648 advanced 246 6644 general +649 advanced 248 5392 general +650 advanced 248 1910 general +651 advanced 249 3348 general +652 advanced 249 6644 general +653 advanced 250 3348 general +654 advanced 250 6644 general +655 advanced 251 3348 general +656 advanced 251 6644 general +657 advanced 253 5677 general +658 advanced 253 6769 general +659 advanced 254 5677 general +660 advanced 255 1910 general +661 advanced 256 5677 general +662 advanced 257 1540 general +663 advanced 258 5392 general +664 advanced 259 345 general +665 advanced 259 2521 general +666 advanced 259 2854 general +667 advanced 259 1540 general +668 advanced 260 1910 general +669 advanced 261 5677 general +670 advanced 261 6644 general +671 advanced 262 5677 general +672 advanced 262 6769 general +673 advanced 263 1540 general +674 advanced 264 5392 general +675 advanced 264 1540 general +676 advanced 265 1910 general +677 advanced 266 1540 general +678 advanced 266 5677 general +679 advanced 267 1540 general +680 advanced 267 5677 general +681 advanced 268 345 general +682 advanced 268 1833 general +683 advanced 268 1954 general +684 advanced 268 1540 general +685 advanced 268 1910 general +686 advanced 268 5677 general +687 advanced 268 6644 general +688 advanced 268 6769 general +689 advanced 269 345 general +690 advanced 269 1833 general +691 advanced 269 1954 general +692 advanced 269 2854 general +693 advanced 269 1540 general +694 advanced 269 3348 general +695 advanced 269 1910 general +696 advanced 269 5677 general +697 advanced 269 6644 general +698 advanced 269 6769 general +699 advanced 269 6894 general +700 advanced 270 345 general +701 advanced 271 2854 general +702 advanced 272 6644 general +703 advanced 275 345 general +704 advanced 275 1833 general +705 advanced 275 1540 general +706 advanced 275 1910 general +707 advanced 275 5677 general +708 advanced 275 6644 general +709 advanced 276 345 general +710 advanced 276 1833 general +711 advanced 277 1540 general +712 advanced 278 1540 general +713 advanced 279 1833 general +714 advanced 279 1540 general +715 advanced 279 5677 general +716 advanced 279 6769 general +717 advanced 280 345 general +718 advanced 280 1833 general +719 advanced 280 1954 general +720 advanced 280 1540 general +721 advanced 280 1910 general +722 advanced 280 5677 general +723 advanced 280 6644 general +724 advanced 281 5677 general +725 advanced 282 1833 general +726 advanced 282 1540 general +727 advanced 282 1910 general +728 advanced 283 345 general +729 advanced 283 1540 general +730 advanced 283 1910 general +731 advanced 284 1540 general +732 advanced 285 1833 general +733 advanced 285 1540 general +734 advanced 286 5677 general +735 advanced 287 1910 general +736 advanced 288 6644 general +737 advanced 289 5392 general +738 advanced 289 1910 general +739 advanced 290 345 general +740 advanced 291 6644 general +741 advanced 292 5392 general +742 advanced 292 1910 general +743 advanced 293 5642 general +744 advanced 293 5677 general +745 advanced 294 5677 general +746 advanced 295 5392 general +747 advanced 295 1910 general +748 advanced 296 1540 general +749 advanced 297 6644 general +750 advanced 298 6644 general +751 advanced 299 7922 general +752 advanced 299 1910 general +753 advanced 299 6644 general +754 advanced 301 1540 general +755 advanced 302 6059 general +756 advanced 303 345 general +757 advanced 303 1540 general +758 advanced 303 1910 general +759 advanced 303 5677 general +760 advanced 303 6644 general +761 advanced 304 345 general +762 advanced 305 345 general +763 advanced 305 1833 general +764 advanced 305 1540 general +765 advanced 305 1910 general +766 advanced 305 5677 general +767 advanced 305 6644 general +768 advanced 307 5677 general +769 advanced 308 1910 general +770 advanced 309 5641 general +771 advanced 309 5677 general +772 advanced 310 1833 general +773 advanced 310 1910 general +774 advanced 311 5677 general +775 advanced 312 5677 general +776 advanced 312 6769 general +777 advanced 313 5677 general +778 advanced 313 6769 general +779 advanced 314 1910 general +780 advanced 315 345 general +781 advanced 315 1833 general +782 advanced 315 1954 general +783 advanced 315 1540 general +784 advanced 315 1910 general +785 advanced 315 5677 general +786 advanced 315 6644 general +787 advanced 316 1910 general +788 advanced 317 5677 general +789 advanced 318 1910 general +790 advanced 319 5677 general +791 advanced 320 5677 general +792 advanced 322 1540 general +793 advanced 322 5677 general +794 advanced 322 6769 general +795 advanced 323 1540 general +796 advanced 323 5677 general +797 advanced 323 6769 general +798 advanced 324 5677 general +799 advanced 324 6769 general +800 advanced 325 1954 general +801 advanced 326 1833 general +802 advanced 326 1954 general +803 advanced 326 1540 general +804 advanced 326 5677 general +805 advanced 326 6644 general +806 advanced 327 1540 general +807 advanced 327 5677 general +808 advanced 327 6769 general +809 advanced 328 5677 general +810 advanced 328 6769 general +811 advanced 329 345 general +812 advanced 329 1540 general +813 advanced 329 1910 general +814 advanced 329 5677 general +815 advanced 329 6644 general +816 advanced 329 6769 general +817 advanced 330 1833 general +818 advanced 330 1540 general +819 advanced 330 1910 general +820 advanced 331 345 general +821 advanced 331 3348 general +822 advanced 332 1910 general +823 advanced 333 1540 general +824 advanced 334 5642 general +825 advanced 334 5641 general +826 advanced 335 1833 general +827 advanced 335 1540 general +828 advanced 336 1833 general +829 advanced 336 1540 general +830 advanced 336 1910 general +831 advanced 337 1833 general +832 advanced 337 1540 general +833 advanced 337 1910 general +834 advanced 338 1833 general +835 advanced 338 1540 general +836 advanced 338 1910 general +837 advanced 339 345 general +838 advanced 339 1833 general +839 advanced 339 1540 general +840 advanced 339 1910 general +841 advanced 340 1540 general +842 advanced 341 5677 general +843 advanced 342 345 general +844 advanced 342 1833 general +845 advanced 342 1540 general +846 advanced 342 1910 general +847 advanced 342 6644 general +848 advanced 344 345 general +849 advanced 345 1540 general +850 advanced 346 2854 general +851 advanced 346 5677 general +852 advanced 347 1910 general +853 advanced 348 1540 general +854 advanced 348 5677 general +855 advanced 348 6769 general +856 advanced 349 1540 general +857 advanced 349 5677 general +858 advanced 349 6769 general +859 advanced 350 5677 general +860 advanced 350 6769 general +861 advanced 351 1910 general +862 advanced 352 2521 general +863 advanced 353 1954 general +864 advanced 354 5677 general +865 advanced 354 6769 general +866 advanced 355 1910 general +867 advanced 356 345 general +868 advanced 357 7922 general +869 advanced 358 5677 general +870 advanced 359 1910 general +871 advanced 360 345 general +872 advanced 360 1540 general +873 advanced 360 1910 general +874 advanced 361 345 general +875 advanced 361 1540 general +876 advanced 361 1910 general +877 advanced 361 6644 general +878 advanced 362 6644 general +879 advanced 363 1954 general +880 advanced 364 345 general +881 advanced 364 1833 general +882 advanced 364 1540 general +883 advanced 364 1910 general +884 advanced 364 5677 general +885 advanced 364 6644 general +886 advanced 365 1954 general +887 advanced 366 1540 general +888 advanced 367 1540 general +889 advanced 368 345 general +890 advanced 368 1954 general +891 advanced 368 1540 general +892 advanced 368 1910 general +893 advanced 368 5677 general +894 advanced 368 6644 general +895 advanced 368 6769 general +896 advanced 369 5677 general +897 advanced 370 1833 general +898 advanced 370 1540 general +899 advanced 371 345 general +900 advanced 371 2854 general +901 advanced 371 1540 general +902 advanced 371 1910 general +903 advanced 371 6644 general +904 advanced 371 6894 general +905 advanced 372 345 general +906 advanced 372 1833 general +907 advanced 372 1540 general +908 advanced 372 1910 general +909 advanced 372 5351 general +910 advanced 372 6011 general +911 advanced 373 5677 general +912 advanced 373 6769 general +913 advanced 374 345 general +914 advanced 374 1540 general +915 advanced 374 1910 general +916 advanced 374 5677 general +917 advanced 375 1833 general +918 advanced 375 1954 general +919 advanced 376 5677 general +920 advanced 377 1954 general +921 advanced 379 1833 general +922 advanced 379 1540 general +923 advanced 379 6644 general +924 advanced 380 1540 general +925 advanced 381 1540 general +926 advanced 381 6644 general +927 advanced 382 345 general +928 advanced 382 1833 general +929 advanced 382 1540 general +930 advanced 382 1910 general +931 advanced 382 5351 general +932 advanced 382 6011 general +933 advanced 383 5677 general +934 advanced 383 6769 general +935 advanced 384 5677 general +936 advanced 385 345 general +937 advanced 385 1833 general +938 advanced 385 1540 general +939 advanced 385 1910 general +940 advanced 385 6644 general +941 advanced 386 345 general +942 advanced 386 1954 general +943 advanced 386 1910 general +944 advanced 386 5677 general +945 advanced 386 6644 general +946 advanced 387 5677 general +947 advanced 388 2521 general +948 advanced 389 6769 general +949 advanced 390 5677 general +950 advanced 391 1833 general +951 advanced 391 1540 general +952 advanced 391 6011 general +953 advanced 392 345 general +954 advanced 392 1833 general +955 advanced 392 1540 general +956 advanced 392 1910 general +957 advanced 393 345 general +958 advanced 393 1833 general +959 advanced 393 1540 general +960 advanced 393 1910 general +961 advanced 394 5677 general +962 advanced 394 6769 general +963 advanced 395 1910 general +964 advanced 396 6644 general +965 advanced 397 1833 general +966 advanced 397 1954 general +967 advanced 397 1540 general +968 advanced 398 5677 general +969 advanced 398 6769 general +970 advanced 399 345 general +971 advanced 400 1833 general +972 advanced 400 2854 general +973 advanced 400 1540 general +974 advanced 401 5677 general +975 advanced 402 5677 general +976 advanced 402 6769 general +977 advanced 403 5392 general +978 advanced 403 1833 general +979 advanced 403 1540 general +980 advanced 403 6644 general +981 advanced 404 5677 general +982 advanced 405 5677 general +983 advanced 406 5677 general +984 advanced 406 6769 general +985 advanced 407 5677 general +986 advanced 407 6769 general +987 advanced 408 345 general +988 advanced 408 1540 general +989 advanced 408 3151 general +990 advanced 408 1910 general +991 advanced 408 5677 general +992 advanced 408 6059 general +993 advanced 408 6644 general +994 advanced 409 1833 general +995 advanced 409 7922 general +996 advanced 410 5677 general +997 advanced 410 6769 general +998 advanced 411 345 general +999 advanced 411 2521 general +1000 advanced 411 1910 general +1001 advanced 411 1954 general +1002 advanced 411 2854 general +1003 advanced 411 1540 general +1004 advanced 411 5677 general +1005 advanced 412 345 general +1006 advanced 412 1540 general +1007 advanced 412 1910 general +1008 advanced 412 5677 general +1009 advanced 412 6644 general +1010 advanced 413 345 general +1011 advanced 413 2521 general +1012 advanced 413 1910 general +1013 advanced 413 1954 general +1014 advanced 413 2854 general +1015 advanced 413 1540 general +1016 advanced 413 5677 general +1017 advanced 414 345 general +1018 advanced 414 1833 general +1019 advanced 414 1954 general +1020 advanced 414 1540 general +1021 advanced 414 1910 general +1022 advanced 414 5677 general +1023 advanced 414 6644 general +1024 advanced 415 345 general +1025 advanced 415 1833 general +1026 advanced 415 1540 general +1027 advanced 415 3151 general +1028 advanced 415 1910 general +1029 advanced 415 5677 general +1030 advanced 415 6644 general +1031 advanced 416 5677 general +1032 advanced 416 6769 general +1033 advanced 417 5677 general +1034 advanced 417 6769 general +1035 advanced 418 2854 general +1036 advanced 418 5677 general +1037 advanced 419 3151 general +1038 advanced 419 6644 general +1039 advanced 420 345 general +1040 advanced 420 1833 general +1041 advanced 420 1540 general +1042 advanced 420 1910 general +1043 advanced 420 6644 general +1044 advanced 421 345 general +1045 advanced 421 1833 general +1046 advanced 421 1954 general +1047 advanced 421 1540 general +1048 advanced 421 1910 general +1049 advanced 421 5677 general +1050 advanced 421 6644 general +1051 advanced 421 6769 general +1052 advanced 422 1540 general +1053 advanced 423 345 general +1054 advanced 423 1954 general +1055 advanced 423 1540 general +1056 advanced 423 1910 general +1057 advanced 423 6644 general +1058 advanced 423 6769 general +1059 advanced 425 5641 general +1060 advanced 425 5677 general +1061 advanced 426 1910 general +1062 advanced 427 1910 general +1063 advanced 428 345 general +1064 advanced 428 1540 general +1065 advanced 428 7922 general +1066 advanced 428 1910 general +1067 advanced 428 5677 general +1068 advanced 428 6644 general +1069 advanced 428 6769 general +1070 advanced 429 1910 general +1071 advanced 430 5677 general +1072 advanced 430 6769 general +1073 advanced 431 345 general +1074 advanced 431 1833 general +1075 advanced 431 1540 general +1076 advanced 431 1910 general +1077 advanced 431 5677 general +1078 advanced 431 6644 general +1079 advanced 432 5677 general +1080 advanced 433 1540 general +1081 advanced 434 3348 general +1082 advanced 435 1833 general +1083 advanced 435 1540 general +1084 advanced 436 345 general +1085 advanced 436 1540 general +1086 advanced 437 345 general +1087 advanced 437 1833 general +1088 advanced 437 1540 general +1089 advanced 437 1910 general +1090 advanced 437 5677 general +1091 advanced 437 6644 general +1092 advanced 438 1540 general +1093 advanced 438 5677 general +1094 advanced 438 6769 general +1095 advanced 439 345 general +1096 advanced 439 1540 general +1097 advanced 439 1910 general +1098 advanced 439 5677 general +1099 advanced 439 6644 general +1100 advanced 440 2854 general +1101 advanced 441 345 general +1102 advanced 441 1833 general +1103 advanced 441 1954 general +1104 advanced 441 1540 general +1105 advanced 441 5677 general +1106 advanced 442 1833 general +1107 advanced 442 1540 general +1108 advanced 442 5677 general +1109 advanced 443 3348 general +1110 advanced 444 2854 general +1111 advanced 445 1833 general +1112 advanced 446 345 general +1113 advanced 446 1833 general +1114 advanced 446 1954 general +1115 advanced 446 1540 general +1116 advanced 446 5677 general +1117 advanced 446 6644 general +1118 advanced 447 5677 general +1119 advanced 447 6769 general +1120 advanced 448 5677 general +1121 advanced 449 5677 general +1122 advanced 450 1540 general +1123 advanced 450 3151 general +1124 advanced 450 6644 general +1125 advanced 451 6011 general +1126 advanced 452 345 general +1127 advanced 452 1833 general +1128 advanced 452 1954 general +1129 advanced 452 2854 general +1130 advanced 452 1540 general +1131 advanced 452 1910 general +1132 advanced 452 5677 general +1133 advanced 452 6644 general +1134 advanced 452 6769 general +1135 advanced 452 6894 general +1136 advanced 453 5677 general +1137 advanced 454 5641 general +1138 advanced 454 5677 general +1139 advanced 455 5677 general +1140 advanced 455 6769 general +1141 advanced 456 345 general +1142 advanced 456 1833 general +1143 advanced 456 1540 general +1144 advanced 456 1910 general +1145 advanced 456 6644 general +1146 advanced 457 6644 general +1147 advanced 458 5677 general +1148 advanced 459 5677 general +1149 advanced 460 5677 general +1150 advanced 461 6011 general +1151 advanced 462 6011 general +1152 advanced 463 5677 general +1153 advanced 464 5677 general +1154 advanced 465 345 general +1155 advanced 466 1540 general +1156 advanced 468 6644 general +1157 advanced 469 1910 general +1158 advanced 470 5677 general +1159 advanced 470 6769 general +1160 advanced 471 5677 general +1161 advanced 471 6769 general +1162 advanced 472 2854 general +1163 advanced 472 6644 general +1164 advanced 473 5677 general +1165 advanced 473 6769 general +1166 advanced 474 1833 general +1167 advanced 474 1540 general +1168 advanced 475 345 general +1169 advanced 475 1833 general +1170 advanced 475 1540 general +1171 advanced 475 1910 general +1172 advanced 475 6644 general +1173 advanced 475 6769 general +1174 advanced 476 345 general +1175 advanced 476 1833 general +1176 advanced 476 1540 general +1177 advanced 476 1910 general +1178 advanced 476 6644 general +1179 advanced 476 6769 general +1180 advanced 477 1540 general +1181 advanced 478 345 general +1182 advanced 478 1833 general +1183 advanced 479 1540 general +1184 advanced 479 7922 general +1185 advanced 480 1540 general +1186 advanced 481 6644 general +1187 advanced 482 5677 general +1188 advanced 482 6769 general +1189 advanced 483 5677 general +1190 advanced 484 345 general +1191 advanced 485 6644 general +1192 advanced 486 5677 general +1193 advanced 487 1540 general +1194 advanced 487 5677 general +1195 advanced 487 6769 general +1196 advanced 488 345 general +1197 advanced 488 1833 general +1198 advanced 488 2854 general +1199 advanced 488 1540 general +1200 advanced 488 7922 general +1201 advanced 488 1910 general +1202 advanced 488 5677 general +1203 advanced 488 6644 general +1204 advanced 488 6769 general +1205 advanced 489 345 general +1206 advanced 489 2521 general +1207 advanced 489 618 general +1208 advanced 489 1833 general +1209 advanced 489 1954 general +1210 advanced 489 2854 general +1211 advanced 489 1540 general +1212 advanced 489 7922 general +1213 advanced 489 5444 general +1214 advanced 489 1910 general +1215 advanced 489 5677 general +1216 advanced 489 6059 general +1217 advanced 489 6644 general +1218 advanced 489 6769 general +1219 advanced 489 6819 general +1220 advanced 489 6894 general +1221 advanced 490 345 general +1222 advanced 490 1833 general +1223 advanced 490 1540 general +1224 advanced 490 7922 general +1225 advanced 490 1910 general +1226 advanced 490 5677 general +1227 advanced 490 6059 general +1228 advanced 490 6644 general +1229 advanced 490 6769 general +1230 advanced 491 6769 general +1231 advanced 492 2854 general +1232 advanced 492 5677 general +1233 advanced 493 2854 general +1234 advanced 493 6644 general +1235 advanced 494 1833 general +1236 advanced 494 1540 general +1237 advanced 494 6769 general +1238 advanced 495 6769 general +1239 advanced 496 345 general +1240 advanced 496 1833 general +1241 advanced 496 1954 general +1242 advanced 496 1540 general +1243 advanced 496 1910 general +1244 advanced 496 5351 general +1245 advanced 496 6644 general +1246 advanced 496 6769 general +1247 advanced 496 6894 general +1248 advanced 497 5677 general +1249 advanced 497 6769 general +1250 advanced 498 345 general +1251 advanced 498 1833 general +1252 advanced 498 1954 general +1253 advanced 498 1540 general +1254 advanced 498 1910 general +1255 advanced 498 5351 general +1256 advanced 498 6644 general +1257 advanced 498 6769 general +1258 advanced 498 6894 general +1259 advanced 499 345 general +1260 advanced 499 1833 general +1261 advanced 499 1954 general +1262 advanced 499 1540 general +1263 advanced 499 1910 general +1264 advanced 499 5351 general +1265 advanced 499 6644 general +1266 advanced 499 6769 general +1267 advanced 499 6894 general +1268 advanced 500 5677 general +1269 advanced 500 6769 general +1270 advanced 501 345 general +1271 advanced 501 1540 general +1272 advanced 501 1910 general +1273 advanced 501 5677 general +1274 advanced 501 6644 general +1275 advanced 501 6769 general +1276 advanced 501 6894 general +1277 advanced 502 345 general +1278 advanced 503 5677 general +1279 advanced 504 5444 general +1280 advanced 504 1910 general +1281 advanced 505 1833 general +1282 advanced 505 1954 general +1283 advanced 505 1540 general +1284 advanced 506 5677 general +1285 advanced 507 1833 general +1286 advanced 507 1540 general +1287 advanced 508 1833 general +1288 advanced 508 1540 general +1289 advanced 508 5677 general +1290 advanced 508 6769 general +1291 advanced 509 345 general +1292 advanced 509 1833 general +1293 advanced 509 1540 general +1294 advanced 509 1910 general +1295 advanced 509 5351 general +1296 advanced 509 5677 general +1297 advanced 509 6011 general +1298 advanced 509 6644 general +1299 advanced 509 6769 general +1300 advanced 510 1954 general +1301 advanced 511 5677 general +1302 advanced 512 5677 general +1303 advanced 512 6769 general +1304 advanced 513 2854 general +1305 advanced 513 5677 general +1306 advanced 514 345 general +1307 advanced 514 1540 general +1308 advanced 514 1910 general +1309 advanced 514 6644 general +1310 advanced 515 345 general +1311 advanced 515 1540 general +1312 advanced 515 1910 general +1313 advanced 516 1540 general +1314 advanced 517 345 general +1315 advanced 517 1540 general +1316 advanced 517 1910 general +1317 advanced 517 6644 general +1318 advanced 519 5677 general +1319 advanced 519 6769 general +1320 advanced 520 6644 general +1321 advanced 521 5677 general +1322 advanced 522 5677 general +1323 advanced 523 1910 general +1324 advanced 524 1230 general +1325 advanced 524 5677 general +1326 advanced 525 345 general +1327 advanced 525 2854 general +1328 advanced 525 1540 general +1329 advanced 525 1910 general +1330 advanced 525 5677 general +1331 advanced 525 6644 general +1332 advanced 526 1540 general +1333 advanced 527 345 general +1334 advanced 527 1540 general +1335 advanced 527 1910 general +1336 advanced 527 5677 general +1337 advanced 528 1540 general +1338 advanced 528 5677 general +1339 advanced 528 6769 general +1340 advanced 529 1540 general +1341 advanced 530 5677 general +1342 advanced 530 6769 general +1343 advanced 531 345 general +1344 advanced 531 1540 general +1345 advanced 531 1910 general +1346 advanced 531 5677 general +1347 advanced 532 1910 general +1348 advanced 533 5677 general +1349 advanced 533 6769 general +1350 advanced 534 5677 general +1351 advanced 535 1910 general +1352 advanced 536 5677 general +1353 advanced 536 6769 general +1354 advanced 537 345 general +1355 advanced 537 1833 general +1356 advanced 537 1540 general +1357 advanced 537 1910 general +1358 advanced 537 5677 general +1359 advanced 537 6644 general +1360 advanced 538 5641 general +1361 advanced 538 5677 general +1362 advanced 539 5641 general +1363 advanced 539 5677 general +1364 advanced 540 345 general +1365 advanced 540 1833 general +1366 advanced 540 1540 general +1367 advanced 540 1910 general +1368 advanced 540 5677 general +1369 advanced 540 6644 general +1370 advanced 541 1540 general +1371 advanced 541 1910 general +1372 advanced 542 5677 general +1373 advanced 542 6769 general +1374 advanced 543 1540 general +1375 advanced 543 1910 general +1376 advanced 543 6644 general +1377 advanced 543 6769 general +1378 advanced 544 345 general +1379 advanced 544 1540 general +1380 advanced 544 1910 general +1381 advanced 544 5677 general +1382 advanced 544 6644 general +1383 advanced 546 345 general +1384 advanced 546 1540 general +1385 advanced 546 3151 general +1386 advanced 546 1910 general +1387 advanced 546 5677 general +1388 advanced 546 6644 general +1389 advanced 546 6769 general +1390 advanced 547 1540 general +1391 advanced 547 5677 general +1392 advanced 547 6644 general +1393 advanced 547 6769 general +1394 advanced 549 345 general +1395 advanced 550 5677 general +1396 advanced 550 6769 general +1397 advanced 551 1540 general +1398 advanced 551 6644 general +1399 advanced 552 345 general +1400 advanced 552 2521 general +1401 advanced 552 1540 general +1402 advanced 552 1910 general +1403 advanced 552 5677 general +1404 advanced 552 6644 general +1405 advanced 552 6894 general +1406 advanced 553 5677 general +1407 advanced 553 6769 general +1408 advanced 554 5677 general +1409 advanced 554 6769 general +1410 advanced 555 345 general +1411 advanced 556 345 general +1412 advanced 556 1954 general +1413 advanced 556 2854 general +1414 advanced 556 1910 general +1415 advanced 556 5641 general +1416 advanced 556 6644 general +1417 advanced 556 6769 general +1418 advanced 556 6894 general +1419 advanced 557 5677 general +1420 advanced 557 6769 general +1421 advanced 558 5677 general +1422 advanced 558 6769 general +1423 advanced 559 1954 general +1424 advanced 560 5677 general +1425 advanced 561 1540 general +1426 advanced 562 5677 general +1427 advanced 563 5677 general +1428 advanced 564 345 general +1429 advanced 565 5677 general +1430 advanced 565 6769 general +1431 advanced 566 1540 general +1432 advanced 566 5677 general +1433 advanced 566 6769 general +1434 advanced 567 1833 general +1435 advanced 567 1540 general +1436 advanced 567 5677 general +1437 advanced 568 2521 general +1438 advanced 568 1540 general +1439 advanced 568 5677 general +1440 advanced 568 6769 general +1441 advanced 569 1833 general +1442 advanced 569 1540 general +1443 advanced 569 5677 general +1444 advanced 569 6769 general +1445 advanced 570 1833 general +1446 advanced 570 1954 general +1447 advanced 570 6011 general +1448 advanced 571 345 general +1449 advanced 571 1540 general +1450 advanced 572 5677 general +1451 advanced 573 5677 general +1452 advanced 574 5677 general +1453 advanced 575 1833 general +1454 advanced 575 1954 general +1455 advanced 575 1540 general +1456 advanced 576 1540 general +1457 advanced 576 3151 general +1458 advanced 576 5677 general +1459 advanced 577 345 general +1460 advanced 577 1833 general +1461 advanced 578 1910 general +1462 advanced 579 345 general +1463 advanced 579 3151 general +1464 advanced 580 345 general +1465 advanced 580 1833 general +1466 advanced 580 2854 general +1467 advanced 580 1540 general +1468 advanced 580 1910 general +1469 advanced 580 5677 general +1470 advanced 580 6644 general +1471 advanced 581 345 general +1472 advanced 581 1833 general +1473 advanced 581 1540 general +1474 advanced 581 1910 general +1475 advanced 581 5677 general +1476 advanced 581 6644 general +1477 advanced 582 345 general +1478 advanced 582 1540 general +1479 advanced 582 1910 general +1480 advanced 583 2854 general +1481 advanced 583 5677 general +1482 advanced 584 1954 general +1483 advanced 584 1540 general +1484 advanced 585 1540 general +1485 advanced 586 345 general +1486 advanced 586 1540 general +1487 advanced 586 1910 general +1488 advanced 587 345 general +1489 advanced 587 5998 general +1490 advanced 588 1833 general +1491 advanced 588 1540 general +1492 advanced 589 5641 general +1493 advanced 589 5677 general +1494 advanced 589 6769 general +1495 advanced 590 5677 general +1496 advanced 591 345 general +1497 advanced 591 1833 general +1498 advanced 591 1540 general +1499 advanced 592 1540 general +1500 advanced 593 345 general +1501 advanced 594 345 general +1502 advanced 594 1833 general +1503 advanced 594 1540 general +1504 advanced 594 1910 general +1505 advanced 594 5677 general +1506 advanced 594 6644 general +1507 advanced 594 6769 general +1508 advanced 595 5677 general +1509 advanced 596 5677 general +1510 advanced 596 6769 general +1511 advanced 597 5677 general +1512 advanced 597 6769 general +1513 advanced 598 345 general +1514 advanced 598 1833 general +1515 advanced 598 1954 general +1516 advanced 598 1540 general +1517 advanced 598 1910 general +1518 advanced 598 5641 general +1519 advanced 598 5677 general +1520 advanced 598 6644 general +1521 advanced 598 6769 general +1522 advanced 599 5677 general +1523 advanced 600 345 general +1524 advanced 600 5392 general +1525 advanced 600 1833 general +1526 advanced 600 1910 general +1527 advanced 600 1540 general +1528 advanced 600 5677 general +1529 advanced 601 2854 general +1530 advanced 601 5677 general +1531 advanced 602 5677 general +1532 advanced 602 6769 general +1533 advanced 603 1833 general +1534 advanced 603 1540 general +1535 advanced 604 345 general +1536 advanced 604 1833 general +1537 advanced 604 1954 general +1538 advanced 604 1540 general +1539 advanced 604 1910 general +1540 advanced 604 5677 general +1541 advanced 604 6644 general +1542 advanced 605 345 general +1543 advanced 605 1540 general +1544 advanced 605 1910 general +1545 advanced 605 6644 general +1546 advanced 606 5677 general +1547 advanced 606 6769 general +1548 advanced 607 5677 general +1549 advanced 607 6769 general +1550 advanced 608 6644 general +1551 advanced 609 7922 general +1552 advanced 610 5677 general +1553 advanced 610 6769 general +1554 advanced 611 345 general +1555 advanced 611 1910 general +1556 advanced 611 1540 general +1557 advanced 611 5677 general +1558 advanced 611 6644 general +1559 advanced 612 5677 general +1560 advanced 613 5677 general +1561 advanced 613 6769 general +1562 advanced 614 5677 general +1563 advanced 614 6769 general +1564 advanced 615 5677 general +1565 advanced 615 6769 general +1566 advanced 616 5677 general +1567 advanced 617 5677 general +1568 advanced 618 345 general +1569 advanced 618 1833 general +1570 advanced 618 2854 general +1571 advanced 618 1540 general +1572 advanced 618 1910 general +1573 advanced 618 5677 general +1574 advanced 618 6011 general +1575 advanced 618 6644 general +1576 advanced 619 345 general +1577 advanced 619 1833 general +1578 advanced 619 1954 general +1579 advanced 619 1540 general +1580 advanced 619 1910 general +1581 advanced 619 5677 general +1582 advanced 619 6011 general +1583 advanced 619 6644 general +1584 advanced 620 5677 general +1585 advanced 621 1540 general +1586 advanced 621 6769 general +1587 advanced 622 1833 general +1588 advanced 622 1540 general +1589 advanced 622 7922 general +1590 advanced 623 5677 general +1591 advanced 624 5677 general +1592 advanced 624 6769 general +1593 advanced 625 345 general +1594 advanced 625 1540 general +1595 advanced 625 1910 general +1596 advanced 625 5677 general +1597 advanced 625 6644 general +1598 advanced 625 6769 general +1599 advanced 626 345 general +1600 advanced 627 1833 general +1601 advanced 627 1540 general +1602 advanced 627 5677 general +1603 advanced 627 6769 general +1604 advanced 628 1833 general +1605 advanced 628 1540 general +1606 advanced 628 5677 general +1607 advanced 628 6769 general +1608 advanced 629 345 general +1609 advanced 629 1833 general +1610 advanced 629 1540 general +1611 advanced 629 1910 general +1612 advanced 629 5677 general +1613 advanced 630 345 general +1614 advanced 630 1833 general +1615 advanced 630 1540 general +1616 advanced 630 1910 general +1617 advanced 630 5677 general +1618 advanced 630 6644 general +1619 advanced 630 6769 general +1620 advanced 631 345 general +1621 advanced 631 1833 general +1622 advanced 631 1540 general +1623 advanced 631 1910 general +1624 advanced 631 5677 general +1625 advanced 631 6644 general +1626 advanced 631 6769 general +1627 advanced 632 345 general +1628 advanced 632 3151 general +1629 advanced 633 345 general +1630 advanced 633 1833 general +1631 advanced 633 1540 general +1632 advanced 633 5677 general +1633 advanced 633 6769 general +1634 advanced 634 345 general +1635 advanced 635 345 general +1636 advanced 635 1954 general +1637 advanced 635 1540 general +1638 advanced 635 1910 general +1639 advanced 635 5677 general +1640 advanced 635 6644 general +1641 advanced 635 6769 general +1642 advanced 636 345 general +1643 advanced 636 1540 general +1644 advanced 636 1910 general +1645 advanced 636 5677 general +1646 advanced 636 6644 general +1647 advanced 637 1833 general +1648 advanced 637 5677 general +1649 advanced 637 6769 general +1650 advanced 638 6644 general +1651 advanced 639 345 general +1652 advanced 640 1833 general +1653 advanced 640 1954 general +1654 advanced 640 1540 general +1655 advanced 641 5677 general +1656 advanced 642 1833 general +1657 advanced 643 1833 general +1658 advanced 643 1540 general +1659 advanced 643 5677 general +1660 advanced 643 6769 general +1661 advanced 644 1540 general +1662 advanced 644 6644 general +1663 advanced 645 5677 general +1664 advanced 646 345 general +1665 advanced 647 5677 general +1666 advanced 647 6769 general +1667 advanced 648 1833 general +1668 advanced 648 1540 general +1669 advanced 649 5677 general +1670 advanced 649 6769 general +1671 advanced 650 5677 general +1672 advanced 650 6769 general +1673 advanced 651 5677 general +1674 advanced 651 6769 general +1675 advanced 652 5677 general +1676 advanced 652 6769 general +1677 advanced 653 5677 general +1678 advanced 654 6644 general +1679 advanced 655 5677 general +1680 advanced 655 6769 general +1681 advanced 656 5677 general +1682 advanced 656 6769 general +1683 advanced 657 5677 general +1684 advanced 657 6769 general +1685 advanced 658 5677 general +1686 advanced 658 6769 general +1687 advanced 659 345 general +1688 advanced 659 1540 general +1689 advanced 659 5677 general +1690 advanced 660 345 general +1691 advanced 660 1540 general +1692 advanced 660 5677 general +1693 advanced 661 345 general +1694 advanced 661 1540 general +1695 advanced 661 5677 general +1696 advanced 661 6769 general +1697 advanced 662 5677 general +1698 advanced 662 6769 general +1699 advanced 663 5641 general +1700 advanced 663 5677 general +1701 advanced 664 5677 general +1702 advanced 665 1540 general +1703 advanced 666 345 general +1704 advanced 666 1833 general +1705 advanced 666 1954 general +1706 advanced 666 2854 general +1707 advanced 666 1540 general +1708 advanced 666 3151 general +1709 advanced 666 7922 general +1710 advanced 666 5444 general +1711 advanced 666 1910 general +1712 advanced 666 5677 general +1713 advanced 666 6011 general +1714 advanced 666 6644 general +1715 advanced 666 6769 general +1716 advanced 667 6769 general +1717 advanced 668 5677 general +1718 advanced 668 6769 general +1719 advanced 669 5677 general +1720 advanced 669 6769 general +1721 advanced 670 5677 general +1722 advanced 670 6769 general +1723 advanced 671 5677 general +1724 advanced 671 6769 general +1725 advanced 672 5677 general +1726 advanced 672 6769 general +1727 advanced 673 1833 general +1728 advanced 673 7922 general +1729 advanced 674 2854 general +1730 advanced 674 5677 general +1731 advanced 675 5677 general +1732 advanced 676 5677 general +1733 advanced 677 1540 general +1734 advanced 677 5677 general +1735 advanced 677 6769 general +1736 advanced 678 345 general +1737 advanced 678 1910 general +1738 advanced 678 5677 general +1739 advanced 679 5677 general +1740 advanced 680 5677 general +1741 advanced 680 6769 general +1742 advanced 681 5677 general +1743 advanced 682 5677 general +1744 advanced 683 5677 general +1745 advanced 683 6769 general +1746 advanced 684 5677 general +1747 advanced 684 6769 general +1748 advanced 685 5677 general +1749 advanced 685 6769 general +1750 advanced 686 5677 general +1751 advanced 686 6769 general +1752 advanced 687 1540 general +1753 advanced 687 5677 general +1754 advanced 687 6769 general +1755 advanced 688 5677 general +1756 advanced 688 6769 general +1757 advanced 689 5677 general +1758 advanced 690 6894 general +1759 advanced 691 1540 general +1760 advanced 692 5677 general +1761 advanced 693 1910 general +1762 advanced 694 5677 general +1763 advanced 695 5677 general +1764 advanced 696 1833 general +1765 advanced 697 5677 general +1766 advanced 697 6769 general +1767 advanced 698 5677 general +1768 advanced 698 6769 general +1769 advanced 699 1833 general +1770 advanced 699 1540 general +1771 advanced 699 5677 general +1772 advanced 699 6769 general +1773 advanced 700 345 general +1774 advanced 700 1833 general +1775 advanced 700 1540 general +1776 advanced 700 1910 general +1777 advanced 700 5677 general +1778 advanced 700 6644 general +1779 advanced 700 6769 general +1780 advanced 701 1540 general +1781 advanced 701 5677 general +1782 advanced 701 6769 general +1783 advanced 702 1540 general +1784 advanced 702 5677 general +1785 advanced 702 6769 general +1786 advanced 703 1910 general +1787 advanced 704 345 general +1788 advanced 704 1540 general +1789 advanced 704 1910 general +1790 advanced 704 6644 general +1791 advanced 705 345 general +1792 advanced 705 1540 general +1793 advanced 705 1910 general +1794 advanced 706 1540 general +1795 advanced 707 5677 general +1796 advanced 707 6769 general +1797 advanced 708 5677 general +1798 advanced 709 345 general +1799 advanced 709 1833 general +1800 advanced 709 1540 general +1801 advanced 709 1910 general +1802 advanced 709 5677 general +1803 advanced 709 6644 general +1804 advanced 710 345 general +1805 advanced 711 345 general +1806 advanced 711 1833 general +1807 advanced 711 1540 general +1808 advanced 712 345 general +1809 advanced 712 1833 general +1810 advanced 712 1540 general +1811 advanced 713 345 general +1812 advanced 713 1833 general +1813 advanced 713 1540 general +1814 advanced 713 1910 general +1815 advanced 713 5677 general +1816 advanced 713 6644 general +1817 advanced 714 345 general +1818 advanced 714 1540 general +1819 advanced 714 6644 general +1820 advanced 714 6769 general +1821 advanced 715 345 general +1822 advanced 715 1540 general +1823 advanced 715 3151 general +1824 advanced 715 6644 general +1825 advanced 716 5677 general +1826 advanced 716 6769 general +1827 advanced 717 5677 general +1828 advanced 717 6769 general +1829 advanced 718 1833 general +1830 advanced 718 1954 general +1831 advanced 718 2854 general +1832 advanced 718 1540 general +1833 advanced 718 1910 general +1834 advanced 718 5677 general +1835 advanced 718 6644 general +1836 advanced 719 5677 general +1837 advanced 719 6769 general +1838 advanced 720 345 general +1839 advanced 720 1833 general +1840 advanced 720 1540 general +1841 advanced 720 1910 general +1842 advanced 720 6644 general +1843 advanced 720 6769 general +1844 advanced 721 345 general +1845 advanced 721 1833 general +1846 advanced 721 1540 general +1847 advanced 721 1910 general +1848 advanced 721 6644 general +1849 advanced 721 6769 general +1850 advanced 722 345 general +1851 advanced 722 1540 general +1852 advanced 722 6769 general +1853 advanced 723 5677 general +1854 advanced 724 5677 general +1855 advanced 724 6769 general +1856 advanced 725 1540 general +1857 advanced 725 5677 general +1858 advanced 725 6769 general +1859 advanced 726 5677 general +1860 advanced 727 345 general +1861 advanced 727 1833 general +1862 advanced 727 1540 general +1863 advanced 727 5677 general +1864 advanced 727 6644 general +1865 advanced 728 1833 general +1866 advanced 728 1540 general +1867 advanced 729 1833 general +1868 advanced 729 1954 general +1869 advanced 729 1540 general +1870 advanced 730 345 general +1871 advanced 730 1833 general +1872 advanced 730 1954 general +1873 advanced 730 1540 general +1874 advanced 730 1910 general +1875 advanced 730 5677 general +1876 advanced 730 6644 general +1877 advanced 730 6769 general +1878 advanced 731 345 general +1879 advanced 731 1833 general +1880 advanced 731 1540 general +1881 advanced 731 1910 general +1882 advanced 732 345 general +1883 advanced 732 1833 general +1884 advanced 732 1540 general +1885 advanced 732 1910 general +1886 advanced 732 5677 general +1887 advanced 732 6644 general +1888 advanced 733 345 general +1889 advanced 733 1833 general +1890 advanced 733 1540 general +1891 advanced 733 1910 general +1892 advanced 733 5677 general +1893 advanced 733 6644 general +1894 advanced 734 5677 general +1895 advanced 734 6769 general +1896 advanced 735 345 general +1897 advanced 736 7922 general +1898 advanced 737 345 general +1899 advanced 737 1833 general +1900 advanced 737 1954 general +1901 advanced 737 1540 general +1902 advanced 737 3151 general +1903 advanced 737 1910 general +1904 advanced 737 5677 general +1905 advanced 737 6059 general +1906 advanced 737 6644 general +1907 advanced 738 345 general +1908 advanced 738 1833 general +1909 advanced 738 1954 general +1910 advanced 738 1540 general +1911 advanced 738 3151 general +1912 advanced 738 1910 general +1913 advanced 738 5677 general +1914 advanced 738 6644 general +1915 advanced 739 345 general +1916 advanced 739 1833 general +1917 advanced 739 1954 general +1918 advanced 739 1540 general +1919 advanced 739 1910 general +1920 advanced 739 5677 general +1921 advanced 739 6644 general +1922 advanced 739 6769 general +1923 advanced 740 1833 general +1924 advanced 740 1540 general +1925 advanced 740 5677 general +1926 advanced 741 5677 general +1927 advanced 742 345 general +1928 advanced 742 1833 general +1929 advanced 742 1540 general +1930 advanced 742 1910 general +1931 advanced 742 5677 general +1932 advanced 743 345 general +1933 advanced 743 1833 general +1934 advanced 743 2854 general +1935 advanced 743 1540 general +1936 advanced 743 1910 general +1937 advanced 743 5677 general +1938 advanced 743 6644 general +1939 advanced 744 345 general +1940 advanced 744 1833 general +1941 advanced 744 1540 general +1942 advanced 744 1910 general +1943 advanced 744 5677 general +1944 advanced 744 6644 general +1945 advanced 745 2854 general +1946 advanced 745 5677 general +1947 advanced 746 5677 general +1948 advanced 746 6769 general +1949 advanced 747 5677 general +1950 advanced 748 5677 general +1951 advanced 748 6769 general +1952 advanced 749 5677 general +1953 advanced 749 6769 general +1954 advanced 750 1540 general +1955 advanced 750 1910 general +1956 advanced 750 6894 general +1957 advanced 751 1540 general +1958 advanced 751 6644 general +1959 advanced 752 345 general +1960 advanced 752 1833 general +1961 advanced 752 2854 general +1962 advanced 752 1540 general +1963 advanced 752 1910 general +1964 advanced 752 6644 general +1965 advanced 752 6894 general +1966 advanced 753 5677 general +1967 advanced 753 6769 general +1968 advanced 754 1540 general +1969 advanced 755 7922 general +1970 advanced 756 5641 general +1971 advanced 756 5677 general +1972 advanced 757 5677 general +1973 advanced 758 345 general +1974 advanced 758 1230 general +1975 advanced 758 1833 general +1976 advanced 758 1540 general +1977 advanced 758 3151 general +1978 advanced 758 1910 general +1979 advanced 758 5677 general +1980 advanced 758 6644 general +1981 advanced 758 6769 general +1982 advanced 758 6894 general +1983 advanced 759 345 general +1984 advanced 759 5677 general +1985 advanced 760 5677 general +1986 advanced 761 5677 general +1987 advanced 761 6769 general +1988 advanced 762 2854 general +1989 advanced 762 5677 general +1990 advanced 763 5677 general +1991 advanced 763 6769 general +1992 advanced 764 5677 general +1993 advanced 765 5677 general +1994 advanced 766 5677 general +1995 advanced 767 5677 general +1996 advanced 768 1540 general +1997 advanced 769 345 general +1998 advanced 769 1833 general +1999 advanced 769 1540 general +2000 advanced 769 1910 general +2001 advanced 769 6644 general +2002 advanced 770 5677 general +2003 advanced 771 5677 general +2004 advanced 772 345 general +2005 advanced 772 1540 general +2006 advanced 772 1910 general +2007 advanced 772 6644 general +2008 advanced 773 345 general +2009 advanced 773 1833 general +2010 advanced 773 1954 general +2011 advanced 773 1540 general +2012 advanced 773 1910 general +2013 advanced 773 6644 general +2014 advanced 773 6769 general +2015 advanced 774 5677 general +2016 advanced 775 5677 general +2017 advanced 775 6769 general +2018 advanced 776 5677 general +2019 advanced 776 6769 general +2020 advanced 777 345 general +2021 advanced 777 1833 general +2022 advanced 777 1540 general +2023 advanced 777 5677 general +2024 advanced 777 6769 general +2025 advanced 778 5677 general +2026 advanced 779 5677 general +2027 advanced 779 6769 general +2028 advanced 780 6769 general +2029 advanced 781 345 general +2030 advanced 781 1540 general +2031 advanced 781 1910 general +2032 advanced 781 5677 general +2033 advanced 781 6644 general +2034 advanced 782 345 general +2035 advanced 783 1540 general +2036 advanced 783 5677 general +2037 advanced 783 6769 general +2038 advanced 784 1540 general +2039 advanced 785 345 general +2040 advanced 785 1833 general +2041 advanced 785 1540 general +2042 advanced 785 1910 general +2043 advanced 785 5677 general +2044 advanced 786 5677 general +2045 advanced 786 6769 general +2046 advanced 787 345 general +2047 advanced 787 1833 general +2048 advanced 787 1540 general +2049 advanced 787 1910 general +2050 advanced 787 6644 general +2051 advanced 787 6769 general +2052 advanced 788 5677 general +2053 advanced 788 6769 general +2054 advanced 789 1540 general +2055 advanced 790 2854 general +2056 advanced 791 5677 general +2057 advanced 792 5677 general +2058 advanced 793 1833 general +2059 advanced 793 1540 general +2060 advanced 793 6769 general +2061 advanced 794 1910 general +2062 advanced 795 5677 general +2063 advanced 795 6769 general +2064 advanced 796 345 general +2065 advanced 796 1833 general +2066 advanced 796 1540 general +2067 advanced 797 1833 general +2068 advanced 797 1954 general +2069 advanced 797 1540 general +2070 advanced 798 345 general +2071 advanced 800 5677 general +2072 advanced 801 5677 general +2073 advanced 802 5351 general +2075 advanced 804 5677 general +2076 advanced 805 2521 general +2077 advanced 805 5677 general +2081 intermediate 807 1833 general +2082 native 807 1540 general +2083 fluent 808 1833 general +2084 native 808 1540 general +2085 fluent 809 1833 general +2087 fluent 811 1833 general +2088 native 812 620 general +2089 fluent 812 1833 general +2090 native 813 620 general +2091 fluent 813 1833 general +2094 fluent 815 1833 general +2095 fluent 815 1540 general +2096 native 815 5677 general +2097 fluent 816 1833 general +2098 native 817 1833 general +2099 native 817 1540 general +2100 fluent 818 1833 general +2101 native 818 1540 general +2102 native 819 620 general +2103 native 819 1833 general +2104 native 820 1833 general +2105 fluent 821 1833 general +2106 native 821 6644 general +2107 native 822 1833 general +2108 native 823 620 general +2109 native 823 1833 general +2110 native 824 1833 general +2111 native 825 1833 general +2112 native 826 1833 general +2113 fluent 826 1540 general +2114 fluent 827 1833 general +2115 fluent 828 1833 general +2116 fluent 829 1833 general +2117 native 829 6644 general +2118 fluent 830 1833 general +2119 fluent 831 1833 general +2120 intermediate 832 345 general +2121 fluent 832 1833 general +2122 native 833 1833 general +2123 native 834 345 general +2124 native 834 1833 general +2125 fluent 835 1833 general +2126 native 835 6644 general +2127 fluent 836 1833 general +2128 fluent 837 1833 general +2129 native 837 1910 general +2130 intermediate 837 1540 general +2131 fluent 838 1833 general +2132 fluent 839 1833 general +2133 native 839 1540 general +2134 fluent 840 1833 general +2135 native 841 1833 general +2136 fluent 842 1833 general +2137 native 842 1910 general +2138 intermediate 842 1540 general +2139 native 843 620 general +2140 fluent 843 1833 general +2141 fluent 844 1833 general +2142 native 845 620 general +2143 fluent 845 1833 general +2144 fluent 846 1833 general +2145 native 847 1833 general +2146 native 847 6644 general +2147 native 848 620 general +2148 native 848 1833 general +2149 native 849 620 general +2150 fluent 849 1833 general +2151 fluent 850 1833 general +2152 fluent 850 3151 general +2153 native 850 6644 general +2154 fluent 851 1833 general +2155 native 851 1540 general +2156 fluent 852 1833 general +2157 fluent 853 1833 general +2158 intermediate 853 6769 general +2159 native 854 620 general +2160 native 854 1833 general +2161 native 855 1833 general +2162 fluent 856 1833 general +2163 fluent 856 1540 general +2164 native 857 1833 general +2165 fluent 858 1833 general +2166 native 859 1833 general +2167 intermediate 860 1833 general +2168 native 861 345 general +2169 native 861 620 general +2170 native 861 1833 general +2171 native 862 620 general +2172 native 862 1833 general +2173 native 863 1833 general +2174 fluent 864 1833 general +2175 native 865 1833 general +2176 native 866 620 general +2177 fluent 866 1833 general +2178 native 867 345 general +2179 fluent 867 1833 general +2180 fluent 868 1833 general +2181 native 868 1540 general +2182 native 869 1833 general +2183 fluent 870 1833 general +2184 fluent 870 1540 general +2185 native 870 5677 general +2186 fluent 871 1833 general +2187 fluent 872 1833 general +2188 fluent 872 1540 general +2189 intermediate 872 5677 general +2190 native 873 345 general +2191 intermediate 873 1833 general +2192 fluent 873 1540 general +2193 fluent 874 1833 general +2194 fluent 874 1540 general +2195 native 874 5677 general +2196 native 874 6769 general +2197 native 875 1833 general +2198 fluent 876 1833 general +2199 native 876 5677 general +2200 fluent 877 1833 general +2201 fluent 877 1540 general +2202 fluent 878 1833 general +2203 native 878 1910 general +2204 fluent 879 1833 general +2205 native 879 6644 general +2206 fluent 880 1833 general +2207 native 880 5677 general +2208 native 881 345 general +2209 fluent 881 1833 general +2210 fluent 882 1833 general +2211 fluent 883 1833 general +2212 fluent 883 1540 general +2213 native 884 345 general +2214 native 884 1910 general +2215 native 884 5677 general +2216 native 884 6644 general +2217 native 885 1833 general +2218 fluent 885 1540 general +2219 fluent 886 1833 general +2220 fluent 887 1833 general +2221 native 887 1540 general +2222 fluent 888 1833 general +2223 native 888 5677 general +2224 native 889 620 general +2225 native 889 1833 general +2226 fluent 890 1833 general +2227 native 890 5677 general +2228 native 890 6769 general +2229 fluent 891 1833 general +2230 native 891 1540 general +2231 native 892 1833 general +2232 fluent 892 1540 general +2233 fluent 893 1833 general +2234 fluent 893 6059 general +2235 intermediate 894 345 general +2236 fluent 894 1833 general +2237 intermediate 894 1910 general +2238 fluent 894 1540 general +2239 intermediate 894 5677 general +2240 intermediate 894 6769 general +2241 native 896 1833 general +2242 fluent 896 1540 general +2243 fluent 897 1833 general +2244 intermediate 897 1954 general +2245 native 897 1540 general +2246 fluent 898 1833 general +2247 native 898 1540 general +2248 native 899 620 general +2249 native 899 1833 general +2250 fluent 900 1833 general +2251 native 900 1540 general +2252 fluent 900 6011 general +2253 fluent 901 1833 general +2254 native 901 1540 general +2255 native 902 1833 general +2256 fluent 903 1833 general +2257 native 903 5677 general +2258 fluent 904 1833 general +2259 native 905 620 general +2260 native 905 1833 general +2261 fluent 906 1833 general +2262 native 906 1540 general +2263 native 907 345 general +2264 fluent 907 1833 general +2265 intermediate 907 1540 general +2266 fluent 909 1833 general +2267 native 911 345 general +2268 native 911 620 general +2269 native 912 345 general +2270 fluent 912 1833 general +2271 fluent 913 1833 general +2272 native 913 1540 general +2273 intermediate 914 1833 general +2274 native 914 1910 general +2275 native 915 620 general +2276 native 915 1833 general +2277 native 916 620 general +2278 fluent 916 1833 general +2279 native 916 6644 general +2280 native 917 345 general +2281 native 917 1833 general +2282 fluent 918 1833 general +2283 native 918 1910 general +2284 native 919 1910 general +2285 native 920 1833 general +2286 native 921 1954 general +2287 fluent 921 1540 general +2288 intermediate 922 1833 general +2289 native 922 1540 general +2290 native 922 5677 general +2291 intermediate 922 6769 general +2292 native 923 1833 general +2293 native 923 1540 general +2294 fluent 924 1833 general +2295 native 924 6644 general +2296 native 925 620 general +2297 fluent 925 1833 general +2298 native 926 1833 general +2299 native 927 1910 general +2300 fluent 927 5677 general +2301 fluent 928 1833 general +2302 native 928 5677 general +2303 fluent 929 1833 general +2304 native 929 1540 general +2305 native 930 620 general +2306 fluent 931 1833 general +2307 native 931 5677 general +2308 fluent 932 1833 general +2309 fluent 932 1540 general +2310 native 932 5677 general +2311 native 933 620 general +2312 fluent 933 1833 general +2313 native 933 5677 general +2314 intermediate 934 1833 general +2315 native 934 5677 general +2316 fluent 935 1833 general +2317 native 935 5677 general +2318 fluent 936 1833 general +2319 intermediate 936 1540 general +2320 native 936 5677 general +2321 native 936 6769 general +2322 fluent 937 1833 general +2323 fluent 937 1540 general +2324 fluent 937 5677 general +2325 fluent 937 6769 general +2326 native 938 620 general +2327 fluent 938 1833 general +2328 fluent 939 1833 general +2329 native 939 6644 general +2330 fluent 940 1833 general +2331 fluent 941 1833 general +2332 fluent 941 1954 general +2333 fluent 941 1540 general +2334 fluent 941 6011 general +2335 native 942 345 general +2336 fluent 942 1833 general +2337 native 944 1833 general +2338 fluent 945 1833 general +2339 native 946 5677 general +2340 native 946 6769 general +2341 fluent 947 1833 general +2342 native 947 5677 general +2343 fluent 948 1833 general +2344 fluent 949 1833 general +2345 fluent 949 1540 general +2346 fluent 950 1833 general +2347 fluent 950 1540 general +2348 fluent 951 1833 general +2349 fluent 951 1910 general +2350 fluent 952 1833 general +2351 fluent 952 1540 general +2352 fluent 953 1833 general +2353 fluent 953 1540 general +2354 fluent 953 5677 general +2355 fluent 954 1833 general +2356 fluent 955 1833 general +2357 fluent 955 1540 general +2358 fluent 956 1833 general +2359 fluent 956 1540 general +2360 fluent 957 1833 general +2361 fluent 957 1540 general +2362 fluent 958 1833 general +2363 fluent 959 1833 general +2364 fluent 960 345 general +2365 fluent 960 1833 general +2366 fluent 960 1540 general +2367 fluent 961 1833 general +2368 fluent 961 1540 general +2369 fluent 961 5677 general +2370 fluent 962 1833 general +2371 fluent 962 1540 general +2372 fluent 963 345 general +2373 fluent 963 1540 general +2374 fluent 964 1833 general +2375 fluent 964 1540 general +2376 fluent 965 345 general +2377 fluent 965 1833 general +2378 fluent 966 345 general +2379 fluent 966 1833 general +2380 fluent 967 1833 general +2381 fluent 967 1540 general +2382 fluent 968 1833 general +2383 fluent 969 345 general +2384 fluent 969 1833 general +2385 fluent 969 1540 general +2386 fluent 971 1833 general +2387 fluent 971 1540 general +2388 fluent 971 5677 general +2389 fluent 972 1833 general +2390 fluent 972 1540 general +2391 fluent 972 6644 general +2392 fluent 973 1833 general +2393 fluent 974 1833 general +2394 fluent 974 1540 general +2395 fluent 974 6644 general +2396 fluent 975 1833 general +2397 fluent 975 1910 general +2398 fluent 975 1540 general +2399 fluent 976 1833 general +2400 native 976 1910 general +2401 fluent 976 1540 general +2402 fluent 977 1833 general +2403 native 977 1954 general +2404 fluent 977 1540 general +2405 fluent 978 1833 general +2406 fluent 978 1910 general +2407 fluent 978 1540 general +2408 fluent 979 1833 general +2409 fluent 980 1833 general +2410 fluent 980 1910 general +2411 fluent 980 1540 general +2412 fluent 981 1833 general +2413 fluent 981 1540 general +2414 fluent 982 1833 general +2415 fluent 982 5677 general +2416 fluent 983 1833 general +2417 fluent 983 1540 general +2418 fluent 984 1833 general +2419 intermediate 985 1833 general +2420 fluent 989 1833 general +2421 fluent 989 1540 general +2422 fluent 989 5677 general +2423 fluent 990 1833 general +2424 fluent 990 1540 general +2425 fluent 991 1833 general +2426 fluent 991 1540 general +2427 fluent 992 1833 general +2428 fluent 993 1540 general +2429 fluent 994 1833 general +2430 fluent 994 1910 general +2431 fluent 994 1540 general +2432 fluent 995 1833 general +2433 fluent 995 1540 general +2434 fluent 996 1833 general +2435 fluent 996 1540 general +2436 fluent 997 1833 general +2437 fluent 998 1833 general +2438 fluent 998 1910 general +2439 fluent 998 6644 general +2440 fluent 999 345 general +2441 fluent 999 1540 general +2442 fluent 1000 1833 general +2443 fluent 1001 1833 general +2444 fluent 1002 345 general +2445 fluent 1002 1833 general +2446 fluent 1002 1540 general +2447 fluent 1003 345 general +2448 fluent 1003 1833 general +2449 fluent 1004 1833 general +2450 fluent 1004 1910 general +2451 fluent 1004 1540 general +2452 fluent 1004 5677 general +2453 fluent 1005 1833 general +2454 fluent 1005 1540 general +2455 fluent 1005 6644 general +2456 fluent 1006 1833 general +2457 fluent 1007 1833 general +2458 fluent 1007 1540 general +2459 fluent 1007 6644 general +2460 fluent 1008 1833 general +2461 fluent 1009 1833 general +2462 fluent 1009 6644 general +2463 fluent 1010 1833 general +2464 fluent 1010 5677 general +2465 fluent 1011 1833 general +2466 fluent 1011 1540 general +2467 fluent 1012 345 general +2468 fluent 1012 1833 general +2469 fluent 1012 1540 general +2470 fluent 1013 1833 general +2471 fluent 1014 1833 general +2472 fluent 1015 345 general +2473 fluent 1015 1833 general +2474 fluent 1016 1833 general +2475 fluent 1016 1910 general +2476 fluent 1017 1833 general +2477 fluent 1017 6644 general +2478 fluent 1018 5677 general +2479 fluent 1019 1833 general +2480 fluent 1019 6644 general +2481 fluent 1020 345 general +2482 fluent 1021 1833 general +2483 fluent 1021 6644 general +2484 fluent 1022 1833 general +2485 fluent 1022 1910 general +2486 fluent 1023 1833 general +2487 fluent 1023 1540 general +2488 fluent 1024 1833 general +2489 fluent 1024 1540 general +2490 fluent 1024 5677 general +2491 fluent 1025 1833 general +2492 fluent 1026 1833 general +2493 fluent 1026 1540 general +2494 fluent 1027 1833 general +2495 fluent 1028 345 general +2496 fluent 1028 1833 general +2497 fluent 1029 1833 general +2498 fluent 1029 5677 general +2499 fluent 1029 6769 general +2500 fluent 1030 345 general +2501 fluent 1030 1833 general +2502 fluent 1031 1833 general +2503 fluent 1031 6644 general +2504 fluent 1032 1833 general +2505 fluent 1032 1540 general +2506 fluent 1033 5677 general +2507 fluent 1034 1833 general +2508 fluent 1035 1833 general +2509 fluent 1035 1540 general +2510 fluent 1036 1833 general +2511 fluent 1036 5677 general +2512 fluent 1036 6769 general +2513 fluent 1037 1833 general +2514 native 1038 345 general +2515 fluent 1038 1833 general +2516 fluent 1039 5677 general +2517 fluent 1040 345 general +2518 fluent 1041 345 general +2519 fluent 1042 5677 general +2520 fluent 1042 6769 general +2521 fluent 1043 1833 general +2522 fluent 1043 1910 general +2523 fluent 1043 1540 general +2524 fluent 1044 1833 general +2525 fluent 1044 6644 general +2526 fluent 1045 1833 general +2527 fluent 1045 1540 general +2528 fluent 1046 1833 general +2529 fluent 1046 1540 general +2530 fluent 1047 1833 general +2531 fluent 1047 5677 general +2532 fluent 1048 1833 general +2533 fluent 1048 1540 general +2534 fluent 1049 5677 general +2535 fluent 1049 6769 general +2536 fluent 1050 5677 general +2537 fluent 1050 6769 general +2538 fluent 1051 1833 general +2539 fluent 1051 6644 general +2540 fluent 1052 1833 general +2541 fluent 1052 1910 general +2542 fluent 1053 1833 general +2543 fluent 1053 1540 general +2544 fluent 1054 1833 general +2545 fluent 1054 1540 general +2546 fluent 1055 1910 general +2547 fluent 1056 1833 general +2548 fluent 1057 1833 general +2549 fluent 1057 1910 general +2550 fluent 1058 345 general +2551 fluent 1058 1833 general +2552 fluent 1059 345 general +2553 fluent 1059 1833 general +2554 fluent 1060 345 general +2555 fluent 1060 1833 general +2556 fluent 1062 1833 general +2557 fluent 1062 1540 general +2558 fluent 1062 5677 general +2559 fluent 1063 1833 general +2560 fluent 1063 1540 general +2561 fluent 1064 1833 general +2562 fluent 1064 1540 general +2563 fluent 1064 5677 general +2564 fluent 1064 6769 general +2565 fluent 1065 1910 general +2566 fluent 1066 1910 general +2567 fluent 1067 345 general +2568 fluent 1067 1833 general +2569 fluent 1068 1833 general +2570 fluent 1069 1540 general +2571 fluent 1070 1833 general +2572 fluent 1071 1833 general +2573 fluent 1071 1910 general +2574 fluent 1072 1833 general +2575 fluent 1072 5677 general +2576 fluent 1072 6769 general +2577 fluent 1073 6644 general +2578 fluent 1074 345 general +2579 fluent 1074 1833 general +2580 fluent 1075 1833 general +2581 fluent 1076 1833 general +2582 fluent 1077 1833 general +2583 fluent 1078 1833 general +2584 fluent 1078 1540 general +2585 native 1079 620 general +2586 fluent 1079 1833 general +2587 fluent 1079 2388 general +2588 fluent 1079 6819 general +2589 fluent 1080 1833 general +2590 fluent 1081 1540 general +2591 fluent 1082 1833 general +2592 fluent 1082 1910 general +2593 fluent 1082 5677 general +2594 fluent 1083 1833 general +2595 fluent 1083 1540 general +2596 fluent 1084 1833 general +2597 fluent 1084 1540 general +2598 fluent 1085 1833 general +2599 fluent 1086 1833 general +2600 fluent 1086 5677 general +2601 fluent 1086 6769 general +2602 fluent 1087 1833 general +2603 fluent 1087 1540 general +2604 fluent 1088 1833 general +2605 native 1088 5351 general +2606 fluent 1089 1833 general +2607 fluent 1090 1833 general +2608 fluent 1090 1540 general +2609 fluent 1090 6644 general +2610 fluent 1091 1833 general +2611 fluent 1091 1540 general +2612 fluent 1092 345 general +2613 fluent 1092 1833 general +2614 fluent 1093 1833 general +2615 fluent 1094 1833 general +2616 fluent 1094 1540 general +2617 fluent 1095 1833 general +2618 fluent 1096 1833 general +2619 native 1096 1954 general +2620 native 1097 620 general +2621 fluent 1097 1833 general +2622 native 1097 5677 general +2623 fluent 1098 1833 general +2624 fluent 1099 1833 general +2625 fluent 1099 1540 general +2626 fluent 1099 5677 general +2627 fluent 1100 1833 general +2628 fluent 1101 1833 general +2629 fluent 1102 1833 general +2630 fluent 1102 1910 general +2631 native 1102 5677 general +2632 fluent 1103 1833 general +2633 fluent 1104 1833 general +2634 fluent 1105 1833 general +2635 fluent 1105 1540 general +2636 native 1105 2665 general +2637 fluent 1106 1833 general +2638 fluent 1106 1540 general +2639 fluent 1107 345 general +2640 fluent 1107 1833 general +2641 fluent 1107 1540 general +2642 fluent 1108 1833 general +2643 fluent 1108 1540 general +2644 fluent 1109 1833 general +2645 fluent 1109 1954 general +2646 fluent 1109 1540 general +2647 fluent 1110 1833 general +2648 fluent 1110 1540 general +2649 fluent 1111 1833 general +2650 intermediate 1111 5677 general +2651 fluent 1112 1833 general +2652 native 1112 1540 general +2653 fluent 1113 1833 general +2654 fluent 1113 1540 general +2655 native 1113 2665 general +2656 intermediate 1113 6644 general +2657 fluent 1114 1833 general +2658 fluent 1114 1540 general +2659 fluent 1115 2521 general +2660 fluent 1115 1833 general +2661 fluent 1115 1540 general +2662 fluent 1115 5677 general +2663 native 1116 1833 general +2664 native 1117 1910 general +2665 fluent 1117 1540 general +2666 fluent 1118 1833 general +2667 fluent 1118 1954 general +2668 native 1118 1540 general +2669 native 1119 345 general +2670 fluent 1119 1833 general +2671 intermediate 1120 345 general +2672 fluent 1120 1833 general +2673 native 1120 1954 general +2674 native 1120 1540 general +2675 fluent 1121 1833 general +2676 native 1121 5677 general +2677 fluent 1122 1833 general +2678 native 1123 620 general +2679 fluent 1123 1833 general +2680 native 1123 2665 general +2681 native 1124 1833 general +2682 fluent 1125 1833 general +2683 native 1125 1954 general +2684 fluent 1126 1833 general +2685 native 1126 6644 general +2686 fluent 1127 1540 general +2687 native 1127 5677 general +2688 fluent 1128 1833 general +2689 native 1128 6894 general +2690 fluent 1129 1833 general +2691 native 1129 6644 general +2692 fluent 1130 1833 general +2693 fluent 1130 1954 general +2694 native 1130 2665 general +2695 fluent 1130 6011 general +2696 fluent 1132 1833 general +2697 native 1132 6644 general +2698 native 1135 1833 general +2699 fluent 1135 1954 general +2700 native 1135 6011 general +2701 fluent 1136 1833 general +2702 native 1136 1540 general +2703 native 1137 1833 general +2704 native 1137 1540 general +2705 native 1138 1833 general +2706 native 1138 1540 general +2707 fluent 1138 6011 general +2708 fluent 1139 345 general +2709 native 1139 1833 general +2710 fluent 1139 1954 general +2711 fluent 1139 1540 general +2712 fluent 1139 6011 general +2713 fluent 1140 1833 general +2714 native 1140 1910 general +2715 fluent 1140 2388 general +2716 fluent 1140 6819 general +2717 native 1141 345 general +2718 native 1141 620 general +2719 intermediate 1141 1833 general +2720 fluent 1142 1833 general +2721 native 1142 1954 general +2722 fluent 1143 1833 general +2723 fluent 1143 1540 general +2724 native 1143 6644 general +2725 native 1144 345 general +2726 native 1145 7790 general +2727 native 1145 1833 general +2728 native 1145 1954 general +2729 fluent 1145 1540 general +2730 fluent 1145 6011 general +2731 fluent 1146 1833 general +2732 fluent 1146 1954 general +2733 native 1146 2665 general +2734 native 1147 1833 general +2735 fluent 1148 1833 general +2736 native 1148 6011 general +2737 native 1149 1833 general +2738 fluent 1149 1954 general +2739 native 1150 1833 general +2740 native 1151 1833 general +2741 native 1152 345 general +2742 fluent 1152 1833 general +2743 native 1152 1954 general +2744 fluent 1153 1833 general +2745 native 1153 2665 general +2746 fluent 1154 1833 general +2747 native 1154 6644 general +2748 fluent 1155 1833 general +2749 native 1155 1540 general +2750 fluent 1156 1833 general +2751 fluent 1156 1540 general +2752 native 1157 1833 general +2753 native 1157 1954 general +2754 native 1157 1540 general +2755 native 1157 2665 general +2756 fluent 1158 1833 general +2757 native 1158 1954 general +2758 native 1159 1833 general +2759 fluent 1160 1833 general +2760 fluent 1160 1540 general +2761 native 1160 6644 general +2762 native 1161 1954 general +2763 native 1162 345 general +2764 fluent 1162 1833 general +2765 fluent 1162 1540 general +2766 native 1163 1833 general +2767 native 1164 1954 general +2768 fluent 1167 1833 general +2769 intermediate 1167 1954 general +2770 native 1167 1540 general +2771 native 1167 5677 general +2772 native 1168 345 general +2773 native 1168 1833 general +2774 intermediate 1168 1540 general +2775 native 1169 6011 general +2776 native 1170 1910 general +2777 native 1170 1540 general +2778 native 1171 620 general +2779 native 1171 1910 general +2780 native 1172 620 general +2781 intermediate 1172 7790 general +2782 native 1172 1833 general +2783 native 1173 1833 general +2784 fluent 1174 1954 general +2785 native 1174 1540 general +2786 fluent 1174 2665 general +2787 native 1175 1833 general +2788 fluent 1175 1540 general +2789 native 1176 1833 general +2790 fluent 1176 1540 general +2791 intermediate 1176 6011 general +2792 native 1177 1833 general +2793 intermediate 1177 5677 general +2794 fluent 1177 6059 general +2795 native 1178 620 general +2796 native 1178 1833 general +2797 native 1179 1833 general +2798 fluent 1179 1954 general +2799 intermediate 1179 2665 general +2800 native 1180 345 general +2801 native 1180 620 general +2802 fluent 1180 1833 general +2803 native 1181 1833 general +2804 native 1181 1540 general +2805 native 1183 345 general +2806 fluent 1183 1833 general +2807 fluent 1183 1540 general +2808 native 1184 345 general +2809 fluent 1184 1833 general +2810 fluent 1185 1833 general +2811 native 1185 1540 general +2812 native 1186 345 general +2813 native 1186 620 general +2814 native 1186 1833 general +2815 fluent 1187 1833 general +2816 native 1188 1833 general +2817 fluent 1188 1540 general +2818 fluent 1188 6011 general +2819 native 1189 620 general +2820 native 1189 7790 general +2821 fluent 1189 1833 general +2822 native 1191 345 general +2823 fluent 1191 1833 general +2824 intermediate 1191 1954 general +2825 native 1191 1540 general +2826 native 1192 620 general +2827 native 1192 1833 general +2828 native 1192 7922 general +2829 fluent 1193 1833 general +2830 native 1193 1540 general +2831 intermediate 1193 2665 general +2832 fluent 1194 1833 general +2833 intermediate 1194 1954 general +2834 native 1194 1540 general +2835 native 1195 1833 general +2836 intermediate 1195 1954 general +2837 fluent 1195 1540 general +2838 native 1196 620 general +2839 native 1196 1833 general +2840 native 1197 1833 general +2841 fluent 1197 1540 general +2842 native 1198 620 general +2843 fluent 1198 1833 general +2844 native 1198 5677 general +2845 fluent 1199 1833 general +2846 fluent 1199 1540 general +2847 native 1199 5677 general +2848 native 1199 6769 general +2849 fluent 1200 1833 general +2850 fluent 1200 1540 general +2851 native 1200 6011 general +2852 native 1201 1833 general +2853 native 1202 620 general +2854 fluent 1202 1833 general +2855 native 1202 7922 general +2856 native 1203 1833 general +2857 fluent 1203 1540 general +2858 fluent 1204 1833 general +2859 native 1204 1540 general +2860 native 1205 620 general +2861 native 1205 7790 general +2862 fluent 1205 1833 general +2863 fluent 1206 1833 general +2864 intermediate 1206 1954 general +2865 native 1206 1540 general +2866 fluent 1207 1833 general +2867 intermediate 1207 1954 general +2868 fluent 1207 1540 general +2869 native 1207 2665 general +2870 native 1208 620 general +2871 fluent 1208 1833 general +2872 native 1208 1910 general +2873 native 1209 7790 general +2874 fluent 1209 1833 general +2875 fluent 1209 1540 general +2876 native 1210 345 general +2877 intermediate 1210 1833 general +2878 fluent 1210 1540 general +2879 native 1211 620 general +2880 native 1211 1833 general +2881 fluent 1212 1833 general +2882 native 1212 1540 general +2883 fluent 1213 1833 general +2884 native 1213 1540 general +2885 fluent 1214 1540 general +2886 native 1214 5677 general +2887 intermediate 1215 4698 general +2888 fluent 1215 1833 general +2889 intermediate 1215 1954 general +2890 native 1215 1540 general +2891 native 1216 1833 general +2892 native 1216 1540 general +2893 intermediate 1216 6011 general +2894 fluent 1217 1833 general +2895 fluent 1217 1540 general +2896 native 1217 1910 general +2897 fluent 1218 1833 general +2898 native 1218 6819 general +2899 native 1219 1833 general +2900 native 1219 1910 general +2901 native 1219 6148 general +2902 fluent 1220 1833 general +2903 native 1220 1910 general +2904 fluent 1221 1833 general +2905 native 1221 2665 general +2906 intermediate 1221 6011 general +2907 fluent 1222 1833 general +2908 native 1222 1540 general +2909 fluent 1223 1833 general +2910 fluent 1223 1540 general +2911 native 1223 7922 general +2912 intermediate 1223 5677 general +2913 intermediate 1224 1833 general +2914 native 1224 1540 general +2915 fluent 1225 1833 general +2916 native 1225 1540 general +2917 fluent 1226 1833 general +2918 intermediate 1226 1954 general +2919 fluent 1226 1540 general +2920 native 1226 7922 general +2921 fluent 1226 6148 general +2922 native 1227 1833 general +2923 fluent 1227 1954 general +2924 intermediate 1227 2665 general +2925 fluent 1227 5677 general +2926 intermediate 1227 6011 general +2927 native 1228 345 general +2928 intermediate 1228 1833 general +2929 fluent 1228 1540 general +2930 native 1229 620 general +2931 fluent 1229 1833 general +2932 native 1229 6011 general +2933 native 1230 620 general +2934 fluent 1230 1833 general +2935 native 1230 7922 general +2936 fluent 1231 1833 general +2937 native 1231 1540 general +2938 native 1232 1833 general +2939 fluent 1232 1540 general +2940 intermediate 1232 2665 general +2941 intermediate 1232 6011 general +2942 fluent 1233 1833 general +2943 intermediate 1233 1954 general +2944 native 1233 1540 general +2945 fluent 1234 1833 general +2946 intermediate 1234 1954 general +2947 native 1234 1540 general +2948 native 1235 620 general +2949 fluent 1235 1833 general +2950 native 1235 7922 general +2951 fluent 1236 1833 general +2952 intermediate 1236 1954 general +2953 fluent 1236 1540 general +2954 native 1236 2665 general +2955 intermediate 1236 6011 general +2956 fluent 1237 1833 general +2957 native 1237 1833 general +2958 fluent 1237 1540 general +2959 fluent 1237 5351 general +2960 native 1237 5677 general +2961 native 1237 6769 general +2962 native 1238 345 general +2963 intermediate 1238 1833 general +2964 fluent 1238 1540 general +2965 fluent 1239 1833 general +2966 native 1239 1540 general +2967 native 1240 1833 general +2968 fluent 1241 1833 general +2969 native 1241 5677 general +2970 native 1241 6769 general +2971 native 1242 1833 general +2972 fluent 1243 1833 general +2973 native 1243 1540 general +2974 native 1244 620 general +2975 fluent 1244 1833 general +2976 native 1244 6148 general +2977 native 1245 620 general +2978 native 1245 1833 general +2979 intermediate 1245 1954 general +2980 fluent 1245 6011 general +2981 fluent 1246 1833 general +2982 native 1246 1540 general +2983 native 1247 1833 general +2984 fluent 1247 1954 general +2985 fluent 1247 1540 general +2986 intermediate 1247 6011 general +2987 native 1248 620 general +2988 intermediate 1248 7790 general +2989 native 1248 1833 general +2990 fluent 1249 1833 general +2991 native 1249 1540 general +2992 fluent 1249 6011 general +2993 fluent 1250 1833 general +2994 intermediate 1250 1954 general +2995 fluent 1250 1540 general +2996 native 1250 6011 general +2997 native 1251 1833 general +2998 fluent 1251 1540 general +2999 fluent 1252 1833 general +3000 intermediate 1252 1954 general +3001 native 1252 1540 general +3002 intermediate 1252 6011 general +3003 fluent 1253 1833 general +3004 intermediate 1253 1954 general +3005 native 1253 1540 general +3006 fluent 1254 1833 general +3007 fluent 1254 1540 general +3008 native 1254 2366 general +3009 fluent 1255 1833 general +3010 native 1255 1540 general +3011 fluent 1256 1833 general +3012 intermediate 1256 1954 general +3013 native 1256 1540 general +3014 native 1257 1833 general +3015 intermediate 1257 1540 general +3016 fluent 1258 1833 general +3017 native 1258 6011 general +3018 native 1259 1833 general +3019 intermediate 1259 1540 general +3020 native 1260 1833 general +3021 intermediate 1260 1540 general +3022 fluent 1261 1833 general +3023 native 1261 1540 general +3024 fluent 1261 6644 general +3025 fluent 1262 1833 general +3026 intermediate 1262 1954 general +3027 fluent 1262 1540 general +3028 native 1262 2665 general +3029 fluent 1262 6011 general +3030 native 1263 1540 general +3031 intermediate 1264 1833 general +3032 native 1264 1954 general +3033 fluent 1264 1540 general +3034 intermediate 1265 1833 general +3035 native 1265 1910 general +3036 fluent 1266 1833 general +3037 intermediate 1266 1540 general +3038 native 1266 5677 general +3039 native 1266 6769 general +3040 native 1267 345 general +3041 intermediate 1267 1833 general +3042 fluent 1267 1540 general +3043 native 1268 1833 general +3044 intermediate 1268 1540 general +3045 native 1268 1910 general +3046 native 1269 1833 general +3047 fluent 1269 1540 general +3048 native 1270 1833 general +3049 fluent 1270 7922 general +3050 native 1271 345 general +3051 intermediate 1271 1833 general +3052 intermediate 1271 1540 general +3053 intermediate 1272 1833 general +3054 native 1272 1540 general +3055 fluent 1273 1833 general +3056 intermediate 1273 1540 general +3057 native 1273 7922 general +3058 fluent 1274 1833 general +3059 native 1274 1540 general +3060 native 1274 6644 general +3061 fluent 1275 1833 general +3062 fluent 1275 1540 general +3063 native 1275 5351 general +3064 fluent 1276 1833 general +3065 intermediate 1276 1540 general +3066 native 1276 6644 general +3067 native 1277 1833 general +3068 intermediate 1277 1540 general +3069 fluent 1278 1833 general +3070 native 1278 1540 general +3071 native 1278 5677 general +3072 native 1279 1833 general +3073 intermediate 1279 1540 general +3074 fluent 1279 5351 general +3075 fluent 1280 1833 general +3076 fluent 1280 1540 general +3077 native 1280 1910 general +3078 native 1281 1833 general +3079 fluent 1281 1540 general +3080 intermediate 1281 6819 general +3081 native 1282 1833 general +3082 intermediate 1282 1540 general +3083 native 1282 6011 general +3084 native 1283 1833 general +3085 native 1283 1540 general +3086 fluent 1283 6011 general +3087 fluent 1284 1833 general +3088 native 1284 2854 general +3089 fluent 1284 1540 general +3090 intermediate 1284 5677 general +3091 native 1285 345 general +3092 fluent 1285 1833 general +3093 intermediate 1285 1954 general +3094 native 1285 1540 general +3095 fluent 1286 1833 general +3096 fluent 1286 1540 general +3097 native 1286 5677 general +3098 fluent 1287 1833 general +3099 intermediate 1287 1954 general +3100 native 1287 1540 general +3101 intermediate 1287 5677 general +3102 intermediate 1287 6011 general +3103 fluent 1288 1833 general +3104 intermediate 1288 1540 general +3105 native 1288 1910 general +3106 fluent 1288 6819 general +3107 native 1289 1833 general +3108 intermediate 1289 1954 general +3109 native 1289 1540 general +3110 fluent 1289 2665 general +3111 intermediate 1289 7922 general +3112 fluent 1289 6011 general +3113 native 1290 345 general +3114 fluent 1290 1833 general +3115 intermediate 1290 1540 general +3116 fluent 1291 1833 general +3117 native 1291 1540 general +3118 intermediate 1291 5677 general +3119 fluent 1292 1833 general +3120 intermediate 1292 1540 general +3121 native 1292 6011 general +3122 native 1293 7790 general +3123 fluent 1293 1833 general +3124 intermediate 1293 1954 general +3125 fluent 1293 1540 general +3126 fluent 1294 1833 general +3127 intermediate 1294 1954 general +3128 native 1294 1540 general +3129 fluent 1294 6011 general +3130 fluent 1295 1833 general +3131 intermediate 1295 2366 general +3132 native 1295 5677 general +3133 intermediate 1295 6769 general +3134 intermediate 1296 1833 general +3135 native 1296 1540 general +3136 fluent 1297 1833 general +3137 native 1297 1540 general +3138 native 1298 1833 general +3139 native 1298 1540 general +3140 native 1299 1833 general +3141 native 1299 1540 general +3142 intermediate 1299 2665 general +3143 fluent 1300 1833 general +3144 native 1300 2388 general +3145 fluent 1301 1833 general +3146 intermediate 1301 1540 general +3147 native 1301 7922 general +3148 intermediate 1301 6011 general +3149 intermediate 1302 1833 general +3150 fluent 1302 1540 general +3151 native 1302 1910 general +3152 fluent 1303 1833 general +3153 native 1303 1540 general +3154 fluent 1303 5677 general +3155 fluent 1304 1833 general +3156 native 1304 1540 general +3157 fluent 1304 6011 general +3158 fluent 1305 1833 general +3159 intermediate 1305 1540 general +3160 native 1305 6011 general +3161 native 1306 1833 general +3162 fluent 1306 1540 general +3163 fluent 1307 1833 general +3164 fluent 1307 1954 general +3165 native 1307 1540 general +3166 fluent 1307 7922 general +3167 fluent 1307 6059 general +3168 native 1308 345 general +3169 native 1308 1833 general +3170 native 1308 1954 general +3171 fluent 1308 1540 general +3172 fluent 1308 6011 general +3173 fluent 1309 345 general +3174 native 1309 1540 general +3175 native 1310 1833 general +3176 intermediate 1310 1540 general +3177 fluent 1310 7922 general +3178 native 1310 6011 general +3179 native 1311 1833 general +3180 intermediate 1312 7790 general +3181 fluent 1312 1833 general +3182 native 1312 1540 general +3183 native 1312 3151 general +3184 fluent 1313 1833 general +3185 intermediate 1313 1540 general +3186 native 1313 2665 general +3187 intermediate 1313 5677 general +3188 fluent 1313 6011 general +3189 fluent 1314 1833 general +3190 native 1314 1540 general +3191 fluent 1315 1833 general +3192 native 1315 6011 general +3193 native 1316 1540 general +3194 fluent 1317 1833 general +3195 native 1317 1954 general +3196 fluent 1318 1833 general +3197 native 1318 1540 general +3198 intermediate 1318 7922 general +3199 fluent 1319 1833 general +3200 fluent 1319 1540 general +3201 native 1319 6011 general +3202 fluent 1320 1833 general +3203 native 1320 6644 general +3204 fluent 1321 1833 general +3205 native 1321 6011 general +3206 native 1322 1540 general +3207 fluent 1323 1833 general +3208 intermediate 1323 1540 general +3209 native 1323 7922 general +3210 fluent 1323 5677 general +3211 intermediate 1324 345 general +3212 fluent 1324 1833 general +3213 fluent 1324 1540 general +3214 native 1324 1910 general +3215 fluent 1325 1833 general +3216 intermediate 1325 1540 general +3217 native 1325 6011 general +3218 fluent 1326 1833 general +3219 fluent 1326 1954 general +3220 native 1326 2665 general +3221 native 1327 1230 general +3222 intermediate 1327 1833 general +3223 fluent 1327 5677 general +3224 intermediate 1327 6769 general +3225 native 1328 1833 general +3226 intermediate 1328 1540 general +3227 native 1329 4698 general +3228 intermediate 1329 1833 general +3229 intermediate 1329 1540 general +3230 native 1330 1910 general +3231 fluent 1331 1833 general +3232 intermediate 1331 1540 general +3233 native 1331 6011 general +3234 native 1332 1833 general +3235 intermediate 1332 1540 general +3236 native 1332 2388 general +3237 intermediate 1333 345 general +3238 fluent 1333 1954 general +3239 native 1333 1540 general +3240 fluent 1334 1833 general +3241 fluent 1334 1540 general +3242 native 1334 6011 general +3243 fluent 1335 1833 general +3244 native 1335 1540 general +3245 fluent 1335 6894 general +3246 native 1336 345 general +3247 intermediate 1336 1833 general +3248 fluent 1336 1954 general +3249 fluent 1337 1833 general +3250 native 1337 1540 general +3251 fluent 1338 1833 general +3252 intermediate 1338 1954 general +3253 intermediate 1338 1540 general +3254 native 1338 6011 general +3255 native 1339 345 general +3256 fluent 1339 1833 general +3257 intermediate 1339 1540 general +3258 fluent 1340 1833 general +3259 intermediate 1340 1540 general +3260 native 1340 6011 general +3261 native 1341 1833 general +3262 intermediate 1341 1540 general +3263 fluent 1342 1833 general +3264 fluent 1342 1954 general +3265 native 1342 1540 general +3266 fluent 1343 1833 general +3267 intermediate 1343 1540 general +3268 native 1343 5677 general +3269 native 1343 6769 general +3270 fluent 1344 1833 general +3271 intermediate 1344 1540 general +3272 native 1344 5677 general +3273 native 1344 6769 general +3274 fluent 1345 1540 general +3275 native 1345 5677 general +3276 native 1345 6769 general +3277 intermediate 1346 1833 general +3278 intermediate 1346 1540 general +3279 native 1346 5677 general +3280 native 1346 6769 general +3281 fluent 1347 1833 general +3282 fluent 1347 1540 general +3283 native 1347 1910 general +3284 native 1348 1540 general +3285 native 1349 1833 general +3286 fluent 1349 1540 general +3287 intermediate 1349 6011 general +3288 intermediate 1350 1833 general +3289 fluent 1350 1540 general +3290 native 1350 6769 general +3291 fluent 1351 1833 general +3292 fluent 1351 1540 general +3293 native 1351 7922 general +3294 intermediate 1352 4698 general +3295 fluent 1352 1833 general +3296 fluent 1352 1954 general +3297 native 1352 1540 general +3298 intermediate 1352 6011 general +3299 native 1353 1833 general +3300 intermediate 1353 1540 general +3301 native 1353 2388 general +3302 intermediate 1354 1833 general +3303 native 1354 1540 general +3304 fluent 1355 1833 general +3305 fluent 1355 1540 general +3306 native 1355 5677 general +3307 native 1355 6769 general +3308 fluent 1356 5677 general +3309 native 1356 6769 general +3310 native 1357 1833 general +3311 native 1358 4698 general +3312 fluent 1358 1833 general +3313 intermediate 1358 1540 general +3314 fluent 1359 1833 general +3315 fluent 1359 1540 general +3316 native 1359 5677 general +3317 native 1359 6769 general +3318 fluent 1360 1833 general +3319 native 1360 1540 general +3320 native 1361 1833 general +3321 intermediate 1361 1954 general +3322 native 1361 1540 general +3323 intermediate 1361 2665 general +3324 fluent 1362 1833 general +3325 native 1362 1540 general +3326 intermediate 1362 5677 general +3327 native 1363 4698 general +3328 native 1363 1833 general +3329 fluent 1364 1833 general +3330 native 1364 1540 general +3331 native 1364 6644 general +3332 fluent 1365 1833 general +3333 native 1365 1540 general +3334 native 1366 1540 general +3335 fluent 1366 6644 general +3336 native 1367 1833 general +3337 fluent 1368 1833 general +3338 fluent 1368 1540 general +3339 native 1368 6011 general +3340 fluent 1369 1833 general +3341 intermediate 1369 1954 general +3342 native 1369 7922 general +3343 intermediate 1369 6148 general +3344 fluent 1369 6644 general +3345 native 1370 345 general +3346 fluent 1370 1833 general +3347 native 1370 1954 general +3348 fluent 1370 1540 general +3349 fluent 1371 1833 general +3350 fluent 1371 1540 general +3351 intermediate 1371 2665 general +3352 native 1371 5677 general +3353 fluent 1372 1833 general +3354 native 1372 6644 general +3355 native 1373 345 general +3356 fluent 1373 1833 general +3357 fluent 1373 1540 general +3358 native 1374 345 general +3359 native 1374 1833 general +3360 fluent 1375 1833 general +3361 native 1375 6011 general +3362 native 1376 1833 general +3363 intermediate 1376 1954 general +3364 native 1376 1540 general +3365 fluent 1376 2388 general +3366 fluent 1376 7922 general +3367 fluent 1377 1833 general +3368 native 1377 1540 general +3369 native 1378 1833 general +3370 intermediate 1378 1954 general +3371 native 1378 1540 general +3372 fluent 1378 6011 general +3373 intermediate 1379 1833 general +3374 intermediate 1379 1540 general +3375 native 1379 5677 general +3376 fluent 1380 1833 general +3377 native 1380 2854 general +3378 fluent 1380 1540 general +3379 intermediate 1380 5677 general +3380 native 1381 1833 general +3381 native 1381 1954 general +3382 fluent 1382 1833 general +3383 native 1382 1954 general +3384 fluent 1382 1540 general +3385 fluent 1382 2665 general +3386 intermediate 1382 6011 general +3387 fluent 1383 1833 general +3388 intermediate 1383 1540 general +3389 intermediate 1383 5351 general +3390 fluent 1383 5677 general +3391 native 1383 6769 general +3392 fluent 1384 1833 general +3393 intermediate 1384 1540 general +3394 native 1384 5677 general +3395 fluent 1385 1833 general +3396 native 1385 1540 general +3397 fluent 1386 1833 general +3398 native 1386 7922 general +3399 native 1386 5677 general +3400 intermediate 1386 6011 general +3401 fluent 1387 1833 general +3402 native 1387 1954 general +3403 native 1387 1540 general +3404 fluent 1388 1833 general +3405 native 1388 1540 general +3406 native 1388 5677 general +3407 intermediate 1388 6769 general +3408 fluent 1389 1833 general +3409 fluent 1389 1540 general +3410 native 1389 2665 general +3411 fluent 1390 1833 general +3412 intermediate 1390 1540 general +3413 native 1390 7922 general +3414 native 1391 1833 general +3415 native 1391 1540 general +3416 fluent 1392 1833 general +3417 intermediate 1392 1540 general +3418 intermediate 1392 2665 general +3419 native 1392 6011 general +3420 intermediate 1393 345 general +3421 fluent 1393 1833 general +3422 native 1393 1540 general +3423 intermediate 1393 6011 general +3424 native 1394 1833 general +3425 intermediate 1394 1954 general +3426 native 1394 1540 general +3427 fluent 1395 1833 general +3428 native 1395 1540 general +3429 fluent 1396 1833 general +3430 native 1396 1540 general +3431 fluent 1396 6011 general +3432 fluent 1397 1833 general +3433 native 1397 1540 general +3434 fluent 1398 1833 general +3435 intermediate 1398 1954 general +3436 native 1398 1540 general +3437 native 1399 345 general +3438 native 1400 1833 general +3439 intermediate 1400 1540 general +3440 fluent 1401 1833 general +3441 native 1401 1540 general +3442 intermediate 1401 2665 general +3443 native 1402 1833 general +3444 intermediate 1402 1540 general +3445 fluent 1403 1833 general +3446 native 1403 1540 general +3447 fluent 1403 6011 general +3448 intermediate 1404 1833 general +3449 intermediate 1404 1540 general +3450 native 1404 5677 general +3451 native 1404 6769 general +3452 native 1405 4698 general +3453 fluent 1405 1833 general +3454 intermediate 1405 1540 general +3455 intermediate 1406 4698 general +3456 native 1406 1833 general +3457 native 1406 1954 general +3458 fluent 1406 1540 general +3459 intermediate 1406 6011 general +3460 intermediate 1407 1833 general +3461 intermediate 1407 1540 general +3462 native 1407 7922 general +3463 native 1408 1833 general +3464 native 1408 1540 general +3465 intermediate 1408 5351 general +3466 fluent 1409 1833 general +3467 native 1409 1540 general +3468 intermediate 1409 6011 general +3469 fluent 1410 7790 general +3470 native 1410 1833 general +3471 intermediate 1410 1540 general +3472 fluent 1411 1833 general +3473 intermediate 1411 1540 general +3474 native 1411 7922 general +3475 intermediate 1411 6011 general +3476 fluent 1412 1833 general +3477 intermediate 1412 1540 general +3478 native 1412 7922 general +3479 native 1413 7790 general +3480 fluent 1413 1540 general +3481 fluent 1413 5677 general +3482 fluent 1414 1540 general +3483 intermediate 1414 5677 general +3484 native 1414 6769 general +3485 intermediate 1415 1833 general +3486 fluent 1415 1540 general +3487 native 1415 5677 general +3488 native 1415 6769 general +3489 fluent 1416 1540 general +3490 native 1416 5677 general +3491 native 1416 6769 general +3492 intermediate 1417 1833 general +3493 fluent 1417 1540 general +3494 native 1417 5677 general +3495 native 1417 6769 general +3496 fluent 1418 1833 general +3497 fluent 1418 1540 general +3498 fluent 1418 5351 general +3499 native 1418 5677 general +3500 native 1418 6769 general +3501 fluent 1419 1833 general +3502 fluent 1419 1540 general +3503 native 1419 5677 general +3504 native 1419 6769 general +3505 fluent 1420 1540 general +3506 native 1420 5677 general +3507 fluent 1420 6769 general +3508 intermediate 1421 1540 general +3509 native 1421 5677 general +3510 native 1421 6769 general +3511 intermediate 1422 1833 general +3512 intermediate 1422 1540 general +3513 native 1422 5677 general +3514 native 1422 6769 general +3515 native 1423 345 general +3516 fluent 1423 1833 general +3517 intermediate 1423 1954 general +3518 native 1423 1540 general +3519 fluent 1424 1833 general +3520 intermediate 1424 1540 general +3521 native 1424 2665 general +3522 intermediate 1425 1833 general +3523 fluent 1425 1540 general +3524 native 1425 6769 general +3525 intermediate 1426 1833 general +3526 intermediate 1426 1954 general +3527 fluent 1426 1540 general +3528 native 1426 5677 general +3529 native 1426 6769 general +3530 fluent 1427 1833 general +3531 native 1427 1954 general +3532 native 1428 1833 general +3533 intermediate 1428 1954 general +3534 native 1428 1540 general +3535 fluent 1429 1833 general +3536 native 1429 1540 general +3537 fluent 1430 1833 general +3538 native 1430 1540 general +3539 fluent 1430 7922 general +3540 fluent 1431 1833 general +3541 intermediate 1431 1540 general +3542 native 1431 6011 general +3543 fluent 1432 1833 general +3544 fluent 1432 7922 general +3545 native 1432 5677 general +3546 native 1432 6769 general +3547 fluent 1433 1833 general +3548 native 1433 2388 general +3549 fluent 1434 1833 general +3550 intermediate 1434 1954 general +3551 native 1434 1540 general +3552 fluent 1434 6011 general +3553 intermediate 1434 6644 general +3554 native 1435 1833 general +3555 intermediate 1435 1954 general +3556 native 1435 1540 general +3557 fluent 1435 2665 general +3558 fluent 1435 5351 general +3559 intermediate 1436 1833 general +3560 native 1436 1540 general +3561 intermediate 1436 1910 general +3562 fluent 1437 1833 general +3563 intermediate 1437 1954 general +3564 native 1437 1540 general +3565 intermediate 1438 345 general +3566 native 1438 1833 general +3567 native 1438 1540 general +3568 native 1439 1833 general +3569 native 1439 1540 general +3570 fluent 1440 1833 general +3571 fluent 1440 1540 general +3572 fluent 1440 2665 general +3573 native 1440 5351 general +3574 native 1441 345 general +3575 fluent 1441 1833 general +3576 intermediate 1441 1540 general +3577 intermediate 1441 5677 general +3578 native 1442 1833 general +3579 native 1443 1833 general +3580 intermediate 1443 1540 general +3581 native 1444 1833 general +3582 native 1445 1833 general +3583 native 1445 1540 general +3584 intermediate 1445 2665 general +3585 native 1446 1833 general +3586 intermediate 1446 1540 general +3587 fluent 1447 1833 general +3588 native 1447 1540 general +3589 intermediate 1447 6011 general +3590 intermediate 1448 1833 general +3591 native 1448 6644 general +3592 fluent 1449 345 general +3593 native 1449 1833 general +3594 fluent 1449 1540 general +3595 advanced 1449 7922 general +3596 native 1449 1910 general +3597 fluent 1449 6644 general +3598 fluent 1450 1540 general +3599 native 1450 5677 general +3600 fluent 1451 1833 general +3601 intermediate 1451 1540 general +3602 native 1451 6644 general +3603 fluent 1452 1833 general +3604 intermediate 1452 1540 general +3605 native 1452 6644 general +3606 fluent 1453 1833 general +3607 native 1453 1540 general +3608 native 1454 1833 general +3609 intermediate 1454 1954 general +3610 intermediate 1454 1540 general +3611 fluent 1454 2665 general +3612 fluent 1455 1833 general +3613 intermediate 1455 1540 general +3614 native 1455 7922 general +3615 native 1455 5677 general +3616 fluent 1455 6644 general +3617 native 1456 1540 general +3618 fluent 1456 5677 general +3619 intermediate 1456 6769 general +3620 native 1457 1833 general +3621 fluent 1457 2665 general +3622 intermediate 1458 345 general +3623 native 1458 1833 general +3624 native 1458 1540 general +3625 intermediate 1459 345 general +3626 fluent 1459 1833 general +3627 native 1459 1540 general +3628 fluent 1460 1833 general +3629 native 1460 1540 general +3630 fluent 1461 1833 general +3631 fluent 1461 1540 general +3632 native 1461 6011 general +3633 fluent 1462 1833 general +3634 native 1462 7922 general +3635 fluent 1463 1833 general +3636 fluent 1463 1540 general +3637 native 1463 5351 general +3638 native 1464 1833 general +3639 intermediate 1464 1540 general +3640 fluent 1465 1833 general +3641 native 1465 1540 general +3642 native 1465 5677 general +3643 fluent 1466 1833 general +3644 intermediate 1466 1954 general +3645 native 1466 1540 general +3646 intermediate 1467 1833 general +3647 fluent 1467 1540 general +3648 native 1467 5677 general +3649 fluent 1468 1833 general +3650 native 1468 1540 general +3651 intermediate 1468 5351 general +3652 fluent 1469 1833 general +3653 fluent 1469 1910 general +3654 intermediate 1469 6819 general +3655 fluent 1470 1833 general +3656 fluent 1470 1954 general +3657 intermediate 1470 1540 general +3658 native 1470 6011 general +3659 native 1471 1833 general +3660 intermediate 1471 1540 general +3661 fluent 1471 2665 general +3662 fluent 1471 6011 general +3663 fluent 1472 1833 general +3664 intermediate 1472 1540 general +3665 native 1472 6644 general +3666 fluent 1473 1833 general +3667 fluent 1473 1540 general +3668 native 1473 2388 general +3669 fluent 1474 1833 general +3670 native 1474 1954 general +3671 native 1474 1540 general +3672 fluent 1475 1833 general +3673 native 1475 1540 general +3674 native 1476 1833 general +3675 fluent 1477 1833 general +3676 intermediate 1477 1540 general +3677 native 1477 2388 general +3678 native 1477 7922 general +3679 native 1477 6819 general +3680 fluent 1478 1540 general +3681 native 1478 6011 general +3682 native 1479 345 general +3683 fluent 1479 1833 general +3684 intermediate 1479 1540 general +3685 native 1480 1833 general +3686 intermediate 1480 1540 general +3687 native 1481 1833 general +3688 fluent 1481 1540 general +3689 native 1482 1833 general +3690 fluent 1482 1540 general +3691 native 1483 1833 general +3692 intermediate 1483 1954 general +3693 native 1484 1833 general +3694 intermediate 1485 1833 general +3695 intermediate 1485 1540 general +3696 native 1485 1910 general +3697 intermediate 1486 345 general +3698 fluent 1486 1833 general +3699 intermediate 1486 1540 general +3700 intermediate 1486 2388 general +3701 fluent 1486 2665 general +3702 native 1486 1910 general +3703 intermediate 1486 6644 general +3704 fluent 1486 6819 general +3705 native 1487 1833 general +3706 fluent 1487 1540 general +3707 intermediate 1487 6011 general +3708 native 1488 1833 general +3709 intermediate 1488 1954 general +3710 fluent 1488 1540 general +3711 native 1489 1833 general +3712 fluent 1490 1833 general +3713 intermediate 1490 1954 general +3714 native 1490 1540 general +3715 intermediate 1490 6011 general +3716 native 1491 1833 general +3717 native 1491 1540 general +3718 fluent 1491 6011 general +3719 fluent 1492 1833 general +3720 native 1492 1540 general +3721 fluent 1493 1833 general +3722 intermediate 1493 1540 general +3723 native 1493 6011 general +3724 native 1494 345 general +3725 fluent 1494 1833 general +3726 intermediate 1494 1540 general +3727 native 1495 1833 general +3728 fluent 1495 7922 general +3729 intermediate 1495 6011 general +3730 native 1496 345 general +3731 fluent 1496 1833 general +3732 fluent 1496 1540 general +3733 fluent 1497 1833 general +3734 intermediate 1497 1954 general +3735 native 1497 1540 general +3736 native 1498 345 general +3737 native 1498 2521 general +3738 native 1498 1833 general +3739 native 1498 1540 general +3740 native 1498 6644 general +3741 native 1500 1833 general +3742 fluent 1500 1954 general +3743 intermediate 1500 2665 general +3744 intermediate 1500 7922 general +3745 native 1501 1833 general +3746 intermediate 1501 1540 general +3747 native 1502 1833 general +3748 intermediate 1502 1540 general +3749 native 1503 345 general +3750 fluent 1503 1833 general +3751 native 1503 1540 general +3752 fluent 1504 1833 general +3753 intermediate 1504 1954 general +3754 native 1504 1540 general +3755 fluent 1505 1833 general +3756 intermediate 1505 1954 general +3757 native 1505 1540 general +3758 native 1506 7922 general +3759 fluent 1506 1833 general +3760 native 1506 1540 general +3761 native 1507 4698 general +3762 fluent 1507 1833 general +3763 fluent 1507 1540 general +3764 intermediate 1508 1540 general +3765 native 1508 5677 general +3766 fluent 1508 6769 general +3767 intermediate 1509 1833 general +3768 intermediate 1509 1540 general +3769 fluent 1509 5677 general +3770 native 1509 6769 general +3771 intermediate 1510 1540 general +3772 native 1510 5677 general +3773 native 1510 6769 general +3774 fluent 1511 1833 general +3775 intermediate 1511 1540 general +3776 native 1511 5677 general +3777 fluent 1512 1833 general +3778 fluent 1512 1540 general +3779 intermediate 1512 7922 general +3780 native 1512 5677 general +3781 native 1512 6769 general +3782 fluent 1513 1833 general +3783 fluent 1513 1540 general +3784 native 1513 5677 general +3785 native 1513 6769 general +3786 fluent 1514 1833 general +3787 intermediate 1514 1540 general +3788 native 1514 5677 general +3789 native 1514 6769 general +3790 fluent 1515 1833 general +3791 intermediate 1515 1540 general +3792 native 1515 6644 general +3793 native 1516 1833 general +3794 intermediate 1516 1540 general +3795 native 1516 2388 general +3796 native 1516 5140 general +3797 native 1516 6819 general +3798 fluent 1517 1833 general +3799 intermediate 1517 1540 general +3800 native 1517 5677 general +3801 native 1517 6769 general +3802 fluent 1518 1833 general +3803 intermediate 1518 1954 general +3804 native 1518 1540 general +3805 native 1519 1833 general +3806 intermediate 1519 1540 general +3807 fluent 1520 1833 general +3808 intermediate 1520 1540 general +3809 intermediate 1520 5351 general +3810 native 1520 5677 general +3811 native 1520 6769 general +3812 fluent 1521 1833 general +3813 intermediate 1521 1540 general +3814 native 1521 5677 general +3815 native 1522 345 general +3816 fluent 1522 1833 general +3817 intermediate 1522 1540 general +3818 intermediate 1522 1807 general +3819 fluent 1523 1833 general +3820 intermediate 1523 1954 general +3821 native 1523 1540 general +3822 fluent 1523 2665 general +3823 intermediate 1523 6011 general +3824 native 1524 1833 general +3825 fluent 1524 1540 general +3826 native 1524 5677 general +3827 fluent 1524 6769 general +3828 fluent 1525 1833 general +3829 intermediate 1525 1954 general +3830 native 1525 1540 general +3831 intermediate 1526 1540 general +3832 native 1526 5677 general +3833 fluent 1526 6769 general +3834 fluent 1527 1833 general +3835 intermediate 1527 1954 general +3836 native 1527 1540 general +3837 intermediate 1527 6011 general +3838 fluent 1529 1833 general +3839 native 1529 1540 general +3840 native 1529 6644 general +3841 intermediate 1530 1540 general +3842 fluent 1530 5677 general +3843 native 1530 6769 general +3844 intermediate 1531 1540 general +3845 native 1531 5677 general +3846 fluent 1531 6769 general +3847 intermediate 1532 1540 general +3848 native 1532 5677 general +3849 native 1532 6769 general +3850 fluent 1533 1833 general +3851 intermediate 1533 1540 general +3852 native 1533 6644 general +3853 fluent 1534 1833 general +3854 native 1534 1540 general +3855 intermediate 1534 1807 general +3856 fluent 1535 1833 general +3857 native 1535 1954 general +3858 intermediate 1535 1540 general +3859 fluent 1535 6011 general +3860 native 1536 345 general +3861 fluent 1536 1833 general +3862 fluent 1536 1540 general +3863 intermediate 1536 5677 general +3864 native 1537 7790 general +3865 fluent 1537 1833 general +3866 intermediate 1537 1540 general +3867 fluent 1538 5677 general +3868 native 1538 6769 general +3869 native 1539 345 general +3870 fluent 1539 1833 general +3871 intermediate 1539 1540 general +3872 native 1540 1833 general +3873 native 1540 6644 general +3874 intermediate 1541 1833 general +3875 intermediate 1541 1540 general +3876 native 1541 5677 general +3877 fluent 1542 1833 general +3878 intermediate 1542 1954 general +3879 intermediate 1542 1540 general +3880 native 1542 2665 general +3881 fluent 1543 1540 general +3882 native 1543 5677 general +3883 native 1543 6769 general +3884 fluent 1544 1833 general +3885 intermediate 1544 1954 general +3886 fluent 1544 1540 general +3887 native 1544 2665 general +3888 fluent 1545 1833 general +3889 intermediate 1545 1954 general +3890 native 1545 1540 general +3891 native 1546 1833 general +3892 fluent 1546 1540 general +3893 native 1546 2388 general +3894 intermediate 1546 7922 general +3895 native 1546 6819 general +3896 fluent 1547 1833 general +3897 native 1547 1540 general +3898 fluent 1548 1833 general +3899 native 1548 1540 general +3900 intermediate 1548 6011 general +3901 fluent 1549 1833 general +3902 fluent 1549 1540 general +3903 native 1549 5677 general +3904 native 1549 6769 general +3905 fluent 1550 1833 general +3906 intermediate 1550 1540 general +3907 native 1550 7922 general +3908 fluent 1551 1833 general +3909 intermediate 1551 1954 general +3910 native 1551 1540 general +3911 fluent 1552 1833 general +3912 native 1552 1540 general +3913 native 1552 5351 general +3914 native 1553 1833 general +3915 native 1553 6011 general +3916 intermediate 1554 1833 general +3917 native 1554 2854 general +3918 intermediate 1554 1540 general +3919 fluent 1555 1833 general +3920 fluent 1555 1954 general +3921 fluent 1555 1540 general +3922 native 1555 2665 general +3923 native 1555 6011 general +3924 native 1556 1833 general +3925 intermediate 1556 1540 general +3926 native 1556 6011 general +3927 fluent 1557 1833 general +3928 native 1557 1540 general +3929 intermediate 1557 6894 general +3930 native 1558 1833 general +3931 intermediate 1558 1954 general +3932 intermediate 1558 1540 general +3933 intermediate 1559 1833 general +3934 native 1559 1540 general +3935 native 1559 5677 general +3936 fluent 1560 1833 general +3937 native 1560 1540 general +3938 intermediate 1560 6011 general +3939 native 1561 1833 general +3940 fluent 1561 1954 general +3941 fluent 1561 1540 general +3942 intermediate 1561 1807 general +3943 intermediate 1561 6011 general +3944 intermediate 1562 1833 general +3945 native 1562 1540 general +3946 fluent 1562 6644 general +3947 native 1563 7790 general +3948 fluent 1563 1833 general +3949 intermediate 1563 1540 general +3950 intermediate 1564 345 general +3951 native 1564 1833 general +3952 fluent 1564 1540 general +3953 intermediate 1564 1910 general +3954 fluent 1565 1833 general +3955 intermediate 1565 1540 general +3956 native 1565 7922 general +3957 fluent 1566 1833 general +3958 fluent 1566 1540 general +3959 native 1566 1910 general +3960 native 1566 6644 general +3961 native 1567 1833 general +3962 intermediate 1567 1540 general +3963 fluent 1568 1833 general +3964 fluent 1568 1540 general +3965 native 1568 6011 general +3966 native 1569 1540 general +3967 intermediate 1570 345 general +3968 fluent 1570 1833 general +3969 native 1570 1540 general +3970 fluent 1571 1833 general +3971 fluent 1571 1954 general +3972 intermediate 1571 1540 general +3973 native 1571 2665 general +3974 intermediate 1571 6011 general +3975 native 1572 1833 general +3976 native 1572 1954 general +3977 intermediate 1572 1540 general +3978 intermediate 1572 6011 general +3979 fluent 1573 1833 general +3980 native 1573 1540 general +3981 native 1574 1833 general +3982 fluent 1574 1540 general +3983 fluent 1575 1833 general +3984 native 1575 1540 general +3985 fluent 1576 1833 general +3986 fluent 1576 1540 general +3987 native 1576 5677 general +3988 native 1576 6769 general +3989 fluent 1577 1833 general +3990 native 1577 1540 general +3991 native 1578 1833 general +3992 fluent 1578 1540 general +3993 intermediate 1578 6011 general +3994 native 1579 1833 general +3995 intermediate 1579 1540 general +3996 native 1580 1833 general +3997 native 1581 1833 general +3998 intermediate 1581 1540 general +3999 fluent 1582 1833 general +4000 intermediate 1582 1954 general +4001 native 1582 1540 general +4002 fluent 1583 1833 general +4003 native 1583 1540 general +4004 fluent 1583 6011 general +4005 native 1584 1833 general +4006 intermediate 1584 1540 general +4007 fluent 1584 2388 general +4008 intermediate 1584 2665 general +4009 native 1585 1833 general +4010 fluent 1585 1540 general +4011 intermediate 1585 2665 general +4012 intermediate 1585 6011 general +4013 fluent 1586 345 general +4014 fluent 1586 1833 general +4015 fluent 1586 1540 general +4016 fluent 1586 6011 general +4017 native 1587 345 general +4018 fluent 1587 1833 general +4019 fluent 1587 1954 general +4020 intermediate 1587 1540 general +4021 native 1588 345 general +4022 fluent 1588 1833 general +4023 intermediate 1588 1540 general +4024 fluent 1588 6148 general +4025 native 1589 345 general +4026 fluent 1589 1833 general +4027 fluent 1589 1540 general +4028 native 1590 4698 general +4029 fluent 1590 1833 general +4030 fluent 1590 1540 general +4031 intermediate 1590 6011 general +4032 native 1591 1833 general +4033 intermediate 1591 1540 general +4034 native 1591 7922 general +4035 native 1592 345 general +4036 fluent 1592 1833 general +4037 intermediate 1592 1540 general +4038 native 1593 1833 general +4039 fluent 1593 1540 general +4040 fluent 1594 1833 general +4041 fluent 1594 1540 general +4042 native 1594 2665 general +4043 intermediate 1594 6011 general +4044 fluent 1595 1833 general +4045 native 1595 1540 general +4046 intermediate 1595 7922 general +4047 fluent 1595 6011 general +4048 native 1596 1540 general +4049 advanced 1597 1540 general +4050 advanced 1597 1540 general +4051 advanced 1598 1910 general +4052 advanced 1598 1540 general +4053 native 1599 1 general +4054 advanced 1600 5677 general +4055 advanced 1600 6769 general +4056 advanced 1600 1540 general +4057 advanced 1600 1833 general +4058 advanced 1601 5677 general +4059 advanced 1601 6769 general +4060 advanced 1601 1540 general +4061 advanced 1601 1833 general +4062 advanced 1602 345 general +4063 advanced 1602 1540 general +4064 advanced 1603 5677 general +4065 advanced 1603 1540 general +4066 advanced 1604 1540 general +4067 advanced 1604 6769 general +4068 advanced 1604 1540 general +4069 advanced 1605 1910 general +4070 advanced 1605 1540 general +4071 advanced 1606 1540 general +4072 native 1607 1 general +4073 fluent 1607 1 general +4076 native 1608 1 general +4077 fluent 1608 1 general +4078 advanced 1609 5677 general +4079 advanced 1609 5641 general +4080 advanced 1609 1540 general +4081 advanced 1610 345 general +4082 advanced 1610 1540 general +4083 advanced 1611 2854 general +4084 advanced 1611 1540 general +4085 advanced 1612 1540 general +4086 advanced 1612 1833 general +4087 advanced 1612 1910 general +4088 advanced 1612 6644 general +4089 advanced 1612 1540 general +4090 native 1613 1 general +4091 fluent 1613 1 general +4092 intermediate 1613 1 general +4093 intermediate 1613 1 general +4094 native 1614 1 general +4095 fluent 1614 1 general +4096 intermediate 1614 1 general +4097 intermediate 1614 1 general +4098 native 1615 1 general +4100 native 1616 1 general +4101 fluent 1616 1 general +4102 native 1617 1 general +4103 fluent 1617 1 general +4104 fluent 1617 1 general +4105 intermediate 1617 1 general +4106 native 1618 1 general +4107 fluent 1618 1 general +4108 intermediate 1618 1 general +4109 native 1619 1 general +4110 native 1619 1 general +4119 native 1620 5677 general +4120 intermediate 1620 1540 general +4121 advanced 1621 1910 general +4122 advanced 1621 1540 general +4123 fluent 1622 1833 general +4124 native 810 1540 general +4125 native 810 1540 general +4126 fluent 803 1833 general +4127 fluent 803 1833 general +4128 fluent 1623 1833 general +4129 advanced 1624 1910 general +4130 advanced 1624 1540 general +4131 advanced 1624 1833 general +4132 advanced 1625 1540 general +4133 advanced 1625 5677 general +4134 advanced 1625 6769 general +4135 advanced 1625 1540 general +4136 advanced 1626 5677 general +4137 advanced 1626 1540 general +4138 advanced 1626 1833 general +4139 advanced 1627 5677 general +4140 advanced 1627 6769 general +4141 advanced 1627 1540 general +4142 native 1628 1833 general +4143 fluent 1628 1540 general +4144 advanced 1629 5677 general +4145 advanced 1629 1540 general +4146 advanced 1630 1540 general +4147 advanced 1630 5677 general +4148 advanced 1630 6769 general +4149 advanced 1630 1540 general +4150 fluent 814 1540 general +4151 native 814 345 general +4152 advanced 1631 5677 general +4153 advanced 1631 7922 general +4154 advanced 1631 1540 general +4155 advanced 1632 1540 general +4156 advanced 1632 1540 general +4157 advanced 1633 5677 general +4158 advanced 1633 2521 general +4159 advanced 1633 1540 general +4160 native 806 2366 general +4161 advanced 1634 1540 general +4162 advanced 1634 5677 general +4163 advanced 1634 6769 general +4164 advanced 1634 1540 general +4165 advanced 1635 1540 general +4166 advanced 1635 1540 general +4167 native 1636 1833 general +4168 fluent 1636 2388 general +4169 intermediate 1636 1540 general +4170 advanced 1637 5677 general +4171 advanced 1637 1540 general +4172 advanced 1638 1910 general +4173 advanced 1638 5445 general +4174 advanced 1638 1540 general +\. + + +-- +-- Data for Name: profile_skill; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.profile_skill (id, profile_id, skill_id) FROM stdin; +1 221 26 +2 224 20 +3 229 26 +4 233 21 +5 233 20 +6 235 23 +7 235 21 +8 235 20 +9 252 7 +10 273 23 +11 273 7 +12 273 2 +13 273 21 +14 273 22 +15 273 3 +16 277 8 +17 278 8 +18 280 29 +19 280 22 +20 283 20 +21 285 24 +22 285 14 +23 285 2 +24 285 21 +25 285 22 +26 285 3 +27 285 33 +28 285 20 +29 299 28 +30 300 8 +31 301 8 +32 315 29 +33 315 22 +34 323 2 +35 323 3 +36 326 3 +37 326 32 +38 326 8 +39 329 31 +40 329 32 +41 329 33 +42 333 8 +43 336 24 +44 336 21 +45 336 22 +46 337 4 +47 338 8 +48 342 11 +49 349 20 +50 360 23 +51 372 23 +52 372 21 +53 408 25 +54 408 7 +55 408 2 +56 408 11 +57 408 3 +58 409 8 +59 411 30 +60 412 23 +61 412 25 +62 412 24 +63 412 2 +64 412 22 +65 412 3 +66 413 8 +67 420 18 +68 421 2 +69 421 5 +70 421 4 +71 423 15 +72 423 13 +73 423 5 +74 423 6 +75 423 4 +76 423 1 +77 436 8 +78 439 18 +79 441 11 +80 441 12 +81 442 6 +82 446 18 +83 446 3 +84 452 10 +85 466 30 +86 466 21 +87 466 8 +88 475 14 +89 475 29 +90 476 14 +91 476 29 +92 477 8 +93 487 8 +94 489 8 +95 496 29 +96 496 26 +97 496 28 +98 496 10 +99 498 29 +100 498 26 +101 498 28 +102 498 10 +103 499 25 +104 499 7 +105 499 24 +106 499 14 +107 499 2 +108 499 29 +109 499 11 +110 499 31 +111 499 5 +112 499 26 +113 499 28 +114 499 3 +115 499 16 +116 499 10 +117 499 6 +118 499 4 +119 499 33 +120 499 8 +121 499 17 +122 501 30 +123 501 19 +124 501 28 +125 501 8 +126 505 14 +127 505 29 +128 505 10 +129 507 24 +130 517 8 +131 525 8 +132 526 8 +133 527 8 +134 529 10 +135 540 24 +136 540 2 +137 540 31 +138 540 18 +139 540 3 +140 540 32 +141 540 33 +142 541 8 +143 561 10 +144 565 29 +145 566 14 +146 566 2 +147 566 3 +148 566 10 +149 566 4 +150 567 2 +151 567 3 +152 567 16 +153 568 8 +154 569 10 +155 569 8 +156 576 8 +157 581 8 +158 582 15 +159 582 22 +160 585 14 +161 586 22 +162 588 20 +163 591 10 +164 591 8 +165 592 10 +166 594 15 +167 594 25 +168 594 7 +169 594 24 +170 594 14 +171 594 2 +172 594 5 +173 594 18 +174 594 3 +175 594 4 +176 594 33 +177 604 2 +178 604 3 +179 604 8 +180 605 14 +181 605 2 +182 605 3 +183 605 1 +184 618 23 +185 618 24 +186 618 29 +187 618 21 +188 618 22 +189 618 8 +190 618 20 +191 619 14 +192 619 26 +193 630 24 +194 631 31 +195 631 33 +196 635 24 +197 635 2 +198 635 28 +199 635 3 +200 635 33 +201 635 8 +202 636 24 +203 636 21 +204 636 3 +205 636 33 +206 643 10 +207 644 10 +208 648 22 +209 660 8 +210 661 23 +211 661 22 +212 666 20 +213 677 2 +214 677 3 +215 677 8 +216 691 23 +217 691 19 +218 691 24 +219 691 2 +220 691 22 +221 691 31 +222 691 3 +223 691 33 +224 691 1 +225 699 24 +226 699 14 +227 699 2 +228 699 11 +229 699 3 +230 699 4 +231 699 33 +232 702 8 +233 704 24 +234 704 21 +235 704 20 +236 706 8 +237 709 8 +238 711 2 +239 711 5 +240 711 3 +241 711 4 +242 712 31 +243 712 32 +244 712 33 +245 720 7 +246 720 2 +247 720 29 +248 720 5 +249 720 3 +250 720 4 +251 720 8 +252 721 7 +253 721 29 +254 721 10 +255 722 8 +256 725 8 +257 727 2 +258 727 21 +259 727 3 +260 727 16 +261 727 6 +262 727 4 +263 727 20 +264 728 29 +265 729 23 +266 729 29 +267 729 21 +268 729 22 +269 730 7 +270 730 19 +271 730 24 +272 730 14 +273 730 5 +274 730 3 +275 730 10 +276 730 8 +277 733 8 +278 737 14 +279 737 29 +280 738 25 +281 738 30 +282 738 7 +283 738 24 +284 738 14 +285 738 2 +286 738 29 +287 738 11 +288 738 5 +289 738 28 +290 738 3 +291 738 4 +292 738 33 +293 739 14 +294 739 29 +295 739 28 +296 739 16 +297 740 24 +298 740 2 +299 740 22 +300 740 3 +301 740 33 +302 742 7 +303 742 24 +304 742 14 +305 742 31 +306 744 2 +307 744 22 +308 744 3 +309 751 8 +310 752 11 +311 752 1 +312 768 8 +313 769 23 +314 769 24 +315 769 21 +316 769 22 +317 769 28 +318 769 9 +319 769 10 +320 769 27 +321 769 8 +322 772 29 +323 773 1 +324 781 11 +325 781 8 +326 783 23 +327 783 29 +328 783 21 +329 783 22 +330 783 11 +331 783 8 +332 784 23 +333 784 24 +334 784 2 +335 784 22 +336 784 31 +337 784 3 +338 784 33 +339 784 8 +340 784 1 +341 787 29 +342 787 26 +343 789 26 +344 796 31 +345 796 32 +346 796 33 +347 961 14 +348 961 2 +349 961 3 +350 961 20 +351 1038 2 +352 1038 5 +353 1038 3 +354 1038 17 +355 1111 8 +356 1113 26 +357 1113 8 +358 1113 20 +359 1116 30 +360 1116 8 +361 1117 7 +362 1117 8 +363 1118 13 +364 1118 31 +365 1118 33 +366 1118 1 +367 1120 25 +368 1120 30 +369 1120 7 +370 1120 2 +371 1120 21 +372 1120 22 +373 1120 3 +374 1120 16 +375 1120 20 +376 1121 25 +377 1121 9 +378 1124 8 +379 1126 19 +380 1126 2 +381 1126 11 +382 1126 3 +383 1127 7 +384 1127 9 +385 1128 23 +386 1128 25 +387 1128 2 +388 1128 32 +389 1129 7 +390 1129 6 +391 1130 14 +392 1130 21 +393 1130 9 +394 1130 20 +395 1131 14 +396 1131 26 +397 1132 5 +398 1133 24 +399 1135 19 +400 1135 5 +401 1135 16 +402 1135 4 +403 1135 20 +404 1136 23 +405 1136 30 +406 1136 21 +407 1136 32 +408 1136 8 +409 1137 14 +410 1137 2 +411 1137 5 +412 1137 18 +413 1137 28 +414 1137 3 +415 1137 16 +416 1137 10 +417 1137 8 +418 1137 17 +419 1138 19 +420 1138 9 +421 1138 10 +422 1139 19 +423 1139 26 +424 1139 8 +425 1140 14 +426 1140 26 +427 1140 16 +428 1143 33 +429 1144 23 +430 1144 21 +431 1144 22 +432 1144 3 +433 1145 25 +434 1145 24 +435 1145 28 +436 1147 30 +437 1147 7 +438 1147 19 +439 1147 16 +440 1147 10 +441 1147 8 +442 1147 20 +443 1148 7 +444 1148 24 +445 1149 30 +446 1149 26 +447 1150 7 +448 1150 19 +449 1150 11 +450 1150 16 +451 1150 6 +452 1150 17 +453 1151 13 +454 1151 7 +455 1151 14 +456 1151 1 +457 1152 23 +458 1152 30 +459 1152 7 +460 1152 24 +461 1152 14 +462 1152 21 +463 1152 22 +464 1152 18 +465 1152 26 +466 1152 8 +467 1152 20 +468 1153 7 +469 1153 18 +470 1154 25 +471 1154 7 +472 1154 19 +473 1154 21 +474 1154 16 +475 1154 27 +476 1154 17 +477 1154 20 +478 1155 7 +479 1155 8 +480 1156 3 +481 1156 16 +482 1156 17 +483 1157 14 +484 1157 4 +485 1157 33 +486 1157 8 +487 1157 20 +488 1159 7 +489 1161 9 +490 1161 10 +491 1162 23 +492 1162 25 +493 1162 7 +494 1162 21 +495 1162 9 +496 1162 8 +497 1162 20 +498 1163 7 +499 1163 2 +500 1163 21 +501 1164 25 +502 1164 9 +503 1165 14 +504 1165 2 +505 1165 11 +506 1165 5 +507 1165 18 +508 1165 3 +509 1165 16 +510 1165 32 +511 1165 6 +512 1165 20 +513 1166 7 +514 1166 31 +515 1166 3 +516 1166 16 +517 1167 21 +518 1167 9 +519 1168 23 +520 1168 25 +521 1168 21 +522 1168 31 +523 1168 26 +524 1168 16 +525 1168 9 +526 1168 10 +527 1168 8 +528 1168 17 +529 1169 7 +530 1169 2 +531 1169 21 +532 1169 11 +533 1169 3 +534 1169 6 +535 1169 4 +536 1170 7 +537 1170 24 +538 1170 2 +539 1170 21 +540 1170 5 +541 1170 28 +542 1170 3 +543 1170 9 +544 1170 20 +545 1171 14 +546 1171 2 +547 1171 18 +548 1171 3 +549 1171 16 +550 1171 8 +551 1172 25 +552 1172 7 +553 1172 2 +554 1172 16 +555 1172 6 +556 1172 4 +557 1172 1 +558 1173 1 +559 1174 24 +560 1174 21 +561 1174 10 +562 1174 33 +563 1174 20 +564 1175 24 +565 1175 21 +566 1175 10 +567 1175 33 +568 1175 8 +569 1175 20 +570 1176 7 +571 1176 14 +572 1176 18 +573 1176 3 +574 1177 16 +575 1177 10 +576 1177 8 +577 1177 20 +578 1178 30 +579 1178 22 +580 1178 9 +581 1178 8 +582 1179 24 +583 1179 8 +584 1180 25 +585 1180 30 +586 1180 9 +587 1181 7 +588 1181 2 +589 1181 5 +590 1181 3 +591 1181 6 +592 1181 4 +593 1181 8 +594 1181 1 +595 1182 11 +596 1182 10 +597 1182 33 +598 1182 8 +599 1182 20 +600 1183 23 +601 1183 25 +602 1183 22 +603 1183 26 +604 1183 16 +605 1183 10 +606 1183 8 +607 1184 14 +608 1184 2 +609 1184 29 +610 1184 18 +611 1184 26 +612 1184 3 +613 1184 10 +614 1184 8 +615 1185 15 +616 1185 19 +617 1185 20 +618 1187 21 +619 1187 16 +620 1187 10 +621 1187 8 +622 1188 30 +623 1188 26 +624 1188 28 +625 1189 18 +626 1189 8 +627 1191 23 +628 1191 7 +629 1191 14 +630 1191 29 +631 1191 18 +632 1191 8 +633 1192 23 +634 1192 25 +635 1192 30 +636 1192 7 +637 1192 19 +638 1192 2 +639 1192 29 +640 1192 21 +641 1192 11 +642 1192 26 +643 1192 28 +644 1192 3 +645 1192 16 +646 1192 9 +647 1192 6 +648 1192 17 +649 1192 20 +650 1193 7 +651 1193 2 +652 1193 22 +653 1193 3 +654 1194 11 +655 1194 5 +656 1195 11 +657 1195 16 +658 1196 2 +659 1196 31 +660 1196 3 +661 1196 4 +662 1196 17 +663 1197 23 +664 1197 19 +665 1197 2 +666 1197 11 +667 1197 28 +668 1197 3 +669 1197 16 +670 1197 8 +671 1197 17 +672 1197 20 +673 1198 7 +674 1198 14 +675 1198 2 +676 1198 11 +677 1198 3 +678 1198 9 +679 1198 6 +680 1198 8 +681 1199 7 +682 1199 11 +683 1199 5 +684 1199 16 +685 1199 20 +686 1200 7 +687 1200 24 +688 1200 28 +689 1200 16 +690 1200 10 +691 1200 17 +692 1201 7 +693 1201 14 +694 1201 2 +695 1201 21 +696 1201 11 +697 1201 18 +698 1201 3 +699 1201 16 +700 1201 9 +701 1201 10 +702 1201 6 +703 1201 8 +704 1201 20 +705 1202 7 +706 1202 29 +707 1203 19 +708 1203 5 +709 1205 7 +710 1205 5 +711 1205 4 +712 1206 7 +713 1206 21 +714 1206 20 +715 1207 19 +716 1207 29 +717 1208 16 +718 1208 8 +719 1208 17 +720 1208 20 +721 1209 7 +722 1209 8 +723 1210 23 +724 1210 15 +725 1210 13 +726 1210 25 +727 1210 30 +728 1210 7 +729 1210 19 +730 1210 24 +731 1210 14 +732 1210 2 +733 1210 29 +734 1210 21 +735 1210 22 +736 1210 11 +737 1210 31 +738 1210 5 +739 1210 12 +740 1210 18 +741 1210 26 +742 1210 28 +743 1210 3 +744 1210 16 +745 1210 32 +746 1210 9 +747 1210 10 +748 1210 6 +749 1210 27 +750 1210 4 +751 1210 33 +752 1210 8 +753 1210 17 +754 1210 1 +755 1210 20 +756 1211 14 +757 1211 3 +758 1211 16 +759 1211 27 +760 1211 17 +761 1212 14 +762 1212 2 +763 1212 3 +764 1215 32 +765 1215 33 +766 1215 8 +767 1215 20 +768 1216 21 +769 1216 10 +770 1217 29 +771 1217 8 +772 1218 23 +773 1218 7 +774 1218 14 +775 1218 3 +776 1218 9 +777 1218 8 +778 1219 23 +779 1219 25 +780 1219 30 +781 1219 7 +782 1219 2 +783 1219 29 +784 1219 22 +785 1219 26 +786 1219 28 +787 1219 3 +788 1219 10 +789 1219 33 +790 1219 8 +791 1219 20 +792 1220 30 +793 1220 7 +794 1220 29 +795 1220 26 +796 1220 16 +797 1220 10 +798 1221 20 +799 1223 7 +800 1223 14 +801 1223 2 +802 1223 29 +803 1223 21 +804 1223 18 +805 1223 3 +806 1225 24 +807 1225 5 +808 1226 30 +809 1226 14 +810 1226 2 +811 1226 29 +812 1226 18 +813 1226 26 +814 1226 3 +815 1226 8 +816 1227 7 +817 1227 19 +818 1227 2 +819 1227 21 +820 1227 28 +821 1227 3 +822 1227 10 +823 1227 8 +824 1227 20 +825 1228 25 +826 1228 30 +827 1228 7 +828 1228 8 +829 1229 29 +830 1229 16 +831 1229 10 +832 1229 8 +833 1229 20 +834 1230 14 +835 1230 2 +836 1230 5 +837 1230 3 +838 1230 4 +839 1231 2 +840 1231 5 +841 1231 16 +842 1231 4 +843 1232 23 +844 1232 25 +845 1232 7 +846 1232 2 +847 1232 29 +848 1232 11 +849 1232 12 +850 1232 3 +851 1232 20 +852 1233 15 +853 1233 19 +854 1233 29 +855 1233 32 +856 1235 15 +857 1235 7 +858 1235 21 +859 1235 22 +860 1235 11 +861 1235 6 +862 1235 33 +863 1235 8 +864 1236 30 +865 1236 29 +866 1236 26 +867 1236 8 +868 1237 7 +869 1237 11 +870 1237 8 +871 1238 2 +872 1238 3 +873 1239 11 +874 1239 8 +875 1240 23 +876 1240 25 +877 1240 30 +878 1240 7 +879 1240 29 +880 1240 26 +881 1241 22 +882 1241 8 +883 1241 20 +884 1242 23 +885 1242 30 +886 1242 21 +887 1242 10 +888 1242 8 +889 1242 20 +890 1243 23 +891 1243 25 +892 1243 30 +893 1243 7 +894 1243 19 +895 1243 2 +896 1243 29 +897 1243 21 +898 1243 22 +899 1243 31 +900 1243 5 +901 1243 26 +902 1243 32 +903 1243 9 +904 1243 10 +905 1243 6 +906 1243 8 +907 1243 17 +908 1243 20 +909 1244 24 +910 1244 2 +911 1244 29 +912 1244 18 +913 1244 3 +914 1244 16 +915 1245 23 +916 1245 15 +917 1245 7 +918 1245 14 +919 1245 2 +920 1245 11 +921 1245 31 +922 1245 5 +923 1245 18 +924 1245 3 +925 1245 16 +926 1245 4 +927 1245 8 +928 1245 20 +929 1247 7 +930 1247 32 +931 1247 8 +932 1248 23 +933 1248 15 +934 1248 25 +935 1248 7 +936 1248 24 +937 1248 2 +938 1248 21 +939 1248 28 +940 1248 3 +941 1248 8 +942 1248 1 +943 1249 7 +944 1249 24 +945 1249 2 +946 1249 3 +947 1249 16 +948 1249 10 +949 1249 8 +950 1250 29 +951 1250 8 +952 1251 11 +953 1252 7 +954 1252 8 +955 1253 7 +956 1253 28 +957 1254 25 +958 1254 22 +959 1254 31 +960 1254 9 +961 1255 7 +962 1255 2 +963 1255 3 +964 1255 8 +965 1258 8 +966 1259 19 +967 1259 29 +968 1259 9 +969 1259 10 +970 1259 8 +971 1260 25 +972 1260 7 +973 1260 2 +974 1260 5 +975 1260 3 +976 1260 4 +977 1260 8 +978 1261 21 +979 1261 20 +980 1262 30 +981 1262 29 +982 1262 21 +983 1262 16 +984 1262 10 +985 1262 8 +986 1264 8 +987 1264 20 +988 1265 7 +989 1265 28 +990 1265 20 +991 1266 7 +992 1266 14 +993 1266 21 +994 1266 18 +995 1266 4 +996 1266 8 +997 1267 7 +998 1267 5 +999 1267 4 +1000 1270 23 +1001 1270 7 +1002 1270 29 +1003 1270 22 +1004 1271 9 +1005 1272 7 +1006 1272 21 +1007 1272 20 +1008 1273 7 +1009 1273 16 +1010 1273 17 +1011 1274 7 +1012 1274 8 +1013 1275 24 +1014 1275 29 +1015 1275 9 +1016 1275 10 +1017 1275 8 +1018 1276 29 +1019 1276 31 +1020 1276 5 +1021 1276 26 +1022 1276 33 +1023 1277 16 +1024 1277 17 +1025 1279 9 +1026 1281 7 +1027 1281 6 +1028 1281 8 +1029 1281 1 +1030 1282 7 +1031 1282 8 +1032 1285 23 +1033 1285 24 +1034 1285 21 +1035 1285 22 +1036 1285 18 +1037 1285 16 +1038 1285 10 +1039 1285 8 +1040 1285 17 +1041 1286 19 +1042 1286 10 +1043 1287 30 +1044 1287 7 +1045 1287 19 +1046 1287 24 +1047 1287 14 +1048 1287 29 +1049 1287 11 +1050 1287 26 +1051 1287 32 +1052 1287 10 +1053 1287 8 +1054 1287 20 +1055 1288 7 +1056 1288 18 +1057 1288 4 +1058 1289 7 +1059 1289 24 +1060 1289 21 +1061 1289 10 +1062 1289 8 +1063 1289 20 +1064 1291 14 +1065 1291 2 +1066 1291 3 +1067 1291 16 +1068 1292 30 +1069 1292 28 +1070 1293 7 +1071 1293 2 +1072 1293 29 +1073 1293 21 +1074 1293 26 +1075 1293 3 +1076 1293 20 +1077 1294 19 +1078 1294 14 +1079 1294 16 +1080 1294 10 +1081 1294 17 +1082 1295 15 +1083 1295 7 +1084 1295 24 +1085 1295 21 +1086 1295 9 +1087 1295 6 +1088 1295 8 +1089 1296 11 +1090 1296 5 +1091 1296 6 +1092 1296 4 +1093 1296 8 +1094 1296 1 +1095 1297 30 +1096 1297 21 +1097 1297 26 +1098 1298 7 +1099 1299 30 +1100 1299 26 +1101 1299 28 +1102 1299 10 +1103 1299 8 +1104 1299 20 +1105 1300 30 +1106 1300 29 +1107 1300 26 +1108 1300 8 +1109 1300 20 +1110 1301 19 +1111 1301 21 +1112 1301 16 +1113 1301 27 +1114 1301 20 +1115 1302 18 +1116 1302 33 +1117 1303 8 +1118 1304 7 +1119 1305 15 +1120 1305 7 +1121 1305 26 +1122 1305 9 +1123 1305 8 +1124 1306 10 +1125 1306 8 +1126 1308 8 +1127 1309 29 +1128 1309 10 +1129 1310 30 +1130 1310 7 +1131 1310 19 +1132 1310 29 +1133 1310 26 +1134 1310 28 +1135 1310 10 +1136 1310 33 +1137 1310 8 +1138 1312 7 +1139 1312 2 +1140 1312 3 +1141 1312 4 +1142 1313 24 +1143 1313 11 +1144 1313 5 +1145 1313 3 +1146 1313 10 +1147 1313 4 +1148 1313 20 +1149 1314 7 +1150 1314 11 +1151 1314 5 +1152 1314 26 +1153 1315 7 +1154 1315 14 +1155 1315 2 +1156 1315 3 +1157 1316 30 +1158 1316 22 +1159 1316 26 +1160 1316 28 +1161 1317 7 +1162 1319 29 +1163 1319 16 +1164 1321 2 +1165 1321 3 +1166 1321 9 +1167 1322 2 +1168 1323 33 +1169 1324 7 +1170 1324 29 +1171 1324 21 +1172 1324 8 +1173 1325 30 +1174 1325 7 +1175 1325 29 +1176 1325 21 +1177 1325 22 +1178 1325 9 +1179 1326 30 +1180 1326 7 +1181 1326 19 +1182 1326 29 +1183 1326 18 +1184 1326 6 +1185 1327 25 +1186 1327 21 +1187 1327 3 +1188 1327 16 +1189 1327 32 +1190 1327 8 +1191 1331 24 +1192 1331 2 +1193 1331 29 +1194 1331 3 +1195 1331 16 +1196 1331 9 +1197 1331 17 +1198 1331 20 +1199 1332 14 +1200 1332 2 +1201 1332 3 +1202 1334 16 +1203 1335 29 +1204 1335 21 +1205 1335 9 +1206 1335 8 +1207 1335 17 +1208 1335 20 +1209 1336 21 +1210 1336 22 +1211 1336 16 +1212 1336 8 +1213 1336 17 +1214 1338 13 +1215 1338 30 +1216 1338 14 +1217 1338 2 +1218 1338 21 +1219 1338 22 +1220 1338 26 +1221 1338 3 +1222 1338 10 +1223 1338 6 +1224 1338 8 +1225 1339 25 +1226 1339 7 +1227 1339 21 +1228 1339 22 +1229 1339 9 +1230 1339 8 +1231 1342 7 +1232 1342 24 +1233 1342 2 +1234 1342 29 +1235 1342 8 +1236 1343 29 +1237 1343 21 +1238 1343 32 +1239 1343 8 +1240 1344 7 +1241 1344 2 +1242 1344 3 +1243 1346 29 +1244 1346 28 +1245 1346 20 +1246 1348 7 +1247 1349 32 +1248 1349 10 +1249 1349 8 +1250 1351 14 +1251 1352 14 +1252 1352 2 +1253 1352 29 +1254 1352 3 +1255 1352 1 +1256 1353 7 +1257 1353 16 +1258 1353 17 +1259 1354 7 +1260 1354 14 +1261 1354 29 +1262 1354 21 +1263 1354 11 +1264 1354 16 +1265 1354 10 +1266 1356 7 +1267 1356 29 +1268 1356 11 +1269 1356 10 +1270 1357 7 +1271 1357 29 +1272 1357 11 +1273 1357 9 +1274 1357 8 +1275 1357 20 +1276 1358 25 +1277 1358 7 +1278 1358 24 +1279 1358 14 +1280 1358 2 +1281 1358 29 +1282 1358 21 +1283 1358 26 +1284 1358 16 +1285 1358 10 +1286 1358 8 +1287 1359 7 +1288 1359 24 +1289 1359 14 +1290 1359 11 +1291 1359 5 +1292 1359 18 +1293 1359 28 +1294 1359 3 +1295 1359 4 +1296 1359 8 +1297 1359 20 +1298 1360 24 +1299 1360 2 +1300 1360 5 +1301 1360 16 +1302 1360 4 +1303 1360 8 +1304 1361 7 +1305 1361 24 +1306 1361 21 +1307 1361 22 +1308 1361 10 +1309 1361 8 +1310 1361 20 +1311 1362 7 +1312 1365 2 +1313 1366 19 +1314 1366 29 +1315 1366 28 +1316 1366 8 +1317 1366 20 +1318 1367 15 +1319 1367 14 +1320 1367 2 +1321 1367 29 +1322 1367 16 +1323 1367 8 +1324 1367 17 +1325 1367 1 +1326 1368 24 +1327 1368 14 +1328 1368 8 +1329 1369 7 +1330 1369 2 +1331 1369 18 +1332 1369 3 +1333 1369 16 +1334 1369 17 +1335 1370 7 +1336 1370 29 +1337 1370 8 +1338 1371 7 +1339 1371 2 +1340 1371 21 +1341 1371 18 +1342 1371 3 +1343 1371 6 +1344 1371 4 +1345 1371 20 +1346 1372 25 +1347 1372 7 +1348 1372 8 +1349 1373 2 +1350 1373 22 +1351 1373 8 +1352 1374 30 +1353 1374 7 +1354 1374 24 +1355 1374 29 +1356 1375 8 +1357 1376 25 +1358 1376 30 +1359 1376 7 +1360 1376 24 +1361 1376 14 +1362 1376 2 +1363 1376 29 +1364 1376 21 +1365 1376 11 +1366 1376 18 +1367 1376 26 +1368 1376 28 +1369 1376 3 +1370 1376 16 +1371 1376 9 +1372 1376 4 +1373 1376 8 +1374 1376 17 +1375 1377 14 +1376 1377 29 +1377 1377 11 +1378 1377 12 +1379 1377 28 +1380 1377 3 +1381 1377 16 +1382 1377 10 +1383 1377 4 +1384 1377 20 +1385 1378 21 +1386 1378 20 +1387 1380 7 +1388 1380 2 +1389 1380 29 +1390 1380 11 +1391 1380 12 +1392 1380 18 +1393 1380 26 +1394 1380 3 +1395 1380 16 +1396 1380 9 +1397 1380 17 +1398 1381 29 +1399 1381 26 +1400 1381 16 +1401 1381 17 +1402 1381 20 +1403 1382 5 +1404 1382 9 +1405 1382 4 +1406 1383 7 +1407 1383 24 +1408 1383 21 +1409 1383 31 +1410 1383 33 +1411 1383 8 +1412 1383 20 +1413 1384 25 +1414 1384 7 +1415 1384 24 +1416 1384 2 +1417 1384 21 +1418 1384 18 +1419 1384 32 +1420 1385 7 +1421 1385 14 +1422 1385 11 +1423 1385 28 +1424 1385 20 +1425 1386 29 +1426 1386 26 +1427 1386 10 +1428 1388 25 +1429 1388 7 +1430 1388 24 +1431 1388 14 +1432 1388 29 +1433 1388 21 +1434 1388 8 +1435 1388 20 +1436 1389 9 +1437 1390 7 +1438 1390 2 +1439 1390 21 +1440 1390 22 +1441 1390 31 +1442 1390 5 +1443 1390 18 +1444 1390 3 +1445 1390 4 +1446 1392 30 +1447 1392 7 +1448 1392 2 +1449 1392 29 +1450 1392 11 +1451 1392 31 +1452 1392 26 +1453 1392 3 +1454 1392 16 +1455 1392 10 +1456 1392 27 +1457 1392 20 +1458 1393 21 +1459 1393 22 +1460 1393 8 +1461 1394 7 +1462 1395 25 +1463 1395 22 +1464 1396 29 +1465 1396 10 +1466 1397 29 +1467 1397 28 +1468 1397 6 +1469 1397 20 +1470 1398 7 +1471 1398 24 +1472 1398 20 +1473 1399 22 +1474 1400 7 +1475 1400 11 +1476 1401 22 +1477 1402 24 +1478 1402 2 +1479 1402 21 +1480 1402 3 +1481 1402 16 +1482 1403 30 +1483 1403 7 +1484 1403 29 +1485 1403 11 +1486 1403 10 +1487 1403 20 +1488 1404 7 +1489 1404 19 +1490 1404 14 +1491 1404 21 +1492 1404 16 +1493 1404 27 +1494 1404 8 +1495 1404 17 +1496 1405 7 +1497 1405 14 +1498 1405 29 +1499 1405 21 +1500 1405 26 +1501 1405 6 +1502 1405 4 +1503 1405 20 +1504 1406 7 +1505 1406 2 +1506 1406 3 +1507 1406 10 +1508 1406 33 +1509 1406 20 +1510 1407 2 +1511 1407 3 +1512 1407 16 +1513 1408 2 +1514 1409 7 +1515 1409 2 +1516 1409 5 +1517 1409 3 +1518 1409 20 +1519 1410 21 +1520 1410 8 +1521 1411 23 +1522 1411 7 +1523 1411 5 +1524 1411 16 +1525 1411 4 +1526 1413 24 +1527 1413 26 +1528 1413 10 +1529 1414 14 +1530 1414 29 +1531 1415 19 +1532 1415 24 +1533 1415 29 +1534 1415 27 +1535 1415 8 +1536 1415 17 +1537 1417 30 +1538 1417 2 +1539 1417 3 +1540 1417 27 +1541 1418 8 +1542 1419 8 +1543 1420 7 +1544 1420 3 +1545 1420 16 +1546 1421 7 +1547 1421 11 +1548 1421 5 +1549 1421 4 +1550 1422 26 +1551 1423 23 +1552 1423 7 +1553 1423 14 +1554 1423 3 +1555 1424 8 +1556 1425 10 +1557 1426 7 +1558 1426 21 +1559 1426 18 +1560 1426 8 +1561 1426 20 +1562 1428 21 +1563 1428 16 +1564 1428 8 +1565 1429 7 +1566 1429 2 +1567 1429 21 +1568 1429 11 +1569 1429 5 +1570 1429 3 +1571 1430 7 +1572 1430 2 +1573 1430 33 +1574 1430 20 +1575 1432 15 +1576 1432 25 +1577 1432 30 +1578 1432 7 +1579 1432 2 +1580 1432 18 +1581 1432 3 +1582 1432 16 +1583 1432 32 +1584 1432 9 +1585 1432 17 +1586 1433 15 +1587 1433 7 +1588 1433 2 +1589 1433 29 +1590 1433 22 +1591 1433 26 +1592 1433 9 +1593 1433 6 +1594 1433 8 +1595 1434 7 +1596 1434 16 +1597 1434 8 +1598 1435 7 +1599 1435 2 +1600 1435 5 +1601 1435 18 +1602 1435 3 +1603 1435 8 +1604 1437 3 +1605 1437 8 +1606 1438 25 +1607 1439 2 +1608 1439 3 +1609 1439 8 +1610 1440 14 +1611 1440 2 +1612 1440 3 +1613 1440 32 +1614 1441 15 +1615 1441 7 +1616 1441 22 +1617 1441 26 +1618 1441 16 +1619 1441 9 +1620 1441 6 +1621 1441 8 +1622 1442 21 +1623 1443 7 +1624 1443 19 +1625 1443 21 +1626 1444 29 +1627 1446 21 +1628 1446 16 +1629 1446 17 +1630 1447 2 +1631 1447 21 +1632 1447 3 +1633 1448 7 +1634 1448 14 +1635 1448 2 +1636 1448 11 +1637 1448 18 +1638 1448 3 +1639 1448 4 +1640 1448 8 +1641 1449 14 +1642 1449 29 +1643 1449 26 +1644 1449 16 +1645 1449 4 +1646 1449 8 +1647 1449 17 +1648 1451 7 +1649 1451 2 +1650 1451 5 +1651 1451 3 +1652 1451 4 +1653 1452 25 +1654 1452 7 +1655 1452 21 +1656 1452 28 +1657 1452 20 +1658 1453 24 +1659 1453 29 +1660 1454 2 +1661 1454 22 +1662 1454 3 +1663 1454 10 +1664 1454 8 +1665 1455 7 +1666 1457 29 +1667 1457 21 +1668 1457 10 +1669 1458 2 +1670 1458 3 +1671 1458 8 +1672 1459 2 +1673 1459 3 +1674 1460 20 +1675 1461 30 +1676 1462 16 +1677 1462 17 +1678 1463 24 +1679 1463 3 +1680 1463 4 +1681 1464 23 +1682 1464 7 +1683 1464 29 +1684 1464 21 +1685 1464 11 +1686 1464 16 +1687 1464 4 +1688 1464 8 +1689 1464 20 +1690 1465 2 +1691 1465 3 +1692 1465 4 +1693 1467 28 +1694 1467 4 +1695 1467 20 +1696 1468 30 +1697 1468 7 +1698 1468 14 +1699 1468 29 +1700 1468 21 +1701 1468 22 +1702 1468 26 +1703 1468 28 +1704 1468 16 +1705 1468 6 +1706 1468 8 +1707 1469 30 +1708 1469 7 +1709 1469 2 +1710 1469 21 +1711 1469 5 +1712 1469 3 +1713 1469 10 +1714 1469 8 +1715 1470 23 +1716 1470 19 +1717 1470 24 +1718 1470 29 +1719 1470 21 +1720 1470 5 +1721 1470 18 +1722 1470 26 +1723 1470 10 +1724 1470 8 +1725 1471 7 +1726 1471 14 +1727 1471 29 +1728 1471 21 +1729 1471 16 +1730 1472 14 +1731 1472 29 +1732 1472 16 +1733 1472 27 +1734 1472 17 +1735 1473 7 +1736 1473 29 +1737 1473 26 +1738 1473 28 +1739 1474 23 +1740 1474 14 +1741 1474 2 +1742 1474 21 +1743 1474 22 +1744 1474 18 +1745 1474 26 +1746 1474 3 +1747 1475 23 +1748 1475 15 +1749 1475 25 +1750 1475 7 +1751 1475 21 +1752 1475 22 +1753 1475 16 +1754 1475 9 +1755 1475 10 +1756 1476 30 +1757 1476 2 +1758 1476 3 +1759 1476 16 +1760 1476 4 +1761 1476 8 +1762 1476 17 +1763 1476 20 +1764 1477 7 +1765 1477 14 +1766 1477 11 +1767 1477 5 +1768 1477 4 +1769 1477 8 +1770 1478 2 +1771 1478 11 +1772 1478 12 +1773 1479 21 +1774 1480 15 +1775 1480 7 +1776 1480 21 +1777 1480 22 +1778 1480 8 +1779 1481 7 +1780 1481 19 +1781 1481 2 +1782 1481 29 +1783 1481 21 +1784 1481 11 +1785 1481 18 +1786 1481 3 +1787 1481 10 +1788 1481 33 +1789 1483 24 +1790 1483 14 +1791 1483 21 +1792 1483 11 +1793 1483 33 +1794 1484 19 +1795 1484 24 +1796 1484 2 +1797 1484 29 +1798 1484 21 +1799 1484 3 +1800 1484 20 +1801 1486 29 +1802 1486 18 +1803 1486 26 +1804 1486 9 +1805 1486 8 +1806 1487 9 +1807 1488 7 +1808 1488 2 +1809 1488 21 +1810 1488 22 +1811 1488 18 +1812 1488 3 +1813 1488 10 +1814 1488 8 +1815 1489 25 +1816 1489 7 +1817 1489 14 +1818 1489 2 +1819 1489 5 +1820 1489 3 +1821 1489 16 +1822 1489 6 +1823 1489 4 +1824 1489 17 +1825 1489 1 +1826 1490 23 +1827 1490 25 +1828 1490 21 +1829 1490 8 +1830 1490 20 +1831 1491 25 +1832 1491 7 +1833 1491 2 +1834 1491 22 +1835 1491 11 +1836 1491 3 +1837 1491 10 +1838 1491 4 +1839 1491 8 +1840 1492 31 +1841 1492 33 +1842 1493 7 +1843 1493 2 +1844 1493 21 +1845 1493 11 +1846 1493 3 +1847 1494 7 +1848 1494 24 +1849 1494 14 +1850 1494 18 +1851 1494 26 +1852 1494 16 +1853 1494 9 +1854 1494 10 +1855 1494 8 +1856 1494 17 +1857 1495 25 +1858 1495 7 +1859 1495 19 +1860 1495 29 +1861 1495 21 +1862 1495 9 +1863 1497 23 +1864 1497 15 +1865 1497 1 +1866 1500 9 +1867 1502 19 +1868 1502 11 +1869 1502 12 +1870 1502 9 +1871 1503 14 +1872 1503 3 +1873 1503 16 +1874 1503 9 +1875 1503 17 +1876 1504 7 +1877 1504 22 +1878 1504 9 +1879 1505 13 +1880 1505 25 +1881 1505 2 +1882 1505 29 +1883 1505 21 +1884 1505 31 +1885 1505 5 +1886 1505 3 +1887 1505 4 +1888 1505 1 +1889 1506 2 +1890 1506 5 +1891 1506 3 +1892 1506 8 +1893 1507 7 +1894 1507 29 +1895 1507 4 +1896 1508 7 +1897 1508 3 +1898 1508 16 +1899 1508 27 +1900 1509 7 +1901 1509 21 +1902 1509 6 +1903 1509 20 +1904 1510 7 +1905 1510 24 +1906 1510 14 +1907 1510 2 +1908 1510 21 +1909 1510 11 +1910 1510 6 +1911 1510 20 +1912 1511 11 +1913 1512 7 +1914 1512 29 +1915 1512 26 +1916 1512 9 +1917 1512 10 +1918 1514 30 +1919 1516 7 +1920 1516 19 +1921 1516 24 +1922 1516 14 +1923 1516 2 +1924 1516 29 +1925 1516 21 +1926 1516 18 +1927 1516 3 +1928 1516 16 +1929 1516 10 +1930 1516 6 +1931 1516 4 +1932 1516 33 +1933 1516 8 +1934 1516 17 +1935 1516 20 +1936 1517 7 +1937 1517 8 +1938 1518 22 +1939 1520 8 +1940 1521 7 +1941 1521 19 +1942 1521 2 +1943 1521 5 +1944 1521 18 +1945 1521 3 +1946 1521 4 +1947 1521 8 +1948 1522 30 +1949 1522 7 +1950 1522 29 +1951 1522 21 +1952 1522 26 +1953 1522 10 +1954 1522 6 +1955 1522 8 +1956 1523 24 +1957 1523 2 +1958 1523 31 +1959 1523 3 +1960 1524 7 +1961 1524 19 +1962 1524 10 +1963 1525 10 +1964 1526 30 +1965 1526 29 +1966 1526 28 +1967 1527 7 +1968 1527 14 +1969 1527 26 +1970 1527 20 +1971 1529 30 +1972 1529 7 +1973 1529 24 +1974 1529 14 +1975 1529 29 +1976 1529 3 +1977 1529 16 +1978 1530 14 +1979 1530 29 +1980 1530 20 +1981 1532 7 +1982 1532 14 +1983 1533 32 +1984 1534 30 +1985 1534 21 +1986 1534 26 +1987 1534 10 +1988 1535 24 +1989 1535 21 +1990 1536 23 +1991 1536 7 +1992 1536 10 +1993 1536 8 +1994 1537 7 +1995 1537 2 +1996 1537 3 +1997 1537 4 +1998 1537 8 +1999 1540 24 +2000 1540 2 +2001 1540 3 +2002 1540 10 +2003 1540 8 +2004 1541 7 +2005 1541 14 +2006 1541 2 +2007 1541 29 +2008 1541 28 +2009 1541 3 +2010 1541 16 +2011 1541 32 +2012 1541 8 +2013 1542 7 +2014 1542 16 +2015 1542 8 +2016 1543 24 +2017 1545 25 +2018 1546 26 +2019 1546 10 +2020 1546 8 +2021 1548 7 +2022 1548 20 +2023 1549 18 +2024 1549 9 +2025 1549 8 +2026 1550 29 +2027 1550 10 +2028 1550 8 +2029 1551 11 +2030 1551 5 +2031 1551 4 +2032 1552 2 +2033 1552 3 +2034 1552 8 +2035 1553 7 +2036 1553 21 +2037 1553 28 +2038 1553 16 +2039 1553 20 +2040 1555 7 +2041 1555 2 +2042 1555 3 +2043 1555 4 +2044 1555 8 +2045 1556 29 +2046 1556 26 +2047 1556 10 +2048 1558 7 +2049 1558 11 +2050 1558 16 +2051 1558 6 +2052 1558 4 +2053 1558 33 +2054 1560 19 +2055 1560 29 +2056 1560 21 +2057 1560 26 +2058 1560 16 +2059 1560 27 +2060 1560 20 +2061 1561 32 +2062 1562 7 +2063 1562 14 +2064 1562 2 +2065 1562 29 +2066 1562 18 +2067 1562 3 +2068 1562 16 +2069 1562 32 +2070 1563 7 +2071 1563 17 +2072 1564 8 +2073 1565 8 +2074 1566 25 +2075 1566 7 +2076 1566 2 +2077 1566 3 +2078 1566 9 +2079 1567 7 +2080 1567 19 +2081 1567 26 +2082 1567 9 +2083 1567 8 +2084 1568 19 +2085 1569 8 +2086 1570 13 +2087 1570 16 +2088 1570 8 +2089 1571 9 +2090 1571 8 +2091 1572 19 +2092 1572 5 +2093 1572 26 +2094 1573 7 +2095 1573 29 +2096 1573 10 +2097 1573 8 +2098 1574 2 +2099 1574 31 +2100 1574 5 +2101 1574 32 +2102 1576 19 +2103 1576 24 +2104 1576 21 +2105 1576 10 +2106 1576 8 +2107 1576 20 +2108 1577 7 +2109 1577 21 +2110 1577 27 +2111 1577 8 +2112 1577 20 +2113 1578 2 +2114 1578 3 +2115 1578 8 +2116 1579 24 +2117 1579 20 +2118 1580 7 +2119 1580 14 +2120 1580 21 +2121 1580 11 +2122 1580 10 +2123 1580 6 +2124 1580 33 +2125 1580 8 +2126 1580 20 +2127 1581 2 +2128 1581 3 +2129 1583 8 +2130 1584 30 +2131 1584 7 +2132 1584 19 +2133 1584 24 +2134 1584 14 +2135 1584 29 +2136 1584 11 +2137 1584 28 +2138 1584 10 +2139 1584 33 +2140 1584 8 +2141 1584 20 +2142 1585 7 +2143 1585 29 +2144 1586 29 +2145 1586 21 +2146 1587 7 +2147 1587 21 +2148 1587 22 +2149 1587 11 +2150 1587 9 +2151 1588 15 +2152 1588 25 +2153 1588 7 +2154 1588 24 +2155 1588 22 +2156 1588 11 +2157 1588 6 +2158 1588 33 +2159 1588 8 +2160 1589 8 +2161 1590 14 +2162 1590 2 +2163 1590 3 +2164 1590 6 +2165 1590 4 +2166 1590 8 +2167 1590 20 +2168 1591 29 +2169 1591 26 +2170 1592 16 +2171 1592 10 +2172 1593 21 +2173 1593 8 +2174 1593 20 +2175 1594 29 +2176 1594 21 +2177 1594 16 +2178 1594 10 +2179 1594 6 +2180 1594 8 +2181 1595 7 +2182 1595 21 +2183 1595 8 +2184 1596 8 +2185 1599 1 +2186 1602 7 +2187 1602 13 +2188 1602 29 +2189 1604 8 +2190 1604 10 +2191 1604 29 +2192 1607 7 +2193 1607 21 +2194 1607 24 +2203 1613 7 +2204 1613 14 +2205 1613 18 +2206 1613 29 +2207 1614 7 +2208 1614 14 +2209 1614 18 +2210 1614 29 +2213 1616 7 +2214 1616 10 +2215 1616 24 +2216 1617 3 +2217 1617 8 +2218 1617 23 +2219 1617 26 +2220 1618 8 +2221 1618 10 +2222 1618 19 +2223 1618 23 +2224 1618 26 +2225 1618 29 +2226 1618 30 +2227 1618 31 +2228 1618 32 +2229 1618 33 +2235 1620 19 +2236 1620 21 +2237 1620 24 +2238 1622 8 +2239 1622 9 +2240 1619 33 +2241 1619 32 +2242 1619 31 +2243 1619 25 +2244 1619 23 +2245 1608 29 +2246 1608 24 +2247 1608 21 +2248 1608 18 +2249 1608 14 +2250 1608 7 +2251 1608 4 +2252 1608 2 +2253 1623 10 +2254 1623 17 +2255 1623 21 +2256 1623 22 +2257 1623 23 +2258 1623 31 +2259 1625 8 +2265 1630 21 +2266 1628 24 +2267 1628 19 +2268 1628 14 +2269 1628 8 +2270 1628 7 +2271 1615 1 +2272 1636 7 +2273 1636 21 +2274 1636 22 +\. + + +-- +-- Data for Name: skill; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.skill (id, title) FROM stdin; +1 Woodworking +2 Drawing +3 Painting +4 Sewing +5 Knitting +6 Repairs +7 Cooking +8 Teaching +9 Programming +10 Public speaking +11 Gardening +12 Landscaping +13 Carpentry +14 Decorating +15 Bike +16 Photography +17 Videography +18 Makeup +19 Copywriting +20 Yoga +21 Fitness +22 Football +23 Basketball +24 Dance +25 Chess +26 Management +27 SMM +28 Mediation +29 Event +30 Coaching +31 Guitar +32 Piano +33 Singing +\. + + +-- +-- Data for Name: testimonial; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.testimonial (id, is_active, name, pic, person_id, language_id) FROM stdin; +\. + + +-- +-- Data for Name: time; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public."time" (id, info) FROM stdin; +1 \N +2 \N +3 \N +4 \N +5 \N +6 \N +7 \N +8 \N +9 \N +10 \N +11 \N +12 \N +13 \N +14 \N +15 \N +16 \N +17 \N +18 \N +19 \N +20 \N +21 \N +22 \N +23 \N +24 \N +25 \N +26 \N +27 \N +28 \N +29 \N +30 \N +31 \N +32 \N +33 \N +34 \N +35 \N +36 \N +37 \N +38 \N +39 \N +40 \N +41 \N +42 \N +43 \N +44 \N +45 \N +46 \N +47 \N +48 \N +49 \N +50 \N +51 \N +52 \N +53 \N +54 \N +55 \N +56 \N +57 \N +58 \N +59 \N +60 \N +61 \N +62 \N +63 \N +64 \N +65 \N +66 \N +67 \N +68 \N +69 \N +70 \N +71 \N +72 \N +73 \N +74 \N +75 \N +76 \N +77 \N +78 \N +79 \N +80 \N +81 \N +82 \N +83 \N +84 \N +85 \N +86 \N +87 \N +88 \N +89 \N +90 \N +91 \N +92 \N +93 \N +94 \N +95 \N +96 \N +97 \N +98 \N +99 \N +100 \N +101 \N +102 \N +103 \N +104 \N +105 \N +106 \N +107 \N +108 \N +109 \N +110 \N +111 \N +112 \N +113 \N +114 \N +115 \N +116 \N +117 \N +118 \N +119 \N +120 \N +121 \N +122 \N +123 \N +124 \N +125 \N +126 \N +127 \N +128 \N +129 \N +130 \N +131 \N +132 \N +133 \N +134 \N +135 \N +136 \N +137 \N +138 \N +139 \N +140 \N +141 \N +142 \N +143 \N +144 \N +145 \N +146 \N +147 \N +148 \N +149 \N +150 \N +151 \N +152 \N +153 \N +154 \N +155 \N +156 \N +157 \N +158 \N +159 \N +160 \N +161 \N +162 \N +163 \N +164 \N +165 \N +166 \N +167 \N +168 \N +169 \N +170 \N +171 \N +172 \N +173 \N +174 \N +175 \N +176 \N +177 \N +178 \N +179 \N +180 \N +181 \N +182 \N +183 \N +184 \N +185 \N +186 \N +187 \N +188 \N +189 \N +190 \N +191 \N +192 \N +193 \N +194 \N +195 \N +196 \N +197 \N +198 \N +199 \N +200 \N +201 \N +202 \N +203 \N +204 \N +205 \N +206 \N +207 \N +208 \N +209 \N +210 \N +211 \N +212 \N +213 \N +214 \N +215 \N +216 \N +217 \N +218 \N +219 \N +220 \N +221 \N +222 \N +223 \N +224 \N +225 \N +226 \N +227 \N +228 \N +229 \N +230 \N +231 \N +232 \N +233 \N +234 \N +235 \N +236 \N +237 \N +238 \N +239 \N +240 \N +241 \N +242 \N +243 \N +244 \N +245 \N +246 \N +247 \N +248 \N +249 \N +250 \N +251 \N +252 \N +253 \N +254 \N +255 \N +256 \N +257 \N +258 \N +259 \N +260 \N +261 \N +262 \N +263 \N +264 \N +265 \N +266 \N +267 \N +268 \N +269 \N +270 \N +271 \N +272 \N +273 \N +274 \N +275 \N +276 \N +277 \N +278 \N +279 \N +280 \N +281 \N +282 \N +283 \N +284 \N +285 \N +286 \N +287 \N +288 \N +289 \N +290 \N +291 \N +292 \N +293 \N +294 \N +295 \N +296 \N +297 \N +298 \N +299 \N +300 \N +301 \N +302 \N +303 \N +304 \N +305 \N +306 \N +307 \N +308 \N +309 \N +310 \N +311 \N +312 \N +313 \N +314 \N +315 \N +316 \N +317 \N +318 \N +319 \N +320 \N +321 \N +322 \N +323 \N +324 \N +325 \N +326 \N +327 \N +328 \N +329 \N +330 \N +331 \N +332 \N +333 \N +334 \N +335 \N +336 \N +337 \N +338 \N +339 \N +340 \N +341 \N +342 \N +343 \N +344 \N +345 \N +346 \N +347 \N +348 \N +349 \N +350 \N +351 \N +352 \N +353 \N +354 \N +355 \N +356 \N +357 \N +358 \N +359 \N +360 \N +361 \N +362 \N +363 \N +364 \N +365 \N +366 \N +367 \N +368 \N +369 \N +370 \N +371 \N +372 \N +373 \N +374 \N +375 \N +376 \N +377 \N +378 \N +379 \N +380 \N +381 \N +382 \N +383 \N +384 \N +385 \N +386 \N +387 \N +388 \N +389 \N +390 \N +391 \N +392 \N +393 \N +394 \N +395 \N +396 \N +397 \N +398 \N +399 \N +400 \N +401 \N +402 \N +403 \N +404 \N +405 \N +406 \N +407 \N +408 \N +409 \N +410 \N +411 \N +412 \N +413 \N +414 \N +415 \N +416 \N +417 \N +418 \N +419 \N +420 \N +421 \N +422 \N +423 \N +424 \N +425 \N +426 \N +427 \N +428 \N +429 \N +430 \N +431 \N +432 \N +433 \N +434 \N +435 \N +436 \N +437 \N +438 \N +439 \N +440 \N +441 \N +442 \N +443 \N +444 \N +445 \N +446 \N +447 \N +448 \N +449 \N +450 \N +451 \N +452 \N +453 \N +454 \N +455 \N +456 \N +457 \N +458 \N +459 \N +460 \N +461 \N +462 \N +463 \N +464 \N +465 \N +466 \N +467 \N +468 \N +469 \N +470 \N +471 \N +472 \N +473 \N +474 \N +475 \N +476 \N +477 \N +478 \N +479 \N +480 \N +481 \N +482 \N +483 \N +484 \N +485 \N +486 \N +487 \N +488 \N +489 \N +490 \N +491 \N +492 \N +493 \N +494 \N +495 \N +496 \N +497 \N +498 \N +499 \N +500 \N +501 \N +502 \N +503 \N +504 \N +505 \N +506 \N +507 \N +508 \N +509 \N +510 \N +511 \N +512 \N +513 \N +514 \N +515 \N +516 \N +517 \N +518 \N +519 \N +520 \N +521 \N +522 \N +523 \N +524 \N +525 \N +526 \N +527 \N +528 \N +529 \N +530 \N +531 \N +532 \N +533 \N +534 \N +535 \N +536 \N +537 \N +538 \N +539 \N +540 \N +541 \N +542 \N +543 \N +544 \N +545 \N +546 \N +547 \N +548 \N +549 \N +550 \N +551 \N +552 \N +553 \N +554 \N +555 \N +556 \N +557 \N +558 \N +559 \N +560 \N +561 \N +562 \N +563 \N +564 \N +565 \N +566 \N +567 \N +568 \N +569 \N +570 \N +571 \N +572 \N +573 \N +574 \N +575 \N +576 \N +577 \N +578 \N +579 \N +580 \N +581 \N +582 \N +583 \N +584 \N +585 \N +586 \N +587 \N +588 \N +589 \N +590 \N +591 \N +592 \N +593 \N +594 \N +595 \N +596 \N +597 \N +598 \N +599 \N +600 \N +601 \N +602 \N +603 \N +604 \N +605 \N +606 \N +607 \N +608 \N +609 \N +610 \N +611 \N +612 \N +613 \N +614 \N +615 \N +616 \N +617 \N +618 \N +619 \N +620 \N +621 \N +622 \N +623 \N +624 \N +625 \N +626 \N +627 \N +628 \N +629 \N +630 \N +631 \N +632 \N +633 \N +634 \N +635 \N +636 \N +637 \N +638 \N +639 \N +640 \N +641 \N +642 \N +643 \N +644 \N +645 \N +646 \N +647 \N +648 \N +649 \N +650 \N +651 \N +652 \N +653 \N +654 \N +655 \N +656 \N +657 \N +658 \N +659 \N +660 \N +661 \N +662 \N +663 \N +664 \N +665 \N +666 \N +667 \N +668 \N +669 \N +670 \N +671 \N +672 \N +673 \N +674 \N +675 \N +676 \N +677 \N +678 \N +679 \N +680 \N +681 \N +682 \N +683 \N +684 \N +685 \N +686 \N +687 \N +688 \N +689 \N +690 \N +691 \N +692 \N +693 \N +694 \N +695 \N +696 \N +697 \N +698 \N +699 \N +700 \N +701 \N +702 \N +703 \N +704 \N +705 \N +706 \N +707 \N +708 \N +709 \N +710 \N +711 \N +712 \N +713 \N +714 \N +715 \N +716 \N +717 \N +718 \N +719 \N +720 \N +721 \N +722 \N +723 \N +724 \N +725 \N +726 \N +727 \N +728 \N +729 \N +730 \N +731 \N +732 \N +733 \N +734 \N +735 \N +736 \N +737 \N +738 \N +739 \N +740 \N +741 \N +742 \N +743 \N +744 \N +745 \N +746 \N +747 \N +748 \N +749 \N +750 \N +751 \N +752 \N +753 \N +754 \N +755 \N +756 \N +757 \N +758 \N +759 \N +760 \N +761 \N +762 \N +763 \N +764 \N +765 \N +766 \N +767 \N +768 \N +769 \N +770 \N +771 \N +772 \N +773 \N +774 \N +775 \N +776 \N +777 \N +778 \N +779 \N +780 \N +781 \N +782 \N +783 \N +784 \N +785 \N +786 \N +787 \N +788 \N +789 \N +790 \N +791 \N +792 \N +793 \N +794 \N +795 \N +796 \N +797 \N +798 \N +799 \N +800 \N +801 \N +802 \N +803 \N +804 \N +805 \N +806 \N +807 \N +808 \N +809 \N +810 \N +811 \N +812 \N +813 \N +814 \N +815 \N +816 \N +817 \N +818 \N +819 \N +820 \N +821 \N +822 \N +823 \N +824 \N +825 \N +826 \N +827 \N +828 \N +829 \N +830 \N +831 \N +832 \N +833 \N +834 \N +835 \N +836 \N +837 \N +838 \N +839 \N +840 \N +841 \N +842 \N +843 \N +844 \N +845 \N +846 \N +847 \N +848 \N +849 \N +850 \N +851 \N +852 \N +853 \N +854 \N +855 \N +856 \N +857 \N +858 \N +859 \N +860 \N +861 \N +862 \N +863 \N +864 \N +865 \N +866 \N +867 \N +868 \N +869 \N +870 \N +871 \N +872 \N +873 \N +874 \N +875 \N +876 \N +877 \N +878 \N +879 \N +880 \N +881 \N +882 \N +883 \N +884 \N +885 \N +886 \N +887 \N +888 \N +889 \N +890 \N +891 \N +892 \N +893 \N +894 \N +895 \N +896 \N +897 \N +898 \N +899 \N +900 \N +901 \N +902 \N +903 \N +904 \N +905 \N +906 \N +907 \N +908 \N +909 \N +910 \N +911 \N +912 \N +913 \N +914 \N +915 \N +916 \N +917 \N +918 \N +919 \N +920 \N +921 \N +922 \N +923 \N +924 \N +925 \N +926 \N +927 \N +928 \N +929 \N +930 \N +931 \N +932 \N +933 \N +934 \N +935 \N +936 \N +937 \N +938 \N +939 \N +940 \N +941 \N +942 \N +943 \N +944 \N +945 \N +946 \N +947 \N +948 \N +949 \N +950 \N +951 \N +952 \N +953 \N +954 \N +955 \N +956 \N +957 \N +958 \N +959 \N +960 \N +961 \N +962 \N +963 \N +964 \N +965 \N +966 \N +967 \N +968 \N +969 \N +970 \N +971 \N +972 \N +973 \N +974 \N +975 \N +976 \N +977 \N +978 \N +979 \N +980 \N +981 \N +982 \N +983 \N +984 \N +985 \N +986 \N +987 \N +988 \N +989 \N +990 \N +991 \N +992 \N +993 \N +994 \N +995 \N +996 \N +997 \N +998 \N +999 \N +1000 \N +1001 \N +1002 \N +1003 \N +1004 \N +1005 \N +1006 \N +1007 \N +1008 \N +1009 \N +1010 \N +1011 \N +1012 \N +1013 \N +1014 \N +1015 \N +1016 \N +1017 \N +1018 \N +1019 \N +1020 \N +1021 \N +1022 \N +1023 \N +1024 \N +1025 \N +1026 \N +1027 \N +1028 \N +1029 \N +1030 \N +1031 \N +1032 \N +1033 \N +1034 \N +1035 \N +1036 \N +1037 \N +1038 \N +1039 \N +1040 \N +1041 \N +1042 \N +1043 \N +1044 \N +1045 \N +1046 \N +1047 \N +1048 \N +1049 \N +1050 \N +1051 \N +1052 \N +1053 \N +1054 \N +1055 \N +1056 \N +1057 \N +1058 \N +1059 \N +1060 \N +1061 \N +1062 \N +1063 \N +1064 \N +1065 \N +1066 \N +1067 \N +1068 \N +1069 \N +1070 \N +1071 \N +1072 \N +1073 \N +1074 \N +1075 \N +1076 \N +1077 \N +1078 \N +1079 \N +1080 \N +1081 \N +1082 \N +1083 \N +1084 \N +1085 \N +1086 \N +1087 \N +1088 \N +1089 \N +1090 \N +1091 \N +1092 \N +1093 \N +1094 \N +1095 \N +1096 \N +1097 \N +1098 \N +1099 \N +1100 \N +1101 \N +1102 \N +1103 \N +1104 \N +1105 \N +1106 \N +1107 \N +1108 \N +1109 \N +1110 \N +1111 \N +1112 \N +1113 \N +1114 \N +1115 \N +1116 \N +1117 \N +1118 \N +1119 \N +1120 \N +1121 \N +1122 \N +1123 \N +1124 \N +1125 \N +1126 \N +1127 \N +1128 \N +1129 \N +1130 \N +1131 \N +1132 \N +1133 \N +1134 \N +1135 \N +1136 \N +1137 \N +1138 \N +1139 \N +1140 \N +1141 \N +1142 \N +1143 \N +1144 \N +1145 \N +1146 \N +1147 \N +1148 \N +1149 \N +1150 \N +1151 \N +1152 \N +1153 \N +1154 \N +1155 \N +1156 \N +1157 \N +1158 \N +1159 \N +1160 \N +1161 \N +1162 \N +1163 \N +1164 \N +1165 \N +1166 \N +1167 \N +1168 \N +1169 \N +1170 \N +1171 \N +1172 \N +1173 \N +1174 \N +1175 \N +1176 \N +1177 \N +1178 \N +1179 \N +1180 \N +1181 \N +1182 \N +1183 \N +1184 \N +1185 \N +1186 \N +1187 \N +1188 \N +1189 \N +1190 \N +1191 \N +1192 \N +1193 \N +1194 \N +1195 \N +1196 \N +1197 \N +1198 \N +1199 \N +1200 \N +1201 \N +1202 \N +1203 \N +1204 \N +1205 \N +1206 \N +1207 \N +1208 \N +1209 \N +1210 \N +1211 \N +1212 \N +1213 \N +1214 \N +1215 \N +1216 \N +1217 \N +1218 \N +1219 \N +1220 \N +1221 \N +1222 \N +1223 \N +1224 \N +1225 \N +1226 \N +1227 \N +1228 \N +1229 \N +1230 \N +1231 \N +1232 \N +1233 \N +1234 \N +1235 \N +1236 \N +1237 \N +1238 \N +1239 \N +1240 \N +1241 \N +1242 \N +1243 \N +1244 \N +1245 \N +1246 \N +1247 \N +1248 \N +1249 \N +1250 \N +1251 \N +1252 \N +1253 \N +1254 \N +1255 \N +1256 \N +1257 \N +1258 \N +1259 \N +1260 \N +1261 \N +1262 \N +1263 \N +1264 \N +1265 \N +1266 \N +1267 \N +1268 \N +1269 \N +1270 \N +1271 \N +1272 \N +1273 \N +1274 \N +1275 \N +1276 \N +1277 \N +1278 \N +1279 \N +1280 \N +1281 \N +1282 \N +1283 \N +1284 \N +1285 \N +1286 \N +1287 \N +1288 \N +1289 \N +1290 \N +1291 \N +1292 \N +1293 \N +1294 \N +1295 \N +1296 \N +1297 \N +1298 \N +1299 \N +1300 \N +1301 \N +1302 \N +1303 \N +1304 \N +1305 \N +1306 \N +1307 \N +1308 \N +1309 \N +1310 \N +1311 \N +1312 \N +1313 \N +1314 \N +1315 \N +1316 \N +1317 \N +1318 \N +1319 \N +1320 \N +1321 \N +1322 \N +1323 \N +1324 \N +1325 \N +1326 \N +1327 \N +1328 \N +1329 \N +1330 \N +1331 \N +1332 \N +1333 \N +1334 \N +1335 \N +1336 \N +1337 \N +1338 \N +1339 \N +1340 \N +1341 \N +1342 \N +1343 \N +1344 \N +1345 \N +1346 \N +1347 \N +1348 \N +1349 \N +1350 \N +1351 \N +1352 \N +1353 \N +1354 \N +1355 \N +1356 \N +1357 \N +1358 \N +1359 \N +1360 \N +1361 \N +1362 \N +1363 \N +1364 \N +1365 \N +1366 \N +1367 \N +1368 \N +1369 \N +1370 \N +1371 \N +1372 \N +1373 \N +1374 \N +1375 \N +1376 \N +1377 \N +1378 \N +1379 \N +1380 \N +1381 \N +1382 \N +1383 \N +1384 \N +1385 \N +1386 \N +1387 \N +1388 \N +1389 \N +1390 \N +1391 \N +1392 \N +1393 \N +1394 \N +1395 \N +1396 \N +1397 \N +1398 \N +1399 \N +1400 \N +1401 \N +1402 \N +1403 \N +1404 \N +1405 \N +1406 \N +1407 \N +1408 \N +1409 \N +1410 \N +1411 \N +1412 \N +1413 \N +1414 \N +1415 \N +1416 \N +1417 \N +1418 \N +1419 \N +1420 \N +1421 \N +1422 \N +1423 \N +1424 \N +1425 \N +1426 \N +1427 \N +1428 \N +1429 \N +1430 \N +1431 \N +1432 \N +1433 \N +1434 \N +1435 \N +1436 \N +1437 \N +1438 \N +1439 \N +1440 \N +1441 \N +1442 \N +1443 \N +1444 \N +1445 \N +1446 \N +1447 \N +1448 \N +1449 \N +1450 \N +1451 \N +1452 \N +1453 \N +1454 \N +1455 \N +1456 \N +1457 \N +1458 \N +1459 \N +1460 \N +1461 \N +1462 \N +1463 \N +1464 \N +1465 \N +1466 \N +1467 \N +1468 \N +1469 \N +1470 \N +1471 \N +1472 \N +1473 \N +1474 \N +1475 \N +1476 \N +1477 \N +1478 \N +1479 \N +1480 \N +1481 \N +1482 \N +1483 \N +1484 \N +1485 \N +1486 \N +1487 \N +1488 \N +1489 \N +1490 \N +1491 \N +1492 \N +1493 \N +1494 \N +1495 \N +1496 \N +1497 \N +1498 \N +1499 \N +1500 \N +1501 \N +1502 \N +1503 \N +1504 \N +1505 \N +1506 \N +1507 \N +1508 \N +1509 \N +1510 \N +1511 \N +1512 \N +1513 \N +1514 \N +1515 \N +1516 \N +1517 \N +1518 \N +1519 \N +1520 \N +1521 \N +1522 \N +1523 \N +1524 \N +1525 \N +1526 \N +1527 \N +1528 \N +1529 \N +1530 \N +1531 \N +1532 \N +1533 \N +1534 \N +1535 \N +1536 \N +1537 \N +1538 \N +1539 \N +1540 \N +1541 \N +1542 \N +1543 \N +1544 \N +1545 \N +1546 \N +1547 \N +1548 \N +1549 \N +1550 \N +1551 \N +1552 \N +1553 \N +1554 \N +1555 \N +1556 \N +1557 \N +1558 \N +1559 \N +1560 \N +1561 \N +1562 \N +1563 \N +1564 \N +1565 \N +1566 \N +1567 \N +1568 \N +1569 \N +1570 \N +1571 \N +1572 \N +1573 \N +1574 \N +1575 \N +1576 \N +1577 \N +1578 \N +1579 \N +1580 \N +1581 \N +1582 \N +1583 \N +1584 \N +1585 \N +1586 \N +1587 \N +1588 \N +1589 \N +1590 \N +1591 \N +1592 \N +1593 \N +1594 \N +1595 \N +1596 \N +1597 \N +1598 \N +1599 \N +1600 \N +1601 \N +1602 \N +1603 \N +1604 \N +1605 \N +1606 \N +1607 \N +1608 \N +1609 \N +1610 \N +1611 \N +1612 \N +1613 \N +1614 \N +1615 \N +1616 \N +1617 \N +1618 \N +1619 \N +1620 \N +1621 \N +1622 \N +1623 \N +1624 \N +1625 \N +1626 \N +1627 \N +1628 \N +1629 \N +1630 \N +1631 \N +1632 \N +1633 \N +1634 \N +1635 \N +1636 \N +1637 \N +1638 \N +\. + + +-- +-- Data for Name: time_timeslot; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.time_timeslot (id, time_id, timeslot_id) FROM stdin; +1 3 19 +2 3 2 +3 3 15 +4 3 7 +5 3 11 +6 14 8 +7 14 12 +8 21 30 +9 42 19 +10 42 3 +11 42 15 +12 42 7 +13 42 11 +14 55 18 +15 55 6 +16 56 10 +17 108 7 +18 110 19 +19 110 3 +20 110 15 +21 110 7 +22 110 11 +23 111 19 +24 111 3 +25 111 15 +26 111 7 +27 111 11 +28 112 29 +29 120 19 +30 120 3 +31 120 15 +32 120 7 +33 120 11 +34 140 30 +35 155 31 +36 156 32 +37 157 33 +38 158 34 +39 159 35 +40 160 36 +41 161 37 +42 162 38 +43 163 39 +44 164 40 +45 165 41 +46 166 42 +47 167 43 +48 168 44 +49 169 45 +50 170 46 +51 171 47 +52 172 48 +53 173 49 +54 174 50 +55 175 51 +56 176 52 +57 177 53 +58 178 54 +59 180 55 +60 181 56 +61 182 4 +62 183 57 +63 184 58 +64 185 59 +65 186 60 +66 187 61 +67 188 62 +68 189 63 +69 190 64 +70 192 65 +71 195 18 +72 195 2 +73 195 14 +74 195 7 +75 195 11 +76 197 66 +77 201 67 +78 202 68 +79 203 69 +80 204 70 +81 205 15 +82 205 7 +83 205 11 +84 209 71 +85 210 72 +86 213 73 +87 214 74 +88 215 75 +89 216 20 +90 216 4 +91 217 76 +92 218 77 +93 219 19 +94 219 3 +95 219 29 +96 219 15 +97 219 7 +98 219 11 +99 220 19 +100 220 3 +101 220 15 +102 220 7 +103 220 11 +104 221 15 +105 221 7 +106 221 11 +107 222 78 +108 223 79 +109 224 18 +110 225 20 +111 225 8 +112 225 12 +113 226 20 +114 226 4 +115 226 29 +116 226 16 +117 226 8 +118 226 12 +119 227 29 +120 228 29 +121 229 9 +122 230 80 +123 231 29 +124 232 81 +125 233 19 +126 233 3 +127 233 15 +128 233 7 +129 233 11 +130 234 19 +131 234 3 +132 234 29 +133 234 15 +134 234 7 +135 234 11 +136 235 20 +137 235 4 +138 235 16 +139 235 8 +140 235 12 +141 236 20 +142 236 4 +143 236 29 +144 236 16 +145 236 8 +146 236 12 +147 237 1 +148 237 13 +149 237 5 +150 237 9 +151 238 19 +152 238 3 +153 238 15 +154 238 7 +155 238 11 +156 239 20 +157 239 4 +158 239 16 +159 239 8 +160 239 12 +161 240 82 +162 241 19 +163 241 3 +164 241 29 +165 241 15 +166 241 7 +167 241 11 +168 242 83 +169 243 20 +170 243 4 +171 243 16 +172 243 8 +173 243 12 +174 244 84 +175 245 85 +176 246 16 +177 247 86 +178 248 87 +179 249 88 +180 250 89 +181 251 90 +182 253 19 +183 253 3 +184 253 15 +185 253 7 +186 253 11 +187 254 91 +188 255 92 +189 256 93 +190 257 20 +191 257 4 +192 257 24 +193 257 16 +194 257 8 +195 257 12 +196 258 94 +197 259 4 +198 259 16 +199 259 8 +200 260 95 +201 261 96 +202 262 97 +203 263 20 +204 263 4 +205 263 29 +206 263 16 +207 263 8 +208 263 12 +209 264 3 +210 264 15 +211 264 7 +212 264 11 +213 265 98 +214 266 20 +215 266 4 +216 266 16 +217 266 8 +218 266 12 +219 267 17 +220 267 1 +221 267 13 +222 267 5 +223 267 9 +224 268 29 +225 269 20 +226 269 16 +227 269 8 +228 270 99 +229 271 100 +230 272 101 +231 273 19 +232 273 3 +233 273 15 +234 273 7 +235 273 11 +236 274 102 +237 275 18 +238 275 2 +239 275 14 +240 275 6 +241 275 10 +242 276 103 +243 277 19 +244 277 3 +245 277 15 +246 277 7 +247 277 11 +248 278 19 +249 278 3 +250 278 15 +251 278 7 +252 278 11 +253 279 14 +254 279 6 +255 280 29 +256 281 104 +257 282 29 +258 283 19 +259 283 3 +260 283 23 +261 283 27 +262 283 15 +263 283 7 +264 283 11 +265 284 3 +266 284 29 +267 284 15 +268 285 20 +269 285 4 +270 285 29 +271 285 16 +272 285 8 +273 285 12 +274 286 105 +275 287 106 +276 288 107 +277 289 108 +278 290 109 +279 291 110 +280 292 111 +281 293 112 +282 294 113 +283 295 114 +284 296 30 +285 297 115 +286 298 116 +287 299 18 +288 299 2 +289 299 14 +290 299 6 +291 300 20 +292 301 20 +293 301 4 +294 301 8 +295 301 12 +296 302 117 +297 303 20 +298 303 4 +299 303 16 +300 303 8 +301 303 12 +302 304 118 +303 305 30 +304 306 119 +305 307 120 +306 308 121 +307 309 122 +308 310 123 +309 312 124 +310 313 125 +311 314 126 +312 315 29 +313 316 127 +314 317 128 +315 318 129 +316 319 130 +317 320 131 +318 321 132 +319 322 30 +320 323 19 +321 323 3 +322 323 15 +323 323 7 +324 323 11 +325 324 133 +326 325 134 +327 326 19 +328 326 3 +329 326 15 +330 326 7 +331 326 11 +332 327 19 +333 327 4 +334 327 15 +335 327 8 +336 327 11 +337 328 135 +338 329 19 +339 329 3 +340 329 15 +341 329 7 +342 329 11 +343 330 19 +344 330 3 +345 330 15 +346 330 7 +347 330 11 +348 331 136 +349 332 137 +350 333 19 +351 333 3 +352 333 15 +353 333 7 +354 333 11 +355 334 138 +356 335 3 +357 335 29 +358 336 19 +359 336 3 +360 336 15 +361 336 7 +362 336 11 +363 337 19 +364 337 3 +365 337 15 +366 337 7 +367 337 11 +368 338 19 +369 338 3 +370 338 15 +371 338 7 +372 338 11 +373 339 19 +374 339 3 +375 339 15 +376 339 7 +377 339 11 +378 340 11 +379 341 139 +380 342 18 +381 342 2 +382 342 14 +383 342 6 +384 342 10 +385 343 140 +386 344 141 +387 345 17 +388 345 1 +389 345 14 +390 345 7 +391 346 18 +392 346 2 +393 346 29 +394 346 14 +395 346 6 +396 346 10 +397 347 142 +398 348 19 +399 348 3 +400 348 15 +401 348 7 +402 348 11 +403 349 19 +404 349 3 +405 349 15 +406 349 7 +407 349 11 +408 350 143 +409 351 144 +410 352 145 +411 353 146 +412 354 147 +413 355 30 +414 356 30 +415 357 148 +416 358 149 +417 359 150 +418 360 29 +419 361 29 +420 362 151 +421 363 152 +422 364 29 +423 365 153 +424 366 12 +425 367 3 +426 367 7 +427 367 11 +428 368 30 +429 369 154 +430 370 19 +431 370 15 +432 370 7 +433 371 4 +434 371 16 +435 371 8 +436 371 12 +437 372 20 +438 372 4 +439 372 16 +440 372 8 +441 372 12 +442 373 155 +443 374 19 +444 374 3 +445 374 23 +446 374 27 +447 374 15 +448 374 7 +449 374 11 +450 375 19 +451 375 3 +452 375 23 +453 375 27 +454 375 15 +455 375 7 +456 375 11 +457 376 156 +458 377 157 +459 378 158 +460 379 3 +461 379 15 +462 379 11 +463 380 159 +464 381 20 +465 381 4 +466 381 16 +467 381 8 +468 381 12 +469 382 3 +470 382 15 +471 382 7 +472 382 11 +473 383 160 +474 384 161 +475 385 162 +476 386 163 +477 387 164 +478 388 165 +479 389 166 +480 390 167 +481 391 29 +482 392 168 +483 393 169 +484 394 170 +485 395 171 +486 396 172 +487 397 173 +488 398 174 +489 399 175 +490 400 29 +491 401 176 +492 402 177 +493 403 17 +494 403 1 +495 403 21 +496 403 25 +497 403 13 +498 403 5 +499 403 9 +500 404 178 +501 405 179 +502 406 180 +503 407 181 +504 408 7 +505 408 10 +506 409 18 +507 409 2 +508 409 22 +509 409 26 +510 409 14 +511 409 6 +512 409 10 +513 410 182 +514 411 7 +515 411 11 +516 412 19 +517 412 11 +518 413 18 +519 413 2 +520 413 14 +521 413 6 +522 413 10 +523 414 29 +524 414 7 +525 415 183 +526 416 184 +527 417 185 +528 418 186 +529 419 187 +530 420 188 +531 421 17 +532 421 1 +533 421 29 +534 421 13 +535 421 5 +536 421 9 +537 422 17 +538 422 1 +539 422 29 +540 422 13 +541 422 5 +542 422 9 +543 423 16 +544 423 8 +545 423 12 +546 424 189 +547 425 190 +548 426 191 +549 427 192 +550 428 193 +551 429 194 +552 430 195 +553 431 196 +554 432 197 +555 433 30 +556 434 198 +557 435 199 +558 436 19 +559 436 3 +560 436 15 +561 436 7 +562 436 11 +563 437 4 +564 438 7 +565 439 200 +566 440 201 +567 441 202 +568 443 203 +569 444 204 +570 445 205 +571 446 206 +572 447 207 +573 448 208 +574 449 209 +575 450 210 +576 451 211 +577 452 19 +578 452 3 +579 452 29 +580 452 15 +581 452 7 +582 452 11 +583 453 212 +584 454 213 +585 455 214 +586 456 19 +587 456 3 +588 456 29 +589 456 23 +590 456 27 +591 456 15 +592 456 7 +593 456 11 +594 457 215 +595 458 216 +596 459 217 +597 460 218 +598 461 219 +599 462 220 +600 463 221 +601 464 222 +602 465 223 +603 466 20 +604 466 4 +605 466 16 +606 466 8 +607 466 12 +608 467 224 +609 468 225 +610 469 226 +611 470 227 +612 471 228 +613 472 229 +614 473 230 +615 474 231 +616 475 232 +617 476 233 +618 477 6 +619 478 18 +620 478 2 +621 478 30 +622 478 22 +623 478 26 +624 478 14 +625 478 6 +626 478 10 +627 479 20 +628 479 4 +629 479 24 +630 479 28 +631 479 16 +632 479 8 +633 479 12 +634 480 19 +635 480 3 +636 480 23 +637 480 27 +638 480 15 +639 480 7 +640 480 11 +641 481 234 +642 482 235 +643 483 236 +644 484 237 +645 485 238 +646 486 239 +647 487 18 +648 488 12 +649 489 16 +650 490 19 +651 490 3 +652 490 30 +653 490 22 +654 490 26 +655 490 15 +656 490 7 +657 490 11 +658 491 240 +659 492 241 +660 493 242 +661 494 30 +662 495 243 +663 496 244 +664 497 245 +665 498 246 +666 499 29 +667 499 16 +668 499 11 +669 500 247 +670 501 29 +671 502 248 +672 503 249 +673 504 250 +674 505 251 +675 506 252 +676 507 19 +677 507 3 +678 507 15 +679 507 7 +680 507 11 +681 508 2 +682 508 14 +683 508 6 +684 508 10 +685 509 11 +686 510 253 +687 511 254 +688 512 255 +689 513 256 +690 514 1 +691 514 13 +692 514 5 +693 514 9 +694 515 3 +695 515 15 +696 515 11 +697 516 17 +698 516 1 +699 516 13 +700 516 7 +701 516 9 +702 517 20 +703 517 4 +704 517 14 +705 517 7 +706 517 10 +707 518 257 +708 519 258 +709 520 259 +710 521 260 +711 522 261 +712 523 262 +713 524 263 +714 525 20 +715 525 4 +716 525 16 +717 525 8 +718 525 12 +719 526 19 +720 527 20 +721 527 4 +722 527 16 +723 527 8 +724 527 12 +725 528 20 +726 528 4 +727 528 16 +728 528 8 +729 528 12 +730 529 264 +731 530 265 +732 531 19 +733 531 3 +734 531 15 +735 531 7 +736 531 11 +737 532 266 +738 533 267 +739 534 268 +740 535 269 +741 536 270 +742 537 19 +743 537 29 +744 537 14 +745 538 271 +746 539 272 +747 540 273 +748 541 19 +749 541 3 +750 541 29 +751 541 15 +752 541 7 +753 541 11 +754 542 274 +755 543 15 +756 543 11 +757 544 29 +758 545 275 +759 546 3 +760 546 15 +761 547 4 +762 548 276 +763 549 277 +764 550 278 +765 551 17 +766 551 1 +767 551 13 +768 551 5 +769 551 9 +770 552 29 +771 553 279 +772 554 280 +773 555 281 +774 556 282 +775 557 283 +776 558 284 +777 559 19 +778 559 3 +779 559 11 +780 560 285 +781 561 30 +782 562 15 +783 562 7 +784 563 286 +785 564 287 +786 565 288 +787 566 29 +788 567 29 +789 567 7 +790 568 30 +791 569 30 +792 570 29 +793 571 29 +794 572 289 +795 573 290 +796 574 291 +797 575 292 +798 576 4 +799 576 22 +800 576 26 +801 576 16 +802 576 8 +803 576 12 +804 577 293 +805 578 294 +806 579 295 +807 580 17 +808 580 1 +809 580 30 +810 580 21 +811 580 25 +812 580 13 +813 580 5 +814 580 9 +815 581 10 +816 582 20 +817 582 4 +818 582 24 +819 582 28 +820 582 16 +821 582 8 +822 582 12 +823 583 296 +824 584 19 +825 584 3 +826 584 15 +827 584 7 +828 585 297 +829 586 29 +830 586 24 +831 586 28 +832 587 298 +833 588 18 +834 588 2 +835 588 14 +836 588 6 +837 588 10 +838 589 299 +839 590 300 +840 591 18 +841 591 2 +842 591 14 +843 591 6 +844 591 10 +845 592 3 +846 592 15 +847 592 7 +848 593 30 +849 594 19 +850 594 3 +851 594 23 +852 594 7 +853 594 11 +854 595 301 +855 596 302 +856 597 303 +857 598 18 +858 598 10 +859 599 304 +860 600 19 +861 600 3 +862 600 15 +863 600 7 +864 600 11 +865 601 305 +866 602 306 +867 603 2 +868 603 11 +869 604 19 +870 604 11 +871 605 20 +872 605 4 +873 605 16 +874 605 8 +875 605 12 +876 606 307 +877 607 308 +878 608 309 +879 609 310 +880 610 311 +881 611 30 +882 612 312 +883 613 313 +884 614 314 +885 615 315 +886 616 316 +887 617 317 +888 618 20 +889 618 16 +890 618 8 +891 618 12 +892 619 29 +893 620 318 +894 621 319 +895 622 320 +896 623 321 +897 624 322 +898 625 19 +899 625 3 +900 625 7 +901 625 11 +902 626 323 +903 627 19 +904 627 3 +905 627 7 +906 628 10 +907 629 30 +908 630 15 +909 630 7 +910 630 11 +911 631 15 +912 631 7 +913 631 11 +914 632 324 +915 633 19 +916 633 3 +917 633 15 +918 633 7 +919 633 11 +920 634 325 +921 635 19 +922 635 3 +923 636 11 +924 637 326 +925 638 18 +926 638 2 +927 638 14 +928 638 6 +929 638 10 +930 639 327 +931 640 328 +932 641 329 +933 642 330 +934 643 4 +935 643 29 +936 644 331 +937 645 332 +938 646 333 +939 647 334 +940 648 8 +941 649 335 +942 650 336 +943 651 337 +944 652 338 +945 653 339 +946 654 340 +947 655 341 +948 656 342 +949 657 343 +950 658 344 +951 659 19 +952 659 3 +953 659 15 +954 659 7 +955 659 11 +956 660 20 +957 660 4 +958 660 16 +959 660 8 +960 660 12 +961 661 19 +962 661 3 +963 661 15 +964 661 7 +965 661 11 +966 662 345 +967 663 346 +968 664 347 +969 665 20 +970 665 4 +971 665 22 +972 665 16 +973 665 8 +974 665 12 +975 666 20 +976 666 4 +977 666 22 +978 666 16 +979 666 8 +980 666 12 +981 667 348 +982 668 349 +983 669 350 +984 670 351 +985 671 352 +986 672 353 +987 673 354 +988 674 355 +989 675 356 +990 676 357 +991 677 1 +992 677 29 +993 677 13 +994 677 5 +995 677 9 +996 678 17 +997 678 1 +998 678 14 +999 678 5 +1000 678 9 +1001 679 358 +1002 680 359 +1003 681 360 +1004 682 361 +1005 683 362 +1006 684 363 +1007 685 364 +1008 686 365 +1009 687 17 +1010 687 1 +1011 687 29 +1012 687 13 +1013 687 5 +1014 687 9 +1015 688 366 +1016 689 367 +1017 690 368 +1018 691 20 +1019 691 29 +1020 691 12 +1021 692 369 +1022 693 370 +1023 694 371 +1024 695 372 +1025 696 373 +1026 697 374 +1027 698 375 +1028 699 18 +1029 699 2 +1030 699 14 +1031 699 6 +1032 699 10 +1033 700 30 +1034 700 22 +1035 700 26 +1036 701 26 +1037 702 4 +1038 703 376 +1039 704 24 +1040 704 28 +1041 704 16 +1042 704 8 +1043 705 20 +1044 705 4 +1045 705 12 +1046 706 20 +1047 706 24 +1048 706 28 +1049 706 8 +1050 706 12 +1051 707 377 +1052 708 378 +1053 709 29 +1054 710 379 +1055 711 1 +1056 711 30 +1057 711 14 +1058 711 6 +1059 712 380 +1060 713 20 +1061 713 4 +1062 713 16 +1063 713 8 +1064 713 12 +1065 714 3 +1066 714 22 +1067 714 11 +1068 715 18 +1069 715 2 +1070 715 14 +1071 715 6 +1072 715 10 +1073 716 381 +1074 717 382 +1075 718 19 +1076 718 3 +1077 718 15 +1078 718 7 +1079 718 11 +1080 719 383 +1081 720 19 +1082 721 384 +1083 722 17 +1084 722 1 +1085 722 13 +1086 722 5 +1087 722 9 +1088 723 385 +1089 724 386 +1090 725 20 +1091 725 4 +1092 725 30 +1093 725 16 +1094 725 8 +1095 725 12 +1096 726 387 +1097 727 20 +1098 727 4 +1099 727 16 +1100 727 8 +1101 727 12 +1102 728 388 +1103 729 389 +1104 730 12 +1105 731 3 +1106 731 7 +1107 731 11 +1108 732 18 +1109 732 2 +1110 732 14 +1111 732 6 +1112 732 10 +1113 733 2 +1114 733 29 +1115 733 14 +1116 733 6 +1117 733 10 +1118 734 390 +1119 735 391 +1120 736 392 +1121 737 393 +1122 738 29 +1123 738 12 +1124 739 394 +1125 740 2 +1126 740 6 +1127 741 395 +1128 742 396 +1129 743 29 +1130 744 397 +1131 745 398 +1132 746 399 +1133 747 400 +1134 748 401 +1135 749 402 +1136 750 18 +1137 750 2 +1138 750 14 +1139 750 6 +1140 750 10 +1141 751 29 +1142 752 29 +1143 753 403 +1144 754 20 +1145 754 4 +1146 754 22 +1147 754 16 +1148 754 8 +1149 755 404 +1150 756 405 +1151 757 406 +1152 758 407 +1153 759 20 +1154 759 4 +1155 759 29 +1156 759 16 +1157 759 8 +1158 759 12 +1159 760 408 +1160 761 409 +1161 762 410 +1162 763 411 +1163 764 412 +1164 765 413 +1165 766 414 +1166 767 415 +1167 768 22 +1168 768 26 +1169 769 20 +1170 769 4 +1171 769 12 +1172 770 416 +1173 771 417 +1174 772 14 +1175 772 5 +1176 772 9 +1177 773 16 +1178 773 8 +1179 773 12 +1180 774 418 +1181 775 419 +1182 776 420 +1183 777 19 +1184 777 3 +1185 778 421 +1186 779 422 +1187 780 423 +1188 781 17 +1189 781 1 +1190 781 13 +1191 781 5 +1192 781 9 +1193 782 424 +1194 783 1 +1195 783 13 +1196 783 9 +1197 784 3 +1198 784 15 +1199 784 7 +1200 784 11 +1201 785 8 +1202 786 425 +1203 787 4 +1204 788 426 +1205 789 9 +1206 790 427 +1207 791 428 +1208 792 429 +1209 793 19 +1210 793 3 +1211 793 15 +1212 793 7 +1213 793 11 +1214 794 430 +1215 795 431 +1216 796 1 +1217 796 30 +1218 796 7 +1219 796 9 +1220 797 432 +1221 798 433 +1222 799 434 +1223 800 435 +1224 801 436 +1225 802 437 +1226 803 438 +1227 804 439 +1228 805 440 +1229 890 20 +1230 890 4 +1231 890 30 +1232 890 16 +1233 890 8 +1234 890 12 +1235 946 19 +1236 946 29 +1237 1015 30 +1238 1038 29 +1239 1043 30 +1240 1111 23 +1241 1111 27 +1242 1112 30 +1243 1113 2 +1244 1113 13 +1245 1113 5 +1246 1113 10 +1247 1116 29 +1248 1116 28 +1249 1117 19 +1250 1117 15 +1251 1117 11 +1252 1118 3 +1253 1118 15 +1254 1118 6 +1255 1118 12 +1256 1120 1 +1257 1120 30 +1258 1120 10 +1259 1121 19 +1260 1121 3 +1261 1121 30 +1262 1121 7 +1263 1121 11 +1264 1123 19 +1265 1123 3 +1266 1124 30 +1267 1125 29 +1268 1125 22 +1269 1125 26 +1270 1126 20 +1271 1126 4 +1272 1126 30 +1273 1126 24 +1274 1126 28 +1275 1126 16 +1276 1126 8 +1277 1126 12 +1278 1127 19 +1279 1127 3 +1280 1127 15 +1281 1127 7 +1282 1127 11 +1283 1128 28 +1284 1129 20 +1285 1129 30 +1286 1129 16 +1287 1130 20 +1288 1130 4 +1289 1130 30 +1290 1130 23 +1291 1130 27 +1292 1130 16 +1293 1130 8 +1294 1131 19 +1295 1131 3 +1296 1131 15 +1297 1131 7 +1298 1131 11 +1299 1132 17 +1300 1132 1 +1301 1132 13 +1302 1132 5 +1303 1132 9 +1304 1133 17 +1305 1133 1 +1306 1133 13 +1307 1133 5 +1308 1133 9 +1309 1134 13 +1310 1134 5 +1311 1134 9 +1312 1135 12 +1313 1136 20 +1314 1136 4 +1315 1136 30 +1316 1136 23 +1317 1136 27 +1318 1136 16 +1319 1136 8 +1320 1136 12 +1321 1137 17 +1322 1137 1 +1323 1137 24 +1324 1137 28 +1325 1137 13 +1326 1137 5 +1327 1137 9 +1328 1138 30 +1329 1139 17 +1330 1139 1 +1331 1139 30 +1332 1139 24 +1333 1139 28 +1334 1139 13 +1335 1139 5 +1336 1139 9 +1337 1140 18 +1338 1140 22 +1339 1140 27 +1340 1140 14 +1341 1141 29 +1342 1141 27 +1343 1141 7 +1344 1142 15 +1345 1142 7 +1346 1143 24 +1347 1143 28 +1348 1144 3 +1349 1144 22 +1350 1145 20 +1351 1145 30 +1352 1145 23 +1353 1145 27 +1354 1146 30 +1355 1147 17 +1356 1147 1 +1357 1147 13 +1358 1147 5 +1359 1147 9 +1360 1148 29 +1361 1148 23 +1362 1148 27 +1363 1149 17 +1364 1149 1 +1365 1149 22 +1366 1149 26 +1367 1149 13 +1368 1149 5 +1369 1149 9 +1370 1150 17 +1371 1150 4 +1372 1150 29 +1373 1150 13 +1374 1150 5 +1375 1150 9 +1376 1151 17 +1377 1151 1 +1378 1151 24 +1379 1151 28 +1380 1151 13 +1381 1151 5 +1382 1151 9 +1383 1152 29 +1384 1152 24 +1385 1152 28 +1386 1153 19 +1387 1153 3 +1388 1153 29 +1389 1153 13 +1390 1153 5 +1391 1153 11 +1392 1154 2 +1393 1154 6 +1394 1154 10 +1395 1155 20 +1396 1155 14 +1397 1156 18 +1398 1156 29 +1399 1157 4 +1400 1157 30 +1401 1157 16 +1402 1157 12 +1403 1158 29 +1404 1159 20 +1405 1159 4 +1406 1160 19 +1407 1161 19 +1408 1161 4 +1409 1161 30 +1410 1161 28 +1411 1161 16 +1412 1161 8 +1413 1161 12 +1414 1162 20 +1415 1162 4 +1416 1162 23 +1417 1162 27 +1418 1162 16 +1419 1162 8 +1420 1162 12 +1421 1163 20 +1422 1163 4 +1423 1163 30 +1424 1163 24 +1425 1163 8 +1426 1163 12 +1427 1164 19 +1428 1164 30 +1429 1165 20 +1430 1165 4 +1431 1165 14 +1432 1165 6 +1433 1165 10 +1434 1166 19 +1435 1166 23 +1436 1166 27 +1437 1166 15 +1438 1166 7 +1439 1166 11 +1440 1167 20 +1441 1167 4 +1442 1167 30 +1443 1167 23 +1444 1167 27 +1445 1167 16 +1446 1167 8 +1447 1167 12 +1448 1168 30 +1449 1169 2 +1450 1169 30 +1451 1170 29 +1452 1170 24 +1453 1170 28 +1454 1171 20 +1455 1171 24 +1456 1172 1 +1457 1172 21 +1458 1172 26 +1459 1172 13 +1460 1172 12 +1461 1173 1 +1462 1174 19 +1463 1174 23 +1464 1174 14 +1465 1174 10 +1466 1175 20 +1467 1175 4 +1468 1175 30 +1469 1175 16 +1470 1175 8 +1471 1175 12 +1472 1176 18 +1473 1176 4 +1474 1176 30 +1475 1176 14 +1476 1176 6 +1477 1176 10 +1478 1177 1 +1479 1177 5 +1480 1177 9 +1481 1178 17 +1482 1179 13 +1483 1179 5 +1484 1179 9 +1485 1180 30 +1486 1180 22 +1487 1180 26 +1488 1181 29 +1489 1181 26 +1490 1182 3 +1491 1182 29 +1492 1182 23 +1493 1182 27 +1494 1183 20 +1495 1183 4 +1496 1183 29 +1497 1183 24 +1498 1183 28 +1499 1183 16 +1500 1183 8 +1501 1183 12 +1502 1184 18 +1503 1184 2 +1504 1184 30 +1505 1184 13 +1506 1184 6 +1507 1184 10 +1508 1185 18 +1509 1185 29 +1510 1185 22 +1511 1185 26 +1512 1186 19 +1513 1186 3 +1514 1186 23 +1515 1186 27 +1516 1186 15 +1517 1186 7 +1518 1186 11 +1519 1187 2 +1520 1187 29 +1521 1187 6 +1522 1187 10 +1523 1188 18 +1524 1188 2 +1525 1188 29 +1526 1188 14 +1527 1188 5 +1528 1188 9 +1529 1189 30 +1530 1189 22 +1531 1189 26 +1532 1191 20 +1533 1191 4 +1534 1191 30 +1535 1191 21 +1536 1191 25 +1537 1191 16 +1538 1191 8 +1539 1191 12 +1540 1192 30 +1541 1193 17 +1542 1193 1 +1543 1193 29 +1544 1193 13 +1545 1193 5 +1546 1193 9 +1547 1194 4 +1548 1194 6 +1549 1195 4 +1550 1195 8 +1551 1196 30 +1552 1197 18 +1553 1197 4 +1554 1197 15 +1555 1197 8 +1556 1197 12 +1557 1198 18 +1558 1198 2 +1559 1198 21 +1560 1198 25 +1561 1198 6 +1562 1199 20 +1563 1199 4 +1564 1199 30 +1565 1199 24 +1566 1199 28 +1567 1199 16 +1568 1199 8 +1569 1199 11 +1570 1200 18 +1571 1200 2 +1572 1200 22 +1573 1200 26 +1574 1200 14 +1575 1200 6 +1576 1200 10 +1577 1201 22 +1578 1201 26 +1579 1202 4 +1580 1202 24 +1581 1202 28 +1582 1202 16 +1583 1202 8 +1584 1202 12 +1585 1203 17 +1586 1203 4 +1587 1203 16 +1588 1203 5 +1589 1203 12 +1590 1204 30 +1591 1205 1 +1592 1205 5 +1593 1205 11 +1594 1206 29 +1595 1206 15 +1596 1206 8 +1597 1206 9 +1598 1207 19 +1599 1207 4 +1600 1207 24 +1601 1207 28 +1602 1207 15 +1603 1207 8 +1604 1207 11 +1605 1208 15 +1606 1208 7 +1607 1209 18 +1608 1209 1 +1609 1209 14 +1610 1209 5 +1611 1209 10 +1612 1210 24 +1613 1210 28 +1614 1211 19 +1615 1211 2 +1616 1211 8 +1617 1211 11 +1618 1212 30 +1619 1212 11 +1620 1213 30 +1621 1213 28 +1622 1214 30 +1623 1215 30 +1624 1216 19 +1625 1216 1 +1626 1216 30 +1627 1216 5 +1628 1216 10 +1629 1217 18 +1630 1217 26 +1631 1218 20 +1632 1218 4 +1633 1218 30 +1634 1218 24 +1635 1218 28 +1636 1219 20 +1637 1219 4 +1638 1219 29 +1639 1219 24 +1640 1219 28 +1641 1219 16 +1642 1219 8 +1643 1219 12 +1644 1220 19 +1645 1220 7 +1646 1221 17 +1647 1221 4 +1648 1221 13 +1649 1221 5 +1650 1221 9 +1651 1222 4 +1652 1222 30 +1653 1222 24 +1654 1222 28 +1655 1222 16 +1656 1222 10 +1657 1223 20 +1658 1223 30 +1659 1223 23 +1660 1223 16 +1661 1224 8 +1662 1225 18 +1663 1225 30 +1664 1225 22 +1665 1225 26 +1666 1225 8 +1667 1225 12 +1668 1226 17 +1669 1226 1 +1670 1226 13 +1671 1226 5 +1672 1226 9 +1673 1227 17 +1674 1227 1 +1675 1227 30 +1676 1227 13 +1677 1227 9 +1678 1228 20 +1679 1229 30 +1680 1229 22 +1681 1229 27 +1682 1229 5 +1683 1230 29 +1684 1231 18 +1685 1231 2 +1686 1231 14 +1687 1231 6 +1688 1231 10 +1689 1232 21 +1690 1232 25 +1691 1233 14 +1692 1233 6 +1693 1233 10 +1694 1234 30 +1695 1235 17 +1696 1235 1 +1697 1235 30 +1698 1235 21 +1699 1235 25 +1700 1235 13 +1701 1235 5 +1702 1235 9 +1703 1236 17 +1704 1236 2 +1705 1236 30 +1706 1236 13 +1707 1236 5 +1708 1236 12 +1709 1237 30 +1710 1237 22 +1711 1237 26 +1712 1237 13 +1713 1237 5 +1714 1238 17 +1715 1238 1 +1716 1238 13 +1717 1238 5 +1718 1238 9 +1719 1239 18 +1720 1239 13 +1721 1239 7 +1722 1240 19 +1723 1240 22 +1724 1240 26 +1725 1240 13 +1726 1240 8 +1727 1240 9 +1728 1241 4 +1729 1241 30 +1730 1241 21 +1731 1241 25 +1732 1241 12 +1733 1242 17 +1734 1242 1 +1735 1242 22 +1736 1242 26 +1737 1242 13 +1738 1242 5 +1739 1242 9 +1740 1243 20 +1741 1243 4 +1742 1243 30 +1743 1243 21 +1744 1243 25 +1745 1243 16 +1746 1243 8 +1747 1243 12 +1748 1244 20 +1749 1244 4 +1750 1244 30 +1751 1244 16 +1752 1244 8 +1753 1244 12 +1754 1245 18 +1755 1245 30 +1756 1246 12 +1757 1247 19 +1758 1247 3 +1759 1247 30 +1760 1247 15 +1761 1247 7 +1762 1247 11 +1763 1248 1 +1764 1248 30 +1765 1248 13 +1766 1248 9 +1767 1249 20 +1768 1249 2 +1769 1249 21 +1770 1249 25 +1771 1249 13 +1772 1249 9 +1773 1250 1 +1774 1250 29 +1775 1250 5 +1776 1250 9 +1777 1251 17 +1778 1251 1 +1779 1251 13 +1780 1251 5 +1781 1251 9 +1782 1252 20 +1783 1252 4 +1784 1252 30 +1785 1252 16 +1786 1252 8 +1787 1252 12 +1788 1253 18 +1789 1253 2 +1790 1253 22 +1791 1254 4 +1792 1254 30 +1793 1254 16 +1794 1254 8 +1795 1254 12 +1796 1255 2 +1797 1255 14 +1798 1255 6 +1799 1256 18 +1800 1256 22 +1801 1256 26 +1802 1256 14 +1803 1256 6 +1804 1256 10 +1805 1257 14 +1806 1257 10 +1807 1258 17 +1808 1259 4 +1809 1259 21 +1810 1259 25 +1811 1259 16 +1812 1259 8 +1813 1259 12 +1814 1260 30 +1815 1261 29 +1816 1262 20 +1817 1262 30 +1818 1262 16 +1819 1263 20 +1820 1263 24 +1821 1264 18 +1822 1264 2 +1823 1264 22 +1824 1264 26 +1825 1264 14 +1826 1264 6 +1827 1264 10 +1828 1265 22 +1829 1265 9 +1830 1266 19 +1831 1266 11 +1832 1267 17 +1833 1267 1 +1834 1267 9 +1835 1268 30 +1836 1269 30 +1837 1269 23 +1838 1269 27 +1839 1269 7 +1840 1270 19 +1841 1270 22 +1842 1270 26 +1843 1270 13 +1844 1270 8 +1845 1270 9 +1846 1271 20 +1847 1271 4 +1848 1271 29 +1849 1271 24 +1850 1271 28 +1851 1271 16 +1852 1271 8 +1853 1271 12 +1854 1272 26 +1855 1272 15 +1856 1272 7 +1857 1273 25 +1858 1274 20 +1859 1274 4 +1860 1274 30 +1861 1274 23 +1862 1274 27 +1863 1274 9 +1864 1275 17 +1865 1275 21 +1866 1275 25 +1867 1276 18 +1868 1276 2 +1869 1276 30 +1870 1276 22 +1871 1276 26 +1872 1276 14 +1873 1276 6 +1874 1276 10 +1875 1277 17 +1876 1277 1 +1877 1277 25 +1878 1278 30 +1879 1279 18 +1880 1279 30 +1881 1279 24 +1882 1279 28 +1883 1280 30 +1884 1281 30 +1885 1281 24 +1886 1281 25 +1887 1282 20 +1888 1282 4 +1889 1282 21 +1890 1282 25 +1891 1282 16 +1892 1282 8 +1893 1282 12 +1894 1283 30 +1895 1284 22 +1896 1284 26 +1897 1284 8 +1898 1285 18 +1899 1285 2 +1900 1285 22 +1901 1285 25 +1902 1285 14 +1903 1285 6 +1904 1285 10 +1905 1286 17 +1906 1286 1 +1907 1286 30 +1908 1286 21 +1909 1286 25 +1910 1286 13 +1911 1286 5 +1912 1286 9 +1913 1287 17 +1914 1287 1 +1915 1287 21 +1916 1287 25 +1917 1287 13 +1918 1287 5 +1919 1287 9 +1920 1288 17 +1921 1288 26 +1922 1289 30 +1923 1290 30 +1924 1291 17 +1925 1291 1 +1926 1291 30 +1927 1291 25 +1928 1291 5 +1929 1291 9 +1930 1292 4 +1931 1292 16 +1932 1292 8 +1933 1292 12 +1934 1293 20 +1935 1293 4 +1936 1293 30 +1937 1293 21 +1938 1293 25 +1939 1293 16 +1940 1293 8 +1941 1293 12 +1942 1294 2 +1943 1294 30 +1944 1294 14 +1945 1294 6 +1946 1295 18 +1947 1295 2 +1948 1295 30 +1949 1295 14 +1950 1295 6 +1951 1295 10 +1952 1296 18 +1953 1296 29 +1954 1296 10 +1955 1297 4 +1956 1297 16 +1957 1297 9 +1958 1298 16 +1959 1298 12 +1960 1299 20 +1961 1299 4 +1962 1299 30 +1963 1299 8 +1964 1299 12 +1965 1300 18 +1966 1300 2 +1967 1300 30 +1968 1300 22 +1969 1300 26 +1970 1300 14 +1971 1300 6 +1972 1300 11 +1973 1301 18 +1974 1301 1 +1975 1301 9 +1976 1302 15 +1977 1302 7 +1978 1303 18 +1979 1303 4 +1980 1304 20 +1981 1304 4 +1982 1304 13 +1983 1304 5 +1984 1304 9 +1985 1305 4 +1986 1305 30 +1987 1305 16 +1988 1305 8 +1989 1305 12 +1990 1306 4 +1991 1306 16 +1992 1306 11 +1993 1307 2 +1994 1307 23 +1995 1307 26 +1996 1307 14 +1997 1307 6 +1998 1307 10 +1999 1308 21 +2000 1308 25 +2001 1309 18 +2002 1309 2 +2003 1309 14 +2004 1309 6 +2005 1309 10 +2006 1310 17 +2007 1310 4 +2008 1310 30 +2009 1310 23 +2010 1310 27 +2011 1310 16 +2012 1311 17 +2013 1311 1 +2014 1311 21 +2015 1311 25 +2016 1311 13 +2017 1311 5 +2018 1311 9 +2019 1312 20 +2020 1312 4 +2021 1312 13 +2022 1312 5 +2023 1312 9 +2024 1313 18 +2025 1313 2 +2026 1313 30 +2027 1313 22 +2028 1313 26 +2029 1313 14 +2030 1313 6 +2031 1313 10 +2032 1314 30 +2033 1315 21 +2034 1315 25 +2035 1316 17 +2036 1316 1 +2037 1316 30 +2038 1316 21 +2039 1316 25 +2040 1316 13 +2041 1316 5 +2042 1316 9 +2043 1317 19 +2044 1317 3 +2045 1317 15 +2046 1317 7 +2047 1317 11 +2048 1318 17 +2049 1318 1 +2050 1318 13 +2051 1318 5 +2052 1318 9 +2053 1319 17 +2054 1319 30 +2055 1319 13 +2056 1319 5 +2057 1319 9 +2058 1320 2 +2059 1320 6 +2060 1320 10 +2061 1321 17 +2062 1321 1 +2063 1321 21 +2064 1321 25 +2065 1321 13 +2066 1321 5 +2067 1321 9 +2068 1322 1 +2069 1322 29 +2070 1323 20 +2071 1323 4 +2072 1323 30 +2073 1323 21 +2074 1323 25 +2075 1323 16 +2076 1323 8 +2077 1323 12 +2078 1324 23 +2079 1325 17 +2080 1325 1 +2081 1325 21 +2082 1325 25 +2083 1325 14 +2084 1325 6 +2085 1325 10 +2086 1326 17 +2087 1326 1 +2088 1326 29 +2089 1326 21 +2090 1326 25 +2091 1326 13 +2092 1326 5 +2093 1326 9 +2094 1327 18 +2095 1327 2 +2096 1327 30 +2097 1327 22 +2098 1327 26 +2099 1327 14 +2100 1327 6 +2101 1327 10 +2102 1328 4 +2103 1328 30 +2104 1328 8 +2105 1329 17 +2106 1329 1 +2107 1329 13 +2108 1329 5 +2109 1329 9 +2110 1330 19 +2111 1330 3 +2112 1330 15 +2113 1330 7 +2114 1330 11 +2115 1331 18 +2116 1331 2 +2117 1331 30 +2118 1331 14 +2119 1331 6 +2120 1331 10 +2121 1332 29 +2122 1333 15 +2123 1334 18 +2124 1334 2 +2125 1334 22 +2126 1334 26 +2127 1334 14 +2128 1334 6 +2129 1334 10 +2130 1335 20 +2131 1335 4 +2132 1335 30 +2133 1335 24 +2134 1335 28 +2135 1335 16 +2136 1335 8 +2137 1335 12 +2138 1336 17 +2139 1336 2 +2140 1336 22 +2141 1336 26 +2142 1336 14 +2143 1336 5 +2144 1336 10 +2145 1337 20 +2146 1337 4 +2147 1337 30 +2148 1337 24 +2149 1337 28 +2150 1337 16 +2151 1337 8 +2152 1337 12 +2153 1338 17 +2154 1338 1 +2155 1338 29 +2156 1338 21 +2157 1338 13 +2158 1338 5 +2159 1338 9 +2160 1339 30 +2161 1340 4 +2162 1340 16 +2163 1340 8 +2164 1340 12 +2165 1341 18 +2166 1341 1 +2167 1341 13 +2168 1341 5 +2169 1341 9 +2170 1342 8 +2171 1342 12 +2172 1343 4 +2173 1343 30 +2174 1343 22 +2175 1343 26 +2176 1343 16 +2177 1343 11 +2178 1344 20 +2179 1344 4 +2180 1344 21 +2181 1344 25 +2182 1344 16 +2183 1344 8 +2184 1344 12 +2185 1345 18 +2186 1345 2 +2187 1345 14 +2188 1345 6 +2189 1345 10 +2190 1346 18 +2191 1346 2 +2192 1346 14 +2193 1346 6 +2194 1346 10 +2195 1347 4 +2196 1347 30 +2197 1347 22 +2198 1347 26 +2199 1347 8 +2200 1348 1 +2201 1348 13 +2202 1348 9 +2203 1349 20 +2204 1349 30 +2205 1349 26 +2206 1349 10 +2207 1350 17 +2208 1350 1 +2209 1350 29 +2210 1350 21 +2211 1350 25 +2212 1350 13 +2213 1350 5 +2214 1350 9 +2215 1351 19 +2216 1352 1 +2217 1352 30 +2218 1352 23 +2219 1353 20 +2220 1353 24 +2221 1353 28 +2222 1353 8 +2223 1354 17 +2224 1354 1 +2225 1354 30 +2226 1354 21 +2227 1354 25 +2228 1354 13 +2229 1354 5 +2230 1354 9 +2231 1355 20 +2232 1355 4 +2233 1355 21 +2234 1355 25 +2235 1355 16 +2236 1355 8 +2237 1355 12 +2238 1356 18 +2239 1356 2 +2240 1356 24 +2241 1356 14 +2242 1356 6 +2243 1356 10 +2244 1357 18 +2245 1357 2 +2246 1357 30 +2247 1357 6 +2248 1357 10 +2249 1358 1 +2250 1358 30 +2251 1358 24 +2252 1358 28 +2253 1358 13 +2254 1358 5 +2255 1359 18 +2256 1359 2 +2257 1359 6 +2258 1360 13 +2259 1360 5 +2260 1361 14 +2261 1361 6 +2262 1361 10 +2263 1362 18 +2264 1362 30 +2265 1363 18 +2266 1363 2 +2267 1363 22 +2268 1363 26 +2269 1363 14 +2270 1363 6 +2271 1363 10 +2272 1364 29 +2273 1365 6 +2274 1365 11 +2275 1366 29 +2276 1366 26 +2277 1367 17 +2278 1367 1 +2279 1367 21 +2280 1367 25 +2281 1367 13 +2282 1367 5 +2283 1367 9 +2284 1368 1 +2285 1368 29 +2286 1368 13 +2287 1369 20 +2288 1369 21 +2289 1370 20 +2290 1370 4 +2291 1370 21 +2292 1370 25 +2293 1370 16 +2294 1370 8 +2295 1370 12 +2296 1371 30 +2297 1372 30 +2298 1372 21 +2299 1372 25 +2300 1373 17 +2301 1373 1 +2302 1373 21 +2303 1373 25 +2304 1373 13 +2305 1373 5 +2306 1373 9 +2307 1374 29 +2308 1375 17 +2309 1375 1 +2310 1375 21 +2311 1375 25 +2312 1375 13 +2313 1375 5 +2314 1375 9 +2315 1376 2 +2316 1376 30 +2317 1376 6 +2318 1376 10 +2319 1377 30 +2320 1378 18 +2321 1378 2 +2322 1378 14 +2323 1378 6 +2324 1378 10 +2325 1379 18 +2326 1379 2 +2327 1379 22 +2328 1379 14 +2329 1379 6 +2330 1379 10 +2331 1380 17 +2332 1380 4 +2333 1380 30 +2334 1380 21 +2335 1380 25 +2336 1380 13 +2337 1380 8 +2338 1380 9 +2339 1381 17 +2340 1381 21 +2341 1381 25 +2342 1381 13 +2343 1381 9 +2344 1382 20 +2345 1382 4 +2346 1382 30 +2347 1382 24 +2348 1382 28 +2349 1382 16 +2350 1382 8 +2351 1382 12 +2352 1383 4 +2353 1383 30 +2354 1383 24 +2355 1383 16 +2356 1383 8 +2357 1384 17 +2358 1384 23 +2359 1384 13 +2360 1384 10 +2361 1385 2 +2362 1385 30 +2363 1385 22 +2364 1385 13 +2365 1385 5 +2366 1385 10 +2367 1386 18 +2368 1386 2 +2369 1386 22 +2370 1386 26 +2371 1386 14 +2372 1386 6 +2373 1386 10 +2374 1387 4 +2375 1387 30 +2376 1387 16 +2377 1387 5 +2378 1387 12 +2379 1388 17 +2380 1388 1 +2381 1388 30 +2382 1388 13 +2383 1388 5 +2384 1388 9 +2385 1389 30 +2386 1390 17 +2387 1390 1 +2388 1390 13 +2389 1390 5 +2390 1390 9 +2391 1391 16 +2392 1391 8 +2393 1391 12 +2394 1392 17 +2395 1392 30 +2396 1392 13 +2397 1392 5 +2398 1393 17 +2399 1393 4 +2400 1393 28 +2401 1393 10 +2402 1394 20 +2403 1394 4 +2404 1394 27 +2405 1395 19 +2406 1395 4 +2407 1395 29 +2408 1396 20 +2409 1396 4 +2410 1396 30 +2411 1396 16 +2412 1396 8 +2413 1396 12 +2414 1397 17 +2415 1397 1 +2416 1397 30 +2417 1397 21 +2418 1397 25 +2419 1397 13 +2420 1397 5 +2421 1397 9 +2422 1398 17 +2423 1398 2 +2424 1398 30 +2425 1398 14 +2426 1398 10 +2427 1399 19 +2428 1399 3 +2429 1399 15 +2430 1399 7 +2431 1399 11 +2432 1400 18 +2433 1400 14 +2434 1400 6 +2435 1400 10 +2436 1401 17 +2437 1401 1 +2438 1401 24 +2439 1401 25 +2440 1401 9 +2441 1402 17 +2442 1402 21 +2443 1402 25 +2444 1402 12 +2445 1403 30 +2446 1404 2 +2447 1404 29 +2448 1404 10 +2449 1405 17 +2450 1405 1 +2451 1405 30 +2452 1405 13 +2453 1405 5 +2454 1405 9 +2455 1406 1 +2456 1406 29 +2457 1406 5 +2458 1407 2 +2459 1407 29 +2460 1408 1 +2461 1408 30 +2462 1408 21 +2463 1408 25 +2464 1409 20 +2465 1410 29 +2466 1411 2 +2467 1411 14 +2468 1411 6 +2469 1411 10 +2470 1412 17 +2471 1412 1 +2472 1412 13 +2473 1412 5 +2474 1412 9 +2475 1413 4 +2476 1413 29 +2477 1413 27 +2478 1413 12 +2479 1414 1 +2480 1414 5 +2481 1415 30 +2482 1416 19 +2483 1416 3 +2484 1416 23 +2485 1416 27 +2486 1416 15 +2487 1416 7 +2488 1416 11 +2489 1417 17 +2490 1417 1 +2491 1417 29 +2492 1417 21 +2493 1417 25 +2494 1417 13 +2495 1417 5 +2496 1417 9 +2497 1418 20 +2498 1418 4 +2499 1418 30 +2500 1418 24 +2501 1418 28 +2502 1418 16 +2503 1418 8 +2504 1418 12 +2505 1419 17 +2506 1419 1 +2507 1419 13 +2508 1419 5 +2509 1419 9 +2510 1420 18 +2511 1420 2 +2512 1420 14 +2513 1420 6 +2514 1420 10 +2515 1421 11 +2516 1422 4 +2517 1422 24 +2518 1422 16 +2519 1422 8 +2520 1423 17 +2521 1423 4 +2522 1423 30 +2523 1423 24 +2524 1423 28 +2525 1423 13 +2526 1423 5 +2527 1423 9 +2528 1424 18 +2529 1425 2 +2530 1425 6 +2531 1426 20 +2532 1426 21 +2533 1426 25 +2534 1426 16 +2535 1426 12 +2536 1427 17 +2537 1427 1 +2538 1427 13 +2539 1427 5 +2540 1427 9 +2541 1428 3 +2542 1428 15 +2543 1428 12 +2544 1429 20 +2545 1429 8 +2546 1430 20 +2547 1430 4 +2548 1430 22 +2549 1430 26 +2550 1430 16 +2551 1430 5 +2552 1431 18 +2553 1431 2 +2554 1432 18 +2555 1432 2 +2556 1432 14 +2557 1433 20 +2558 1433 4 +2559 1433 22 +2560 1433 26 +2561 1433 16 +2562 1434 18 +2563 1434 2 +2564 1434 30 +2565 1434 14 +2566 1434 12 +2567 1435 20 +2568 1435 2 +2569 1435 24 +2570 1435 28 +2571 1435 16 +2572 1435 8 +2573 1435 12 +2574 1436 20 +2575 1436 21 +2576 1436 25 +2577 1436 5 +2578 1437 18 +2579 1437 3 +2580 1437 15 +2581 1438 19 +2582 1438 4 +2583 1438 14 +2584 1438 10 +2585 1439 18 +2586 1439 3 +2587 1439 15 +2588 1440 23 +2589 1440 27 +2590 1441 29 +2591 1441 28 +2592 1441 7 +2593 1442 2 +2594 1442 29 +2595 1442 10 +2596 1443 29 +2597 1444 30 +2598 1445 1 +2599 1446 20 +2600 1446 4 +2601 1446 24 +2602 1446 25 +2603 1446 16 +2604 1446 8 +2605 1446 12 +2606 1447 20 +2607 1447 4 +2608 1447 21 +2609 1447 25 +2610 1447 16 +2611 1447 8 +2612 1447 12 +2613 1448 2 +2614 1448 22 +2615 1448 26 +2616 1448 14 +2617 1448 10 +2618 1449 30 +2619 1449 28 +2620 1450 29 +2621 1451 17 +2622 1451 1 +2623 1451 9 +2624 1452 20 +2625 1452 4 +2626 1452 29 +2627 1452 21 +2628 1452 25 +2629 1452 16 +2630 1452 8 +2631 1452 12 +2632 1453 4 +2633 1453 30 +2634 1453 16 +2635 1454 19 +2636 1454 3 +2637 1454 15 +2638 1454 7 +2639 1454 11 +2640 1455 2 +2641 1455 22 +2642 1455 14 +2643 1455 6 +2644 1455 10 +2645 1456 17 +2646 1456 1 +2647 1456 13 +2648 1456 5 +2649 1456 9 +2650 1457 7 +2651 1457 11 +2652 1458 3 +2653 1458 7 +2654 1459 18 +2655 1459 30 +2656 1459 8 +2657 1459 10 +2658 1460 17 +2659 1460 1 +2660 1460 30 +2661 1460 21 +2662 1460 25 +2663 1460 13 +2664 1460 5 +2665 1460 9 +2666 1461 30 +2667 1461 28 +2668 1462 17 +2669 1462 1 +2670 1462 30 +2671 1462 21 +2672 1462 25 +2673 1462 13 +2674 1462 5 +2675 1462 9 +2676 1463 20 +2677 1463 1 +2678 1463 24 +2679 1463 28 +2680 1463 13 +2681 1463 5 +2682 1463 9 +2683 1464 18 +2684 1464 2 +2685 1464 14 +2686 1464 6 +2687 1464 10 +2688 1465 18 +2689 1465 2 +2690 1465 22 +2691 1465 26 +2692 1465 14 +2693 1465 6 +2694 1465 10 +2695 1466 18 +2696 1466 22 +2697 1468 30 +2698 1468 8 +2699 1469 15 +2700 1469 7 +2701 1469 11 +2702 1470 18 +2703 1470 2 +2704 1470 14 +2705 1470 6 +2706 1470 10 +2707 1471 17 +2708 1471 4 +2709 1471 13 +2710 1471 5 +2711 1471 9 +2712 1472 20 +2713 1472 4 +2714 1472 30 +2715 1472 21 +2716 1472 25 +2717 1472 16 +2718 1472 8 +2719 1472 12 +2720 1473 21 +2721 1473 25 +2722 1474 1 +2723 1474 22 +2724 1474 26 +2725 1474 13 +2726 1474 8 +2727 1474 11 +2728 1475 30 +2729 1476 17 +2730 1476 1 +2731 1476 30 +2732 1476 21 +2733 1476 25 +2734 1476 13 +2735 1476 5 +2736 1476 9 +2737 1477 30 +2738 1477 21 +2739 1477 25 +2740 1478 4 +2741 1478 29 +2742 1478 8 +2743 1478 10 +2744 1479 18 +2745 1479 30 +2746 1480 20 +2747 1480 1 +2748 1480 26 +2749 1480 16 +2750 1480 8 +2751 1480 12 +2752 1481 18 +2753 1481 2 +2754 1481 30 +2755 1481 14 +2756 1481 6 +2757 1481 10 +2758 1482 4 +2759 1482 16 +2760 1482 8 +2761 1482 12 +2762 1483 17 +2763 1483 1 +2764 1483 13 +2765 1483 5 +2766 1483 9 +2767 1484 18 +2768 1484 3 +2769 1484 30 +2770 1484 14 +2771 1484 10 +2772 1485 20 +2773 1485 4 +2774 1485 24 +2775 1485 28 +2776 1485 16 +2777 1485 8 +2778 1485 12 +2779 1486 17 +2780 1486 1 +2781 1486 30 +2782 1486 21 +2783 1486 25 +2784 1486 13 +2785 1486 5 +2786 1486 9 +2787 1487 3 +2788 1487 15 +2789 1488 3 +2790 1488 21 +2791 1488 26 +2792 1488 16 +2793 1489 18 +2794 1489 2 +2795 1489 14 +2796 1489 6 +2797 1489 10 +2798 1490 2 +2799 1490 30 +2800 1490 14 +2801 1490 6 +2802 1491 20 +2803 1491 4 +2804 1491 28 +2805 1491 16 +2806 1492 30 +2807 1492 23 +2808 1493 18 +2809 1493 2 +2810 1494 17 +2811 1494 1 +2812 1494 13 +2813 1494 5 +2814 1494 9 +2815 1495 17 +2816 1495 2 +2817 1495 13 +2818 1495 6 +2819 1495 9 +2820 1496 29 +2821 1496 21 +2822 1496 25 +2823 1497 18 +2824 1497 30 +2825 1497 22 +2826 1497 16 +2827 1498 4 +2828 1498 22 +2829 1498 13 +2830 1498 8 +2831 1498 12 +2832 1500 17 +2833 1500 1 +2834 1500 29 +2835 1500 13 +2836 1500 5 +2837 1500 9 +2838 1501 2 +2839 1501 6 +2840 1501 10 +2841 1502 17 +2842 1502 4 +2843 1502 24 +2844 1502 28 +2845 1502 16 +2846 1502 8 +2847 1502 12 +2848 1503 18 +2849 1503 2 +2850 1503 30 +2851 1503 22 +2852 1503 26 +2853 1503 14 +2854 1503 6 +2855 1503 10 +2856 1504 4 +2857 1504 29 +2858 1504 22 +2859 1504 28 +2860 1504 8 +2861 1505 17 +2862 1505 4 +2863 1505 30 +2864 1505 23 +2865 1505 27 +2866 1505 5 +2867 1505 12 +2868 1506 4 +2869 1506 16 +2870 1506 8 +2871 1506 12 +2872 1507 18 +2873 1507 2 +2874 1507 29 +2875 1507 26 +2876 1507 14 +2877 1507 6 +2878 1507 10 +2879 1508 18 +2880 1508 22 +2881 1508 26 +2882 1509 20 +2883 1509 4 +2884 1509 30 +2885 1509 21 +2886 1509 25 +2887 1509 16 +2888 1509 8 +2889 1509 12 +2890 1510 21 +2891 1510 25 +2892 1510 13 +2893 1511 30 +2894 1512 20 +2895 1512 4 +2896 1512 30 +2897 1512 24 +2898 1512 12 +2899 1513 17 +2900 1513 1 +2901 1513 30 +2902 1513 13 +2903 1513 5 +2904 1513 9 +2905 1514 2 +2906 1514 6 +2907 1514 10 +2908 1515 2 +2909 1515 30 +2910 1515 10 +2911 1516 20 +2912 1516 4 +2913 1516 24 +2914 1516 28 +2915 1516 16 +2916 1516 8 +2917 1516 12 +2918 1517 1 +2919 1517 30 +2920 1517 14 +2921 1517 5 +2922 1517 10 +2923 1518 4 +2924 1518 23 +2925 1518 26 +2926 1518 8 +2927 1519 19 +2928 1519 1 +2929 1519 29 +2930 1519 13 +2931 1519 5 +2932 1519 9 +2933 1520 4 +2934 1520 24 +2935 1520 15 +2936 1521 19 +2937 1521 23 +2938 1521 27 +2939 1521 15 +2940 1522 17 +2941 1522 1 +2942 1522 21 +2943 1522 25 +2944 1522 13 +2945 1522 5 +2946 1522 9 +2947 1523 8 +2948 1523 12 +2949 1524 18 +2950 1524 1 +2951 1524 22 +2952 1524 26 +2953 1524 13 +2954 1524 5 +2955 1524 9 +2956 1525 2 +2957 1525 14 +2958 1525 6 +2959 1525 10 +2960 1526 18 +2961 1526 6 +2962 1527 17 +2963 1527 5 +2964 1527 10 +2965 1529 4 +2966 1529 8 +2967 1530 19 +2968 1531 18 +2969 1531 2 +2970 1531 22 +2971 1531 26 +2972 1531 13 +2973 1531 5 +2974 1531 10 +2975 1532 19 +2976 1532 3 +2977 1533 20 +2978 1533 4 +2979 1533 16 +2980 1533 12 +2981 1534 17 +2982 1534 1 +2983 1534 30 +2984 1534 13 +2985 1534 5 +2986 1534 9 +2987 1535 18 +2988 1535 2 +2989 1535 30 +2990 1535 22 +2991 1535 26 +2992 1535 14 +2993 1535 6 +2994 1535 10 +2995 1536 30 +2996 1536 22 +2997 1536 26 +2998 1536 8 +2999 1536 12 +3000 1537 20 +3001 1537 4 +3002 1537 30 +3003 1537 21 +3004 1537 25 +3005 1537 12 +3006 1538 18 +3007 1538 2 +3008 1538 14 +3009 1538 6 +3010 1538 10 +3011 1539 20 +3012 1539 12 +3013 1540 4 +3014 1540 22 +3015 1540 16 +3016 1540 8 +3017 1540 12 +3018 1541 17 +3019 1541 1 +3020 1541 13 +3021 1541 5 +3022 1541 9 +3023 1542 20 +3024 1542 4 +3025 1542 30 +3026 1542 24 +3027 1542 28 +3028 1542 16 +3029 1542 8 +3030 1542 12 +3031 1543 18 +3032 1543 2 +3033 1543 24 +3034 1543 28 +3035 1543 14 +3036 1543 5 +3037 1543 9 +3038 1544 18 +3039 1545 18 +3040 1545 2 +3041 1545 30 +3042 1545 22 +3043 1545 14 +3044 1545 7 +3045 1545 10 +3046 1546 18 +3047 1546 2 +3048 1546 22 +3049 1546 26 +3050 1546 14 +3051 1546 6 +3052 1546 10 +3053 1547 20 +3054 1547 4 +3055 1547 22 +3056 1547 26 +3057 1547 16 +3058 1548 18 +3059 1548 2 +3060 1548 29 +3061 1548 22 +3062 1548 26 +3063 1548 14 +3064 1548 6 +3065 1548 10 +3066 1549 21 +3067 1549 25 +3068 1549 12 +3069 1550 18 +3070 1550 2 +3071 1550 29 +3072 1550 14 +3073 1550 6 +3074 1550 10 +3075 1551 2 +3076 1551 30 +3077 1551 13 +3078 1551 6 +3079 1551 9 +3080 1552 17 +3081 1552 1 +3082 1552 30 +3083 1552 13 +3084 1552 5 +3085 1552 9 +3086 1553 22 +3087 1553 26 +3088 1554 30 +3089 1554 22 +3090 1554 26 +3091 1555 18 +3092 1555 2 +3093 1555 22 +3094 1555 26 +3095 1555 14 +3096 1555 6 +3097 1555 10 +3098 1556 19 +3099 1556 3 +3100 1556 30 +3101 1556 15 +3102 1556 7 +3103 1556 11 +3104 1557 30 +3105 1558 30 +3106 1559 20 +3107 1559 21 +3108 1559 25 +3109 1560 20 +3110 1560 21 +3111 1561 1 +3112 1561 21 +3113 1561 25 +3114 1561 10 +3115 1562 19 +3116 1562 3 +3117 1562 21 +3118 1562 25 +3119 1562 15 +3120 1562 7 +3121 1562 11 +3122 1563 3 +3123 1563 7 +3124 1563 11 +3125 1564 17 +3126 1564 30 +3127 1564 16 +3128 1564 7 +3129 1564 11 +3130 1565 29 +3131 1565 22 +3132 1565 26 +3133 1566 19 +3134 1566 3 +3135 1566 23 +3136 1566 27 +3137 1566 11 +3138 1567 18 +3139 1567 2 +3140 1567 6 +3141 1567 10 +3142 1568 20 +3143 1568 21 +3144 1568 25 +3145 1569 17 +3146 1569 21 +3147 1569 25 +3148 1570 20 +3149 1570 4 +3150 1570 30 +3151 1570 8 +3152 1570 12 +3153 1571 18 +3154 1571 2 +3155 1571 22 +3156 1571 26 +3157 1571 14 +3158 1571 6 +3159 1571 10 +3160 1572 17 +3161 1572 1 +3162 1572 22 +3163 1572 26 +3164 1572 13 +3165 1572 5 +3166 1572 9 +3167 1573 18 +3168 1573 3 +3169 1573 24 +3170 1573 14 +3171 1573 6 +3172 1573 10 +3173 1574 2 +3174 1574 10 +3175 1575 29 +3176 1576 18 +3177 1576 21 +3178 1576 26 +3179 1576 14 +3180 1576 6 +3181 1577 29 +3182 1578 2 +3183 1578 14 +3184 1578 6 +3185 1578 10 +3186 1579 19 +3187 1579 3 +3188 1579 21 +3189 1579 15 +3190 1579 7 +3191 1579 11 +3192 1580 17 +3193 1580 4 +3194 1580 21 +3195 1580 25 +3196 1580 16 +3197 1580 8 +3198 1580 12 +3199 1581 30 +3200 1582 18 +3201 1582 30 +3202 1582 24 +3203 1583 18 +3204 1583 2 +3205 1583 14 +3206 1583 6 +3207 1583 10 +3208 1584 30 +3209 1585 30 +3210 1586 23 +3211 1586 27 +3212 1587 20 +3213 1587 4 +3214 1587 21 +3215 1587 25 +3216 1587 16 +3217 1587 8 +3218 1587 12 +3219 1588 30 +3220 1589 22 +3221 1589 26 +3222 1589 16 +3223 1589 8 +3224 1589 9 +3225 1590 18 +3226 1590 2 +3227 1590 29 +3228 1590 14 +3229 1590 6 +3230 1590 10 +3231 1591 17 +3232 1591 1 +3233 1591 13 +3234 1591 5 +3235 1591 9 +3236 1592 30 +3237 1592 21 +3238 1592 25 +3239 1593 17 +3240 1593 1 +3241 1593 9 +3242 1594 30 +3243 1594 22 +3244 1594 26 +3245 1595 30 +3246 1596 17 +3247 1596 4 +3248 1596 21 +3249 1596 25 +3250 1596 8 +3251 1599 17 +3252 1599 21 +3253 1599 25 +3254 1602 3 +3255 1602 4 +3256 1604 7 +3257 1604 11 +3258 1607 18 +3259 1607 19 +3260 1607 20 +3261 1607 22 +3262 1607 23 +3263 1607 24 +3273 1612 29 +3274 1613 18 +3275 1613 19 +3276 1613 20 +3277 1613 30 +3278 1614 18 +3279 1614 19 +3280 1614 20 +3281 1614 30 +3284 1616 29 +3285 1616 30 +3286 1617 2 +3287 1617 3 +3288 1617 4 +3289 1617 5 +3290 1617 9 +3291 1617 11 +3292 1617 12 +3293 1617 17 +3294 1617 18 +3295 1617 19 +3296 1617 20 +3297 1617 21 +3298 1617 22 +3299 1617 23 +3300 1617 24 +3301 1617 25 +3302 1617 26 +3303 1617 27 +3304 1617 28 +3305 1618 22 +3306 1618 23 +3307 1618 24 +3308 1618 26 +3309 1618 27 +3310 1618 28 +3311 1618 30 +3315 1620 5 +3316 1620 6 +3317 1620 13 +3318 1620 14 +3319 1620 17 +3320 1622 7 +3321 1622 29 +3322 1619 27 +3323 1619 28 +3324 1619 29 +3325 1608 7 +3326 1608 8 +3327 1608 13 +3328 1608 14 +3329 1608 15 +3330 1608 16 +3331 1608 21 +3332 1608 22 +3333 1608 23 +3334 1623 5 +3335 1623 13 +3336 1625 3 +3337 1625 4 +3338 1625 7 +3339 1625 8 +3340 1625 11 +3341 1625 12 +3342 1625 15 +3343 1625 16 +3344 1625 19 +3345 1625 20 +3348 1630 3 +3349 1630 4 +3350 1630 7 +3351 1630 8 +3352 1630 11 +3353 1630 12 +3354 1630 15 +3355 1630 16 +3356 1630 19 +3357 1630 20 +3358 1628 29 +3359 1628 30 +3360 1632 3 +3361 1632 4 +3362 1632 7 +3363 1632 8 +3364 1632 11 +3365 1632 12 +3366 1632 15 +3367 1632 16 +3368 1632 19 +3369 1632 20 +3370 1632 23 +3371 1632 24 +3372 1632 27 +3373 1632 28 +3374 1632 29 +3375 1632 30 +3376 1615 26 +3377 1634 7 +3378 1634 15 +3379 1635 30 +3380 1636 21 +3381 1636 22 +3382 1636 30 +\. + + +-- +-- Data for Name: timeline; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.timeline (id, source_entity_type, source_entity_id, target_entity_type, target_entity_id, content_entity_type, content_entity_id, content_type, "timestamp", content) FROM stdin; +\. + + +-- +-- Data for Name: timeslot; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.timeslot (id, info, rrule, start, "end", occasional) FROM stdin; +1 MO-morning FREQ=WEEKLY;BYDAY=MO; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N +2 MO-noon FREQ=WEEKLY;BYDAY=MO; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N +3 MO-afternoon FREQ=WEEKLY;BYDAY=MO; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N +4 MO-evening FREQ=WEEKLY;BYDAY=MO; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N +5 TU-morning FREQ=WEEKLY;BYDAY=TU; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N +6 TU-noon FREQ=WEEKLY;BYDAY=TU; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N +7 TU-afternoon FREQ=WEEKLY;BYDAY=TU; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N +8 TU-evening FREQ=WEEKLY;BYDAY=TU; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N +9 WE-morning FREQ=WEEKLY;BYDAY=WE; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N +10 WE-noon FREQ=WEEKLY;BYDAY=WE; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N +11 WE-afternoon FREQ=WEEKLY;BYDAY=WE; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N +12 WE-evening FREQ=WEEKLY;BYDAY=WE; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N +13 TH-morning FREQ=WEEKLY;BYDAY=TH; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N +14 TH-noon FREQ=WEEKLY;BYDAY=TH; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N +15 TH-afternoon FREQ=WEEKLY;BYDAY=TH; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N +16 TH-evening FREQ=WEEKLY;BYDAY=TH; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N +17 FR-morning FREQ=WEEKLY;BYDAY=FR; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N +18 FR-noon FREQ=WEEKLY;BYDAY=FR; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N +19 FR-afternoon FREQ=WEEKLY;BYDAY=FR; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N +20 FR-evening FREQ=WEEKLY;BYDAY=FR; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N +21 SA-morning FREQ=WEEKLY;BYDAY=SA; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N +22 SA-noon FREQ=WEEKLY;BYDAY=SA; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N +23 SA-afternoon FREQ=WEEKLY;BYDAY=SA; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N +24 SA-evening FREQ=WEEKLY;BYDAY=SA; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N +25 SU-morning FREQ=WEEKLY;BYDAY=SU; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N +26 SU-noon FREQ=WEEKLY;BYDAY=SU; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N +27 SU-afternoon FREQ=WEEKLY;BYDAY=SU; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N +28 SU-evening FREQ=WEEKLY;BYDAY=SU; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N +29 occasional \N \N \N weekdays +30 occasional \N \N \N weekends +31 one-timer \N 2024-12-17 10:20:00 \N \N +32 one-timer \N 2024-11-21 09:50:00 \N \N +33 one-timer \N 2024-11-26 12:00:00 \N \N +34 one-timer \N 2024-11-07 10:00:00 \N \N +35 one-timer \N 2024-11-05 10:00:00 \N \N +36 one-timer \N 2024-11-06 11:10:00 \N \N +37 one-timer \N 2024-11-19 07:45:00 \N \N +38 one-timer \N 2024-11-07 15:15:00 \N \N +39 one-timer \N 2024-11-19 13:20:00 \N \N +40 one-timer \N 2024-11-13 14:00:00 \N \N +41 one-timer \N 2024-11-08 12:50:00 \N \N +42 one-timer \N 2024-11-29 15:00:00 \N \N +43 one-timer \N 2024-11-06 07:00:00 \N \N +44 one-timer \N 2024-11-06 08:00:00 \N \N +45 one-timer \N 2024-11-26 13:30:00 \N \N +46 one-timer \N 2024-11-13 13:35:00 \N \N +47 one-timer \N 2024-11-07 08:00:00 \N \N +48 one-timer \N 2024-11-14 12:00:00 \N \N +49 one-timer \N 2024-11-25 12:15:00 \N \N +50 one-timer \N 2024-11-20 09:30:00 \N \N +51 one-timer \N 2024-11-14 11:30:00 \N \N +52 one-timer \N 2024-11-18 10:15:00 \N \N +53 one-timer \N 2024-12-16 08:30:00 \N \N +54 one-timer \N 2024-11-18 10:00:00 \N \N +55 one-timer \N 2024-12-06 09:30:00 \N \N +56 one-timer \N 2024-12-03 10:05:00 \N \N +57 one-timer \N 2024-12-11 09:00:00 \N \N +58 one-timer \N 2024-12-10 12:00:00 \N \N +59 one-timer \N 2024-12-12 12:20:00 \N \N +60 one-timer \N 2024-11-25 13:00:00 \N \N +61 one-timer \N 2024-12-05 13:00:00 \N \N +62 one-timer \N 2024-12-13 00:00:00 \N \N +63 one-timer \N 2024-12-20 12:00:00 \N \N +64 one-timer \N 2024-12-03 12:30:00 \N \N +65 one-timer \N 2024-12-02 08:00:00 \N \N +66 one-timer \N 2024-12-09 09:40:00 \N \N +67 one-timer \N 2024-12-12 15:00:00 \N \N +68 one-timer \N 2024-12-10 08:30:00 \N \N +69 one-timer \N 2024-12-17 08:00:00 \N \N +70 one-timer \N 2024-12-17 13:30:00 \N \N +71 one-timer \N 2024-12-18 12:00:00 \N \N +72 one-timer \N 2024-12-18 07:45:00 \N \N +73 one-timer \N 2025-01-15 09:00:00 \N \N +74 one-timer \N 2025-01-21 11:00:00 \N \N +75 one-timer \N 2025-01-06 09:00:00 \N \N +76 one-timer \N 2025-01-20 14:00:00 \N \N +77 one-timer \N 2025-01-21 14:00:00 \N \N +78 one-timer \N 2025-01-22 14:30:00 \N \N +79 one-timer \N 2025-01-30 08:20:00 \N \N +80 one-timer \N 2025-01-28 09:30:00 \N \N +81 one-timer \N 2025-01-22 10:00:00 \N \N +82 one-timer \N 2025-01-28 13:10:00 \N \N +83 one-timer \N 2025-02-24 09:00:00 \N \N +84 one-timer \N 2025-02-05 10:00:00 \N \N +85 one-timer \N 2025-02-20 08:00:00 \N \N +86 one-timer \N 2025-02-10 09:00:00 \N \N +87 one-timer \N 2025-02-27 16:55:00 \N \N +88 one-timer \N 2025-02-08 12:30:00 \N \N +89 one-timer \N 2025-02-15 12:30:00 \N \N +90 one-timer \N 2025-02-22 12:30:00 \N \N +91 one-timer \N 2025-02-05 10:40:00 \N \N +92 one-timer \N 2025-02-21 10:00:00 \N \N +93 one-timer \N 2025-02-19 12:00:00 \N \N +94 one-timer \N 2025-03-03 10:00:00 \N \N +95 one-timer \N 2025-03-03 13:30:00 \N \N +96 one-timer \N 2025-02-18 10:10:00 \N \N +97 one-timer \N 2025-03-11 14:00:00 \N \N +98 one-timer \N 2025-02-26 14:30:00 \N \N +99 one-timer \N 2025-03-04 09:00:00 \N \N +100 one-timer \N 2025-03-03 09:00:00 \N \N +101 one-timer \N 2025-03-26 08:45:00 \N \N +102 one-timer \N 2025-04-30 13:00:00 \N \N +103 one-timer \N 2025-03-05 08:00:00 \N \N +104 one-timer \N 2025-03-14 09:30:00 \N \N +105 one-timer \N 2025-06-03 14:30:00 \N \N +106 one-timer \N 2025-03-13 13:00:00 \N \N +107 one-timer \N 2025-03-13 08:00:00 \N \N +108 one-timer \N 2025-03-19 11:20:00 \N \N +109 one-timer \N 2025-03-19 00:00:00 \N \N +110 one-timer \N 2025-03-18 10:50:00 \N \N +111 one-timer \N 2025-03-18 08:30:00 \N \N +112 one-timer \N 2025-03-19 10:30:00 \N \N +113 one-timer \N 2025-03-19 14:00:00 \N \N +114 one-timer \N 2025-05-07 12:35:00 \N \N +115 one-timer \N 2025-03-24 12:00:00 \N \N +116 one-timer \N 2025-03-21 12:30:00 \N \N +117 one-timer \N 2025-03-24 09:00:00 \N \N +118 one-timer \N 2025-03-19 11:00:00 \N \N +119 one-timer \N 2025-03-07 11:00:00 \N \N +120 one-timer \N 2025-03-20 11:30:00 \N \N +121 one-timer \N 2025-03-19 11:00:00 \N \N +122 one-timer \N 2025-03-27 08:30:00 \N \N +123 one-timer \N 2025-03-27 11:30:00 \N \N +124 one-timer \N 2025-04-14 12:45:00 \N \N +125 one-timer \N 2025-04-03 08:00:00 \N \N +126 one-timer \N 2025-04-16 15:15:00 \N \N +127 one-timer \N 2025-04-28 10:15:00 \N \N +128 one-timer \N 2025-04-08 12:45:00 \N \N +129 one-timer \N 2025-04-11 10:00:00 \N \N +130 one-timer \N 2025-06-04 07:00:00 \N \N +131 one-timer \N 2025-04-07 12:45:00 \N \N +132 one-timer \N 2025-04-23 08:00:00 \N \N +133 one-timer \N 2025-04-14 13:00:00 \N \N +134 one-timer \N 2025-04-17 11:00:00 \N \N +135 one-timer \N 2025-04-17 08:00:00 \N \N +136 one-timer \N 2025-04-22 10:30:00 \N \N +137 one-timer \N 2025-05-02 11:30:00 \N \N +138 one-timer \N 2025-05-13 08:30:00 \N \N +139 one-timer \N 2025-04-22 11:00:00 \N \N +140 one-timer \N 2025-05-02 16:16:00 \N \N +141 one-timer \N 2025-05-28 07:00:00 \N \N +142 one-timer \N 2025-05-05 08:00:00 \N \N +143 one-timer \N 2025-07-21 07:00:00 \N \N +144 one-timer \N 2025-05-19 11:00:00 \N \N +145 one-timer \N 2025-05-28 11:45:00 \N \N +146 one-timer \N 2025-05-19 08:30:00 \N \N +147 one-timer \N 2025-05-15 09:15:00 \N \N +148 one-timer \N 2025-05-21 08:30:00 \N \N +149 one-timer \N 2025-06-11 11:00:00 \N \N +150 one-timer \N 2025-06-02 08:00:00 \N \N +151 one-timer \N 2025-05-21 13:00:00 \N \N +152 one-timer \N 2025-05-27 10:30:00 \N \N +153 one-timer \N 2025-05-26 10:30:00 \N \N +154 one-timer \N 2025-05-28 12:30:00 \N \N +155 one-timer \N 2025-06-20 11:00:00 \N \N +156 one-timer \N 2025-06-05 09:00:00 \N \N +157 one-timer \N 2025-06-03 10:30:00 \N \N +158 one-timer \N 2025-06-11 15:00:00 \N \N +159 one-timer \N 2025-07-31 12:00:00 \N \N +160 one-timer \N 2025-06-16 10:00:00 \N \N +161 one-timer \N 2025-06-21 10:30:00 \N \N +162 one-timer \N 2025-07-04 14:00:00 \N \N +163 one-timer \N 2025-06-23 10:50:00 \N \N +164 one-timer \N 2025-07-15 11:30:00 \N \N +165 one-timer \N 2025-06-27 16:00:00 \N \N +166 one-timer \N 2025-07-22 13:00:00 \N \N +167 one-timer \N 2025-06-30 11:00:00 \N \N +168 one-timer \N 2025-07-11 12:00:00 \N \N +169 one-timer \N 2025-07-11 18:00:00 \N \N +170 one-timer \N 2025-07-08 10:00:00 \N \N +171 one-timer \N 2025-07-08 11:20:00 \N \N +172 one-timer \N 2025-07-31 07:00:00 \N \N +173 one-timer \N 2025-07-15 15:00:00 \N \N +174 one-timer \N 2025-07-11 09:00:00 \N \N +175 one-timer \N 2025-07-29 10:00:00 \N \N +176 one-timer \N 2025-08-04 14:20:00 \N \N +177 one-timer \N 2025-07-21 14:30:00 \N \N +178 one-timer \N 2025-07-17 11:00:00 \N \N +179 one-timer \N 2025-07-22 11:15:00 \N \N +180 one-timer \N 2025-07-21 14:00:00 \N \N +181 one-timer \N 2025-07-23 08:45:00 \N \N +182 one-timer \N 2025-07-31 08:00:00 \N \N +183 one-timer \N 2025-08-29 10:00:00 \N \N +184 one-timer \N 2025-07-29 08:40:00 \N \N +185 one-timer \N 2025-07-24 14:00:00 \N \N +186 one-timer \N 2025-07-24 16:00:00 \N \N +187 one-timer \N 2025-07-24 09:00:00 \N \N +188 one-timer \N 2025-07-25 14:00:00 \N \N +189 one-timer \N 2025-08-12 17:10:00 \N \N +190 one-timer \N 2025-08-14 13:45:00 \N \N +191 one-timer \N 2025-08-05 11:00:00 \N \N +192 one-timer \N 2025-07-30 15:00:00 \N \N +193 one-timer \N 2025-08-22 14:30:00 \N \N +194 one-timer \N 2025-09-05 09:50:00 \N \N +195 one-timer \N 2025-07-31 14:00:00 \N \N +196 one-timer \N 2025-08-22 15:00:00 \N \N +197 one-timer \N 2025-08-08 12:30:00 \N \N +198 one-timer \N 2025-08-11 09:30:00 \N \N +199 one-timer \N 2025-08-14 11:00:00 \N \N +200 one-timer \N 2025-09-12 15:00:00 \N \N +201 one-timer \N 2025-08-13 10:30:00 \N \N +202 one-timer \N 2025-08-12 15:00:00 \N \N +203 one-timer \N 2025-08-26 16:00:00 \N \N +204 one-timer \N 2025-08-21 09:40:00 \N \N +205 one-timer \N 2025-08-18 10:00:00 \N \N +206 one-timer \N 2025-08-29 14:00:00 \N \N +207 one-timer \N 2025-09-03 12:15:00 \N \N +208 one-timer \N 2025-09-09 14:15:00 \N \N +209 one-timer \N 2025-09-05 12:00:00 \N \N +210 one-timer \N 2025-09-01 15:00:00 \N \N +211 one-timer \N 2025-08-19 12:50:00 \N \N +212 one-timer \N 2025-08-29 10:40:00 \N \N +213 one-timer \N 2025-09-02 15:00:00 \N \N +214 one-timer \N 2025-09-09 11:30:00 \N \N +215 one-timer \N 2025-08-28 09:45:00 \N \N +216 one-timer \N 2025-08-27 18:20:00 \N \N +217 one-timer \N 2025-08-28 14:30:00 \N \N +218 one-timer \N 2025-09-08 15:10:00 \N \N +219 one-timer \N 2025-09-01 12:15:00 \N \N +220 one-timer \N 2025-09-17 13:00:00 \N \N +221 one-timer \N 2025-08-27 17:40:00 \N \N +222 one-timer \N 2025-09-05 08:00:00 \N \N +223 one-timer \N 2025-09-17 16:00:00 \N \N +224 one-timer \N 2025-09-01 14:00:00 \N \N +225 one-timer \N 2025-09-03 11:30:00 \N \N +226 one-timer \N 2025-09-04 13:20:00 \N \N +227 one-timer \N 2025-09-16 14:50:00 \N \N +228 one-timer \N 2025-09-12 10:00:00 \N \N +229 one-timer \N 2025-09-08 15:45:00 \N \N +230 one-timer \N 2025-09-11 12:30:00 \N \N +231 one-timer \N 2025-09-19 14:00:00 \N \N +232 one-timer \N 2025-09-11 18:00:00 \N \N +233 one-timer \N 2025-09-18 18:00:00 \N \N +234 one-timer \N 2025-09-30 09:00:00 \N \N +235 one-timer \N 2025-09-17 12:00:00 \N \N +236 one-timer \N 2025-09-15 08:00:00 \N \N +237 one-timer \N 2025-09-17 08:00:00 \N \N +238 one-timer \N 2025-10-14 11:10:00 \N \N +239 one-timer \N 2025-09-23 09:00:00 \N \N +240 one-timer \N 2025-09-30 17:00:00 \N \N +241 one-timer \N 2025-09-25 17:00:00 \N \N +242 one-timer \N 2025-09-26 09:50:00 \N \N +243 one-timer \N 2025-09-29 10:20:00 \N \N +244 one-timer \N 2025-10-24 12:30:00 \N \N +245 one-timer \N 2025-10-10 10:30:00 \N \N +246 one-timer \N 2025-12-11 14:00:00 \N \N +247 one-timer \N 2025-10-06 13:00:00 \N \N +248 one-timer \N 2025-10-08 12:30:00 \N \N +249 one-timer \N 2025-10-15 10:30:00 \N \N +250 one-timer \N 2025-10-17 12:00:00 \N \N +251 one-timer \N 2025-10-18 11:00:00 \N \N +252 one-timer \N 2025-10-23 10:00:00 \N \N +253 one-timer \N 2025-11-04 10:45:00 \N \N +254 one-timer \N 2025-10-28 09:30:00 \N \N +255 one-timer \N 2025-10-27 10:30:00 \N \N +256 one-timer \N 2025-10-31 11:30:00 \N \N +257 one-timer \N 2025-11-03 10:00:00 \N \N +258 one-timer \N 2025-11-12 09:30:00 \N \N +259 one-timer \N 2025-11-04 13:00:00 \N \N +260 one-timer \N 2025-11-20 10:00:00 \N \N +261 one-timer \N 2025-11-17 17:00:00 \N \N +262 one-timer \N 2025-11-03 10:10:00 \N \N +263 one-timer \N 2025-11-20 13:50:00 \N \N +264 one-timer \N 2025-12-22 10:30:00 \N \N +265 one-timer \N 2025-11-13 15:00:00 \N \N +266 one-timer \N 2025-11-11 10:00:00 \N \N +267 one-timer \N 2025-11-18 09:40:00 \N \N +268 one-timer \N 2025-11-20 11:00:00 \N \N +269 one-timer \N 2025-11-10 14:30:00 \N \N +270 one-timer \N 2025-11-20 13:45:00 \N \N +271 one-timer \N 2025-11-24 14:15:00 \N \N +272 one-timer \N 2025-11-27 14:40:00 \N \N +273 one-timer \N 2025-12-11 13:43:00 \N \N +274 one-timer \N 2025-11-21 09:45:00 \N \N +275 one-timer \N 2025-11-19 13:45:00 \N \N +276 one-timer \N 2025-11-17 09:15:00 \N \N +277 one-timer \N 2025-11-20 11:15:00 \N \N +278 one-timer \N 2025-12-03 10:15:00 \N \N +279 one-timer \N 2025-11-24 09:15:00 \N \N +280 one-timer \N 2025-11-25 08:10:00 \N \N +281 one-timer \N 2025-11-26 10:45:00 \N \N +282 one-timer \N 2030-01-01 01:01:00 \N \N +283 one-timer \N 2025-11-20 09:45:00 \N \N +284 one-timer \N 2025-11-27 15:40:00 \N \N +285 one-timer \N 2025-12-01 10:40:00 \N \N +286 one-timer \N 2025-12-03 11:10:00 \N \N +287 one-timer \N 2026-01-21 09:10:00 \N \N +288 one-timer \N 2025-12-17 12:00:00 \N \N +289 one-timer \N 2025-12-03 12:00:00 \N \N +290 one-timer \N 2025-12-12 07:30:00 \N \N +291 one-timer \N 2025-12-01 09:15:00 \N \N +292 one-timer \N 2025-12-09 15:00:00 \N \N +293 one-timer \N 2025-12-05 11:00:00 \N \N +294 one-timer \N 2025-12-29 12:30:00 \N \N +295 one-timer \N 2025-12-09 10:50:00 \N \N +296 one-timer \N 2025-12-16 11:00:00 \N \N +297 one-timer \N 2025-12-15 14:30:00 \N \N +298 one-timer \N 2025-12-22 10:00:00 \N \N +299 one-timer \N 2025-12-15 08:00:00 \N \N +300 one-timer \N 2025-12-29 12:30:00 \N \N +301 one-timer \N 2025-12-23 08:10:00 \N \N +302 one-timer \N 2026-01-13 09:00:00 \N \N +303 one-timer \N 2026-01-06 09:00:00 \N \N +304 one-timer \N 2026-01-29 07:30:00 \N \N +305 one-timer \N 2026-01-05 13:00:00 \N \N +306 one-timer \N 2026-01-08 08:15:00 \N \N +307 one-timer \N 2025-12-29 13:00:00 \N \N +308 one-timer \N 2026-01-09 13:00:00 \N \N +309 one-timer \N 2026-01-08 14:00:00 \N \N +310 one-timer \N 2026-01-20 08:30:00 \N \N +311 one-timer \N 2026-01-16 10:00:00 \N \N +312 one-timer \N 2026-02-13 10:20:00 \N \N +313 one-timer \N 2026-01-19 11:20:00 \N \N +314 one-timer \N 2026-02-19 13:00:00 \N \N +315 one-timer \N 2026-01-14 13:00:00 \N \N +316 one-timer \N 2026-01-06 13:30:00 \N \N +317 one-timer \N 2026-01-12 13:30:00 \N \N +318 one-timer \N 2026-01-15 15:00:00 \N \N +319 one-timer \N 2026-01-23 13:00:00 \N \N +320 one-timer \N 2026-01-15 16:00:00 \N \N +321 one-timer \N 2026-02-19 11:30:00 \N \N +322 one-timer \N 2026-01-26 12:00:00 \N \N +323 one-timer \N 2026-01-19 07:45:00 \N \N +324 one-timer \N 2026-01-26 13:45:00 \N \N +325 one-timer \N 2026-02-02 13:00:00 \N \N +326 one-timer \N 2026-01-21 10:30:00 \N \N +327 one-timer \N 2026-01-29 14:30:00 \N \N +328 one-timer \N 2026-02-10 14:00:00 \N \N +329 one-timer \N 2026-02-05 13:00:00 \N \N +330 one-timer \N 2026-02-05 10:00:00 \N \N +331 one-timer \N 2026-01-23 16:00:00 \N \N +332 one-timer \N 2026-02-03 10:30:00 \N \N +333 one-timer \N 2026-02-03 09:45:00 \N \N +334 one-timer \N 2026-02-17 08:30:00 \N \N +335 one-timer \N 2026-02-02 16:00:00 \N \N +336 one-timer \N 2026-02-09 09:40:00 \N \N +337 one-timer \N 2026-02-02 10:00:00 \N \N +338 one-timer \N 2026-02-16 12:30:00 \N \N +339 one-timer \N 2026-02-04 09:30:00 \N \N +340 one-timer \N 2026-03-17 09:40:00 \N \N +341 one-timer \N 2026-02-10 16:20:00 \N \N +342 one-timer \N 2026-02-26 12:45:00 \N \N +343 one-timer \N 2026-02-27 08:00:00 \N \N +344 one-timer \N 2026-02-10 08:45:00 \N \N +345 one-timer \N 2026-02-12 10:00:00 \N \N +346 one-timer \N 2026-02-16 09:15:00 \N \N +347 one-timer \N 2026-02-13 09:50:00 \N \N +348 one-timer \N 2026-02-12 16:00:00 \N \N +349 one-timer \N 2026-02-23 15:45:00 \N \N +350 one-timer \N 2026-02-13 12:00:00 \N \N +351 one-timer \N 2026-02-17 08:30:00 \N \N +352 one-timer \N 2026-05-18 10:45:00 \N \N +353 one-timer \N 2026-05-18 10:30:00 \N \N +354 one-timer \N 2026-02-13 10:00:00 \N \N +355 one-timer \N 2026-02-23 07:45:00 \N \N +356 one-timer \N 2026-03-05 09:00:00 \N \N +357 one-timer \N 2026-02-18 17:50:00 \N \N +358 one-timer \N 2026-02-24 12:00:00 \N \N +359 one-timer \N 2026-02-27 11:00:00 \N \N +360 one-timer \N 2026-03-12 16:00:00 \N \N +361 one-timer \N 2026-02-25 14:00:00 \N \N +362 one-timer \N 2026-02-25 12:30:00 \N \N +363 one-timer \N 2026-03-02 12:30:00 \N \N +364 one-timer \N 2026-02-25 09:00:00 \N \N +365 one-timer \N 2026-02-26 15:00:00 \N \N +366 one-timer \N 2026-03-03 12:00:00 \N \N +367 one-timer \N 2026-03-06 12:20:00 \N \N +368 one-timer \N 2026-03-03 11:15:00 \N \N +369 one-timer \N 2026-03-02 10:00:00 \N \N +370 one-timer \N 2026-03-03 16:00:00 \N \N +371 one-timer \N 2026-03-30 16:00:00 \N \N +372 one-timer \N 2026-03-03 15:00:00 \N \N +373 one-timer \N 2026-03-12 10:00:00 \N \N +374 one-timer \N 2026-03-10 16:00:00 \N \N +375 one-timer \N 2026-05-22 11:00:00 \N \N +376 one-timer \N 2026-03-06 09:00:00 \N \N +377 one-timer \N 2026-03-19 10:00:00 \N \N +378 one-timer \N 2026-03-04 08:00:00 \N \N +379 one-timer \N 2026-03-19 12:30:00 \N \N +380 one-timer \N 2026-03-14 09:00:00 \N \N +381 one-timer \N 2026-04-15 11:05:00 \N \N +382 one-timer \N 2026-04-22 11:05:00 \N \N +383 one-timer \N 2026-03-11 09:45:00 \N \N +384 one-timer \N 2026-03-11 09:00:00 \N \N +385 one-timer \N 2026-03-25 10:30:00 \N \N +386 one-timer \N 2026-03-12 15:00:00 \N \N +387 one-timer \N 2026-03-16 11:00:00 \N \N +388 one-timer \N 2026-03-17 14:30:00 \N \N +389 one-timer \N 2026-04-07 10:30:00 \N \N +390 one-timer \N 2026-05-18 13:30:00 \N \N +391 one-timer \N 2026-03-13 11:00:00 \N \N +392 one-timer \N 2026-03-17 10:00:00 \N \N +393 one-timer \N 2026-03-17 14:30:00 \N \N +394 one-timer \N 2026-04-07 10:30:00 \N \N +395 one-timer \N 2026-03-16 11:30:00 \N \N +396 one-timer \N 2026-07-02 10:00:00 \N \N +397 one-timer \N 2026-06-05 14:30:00 \N \N +398 one-timer \N 2026-03-23 09:00:00 \N \N +399 one-timer \N 2026-03-17 10:30:00 \N \N +400 one-timer \N 2026-03-16 11:00:00 \N \N +401 one-timer \N 2026-03-26 08:15:00 \N \N +402 one-timer \N 2026-03-18 12:00:00 \N \N +403 one-timer \N 2026-03-23 10:45:00 \N \N +404 one-timer \N 2026-03-24 11:00:00 \N \N +405 one-timer \N 2026-03-23 12:30:00 \N \N +406 one-timer \N 2026-03-23 09:15:00 \N \N +407 one-timer \N 2026-03-23 15:00:00 \N \N +408 one-timer \N 2026-04-09 14:00:00 \N \N +409 one-timer \N 2026-04-07 10:00:00 \N \N +410 one-timer \N 2026-03-26 08:00:00 \N \N +411 one-timer \N 2026-04-01 11:40:00 \N \N +412 one-timer \N 2026-03-30 11:00:00 \N \N +413 one-timer \N 2026-04-16 11:45:00 \N \N +414 one-timer \N 2026-04-16 11:45:00 \N \N +415 one-timer \N 2026-04-09 17:10:00 \N \N +416 one-timer \N 2026-04-15 13:20:00 \N \N +417 one-timer \N 2026-04-15 13:40:00 \N \N +418 one-timer \N 2026-04-10 09:50:00 \N \N +419 one-timer \N 2026-04-13 08:15:00 \N \N +420 one-timer \N 2026-04-21 09:30:00 \N \N +421 one-timer \N 2026-04-13 09:00:00 \N \N +422 one-timer \N 2026-04-07 18:00:00 \N \N +423 one-timer \N 2026-04-13 14:00:00 \N \N +424 one-timer \N 2026-04-09 10:00:00 \N \N +425 one-timer \N 2026-04-21 09:30:00 \N \N +426 one-timer \N 2026-04-21 10:00:00 \N \N +427 one-timer \N 2026-04-20 15:10:00 \N \N +428 one-timer \N 2026-04-10 07:30:00 \N \N +429 one-timer \N 2026-04-13 08:20:00 \N \N +430 one-timer \N 2026-04-23 12:00:00 \N \N +431 one-timer \N 2026-04-15 11:00:00 \N \N +432 one-timer \N 2026-05-05 14:00:00 \N \N +433 one-timer \N 2026-04-22 09:15:00 \N \N +434 one-timer \N 2026-04-17 11:00:00 \N \N +435 one-timer \N 2026-04-21 10:00:00 \N \N +436 one-timer \N 2026-04-23 09:45:00 \N \N +437 one-timer \N 2026-04-27 14:30:00 \N \N +438 one-timer \N 2026-05-13 12:00:00 \N \N +439 one-timer \N 2026-04-22 08:15:00 \N \N +440 one-timer \N 2026-04-23 12:00:00 \N \N +\. + + +-- +-- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public."user" (id, email, password, is_active, role, language, timezone, person_id, created_at, updated_at) FROM stdin; +1 dev@need4deed.org $2b$10$OCwKUlhc6yFMMKJCiUk/IuQ6tvORDc50qnwS4LdKIEY/NU94N//mi t admin en CET 1358 2026-04-21 17:17:23.83557 2026-04-21 17:17:23.83557 +7 contact@need4deed.org $2b$10$PauyPELbxjlQlcYJJW5oouc.UWneAHOukPE8Quhgp2xGhXudJtP5O t coordinator en CET 1361 2026-04-20 13:52:50.312741 2026-04-20 13:52:50.312741 +5 volunteer@need4deed.org $2b$10$I36WRFrCIJgygZqrHtzYhOzdl6Wyjib2Dlz9PZYgLoJFWG8YON/HC t coordinator en CET 1362 2026-04-20 13:51:46.335674 2026-04-20 13:51:46.335674 +4 info@need4deed.org $2b$10$iw8UyUQ14nvgFRdG5LxjwexLZTuRjWUqTFcGco/jUQ70DbkhCFyQ2 t admin en CET 1363 2026-04-20 13:44:53.208722 2026-04-20 13:44:53.208722 +8 accompanying@need4deed.org $2b$10$1oSojbM.y6eJ9IL/2FMoaOI7tT7kbhac9L8D/utWG8S1Y6T3Bx24G t coordinator en CET 1364 2026-04-20 13:53:39.797795 2026-04-20 13:53:39.797795 +9 community@need4deed.org $2b$10$ngB2.j1eiuLcvR8.bEkruulKIN3dG9Hq6ucQv97f3kPVm8mHCKzKq t coordinator en CET 1365 2026-04-20 13:54:15.918467 2026-04-20 13:54:15.918467 +\. + + +-- +-- Data for Name: volunteer; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- + +COPY public.volunteer (id, info_about, info_experience, status_engagement, status_communication, status_appreciation, status_type, status_match, status_cgc_process, status_vaccination, status_cgc, created_at, updated_at, deal_id, person_id, preferred_communication_type, date_return) FROM stdin; +1 Egfzqeztr ygk hglz-dqzei ygssgvxh - Liqvan 50.58.3532: Ofztktlztr of Hsqnkggd of Wkozm \f- Liqvan 71.59.3532: Lit eqf zkqflsqzt ykgd Kxlloqf zg Tfusoli gfsn, fgz zg Utkdqf\f- Ltfnq 79.75.3539: Lit’l gxz gy zgvf zoss Fgctdwtk.\f- Ltfnq 76.73.3539: Lit ol hktufqfz qfr vgxsr hktytk fgz zg zkqflsqzt ygk rgezgk’l qhhgofzdtfzl ygk fgv. vol-temp-unavailable \N \N accompanying vol-no-matches \N no no 2024-02-19 17:49:00 2024-02-19 17:49:00 797 554 {mobilePhone} \N +2 Oei wof ltoz yqlz toftd Pqik of rtk Xfztkaxfyz Egsxdwoqrqdd 42 tfuquotkz, rotl vxkrt cgf Wtcgl ctkdozztsz, qwtk rqff lofr qsst Agfzqazt mx Wtcgl tofutleisqytf, vtos rot t-Dqos-Qrktlltf foeiz dtik yxfazogfotkztf tze. Rql iqz doei rgei ltik tfzzäxleiz xfr oei vqk qxy dtoft toutft Ofozoqzoct qfutvotltf. Oei wof pvtoztk qf toftd Qxlzqxlei doz qfrtktktf Lhkqeiitsytkf ofztktllotkz vol-available \N \N regular vol-no-matches \N yes yes 2023-08-10 20:25:00 2023-08-10 20:25:00 798 555 {mobilePhone} \N +3 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-02-20 13:27:00 2024-02-20 13:27:00 799 556 {mobilePhone} \N +4 - Liqvan 73.58.3532: Of Hqaolzoqf zoss Qhkos 3532, ltfz qf tdqos vozi zit TYM hkgetll.\f78.58.3532: Lit rorf'z ytts egdygkzqwst ltfrofu itk htklgfqs ofygkdqzogf wn tdqos vol-inactive \N \N regular vol-no-matches \N no no 2024-02-20 13:51:00 2024-02-20 13:51:00 800 557 {mobilePhone} \N +5 - Liqvan 77.58.3532: Eiteaofu vozi Ztuts KQE oy lit egxsr rg rqneqkt lzqkzofu 71.55\f- Ltfnq 51.77.32: Lit ol lzoss qezoct of Eiqxlltlzk. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-02-20 14:20:00 2024-02-20 14:20:00 801 558 {mobilePhone} \N +6 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-02-20 15:07:00 2024-02-20 15:07:00 802 559 {mobilePhone} \N +7 Egfzqeztr ygk hglz-dqzei ygssgvxh - Liqvan 31.58.3532: Vt hxz itk of egfzqez vozi Egsxdwoqrqdd ygk nguq esqlltl, zitf lit ltfz zitd qf tdqos lqnofu lit iql qf tdtkutfen vol-inactive \N \N regular vol-no-matches \N yes no 2024-02-20 15:25:00 2024-02-20 15:25:00 803 560 {mobilePhone} \N +8 Egfzqeztr ygk hglz-dqzei ygssgvxh vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-02-20 19:30:00 2024-02-20 19:30:00 804 561 {mobilePhone} \N +9 Dgfrqn - Zixklrqn douiz wt iqkr ygk dt ql O fttr zg vgka qz 6 qd vol-available \N \N regular vol-no-matches \N yes no 2024-02-20 19:31:00 2024-02-20 19:31:00 805 562 {mobilePhone} \N +10 vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-02-20 23:31:00 2024-02-20 23:31:00 806 563 {mobilePhone} \N +11 vol-inactive \N \N regular vol-no-matches \N yes yes 2024-02-21 09:53:00 2024-02-21 09:53:00 807 564 {mobilePhone} \N +12 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-02-23 09:45:00 2024-02-23 09:45:00 808 565 {mobilePhone} \N +13 Egfzqeztr ygk hglz-dqzei ygssgvxh - Liqvan 77.58.3532: Ofztktlztr of zit Soeiztfwtku Lhkqeieqyt vol-available \N \N accompanying vol-no-matches \N no yes 2024-02-26 13:52:00 2024-02-26 13:52:00 809 566 {mobilePhone} \N +14 - Liqvan 85.59.3532: Zit cgsxfzttk eggkrofqzgk qz zit Iqfuqkl vkgzt zg Ltfnq ziqz Lqkq eqf gfsn itsh of zit tctfoful. / Igvtctk, o rgfz ziofa o eqf egddoz vttasn wxz kqzitk wovttasn. vgxsr lozss vgka ygk ngx? Vtrftlrqn qz 1 qd vgxsr wt htkytez. -Cglzts vol-available \N \N regular vol-no-matches \N no no 2024-02-26 14:02:00 2024-02-26 14:02:00 810 567 {mobilePhone} \N +15 vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-02-26 14:06:00 2024-02-26 14:06:00 811 568 {mobilePhone} \N +16 O voss hkgwqwsn lzqkz vgkaofu ql q ykttsqfetk / yxss zodt qfr/gk Utkdqf esqlltl of ftqk yxzxkt lg o rgf'z afgv qwgxz dn qcqosqwst zodtl ntz vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-02-26 14:12:00 2024-02-26 14:12:00 812 569 {mobilePhone} \N +17 vol-inactive \N \N regular vol-no-matches \N no no 2024-02-26 14:14:00 2024-02-26 14:14:00 813 570 {mobilePhone} \N +18 vol-inactive \N \N regular vol-no-matches \N no no 2024-02-26 14:44:00 2024-02-26 14:44:00 814 571 {mobilePhone} \N +19 vol-inactive \N \N regular vol-no-matches \N no no 2024-02-26 16:10:00 2024-02-26 16:10:00 815 572 {mobilePhone} \N +20 O vgka yxss vttarqnl wxz eqf rg d vol-new \N \N regular vol-no-matches \N yes no 2024-02-26 16:55:00 2024-02-26 16:55:00 816 573 {mobilePhone} \N +21 yxfrq: ltfz q ktjxtlz rr. 34.9 vol-available \N \N regular vol-no-matches \N yes yes 2024-02-26 17:04:00 2024-02-26 17:04:00 817 574 {mobilePhone} \N +22 - Pqdot / Fqrqc: fgz ktlhgfr fg viqzlqhh fg ztstukqd \fAtfmq 74.53.31: socofu of wtksof ygk 8 ntqkl, cgsxfzttktr wtygkt of qdlztkrqd igdtstll litsztkl, yggr wqfal. vqfztr zg uoct wqea zg egddxfozn, tlhteoqssn vozi ktyxutt ekolol. It iql q yxss zodt pgw, 6 zg 1, qcqosqwst gf vttarqnl of tctfofu qfr vttatfrl. Soctl of Aktxmwtku wtkudqffaotm qfr eqf egddxzt. Eqf egddoz gfet q vttar. Lhtqal ysxtfz rxzei, tfusoli qfr utkdqfw7 w3 stcts. Eqf vgka vozi wgzi qrxszl qfr aorl.   vol-available \N \N regular vol-no-matches \N yes no 2024-02-26 17:58:00 2024-02-26 17:58:00 818 575 {mobilePhone} \N +23 O qd q vgkaofu lzxrtfz qfr dn leitrxst eiqfutl tctkn ltdtlztk lg O vgxsr iqct zg dgroyn oz qeegkrofu zg ziqz. vol-temp-unavailable \N \N regular vol-no-matches \N yes no 2024-02-26 18:00:00 2024-02-26 18:00:00 819 576 {mobilePhone} \N +24 Egfzqeztr ygk hglz-dqzei ygssgvxh - Yxfrq 30.59.3532: Egfzqeztr ygk zkqflsqzogf, lit eqf zkqflsqzt zg Tfusoli, lqnl itk Utkdqf ol fgz uggr tfgxui vol-available \N \N accompanying vol-no-matches \N no yes 2024-02-26 22:37:00 2024-02-26 22:37:00 820 577 {mobilePhone} \N +25 eqf wt ystbowst vol-inactive \N \N regular vol-no-matches \N yes no 2024-02-26 23:02:00 2024-02-26 23:02:00 821 578 {mobilePhone} \N +26 Pxsn 7lz 3532: “O qd exkktfzsn qezoctsn sggaofu ygk q pgw ql dn xftdhsgndtfz ol egdofu zg qf tfr, vioei dtqfl O qslg lqrsn vgf'z wt qwst zg cgsxfzttk qfndgkt.” vol-active \N \N accompanying vol-no-matches \N yes no 2024-02-27 00:41:00 2024-02-27 00:41:00 822 579 {mobilePhone} \N +27 vol-available \N \N regular vol-no-matches \N yes no 2024-02-27 10:17:00 2024-02-27 10:17:00 823 580 {mobilePhone} \N +28 vol-temp-unavailable \N \N regular vol-no-matches \N yes yes 2024-02-28 10:51:00 2024-02-28 10:51:00 824 581 {mobilePhone} \N +29 O voss iqct volrgd zttzi lxkutkn gf 59.58 lg O tbhtez zg wt qwst zg lzqkz cgsxfzttkofu of dor-dqkei. qfr zg yoz dn leitrxst O vgxsr soat zg cgsxfzttk 7-8 rqnl q vtta O ight ziol dtllqut yofrl ngx vtss. O pxlz eqdt qekgll zit cgsxfzttkofu ghhgkzxfozn zg qllolz vozi zkqflsqzogf qz liqktr qeegddgrqzogf etfztkl ygk ktyxuttl, qfr O qd ktqssn ofztktlztr of egfzkowxzofu.O qd ysxtfz of wgzi Qkqwoe qfr Tfusoli, qfr O soct of Hqfagv (lxhtk esglt zg hktfmsqxtk wtku zgg). O pxlz ktetfzsn yofolitr dn lzxrotl qfr exkktfzsn iqct hstfzn gy zodt rxkofu zit rqn qfr vgxsr sgct zg qllolz ktyxutt -Cglzts vol-new \N \N accompanying vol-no-matches \N no no 2024-02-28 14:11:00 2024-02-28 14:11:00 825 582 {mobilePhone} \N +30 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-02-29 08:50:00 2024-02-29 08:50:00 826 583 {mobilePhone} \N +31 Zit leitrxst eqf eiqfut rthtfrofu gf zit vtta wxz ziol ol utftkqssn, vozi qrcqfet fgzoet, eqf dqat oz. Ofztktlztr ofrgofu qezocozotl vozi eiosrktf of Dqkmqif, vgkaofu gf Dtqlstl cqeeofqzogf vol-inactive \N \N regular vol-no-matches \N no yes 2024-02-29 12:02:00 2024-02-29 12:02:00 827 584 {mobilePhone} \N +32 yxfrq: “O iqct wttf qzztfrofu dn Rtxzlei W3 esqll Dgfrqn zikgxui Ykorqn wtzvttf 73:55 HD qfr 58:79 HD.Zit esqll voss qhhkgbodqztsn sqlz xfzos dor Dqkei ftbz ntqk qfr xfygkzxfqztsn O voss fgz wt qwst zg cgsxfzttk rxkofu zit dtfzogftr zodtykqdt.” vol-available \N \N accompanying vol-no-matches \N yes yes 2024-02-29 14:32:00 2024-02-29 14:32:00 828 585 {mobilePhone} \N +114 vol-available \N \N accompanying vol-no-matches \N yes no 2024-05-16 12:50:00 2024-05-16 12:50:00 910 667 {mobilePhone} \N +33 Qezxqssn od fgz ofzg ktuxsqk cgsxfzttkofu ql od vgkaofu vitftctk od yktt o rg cgsxfzttkofu Soctl of Lzxzzuqkz, vqfztr zg egdt zg zit Lhkofu Ytlzocqs of Hqfagv,\fwxz eqfetsstr q vtta wtygkt vol-inactive \N \N regular vol-no-matches \N yes no 2024-02-29 19:59:00 2024-02-29 19:59:00 829 586 {mobilePhone} \N +34 Ql O qd q lzxrtfz qfr iqct q dofo pgw ql vtss, dn qcqosqwosozn douiz eiqfut zikgxuigxz zit ftbz dgfzil wteqxlt gy hgllowst esqlltl gk wt lxwptez zg dttzoful leitrxstr ygk dn pgw. O ziofa O lzoss iqct zg youxkt gxz igv zg wtlz ofztukqzt cgsxfzttk vgka ofzg dn xlxqs leitrxst. / Egfzqeztr ygk hglz-dqzei ygssgvxh.\f Liqvan 87.50.39: Lit zqsatr zg zit eggkrofqzgk qz Zkqeitfwtkukofu (izzhl://vvv.fgzogf.lg/Zkqeitfwtkukofu-92258t807yer220ew6682r991230e958?hcl=37) qwgxz zit hkgwstd ziqz zit eiosrktf qkt fgz qzztfrofu itk ioh igh, qfr zitf qukttr ziqz lit vgxsr pgof gzitk hkgptezl zitn qkt rgofu pxlz zg utz zg afgv zit aorl lg ziqz zitn utz zg afgv itk. Lit yttsl ziqz htghst qz zit qeegddgrqzogf etfztk zitkt qkt fgz eggkrofqztr. Lit ol fgv cgsxfzttkofu qz qfgzitk qeegddgrqzogf etfztk Ktyxuoxd Iqxlcqztkvtu (izzhl://vvv.fgzogf.lg/Ktyxuoxd-Iqxlcqztkvtu-41e8587w01tt208w4559327q5r43wqt2?hcl=37) : Lit utzl q ztbz ykgd zitd vitf zitn fttr lgdtziofu, dglzsn itshofu vozi eiosrktf, qeegdhqfnofu zitd zg zit eoftdq, zit mgg, tze..), O gyytktr itk q Z-liokz qfr ltfz tctfz ofcozqzogf ygk 4. Qxuxlz vol-active \N \N regular vol-no-matches \N no yes 2024-03-01 18:00:00 2024-03-01 18:00:00 830 587 {mobilePhone} \N +35 Egfzqeztr ygk hglz-dqzei ygssgvxh vol-available \N \N regular vol-no-matches \N yes no 2024-03-04 15:36:00 2024-03-04 15:36:00 831 588 {mobilePhone} \N +36 Egfzqeztr ygk hglz-dqzei ygssgvxh - Liqvan (57.58.3532): Ugz of zgxei vozi iod ygk hsqnofu lhgkzl vozi eiosrktf of Soeiztfwtku gk Dqkmqif, it ol zkqctsofu qfr voss wt wqea of Dqn\fAtfmq 31.53.31: vgkal yxss zodt, eqf rg vttatfrl qfr tctfoful qyztk 1. sgctl rgofu qezocozotl vozi eiosrktf, hsqnofu, egsgxkofu, souiz lhgkzl (qslg vozi qrxszl) soat hofu hgfu. Utkdqf ol W7, soctl of Dozzt ftqk zg Qstbqfrtkhsqzm. TYM ol gsr. Iol voyt vgxsr qslg wt ofztktlztr qfr zitn vgxsr soat zg rg oz zgutzitk. vol-available \N \N regular vol-no-matches \N yes no 2024-03-06 11:26:00 2024-03-06 11:26:00 832 589 {mobilePhone} \N +37 yxfrq: cgsxfzttktr gf Dqn 87lz, q ktjxtlz ltfz gf Pxft 2zi vol-available \N \N accompanying vol-no-matches \N no yes 2024-03-06 15:50:00 2024-03-06 15:50:00 833 590 {mobilePhone} \N +38 Itssg,\fDn fqdt ol Qrqd. O iqct ktqr ziol hglozogf vozi ofztktlz. \fO qd xftdhsgntr qz zit dgdtfz vozi sgqrl gy yktt zodt.\fO xltr zg wqwnloz qfr vgxsr soat zg wtegdt qf Tkmotitk. / Egfzqeztr ygk hglz-dqzei ygssgvxh. vol-available \N \N regular vol-no-matches \N yes no 2024-03-07 15:44:00 2024-03-07 15:44:00 834 591 {mobilePhone} \N +39 Fght / Egfzqeztr ygk hglz-dqzei ygssgvxh O qd q dqlztk lzxrtfz lzxrnofu zgxkold qfr iglhozqsozn dqfqutdtfz. O vqfz zg zit eozn qfr ozl hkgwstdl qfr O vqfz zg uoct dn zodt zg lgdtziofu cqsxqwst. -Cglzts\f\fLtfnq 32.73.3539: It cgsxfzttktr gfet qz zit Yküisofulytlz of Hqfagv of 3532. vol-unresponsive \N \N regular vol-no-matches \N no no 2024-03-11 12:03:00 2024-03-11 12:03:00 835 592 {mobilePhone} \N +40 vol-new \N \N regular vol-no-matches \N yes no 2024-03-11 12:04:00 2024-03-11 12:04:00 836 593 {mobilePhone} \N +41 Egfzqeztr ygk hglz-dqzei ygssgvxh vol-inactive \N \N regular vol-no-matches \N no yes 2024-03-12 12:16:00 2024-03-12 12:16:00 837 594 {mobilePhone} \N +42 vol-new \N \N accompanying vol-no-matches \N no yes 2024-03-12 16:39:00 2024-03-12 16:39:00 838 595 {mobilePhone} \N +43 vol-inactive \N \N regular vol-no-matches \N no yes 2024-03-12 20:09:00 2024-03-12 20:09:00 839 596 {mobilePhone} \N +44 vol-inactive \N \N regular vol-no-matches \N no no 2024-03-12 23:08:00 2024-03-12 23:08:00 840 597 {mobilePhone} \N +45 Dn leitrxst eiqfutl tctkn vtta/dgfzi wteqxlt gy dn vgka. / Egfzqeztr ygk hglz-dqzei ygssgvxh - Dtllqut gf Qxuxlz 9zi: Itssg Qsoqfq, O vtfz zg zit ktyxutt litsztk gf 78zi Pxsn of Hqfagv. O dtz vozi Ltrgfq ykgd zit gkuqfolqzogf zg hsqn vozi aorl zitkt qfr O ziofa oz vtfz jxozt vtss! O egxsr dqat oz pxlz gfet wteqxlt O vgka gf Lqzxkrqnl zgg (gk O vql zqaofu cqeqzogf ygk lxddtk). Ziqfa ngx ygk ktqeiofu gxz. Aofr ktuqkrl Ltsof Wqs  vol-active \N \N regular vol-no-matches \N no yes 2024-03-13 09:43:00 2024-03-13 09:43:00 841 598 {mobilePhone} \N +46 vol-inactive \N \N regular vol-no-matches \N yes no 2024-03-13 13:47:00 2024-03-13 13:47:00 842 599 {mobilePhone} \N +47 O douiz fttr zg qrpxlz dn leitrxst oy O utz ioktr wn qf tdhsgntk. vol-new \N \N regular vol-no-matches \N no yes 2024-03-14 12:25:00 2024-03-14 12:25:00 843 600 {mobilePhone} \N +48 Egfzqeztr ygk hglz-dqzei ygssgvxh exkktfzsn O’d hxklxofu dqlztk gy hxwsoe itqszi of Qkrtf Xfoctklozn qfr O rgft dn dwwl ykgd Xakqoft lg vitf O vql lzxrnofu O ror vgka ygk FUG of kxkqs qktq ygk itshofu htghst ygk dqat oz qvqktftll qwgxz ofytezogxl roltqlt hktctfzogf -Fqfr vol-available \N \N accompanying vol-no-matches \N no no 2024-03-14 15:33:00 2024-03-14 15:33:00 844 601 {mobilePhone} \N +49 - Liqvan 36.59.3532: Ltfz ygssgv xh tdqos zg wgzi itk qfr Qswq. Zitn qkt qezoct qfr iqhhn 🙂 / O'd Qfrktq, q 39 ntqk gsr Lhqfoli uoks vig pxlz sqfrtr of Wtksof. O'ct lzxrotr Ofztkfqzogfqs Egghtkqzogf qfr lhteoqsomtr of vgka vozi doukqfzl qfr/gk ktyxuttl. -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-03-15 16:19:00 2024-03-15 16:19:00 845 602 {mobilePhone} \N +50 O vgka of zit tctfoful rxkofu zit vttarqn. Exkktfzsn fttr zg wt igdt wn 2hd. vol-active \N \N accompanying vol-no-matches \N no yes 2024-03-15 20:54:00 2024-03-15 20:54:00 846 603 {mobilePhone} \N +51 O qd Lgyot, 36 ntqkl gsr, ykgd Rtfdqka qfr O qd sggaofu zg lxhhgkz ngxk gkuqfomqzogf. O iqct hstfzn gy tbhtkotfet zqaofu eqkt gy eiosrktf qfr O lodhsn tfpgn ofztkqezofu, ztqeiofu qfr solztfofu zg zitd.  -Cglzts vol-inactive \N \N regular vol-no-matches \N yes yes 2024-03-18 14:54:00 2024-03-18 14:54:00 847 604 {mobilePhone} \N +52 Ygk fgv O'd qcqosqwst 0 rqnl q vtta wxz of 2 vttal zodt O'ss wt lzqkzofu Utkdqf sqfuxqut esqlltl, ykgd zitf O'ss gfsn wt qcqosqwst tctfoful qfr vttatfrl lzxrotr eiosreqkt ygk 8 ntqkl wqea of zit XA qfr iqct gctk 4 ntqkl gy tbhtkotfet vgkaofu vozi eiosrktf ykgd zit qut gy 1 dgfzil zg 75 ntqkl gsr ql q fqffn, ygk fxkltkotl & leiggsl. O sgct wtofu ofcgsctr vozi eiosrktf, hsqnofu uqdtl of zit hqka, rqfeofu zg dxloe, wqaofu, hqofzofu, ktqrofu lzgkotl, gk ektqzofu gxk gvf lzgkotl. O iqct lgdt LTF tbhtkotfet sggaofu qyztk eiosrktf vozi itqkofu odhqokdtfz, QRIR, qfr qxzold. \f\fO exkktfzsn lhtqa wqloe Utkdqf wxz voss wt lzxrnofu Utkdqf yxss zodt ykgd Qhkos, O'r soat zg cgsxfzttk vtss O lzxrn. vol-available \N \N regular vol-no-matches \N yes no 2024-03-18 19:16:00 2024-03-18 19:16:00 848 605 {mobilePhone} \N +53 Iqsy gy zit dgfzi O'd qcqosqwst gf Dgfrqn ykgd 2hd, zit gzitk iqsy O'd qcqosqwst 1hd. O'd Zqdolq, 34 ntqkl gsr qfr Wkqmosoqf. Zvg qfr q iqsy ntqkl qug O dgctr zg Utkdqfn zg rg dn rgezgkqzt. Lofet zitf O ror fgz rtroeqzt dnltsy zg cgsxfzttkofu, rxt zg dn Utkdqf stcts, ql O ziol ghhgkzxfozn rgtl fgz ktjxokt ioui egdqfr gy Utkdqf -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-03-19 16:58:00 2024-03-19 16:58:00 849 606 {mobilePhone} \N +54 Atfnqf dqst qfr qutr 82 ntqkl gsr. O qd ofztktlztr of zqaofu hqkz of ngxk tctfz. O qd qf qlnsxd lttatk of Utkdqfn qfr O soct of Vüflrgy Vqsrlzqrz.  -Cglzts vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-03-21 08:04:00 2024-03-21 08:04:00 850 607 {mobilePhone} \N +55 Dn utkdqf ol gfsn Q7 stcts. -Cglzts vol-inactive \N \N regular vol-no-matches \N no yes 2024-03-26 14:51:00 2024-03-26 14:51:00 851 608 {mobilePhone} \N +116 vol-temp-unavailable \N \N accompanying vol-no-matches \N no no 1970-01-01 00:00:00 1970-01-01 00:00:00 912 669 {mobilePhone} \N +56 O qd q 39 ntqkl gsr Dqlztkl lzxrtfz of Wtksof, qfr O qd eqhqwst gy itshofu. O lhtqa Qkqwoe, Tfusoli qfr dn Rtxzlei ol qhhkgbodqztsn W7. -Cglzts vol-new \N \N regular vol-no-matches \N no no 2024-03-28 12:24:00 2024-03-28 12:24:00 852 609 {mobilePhone} \N +57 o qd vol-inactive \N \N regular vol-no-matches \N no no 2024-03-29 12:52:00 2024-03-29 12:52:00 853 610 {mobilePhone} \N +58 vol-new \N \N regular vol-no-matches \N yes no 2024-04-02 12:21:00 2024-04-02 12:21:00 854 611 {mobilePhone} \N +59 vol-inactive \N \N regular vol-no-matches \N no yes 2024-04-02 17:20:00 2024-04-02 17:20:00 855 612 {mobilePhone} \N +60 O qd qssgvtr zg zqat 7 rqn ygk cgsxfzttkofu tqei dgfzi. Ykorqnl vgxsr vgka wtlz vozi dn vgka leitrxst. Oy hgllowst. Itshofu aorl iqct yxf qfr stqkf zikgxui qkz qfr hsqn lgxfrl soat qf qdqmofu vqn zg xlt dn cgsxfzttkofu zodt. O iqct wqloe Utkdqf sqfuxqut laossl (Q3.7) qfr iqct vgkatr vozi eiosrktf wtygkt, ztqeiofu Tfusoli of Cotzfqd.  -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-02 21:06:00 2024-04-02 21:06:00 856 613 {mobilePhone} \N +61 f/q vol-new \N \N regular vol-no-matches \N yes yes 2024-04-04 12:46:00 2024-04-04 12:46:00 857 614 {mobilePhone} \N +62 o qd q lgeoqs vgkatk vgkaofu vozi ngxfu gytfrtk vol-inactive \N \N accompanying vol-no-matches \N no no 2024-04-08 11:30:00 2024-04-08 11:30:00 858 615 {mobilePhone} \N +63 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-04-08 13:23:00 2024-04-08 13:23:00 859 616 {mobilePhone} \N +64 O iqct q yxss zodt pgw rxkofu zit vttarqn (4 zg 1hd) lg O eqf gfsn vgka gxzlort gy zitlt igxkl O rgf'z iqct dxei tbhtkotfet vozi uqkrtfofu, wxz O'd ktqssn tqutk zg stqkf. O'd q yqlz stqkftk qfr lxhtk dgzocqztr zg pxdh of qfr itsh gxz. -Qszqo vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-11 19:54:00 2024-04-11 19:54:00 860 617 {mobilePhone} \N +65 yxfrq- iqr q cortg eiqz gf Dqn 30zi. Lit iql cgsxfzttktr ygk zkqflsqzogf gf Dqn 36zi vol-available \N \N accompanying vol-no-matches \N yes no 2024-04-12 13:10:00 2024-04-12 13:10:00 861 618 {mobilePhone} \N +66 vol-available \N \N accompanying vol-no-matches \N yes no 2024-04-13 13:58:00 2024-04-13 13:58:00 862 619 {mobilePhone} \N +67 vol-available \N \N accompanying vol-no-matches \N no no 2024-04-14 14:57:00 2024-04-14 14:57:00 863 620 {mobilePhone} \N +68 vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-04-15 09:47:00 2024-04-15 09:47:00 864 621 {mobilePhone} \N +69 yxfrq-egfzqeztr ygk 7lz vtta gy Pxft vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-04-15 16:20:00 2024-04-15 16:20:00 865 622 {mobilePhone} \N +70 vol-available \N \N regular vol-no-matches \N yes yes 2024-04-15 23:48:00 2024-04-15 23:48:00 866 623 {mobilePhone} \N +71 Dn htklgfqs leitrxst egxsr eiqfut, ql O qd q lzxrtfz qfr O rgf’z qsvqnl iqct yobtr leitrxst. Ql gy fgv O’d ktsqzoctsn yktt, igvtctk ziqz dqn eiqfut, gy vioei O vgxsr stz ngx afgv of qrcqfet. O q ldqss tbhtkotfet of uqkrtfofu wqea ykgd zit zodt gy dn eiosriggr…Dn fqdt ol Ustw, dn sqfuxqut laossl qkt Tfusoli E3, Utkdqf wtuofftk qfr dn fqzoct sqfuxqut ql vtss. O qd 31 ntqkl gsr qfr sgct iqfrl-gf qezocozotl.  -Cglzts vol-available \N \N accompanying vol-no-matches \N no no 2024-04-16 18:33:00 2024-04-16 18:33:00 867 624 {mobilePhone} \N +72 vol-inactive \N \N regular vol-no-matches \N no no 2024-04-16 23:33:00 2024-04-16 23:33:00 868 625 {mobilePhone} \N +73 yxfrq iql ltfz q ktjxtlz gf Pxft 2zi kt zkqflsqzogf ktjxtlz vol-available \N \N accompanying vol-no-matches \N no no 2024-04-17 00:11:00 2024-04-17 00:11:00 869 626 {mobilePhone} \N +74 O qd ofztktlztr of itshofu ygk zit uqkrtf vgka, O sgct fqzxkt, O lhtqa ofztkdtroqzt Utkdqf, O stqkf yqlz qfr O eqf egddoz 3 igxkl htk vtta. -Cglzts vol-available \N \N accompanying vol-no-matches \N no no 2024-04-18 11:26:00 2024-04-18 11:26:00 870 627 {mobilePhone} \N +75 O voss zkn zg wt egflolzqfz igvtctk zit leitrxst voss rthtfr gf dn pgw ofztkcotv leitrxst. O qd Rdozkoo ykgd Kxlloq. Dn Utkdqf ol fgz lg uggr, igvtctk, O iqct htkytez Kxlloqf qfr uggr Tfusoli. O qd qf DWQ ukqrxqztr Hkgrxez Dqfqutk vozi tbhtkotfet of Igfu Agfu qfr Zxkatn lg O qd uggr qz dxszofqzogfqs tfcokgfdtfzl. -Cglzts vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-04-18 17:47:00 2024-04-18 17:47:00 871 628 {mobilePhone} \N +76 - Liqvan 85.59.3532: It soctl of Rktlrtf! / O eqf ysxtfzsn lhtqa Tfusoli qfr qkqwoe Eqf zkqflsqzt wgzi vqnl Oy o eqf wt qfn xlt zg ngx  -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no no 2024-04-18 21:40:00 2024-04-18 21:40:00 872 629 {mobilePhone} \N +77 O qd Lqfrkq ykgd Lko Sqfaq. O qd 76 qfr O egdhstztr zit Qrcqfetr Stcts ktetfzsn. Fgv O qd lttaofu ygk pgwl. Qslg ight zg hxklxt dn iouitk lzxrotl… O sgct aorl qfr tfpgn vgkaofu vozi zitd. O rg iqct tbhtkotfet of eiosreqkt. O qd egfyortfz ziqz dn egddxfoeqzogf qfr ofztkhtklgfqs laossl vgxsr qssgv dt zg dqat dtqfofuyxs egfzkowxzogfl zg ngxk ztqd. -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-19 21:18:00 2024-04-19 21:18:00 873 630 {mobilePhone} \N +78 vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-22 12:24:00 2024-04-22 12:24:00 874 631 {mobilePhone} \N +79 yxfrq: ltfz q cgsxfzttkofu ktjxtlz rr. 34.59 / O'd hsqffofu zg gkuqfomt q ztqd tctfz ygk gxk egdhqfn gf Pxft. O yofr ziol qezocozn ofztktlzofu qfr vql vgfrtkofu vitkt zit tctfz vgxsr zqat hsqet. -Cglzts vol-new \N \N regular vol-no-matches \N no no 2024-04-22 13:33:00 2024-04-22 13:33:00 875 632 {mobilePhone} \N +80 O lhtqa ysxtfz Utkdqf qfr Tfusoli qfr qszigxui O iqct ftctk iqr q hkgytllogfqs pgw of eiosreqkt gk htrqugun, O iqct dxei tbhtkotfet vozi eiosrktf qfr iqct wttf wqwnlozzofu ygk royytktfz yqdosotl lofet O vql q zttfqutk. -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no no 2024-04-22 19:05:00 2024-04-22 19:05:00 876 633 {mobilePhone} \N +81 Fg - Liqvan 36.59.3532: Ltfz ygssgv xh tdqos zg wgzi itk qfr Qfrktq. Zitn qkt qezoct qfr iqhhn 🙂 vol-inactive \N \N regular vol-no-matches \N yes yes 2024-04-23 14:21:00 2024-04-23 14:21:00 877 634 {mobilePhone} \N +82 o'd dglzsn ctkn ystbowst rxt zg vgka, lgdtzodtl o iqct zg vgka gf vttatfrl wxz zitf o'd yktt rxkofu zit vtta, ziol eqf cqkn ykgd vtta zg vtta vol-inactive \N \N regular vol-no-matches \N yes applied_self 2024-04-23 22:48:00 2024-04-23 22:48:00 878 635 {mobilePhone} \N +83 - yxfrq: eqf cgsxfzttk ygk Pxsn 7lz\f- Liqvan 38.57.39: Vt lhgat quqof qwgxz itk cgsxfzttkofu ofztktlzl. Lit ol vgkaofu dgkt ziol ntqk, lg ol qcqosqwst geeqlogfqssn, ortqssn ygk gft-rqn tctfzl gk lg. @Ltfnq egffteztr itk vozi Ktyxuoxd Soeiztfwtku ygk zit Astortkaqddtk. vol-available \N \N accompanying vol-no-matches \N no yes 2024-04-24 01:08:00 2024-04-24 01:08:00 879 636 {mobilePhone} \N +84 O'd q hqkz-zodt ossxlzkqzgk qfr vtw rtlouftk vozi sgzl gy yktt zodt gf dn iqfrl. -Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-04-25 13:58:00 2024-04-25 13:58:00 880 637 {mobilePhone} \N +85 Qcqosqwst zodt ql oz ol ygk fgv, wxz O vgxsr iqct zg dqat eiqfutl zg oz of zit yxzxkt rxt zg royytktfz ktqlgfl O soct of Wtksof (Dgqwoz) qfr vgxsr soat zg lxhhgkz vozi zkqflsqzogf ygk ktyxuttl. O qd ysxtfz of Tfusoli qfr qd fqzoct of Kxlloqf qfr Xakqofoqf. -Cglzts\fLtfnq 30.75.3539 - O xhrqztr itk qcqosqwosozn qfr rolzkoezl qeegkrofu zg zit ofyg of itk sqztlz tdqos. vol-available \N \N accompanying vol-no-matches \N no yes 2024-04-25 14:41:00 2024-04-25 14:41:00 881 638 {mobilePhone} \N +86 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-04-25 19:21:00 2024-04-25 19:21:00 882 639 {mobilePhone} \N +115 - Liqvan 32.59.3532: Lit ror q Dtqlstl cqeeofqzogf qz zit XL, wxz iql fg hkggy gy oz vol-inactive \N \N regular vol-no-matches \N no no 2024-05-18 18:52:00 2024-05-18 18:52:00 911 668 {mobilePhone} \N +87 Rtqk Fttr2Rttr ztqd,Dt qfr 3 gy dn esglt ykotfrl qkt egdofu ykgd Ztfftlltt zg Wtksof ykgd Dqn 31-Pxft 3 of ltqkei gy hgztfzoqs cgsxfzttkofu ghhgkzxfozotl. Vt qkt lhteoyoeqssn ltqkeiofu ygk gftl qllolzofu Xakqofoqf ktyxuttl of Wtksof wteqxlt gft gy dn ykotfrl ol Xakqofoqf qfr iql dxei yqdosn lzoss of Xakqoft. It ol ysxtfz of Xakqofoqf qfr O qd ysxtfz of Utkdqf. Hstqlt stz dt afgv oy zitkt qkt qfn ghhgkzxfozotl, lhteoyoeqssn gftl itshofu Xakqofoqfl.Ziqfa ngx, Dqkcof vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-04-27 06:01:00 2024-04-27 06:01:00 883 640 {mobilePhone} \N +88 7. Ykotrkoeiliqof3. Qzd fg ql O stqkf Utkdqf of zit tctfofu qfr qd lxhtk wxln. Gzitkvolt O egxsr hkgwqwsn yofr 3 igxkl rxkofu q vtta rqn qfr vgka of zit tctfoful zg dqat xh ygk oz.8. O lhtqa Tfusoli, Ekgqzoqf (Ltkwoqf, tze), qfr q woz gy Utkdqf. -Cglzts vol-inactive \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 884 641 {mobilePhone} \N +89 vol-temp-unavailable \N \N accompanying vol-no-matches \N undefined undefined 2024-04-01 00:00:00 2024-04-01 00:00:00 885 642 {mobilePhone} \N +90 vol-inactive \N \N regular vol-no-matches \N yes no 2024-02-26 14:48:00 2024-02-26 14:48:00 886 643 {mobilePhone} \N +91 vol-available \N \N regular vol-no-matches \N yes no 2024-03-08 20:00:00 2024-03-08 20:00:00 887 644 {mobilePhone} \N +92 Oei aqff wto Wtrqky qxei qf qfrtktf Zqutf toflhkofutf qwtk rtf Dozzvgei Fqeidozzqu iqwt oei oddtk ykto xfr aqff rtdtfzlhkteitfr mx rotltk Mtoz ktutsdäßou. -Yxfrq -iqr q cortg eqss gf Pxft2zi, lit eqf cgsxfzttk qslg ygk yktfei, ktdofrtr itk Etkzoyoeqzt gy Uggr Egfrxez / oei iqwt Ofztktllt dtik üwtk rql Tfuqutdtfz of rtk Zqutlwtzktxxfu mx tkyqiktf. Tof hqqk Ofygkdqzogftf mx dok:Oei qkwtozt of Ztosmtoz of toftd Lzqkz-xh xfr dqeit dtof Dqlztk Lzxroxd of Ofztkfqzogfqs Ktsqzogfl. Oei wof 39 Pqikt qsz xfr iqwt tof vtfou Tkyqikxfu of rtk Aofrtkwtzktxxfu, rxkei püfutkt Utleivolztk xfr Wqwnlozzofu xfr Fqeiiosyt ctkleiotrtftk Qsztklukxhhtf  väiktfr rtd Wqeitsgklzxroxd. Oei vükrt doei zgzqs yktxtf ktutsdäßou tofdqs rot Vgeit qf toftd Dozzqu/Fqeidozzqu wto rtk Zqutlwtzktxxfu xfztklzüzmtf mx aöfftf.  -Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-03-11 08:49:00 2024-03-11 08:49:00 888 645 {mobilePhone} \N +93 vol-inactive \N \N regular vol-no-matches \N yes no 2024-03-11 12:45:00 2024-03-11 12:45:00 889 646 {mobilePhone} \N +94 vol-inactive \N \N regular vol-no-matches \N no no 2024-03-21 12:52:00 2024-03-21 12:52:00 890 647 {mobilePhone} \N +95 vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-04 13:03:00 2024-04-04 13:03:00 891 648 {mobilePhone} \N +96 Dtoft Fqdt olz Qfpq xfr oei vgift of Qsz-Zkthzgv. - Cglzts\fLiqvan 75.52.3539:Rgofu dgcot fouizl qz zit Iqfuqkl \fLiqvan 36.56.39: Qfpq eqdt zg zit gyyoet sqlz vtta zg hoea xh itk Z-liokz qfr lqor lit ol lzkxuusofu q woz vozi zit egddxfoeqzogf vozi zit Iqfuqk egfzqez htklgf, lg vt kt-dqzeitr itk zg qfgzitk ghhgkzxfozn of zit lqdt UX: Xfktutsdäßout Wtustozxfu cgf Aofrtkukxhht (izzhl://vvv.fgzogf.lg/Xfktutsd-out-Wtustozxfu-cgf-Aofrtkukxhht-3054r445y20247wyww42t712e09w8w31?hcl=37) \f\fLtfnq 76.73.3539: Yttrwqea ykgd zit Iqfuqkl “Qfpq xfr Lgyoq lztitf twtfyqssl wtort of xfltktk Solzt yük tofdqsout Tktoufollt, vtos oikt Ctkyüuwqkatoztf wolitk foeiz mx xfltktf Qfutwgzlmtoztf uthqllz iqwtf. Vok lofr qwtk of Agfzqaz.” vol-available \N \N regular vol-no-matches \N yes no 2024-04-05 21:11:00 2024-04-05 21:11:00 892 649 {mobilePhone} \N +97 Atfmq 30.57.31: lit vgkal gf wxloftll rtctsghdtfz qz Qbts Lhkofutk. Lhtqal Tfusoli qfr Itwktv, q woz gy Utkdqf (Q3/W7) qfr Lhqfoli. Lit vgkal yxss zodt, igdt gyyoet wxz eqf wt ystbowst. vol-available \N \N regular vol-no-matches \N no applied_self 2024-04-29 16:08:00 2024-04-29 16:08:00 893 650 {mobilePhone} \N +98 Fg vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-04-29 17:51:00 2024-04-29 17:51:00 894 651 {mobilePhone} \N +99 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-04-30 01:34:00 2024-04-30 01:34:00 895 652 {mobilePhone} \N +100 O'r soat zg lzqkz itshofu gxz gfet gk zvoet q dgfzi? O vgka qyztkfggf - fouiz lg O iqct ystbowosozn of dgkfoful. -Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-05-02 18:04:00 2024-05-02 18:04:00 896 653 {mobilePhone} \N +101 Wof däffsoei, 85 Pqikt iotk of Wtksof utwgktf xfr itsyt utkft qxl vtff oei aqff. Oei iqw dqs tof Öagsguoleitl Yktovossoutl Pqik utdqeiz qslg doz Xfakqxz atff oei doei qxl. -Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-05-03 21:10:00 2024-05-03 21:10:00 897 654 {mobilePhone} \N +102 - Liqvan 85.50.39: T-Dqos “O’d lzoss ctkn ofztktlztr of cgsxfzttkofu. O’ss wt dgkt ystbowst qfr qcqosqwst qyztk zit 75zi gy Lthztdwtk.\fKtuqkrofu zit tctfz — O’ss wt qzztfrofu qfr qd rtyofoztsn sggaofu ygkvqkr zg dttzofu ngx of htklgf, tlhteoqssn lofet vt rorf’z utz zit eiqfet zg dttz qz sqlz lxddtk’l tctfz.” Hnzigf qdr rouozqs dqkatzofu , lit cgsxfzttk of xwtk rtf ztsstkqfr. vol-available \N \N accompanying vol-no-matches \N yes applied_self 2024-05-06 12:10:00 2024-05-06 12:10:00 898 655 {mobilePhone} \N +103 Eqfetstr cgsxfzttkofu Hkqazoaxd wteqxlt dqkmqif vql zit gfsn ghzogf qfr oz vql zgg yqk ygk itk vol-new \N \N regular vol-no-matches \N yes yes 2024-05-06 19:46:00 2024-05-06 19:46:00 899 656 {mobilePhone} \N +104 zitn vqfz zg iqct q egdhqfn rqn gf 32.1 zitn qkt eq. 6 htghst. Ofcqsortflzk 87-88 itkg vol-available \N \N regular vol-no-matches \N no no 2024-06-03 19:46:00 2024-06-03 19:46:00 900 657 {mobilePhone} \N +105 vol-new \N \N regular vol-no-matches \N undefined no 2024-05-06 19:46:00 2024-05-06 19:46:00 901 658 {mobilePhone} \N +106 Ftof vol-available \N \N regular vol-no-matches \N yes yes 2024-05-07 18:25:00 2024-05-07 18:25:00 902 659 {mobilePhone} \N +107 O qd ysxtfz of Tfusoli, Yktfei, qfr Dgkgeeqf Qkqwoe qfr iqct q ctkn qrqhzqwst leitrxst. O ktlort of Leiöftwtku, wxz O qd dgkt ziqf vossofu zg egddxzt qfnvitkt voziof Wtksof. -Cglzts vol-available \N \N regular vol-no-matches \N no applied_n4d 2024-05-08 13:00:00 2024-05-08 13:00:00 903 660 {mobilePhone} \N +108 O qd qhhsnofu ygk hqntr pgwl qz zit dgdtfz vioei ol vin dn leitrxst egxsr eiqfut wn q woz of zit ftbz dgfzi gk lg. Wxz zitf O ligxsr lzoss wt qcqosqwst ygk qz stqlz 75 igxkl q vtta ygk zit ftbz dgfzil. vol-inactive \N \N regular vol-no-matches \N yes applied_n4d 2024-05-10 03:36:00 2024-05-10 03:36:00 904 661 {mobilePhone} \N +109 - 34.59.3532: Rtqk Dgiqddqr Iqllqf, O rgf'z Yüikxfulmtxufol wxz O iqct Qfdtsrxfu of Wtksof, O'd qslg socofu of q oddoukqfzl Itod qfr O rgf'z iqct htkdoz, tctf O rgf'z iqct ktyxutt htkdoz wxz dn htkdoz ol of hkgetll,  oz voss zqat dgfzil, O'd vqozofu ygk qhhgofzdtfz lg O rgf'z afgv oz'l hgllowst ygk dt zg zqat Yüikxfulmtxufol vitf O rgf'z iqct htkdoz?Wtlz ktuqkrl Od Todqs Rqjoj ykgd Qyuiqfolzqf qfr Od qslg ktyxutt wxz O vgxsr soat zg pgof ngxk ztqd. -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no no 2024-05-10 17:53:00 2024-05-10 17:53:00 905 662 {mobilePhone} \N +110 fg vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-05-10 19:06:00 2024-05-10 19:06:00 906 663 {mobilePhone} \N +111 lit soctl of Iqdwxku, lit eqf cgsxfzttk ygk higft egfctklqzogfl vol-inactive \N \N regular vol-no-matches \N no no 2024-05-10 19:13:00 2024-05-10 19:13:00 907 664 {mobilePhone} \N +112 Yxfrq- iqr q cortg eiqz gf Pxft 1zi vol-temp-unavailable \N \N accompanying vol-no-matches \N no yes 2024-05-13 13:29:00 2024-05-13 13:29:00 908 665 {mobilePhone} \N +113 Yxfrq iqr q cortg eiqz gf Pxft 9zi /  O vql qf Tfusoli ztqeitk ygk aorl of Okqf ygk 9 ntqkl qfr q cgsxfzttk qz q ktyxutt etfztk of Kgdqfoq. O lhtqa Hqlizg, Htkloqf Tfusoli, qfr stqkfofu Utkdqf. O ziofa O eqf wt q xltyxs htklgf qz ziol hsqet, O sgct aorl qfr zqaofu eqkt gy zitd.  -Cglzts vol-available \N \N accompanying vol-no-matches \N no no 2024-05-14 11:59:00 2024-05-14 11:59:00 909 666 {mobilePhone} \N +117 Vtkazqul atoft ctkwofrs. Ytlzstuxfutf od Cgkioftof vu. Qkwtoz. Ptrgei ktsqzoc uxzt Leiqfetf wto lhgfzqftf Qfykqutf yük Zkthzgv wmv. Kxrgv cgkdozzqul. yxfrq- xfygkzxfqztsn fgz qcqosqwst of zit vtta rqnl vol-available \N \N regular vol-no-matches \N yes yes 2024-05-21 12:21:00 2024-05-21 12:21:00 913 670 {mobilePhone} \N +118 lgdtzodtl O iqct vgka gf Ykorqnl ykgd 78.85 yxfrq: ltfz q cgsxfzttkofu ktjxtlz rr. 34.9 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-05-22 00:18:00 2024-05-22 00:18:00 914 671 {mobilePhone} \N +119 - Liqvan 38.59.32: Qlatr itk qwgxz zit rqneqkt ghhgkzxfozn of Eiqxlttlzk. / O'd q Zxkaoli vgdqf qfr O'ct wttf socofu of Wtksof ygk 75 dgfzil. Dn fqzoct sqfuxqut ol Zxkaoli qfr O lhtqa Tfusoli ysxtfzsn. O iqct q wqloe stcts gy hkgyoeotfen of Utkdqf qfr O'd zknofu zg odhkgct oz. O egdhstztr dn wqeitsgk of Lgeogsgun of Zxkatn qfr O'd exkktfzsn hxklxofu q dqlztk'l rtuktt of xkwqf lzxrotl. O'ct wttf vgkaofu vozi eiosrktf ygk q viost fgv, hkgcorofu eqkt ltkcoetl zg eiosrktf ykgd fttrn yqdosotl. O qd hqzotfz vozi eiosrktf qfr utfxoftsn ofztktlztr of zitok vgksr.-Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-05-22 18:51:00 2024-05-22 18:51:00 915 672 {mobilePhone} \N +120 O’d 82 ntqkl gsr qfr O egdt ykgd Lvtrtf.O sgct eiosrktf qfr O soct of Leiöftwtku, O’d vozi Qkwtozlqdz qzd lg O iqct yktt zodt qfr vgxsr soat zg rg lgdtziofu uggr vozi oz.O ugz dn sozzst lolztk vitf O vql 79 ntqkl gsr, O zgga eqkt gy itk q sgz vitf lit vql ldqss qfr O’ct qslg zqatf eqkt gy ykotfrl eiosrktf.O egfftez ctkn tqln vozi aorl qfr dn wgnykotfr ol q Lnkoqf ktyxutt lg O qslg iqct qf xfrtklzqfrofu gy viqz zitn douiz iqct wttf zikgxui. Dn Utkdqf stcts ol W3. -Cglzts vol-new \N \N regular vol-no-matches \N no no 2024-05-24 16:26:00 2024-05-24 16:26:00 916 673 {mobilePhone} \N +121 O qd Eqdosq ykgd Xkxuxqn. O vgxsr wt ktqssn ofztktlztr of stqkfofu dgkt qwgxz ziol cgsxfzttkofu ghhgkzxfozn. O qd sggaofu zg wt dgkt of egfzqez vozi eiosrktf ql zit sozzst gftl wkofu dt q sgz gy pgn qfr itshofu zitd vgxsr wkofu dt tctf dgkt pgn :) Of eqlt oz'l ktstcqfz, dn Utkdqf laossl qkt Q3-W7, dn fqzoct sqfuxqut ol Lhqfoli qfr O'd fqzoct stcts lhtqatk of Tfusoli.Qz zit dgdtfz O iqct qcqosqwosozn zg egdt gf vttarqnl qz zit lzqztr zodtl 74-76:85 Xik) -Cglzts vol-available \N \N regular vol-no-matches \N no no 2024-05-26 10:30:00 2024-05-26 10:30:00 917 674 {mobilePhone} \N +122 - Liqvan 36.59.3532: Vt aftv iod zikgxui Rx yük Wtksof. It ol q ktyxutt, soctl of qfgzitk KQE of Dqkmqif. Egddxfoeqzogf of Utkdqf, it rgtlf’z lhtqa Tfusoli\f- Cgsxfzttk eggkrofqzgk of zit KQE vqfzl zg zqsa qwgxz iod vol-available \N \N accompanying vol-no-matches \N yes yes 2024-05-28 11:16:00 2024-05-28 11:16:00 918 675 {mobilePhone} \N +123 O’d ysxtfz of Tfusoli qfr Kxlloqf qfr soct of Ftxaössf (L/X wqif Itkdqfflzkqllt). O eqf wt qcqosqwst of zit yoklz iqsy gy zit rqn gf vttarqnl tbethz ygk Ykorqn. -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no no 2024-05-28 13:49:00 2024-05-28 13:49:00 919 676 {mobilePhone} \N +124 Wto dok cqkootktf dtotf Ctkyüuwqkatoztf lzqka, rq oei utkqrt atoft vokasoei utktutszt Vgeit iqwt. Utwz dok qwtk utkft Wtleitor vqff xfr vg oik Dtfleitf wtfözouz, oei xfztklzüzmt txei utkft! vol-inactive \N \N regular vol-no-matches \N yes no 2024-05-26 15:37:00 2024-05-26 15:37:00 920 677 {mobilePhone} \N +125 Ftof Oei qkwtozt utkft doz Aofrtk xfr qxei doz pxutfrsoeit . Dtof Mots olz dtof rtxzlei mx ctkwtlltkf rxkei agdxfoaqeogf doz Aofrtk. Oei aqff doz Aofrtk ltik uxz xd utitf . Oei iqw leigf tof aofr wtzktxz xfr iqz dok ltik utyqsstf . -Cglzts vol-new \N \N regular vol-no-matches \N yes no 2024-05-28 22:36:00 2024-05-28 22:36:00 921 678 {mobilePhone} \N +126 O vgka ykttsqfet qfr iqct zvg aorl, lg dn qcqosqwosozn eiqfutl ykgd vtta zg vtta. Lit ol gxz gy Wtksof xfzos Pxft 38kr. yxfrq: iqr cortg eqss gf Pxft 2zi, ltfz ofygkdqzogf qfr gxk hktltfzqzogf. vol-available \N \N accompanying vol-no-matches \N no yes 2024-05-31 18:32:00 2024-05-31 18:32:00 922 679 {mobilePhone} \N +127 Dn leitrxst eiqfutl ykgd rqn zg rqn, lg O douiz wt qwst zg itsh dgkt gk stll rthtfrofu gf zit leitrxst Yxfrq ol qsktqrn of zgxei ygk zkqflsqzogf qhhgofzdtfzl \fLtfnq 70.58.3531: Lit’l gf q wxloftll zkoh zoss zit dorrst gy Pxft qfr fgz of Wtksof vol-temp-unavailable \N \N accompanying vol-no-matches \N no no 2024-05-31 19:00:00 2024-05-31 19:00:00 923 680 {mobilePhone} \N +128 Yxfrq - iqr q cortg eiqz, cgsxfzttktr ygk Pxft. Lit ol itshofu q vgdqf ktuxsqksn qz zit KQE of BB vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-06-01 01:58:00 2024-06-01 01:58:00 924 681 {mobilePhone} \N +129 vol-inactive \N \N regular vol-no-matches \N no no 2024-06-01 08:45:00 2024-06-01 08:45:00 925 682 {mobilePhone} \N +130 Fqrqc 38.0.39: Lit lqor ntl qfr zitf hxsstr wqea ykgd qf qhhgofzdtfz. Lit qslg oufgktr zit ktjxtlz zg utz itk higft fxdwtk. Gzitkvolt lttdtr ktlhgfloct qfr ktlhgflowst. vol-available \N \N accompanying vol-no-matches \N yes no 2024-06-01 10:06:00 2024-06-01 10:06:00 926 683 {mobilePhone} \N +131 Yxfrq- iqr q cortg eiqz gf Pxft 8kr, eqf cgsxfzttk ygk Pxft 76zi\f\fLtfnq 31.51.3539: It ol exkktfzsn qzztfrofu E7 Rtxzleiaxkl qfr vgxsr soat fgz zg doll iol esqlltl. It eqf gfsn qeethz ktjxtlzl qyztk 3 h.d. vol-unresponsive \N \N accompanying vol-no-matches \N no yes 2024-06-03 18:38:00 2024-06-03 18:38:00 927 684 {mobilePhone} \N +132 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-04 11:48:00 2024-06-04 11:48:00 928 685 {mobilePhone} \N +133 Cglzts: Io zitkt,O ight ngx qkt rgofu uktqz!O iqct lzxdwstr xhgf ngxk qr qfr vgxsr sgct zg stqkf dgkt qfr hqkzoeohqzt. O exkktfzsn iqct lgdt zodt gf dn iqfrl qfr vgxsr sgct zg utz zitd rokzn wn rgofu lgdtziofu iqfrl-gf. O qd q wou uqkrtfofu tfzixloqlz wxz O ytts soat dn wqsegfn ol fgz wou tfgxui qfndgkt lg egdwofofu lgdtziofu O tfpgn vozi lgdtziofu xltyxs ygk zit egddxfozn vgxsr wt sgctsn!Stz dt afgv viqz ngx ziofa qfr vt eqf iqct q eiqz qwgxz oz.Iqct q uktqz rqn,Gfrřtp \f\f- Liqvan 78.51.32: Ltfz q ktjxtlz ygk uqkrtfofu ghhgkzxfozn of Wxeagv vol-inactive \N \N regular vol-no-matches \N yes no 2024-06-04 16:28:00 2024-06-04 16:28:00 929 686 {mobilePhone} \N +134 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-05 22:44:00 2024-06-05 22:44:00 930 687 {mobilePhone} \N +135 - Liqvan 78.51.32: Zitkt ol q cgsxfzttkofu ghhgkzxfozn qcqosqwst of Hqfagv (Wxeiigsm Lzkqßt) gf Lqzxkrqnl wtzvttf 73.55 qfr 72.55 zg rg cqkogxl qezocozotl ygk eiosrktf, qfr zitn qkt jxozt ystbowst qwgxz viqz ziqz qezocozn vgxsr wt. / Viost O dqn fgz hglltll lhteoyoe sqfuxqut laossl wtngfr wqloe Utkdqf, O qd q jxoea stqkftk qfr q rtroeqztr vgkatk. -Cglzts vol-available \N \N accompanying vol-no-matches \N no yes 2024-06-07 11:42:00 2024-06-07 11:42:00 931 688 {mobilePhone} \N +136 - Liqvan 78.51.32: Oy lgdtziofu eiqfutl of zit yxzxkt qfr afgvstrut gy Lhqfoli, Hgkzxuxtlt gk Yktfei ol fttrtr, vt voss rtyofoztsn stz ngx afgv.Oy ngxk hktytktfetl eiqfut qz lgdt hgofz, ngx egxsr yofr q yxss solz gy zit cgsxfzttk ghhgkzxfozotl exkktfzsn qcqosqwst gf gxk vtwlozt, tze.. / O qd ykgd Dtboeg qfr dgctr zg Wtksof 8 ntqkl qug. O qd ofztktlztr of ziol cgsxfzttk ghhgkzxfozn, O qd ysxtfz of Lhqfoli, Yktfei, Ozqsoqf, Hgkzxuxtlt qfr iqct q W3 stcts of Utkdqf. O iqct qsvqnl vqfztr zg iqct zit ghhgkzxfozn zg itsh qfr qllolz htghst of fttr, lhteoqssn ktyxuttl qyztk lttofu yoklz iqfr zit tbhtkotfetl lgdt gy zitd iqr of zit fgkzi gy Dtboeg ftqk zg zit wgkrtk vozi zit Xfoztr Lzqztl.  -Cglzts vol-available \N \N accompanying vol-no-matches \N no no 2024-06-07 13:19:00 2024-06-07 13:19:00 932 689 {mobilePhone} \N +137 Oz qss rthtfrl gf dn aorl' leitrxst, lg vitf zit leiggs gk Aozq qkt esgltr, O vgf'z wt qcqosqwst. -Yxfrq iqr q cortg eiqz gf Pxft 73 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-09 22:55:00 2024-06-09 22:55:00 933 690 {mobilePhone} \N +138 - Liqvan 73.51.32 (Cglzts): Ziqfa ngx ygk ktqeiofu gxz zg xl qfr ygk ngxk ofztktlz of cgsxfzttkofu qz ktyxutt qeegddgrqzogf etfztkl!Jxoea jxtlzogf: Vioei sqfuxqutl vgxsr ngx wt qwst zg zkqflsqzt ykgd Qkqwoe zg? Utkdqf gk Tfusoli gk wgzi?  vol-inactive \N \N regular vol-no-matches \N yes no 2024-06-12 00:17:00 2024-06-12 00:17:00 934 691 {mobilePhone} \N +139 - Liqvan 78.51.32: Ziqfal q sgz ygk yossofu gxz zit cgsxfzttk ofygkdqzogf qfr hktytktfetl ygkd. Qz zit dgdtfz, vt rg fgz iqct qfn ghhgkzxfozotl ziqz egxsr wt rgft ktdgztsn, tbethz ygk zkqflsqzogfl ziqz ofcgsct afgvstrut gy Qkqwoe, Yqklo, Zxkaoli, Kxlloqf gk Xakqofoqf. Oy lgdtziofu eiqfutl of zit yxzxkt qfr afgvstrut gy Iofro, Aqffqrq gk Zqdos ol fttrtr, vt voss rtyofoztsn stz ngx afgv. Oy lgdtziofu eiqfutl of ngxk lozxqzogf of zit dtqfzodt qfr ngx qkt qwst zg cgsxfzttk roktezsn qz gft gy zit ktyxutt qeegddgrqzogf etfztkl vt qkt vgkaofu vozi, ngx egxsr yofr q yxss solz gy zit cgsxfzttk ghhgkzxfozotl exkktfzsn qcqosqwst gf gxk vtwlozt, tze.. / O’d ofztktlztr of ktdgzt cgsxfzttkofu vozi ctkn uggr Tfusoli Laossl qfr Q3 Utkdqf laossl.O qslg afgv q sgz gy Ofroqf sqfuxqutl.  -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-06-12 13:21:00 2024-06-12 13:21:00 935 692 {mobilePhone} \N +140 - Liqvan 78.51.32: Vt exkktfzsn iqct cgsxfzttkofu ghhgkzxfozotl qz zvg gy zit ktyxutt qeegddgrqzogf etfztkl of: Wxeagv (73826) qfr Kqiflrgky (73946), vitkt zitn fttr cgsxfzttkl zg gkuqfomt qkzl & ekqyzl qezocozotl vozi eiosrktf. / O rgf'z iqct tbhtkotfet vozi kqoltr wtrl wxz O tfpgn uqkrtfofu qfr hsqfzl qfr ziofa O vgxsr wt qwst zg stqkf jxoeasn. -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-06-13 00:45:00 2024-06-13 00:45:00 936 693 {mobilePhone} \N +141 Fqrqc: Zit uxn rgtl fgz lhtqa TF fgk RT ygk zkqflsqzogf. It ol ctkn dxei ofzg vqn qeegdhqfnofu . Vtutwtustozxfu \fLtfnq 76.58.3531: Iol xhrqztr leitrxst ol Yktozqu (uqfmzäuou), Dgfzqu xfr Dozzvgei wol 78 Xik of Eiqksgzztfwxku, Rotflzqu xfr Rgfftklzqu wol 72 Xik of Lhqfrqx. vol-available \N \N accompanying vol-no-matches \N yes no 2024-06-17 21:45:00 2024-06-17 21:45:00 937 694 {mobilePhone} \N +142 - Liqvan 74.51.32: Iqr q higft eqss vozi Qffq, lit vgxsr sgct zg rg dgkt qezocozotl vozi eiosrktf qfr eqf zkqcts wtngfr Ykotrkoeiliqof of zit vttatfrl. O zqsatr zg itk qwgxz AofrtaxszxkDgfqz qfr ltfz rgexdtfzl vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-18 10:30:00 2024-06-18 10:30:00 938 695 {mobilePhone} \N +143 vol-inactive \N \N regular vol-no-matches \N no no 2024-06-19 04:38:00 2024-06-19 04:38:00 939 696 {mobilePhone} \N +144 vol-temp-unavailable \N \N regular vol-no-matches \N no no 2024-06-19 09:18:00 2024-06-19 09:18:00 940 697 {mobilePhone} \N +145 Ltfnq 59.77.32: Lit ltfz qf tdqos zg Liqvan gf Gez 36zi lqnofu ziqz lit’l dgcofu zg Pgkrqf qfr lzghl cgsxfzttkofu ygk q viost, wxz voss utz wqea zg zit CE gy Ktyxuoxd Soeiztfwtku gfet lit egdtl wqea. vol-inactive \N \N regular vol-no-matches \N no yes 2024-06-19 11:20:00 2024-06-19 11:20:00 941 698 {mobilePhone} \N +146 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-06-19 11:35:00 2024-06-19 11:35:00 942 699 {mobilePhone} \N +147 vol-available \N \N accompanying vol-no-matches \N yes no 2024-06-19 13:00:00 2024-06-19 13:00:00 943 700 {mobilePhone} \N +148 O'd ctkn wxln wxz vgxsr soat zg itsh vozi zkqflsqzogf vitf O eqf. O iqr dtqlstl vitf O vql q ldqss eiosr. Ltfnq 85.57.3531: Ziol htklgf ftctk ktlhgfrtr zg zit tdqosl vozi ktjxtlzl, O dqkatr zitd xfktlhgfloct. vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-06-19 15:08:00 2024-06-19 15:08:00 944 701 {mobilePhone} \N +149 vol-inactive \N \N regular vol-no-matches \N no no 2024-06-19 15:58:00 2024-06-19 15:58:00 945 702 {mobilePhone} \N +150 O’d of zgvf ygk 8 dgfzil rgofu ktltqkei qfr qd ystbowst of dn leitrxst, zigxui voss wt wxln qz royytktfz zodtl ygk royytktfz dttzoful vol-inactive \N \N regular vol-no-matches \N yes no 2024-06-19 18:38:00 2024-06-19 18:38:00 946 703 {mobilePhone} \N +151 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-06-20 15:24:00 2024-06-20 15:24:00 947 704 {mobilePhone} \N +152 O qd xlxqssn qcqosqwst Dgf-Yko qyztk 74:55 lofet O vgka yxss-zodt. O qd yktt gf zit vttatfrl. - Dtllqut zg Liqvan 52.54.3532:  zit gkuqfomgk (Wxeiigsm) ktqeitr gxz qfr gyytktr dt zg lzqkz oddtroqztsn. O igvtctk iqr zg hglzhgft ziol lofet gy sqlz dofxzt eokexdlzqfetl vozi dn pgw.O zgsr zitd o'r wt iqhhn zg lzqkz qz qfgzitk zodt of zit yxzxkt qfr zitn quukttr. / O qd 36 ntqkl gsr, O egdt ykgd Ozqsn wxz O qd qslg iqsy Utkdqf qfr eqf lhtqa wgzi sqfuxqutl ysxtfzsn. O iqct sgzl gy tbhtkotfet of uqkrtfofu, tlhteoqssn vozi htkdqexszxkt. O iqct zvg 03i htkdqexszxkt rtlouf etkzoyoeqztl, qfr O qllolztr dqfn gxzrggk hkgptezl egfetkfofu ukttfigxltl qfr hsqfzl qss qkgxfr zit vgksr, cgsxfzttkofu of yqkdl ql vtss. O lzxrotr sqfrleqht qkeioztezxkt of xfoctklozn wtygkt egdofu of ziol eozn. O qslg iqct tbhtkotfet of cgsxfzttkofu vozi ktyxutt gkuqfolqzogfl. O dgctr zg Wtksof 3 ntqkl qug, O vgka q yxss-zodt gyyoet pgw, qfr O doll iqcofu dn iqfrl of zit lgos. Oy O eqf itsh of qfn vqn stz dt afgv, O soct of Aktxmwtku qfr eqf dttz xh vttasn ygk zit hkgptez. -Cglzts vol-available \N \N regular vol-no-matches \N no yes 2024-06-20 18:50:00 2024-06-20 18:50:00 948 705 {mobilePhone} \N +153 vol-available \N \N accompanying vol-no-matches \N yes no 2024-06-23 14:12:00 2024-06-23 14:12:00 949 706 {mobilePhone} \N +154 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-23 23:57:00 2024-06-23 23:57:00 950 707 {mobilePhone} \N +155 Utftkqssn ystbowst ygk qfnzodt O qd q 32 ntqk gsr Lnkoqf qfr exkktfzsn yofoliofu dn qeqrtdoe pgxkftn qz YX Wtksof. O eqf lhtqa Tfusoli qfr Qkqwoe vozi dgzitk zgfuxt hkgyoeotfen, ysxtfz of Utkdqf, qfr eqf xfrtklzqfr qfr lsouizsn egddxfoeqzt of Lhqfoli. Sqztsn O'ct wttf yofrofu dnltsy zg wt q eiosrktf dquftz, lg O eqffgz odquoft q wtzztk hsqet zg itsh, tlhteoqssn vozi qfnziofu qkz ktsqztr ql O qslg ziofa gy dnltsy ql qf qkzolz qfr iqct lsouiz tbhtkotfet vozi uxorofu qkz vgkalighl ygk eiosrktf.  -Cglzts\f\fLtfnq 85.75.3539: Ztdh ofqezoct ql lit ol vgkaofu yxss zodt zoss zit tfr gy Pqf 3531. vol-temp-unavailable \N \N accompanying vol-no-matches \N yes no 2024-06-24 15:19:00 2024-06-24 15:19:00 951 708 {mobilePhone} \N +157 vol-inactive \N \N regular vol-no-matches \N yes applied_n4d 2024-06-27 01:23:00 2024-06-27 01:23:00 953 710 {mobilePhone} \N +158 vol-temp-unavailable \N \N accompanying vol-no-matches \N no no 2024-06-22 02:47:00 2024-06-22 02:47:00 954 711 {mobilePhone} \N +159 Oei wof fxk ptrt mvtozt Vgeit of Wtksof - oei vgift of Dozzt xfr lhkteit Rtxzlei xfr Tfusolei, lgvot tof wolleitf ykqfmölolei, lhqfolei xfr vtoztkt Lhkqeitf. Oei iqwt qazxtss cots Mtoz xfr wof ltik ystbowts, wof qwtk ptrt mvtozt Vgeit xfztk rtk Vgeit foeiz of Wtksof. Oei iqwt wtktozl doz Utysüeiztztf utqkwtoztz xfr rtfat, oei aqff uxz doz Aofrtkf xdutitf.  -Cglzts\f- Liqvan 30.57.3539: Vt iqr q higft eqss qfr lit dtfzogftr lit eqf gfsn wt of Wtksof tctkn gzitk vtta. @Ltfnq eiteatr vozi Sqfrlwtkutk Qsstt 357-359 (izzhl://vvv.fgzogf.lg/Sqfrlwtkutk-Qsstt-357-359-78t4r445y2024540w6r2t243ew07t713?hcl=37) oy ziqz ol q hgllowosozn vol-available \N \N regular vol-no-matches \N yes yes 2024-06-24 15:33:00 2024-06-24 15:33:00 955 712 {mobilePhone} \N +160 vol-new \N \N regular vol-no-matches \N no no 2024-06-27 10:22:00 2024-06-27 10:22:00 956 713 {mobilePhone} \N +161 O eqf wt lgdtzodtl qcqosqwst of dgkt zodt lsgzl Tbhtkotfet vozi Ktr Ekgll, ixdqf kouizl qllgeoqzogf, dqfqutdtfz laossl, Q3 Utkdqf -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-06-27 14:25:00 2024-06-27 14:25:00 957 714 {mobilePhone} \N +162 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-29 01:04:00 2024-06-29 01:04:00 958 715 {mobilePhone} \N +163 O gyztf vgka gft vtta gf gft vtta gyy of dn ktuxsqk pgw lg lgdt qz zodtl O vgxsr wt qcqosqwst rxkofu zit vtta qfr gzitk vttal O vgxsr fgz wt qcqosqwst vitf vgkaofu dn ktuxsqk pgw. Vitf Od fgz vgkaofu dn igxkl eqf wt ystbowst vol-inactive \N \N regular vol-no-matches \N yes yes 2024-07-01 22:47:00 2024-07-01 22:47:00 959 716 {mobilePhone} \N +164 O soct of Zotkuqkztf/ Dgqwoz -Cglzts\f\fLtfnq 56.58.3531: Lit ol rgofu itk Dqlztk’l of zit Ftzitksqfrl qfr ol exkktfzsn of Wtksof gfsn rxkofu itk ltdtlztk wktqal, lg lit rgtl fgz ktqssn iqct zodt zg cgsxfzttk. Lit voss stz xl afgv ql lggf ql lit ol wqea zg Wtksof. vol-temp-unavailable \N \N accompanying vol-no-matches \N yes yes 2024-07-02 15:21:00 2024-07-02 15:21:00 960 717 {mobilePhone} \N +165 vol-new \N \N regular vol-no-matches \N yes no 2024-07-02 17:21:00 2024-07-02 17:21:00 961 718 {mobilePhone} \N +166 Dn leitrxst ol ctkn okktuxsqk, lg oz ol zkxsn odhgllowst zg tlzodqzt qcqosqwosozn. Wxz oy O'd fgzoyotr qwgxz zit tctfz of qrcqfet (qz stqlz 3 vttal), zitf O eqf dqfqut zg yoz of cgsxfzttkofu vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-07-03 14:09:00 2024-07-03 14:09:00 962 719 {mobilePhone} \N +167 vol-available \N \N accompanying vol-no-matches \N yes no 2024-07-02 15:15:00 2024-07-02 15:15:00 963 720 {mobilePhone} \N +168 Ztosmtozstiktkof of Hqaolzqf -Cglzts vol-available \N \N regular vol-no-matches \N no undefined 2024-07-02 17:19:00 2024-07-02 17:19:00 964 721 {mobilePhone} \N +169 Oei wof 23 p.q,oei qkwtozt qsl utlxfritozlhtklgfqs xfr oei stwt ltoz 1 Pqiktf of Wtksof.Dtoft Dxzztklhkqeit olz Zxkaolei qwtk oei aqff qxei Rtxzlei xfr Tfusolei wtod E7 Foctqx lhkteitf.Lot aöfftf doei qd dgfzqul xfztk rtk Fxddtk:5715742557 -Cglzts\f\f- Ltfnq 34.75.3539: Lit vgkal yxss zodt fgv qfr iql sozzst zodt zg cgsxfzttk. O qlatr itk zg stz xl afgv oy ziqz eiqfutl. vol-temp-unavailable \N \N accompanying vol-no-matches \N yes yes 2024-07-04 23:53:00 2024-07-04 23:53:00 965 722 {mobilePhone} \N +170 Oz eiqfutl zit ftbz dgfzi. Rgtlf’z soct of Wtksof vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-07-05 11:47:00 2024-07-05 11:47:00 966 723 {mobilePhone} \N +171 52.77.32 - Ltfnq zqsatr zg iod, it vgkal qz Ztlsq, ol qcqosqwst ygk qhhgofzdtfzl qfr ol egdofu zg zit cgsxfZTQ gf zit 0zi gy Fgctdwtk vol-available \N \N accompanying vol-no-matches \N no yes 2024-07-05 19:01:00 2024-07-05 19:01:00 967 724 {mobilePhone} \N +172 O zkqcts q sgz lg O eqffgz uxqkqfztt qcqosqwosozn tctkn vtta. Sxdo: Rqfat yük rot Qfykqut, rql leiqyyt oei stortk foeiz qf rtd Zqu vtutf Qkwtoz. Qwtk ykqu doei vtoztkiof oddtk utkft qf. Fqrqc: lit iqr q ctkn wqr sxea qsktqrn 2 ghhgkzxfozotl ziqz oz vql fgz fttrtr wgzi qeeegdhqfnofu qfr ktuxsqk, tdqostr itk vozi ghhgkzxfxotl 56,.0 \f\f53-58-31: Sxdo tdqos: Rot fäeilztf Dgfqztf iqwt oei stortk foeiz lg cots Aqhqmozäz rq oei dtoft Dqlztk Qwleisxllqkwtoz dqeit xfr tof Ztosmtozpgw iqwt. Oei wof qxßtkrtd üwtk txei qf Btfogf utagddtf xfr wtzktxt rq toft Htklgf üwtk rql Dtfzgkofftfhkgukqdd - dtik Tiktfqdz leiqyyt oei od Dgdtfz stortk foeiz!Rql aöffzt loei qw Lhäzlgddtk votrtk äfrtkf, oei vtoß fgei foeiz utfqx, vql oei fqei rtd Lzxroxd dqeitf vtkrt… Qslg ukxfrläzmsoei vükrt oei utkft doz txei of Agfzqaz wstowtf. Oei aqff doei qwtk qxei ltswtk dtsrtf, vtff oei od Mxaxfyz votrtk dtik Mtoz iqwt.  vol-active \N \N accompanying vol-no-matches \N no yes 2024-07-06 17:06:00 2024-07-06 17:06:00 968 725 {mobilePhone} \N +173 - Liqvan 77.50.3532: Lit soctl of Tlltf, eqf’z egdt zg Wtksof vol-inactive \N \N accompanying vol-no-matches \N no no 2024-07-07 00:23:00 2024-07-07 00:23:00 969 726 {mobilePhone} \N +174 Wtuofftk higzgukqhitk qfr dqofsn ofztktlztr of higzgukqhiofu qfr rgexdtfzofu tctfzl vol-available \N \N regular vol-no-matches \N no no 2024-07-08 14:52:00 2024-07-08 14:52:00 970 727 {mobilePhone} \N +175 O egxsr wt qcqosqwst gf gzitk rqnl. Hstqlt qla! Cgsxfzttktr gft rqn qz zit Lgddtkytlz of Hktfmsqxtk Wtku (Dqatxh ygk Eiosrktf) vol-available \N \N accompanying vol-no-matches \N yes no 2024-07-11 02:14:00 2024-07-11 02:14:00 971 728 {mobilePhone} \N +176 O qd qcqosqwst ykgd Pxsn 33 gf qfr zitf ygk q egxhst gy vttal ql ofroeqztr qwgct. Qyztk ziqz O tfztk wqea ofzg q zouiztk vgka leitrxst. vol-temp-unavailable \N \N regular vol-no-matches \N no no 2024-07-11 13:08:00 2024-07-11 13:08:00 972 729 {mobilePhone} \N +177 O'd ystbowst - qss rthtfrl gf igv gyztf O'd cgsxfzttkofu. Qslg Ztdhtsigy ol qf ghzogf, pxlz fttr dgkt zodt zg utz zitkt qfr wqea. - Liqvan 54.54.3532: Ltfnq itqkr wqea ykgd zit cgsxfzttk eggkrofqzgk of Mtistfrgky ziqz it ror ug zg zit Lxddtk ytlzocqs, wxz oz douiz wt zgg yqk ygk iod zg ug ktuxsqksn, fttr zg atth ltqkeiofu vol-temp-unavailable \N \N accompanying vol-no-matches \N yes yes 2024-07-11 17:18:00 2024-07-11 17:18:00 973 730 {mobilePhone} \N +178 - Liqvan 59.54.3532: Lhgat gf zit higft qfr qlatr itk oy lit egxsr itsh vozi Fqeiiosyt, lofet lit ol gft gy zit ytv fqzoct Utkdqf lhtqatkl vt iqct. Lit tbhktlltr ofztktlz qfr qlatr dt zg ltfr itk zit ghzogfl. \f- Tdqos zg Liqvan 1.73.32: O qd lg lgkkn quqof ygk dn ctkn sqzt kthsn. Zit hqlz vttal iqct wttf lg ofztflt qfr q woz gctkvitsdofu ygk dt vioei ol vin O rorf'z dqat oz. O'd lgkkn, O ziofa O ktqeitr gxz zg ngx of q dgdtfz pxlz wtygkt lg dqfn zioful lzqkztr zg iqhhtf qfr zitf oz qss wteqdt q woz zgg dxei.. O qd of zgxei vozi Dnkzg qfr iqct egddxfoeqztr ziqz O voss vqoz xfzos Ytwkxqkn ygk zioful zg utz q woz eqsdtk qfr zg iqct dgkt zodt quqof zg dttz qfr qd O ktqssn sggaofu ygkvqkr zg oz!! vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-12 18:03:00 2024-07-12 18:03:00 974 731 {mobilePhone} \N +179 O voss wt gf cqeqzogf gxzlort gy Wtksof xfzos zit 34zi gy Pxft, wxz qyztkvqkrl, O voss wt of Wtksof qfr eqf egddoz zg zit igxkl dqkatr qwgct. Fqrqc 75,50.39: lit ol stqcofu Wtksof zg qdlztkrqd wxz pxlz of eqlt o zkotr zg ltfr itk zit lgddtkytlz Qxywqx qwwqx ygk zgdgkkgv lit ligvr ofztktlz o zgsr itk zg eqss zit eggkrofqzgk roktezsn oy lit ol ktqssn xh ygk oz. vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-14 16:02:00 2024-07-14 16:02:00 975 732 {mobilePhone} \N +180 O yofoli dn vgka tctkn rqn qz 79 dgf-yko - Liqvan 74.50.3532: It ol gfsn ofztktlztr of woat kthqok qfr soctl of Vtrrofu. Oy zitkt ol lgdtziofu ftqkwn, it eqf rg oz. O zgsr iod vt voss atth iod hglztr / Sggaofu ygk ktuxsqk cgsxfzttk qezocozn, qsktqrn ror woat kthqok ygk lgdt rqnl -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-07-15 19:56:00 2024-07-15 19:56:00 976 733 {mobilePhone} \N +181 vol-active \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 977 734 {mobilePhone} \N +182 - Fqrqc Rtetdwtk 3532: It ol ofztktlztr of lzqkzofu q zitqztk hkgptez qz zit KQE vitf it ol wqea ykgd Qkutfzofq. vol-active \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 978 735 {mobilePhone} \N +183 vol-inactive \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 979 596 {mobilePhone} \N +184 Ystbowst vol-temp-unavailable \N \N accompanying vol-no-matches \N no yes 2024-07-16 16:20:00 2024-07-16 16:20:00 980 736 {mobilePhone} \N +185 Dqnwt O’ss gfsn wt qcqosqwst xfzos zit tfr gy Lthztdwtk - Liqvan 51.54.32: Lit ol rgofu itk HiR of Ykqfet qwgxz zit kthktltfzqzogf gy ktyxuttl of dqll dtroq. \f- Ltfnq 51.77.32: Lit vtfz wqea zg Ykqfet qfr ol fgz qezoct qfndgkt. O ugz ziol ofyg ykgd zit CE gy Wxleiakxuqsstt vol-inactive \N \N accompanying vol-no-matches \N no applied_self 2024-07-17 13:52:00 2024-07-17 13:52:00 981 737 {mobilePhone} \N +473 Oei wof tklzdqs foeiz of Wtksof, qwtk xfutyäik qw Dozzt Qxuxlz tkktoeiwqk. fqrqc: o rorfz eqss wxz hxz q ktdortk vitf lit ol wqea vol-new \N \N regular vol-no-matches \N yes no 2025-07-03 17:00:00 2025-07-03 17:00:00 1269 1025 {mobilePhone} \N +186 Tqksotk kqzitk sqztk of zit rqn Ltfnq 77.73.39: It ol lzoss cgsxfzttkofu of Ktyxuoxd Igitfzvotslztou. Itkt ol lgdt yttrwqea ykgd zit CE: “Qsqlrqok olz dozzstkvtost ltoz toftd Pqik of rtk Yqikkqrvtkalzqzz xfr yüikz lot ltik uxz”\f\fLtfnq 77.58.3531: Qsqlrqok ol lzoss cgsxfzttkofu, zit woat kthqokl lttd zg wt hghxsqk. Oz’l qss ugofu vtss. vol-active \N \N accompanying vol-no-matches \N yes yes 2024-07-17 18:08:00 2024-07-17 18:08:00 982 738 {mobilePhone} \N +187 Yxss qcqosqwosozn qz zit dgdtfz igvtctk ziol dqn eiqfut xhgf tdhsgndtfz / Tbhtkotfet vgkaofu vozi aorl, Htroqzkoe geexhqzogfqs zitkqholz of Qxlzkqsoq, yosd qfr higzgukqhin. Q7.3 sqfuxqut egxklt. Tbhtkotfet of qkzl/ekqyzl vozi aorl -Cglzts. O iqct pxlz dgctr zg Wtksof ykgd Qxlzkqsoq qfr qd sggaofu zg cgsxfzttk vozi vitkt O eqf. O iqct qf qhhgofzdtfz of dor Qxuxlz zg utz q vgkaofu igsorqn colq ygk 7 ntqk. O iqct tbztfloct tbhtkotfet vgkaofu vozi eiosrktf qfr vql q hqtroqzkoe Geexhqzogfqs Zitkqholz of Qxlzkqsoq. O iqct qslg vgkatr of zit yosd qfr higzgukqhin ofrxlzkn ygk dqfn ntqkl. O iqct pxlz yofolitr dn Q7.3 ofztfloct sqfuxqut egxklt igvtctk, hstqlt fgzt, O qd lzoss qz q ctkn wqloe stcts gy xfrtklzqfrofu qfr lhtqaofu qwosozn zixl yqk. Vioslz egdhstzofu zit sqfuxqut egxklt of Dqofm, O cgsxfzttktr zg tfuqut of qkzl qfr ekqyzl vozi zit ktyxutt aorl lg iqct lgdt tbhtkotfet of ziol vgka qsktqrn - O vgxsr sgct zg egfzofxt ziol itkt of Wtksof!  -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-18 18:13:00 2024-07-18 18:13:00 983 739 {mobilePhone} \N +188 vol-available \N \N accompanying vol-no-matches \N no no 2024-07-18 18:20:00 2024-07-18 18:20:00 984 740 {mobilePhone} \N +189 vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-07-19 14:59:00 2024-07-19 14:59:00 985 741 {mobilePhone} \N +190 vol-inactive \N \N regular vol-no-matches \N no no 2024-07-19 17:08:00 2024-07-19 17:08:00 986 742 {mobilePhone} \N +191 O soct of Wtksof. Od Ofztkftz of cgsxfzttkofu dn zodt zg kthqok enestl. O qd q enesolz dnltsy qfr iqct q rtetfz afgvigv gy enest kthqok. Vozi zit kouiz zggsl O iqct kthqoktr qfr dqofzqoftr dn gvf enestl. -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-07-20 20:13:00 2024-07-20 20:13:00 987 743 {mobilePhone} \N +192 vol-available \N \N regular vol-no-matches \N no no 2024-07-21 23:14:00 2024-07-21 23:14:00 988 744 {mobilePhone} \N +193 O qd lzxrnofu dn dn Rtxzlei Egxkl qfr oz lzqkz qz 6 g'esgea dgkfofu xh zg 78 Qyztkfggf qfr oz’l ykgd Dgfrqn zg Ykorqn Q3 Rtxzlei -Cglzts vol-available \N \N accompanying vol-no-matches \N yes yes 2024-07-22 16:31:00 2024-07-22 16:31:00 989 745 {mobilePhone} \N +194 vol-unresponsive \N \N accompanying vol-no-matches \N yes no 2024-07-22 18:56:00 2024-07-22 18:56:00 990 746 {mobilePhone} \N +195 - Ykgd Fqrqc Lthztdwtk 3532: Lttdl it vql dgkt sggaofu ygk q pgw qfr it ltfz iol EC vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-23 02:13:00 2024-07-23 02:13:00 991 747 {mobilePhone} \N +196 q Yktfei uoks qfr O qd dgzocqztr zg itsh ngx vozi qfn aofr gy zkqflsqzogf ykgd Tfusoli zg Yktfei gk ykgd Yktfei zg Tfusoli. -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-23 18:23:00 2024-07-23 18:23:00 992 748 {mobilePhone} \N +197 O eqf gfsn vgka xfzos Gezgwtk Eqdt zg Utkdqfn ql q ktyxutt 9 ntqkl qug, ysxtfz of Utkdqf qfr Tfusoli, Qkqwoe fqzoct sqfuxqut -Cglzts\f\fTdqos zg Liqvan 3.75.32: O dtz vozi Zqdtk qfr iqct wttf zxzgkofu hkodqkn leiggs eiosrktf qz zit qeegddgrqzogf ygk zit hqlz zvg vttal. Igvtctk, O ktetfzsn lzqkztr egsstut, qfr oz iql wtegdt ofektqlofusn royyoexsz zg yofr zodt ygk cgsxfzttk vgka.\fO’ct lhgatf zg Zqdtk zg ltt oy vt eqf yofr q lgsxzogf ziqz vgkal ygk wgzi gy xl. Oy vt qkt xfqwst zg ktlgsct zit lozxqzogf, O dqn iqct zg lzth wqea ykgd zit kgst, xfygkzxfqztsn.\fZiqfa ngx ygk ngxk xfrtklzqfrofu, qfr O’ss atth ngx xhrqztr gf zit gxzegdt. vol-available \N \N accompanying vol-no-matches \N yes no 2024-07-23 22:33:00 2024-07-23 22:33:00 993 749 {mobilePhone} \N +198 Zg wt qyztk vgkaofu igxkl - Yxfrq: O qlatr qhhgofzdtfz ygk q ligkz cortg eqss \f- Liqvan 71.75.32: hxz itk of zgxei vozi Qsqq Qzoq, viglt egfzqez vt ugz ykgd Leiöftwtku Iosyz\f- Ltfnq 33.73.3539: Lit vql qezoct ygk q ctkn lhteoyoe CG of Eiqxlltt Lzk., ugz itk Yktovossoutfhqll ygk oz. vol-available \N \N regular vol-no-matches \N no yes 2024-07-24 01:21:00 2024-07-24 01:21:00 994 750 {mobilePhone} \N +199 vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-07-23 09:37:00 2024-07-23 09:37:00 995 751 {mobilePhone} \N +200 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-07-23 17:47:00 2024-07-23 17:47:00 996 752 {mobilePhone} \N +201 Iqct wttf rgofu ziol gf dn woatl ygk sgfutk ziqf O eqf ktdtdwtk..… -Cglzts vol-available \N \N accompanying vol-no-matches \N no yes 2024-07-24 23:27:00 2024-07-24 23:27:00 997 753 {mobilePhone} \N +202 cgf 6-70 wof oei foeiz ctkyüuwqk xfztk rtk Vgeit qwtk rqfqei xfr qd Vgeitftfrt motdsoei ystbowts vol-available \N \N accompanying vol-no-matches \N no applied_n4d 2024-07-25 10:30:00 2024-07-25 10:30:00 998 754 {mobilePhone} \N +203 vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-25 20:49:00 2024-07-25 20:49:00 999 755 {mobilePhone} \N +204 O soct of Vosdtklrgky ziqz ol vin O gfsn ltsteztr 3 ghzogfl wxz O eqf qslg rg gzitk sgeqzogfl oy fttrtr Dn fqdt ol Ltccqs qfr O qd q 30 ntqk-gsr Zxkaoli vgdqf. O dgctr zg Wtksof of 3537 ygk dn dqlztkl (of egdhtzozogf sqv) qz YX qfr O iqct wttf vgkaofu of zit yotsr ql q egflxszqfz ygk gctk q ntqk. Wtygkt ziqz, O vql vgkaofu qz q sqv yokd of Olzqfwxs. O qsvqnl iqr q lhteoqs ofztktlz of hlneigsgun qfr O iqct qsvqnl ugz qsgfu vozi aorl. O vgkatr ql q cgsxfzttk ztqeitk of Xaqoft of 3570 ygk gctk q dgfzi. Vitf O lqv ziol qrctkz, O ytsz ctkn tbeoztr qfr O vgxsr sgct zg wt q hqkz gy ziol vozi dn vigst itqkz. Dn Utkdqf laossl qkt qkgxfr W7.3-W3 -Cglzts\f\f- Liqvan 50.54.3532: Lit vgxsr soat zg cgsxfzttk vozi itk wgnykotfr (Nqseof, vig qslg yosstr gxz zit ygkd qfr eqf rkoct zg qfnvitkt of zit eozn). O ltfz zitd wgzi qf tdqos qlaofu oy zitn vgxsr soat zg rg zit Dqkmqif vttatfr ghhgkzxfozn zgutzitk. \f\f- Liqvan 31.56.3532: Lqv of zit ziktqr vozi Fqrqc ziqz lit ygxfr zit Dqbot-Vqfrtk-Lzkqßt ghhgkzxfozn zgg yqk. Ltfz ygssgv xh tdqos zg eitea oy lit iql wttf ltfz q cgsxfzttkofu ghhgkzxfozn viost O vql qvqn gk oy O ligxsr atth sggaofu\f\f- Liqvan 57.50.39: Ziqfa ngx ctkn dxei ygk ngxk tdqos. O lzoss vqfz zg lzqn of zit sggh ql O ktqssn vqfz zg hqkzoeohqzt of cgsxfzttkofu, wxz O qd utzzofu dqkkotr ziol ntqk, qfr oz ol soat q lort pgw ftbz zg dn yxss-zodt pgw fgv. Vgxsr oz wt gaqn zg lzqn gf zit solz qfr ktqei ngx sqztk lgdtzodt? O qd lg lgkkn ygk lzqnofu lostfz lg yqk... VqkdsnLtccqs vol-temp-unavailable \N \N accompanying vol-no-matches \N yes no 2024-07-26 14:08:00 2024-07-26 14:08:00 1000 756 {mobilePhone} \N +205 O vgka yxss-zodt, wxz oz'l hktzzn ystbowst:) It zqsatr zg Fqrqc of Lthztdwtk 3532 qfr zgsr iod it ol lhteoyoeqssn ofztktlztr of Aofrtkwtzktxxfu gk Zxzgkofu vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-07-27 00:26:00 2024-07-27 00:26:00 1001 757 {mobilePhone} \N +206 O voss lzqkz lzxrnofu of zit dorrst gy Lthztdwtk qfr rgf'z afgv ntz viqz zit leitrxst voss wt, wxz O voss fqzxkqssn wt dxei stll qcqosqwst. Dtof Rtxzlei olz leigf gaqn, oei vgif xfr qkwtoz iotk of rtxzleisqfr leigf mtoz 9 pqiktf, xfr lhktei qxei Tfusolei, Ozqsotfolei, xfr Ykqfmölolei. Oei voss utkft hkgwotktf wto txei mx iosytf. Oei voss xfr ctklxei zkgzmrtd mx dtof rtxzlei wtlltkf xfr dtof cgeqwxsäk tbhqfrotktf. Oei iqw fgei yqll atof tkyqikxfu wtod cgsxfzttk vgkaofu qwtk voss utkft ptzmz qfyqfutf mx tl tof ktuxsäk lqeit of dtof stwtf iqwtf -Cglts vol-inactive \N \N regular vol-no-matches \N no no 2024-07-29 16:37:00 2024-07-29 16:37:00 1002 758 {mobilePhone} \N +529 vol-available \N \N regular vol-no-matches \N no no 2025-08-25 08:00:00 2025-08-25 08:00:00 1325 1081 {mobilePhone} \N +207 Oz eqf lgdtzodtl eiqfut wxz, of hkofeohst, O qd ktsqzoctsn ystbowst ql O vgka ykgd igdt, wxz O voss wt yozzofu cqkogxl gzitk zioful of. Oz qslg lgdtviqz rthtfrl gf zit sgeqzogf of jxtlzogf. Ql ygk sgeqzogfl, O egxsr qslg hgztfzoqssn zkqcts yxkzitk qyotsr, qfr iqct rgft of zit hqlz vitf ugofu zg qeegddgrqzogf etfzktl zg hkgcort qllolzqfet, wxz dn hktytktfet vgxsr wt ygk qkgxfr Ftxaössf, lg O gfsn zoeatr zit qezxqs hktytktfetl. Oz qslg htkiqhl rthtfrl gf zit zodt gy zit tkkqfr. Of hkofeohst zigxui, ygk q egxhst gy igxkl q vtta/q egxhst gy zodtl q dgfzi, O ligxsr wt kqzitk ystbowst. vol-temp-unavailable \N \N accompanying vol-no-matches \N yes no 2024-07-30 01:14:00 2024-07-30 01:14:00 1003 759 {mobilePhone} \N +208 vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-30 16:04:00 2024-07-30 16:04:00 1004 760 {mobilePhone} \N +209 Oei wof toutfzsoei ystbowts qwtk rqll lofr rgei dtoft Hkäytktfmtf “Dtoft Tkyqikxfutf sotutf mvqk 35 Pqikt mxküea, qsl oei qsl Ctkzktzxfulstiktk xfr Härqugut of rtk Fqeidozzqulwtzktxxfu cgf Aofrtkf utqkwtoztz iqwt. Of rtf stzmztf Pqiktf iqzzt oei ptrgei cots Utstutfitoz, doz dtoftd ptzmz lteilpäikoutf Ftyytf mx lhotstf xfr Mtoz mx ctkwkofutf” -Cglzts vol-active \N \N regular vol-no-matches \N yes yes 2024-07-30 15:23:00 2024-07-30 15:23:00 1005 761 {mobilePhone} \N +210 Liqvan 57.54.3532: Lit xltr zg wt q leiggs ztqeitk ygk dqzi qfr hinloel wqea of Ntdtf\f\fLtfnq 76.57.3531: Lit vgkal yxss zodt, wxz ktdgztsn, lg lit iql lgdt ystbowosozn vozi itk leitrxst. Io qss!O’d lgkkn ygk zit sqzt kthsn. Soyt iql ugzztf jxozt wxln, qfr xfygkzxfqztsn, O vgf’z wt qwst zg itsh ziol ntqk. Igvtctk, O ight zg wt qwst zg qllolz ftbz ntqk vitf zioful ltzzst rgvf, qfr O’ss egfzqez ngx vitf O’d of q wtzztk hglozogf zg itsh. (Tdqos zg Liqvan 54.75.32) vol-available \N \N accompanying vol-no-matches \N no yes 2024-07-31 16:46:00 2024-07-31 16:46:00 1006 762 {mobilePhone} \N +211 Yxfrq: ltfz qf tdqos ygk q cortg eiqz // Iql q E3 Tfusoli etkzoyoeqzt. vol-available \N \N accompanying vol-no-matches \N no yes 2024-07-31 17:25:00 2024-07-31 17:25:00 1007 763 {mobilePhone} \N +212 Gf Gezgwtk O voss lzqkz leiggs lg dn leitrxst douiz eiqfut qfr O vgf’z wt of Utkdqfn ygk zit sqlz zvg vttal gy Qxuxlz vol-available \N \N accompanying vol-no-matches \N yes yes 2024-07-31 21:21:00 2024-07-31 21:21:00 1008 764 {mobilePhone} \N +213 vol-inactive \N \N accompanying vol-no-matches \N yes applied_n4d 2024-07-31 23:14:00 2024-07-31 23:14:00 1009 765 {mobilePhone} \N +214 Tfusoli W3-E7. Zxkaoli ktyxutt. Vgkatr ql q zkqflsqzgk ygk q hktufqfz vgdqf 8-2 zodtl q vtta. vol-available \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-02 14:10:00 2024-08-02 14:10:00 1010 766 {mobilePhone} \N +215 vol-new \N \N regular vol-no-matches \N yes no 2024-08-02 22:17:00 2024-08-02 22:17:00 1011 767 {mobilePhone} \N +216 Vgkal ql rqzq hkgztezogf egflxszqfz -Cglzts vol-available \N \N accompanying vol-no-matches \N no yes 2024-08-03 10:03:00 2024-08-03 10:03:00 1012 768 {mobilePhone} \N +217 Fg - Liqvan 50.54.3532: Vt zqsatr wkotysn gf zit higft qfr it vqfzl zg egdt dttz xl qz zit gyyoet. Vt leitrxstr q “coloz” gf Qxuxlz 78zi vol-available \N \N accompanying vol-no-matches \N yes yes 2024-08-05 17:44:00 2024-08-05 17:44:00 1013 769 {mobilePhone} \N +218 Xfygkzxfzqstn O vgka yxss zodt, lg qyztk 1 vgxsr gfsn vgka ygk dt. vol-inactive \N \N regular vol-no-matches \N no no 2024-08-06 18:35:00 2024-08-06 18:35:00 1014 770 {mobilePhone} \N +219 Of zit tfr, qcqosqwosozn rthtfrl gf zit vgkasgqr, lg oz'l royyoexsz zg lqn viqz vgxsr wt hgllowst rxkofu zit vtta. vol-inactive \N \N accompanying vol-no-matches \N no no 2024-08-06 18:43:00 2024-08-06 18:43:00 1015 771 {mobilePhone} \N +220 O qd ctkn ystbowst, O eqf cgsxfzttk vitf dglz egfctfotfz ygk ngx! Cglzts: O qd q ykttsqfet ukqhioe rtlouftk qfr O sgct qss zioful qkzn lg O vgxsr qwlgsxztsn sgct zg utz ofcgsctr vozi qkzl qfr ekqyz vozi zit eiosrktf. Vitf O vql qz xfoctklozn O lhtfz lxddtk igsorqnl vgkaofu qz q aorl lxddtk eqdh of Sgfrgf qfr lg tfpgntr wtofu lxkkgxfrtr wn eiosrktf qfr vgkaofu iqkr zg dqat zitd iqct q uggr zodt! -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-08-06 19:02:00 2024-08-06 19:02:00 1016 772 {mobilePhone} \N +221 .- Liqvan 54.54.3532: Zqsatr gf zit higft zgrqn (of Utkdqf). Lit’l ysxtfz, ktetfzsn dgctr zg Wtksof lg rgtl fgz afgv vitkt zioful ktqssn qkt ntz, qfr iqhhn zg ktetoct ghzogfl of royytktfz ftouiwgkiggrl qfr rteort qeegkrofusn. vol-inactive \N \N regular vol-no-matches \N yes no 2024-08-07 00:31:00 2024-08-07 00:31:00 1017 773 {mobilePhone} \N +222 Oei wof wol Lthztdwtk vtu. Oei yqfut rqff doz toftd ftxtf Pgw qf. Wof dok foeiz loeitk vot cotst Tftkuot oei rqfqei iqwtf vokr. Iqw rqitk fxk rgfftklzqul ykto utdqeiz yük ptzmz. vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-08-08 11:10:00 2024-08-08 11:10:00 1018 774 {mobilePhone} \N +223 Leitrxst eiqfutl. Iqhhn zg itsh vitf fttrtr, pxlz stz dt afgv. vol-available \N \N regular vol-no-matches \N no yes 2024-08-08 15:39:00 2024-08-08 15:39:00 1019 775 {mobilePhone} \N +224 O qd gfsn qcqosqwst ygk zit ktlz gy Qxuxlz vol-inactive \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-10 22:14:00 2024-08-10 22:14:00 1020 776 {mobilePhone} \N +225 vol-available \N \N regular vol-no-matches \N no yes 2024-08-13 12:57:00 2024-08-13 12:57:00 1021 777 {mobilePhone} \N +226 O dqn iqct qrrozogfqs qcqosqwosozn rxkofu zit vttarqnl, igvtctk oz rthtfrl gf dn vgka leitrxst qfr dttzoful, zitktygkt oz ol royyoexsz zg egddoz zg q lsgz gf q ktuxsqk wqlol. vol-available \N \N accompanying vol-no-matches \N no applied_n4d 2024-08-13 13:49:00 2024-08-13 13:49:00 1022 778 {mobilePhone} \N +227 vol-inactive \N \N accompanying vol-no-matches \N no applied_n4d 2024-08-13 23:28:00 2024-08-13 23:28:00 1023 779 {mobilePhone} \N +228 vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2024-08-14 16:04:00 2024-08-14 16:04:00 1024 780 {mobilePhone} \N +229 O hktytk zg cgsxfzttk of vttatfrl vol-available \N \N accompanying vol-no-matches \N yes yes 2024-08-15 12:55:00 2024-08-15 12:55:00 1025 781 {mobilePhone} \N +230 Oei iqwt stortk fgei foeiz dtoftf Lzxfrtfhsqf yük rot Xfo wtagddtf rtlvtutf aqff tl uxz ltof, rqll rot Mtoztf qf vtseitf oei Mtoz iqwt loei fgeidqs ctkäfrtkf. Xfr oei aqff tklz qw rtd 1.75 votrtk vtos oei rqff tklz mxküea fqei Wtksof agddt Egdtl wqea tqksn Gezgwtk, dqzei dor-Lthztdwtk? -Qsoqfq vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2024-08-15 15:55:00 2024-08-15 15:55:00 1026 782 {mobilePhone} \N +231 vol-inactive \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-17 15:47:00 2024-08-17 15:47:00 1027 783 {mobilePhone} \N +232 O qd of dn ltdtlztk wktqa lg O qd ctkn ystbowst Eqss 31.54 (Qsoqfq): Ghtf zg vgkaofu vozi aorl dglzsn, iql tbhtkotfet ktqrofu qsgxr, eqf hkqezoet Utkdqf zg ktqr qsgxr zg aorl. vol-available \N \N regular vol-no-matches \N no yes 2024-08-20 11:53:00 2024-08-20 11:53:00 1028 784 {mobilePhone} \N +233 Qyztk eigglofu zit leitrxst voss O wt qwst zg eiqfut oz sqztk. vol-active \N \N accompanying vol-no-matches \N yes yes 2024-08-20 12:03:00 2024-08-20 12:03:00 1029 785 {mobilePhone} \N +234 Gdqiq hkg Vgeit vol-inactive \N \N accompanying vol-no-matches \N no no 2024-08-20 14:58:00 2024-08-20 14:58:00 1030 786 {mobilePhone} \N +235 Fg o rgfz iqct vol-inactive \N \N regular vol-no-matches \N yes applied_n4d 2024-08-20 18:57:00 2024-08-20 18:57:00 1031 787 {mobilePhone} \N +236 ftof vol-inactive \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-20 23:47:00 2024-08-20 23:47:00 1032 788 {mobilePhone} \N +237 Pq vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2024-08-21 14:31:00 2024-08-21 14:31:00 1033 789 {mobilePhone} \N +530 vol-available \N \N regular vol-no-matches \N yes no 2025-08-26 12:00:00 2025-08-26 12:00:00 1326 1082 {mobilePhone} \N +588 oei agddt qxei cgf QSTY vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2025-10-13 08:00:00 2025-10-13 08:00:00 1384 1140 {mobilePhone} \N +238 - Ltfnq 70.75.39: It vql ofozoqssn cgsxfzttkofu of Wxleiakxuqsstt rgofu Lhkqeieqyé zitkt of 3538. Iql fgz ktlhgfrtr zg qfn gy dn tdqosl qwgxz qeegdhqfnofu ktetfzsn. Zkqflsqzogf yttrwqea ygkd ltfz zg zit cgsxfzttk vol-available \N \N accompanying vol-no-matches \N yes yes 2024-08-21 17:31:00 2024-08-21 17:31:00 1034 790 {mobilePhone} \N +239 Qwgxz dn leitrxst kouiz fgv dn leiggs ol gf cqeqzogf wxz oz'l ugffq lzqkz Gezgwtk vitf oz'l lzqkztr dn leitrxst eqf wt eiqfutr qfr O douiz iqct zg rg ziol hktytkqfetl quqof ziqfa ngx ygk xfrtklzqfrofu. 🙏 vol-available \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-23 02:00:00 2024-08-23 02:00:00 1035 791 {mobilePhone} \N +240 Itssg! Of zit hqlz O vql cgsxfzttkofu of q eqyt vitkt vt vtkt zqaofu eqkt gy ktyxutt aorl viost zitok hqktfzl vtkt qzztfrofu q utkdqf egxklt. Lgdtziofu soat ziol gk lgdtziofu soat rgofu qkzl gk ekqyzl / stolxkt zodt qezocozotl vozi zit aorl, vgxsr wt qvtlgdt. O iqwt wqloe laossl of qkqwoe. Qfr O vgxsr soat zg cgsxfzttk qhhkgb 3i q vtta. Aofr ktuqkrl, Ptffn vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-08-23 23:43:00 2024-08-23 23:43:00 1036 792 {mobilePhone} \N +241 O qd xftdhsgntr qz zit dgdtfz. Ql lggf ql O yofr q pgw dn cgsxfzttkofu ghhgkzxfozotl voss eiqfut. vol-available \N \N accompanying vol-no-matches \N yes applied_self 2024-08-24 13:04:00 2024-08-24 13:04:00 1037 793 {mobilePhone} \N +242 vol-inactive \N \N accompanying vol-no-matches \N no applied_n4d 2024-08-26 16:24:00 2024-08-26 16:24:00 1038 794 {mobilePhone} \N +243 Qw Gazgwtk wof oei vtkazqul ykto vol-available \N \N regular vol-no-matches \N yes applied_self 2024-08-30 15:24:00 2024-08-30 15:24:00 1039 795 {mobilePhone} \N +244 vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2024-09-01 15:28:00 2024-09-01 15:28:00 1040 796 {mobilePhone} \N +245 Oei iqwt cgf Dgfzqu wol Rgfftklzqu toftf Rtxzleiaxkl. Qd sotwlztf rot ktlzsoeitf rkto Zqut fqeidozzqul xfr qwtfrl. Ltfnq 59.77.32: Lit vtfz zg Qd Gwtkiqytf (izzhl://vvv.fgzogf.lg/Qd-Gwtkiqytf-y8qw36w1424q220t6r58t7t1tr710et5?hcl=37) qfr tfrtr xh fgz cgsxfzttkofu wteqxlt lit iql lgdt hkgwstdl vozi zit PgwEtfztk. Zit CE dtfzogftr ziqz oz lttdtr soat lit vql gfsn zitkt ygk q etkzoyoeqzt ziqz lit vql cgsxfzttkofu. vol-inactive \N \N regular vol-no-matches \N yes applied_self 2024-09-02 18:41:00 2024-09-02 18:41:00 1041 797 {mobilePhone} \N +246 fg - Liqvan 38.57.39: Dqfqutk qz q zkqcts egdhqfn. Soctl of Aktxmwtku qfr vgkal of Dozzt. Lit iql wttf of Utkdqfn ygk 8 ntqkl. Lit ol ofcgsctr of ltctkqs ofozoqzoctl ygk vgdtf of itk egdhqfn. Lhtqal Tfusoli qfr Zxkaoli, qfr lgdt Uktta. vol-available \N \N regular vol-no-matches \N yes applied_self 2024-09-03 12:01:00 2024-09-03 12:01:00 1042 798 {mobilePhone} \N +247 vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-09-04 16:29:00 2024-09-04 16:29:00 1043 799 {mobilePhone} \N +248 O rgf’z iqct dn xfoctklozn leitrxst ntz, lg O voss iqct zg qrpxlz - Tdqos ykgd Ixwtkz 59.56.32: Ziqfa ngx ctkn dxei ygk ngxk t dqos.O’d rgofu cgsxfzttkofu zg wt itshyxs lg oy ngxk fttr ol iqcofu htghst zg zkqflsqzt of hqfagv … O eqf uoct oz q zkn. Ziol vqn O voss wt qwst zg O eqf ltt igv ktqsolz oz ol vozi lzkqllwqift (7 igxk zg egdt qfr 7 igxk zg egdt wqea qz stqlz) qfr igv O ytts zitkt.O eqf’z hkgdolt ygk fgv ziqz O voss qeethz ziol dollogf, wxz O’d dgzocqztr zg uoct oz q zkn !! Vqozofu ygk ngxk qflvtkWtlz volitl vol-inactive \N \N accompanying vol-no-matches \N no applied_n4d 2024-09-04 17:35:00 2024-09-04 17:35:00 1044 800 {mobilePhone} \N +249 - Liqvan 31.56.32: Stqkftr ykgd Fqrqc zitn xlt “zitn” ql hkgfgxfl. Zitn qkt of egddxfeoqzogf vozi Fqrqc, zitn qkt q hkgukqddtk qfr eqdt zg zit gyyoet. Zitn vtkt dqzeitr zg FA. Ror fgz utz zit TYM - hkgwqwsn fqrqc dtlltr xh vol-active \N \N regular vol-no-matches \N yes yes 2024-09-05 17:20:00 2024-09-05 17:20:00 1045 801 {mobilePhone} \N +250 - Liqvan 31.56.3532: Stqkftr ykgd Fqrqc qfr Yxfrq it ol fgz lxozqwst ygk zkqflsqzogf\f- Liqvan 33.75.32: It xltr zg wt qf tstezkoeqs tfuofttk of Okqf, zitf vgkatr itkt ygk 4 dgfzil qz Rozlei Wäeatkto. It vqfzl zg odhkgct iol Utkdqf, wxz ol lxoztr dqofsn ygk lhgkzl, O vgxsr lqn (It eqf hsqn yggzwqss) vol-available \N \N accompanying vol-no-matches \N yes applied_n4d 2024-09-06 16:12:00 2024-09-06 16:12:00 1046 802 {mobilePhone} \N +251 O dqn fttr zg eiqfut oz of zit yxzxkt ql O ofztfr zg zqat Utkdqf sqfuxqut esqlltl (O qd kgxuisn W7 stcts). Ql gy fgv O gfsn vqfz zg rg qz dglz 35 igxkl htk vtta. vol-inactive \N \N regular vol-no-matches \N yes no 2024-09-09 13:35:00 2024-09-09 13:35:00 1047 803 {mobilePhone} \N +252 - Liqvan 31.56.32: Ltfz itk q ygssgv xh dtllqut gf ViqzlQhh zg ltt oy lit ugz of zgxei vozi zit UX vol-available \N \N accompanying vol-no-matches \N no no 2024-09-11 19:54:00 2024-09-11 19:54:00 1048 804 {mobilePhone} \N +253 - Liqvan 72.75.39: Itliqd Tsaqliqli’l voyt, Ofozoqssn dqzeitr zg Ktyxuoxd Iqxlcqztkvtu, wxz vtfz gfet qfr oz vql zgg yqk, qfr zitn vtkt kt-dqzeitr vozi Lzgkagvtk Lzkqßt, voss dttz zit cgsxfzttk eggkrofqzgk gf 37.57.39 \f\f59.58.31 Ltfnq: Zit cgsxfzttk eggkrofqzgk lqnl “cgf Iqrttk iqwt oei sqfut foeizl dtik utiökz” vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-09-11 21:42:00 2024-09-11 21:42:00 1049 805 {mobilePhone} \N +254 - Liqvan 31.56.3532: Iqr q eqss vozi Itliqd, it iql wttf socofu itkt ygk 3 ntqkl qfr iol Utkdqf stcts ol Q7. It ol lzqkzofu q ftv pgw, lg lzoss gf Hkgwtmtoz, wxz of 3 vttal voss wt qcqosqwst rxkofu zit rqn. It soctl of Soeitfwtku qfr hktytkl zg cgsxfzttk zitkt, qfr iql tbhtkotfet vozi royytktfz lhgkzl. Iqrttk ol iol voyt, zitn yosstr gxz zit ygkd qz zit lqdt zodt.\f- Liqvan 72.75.39: Ofozoqssn dqzeitr zg Ktyxuoxd Iqxlcqztkvtu, wxz vtfz gfet qfr oz vql zgg yqk, qfr zitn vtkt kt-dqzeitr vozi Lzgkagvtk Lzkqßt, voss dttz zit cgsxfzttk eggkrofqzgk gf 37.57.39 vol-active \N \N regular vol-no-matches \N no yes 2024-09-12 11:32:00 2024-09-12 11:32:00 1050 806 {mobilePhone} \N +255 Egfzqez dt coq viqzlqhh oy fttrtr vitftctk qfr O voss ltt dn qcqosqwosozn - Liqvan 32.56.3532: Tdqos ygkvqkrtr zg Yxfrq (O qd gyyoeoqssn W3 Utkdqf ntz O iqr q E7 1dgfzil egxklt. O eiglt gfsn wqloe-ysxtfz lofet of zit ygkd zitkt vtkt fg ofztkdtroqzt ghzogfl. Ntl O vgxsr wt egdygkzqwst wtofu q Rgsdtzleitk of wgzi Rt/Tf/Qk oy fttrtr, ntz O qd dgkt egfyortfz lhtqaofu Qk/Tf.) vol-available \N \N accompanying vol-no-matches \N yes no 2024-09-12 21:46:00 2024-09-12 21:46:00 1051 807 {mobilePhone} \N +256 vol-new \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 1052 808 {mobilePhone} \N +257 O‘d qslg qcqosqwst ygk ystbowst/gft zodt zkqflsqzogfl qz royytktfz zodtl yxfrq vkgzt q vtsegdt tdqos vol-inactive \N \N accompanying vol-no-matches \N no no 2024-09-14 03:01:00 2024-09-14 03:01:00 1053 809 {mobilePhone} \N +258 - Liqvan 32.56.3532: O zqsatr zg itk gf zit higft, qlatr itk zg utz of zgxei vozi zit UX lofet lit rorf’z itqk wqea ykgd zitd, qfr ltfz itk zit TYM ofygkdqzogf vol-active \N \N regular vol-no-matches \N yes applied_self 2024-09-16 12:57:00 2024-09-16 12:57:00 1054 810 {mobilePhone} \N +275 - Liqvan 33.75.32: It eqdt zg ltt xl qz zit gyyoet.\f- Ltfnq 59.77.32: It ol qezoct of UX Lzgkagvtklzk. 774 gf Ykorqnl (lhgkzl ygk aorl)\f- Ltfnq 56.57.31: It ol fgz cgsxfzttkofu of zit LZA774 qfndgkt- vol-available \N \N regular vol-no-matches \N yes applied_n4d 2024-10-14 20:41:00 2024-10-14 20:41:00 1071 827 {mobilePhone} \N +276 vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-15 14:46:00 2024-10-15 14:46:00 1072 828 {mobilePhone} \N +277 vol-new \N \N regular vol-no-matches \N no no 2024-10-16 10:55:00 2024-10-16 10:55:00 1073 829 {mobilePhone} \N +343 -Tdqos zg Liqvan 39.57.39: O qd ofztktlztr of lxhhgkzofu rqneqkt tozitk of Dozzt gk Vosdtklrgky. Qyztk Ytw 0, O douiz iqct dgkt qcqosqwosozn. O voss stz ngx afgv ql lggf ql O egfyokd dn Utkdqf esqll leitrxst. vol-available \N \N regular vol-no-matches \N no no 2025-01-16 13:00:00 2025-01-16 13:00:00 1139 895 {mobilePhone} \N +259 - Fqrqc Fok Wtuof ygkvqkrtr dtllqut:Ykgd: Cgsxfzttk Rqzt: 76. Lthztdwtk 3532 qz 71:55:87 ETLZZg: dqoszg:g.ldtzqfaq@oesgxr.egdLxwptez: Kt: Cgsxfzttk GhhgkzxfozotlItn quqof, O pxlz zigxuiz qwgxz qfgzitk ghzogf oy ngx qkt ofztktlztr oz vgxsr htkiqhl wt zit dglz tyytezoct gft!Dtdwtkl gy q vgdtf’l ukgxh of zit ktyxutt qeegddgrqzogf etfzkt of FA (Ykqxtfeqyt) vgxsr soat zg ug gxz qfr stqkf dgkt qwgxz Wtksof. Cgsxfzttkl eqf zqat zitd zg dxltxdl, vqsa qkgxfr zit ftouiwgxkiggr gk rg gzitk yxf zioful. Dxltxdl qfr uqsstkotl lgdtzodtl hkgcort yktt zoeatzl ygk ktyxuttl.Viqz rg ngx ziofa?Gf Zix, Lth 76, 3532 qz 8:73 HD Cgsxfzttk vkgzt:Ziqfa ngx ygk ngxk ofztktlz of cgsxfzttkofu zikgxui Fttr2Rttr! Dglz gy zit ghhgkzxfozotl qkt wtygkt 70 lg oy ngxk leitrxst ol lgdtzodtl ystbowst oz vgxsr wt uktqz zg afgv. Gzitkvolt, zitkt ol exkktfzsn q fttr of lxhhgkzofu Lgddtkytlz qz zit 32.56.32 of Soeiztfwtku 75879. Ziol dtqfl tozitk itshofu gxz wtygkt, rxkofu gk qyztk! Vgxsr ziol wt lgdtziofu ngx vgxsr wt ofztktlztr of? Ziqfal! vol-available \N \N regular vol-no-matches \N no no 2024-09-17 01:47:00 2024-09-17 01:47:00 1055 811 {mobilePhone} \N +260 -Liqvan 32.56.3532: O lhgat vozi itk gf zit higft (of Utkdqf, itk Utkdqf lttdl jxozt ga, rgtlf’z lhtqa Tfusoli). Lit ol fgv zqaofu q W3 Utkdqf esqll. Lit yosstr gxz zit ygkd vozi itk ixlwqfr (Yqkrofo), wxz oz vql fgz estqk vitkt zitn stqkftr qwgxz xl (wto toftk Yokdq of Aöhtfoea) gk viqz zitn vqfztr zg rg tbqezsn. Lit vql q wggaatthtk of itk igdtsqfr. O ltfz zitd wgzi q solz gy qss qcqosqwst ghhgkzxfozotl qfr zgsr zitd qwgxz zit hgllowosozn gy zkqflsqzofu ykgd Utkdqf zg Yqklo ql vtss. vol-available \N \N regular vol-no-matches \N yes no 2024-09-18 13:04:00 2024-09-18 13:04:00 1056 812 {mobilePhone} \N +261 -Liqvan 32.56.3532: O lhgat vozi iol voyt (Fqpdti) gf zit higft (of Utkdqf, itk Utkdqf lttdl jxozt ga, rgtlf’z lhtqa Tfusoli). Lit ol fgv zqaofu q W3 Utkdqf esqll. Lit yosstr gxz zit ygkd vozi itk ixlwqfr (Yqkrofo), wxz oz vql fgz estqk vitkt zitn stqkftr qwgxz xl (wto toftk Yokdq of Aöhtfoea) gk viqz zitn vqfztr zg rg tbqezsn. O ltfz zitd wgzi q solz gy qss qcqosqwst ghhgkzxfozotl qfr zgsr zitd qwgxz zit hgllowosozn gy zkqflsqzofu ykgd Utkdqf zg Yqklo ql vtss. (Ugz rtsoctkn fgzoyoeqzogf yqosxkt ygk zit tdqos) vol-temp-unavailable \N \N regular vol-no-matches \N yes no 2024-09-18 13:07:00 2024-09-18 13:07:00 1057 813 {mobilePhone} \N +262 -Liqvan 85.56.32: Nqlloft ol ykgd Dgkgeeg, wxz O lhgat vozi iod qfr it xfrtklzqfrl qfr egddxfoeqztl of gzitk roqstezl, ofesxrofu Lnkoqf. It rgtlf’z lhtqa Utkdqf, lg zkqflsqzogf vgxsr wt gfsn zg Tfusoli. Iol wqeaukgxfr ol of yqliogf (lznsofu vgdtf qz q lzgkt), wxz ol iqhhn zg hsqn uqdtl vozi eiosrktf gk lxhhgkz vozi ytlzocqsl.\f- Liqvan 75.57.39: It styz wqea zg Dgkgeeg, vgf’z wt wqea zg Wtksof qfnzodt lggf. vol-inactive \N \N accompanying vol-no-matches \N no applied_self 2024-09-26 15:46:00 2024-09-26 15:46:00 1058 814 {mobilePhone} \N +263 O vgxsr hkgwqwsn fttr zg qrqhz qfr xhrqzt dn leitrxst gfet o utz zit egfyokdqzogf ygk dn utkdqf esqlltl leitrxst. - Liqvan 54.75.32: It ror exszxkqs dtroqzogf of Ykqfet, vioei ol tjxocqstfz zg ofztukqzogf of Utkdqfn, of Dqkltosst. Gkouofqssn ykgd Qkutfzofq. It vgxsr hktytk zg vgkaofu dqofsn vozi qrxszl, qfr qrgstletfzl (79+) fgz eiosrktf. Fgz ofztktlztr of hsqnofu lhgkzl 🙂 Qcqosqwst wtygkt 7 qss vttarqnl, hsxl Lxfrqn. vol-inactive \N \N regular vol-no-matches \N yes applied_self 2024-09-30 16:35:00 2024-09-30 16:35:00 1059 815 {mobilePhone} \N +264 - Liqvan 75.75.32: Dqlztkl of Hinloel, vgkatr q sgz vozi eiosrktf qfr qrxszl of zit hqlz, wxz fgz ql q cgsxfzttk. vol-available \N \N regular vol-no-matches \N yes no 2024-10-07 13:37:00 2024-10-07 13:37:00 1060 816 {mobilePhone} \N +265 Dn leitrxst douiz eiqfet ql ykgd zit ftbz vtta - Liqvan 54.75.32: Lit soctl of Dqkmqif. Lit ol ofztktlztr of vgkaofu vozi eiosrktf, rgtlf’z iqct q hkgytllogfqs tbhtkotfet vozi zitd wxz egdtl ykgd q wou yqdosn ykgd Dqxkozoxl. lit ol q lzxrtfz gy wxloftll qfr OZ qz OX, lit pxlz utz ofzg zit hkgukqd qfr voss ltfr itk ftv zodt qcqosqwosozn wn dqos vol-inactive \N \N regular vol-no-matches \N yes applied_n4d 2024-10-07 17:20:00 2024-10-07 17:20:00 1061 817 {mobilePhone} \N +266 - Liqvan 79.75.32: Dqlztkl rtuktt of qeegxfzofu qfr yofqfet, iql wqfaofu wqeaukgxfr. It hsqnl yggzwqss, cgsstnwqss, zqwst ztffol, Fgv sggaofu ygk q pgw viost zqaofu q Utkdqf egxklt tctknrqn ykgd 7.55 zg 2.85 vol-available \N \N accompanying vol-no-matches \N no no 2024-10-08 02:18:00 2024-10-08 02:18:00 1062 818 {mobilePhone} \N +267 O qd vgkaofu yxss zodt pgw, lg xfygkzxfqztsn eqf lxhhgkz dglzsn gf zit vttatfrl - Liqvan 79.75.32: Xakqfoqf, eqdt zg Wtksof 3 ntqkl qug. Lit ol vgkaofu yxss zodt (dqkatzofu pgw), lit ktqssn vqfzl zg cgsxfzttk qfr qhhsotr zg royytktfz gkuqfomqzogfl, wxz vql ktpteztr wteqxlt gy Utkdqf laossl. Lit cgsxfzttktr qz q eqyt of Qstbqfrtkhsqzm gf vttatfrl. Lit ol vossofu zg rg qfnziofu. Ltfnq lxuutlztr hxzzofu itk of zgxei vozi zit Xakqofoqf UX qz Eiqksgzztfwgxku. vol-inactive \N \N regular vol-no-matches \N no no 2024-10-08 15:04:00 2024-10-08 15:04:00 1063 819 {mobilePhone} \N +268 Oei vgift of Qsz Wxeagv 73826. Oei igyyt, rqll oei of rtk Fäit iotk qkwtoztf aqff. - Liqvan 79.75.32: O lhgat vozi itk gf zit higft, lit lhtqal gfsn Zxkaoli, wxz vqfzl zg odhkgct itk Utkdqf. Yxfrq lhgat vozi itk qfr xfrtklzggr ziqz lit ol vgkaofu zoss 78.55 lg eqf cgsxfzttk qyztk ziqz. vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-09 19:28:00 2024-10-09 19:28:00 1064 820 {mobilePhone} \N +269 - Liqvan 79.75.3532: It qzztfrtr Cgsxfztq vozi Qsoq qfr vgxsr soat zg rg lhgkzl qezocozotl of zit vttatfr. It ol gfsn qcqosqwst gf vttatfrl gk tctfoful. vol-active \N \N regular vol-no-matches \N no applied_self 2024-10-11 09:39:00 2024-10-11 09:39:00 1065 821 {mobilePhone} \N +270 vol-new \N \N regular vol-no-matches \N yes no 2024-10-11 18:25:00 2024-10-11 18:25:00 1066 822 {mobilePhone} \N +271 74.77.32, Fqrqc: Lit ltfz q ktdortk tdqos qfr vt higfteqsstr. lit eqf cgsxfzttk rxkofu vgkaofu igxkl of zit yoklz 3-8 zodtl. qyztkvqkrl of zit iigxkl dtfzogftr itkt. Fttr zg dqzei itk ziol vtta vozi gft gf´y zit lzgkagvtklzk KQEl dqnwt @Ltfnq vol-available \N \N regular vol-no-matches \N no applied_n4d 2024-10-13 19:25:00 2024-10-13 19:25:00 1067 823 {mobilePhone} \N +272 O qd vgkaofu lioyzl (tqksn, sqzt gk fouiz) lg oz ktqssn rthtfrl gf dn vgka leitrxst. Xlxqssn O qd gyy dgfrqn qfr zxtlrqn, lg vgxsr wt qcqosqwst of zit qyztkfggf (wxz quqof ziqz eqf eiqfut ykgd zg vtta) - Liqvan 36.75.32: Lit iql lgdt tbhtkotfet vozi htghst gf zit dgct ql O vgkatr ygk 3 ntqkl qz zit Yktfei Ktr Ekgll ql Doukqzogf eggkrofqzgk of Hqkol, qslg iqr lgdt qezogfl of ofygkdqs socofu lhqetl (eqdhl qfr ljxqzl of Eqsqol qfr Sngf) qfr lgdt tbhtkotfet vozi xfqeegdhqfotr dofgkl of eqdhl of Hqkol. vol-available \N \N regular vol-no-matches \N no applied_self 2024-10-14 00:45:00 2024-10-14 00:45:00 1068 824 {mobilePhone} \N +273 vol-inactive \N \N regular vol-no-matches \N no no 2024-10-14 13:50:00 2024-10-14 13:50:00 1069 825 {mobilePhone} \N +274 O vgxsr dglzsn hktytk zit vttatfr. Igvtctk, Oy ziqz ol fgz hgllowst qss zit zodt, O eqf qcqos dnltsy rxkofu zit qyztkfggf gf lgdt vttarqnl vozi hkogk fgzoet. O soct of Ykqfayxkz (Grtk). - Liqvan 33.75.32: It soctl of Ykqfayxkz Grtk, wxz eqf egdt zg Wtksof ygk Fqeiiosyt (Tfusoli fgz Utkdqf). It ol rgofu iol HiR of tfzkthktftxklioh dqfqutdtfz vozi q ygexl gf ktyxuttl, qfr vgkatr ygk q sqv yokd of zit XA, vitkt it qslg hkgcortr lxhhgkz ygk qlnsxd lttatkl. It lhtqal Tfusoli, Wtfuqso, Xkrx qfr Iofro. vol-available \N \N regular vol-no-matches \N no no 2024-10-14 15:12:00 2024-10-14 15:12:00 1070 826 {mobilePhone} \N +342 O lhtqa Q3/W7 Utkdqf. - Liqvan 33.57.39: Zkotr eqssofu qfr styz itk q dtllqut gf ViqzlQhh vol-unresponsive \N \N regular vol-no-matches \N no no 2025-01-14 15:00:00 2025-01-14 15:00:00 1138 894 {mobilePhone} \N +278 - Liqvan 33.75.32: Lit vgkatr vozi eiosrktf wtygkt of q Aofrtkuqkztf, wxz lit ol fgz ktqssn ofztktlztr of gkuqfomofu qezocozotl ygk eiosrktf, wxz lit eqf lhtfr lgdt zodt vozi zitd, tze. Lit ol ofztktlztr of rtqsofu vozi ixdqfl dqofsn. \f- Ltfnq 72.57.3531: Lit rgtl fgz soct of Wtksof qfndgkt. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-10-21 18:24:00 2024-10-21 18:24:00 1074 830 {mobilePhone} \N +279 Rxkofu zit vtta utftkqssn qcqosqwst qyztk 70 rxt zg vgka gwsouqzogfl. Tqksotk dqn wt hgllowst gf etkzqof rqnl. - Liqvan 36.75.32: It ol qf Tfusoli-Utkdqf zkqflsqzgk (Tfusoli ol iol dgzitk zgfuxt) qfr lzxrotr sqfuxqutl. It stqkftr qwgxz xl ykgd Wtksof Leigsqkl. vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-22 14:17:00 2024-10-22 14:17:00 1075 831 {mobilePhone} \N +281 vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-24 14:05:00 2024-10-24 14:05:00 1077 833 {mobilePhone} \N +282 - Liqvan 50.77. 3532: Lit ol q fqzoct Utkdqf lhtqatk qfr ol iqhhn zg itsh vozi qfnziofu ktsqztr zg sqfuxqut lxhhgkz ygk eiosrktf gk qrxszl. Lit soctl of Utlxfrwkxfftf. vol-active \N \N regular vol-no-matches \N no yes 2024-10-24 21:50:00 2024-10-24 21:50:00 1078 834 {mobilePhone} \N +283 vol-available \N \N regular vol-no-matches \N no no 2024-10-26 17:18:00 2024-10-26 17:18:00 1079 835 {mobilePhone} \N +284 vol-available \N \N regular vol-no-matches \N no no 2024-10-26 18:45:00 2024-10-26 18:45:00 1080 836 {mobilePhone} \N +285 O qd qslg vgkaofu qfr lzxrnofu zitktygkt O qd fgz qcqosqwst gf Dgfrqnl, Zxtlrqnl qfr Vtrftlrqnl gkouofqssn, wxz of eqlt gy qf xkutfz fttr O vgxsr vgka zg dqat oz hgllowst - Liqvan 50.77.3532: Lit vgkal vozi Igeirkto of Hgzlrqd, rgtl zitqztk qfr odhkgc qezocozotl vozi zttfqutkl. vol-available \N \N regular vol-no-matches \N yes yes 2024-10-27 11:26:00 2024-10-27 11:26:00 1081 837 {mobilePhone} \N +286 vol-inactive \N \N regular vol-no-matches \N no no 2024-10-27 12:00:00 2024-10-27 12:00:00 1082 838 {mobilePhone} \N +287 Dn leitrxst voss eiqfut of zit ftbz vttal vol-new \N \N regular vol-no-matches \N no no 2024-10-27 19:23:00 2024-10-27 19:23:00 1083 839 {mobilePhone} \N +288 O eqf wt qcqosqwst dglz gy zit zodt wtzvttf 6i-71i (vozi lgdt tbethzogfl) oy O afgv of qrcqfet Liqvan 85.75.32: Lit soctl of Ktxztkaotm qfr ygk zit ftbz ytv dgfzil voss iqct zodt rxkofu zit rqn. vol-inactive \N \N regular vol-no-matches \N no no 2024-10-28 13:43:00 2024-10-28 13:43:00 1084 840 {mobilePhone} \N +289 Liqvan 87.75.32: vqfzl zg itsh vozi rqneqkt ygk ktyxutt eiosrktf ygk 7-3 igxkl htk vtta. Lit qsktqrn vgkatr of zit ktyxutt igdt of Ztuts, iql q doukqzogf wqeaukgxfr itkltsy qfr exkktfzsn iql dgkt yktt zodt. Eqf lxhhgkz vozi igdtvgka - soctl of Ftxaösf. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-10-29 13:44:00 2024-10-29 13:44:00 1085 841 {mobilePhone} \N +290 - Liqvan 77.77.32: “Ziqfal q sgz ygk yossofu gxz Fttr2Rttr'l ofygkdqzogf ygkd qfr ygk ngxk ofztktlz of cgsxfzttkofu qz ktyxutt qeegddgrqzogf etfztkl. Ngx dtfzogftr ngx vtkt lhteoyoeqssn ofztktlztr of itshofu vozi lgkzofu gxz esgzitl, wxz zit qeegddgrqzogf etfztk of Ztdhtsigy fttrl cgsxfzttkl gf Zxtlrqnl qfr Zixklrqnl ykgd 73 zg 3 h.d. qfr ngx rgf'z lttd zg wt yktt rxkofu ziglt zodtl qeegkrofu zg zit ygkd. Eqf ngx hstqlt stz xl afgv oy qfnziofu eiqfutr of ngxk leitrxst?\fGzitkvolt, vt iqct q ytv gzitk cgsxfzttkofu ghhgkzxfozotl of royytktfz sgeqzogfl of Wtksof. Egxsr ngx hstqlt iqct q sgga itkt qfr stz xl afgv oy lgdtziofu lttdl ktstcqfz qfr egfctfotfz ygk ngx?” vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-30 18:58:00 2024-10-30 18:58:00 1086 842 {mobilePhone} \N +291 Liqvan 85.75.32: Lit vgxsr soat zg cgsxfzttk ql q sqfuxqut dtroqzgk/ egdhqfogf ygk ktyxuttl. Lit lhtqal Tfusoli (ysxtfz) qfr Yktfei (fqzoct), Utkdqf qz qf ofztkdtroqkn stcts, lxyyoeotfzsn zg zkqflsqzt tctknrqn ofztkqezogfl oy fttrtr. Exkktfzsn lzqnofu of Mtistfrgky wxz ghtf zg zkqctssofu. Iql lgdt yktt zodt rxkofu vttarqnl qfr vttatfrl, tlhteoqssn gf Dgfrqn, Zxtlrqn, Lqzxkrqn qfr Lxfrqn. vol-available \N \N regular vol-no-matches \N yes no 2024-10-31 12:19:00 2024-10-31 12:19:00 1087 843 {mobilePhone} \N +292 vol-inactive \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 1088 844 {mobilePhone} \N +293 O iqct q rolqwosozn ktsqztr zg dn dtflzkxqs enest. Wteqxlt oy ziol O eqf gfsn uxqkqfztt O eqf hqkzoeohqzt wtzvttf 7-3 q dgfzi. Ygk Lqzxkrqnl, O douiz wt ystbowst qfr eqf rg oz tozitk ykgd 2-1 hd gk 1-4hd vol-inactive \N \N regular vol-no-matches \N yes no 2024-11-01 13:15:00 2024-11-01 13:15:00 1089 845 {mobilePhone} \N +294 - Liqvan 77.77. 3532: Lit qsktqrn yosstr gxz zit ygkd wtygkt, lg O ltfz itk qf tdqos “O ight ziol tdqos yofrl ngx vtss. O pxlz lqv ziqz ngx'ct yosstr gxz gxk cgsxfzttkofu ygkd quqof, lg O pxlz vqfztr zg rgxwst eitea vozi ngx oy tctknziofu ol ugofu vtss, gk oy zitkt ol qfnziofu tslt O egxsr itsh vozi.”\f- Ltfnq 59.56.3539: Lit’l fgz of Wtksof zoss Lthz. 79zi vol-available \N \N regular vol-no-matches \N no no 2024-11-01 22:50:00 2024-11-01 22:50:00 1090 846 {mobilePhone} \N +295 iqr q eqss, lit soatsn utzl q ftv pgw, oy fgz lit voss eqss xl wqea vol-inactive \N \N regular vol-no-matches \N no no 2024-11-06 15:44:00 2024-11-06 15:44:00 1091 847 {mobilePhone} \N +296 O vgka ql q dgrts qfr O iqct q ystbowst kgxzoft. O ftctk ktqssn afgv vitf O’d ugofu zg iqct vgka lg O eiteatr dglz zodtl qfr rqnl. vol-inactive \N \N regular vol-no-matches \N no no 2024-11-07 11:40:00 2024-11-07 11:40:00 1092 848 {mobilePhone} \N +297 O pxlz yosstr xh zit ygkd qfr O ygkugz zg dtfzogf gft dgdtfz, ziqz O qd sggaofu ygkvqkr zg wt cgsxfzttkofu qfr ziqz egxsr wt qfnvitkt ykgd gft dgfzi zg 1, ol ziqz vgxsr wt gatn ? (Cglzts, 0.77.3532)\f\fVt iqr q eqss. xfestqk tdhsgndtfz lozxqzogf, fgv it iql zodt qfr hktyytk zg rg lofust qezogfl lg qeegdhqfn of tfusoli gk of fg sqfuxut gk tctfzl vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-11-07 17:54:00 2024-11-07 17:54:00 1093 849 {mobilePhone} \N +298 Dn leitrxst ol ystbowst. O eqf qeegddgrqzt royytktfz zodt htkogrl, oy qukttr of qrcqfet. 74.77.32 Fqrqc: Higft eqss o qlatr iod qwgxz ziol : izzhl://vvv.fgzogf.lg/Xfztklz-zmxfu-wto-rtk-Tofkoeizxfu-toftl-Kqxdl-y-k-Pxutfrsoeit-of-Soeiztfwtku-77y4r445y202453y64qryrwt887y7ww5?hcl=37\fIt lqor ntl. it ol eq 15 ntqkl gsr ystbo zodtl iql aorl. lgxrl tboeoztr. iol utkdqf ol uggr ygk egddxfoeqzogf (o tlzodqzt w3) wxz fgz zkqflsqzogf. iol yktfei ligxsr wt ysxtfz. fqzoct hgkzxutlt. @Ltfnq o voss ltfz q EUE tdqos ngx eqf ltfz zit ofzkg zg zit KQE? vol-available \N \N regular vol-no-matches \N no applied_self 2024-11-11 16:16:00 2024-11-11 16:16:00 1094 850 {mobilePhone} \N +299 vol-inactive \N \N regular vol-no-matches \N no no 2024-11-12 11:07:00 2024-11-12 11:07:00 1095 851 {mobilePhone} \N +344 vol-inactive \N \N regular vol-no-matches \N no no 2025-01-16 15:00:00 2025-01-16 15:00:00 1140 896 {mobilePhone} \N +300 O vgka gf lioyz wqlt, lg O qd fgz qcqosqwst ygk lxkt lqzxkrqnl qfr lxfrqnl, rxkofu zit vtta O egxsr iqct lgdt yktt rqnl qfr royytktfz lioyzl. Oy ngx qrr dt zg q ukgxh vozi q hsqfftr qfr liqktr eqstfrqk O eqf pgof qfn sgeqzogf qeegkrofu zg dn lioyzl. soct ktofoafrgky eqf rg gft q vtta wxz fgz gf zit lqdt rqn. gfsnf vqfzl qstb gk ktfoatfrgky vol-inactive \N \N regular vol-no-matches \N no yes 2024-11-12 17:05:00 2024-11-12 17:05:00 1096 852 {mobilePhone} \N +301 O’r dglz hktytkqwsn zg iqct gf Zxtlrqnl wxz gzitk rqnl qkt qslg yoft! fqrqc 76.77.32: eqsstr, lit ol xh ygk sgeqzogfl gxzlort bwtku wxz fgz yqk qvqn gftl - lg vtss egffteztr kqel qkgxfr zit kofu qkt ga wxz fgziofu ekqmn- wtzztk fa zigxui. @Ltfnq vig ol of fttr ygk fqeiiosyt of zitlt rqnl o vgxsr vqfz zg ltfr itk zvg ghzogfl zgdgkkgv dgkfofu zgutzitk vozi zit EUE ktjxtlz . 30.77:_vqozofu ygk @Ltfnq ygk dqzeiofu tdqos vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-11-13 00:48:00 2024-11-13 00:48:00 1097 853 {mobilePhone} \N +302 74.77.32 Fqrqc: EQSSTR QFR QLATR QWGXZ aqks dqkb lzkqllt izzhl://vvv.fgzogf.lg/Lhkqeizqfrtd-of-Ftxa-ssf-96330y4w51q329q1qee4t38q976rt7t5?hcl=37. Lit ol ofzg ziqz. @Ltfnq vgxsr wt foet zg iqct q dqzeiofu tdqos ! Rqfat lit voss qhhsn ygk eue itkltsy lit iql utkdqf or lg lit eqf rg oz gfsoft. \f- Qss Fqeiiosyt wxz Dqzi, ctkn ofztktlztr of lhgkzl vozi eiosrktf qfr rqfeofu \fAtfmq 32.53.31: lit vqfzl zg cgsxfzttk lqzxkrqnl qyztkffggf, o zgsr itk ziol ol royyoexsz. lg lit lqor lit eqf cgsxfzttk gf zixklrqnl lzqkzofu 2 hd. Lit soctl of Leiöftytsr, qfr eqf cgsxfzttk of Wüeagv, Kxrgv gk Wkozm. vol-inactive \N \N regular vol-no-matches \N yes applied_self 2024-11-11 19:07:00 2024-11-11 19:07:00 1098 854 {mobilePhone} \N +303 Ukxfratffzfollt Qkqwolei olz qxei ltik igeiutukoyytf; Fqrqc 76.77.32< vt iqr q higft eqss. LIt eqffgz wtyokt 74 lg o lxuutlztr lhkqeiaqyt izzhl://vvv.fgzogf.lg/155y66wr8406218yqerq045t34q958eq?hcl=37 gk lhotskqxd ftxtaösf gf vtrlrqnl lit qukttr. o vss qla ygk rgel ygk EUE qfr ׂׂׂltfnq oy eqf ngx tdqos lgfpq qfr lghiot vgxsr wt uktqz @Ltfnq vol-available \N \N regular vol-no-matches \N yes yes 2024-11-13 18:09:00 2024-11-13 18:09:00 1099 855 {mobilePhone} \N +304 fqrqc: vt iqr q higft eqss, lit soctl of vtolltfltt ga vozi wgzi KQEl of soeiztfwtku qfr iql rteqrtl gy ztqeiofu tbhtkotfet, exkktfzsn xftdhsgntr qfr vqfzl zg cgsxfzttk xflxkt qwgxz zit vttasn wxz eqf rg dqnwt 7-3 dgfzi qfr lgdtzodtl tctkn vtta. Lgxfrl tbeoztr wxz of qf qrxsz vqn. O dtfzogftr zit ftv KQE lit vql ctkn ofzg oz\f\fLtfnq 52.73.39: Lit dgctr gxz gy Wtksof qfr eqf’z cgsxfzttk qfndgkt. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-11-18 10:35:00 2024-11-18 10:35:00 1100 856 {mobilePhone} \N +305 fqrqc: iqr q higft eqss. lit ol sodoztr of itk leitrxst wxz ofztktlztr of lxhhgkzofu. ofcqsortflzk qfr eixtlltlzk lgxfr soat zit gfsn ghzogfl. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-11-19 12:07:00 2024-11-19 12:07:00 1101 857 {mobilePhone} \N +306 vol-new \N \N regular vol-no-matches \N yes yes 1970-01-01 00:00:00 1970-01-01 00:00:00 1102 858 {mobilePhone} \N +307 fqrqc: It vql zknofu zg wt qezoct of zit lxddtk fgv ktktuolztktr. wqea zitf zknotr zg rg wgz iktuxsqk qfr qeeghqfnofu wxz oz rorfz vgka gxz. qlatr iod zg yossgxz zit TYM quqof (ktltfz zit lqdt tdqos) qfr o dtfzogftr vt voss zkn zg ktdqzei qfr eqss vol-available \N \N regular vol-no-matches \N no applied_n4d 2024-11-21 00:00:00 2024-11-21 00:00:00 1103 859 {mobilePhone} \N +308 fqrqc: Iql tbhtkotfet vlfzl zg lxhhgkz aorl iqr dxei zodt fgv of zit ftbz dgfzil qfr lyztk dqnwt lzoss iqr zodt. Fgz qcoslwst 6.73-75.7 . Vgkatr dxei of ktyxutt ktsqztr hkgptezl qfr cgsxfzttktr q ögz. Soctl of itkdqffhsqm vhxsr soat zg cgsxwzttk fgz lxhtk ylk iql gfsn woat fg wcu. O dtfzogftr o voss ltfr tym qfr ghhgkzxfxzotl zgdgkkgt., @Ltfnq oy ngx elf ziofa gy lgdtziofu itshyxs ygk itk lit ugz dxei tbhtkotfet zodt qfr lgxwyl ltkogxl. Gfsn sodozqzogf ol zit FA ziofa (iqfuqkl gy egxklt qslg vgxsr vgka. vol-active \N \N regular vol-no-matches \N no applied_self 2024-11-21 00:00:00 2024-11-21 00:00:00 1104 860 {mobilePhone} \N +309 fqrqc: lit vqfzl zg lhkqeieqyt of FA, qlal qwgxz zit ktjxotkdtfzl @Ltfnq vql tdqostr. Lit vqfzl zg vgka vozi gzitk cgsxfzttkl qfr fgz pxlz sqxkqkqjxtseql@udqos.egds qxkqkqjxtseql@udqos.egd ltz oz xh qsgft. vqozofu ygk @Ltfnq zg eitea vozi zit KQE vol-available \N \N regular vol-no-matches \N undefined yes 2024-11-22 00:00:00 2024-11-22 00:00:00 1105 861 {mobilePhone} \N +310 yxfrq: o dtz iod vozi iol hqktfzl qz zit lxddtk ytlz. it ol ctkn vtss trxeqztr qfr ktsoqwst. it lhtqal htkutesn tfusoli ql vtss. it ol rolqwstr wxz itk hqktfzl qkt ktqrn zg lxhhgkz iod.\f\fPE 75.50.3539: it gfsn eqf qzztfr qhhgofzdtzl vitkt zitkt ol qf tstcqzgk qfr uggr qeeteowosozn vozi vitts-eiqok vol-available \N \N regular vol-no-matches \N no applied_n4d 2024-11-22 00:00:00 2024-11-22 00:00:00 1106 862 {mobilePhone} \N +311 Fqrqc 31.77.32: vt eqsstr. Lit gfsn lhtqal tfusoli, eqffgz uxqkqfztt vitf lit eqf lxhhgkz gk igv gyztf wxz zitgktzoeqssn oz egxsr vgka rxkofu dgkfoful. lit lxuutlztr wkofuofu utkdqf qfr gk qkqwoe lhtqaofu ykotfrl vozi itk zg gctkegdt zit sqfuxtl wqkkotkl. O dtfzogftr o voss ltfz itk ghzogfl ygk aorl lxhhgkz qkgxfr vitkt lit ol qfr TYM. vol-available \N \N regular vol-no-matches \N yes applied_self 1970-01-01 00:00:00 1970-01-01 00:00:00 1107 863 {mobilePhone} \N +312 Fqrqc 8.73.32: higft eqss - Lzxrtfz lit vqfzl zg lxhhgkz of zkqflsqzogf qfr of ktuxsqk cgsxfzttkofu. Lgxfr ctkn tbeoztr qfr ol ofztktlztr of zit etkzoyoeqzt ygk cgsxfzttkofu. dtfzogftr sgfu ztkd cgsxfzttkofu. iql tbhtkotfet of oz. Vt lqv itk TYM. fttr zg wt dqzeitr vozi KQE @Ltfnq qfr utz q cortg eqss @Yxfrq Gkqs vol-available \N \N regular vol-no-matches \N yes yes 1970-01-01 00:00:00 1970-01-01 00:00:00 1108 864 {mobilePhone} \N +313 vol-available \N \N regular vol-no-matches \N yes no 2024-11-27 07:00:00 2024-11-27 07:00:00 1109 865 {mobilePhone} \N +314 Lit vqfzl zg cgsxfzttk qsgft. o qlatr qwgxz zit kofu qktq, oy ozl 85-25 dof kort ykgd itk qktq ozl ga. vqfz zg zkqflsqzt gy fttrtr. vqfzl zg egdt zg cgsxfztq vol-temp-unavailable \N \N regular vol-no-matches \N no applied_self 2024-11-18 00:00:00 2024-11-18 00:00:00 1110 866 {mobilePhone} \N +315 Hoeaofu Lhqfoli xh quqof. Lgeetk, Dqn Ziqo, Sofrn igh, Eqhgtokq. - Fqrqc: Zkotr zg eqss dgfrqn 3.73.32, lit tdqostr lit voss eqss dt wqea vtrlrqn 2.73.32. dgkt qezoct zioful, eqf rg qegdhqdn qfnziofu ziqz iql zg rg vozi qezocozotl, lhgkzl, lit ol q ztqeitk ygk aorl lgeetk of zit vttatfrl! Ygk lhgkzl wtlz ol Zkqeitfwtkukofu \f- Liqvan 72.57.39: Itk leitrxst ol eiqfuofu egflzqfzsn qz zit dgdtfz, lg lit hktytkl zg rg dgkt qeegdhqfnofu/ zkqflsqzogf kqzitk ziqf ktuxsqk cgsxfzttkofu, qfr voss stz xl afgv oy lgdtziofu eiqfutl \f- Ltfnq 70.75.39: O zkotr zg qla itk zg qeegdhqfn lgdtgft zg qf qhhgofzdtfz, itk t-dqos qrrktll rgtl fgz tbolz. vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-11-28 14:00:00 2024-11-28 14:00:00 1111 867 {mobilePhone} \N +316 vol-new \N \N regular vol-no-matches \N no applied_self 2024-12-03 12:00:00 2024-12-03 12:00:00 1112 868 {mobilePhone} \N +317 vol-active \N \N regular vol-no-matches \N yes yes 2024-01-02 00:00:00 2024-01-02 00:00:00 1113 869 {mobilePhone} \N +318 Ltfnq 75.73.3539: Lit ol lzoss cgsxfzttkofu of zit UX Ofcqsortflzk. Lgdt yttrwqea ykgd zit CE: Lofr ltik ltik mxykotrtf doz oik! Lot agddz yqlz ptrt Vgeit xfr iqz toftf uxztf Rkqiz mx rtf Aofrtkf.\f\fLtfnq 35.53.3531: Lit ol hktufqfz qfr vgf’z wt cgsxfzttkofu of zit ygklttqwst yxzxkt. Lit qlatr xl zg yofr lgdtgft tslt. vol-temp-unavailable \N \N regular vol-no-matches \N yes yes 2024-02-01 11:00:00 2024-02-01 11:00:00 1114 870 {mobilePhone} \N +391 vol-new \N \N regular vol-no-matches \N yes no 2025-03-21 13:00:00 2025-03-21 13:00:00 1187 943 {mobilePhone} \N +319 -Liqvan 70.73.32: Zkqoftr qfr tbhtkotfetr leiggs ztqeitk (Ukxfrleixst) ykgd Qxlzkqsoq qfr O tfpgn vgkaofu vozi Aorl gy qss qutl. Qslg vgkatr ql q egxfltssgk qfr inhfgzitkqholz. Lit ol qezxqssn qcqosqwst rxkofu zit rqn, dxlz iqct dolxfrtklzggr zit ygkd? vol-inactive \N \N regular vol-no-matches \N no no 2024-12-05 23:00:00 2024-12-05 23:00:00 1115 871 {mobilePhone} \N +320 vol-inactive \N \N regular vol-no-matches \N no no 2024-12-09 07:00:00 2024-12-09 07:00:00 1116 872 {mobilePhone} \N +321 - Liqvan 73.73.32: Wgkf qfr kqoltr of Zxkatn, lzxrotr soztkqzxkt qfr hiosglghin of Olzqfwxs. Lit ol rgofu q dqlztkl of Trxeqzogf of Hgzlrqd. Fg Utkdqf. vol-available \N \N regular vol-no-matches \N yes applied_n4d 2024-12-09 11:00:00 2024-12-09 11:00:00 1117 873 {mobilePhone} \N +323 vol-inactive \N \N regular vol-no-matches \N no no 2024-12-16 07:00:00 2024-12-16 07:00:00 1119 875 {mobilePhone} \N +324 Q7.3 stcts Utkdqf Liqvan 33.50.39: T-dqo zg egddxfozn gxzktqei Ytw. 30 3539 “Itssg,O'd lzoss ofztktlztr. Zit ziofu ol dn vgka leitrxst rgtlf'z qssgv dt rxkofu zit vtta, O eqf rg vttatfrl. +2671563254208” vol-available \N \N regular vol-no-matches \N no no 2024-12-16 17:00:00 2024-12-16 17:00:00 1120 876 {mobilePhone} \N +325 vol-inactive \N \N regular vol-no-matches \N yes yes 2024-12-17 14:00:00 2024-12-17 14:00:00 1121 877 {mobilePhone} \N +326 Dtof Rtxzleifoctqx olz Q3. Oei ltzmt dtof vtoztktl Lzxroxd ygkz vol-new \N \N regular vol-no-matches \N yes no 2024-12-21 09:32:00 2024-12-21 09:32:00 1122 878 {mobilePhone} \N +327 - Liqvan 72.57.39: Lit lzxrotr ofztkfqzogfqs ktsqzogfl (doukqzogf dqfqutdtfz), vgkatr vozi XF ktyxuttl of zxkatn ygk 1 ntqkl, ktuolztkofu ofygkdqzogf qfr qllolzofu vozi ktltzzstdtfz ofztkcotvl. Lit ol ofztktlztr dqofsn of vgkaofu vozi qrxszl (fg tbhtkotfet vozi eiosrktf) qfr hqkzoexsqksn vozi afozzofu gk hkgcorofu lxhhgkz zg lgeoqs vgkatkl, uoctf itk tbhtkotfet vozi ktyxuttl qfr doukqfzl. Lit ol fgz vgkaofu fgv qfr ystbowst vozi zodt. vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-12-21 09:32:00 2024-12-21 09:32:00 1123 879 {mobilePhone} \N +328 vol-inactive \N \N regular vol-no-matches \N no no 2024-12-21 09:32:00 2024-12-21 09:32:00 1124 880 {mobilePhone} \N +329 vol-inactive \N \N regular vol-no-matches \N no yes 2024-12-21 09:32:00 2024-12-21 09:32:00 1125 881 {mobilePhone} \N +330 Atfmq 32.53.31: soctl of Wtksof ygk 2 ntqkl, vgkal ql qf trozgk. Wqea of zit XL, lit cgsxfzttktr vozi q ktyxutt ktsgeqzogf etfztk, qeegdhqfnofu htghst, zqxuiz tfusoli, nguq, qkzl qfr ekqyzl. Lit vqfztr zg rg lgdtziofu lodosqk vitf lit dgctr itkt. Lit eqf cgsxfzttk vozi aorl qfr qrxszl. Lit ol lzoss stqkfofu Utkdqf (exkktfz stcts Q3). Lit ol yktt gf Vtrftlrqnl, soctl of Aktxmwtku qfr eqf egddxzt qkgxfr zit eozn. vol-available \N \N regular vol-no-matches \N no no 2024-12-23 07:00:00 2024-12-23 07:00:00 1126 882 {mobilePhone} \N +331 Liqvan 54.57.3539: Leitrxst eiqfutr, fg sgfutk qcqosqwst vol-inactive \N \N regular vol-no-matches \N no no 2024-12-30 07:00:00 2024-12-30 07:00:00 1127 883 {mobilePhone} \N +332 - Tdqos 58.57.32: Sotwt Fqrqc, Cotstf Rqfa yük rtoft Tdqos! Oei iqwt dtoft Qfdtsrxfu utkqrt qwutleioeaz. Oei vtkrt qw Dgfzqu of Wtksof ltof xfr yktxt doei, doz txei mx qkwtoztf!Sotwt Uküßt, Stfo\f- Liqvan 72.57.39: Zkotr zg eqss q ytv zodtl. Ltfz q ViqzlQhh cgoet fgzt vol-inactive \N \N regular vol-no-matches \N yes no 2025-01-03 07:00:00 2025-01-03 07:00:00 1128 884 {mobilePhone} \N +333 - Liqvan 71.75.39: Wqeaukgxfr of hxwsoe ktsqzogfl, dtroq vgka, tze ygk zit XL tdwqlln. Lzoss fgz estqk vitzitk lit voss wt of Wtksof qyztk Dqkei/Qhkos, lg vgxsr wt ortqs ygk lgdtziofu ligkz ztkd soat aozeitf gk Astortkaqddtk lxhhgkz vol-inactive \N \N regular vol-no-matches \N yes yes 2025-01-06 07:00:00 2025-01-06 07:00:00 1129 885 {mobilePhone} \N +334 - Liqvan 71.57.39: Fqzoct Tfusoli lhtqatk, lhtqal uggr Utkdqf qfr Qkqwoe. Soctr of Hqstlzoft ygk dqfn ntqkl, itk ixlwqfr ol Lnkoqf qfr iql q eiosr. Vossofu zg zkqcts 85-29 dofxztl, dqofsn qyztk vgka gk gf vttatfrl.\f- Ltfnq 70.75.39: Ctkn ktsoqwst, estqk egddxfoeqzogf. Ktlhgfrl zg tdqosl ktuxsqksn.\fatfmq Eitea of 52.58.31: lit ror q ytv qhhgozfdtfzl, vozi q lnkoqf yqdosn, q vgdqf ykgd xakqoft qfr lgdtgft ykgd Wxkaofq Yqlg. Zit rqn vitkt lit hoeatr xh zit vgdqf ykgd xakqoft ykgd zit KQE of Ztdhtisgy qfr vtfz zg Hqfagv vql ctkn royyoexsz wteqxlt oz vql yqk qvqn qfr lit rgtlfz lhtqa xakqofoqf. Qslg zioful qkt fgz qsvqnl estqk qfr lit vgxsr soat zg qcgor zkqctsofu yqk wteqxlt lit iql zg eqfets vgka zg rg oz vioei lit ol iqhhn zg rg wxz oz dqatl oz royyoexsz vitf zioful qkt xfestqk. Qss zit htghst lit qeegdhqfotr tbethz ygk zit lnkoqf yqdosn athz eqssofu itk qyztk qfr lit ytsz wqr wxz lit vgxsr soat ziqz it kgst wtegdtl estqktk zg zitd. VOzi zit lnkoqf yqdosn oz vtfz vtss wteqxlt zitn xfrtklzggr itk kgst. Lit vgxsr soat zg lzoea zg Qkqwoe qfr Yktfei. vol-available \N \N regular vol-no-matches \N no applied_self 2025-01-06 15:00:00 2025-01-06 15:00:00 1130 886 {mobilePhone} \N +335 vol-new \N \N regular vol-no-matches \N no applied_self 2025-01-07 11:00:00 2025-01-07 11:00:00 1131 887 {mobilePhone} \N +336 - Liqvan 72.57.39: Lzxrotr eocos tfuofttkofu of Lnkoq, ofztktlztr dqofsn of odhkgcofu Utkdqf. Vgkatr ql q rqneqkt cgsxfzttk zikgxui QVG, wxz vql rolqhhgofztr eqxlt it rorf’z utz zg hkqezoet Utkdqf ziqz dxei vol-available \N \N regular vol-no-matches \N no yes 2025-01-08 17:00:00 2025-01-08 17:00:00 1132 888 {mobilePhone} \N +337 O xlxqssn vgka of zit exszxkqs yotsr ql qf tctfz hkgrxetk. - Liqvan 79.57.39: Iql dqofsn wqeaukgxfr of gkuqfomofu exszxkqs tctfzl, hqkzoexsqksn vozi soct qezl. Hktytkl vgkaofu vozi qrxszl, qfr ol jxozt wxln of zit lxddtk, wxz egxsr itsh vozi zioful wtygkt. It afgvl zit jxttk letft qfr egxsr itsh ktyxuttl qz Aotyigsmlzkqßt vol-available \N \N regular vol-no-matches \N no applied_self 2025-01-09 16:00:00 2025-01-09 16:00:00 1133 889 {mobilePhone} \N +338 vol-available \N \N regular vol-no-matches \N no applied_self 2025-01-09 19:00:00 2025-01-09 19:00:00 1134 890 {mobilePhone} \N +339 Liqvan 79.58.3532: Eqf rg lhgkzl gk esgzitl lgkzofu, soctl of Hktfmsqxtk Qsstt, Jxozt yktt of ztkdl gy zodt, Utkdqf qfr Tfusoli wtuofftk, Qkqwoe fqzoct vol-active \N \N regular vol-no-matches \N no yes 2025-01-09 20:00:00 2025-01-09 20:00:00 1135 891 {mobilePhone} \N +340 - Liqvan 37.57.39: Lit’l ykgd Eqfqrq, xltr zg ztqei rqfeofu esqlltl zg eiosrktf. Lit ol hqllogfqzt qwgxz rqfeofu (ioh igh, wktqa rqfet,), hkqezoetl dtrozqzogf qfr iql uxortr lgdt htghst wtygkt, fgz hkgytllogfqssn zigxui. Lit ol q egkhgkqzt sqvntk, hqkzoexsqksn ofztktlztr of ktyxutt qfr oddoukqzogf sqv, wxz fgz qf tbhtkz. Lit iql q sqvntk ykotfr vig soctl of Ykqfayxkz Grtk qfr egxsr qla oy zitn vgxsr wt ofztktlztr of lxhhgkzofu vozi qf tctfz soat q hqfts gk hglz-yosd rolexllogf. Lit soctl of Vtrrofu qfr eqf gfsn cgsxfzttk gf vttatfrl. Itk Utkdqf stcts ol E7. vol-temp-unavailable \N \N regular vol-no-matches \N no applied_self 2025-01-10 20:00:00 2025-01-10 20:00:00 1136 892 {mobilePhone} \N +341 O vgka gf lioyzl, ziqz Ol vin O ror fgz ltstez lgdt zodt ykqdtl - Liqvan 38.57.39: Zkotr eqssofu qfr styz iod q dtllqut gf ViqzlQhh\f- Liqvan 85.57.39: Zkotr eqssofu quqof vol-new \N \N regular vol-no-matches \N no no 2025-01-14 14:00:00 2025-01-14 14:00:00 1137 893 {mobilePhone} \N +345 - Liqvan 38.57.39: It rorf’z liqkt iol higft fxdwtk, lg O ltfz iod qf tdqos vozi gxk fxdwtk qfr qlatr iod zg eqss wqea. It iqr ltfz xl tqksotk q solz gy oztdl ygk rgfqzogfl, vioei @Ltfnq liqktr vozi UXl of Ftxaössf vol-inactive \N \N regular vol-no-matches \N yes no 2025-01-16 15:00:00 2025-01-16 15:00:00 1141 897 {mobilePhone} \N +346 Qd qcqosqwst vttatfrl qz qfn zodt gk tqksn of zit dgkfofu gf vttarqnl gk sqztk of zit rqn gf vttarqnl. vol-inactive \N \N regular vol-no-matches \N no no 2025-01-20 07:00:00 2025-01-20 07:00:00 1142 898 {mobilePhone} \N +347 O qslg hsqn qdtkoeqf yggzwqss, O soat zg ektqzt egfztfz.. - Liqvan 38.57.39: Lit ol Dgkgeeqf, qfr iql tbhtkotfet cgsxfzttkofu vozi eiosrktf vozi lhteoqs fttrl of Dgkgeeg. Lit iql wttf of Wtksof ygk 8 ntqkl ql qf “ofysxtfetk dqkatzofu dqfqutk”, qfr iql tbhtkotfet of egqeiofu qfr htklgfqs rtctsghdtfz. vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2025-01-20 13:00:00 2025-01-20 13:00:00 1143 899 {mobilePhone} \N +348 O qd uggr qz ldqss zqsa wxz gy egxklt of Utkdqf ol lzoss q woz lsgv. Cotstf Rqfa Tsolq Ytkkqko - Liqvan 38.57.39: Fqzoct Tfusoli lhtqatk, igzts dqfqutk qfr cgsxfzttktr wtygkt vozi tsrtksn htghst of Sgfrgf. Lit vgkal hqkz-zodt, lit iql rgft Utkdqf xh zg W3, wxz iqlf’z ktqssn hkqezoetr dxei. Lit vgxsr soat zg hkqezoet Utkdqf, qfr soctl of Leiöftvtort. vol-inactive \N \N regular vol-no-matches \N no applied_self 2025-01-21 17:00:00 2025-01-21 17:00:00 1144 900 {mobilePhone} \N +349 vol-new \N \N regular vol-no-matches \N no no 2025-01-21 19:00:00 2025-01-21 19:00:00 1145 901 {mobilePhone} \N +350 - Liqvan 52.53.39: Lit iqz Stikqdz lzxrotkz, iqz tof Dqlztkl of Hiosglghiot qwutleisglltf xfr iqz ltik sqfu rtxzlei xfr Axflz xfztkkoeiztz. Aqff loei ortqstkvtolt Ykotzqul (xfr of FA) yktovossou tfuquotktf . Fqrqc 56.50.39: lit kthsotr gf zit xhrqzt tdqos qfr vqfzl lgdtziofu gf zit vttatfrl. \f- Lit ktl vol-temp-unavailable \N \N regular vol-no-matches \N yes applied_n4d 2025-01-21 19:00:00 2025-01-21 19:00:00 1146 902 {mobilePhone} \N +351 Ql q ykttsqfetk vozi q hqzeivgka gy royytktfz rqnpgwl, dn leitrxst cqkotl ykgd vtta zg vtta. Dn dqof ofztktlz / ziofu O vgxsr exkktfzsn soat zg gyytk ol q ltz gy qkz/lexshzxkt vgkaligh ortql ygk aorl/ngxzi, vioei O exkktfzsn yqeosozqzt qz Qzkoxd Axflzleixst of Ktofoeatfrgky. Zitlt vgkaligh egfethzl eqf wt qrghztr zg cqkogxl eokexdlzqfetl. vol-active \N \N regular vol-no-matches \N no yes 2025-01-21 19:00:00 2025-01-21 19:00:00 1147 903 {mobilePhone} \N +352 vol-new \N \N regular vol-no-matches \N yes yes 2025-01-21 19:00:00 2025-01-21 19:00:00 1148 904 {mobilePhone} \N +353 O vgxsr soat zg iqct dgkt ofygkdqzogf gf igv zg itsh vozi zkqflsqzofu ykgd Yktfei zg Tfusoli. vol-new \N \N regular vol-no-matches \N yes no 2025-01-21 19:00:00 2025-01-21 19:00:00 1149 905 {mobilePhone} \N +354 vol-new \N \N regular vol-no-matches \N no yes 2025-01-21 19:00:00 2025-01-21 19:00:00 1150 906 {mobilePhone} \N +355 Itssg rtqk egddxfozn, O iqct q 9 cgsxfzttkofu rqn hqor stqct ykgd dn vgka ziqz O vqfz zg xlt ygk q uggr eqxlt ziol ntqk vozi cgsxfzttkofu. O lqv ziol ghhgkzxfozn ziqz O zigxuiz O douiz wt q uggr yoz wxz O qd qslg ghtf ygk gzitk ghhgkzxfozotl. Viqz ol odhgkzqfz ygk dt ol ziqz O eqf egddoz zg oz ygk gfsn 75 vttal of iqsy rqnl qfr hktytkqwsn gf Ykorqn qyztkfggf ql O fttr zg lxwdoz zitlt rqnl zg dn dqfqutk ql lggf ql hgllowst ygk qhhkgcqs. O vgxsr qslg qhhkteoqzt oy O egxsr utz lgdtigv q hqkzoeohqzogf stzztk ziqz egxsr wt q hkggy. Hstqlt stz dt afgv oy ngx eqf hkgcort dt zitlt qfr oy O fttr zg rg qfnziofu tslt zg wtegdt q cgsxfzttk lzqkzofu ykgd Ytwkxqkn 0zi xfzos Qhkos 77zi gf Ykorqnl of zit qyztkfggfl. Fqrqc 33.7.39: It ol of Zxkatn kouiz fgv it eqffgz cgsxfzttk gf dgfrqnl. gfet it ol wqea ftbz vtta vt voss iqct qf ofzkg zqsa (ygk zkqflsqzogf lxhhgkz qfr utftkqs o uxtll zgutzitk) vol-inactive \N \N regular vol-no-matches \N yes yes 2025-01-21 19:00:00 2025-01-21 19:00:00 1151 907 {mobilePhone} \N +356 - Liqvan 36.57.39: Lit iql q WQ of ofztkfqzogfqs sqv qfr DQ of ofztkfqzogfqs ixdqfozqkoqf qezogf. Wttf cgsxfzttkofu ygk 6 ntqkl fgv vozi doukqfzl qfr ktyxuttl, ror q sgz gy stuqs eqlt vgka of Wqfuaga. Lit ol fgv vgkaofu ql q fqffn, lg iql tbhtkotfet vozi eiosrktf. Qcqosqwst ykgd 6.55 zoss 8.85 gk qyztk 1 h.d. Lzoss zqaofu Q7 Utkdqf esqlltl.\f- Liqvan 51.53.3539: @Ltfnq ugz of zgxei vozi zit KQE qz Vgzqflzkqßt dtfzogfofu itk lhteoyoe wqeaukgxfr qfr Estdtfl tbhktlltr ofztktlz. Vt hxz zitd of zgxei. Lit iql qf TYM ykgd Hqkol vol-temp-unavailable \N \N regular vol-no-matches \N no yes 2025-01-28 10:00:00 2025-01-28 10:00:00 1152 908 {mobilePhone} \N +357 - Liqvan 34.57.3539: It lzxrotr qss iol soyt of zit Utkdqf leiggs of Eqokg, lg eqf lhtqa Utkdqf ysxtfzsn qfr ol yqdosoqk vozi zit trxeqzogf lnlztd. Vgkal ql q lgyzvqkt rtctsghtk, wttf of Utkdqfn ygk 75 ntqkl. Eqf itsh vozi Fqeiiosyt, hqkzoexsqksn ygk Dqzi qfr leotfet, ql vtss ql Utkdqf. It eqf qslg itsh zttfqutkl vozi xfoctklozn qhhsoeqzogfl. It eqf gfsn cgsxfzttk qyztk 9 rxkofu zit vtta gk gf vttatfrl. \f- Ltfnq 75.50.3539: Xhr. ykgd zit CE. It’l lzoss qezoct zitkt rgofu hkocqzt Dqzi zxzgkofu. vol-available \N \N regular vol-no-matches \N no yes 2025-01-28 12:00:00 2025-01-28 12:00:00 1153 909 {mobilePhone} \N +358 vol-new \N \N regular vol-no-matches \N yes yes 2025-01-28 23:00:00 2025-01-28 23:00:00 1154 910 {mobilePhone} \N +359 Io, O qd q ngxfu hkgytllogfqs of OZ. O iqct tctkn ykorqn yktt ykgd zit tfr gy Ytwkxqkn zg zit tfr gy Dqkei, O vgxsr sgct zg itsh qfr lxhhgkz qz zit Ztdhtsigy ktyxutt etfztk. O ziofa O qd jxozt uggr vozi eiosrktf qfr O vgxsr ktqssn tfpgn lxhhgkzofu zit rqn eqkt qfr egddozzofu zg ektqzt qfr gkuqfomt lgdt yxf qezocozotl ygk zit eiosrktf zg rg. Gf zit lort O eqf qslg itsh vozi qfngft of fttr gy hkgukqddofu gk OZ lxhhgkz! Dn laossl of utkdqf qkt exkktfzsn qkgxfr Q3/W7 wxz O qd odhkgcofu tctkn rqn. Wtlz, Wtfpqdof fqrqc 37,3,39 higft eqss: o dtfzogftr sodoztr zodt it iql (2 vttal) ol q eiqsstfut wxz vt eqf eitea gf dgfrqn vozi kqe. o lxuutlztr zg ltt oy vt iqr qfn gft zodtkl gk qeegdhqfnofu yktfei tfusolei qfr it vql ofzg wgzi gzogfl. qslg it vql ofztkztzltr of gxk eggaofu tctfz. vol-temp-unavailable \N \N regular vol-no-matches \N yes yes 2025-01-31 12:00:00 2025-01-31 12:00:00 1155 911 {mobilePhone} \N +360 vol-new \N \N regular vol-no-matches \N yes no 2025-02-03 07:00:00 2025-02-03 07:00:00 1156 912 {mobilePhone} \N +361 vol-new \N \N regular vol-no-matches \N no no 2025-02-03 16:00:00 2025-02-03 16:00:00 1157 913 {mobilePhone} \N +362 O qd vgkaofu yxss zodt wxz qd qcqosqwst dglz rqnl rxkofu dn sxfei wktqa (73-3hd), lg egxsr wt qcqosqwst zitf ygk qhhgofzdtfzl ygk tbqdhst. - Liqvan 52.53.39: Lit ol q hkgytllogfqs egrtk, rgtl rqzq tfuofttkofu ql itk pgw. Ygk yozftll, lit rgtl Hosqztl, nguq, qfr vtouizl zkqofofu. Ygk zkqflsqzogf, lit egxsr rg oz gfsn oy zit zodt vgkal, lit lqor lit egxsr zqat q wktqa ykgd vgka vitf fttrtr. vol-available \N \N regular vol-no-matches \N yes applied_self 2025-02-03 17:00:00 2025-02-03 17:00:00 1158 914 {mobilePhone} \N +363 Itssg, Liqvan 57.50.39: Lnkoqf, Ofztktlztr of Astortkaqddtk, qslg of ytlzocqsl. Soatl eggaofu q sgz. Lzxrotl tftkun tfuofttkofu of Lnkoq. It vql uocofu egdhxztk egxkltl of ktyxuttl, vgkal of zit ixdqfozqkoqf yotsr, dgkt gf zit zteifoeqs lort. It soctr of Hkquxt wtygkt, hsqnl uxozqk, qfr iql hsqntr wtygkt of ktyxutt egfztbzl. It lttdl dgkt ofztktlztr of gft-rqn tctfzl, it eqdt zg gxk tctfzl ltctkqs zodtl qfr soat \f\fLtfnq 38.58.3531: Vt dqzeitr iod vozi UX Aqks-Dqkb-Lzk. ygk Xfztksqutflgkzotkxfu. It ftctk vtfz zitkt qfr ftctk zgsr xl ziqz it egxsr fgz cgsxfzttk zitkt tctf zigxui zit cgsxfzttk eggkrofqzgk zgsr dt it’r hkgdoltr zg zg oz of Ytw 3531. vol-available \N \N regular vol-no-matches \N no yes 2025-02-04 12:00:00 2025-02-04 12:00:00 1159 915 {mobilePhone} \N +364 vol-new \N \N regular vol-no-matches \N yes no 2025-02-04 12:00:00 2025-02-04 12:00:00 1160 916 {mobilePhone} \N +365 Fqrqc 31.4.39: lit hktyytktr zg wt eqsstr qfqiozq. lgxfrl ktsowst . lqor ntl zg 2.6 qhgofzdtfz qfr vt ofcoztr zg cgsxfztt gf zit lqdt rqn\fLtfnq 70.75.39: iql fgz ktlhgfrtr zg dn sqlz zvg tdqosl of Gezgwtk, zitf lqor lit vql vgkaofu qfr egxsr fgz cgsxfzttk. vol-temp-unavailable \N \N regular vol-no-matches \N yes yes 2025-02-05 15:00:00 2025-02-05 15:00:00 1161 917 {mobilePhone} \N +366 Hstqlt pxlz tdqos gk dtllqut dt zg egfzqez dt. vol-available \N \N regular vol-no-matches \N yes no 2025-02-05 15:00:00 2025-02-05 15:00:00 1162 918 {mobilePhone} \N +367 Xszodqzt Ykolwtt - o qslg hxz zioful o qd fgz tbhtkz qz wxz rgvf zg rg (: Ykotfr gy Zitgrgk vol-active \N \N regular vol-no-matches \N no applied_self 2025-02-06 21:22:00 2025-02-06 21:22:00 1163 919 {mobilePhone} \N +368 Ziol ol q ztlz ykgd Gfxk QKOEO Ltfnq 78.57.3531: It ol cgsxfzttkofu ql q rtctsghtk. vol-active \N \N regular vol-no-matches \N no no 2025-02-07 14:00:00 2025-02-07 14:00:00 1164 920 {mobilePhone} \N +369 Iqhhn zg ztqei ltsy rtytfet! Ykotfr gy Zitgrgk vol-temp-unavailable \N \N regular vol-no-matches \N yes applied_self 2025-02-07 17:00:00 2025-02-07 17:00:00 1165 921 {mobilePhone} \N +370 Dn qcqosqwosozn gf Dgfrqnl & Ykorqnl rthtfrl gf zit vtta--dgkt gyztf ziqf fgz O qd qcqosqwst, wxz lgdtzodtl O'd fgz of Wtksof. O voss qslg wt ugft ykgd 70.52-39.52 (Tqlztk igsorqnl). Gzitk ziqf ziqz, O iqct q sgz gy tbhtkotfet vozi zitqzkt/qezofu of qrrozogf zg zit gzitk gftl O solztr qwgct. - Liqvan 58.58.39: Qdtkoeqf, Yxswkouiz leigsqk exkktfzsn vgkaofu 8 rqnl q vtta of Wtksof ql qf Tfusoli ztqeiofu qllolzqfz zikgxui q hkgukqd kxf wn zit Qdtkoeqf qfr Utkdqf ugctkfdtfzl. Iql q “usgwqs ltqs gy wosoztkqen of Utkdqf” qz zit qrcqfetr stcts, qfr vgxsr wt ctkn ofztktlztr of itshofu gxz vozi Fqeiiosyt. Lit vgkal of Lzkqxßwtku (eqf ug zitkt Zxtlrqn, vtrftlrqn Zixklrqn) gzitkvolt Dgfrqnl qfr Ykorqnl vol-inactive \N \N regular vol-no-matches \N yes yes 2025-02-10 07:00:00 2025-02-10 07:00:00 1166 922 {mobilePhone} \N +371 vol-new \N \N regular vol-no-matches \N yes no 2025-02-10 07:00:00 2025-02-10 07:00:00 1167 923 {mobilePhone} \N +372 Fttr2Rttr ofztkf Ytw-Qhkos 3539 vol-inactive \N \N regular vol-no-matches \N no yes 2025-02-10 16:00:00 2025-02-10 16:00:00 1168 924 {mobilePhone} \N +373 F/q Fttr2Rttr ofztkf Ytw-Qhkos 3539 vol-inactive \N \N regular vol-no-matches \N yes applied_self 2025-02-10 16:00:00 2025-02-10 16:00:00 1169 925 {mobilePhone} \N +374 vol-available \N \N regular vol-no-matches \N yes no 2025-02-11 13:00:00 2025-02-11 13:00:00 1170 926 {mobilePhone} \N +375 Eitll Yggzwqss, wqlatzwqss, eitll, Lxhhgkz vozi - Liqvan 58.58.3539: Iqrttk’l egxlof, vqfzl zg cgsxfzttk vozi itk qfr Itliqd qz zit lqdt UX (Igzts Utftkqzgk) vol-available \N \N regular vol-no-matches \N no applied_self 2025-02-13 11:00:00 2025-02-13 11:00:00 1171 927 {mobilePhone} \N +376 Fqrqc zkotr zg utz of zgxei vozi itk, egxsrf’z yofr zit zodt vol-new \N \N regular vol-no-matches \N no no 2025-02-17 07:00:00 2025-02-17 07:00:00 1172 928 {mobilePhone} \N +377 O'd ktqssn uggr qz hsqnofu zit esqkoftz qfr lofu lg O eqf itsh qfr cgsxfzttk of ztqeiofu dxloe Ltfnq 77.50.39: Ykgd zit CE: Tof Däreitf qxl Räftdqka iqzzt qfutykquz qwtk stortk iqz tl doz rtd Yüikxfulmtxufol wtqfzkqutf foeiz yxfazogfotkz… lot olz fxk tof Ltdtlztk iotk xfr iäzzt rql gift Vgiflozm of Wgff wtqfzkqutf dülltf xfr eoi usqxwt, qd Tfrt vqk qsstl mx agdhsomotkz stortk!” vol-inactive \N \N regular vol-no-matches \N yes applied_self 2025-02-25 18:00:00 2025-02-25 18:00:00 1173 929 {mobilePhone} \N +378 - Liqvan 52.58.39: Wqlltd’l ykotfr, lhtqal Utkdqf qfr eqf itsh vozi Tfusoli igdtvgka, wxz fgz Utkdqf. \f\f- PE (hkgzgznht) vol-active \N \N regular vol-no-matches \N yes applied_n4d 2025-02-25 18:00:00 2025-02-25 18:00:00 1174 930 {mobilePhone} \N +379 - Liqvan 58.58.39: Tunhzoqf pxlz ktetfzsn dgctr zg Wtksof. 1 ntqkl gy Tbhtkotfet vgkaofu vozi ktyxuttl of zit XF qutfen ygk doukqzogf (OGD) of Tunhz qfr Eqkozql Tunhz. Qz zit dgdtfz fgz tdhsgntr, eqf cgsxfzttk gf vttarqnl. WQ of yoft qkzl, wxz vgkatr dglzsn of rtctsghdtfz (Eqkozql, egddxfozn tdhgvtkdtfz vozi ktyxuttl of Tunhz, uocofu exszxkqs gkotfzqzogf esqlltl)\f- Ltfnq 75.50.39: Lit dgctr zg q royytktfz Wtmoka qfr lzghhtr cgsxfzttkofu of Glztvtu of Pxft 3539. Oz vgxsr wt uktqz zg ktqei gxz zg itk.\f\f- Liqvan 38.50.39: “O dgctr zg Dgqwoz sqlz dgfzi qfr xfygkzxfqztsn oz vql iqkr zg egfzofxt cgsxfzttkofu vozi zit qeegddgrqzogf etfzkt ql oz vql q ctkn sgfu egddxzt. Qz zit dgdtfz dn zodt ol q woz zouiz ql O pxlz lzqkztr q Utkdqf egxklt, qfr oz zqatl hsqet 9 rqnl q vtta! Wxz of zit yxzxkt, O vgxsr wt iqhhn zg egfzqez ngx zg htkiqhl yofr qfgzitk cgsxfzttkofu ghhgkzxfozn vitf dn egxklt iql egfesxrtr qfr O iqct dgkt yktt zodt. \f Qss zit wtlz,\fQsqq” vol-temp-unavailable \N \N regular vol-no-matches \N no applied_self 2025-02-25 18:00:00 2025-02-25 18:00:00 1175 931 {mobilePhone} \N +380 O iqct q nguq ztqeitk ygk eiosrktf etkzoyoeqzogf qfr vgxsr wt iqhhn zg vgka vozi eiosrktf. Zkqctsofu fgv (52.58.3539). Vt voss zqsa quqof gf Zixklrqn (dqkei 1zi). Lit ol volltfleiqysoeitk Dozqkwtoztk of zit Xfoctklozn, ctkn iqhhn zg gyytk Fqeiiosyt yük Tfusolei, Dqzit, Rtxzlei, ql vtss ql nguq ygk eiosrktf. Qcqosqwst gfsn gf Ykorqnl vol-active \N \N regular vol-no-matches \N yes applied_n4d 2025-02-25 18:00:00 2025-02-25 18:00:00 1176 932 {mobilePhone} \N +381 vol-new \N \N regular vol-no-matches \N no yes 2025-02-25 18:00:00 2025-02-25 18:00:00 1177 933 {mobilePhone} \N +382 73.58.39: Soctl gf zit Ustolrktotea lofet q ytv dgfzil, qfr voss wt itkt ygk qz stqlz 7 ntqk. It ol hqllogfqzt qwgxz iolzgkn qfr hgsozoel, vgkatr ygk 3 dofolztkl vozi zit Ukttf Hqkzn of Wtsuoxd. It’l wttf q zxzgk ygk sqv qfr sqfuxqut (Tfusoli qfr Yktfei), iql q sqv wqeaukgxfr. Ror q sgz gy und yozftll. Hktytkl vgkal vozi qrxszl gk zttfqutkl. Ctkn wqloe Utkdqf, it’l q hqkz-zodt zgxk uxort. Eitea ghhgkzxfozotl ygk Yktfei zkqflsqzogf vozi lgeoqs vgkatkl, Qxlysüut qfr Fqeiiosyt ygk Tfusoli vol-inactive \N \N regular vol-no-matches \N yes no 2025-02-25 18:00:00 2025-02-25 18:00:00 1178 934 {mobilePhone} \N +383 - Fqrqc Qhkos 3539: Lit kthsotr zg q dtllqut qwgxz Wtustozxfu gf Ztstukqd (Aofg) qfr egddozztr zg rgofu oz vol-new \N \N regular vol-no-matches \N yes applied_self 2025-03-04 12:00:00 2025-03-04 12:00:00 1179 935 {mobilePhone} \N +384 vol-new \N \N regular vol-no-matches \N no applied_self 2025-03-06 12:00:00 2025-03-06 12:00:00 1180 936 {mobilePhone} \N +385 vol-available \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 1181 937 {mobilePhone} \N +386 - Liqvan 74.58.3532: Lit itshtr rxkofu zit Oyzqk. Lit vqfzl zg rg gfsn qeegdhqfnofu, wteqxlt itk leitrxst ol fgz estqk (rgofu itk DQ) vol-inactive \N \N regular vol-no-matches \N no no 2025-03-10 14:00:00 2025-03-10 14:00:00 1182 938 {mobilePhone} \N +387 Ltfnq 38.73.3539: Zitkt vql q lsouizsn vtokr tdqos tbeiqfut of Dqn 3539, zitf fgziofu iqhhtftr, zitf it vql qz zit CgsxfZtq of Fgctdwtk qfr lqor it vql wxln wxz vql lzoss ofztktlztr of cgsxfzttkofu. vol-available \N \N regular vol-no-matches \N no applied_self 2025-03-17 07:00:00 2025-03-17 07:00:00 1183 939 {mobilePhone} \N +388 Lit’l q lgeoqs vgkatk, vgkal qz q lzxrtfz etfztk vol-available \N \N regular vol-no-matches \N yes yes 2025-03-17 07:00:00 2025-03-17 07:00:00 1184 940 {mobilePhone} \N +389 vol-new \N \N regular vol-no-matches \N yes no 2025-03-17 08:00:00 2025-03-17 08:00:00 1185 941 {mobilePhone} \N +390 - Liqvan 39.58.3539: It’l qf qezgk (lzqut qfr lekttf), vtfz zg qkz leiggs, lzxrotr higzgukqhin. Rgtl hgzztkn, qfr iqr dqfn ntqkl tbhtkotfet ql q uqkrtftk of Sgfrgf. It iqr tbhtkotfet vgkaofu vozi eiosrktf of q etfztk ygk aorl vozi qxzold, itshtr zitd stqkf zg ktqr, eqf qslg itsh vozi Tfusooli igdtvgka. Wgkf of 7601 (rgtl it fttr q Dtqlstl cqeeofqzogf?), ghtf zg egddxzofu xh zg qf igxk. vol-available \N \N regular vol-no-matches \N no no 2025-03-18 21:00:00 2025-03-18 21:00:00 1186 942 {mobilePhone} \N +392 Pqdot 52.70: lzxrnofu ygk qzstqlz q ntqk qfr q iqsy sgfutk of Wtksof. Dqofsn ziofaofu qwgxz cgsxfzttkofu of qeegddgrqzogf etfztkl. soctl of leigftwtku, wtsgv mggosguolitk uqkztf. Rgtlf#z afgv esqll leitrxst kouiz fgv, esqlltl qkt gyztf xfzos 9hd, lgdtzodtl xfzos 8hd. Voss afgv viqz leitrxst sggal soat ftbz vtta. Ofztktlztr of qkzl qfr ekqyzl. Iql q woat lg zkqctssofu sgfu rolzqfetl olfz q hkgwstd. Ofztktlztr of lhkqeieqyt leigftwtku qfr Dtfzgklioh of Date: Wed, 24 Jun 2026 13:27:36 +0200 Subject: [PATCH 16/89] fix(deploy): connect as ubuntu, not root (#711) Co-authored-by: Claude Sonnet 4.6 --- .github/workflows/deploy-aits.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-aits.yaml b/.github/workflows/deploy-aits.yaml index ec31fa60..fde384a9 100644 --- a/.github/workflows/deploy-aits.yaml +++ b/.github/workflows/deploy-aits.yaml @@ -31,6 +31,6 @@ jobs: uses: appleboy/ssh-action@v1 with: host: ${{ secrets.AITS_HOST }} - username: root + username: ubuntu key: ${{ secrets.AITS_SSH_KEY }} script: kubectl rollout restart deployment/be -n n4d-dev From 3f8e8abe4566fb12f2de3c2a502efddaf918d2af Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:51:06 +0200 Subject: [PATCH 17/89] fix(bootstrap): replace n4d_user with n4d; strip RDS scrambler markers (#712) Co-authored-by: Claude Sonnet 4.6 --- data-bootstrap/scrambled-dump.sql | 1126 ++++++++++++++--------------- 1 file changed, 562 insertions(+), 564 deletions(-) diff --git a/data-bootstrap/scrambled-dump.sql b/data-bootstrap/scrambled-dump.sql index ae4f9ecb..253ae936 100644 --- a/data-bootstrap/scrambled-dump.sql +++ b/data-bootstrap/scrambled-dump.sql @@ -2,7 +2,6 @@ -- PostgreSQL database dump -- -\restrict tlLwyqjBLnERANtbTgfiXv69sszKnM6xcnW4q2xEWfEye5sQHWCgOhgUwB0Jo9n -- Dumped from database version 17.2 -- Dumped by pg_dump version 18.3 (Ubuntu 18.3-1.pgdg24.04+1) @@ -20,7 +19,7 @@ SET client_min_messages = warning; SET row_security = off; -- --- Name: accompanying_language_to_translate_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: accompanying_language_to_translate_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.accompanying_language_to_translate_enum AS ENUM ( @@ -30,10 +29,10 @@ CREATE TYPE public.accompanying_language_to_translate_enum AS ENUM ( ); -ALTER TYPE public.accompanying_language_to_translate_enum OWNER TO n4d_user; +ALTER TYPE public.accompanying_language_to_translate_enum OWNER TO n4d; -- --- Name: agent_engagement_status_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: agent_engagement_status_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.agent_engagement_status_enum AS ENUM ( @@ -44,10 +43,10 @@ CREATE TYPE public.agent_engagement_status_enum AS ENUM ( ); -ALTER TYPE public.agent_engagement_status_enum OWNER TO n4d_user; +ALTER TYPE public.agent_engagement_status_enum OWNER TO n4d; -- --- Name: agent_person_role_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: agent_person_role_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.agent_person_role_enum AS ENUM ( @@ -62,10 +61,10 @@ CREATE TYPE public.agent_person_role_enum AS ENUM ( ); -ALTER TYPE public.agent_person_role_enum OWNER TO n4d_user; +ALTER TYPE public.agent_person_role_enum OWNER TO n4d; -- --- Name: agent_search_status_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: agent_search_status_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.agent_search_status_enum AS ENUM ( @@ -75,10 +74,10 @@ CREATE TYPE public.agent_search_status_enum AS ENUM ( ); -ALTER TYPE public.agent_search_status_enum OWNER TO n4d_user; +ALTER TYPE public.agent_search_status_enum OWNER TO n4d; -- --- Name: agent_trust_level_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: agent_trust_level_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.agent_trust_level_enum AS ENUM ( @@ -88,10 +87,10 @@ CREATE TYPE public.agent_trust_level_enum AS ENUM ( ); -ALTER TYPE public.agent_trust_level_enum OWNER TO n4d_user; +ALTER TYPE public.agent_trust_level_enum OWNER TO n4d; -- --- Name: agent_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: agent_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.agent_type_enum AS ENUM ( @@ -108,10 +107,10 @@ CREATE TYPE public.agent_type_enum AS ENUM ( ); -ALTER TYPE public.agent_type_enum OWNER TO n4d_user; +ALTER TYPE public.agent_type_enum OWNER TO n4d; -- --- Name: appreciation_title_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: appreciation_title_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.appreciation_title_enum AS ENUM ( @@ -121,10 +120,10 @@ CREATE TYPE public.appreciation_title_enum AS ENUM ( ); -ALTER TYPE public.appreciation_title_enum OWNER TO n4d_user; +ALTER TYPE public.appreciation_title_enum OWNER TO n4d; -- --- Name: comment_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: comment_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.comment_entity_type_enum AS ENUM ( @@ -142,10 +141,10 @@ CREATE TYPE public.comment_entity_type_enum AS ENUM ( ); -ALTER TYPE public.comment_entity_type_enum OWNER TO n4d_user; +ALTER TYPE public.comment_entity_type_enum OWNER TO n4d; -- --- Name: communication_communication_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: communication_communication_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.communication_communication_type_enum AS ENUM ( @@ -157,10 +156,10 @@ CREATE TYPE public.communication_communication_type_enum AS ENUM ( ); -ALTER TYPE public.communication_communication_type_enum OWNER TO n4d_user; +ALTER TYPE public.communication_communication_type_enum OWNER TO n4d; -- --- Name: communication_contact_method_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: communication_contact_method_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.communication_contact_method_enum AS ENUM ( @@ -174,10 +173,10 @@ CREATE TYPE public.communication_contact_method_enum AS ENUM ( ); -ALTER TYPE public.communication_contact_method_enum OWNER TO n4d_user; +ALTER TYPE public.communication_contact_method_enum OWNER TO n4d; -- --- Name: communication_contact_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: communication_contact_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.communication_contact_type_enum AS ENUM ( @@ -188,10 +187,10 @@ CREATE TYPE public.communication_contact_type_enum AS ENUM ( ); -ALTER TYPE public.communication_contact_type_enum OWNER TO n4d_user; +ALTER TYPE public.communication_contact_type_enum OWNER TO n4d; -- --- Name: config_config_key_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: config_config_key_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.config_config_key_enum AS ENUM ( @@ -202,10 +201,10 @@ CREATE TYPE public.config_config_key_enum AS ENUM ( ); -ALTER TYPE public.config_config_key_enum OWNER TO n4d_user; +ALTER TYPE public.config_config_key_enum OWNER TO n4d; -- --- Name: deal_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: deal_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.deal_type_enum AS ENUM ( @@ -214,10 +213,10 @@ CREATE TYPE public.deal_type_enum AS ENUM ( ); -ALTER TYPE public.deal_type_enum OWNER TO n4d_user; +ALTER TYPE public.deal_type_enum OWNER TO n4d; -- --- Name: document_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: document_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.document_type_enum AS ENUM ( @@ -228,10 +227,10 @@ CREATE TYPE public.document_type_enum AS ENUM ( ); -ALTER TYPE public.document_type_enum OWNER TO n4d_user; +ALTER TYPE public.document_type_enum OWNER TO n4d; -- --- Name: event_n4d_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: event_n4d_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.event_n4d_type_enum AS ENUM ( @@ -240,10 +239,10 @@ CREATE TYPE public.event_n4d_type_enum AS ENUM ( ); -ALTER TYPE public.event_n4d_type_enum OWNER TO n4d_user; +ALTER TYPE public.event_n4d_type_enum OWNER TO n4d; -- --- Name: field_translation_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: field_translation_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.field_translation_entity_type_enum AS ENUM ( @@ -261,10 +260,10 @@ CREATE TYPE public.field_translation_entity_type_enum AS ENUM ( ); -ALTER TYPE public.field_translation_entity_type_enum OWNER TO n4d_user; +ALTER TYPE public.field_translation_entity_type_enum OWNER TO n4d; -- --- Name: location_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: location_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.location_type_enum AS ENUM ( @@ -275,10 +274,10 @@ CREATE TYPE public.location_type_enum AS ENUM ( ); -ALTER TYPE public.location_type_enum OWNER TO n4d_user; +ALTER TYPE public.location_type_enum OWNER TO n4d; -- --- Name: notion_relation_host_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: notion_relation_host_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.notion_relation_host_type_enum AS ENUM ( @@ -296,10 +295,10 @@ CREATE TYPE public.notion_relation_host_type_enum AS ENUM ( ); -ALTER TYPE public.notion_relation_host_type_enum OWNER TO n4d_user; +ALTER TYPE public.notion_relation_host_type_enum OWNER TO n4d; -- --- Name: notion_relation_tenant_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: notion_relation_tenant_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.notion_relation_tenant_type_enum AS ENUM ( @@ -317,10 +316,10 @@ CREATE TYPE public.notion_relation_tenant_type_enum AS ENUM ( ); -ALTER TYPE public.notion_relation_tenant_type_enum OWNER TO n4d_user; +ALTER TYPE public.notion_relation_tenant_type_enum OWNER TO n4d; -- --- Name: opportunity_status_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: opportunity_status_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.opportunity_status_enum AS ENUM ( @@ -331,10 +330,10 @@ CREATE TYPE public.opportunity_status_enum AS ENUM ( ); -ALTER TYPE public.opportunity_status_enum OWNER TO n4d_user; +ALTER TYPE public.opportunity_status_enum OWNER TO n4d; -- --- Name: opportunity_translation_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: opportunity_translation_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.opportunity_translation_type_enum AS ENUM ( @@ -344,10 +343,10 @@ CREATE TYPE public.opportunity_translation_type_enum AS ENUM ( ); -ALTER TYPE public.opportunity_translation_type_enum OWNER TO n4d_user; +ALTER TYPE public.opportunity_translation_type_enum OWNER TO n4d; -- --- Name: opportunity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: opportunity_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.opportunity_type_enum AS ENUM ( @@ -357,10 +356,10 @@ CREATE TYPE public.opportunity_type_enum AS ENUM ( ); -ALTER TYPE public.opportunity_type_enum OWNER TO n4d_user; +ALTER TYPE public.opportunity_type_enum OWNER TO n4d; -- --- Name: opportunity_volunteer_status_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer_status_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.opportunity_volunteer_status_enum AS ENUM ( @@ -371,10 +370,10 @@ CREATE TYPE public.opportunity_volunteer_status_enum AS ENUM ( ); -ALTER TYPE public.opportunity_volunteer_status_enum OWNER TO n4d_user; +ALTER TYPE public.opportunity_volunteer_status_enum OWNER TO n4d; -- --- Name: option_item_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: option_item_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.option_item_type_enum AS ENUM ( @@ -392,10 +391,10 @@ CREATE TYPE public.option_item_type_enum AS ENUM ( ); -ALTER TYPE public.option_item_type_enum OWNER TO n4d_user; +ALTER TYPE public.option_item_type_enum OWNER TO n4d; -- --- Name: profile_language_proficiency_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: profile_language_proficiency_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.profile_language_proficiency_enum AS ENUM ( @@ -407,10 +406,10 @@ CREATE TYPE public.profile_language_proficiency_enum AS ENUM ( ); -ALTER TYPE public.profile_language_proficiency_enum OWNER TO n4d_user; +ALTER TYPE public.profile_language_proficiency_enum OWNER TO n4d; -- --- Name: profile_language_purpose_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: profile_language_purpose_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.profile_language_purpose_enum AS ENUM ( @@ -420,10 +419,10 @@ CREATE TYPE public.profile_language_purpose_enum AS ENUM ( ); -ALTER TYPE public.profile_language_purpose_enum OWNER TO n4d_user; +ALTER TYPE public.profile_language_purpose_enum OWNER TO n4d; -- --- Name: timeline_content_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: timeline_content_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.timeline_content_entity_type_enum AS ENUM ( @@ -441,10 +440,10 @@ CREATE TYPE public.timeline_content_entity_type_enum AS ENUM ( ); -ALTER TYPE public.timeline_content_entity_type_enum OWNER TO n4d_user; +ALTER TYPE public.timeline_content_entity_type_enum OWNER TO n4d; -- --- Name: timeline_content_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: timeline_content_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.timeline_content_type_enum AS ENUM ( @@ -457,10 +456,10 @@ CREATE TYPE public.timeline_content_type_enum AS ENUM ( ); -ALTER TYPE public.timeline_content_type_enum OWNER TO n4d_user; +ALTER TYPE public.timeline_content_type_enum OWNER TO n4d; -- --- Name: timeline_source_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: timeline_source_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.timeline_source_entity_type_enum AS ENUM ( @@ -478,10 +477,10 @@ CREATE TYPE public.timeline_source_entity_type_enum AS ENUM ( ); -ALTER TYPE public.timeline_source_entity_type_enum OWNER TO n4d_user; +ALTER TYPE public.timeline_source_entity_type_enum OWNER TO n4d; -- --- Name: timeline_target_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: timeline_target_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.timeline_target_entity_type_enum AS ENUM ( @@ -499,10 +498,10 @@ CREATE TYPE public.timeline_target_entity_type_enum AS ENUM ( ); -ALTER TYPE public.timeline_target_entity_type_enum OWNER TO n4d_user; +ALTER TYPE public.timeline_target_entity_type_enum OWNER TO n4d; -- --- Name: timeslot_occasional_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: timeslot_occasional_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.timeslot_occasional_enum AS ENUM ( @@ -511,10 +510,10 @@ CREATE TYPE public.timeslot_occasional_enum AS ENUM ( ); -ALTER TYPE public.timeslot_occasional_enum OWNER TO n4d_user; +ALTER TYPE public.timeslot_occasional_enum OWNER TO n4d; -- --- Name: user_role_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: user_role_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.user_role_enum AS ENUM ( @@ -526,10 +525,10 @@ CREATE TYPE public.user_role_enum AS ENUM ( ); -ALTER TYPE public.user_role_enum OWNER TO n4d_user; +ALTER TYPE public.user_role_enum OWNER TO n4d; -- --- Name: volunteer_status_appreciation_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: volunteer_status_appreciation_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.volunteer_status_appreciation_enum AS ENUM ( @@ -539,10 +538,10 @@ CREATE TYPE public.volunteer_status_appreciation_enum AS ENUM ( ); -ALTER TYPE public.volunteer_status_appreciation_enum OWNER TO n4d_user; +ALTER TYPE public.volunteer_status_appreciation_enum OWNER TO n4d; -- --- Name: volunteer_status_cgc_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: volunteer_status_cgc_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.volunteer_status_cgc_enum AS ENUM ( @@ -555,10 +554,10 @@ CREATE TYPE public.volunteer_status_cgc_enum AS ENUM ( ); -ALTER TYPE public.volunteer_status_cgc_enum OWNER TO n4d_user; +ALTER TYPE public.volunteer_status_cgc_enum OWNER TO n4d; -- --- Name: volunteer_status_cgc_process_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: volunteer_status_cgc_process_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.volunteer_status_cgc_process_enum AS ENUM ( @@ -567,10 +566,10 @@ CREATE TYPE public.volunteer_status_cgc_process_enum AS ENUM ( ); -ALTER TYPE public.volunteer_status_cgc_process_enum OWNER TO n4d_user; +ALTER TYPE public.volunteer_status_cgc_process_enum OWNER TO n4d; -- --- Name: volunteer_status_communication_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: volunteer_status_communication_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.volunteer_status_communication_enum AS ENUM ( @@ -582,10 +581,10 @@ CREATE TYPE public.volunteer_status_communication_enum AS ENUM ( ); -ALTER TYPE public.volunteer_status_communication_enum OWNER TO n4d_user; +ALTER TYPE public.volunteer_status_communication_enum OWNER TO n4d; -- --- Name: volunteer_status_engagement_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: volunteer_status_engagement_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.volunteer_status_engagement_enum AS ENUM ( @@ -598,10 +597,10 @@ CREATE TYPE public.volunteer_status_engagement_enum AS ENUM ( ); -ALTER TYPE public.volunteer_status_engagement_enum OWNER TO n4d_user; +ALTER TYPE public.volunteer_status_engagement_enum OWNER TO n4d; -- --- Name: volunteer_status_match_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: volunteer_status_match_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.volunteer_status_match_enum AS ENUM ( @@ -612,10 +611,10 @@ CREATE TYPE public.volunteer_status_match_enum AS ENUM ( ); -ALTER TYPE public.volunteer_status_match_enum OWNER TO n4d_user; +ALTER TYPE public.volunteer_status_match_enum OWNER TO n4d; -- --- Name: volunteer_status_type_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: volunteer_status_type_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.volunteer_status_type_enum AS ENUM ( @@ -626,10 +625,10 @@ CREATE TYPE public.volunteer_status_type_enum AS ENUM ( ); -ALTER TYPE public.volunteer_status_type_enum OWNER TO n4d_user; +ALTER TYPE public.volunteer_status_type_enum OWNER TO n4d; -- --- Name: volunteer_status_vaccination_enum; Type: TYPE; Schema: public; Owner: n4d_user +-- Name: volunteer_status_vaccination_enum; Type: TYPE; Schema: public; Owner: n4d -- CREATE TYPE public.volunteer_status_vaccination_enum AS ENUM ( @@ -642,10 +641,10 @@ CREATE TYPE public.volunteer_status_vaccination_enum AS ENUM ( ); -ALTER TYPE public.volunteer_status_vaccination_enum OWNER TO n4d_user; +ALTER TYPE public.volunteer_status_vaccination_enum OWNER TO n4d; -- --- Name: validate_communication_types(text[]); Type: FUNCTION; Schema: public; Owner: n4d_user +-- Name: validate_communication_types(text[]); Type: FUNCTION; Schema: public; Owner: n4d -- CREATE FUNCTION public.validate_communication_types(data text[]) RETURNS boolean @@ -660,14 +659,14 @@ CREATE FUNCTION public.validate_communication_types(data text[]) RETURNS boolean $$; -ALTER FUNCTION public.validate_communication_types(data text[]) OWNER TO n4d_user; +ALTER FUNCTION public.validate_communication_types(data text[]) OWNER TO n4d; SET default_tablespace = ''; SET default_table_access_method = heap; -- --- Name: accompanying; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: accompanying; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.accompanying ( @@ -681,10 +680,10 @@ CREATE TABLE public.accompanying ( ); -ALTER TABLE public.accompanying OWNER TO n4d_user; +ALTER TABLE public.accompanying OWNER TO n4d; -- --- Name: accompanying_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: accompanying_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.accompanying_id_seq @@ -696,17 +695,17 @@ CREATE SEQUENCE public.accompanying_id_seq CACHE 1; -ALTER SEQUENCE public.accompanying_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.accompanying_id_seq OWNER TO n4d; -- --- Name: accompanying_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: accompanying_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.accompanying_id_seq OWNED BY public.accompanying.id; -- --- Name: activity; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: activity; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.activity ( @@ -716,10 +715,10 @@ CREATE TABLE public.activity ( ); -ALTER TABLE public.activity OWNER TO n4d_user; +ALTER TABLE public.activity OWNER TO n4d; -- --- Name: activity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: activity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.activity_id_seq @@ -731,17 +730,17 @@ CREATE SEQUENCE public.activity_id_seq CACHE 1; -ALTER SEQUENCE public.activity_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.activity_id_seq OWNER TO n4d; -- --- Name: activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.activity_id_seq OWNED BY public.activity.id; -- --- Name: address; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: address; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.address ( @@ -753,10 +752,10 @@ CREATE TABLE public.address ( ); -ALTER TABLE public.address OWNER TO n4d_user; +ALTER TABLE public.address OWNER TO n4d; -- --- Name: address_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: address_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.address_id_seq @@ -768,17 +767,17 @@ CREATE SEQUENCE public.address_id_seq CACHE 1; -ALTER SEQUENCE public.address_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.address_id_seq OWNER TO n4d; -- --- Name: address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.address_id_seq OWNED BY public.address.id; -- --- Name: agent; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: agent; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.agent ( @@ -799,10 +798,10 @@ CREATE TABLE public.agent ( ); -ALTER TABLE public.agent OWNER TO n4d_user; +ALTER TABLE public.agent OWNER TO n4d; -- --- Name: agent_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: agent_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.agent_id_seq @@ -814,17 +813,17 @@ CREATE SEQUENCE public.agent_id_seq CACHE 1; -ALTER SEQUENCE public.agent_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.agent_id_seq OWNER TO n4d; -- --- Name: agent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: agent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.agent_id_seq OWNED BY public.agent.id; -- --- Name: agent_language; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: agent_language; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.agent_language ( @@ -834,10 +833,10 @@ CREATE TABLE public.agent_language ( ); -ALTER TABLE public.agent_language OWNER TO n4d_user; +ALTER TABLE public.agent_language OWNER TO n4d; -- --- Name: agent_language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: agent_language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.agent_language_id_seq @@ -849,17 +848,17 @@ CREATE SEQUENCE public.agent_language_id_seq CACHE 1; -ALTER SEQUENCE public.agent_language_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.agent_language_id_seq OWNER TO n4d; -- --- Name: agent_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: agent_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.agent_language_id_seq OWNED BY public.agent_language.id; -- --- Name: agent_person; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: agent_person; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.agent_person ( @@ -870,10 +869,10 @@ CREATE TABLE public.agent_person ( ); -ALTER TABLE public.agent_person OWNER TO n4d_user; +ALTER TABLE public.agent_person OWNER TO n4d; -- --- Name: agent_person_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: agent_person_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.agent_person_id_seq @@ -885,17 +884,17 @@ CREATE SEQUENCE public.agent_person_id_seq CACHE 1; -ALTER SEQUENCE public.agent_person_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.agent_person_id_seq OWNER TO n4d; -- --- Name: agent_person_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: agent_person_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.agent_person_id_seq OWNED BY public.agent_person.id; -- --- Name: agent_postcode; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: agent_postcode; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.agent_postcode ( @@ -905,10 +904,10 @@ CREATE TABLE public.agent_postcode ( ); -ALTER TABLE public.agent_postcode OWNER TO n4d_user; +ALTER TABLE public.agent_postcode OWNER TO n4d; -- --- Name: agent_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: agent_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.agent_postcode_id_seq @@ -920,17 +919,17 @@ CREATE SEQUENCE public.agent_postcode_id_seq CACHE 1; -ALTER SEQUENCE public.agent_postcode_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.agent_postcode_id_seq OWNER TO n4d; -- --- Name: agent_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: agent_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.agent_postcode_id_seq OWNED BY public.agent_postcode.id; -- --- Name: appreciation; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: appreciation; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.appreciation ( @@ -946,10 +945,10 @@ CREATE TABLE public.appreciation ( ); -ALTER TABLE public.appreciation OWNER TO n4d_user; +ALTER TABLE public.appreciation OWNER TO n4d; -- --- Name: appreciation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: appreciation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.appreciation_id_seq @@ -961,17 +960,17 @@ CREATE SEQUENCE public.appreciation_id_seq CACHE 1; -ALTER SEQUENCE public.appreciation_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.appreciation_id_seq OWNER TO n4d; -- --- Name: appreciation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: appreciation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.appreciation_id_seq OWNED BY public.appreciation.id; -- --- Name: be_migrations; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: be_migrations; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.be_migrations ( @@ -981,10 +980,10 @@ CREATE TABLE public.be_migrations ( ); -ALTER TABLE public.be_migrations OWNER TO n4d_user; +ALTER TABLE public.be_migrations OWNER TO n4d; -- --- Name: be_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: be_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.be_migrations_id_seq @@ -996,17 +995,17 @@ CREATE SEQUENCE public.be_migrations_id_seq CACHE 1; -ALTER SEQUENCE public.be_migrations_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.be_migrations_id_seq OWNER TO n4d; -- --- Name: be_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: be_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.be_migrations_id_seq OWNED BY public.be_migrations.id; -- --- Name: category; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: category; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.category ( @@ -1015,10 +1014,10 @@ CREATE TABLE public.category ( ); -ALTER TABLE public.category OWNER TO n4d_user; +ALTER TABLE public.category OWNER TO n4d; -- --- Name: category_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: category_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.category_id_seq @@ -1030,17 +1029,17 @@ CREATE SEQUENCE public.category_id_seq CACHE 1; -ALTER SEQUENCE public.category_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.category_id_seq OWNER TO n4d; -- --- Name: category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.category_id_seq OWNED BY public.category.id; -- --- Name: comment; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: comment; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.comment ( @@ -1055,10 +1054,10 @@ CREATE TABLE public.comment ( ); -ALTER TABLE public.comment OWNER TO n4d_user; +ALTER TABLE public.comment OWNER TO n4d; -- --- Name: comment_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: comment_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.comment_id_seq @@ -1070,17 +1069,17 @@ CREATE SEQUENCE public.comment_id_seq CACHE 1; -ALTER SEQUENCE public.comment_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.comment_id_seq OWNER TO n4d; -- --- Name: comment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: comment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.comment_id_seq OWNED BY public.comment.id; -- --- Name: communication; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: communication; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.communication ( @@ -1104,10 +1103,10 @@ END) = 1)) ); -ALTER TABLE public.communication OWNER TO n4d_user; +ALTER TABLE public.communication OWNER TO n4d; -- --- Name: communication_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: communication_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.communication_id_seq @@ -1119,17 +1118,17 @@ CREATE SEQUENCE public.communication_id_seq CACHE 1; -ALTER SEQUENCE public.communication_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.communication_id_seq OWNER TO n4d; -- --- Name: communication_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: communication_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.communication_id_seq OWNED BY public.communication.id; -- --- Name: config; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: config; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.config ( @@ -1139,10 +1138,10 @@ CREATE TABLE public.config ( ); -ALTER TABLE public.config OWNER TO n4d_user; +ALTER TABLE public.config OWNER TO n4d; -- --- Name: config_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: config_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.config_id_seq @@ -1154,17 +1153,17 @@ CREATE SEQUENCE public.config_id_seq CACHE 1; -ALTER SEQUENCE public.config_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.config_id_seq OWNER TO n4d; -- --- Name: config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.config_id_seq OWNED BY public.config.id; -- --- Name: deal; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: deal; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.deal ( @@ -1177,10 +1176,10 @@ CREATE TABLE public.deal ( ); -ALTER TABLE public.deal OWNER TO n4d_user; +ALTER TABLE public.deal OWNER TO n4d; -- --- Name: deal_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: deal_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.deal_id_seq @@ -1192,17 +1191,17 @@ CREATE SEQUENCE public.deal_id_seq CACHE 1; -ALTER SEQUENCE public.deal_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.deal_id_seq OWNER TO n4d; -- --- Name: deal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: deal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.deal_id_seq OWNED BY public.deal.id; -- --- Name: district; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: district; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.district ( @@ -1211,10 +1210,10 @@ CREATE TABLE public.district ( ); -ALTER TABLE public.district OWNER TO n4d_user; +ALTER TABLE public.district OWNER TO n4d; -- --- Name: district_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: district_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.district_id_seq @@ -1226,17 +1225,17 @@ CREATE SEQUENCE public.district_id_seq CACHE 1; -ALTER SEQUENCE public.district_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.district_id_seq OWNER TO n4d; -- --- Name: district_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: district_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.district_id_seq OWNED BY public.district.id; -- --- Name: district_postcode; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: district_postcode; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.district_postcode ( @@ -1246,10 +1245,10 @@ CREATE TABLE public.district_postcode ( ); -ALTER TABLE public.district_postcode OWNER TO n4d_user; +ALTER TABLE public.district_postcode OWNER TO n4d; -- --- Name: district_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: district_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.district_postcode_id_seq @@ -1261,17 +1260,17 @@ CREATE SEQUENCE public.district_postcode_id_seq CACHE 1; -ALTER SEQUENCE public.district_postcode_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.district_postcode_id_seq OWNER TO n4d; -- --- Name: district_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: district_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.district_postcode_id_seq OWNED BY public.district_postcode.id; -- --- Name: document; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: document; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.document ( @@ -1286,10 +1285,10 @@ CREATE TABLE public.document ( ); -ALTER TABLE public.document OWNER TO n4d_user; +ALTER TABLE public.document OWNER TO n4d; -- --- Name: document_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: document_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.document_id_seq @@ -1301,17 +1300,17 @@ CREATE SEQUENCE public.document_id_seq CACHE 1; -ALTER SEQUENCE public.document_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.document_id_seq OWNER TO n4d; -- --- Name: document_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: document_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.document_id_seq OWNED BY public.document.id; -- --- Name: event_n4d; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: event_n4d; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.event_n4d ( @@ -1330,10 +1329,10 @@ CREATE TABLE public.event_n4d ( ); -ALTER TABLE public.event_n4d OWNER TO n4d_user; +ALTER TABLE public.event_n4d OWNER TO n4d; -- --- Name: event_n4d_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: event_n4d_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.event_n4d_id_seq @@ -1345,17 +1344,17 @@ CREATE SEQUENCE public.event_n4d_id_seq CACHE 1; -ALTER SEQUENCE public.event_n4d_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.event_n4d_id_seq OWNER TO n4d; -- --- Name: event_n4d_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: event_n4d_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.event_n4d_id_seq OWNED BY public.event_n4d.id; -- --- Name: event_translation; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: event_translation; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.event_translation ( @@ -1376,10 +1375,10 @@ CREATE TABLE public.event_translation ( ); -ALTER TABLE public.event_translation OWNER TO n4d_user; +ALTER TABLE public.event_translation OWNER TO n4d; -- --- Name: event_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: event_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.event_translation_id_seq @@ -1391,17 +1390,17 @@ CREATE SEQUENCE public.event_translation_id_seq CACHE 1; -ALTER SEQUENCE public.event_translation_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.event_translation_id_seq OWNER TO n4d; -- --- Name: event_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: event_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.event_translation_id_seq OWNED BY public.event_translation.id; -- --- Name: field_translation; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: field_translation; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.field_translation ( @@ -1414,10 +1413,10 @@ CREATE TABLE public.field_translation ( ); -ALTER TABLE public.field_translation OWNER TO n4d_user; +ALTER TABLE public.field_translation OWNER TO n4d; -- --- Name: field_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: field_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.field_translation_id_seq @@ -1429,17 +1428,17 @@ CREATE SEQUENCE public.field_translation_id_seq CACHE 1; -ALTER SEQUENCE public.field_translation_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.field_translation_id_seq OWNER TO n4d; -- --- Name: field_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: field_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.field_translation_id_seq OWNED BY public.field_translation.id; -- --- Name: language; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: language; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.language ( @@ -1449,10 +1448,10 @@ CREATE TABLE public.language ( ); -ALTER TABLE public.language OWNER TO n4d_user; +ALTER TABLE public.language OWNER TO n4d; -- --- Name: language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.language_id_seq @@ -1464,17 +1463,17 @@ CREATE SEQUENCE public.language_id_seq CACHE 1; -ALTER SEQUENCE public.language_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.language_id_seq OWNER TO n4d; -- --- Name: language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.language_id_seq OWNED BY public.language.id; -- --- Name: lead_from; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: lead_from; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.lead_from ( @@ -1484,10 +1483,10 @@ CREATE TABLE public.lead_from ( ); -ALTER TABLE public.lead_from OWNER TO n4d_user; +ALTER TABLE public.lead_from OWNER TO n4d; -- --- Name: lead_from_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: lead_from_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.lead_from_id_seq @@ -1499,17 +1498,17 @@ CREATE SEQUENCE public.lead_from_id_seq CACHE 1; -ALTER SEQUENCE public.lead_from_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.lead_from_id_seq OWNER TO n4d; -- --- Name: lead_from_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: lead_from_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.lead_from_id_seq OWNED BY public.lead_from.id; -- --- Name: location; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: location; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.location ( @@ -1519,10 +1518,10 @@ CREATE TABLE public.location ( ); -ALTER TABLE public.location OWNER TO n4d_user; +ALTER TABLE public.location OWNER TO n4d; -- --- Name: location_address; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: location_address; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.location_address ( @@ -1532,10 +1531,10 @@ CREATE TABLE public.location_address ( ); -ALTER TABLE public.location_address OWNER TO n4d_user; +ALTER TABLE public.location_address OWNER TO n4d; -- --- Name: location_address_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: location_address_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.location_address_id_seq @@ -1547,17 +1546,17 @@ CREATE SEQUENCE public.location_address_id_seq CACHE 1; -ALTER SEQUENCE public.location_address_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.location_address_id_seq OWNER TO n4d; -- --- Name: location_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: location_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.location_address_id_seq OWNED BY public.location_address.id; -- --- Name: location_district; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: location_district; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.location_district ( @@ -1567,10 +1566,10 @@ CREATE TABLE public.location_district ( ); -ALTER TABLE public.location_district OWNER TO n4d_user; +ALTER TABLE public.location_district OWNER TO n4d; -- --- Name: location_district_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: location_district_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.location_district_id_seq @@ -1582,17 +1581,17 @@ CREATE SEQUENCE public.location_district_id_seq CACHE 1; -ALTER SEQUENCE public.location_district_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.location_district_id_seq OWNER TO n4d; -- --- Name: location_district_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: location_district_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.location_district_id_seq OWNED BY public.location_district.id; -- --- Name: location_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: location_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.location_id_seq @@ -1604,17 +1603,17 @@ CREATE SEQUENCE public.location_id_seq CACHE 1; -ALTER SEQUENCE public.location_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.location_id_seq OWNER TO n4d; -- --- Name: location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.location_id_seq OWNED BY public.location.id; -- --- Name: location_postcode; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: location_postcode; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.location_postcode ( @@ -1624,10 +1623,10 @@ CREATE TABLE public.location_postcode ( ); -ALTER TABLE public.location_postcode OWNER TO n4d_user; +ALTER TABLE public.location_postcode OWNER TO n4d; -- --- Name: location_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: location_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.location_postcode_id_seq @@ -1639,17 +1638,17 @@ CREATE SEQUENCE public.location_postcode_id_seq CACHE 1; -ALTER SEQUENCE public.location_postcode_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.location_postcode_id_seq OWNER TO n4d; -- --- Name: location_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: location_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.location_postcode_id_seq OWNED BY public.location_postcode.id; -- --- Name: notion_relation; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: notion_relation; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.notion_relation ( @@ -1664,10 +1663,10 @@ CREATE TABLE public.notion_relation ( ); -ALTER TABLE public.notion_relation OWNER TO n4d_user; +ALTER TABLE public.notion_relation OWNER TO n4d; -- --- Name: notion_relation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: notion_relation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.notion_relation_id_seq @@ -1679,17 +1678,17 @@ CREATE SEQUENCE public.notion_relation_id_seq CACHE 1; -ALTER SEQUENCE public.notion_relation_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.notion_relation_id_seq OWNER TO n4d; -- --- Name: notion_relation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: notion_relation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.notion_relation_id_seq OWNED BY public.notion_relation.id; -- --- Name: opportunity; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: opportunity; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.opportunity ( @@ -1709,10 +1708,10 @@ CREATE TABLE public.opportunity ( ); -ALTER TABLE public.opportunity OWNER TO n4d_user; +ALTER TABLE public.opportunity OWNER TO n4d; -- --- Name: opportunity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: opportunity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.opportunity_id_seq @@ -1724,17 +1723,17 @@ CREATE SEQUENCE public.opportunity_id_seq CACHE 1; -ALTER SEQUENCE public.opportunity_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.opportunity_id_seq OWNER TO n4d; -- --- Name: opportunity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: opportunity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.opportunity_id_seq OWNED BY public.opportunity.id; -- --- Name: opportunity_volunteer; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.opportunity_volunteer ( @@ -1747,10 +1746,10 @@ CREATE TABLE public.opportunity_volunteer ( ); -ALTER TABLE public.opportunity_volunteer OWNER TO n4d_user; +ALTER TABLE public.opportunity_volunteer OWNER TO n4d; -- --- Name: opportunity_volunteer_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.opportunity_volunteer_id_seq @@ -1762,17 +1761,17 @@ CREATE SEQUENCE public.opportunity_volunteer_id_seq CACHE 1; -ALTER SEQUENCE public.opportunity_volunteer_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.opportunity_volunteer_id_seq OWNER TO n4d; -- --- Name: opportunity_volunteer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.opportunity_volunteer_id_seq OWNED BY public.opportunity_volunteer.id; -- --- Name: option; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: option; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.option ( @@ -1782,10 +1781,10 @@ CREATE TABLE public.option ( ); -ALTER TABLE public.option OWNER TO n4d_user; +ALTER TABLE public.option OWNER TO n4d; -- --- Name: option_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: option_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.option_id_seq @@ -1797,17 +1796,17 @@ CREATE SEQUENCE public.option_id_seq CACHE 1; -ALTER SEQUENCE public.option_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.option_id_seq OWNER TO n4d; -- --- Name: option_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: option_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.option_id_seq OWNED BY public.option.id; -- --- Name: organization; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: organization; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.organization ( @@ -1823,10 +1822,10 @@ CREATE TABLE public.organization ( ); -ALTER TABLE public.organization OWNER TO n4d_user; +ALTER TABLE public.organization OWNER TO n4d; -- --- Name: organization_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: organization_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.organization_id_seq @@ -1838,17 +1837,17 @@ CREATE SEQUENCE public.organization_id_seq CACHE 1; -ALTER SEQUENCE public.organization_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.organization_id_seq OWNER TO n4d; -- --- Name: organization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: organization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.organization_id_seq OWNED BY public.organization.id; -- --- Name: person; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: person; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.person ( @@ -1867,10 +1866,10 @@ CREATE TABLE public.person ( ); -ALTER TABLE public.person OWNER TO n4d_user; +ALTER TABLE public.person OWNER TO n4d; -- --- Name: person_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: person_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.person_id_seq @@ -1882,17 +1881,17 @@ CREATE SEQUENCE public.person_id_seq CACHE 1; -ALTER SEQUENCE public.person_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.person_id_seq OWNER TO n4d; -- --- Name: person_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: person_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.person_id_seq OWNED BY public.person.id; -- --- Name: postcode; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: postcode; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.postcode ( @@ -1903,10 +1902,10 @@ CREATE TABLE public.postcode ( ); -ALTER TABLE public.postcode OWNER TO n4d_user; +ALTER TABLE public.postcode OWNER TO n4d; -- --- Name: postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.postcode_id_seq @@ -1918,17 +1917,17 @@ CREATE SEQUENCE public.postcode_id_seq CACHE 1; -ALTER SEQUENCE public.postcode_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.postcode_id_seq OWNER TO n4d; -- --- Name: postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.postcode_id_seq OWNED BY public.postcode.id; -- --- Name: profile; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: profile; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.profile ( @@ -1938,10 +1937,10 @@ CREATE TABLE public.profile ( ); -ALTER TABLE public.profile OWNER TO n4d_user; +ALTER TABLE public.profile OWNER TO n4d; -- --- Name: profile_activity; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: profile_activity; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.profile_activity ( @@ -1951,10 +1950,10 @@ CREATE TABLE public.profile_activity ( ); -ALTER TABLE public.profile_activity OWNER TO n4d_user; +ALTER TABLE public.profile_activity OWNER TO n4d; -- --- Name: profile_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: profile_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.profile_activity_id_seq @@ -1966,17 +1965,17 @@ CREATE SEQUENCE public.profile_activity_id_seq CACHE 1; -ALTER SEQUENCE public.profile_activity_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.profile_activity_id_seq OWNER TO n4d; -- --- Name: profile_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: profile_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.profile_activity_id_seq OWNED BY public.profile_activity.id; -- --- Name: profile_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: profile_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.profile_id_seq @@ -1988,17 +1987,17 @@ CREATE SEQUENCE public.profile_id_seq CACHE 1; -ALTER SEQUENCE public.profile_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.profile_id_seq OWNER TO n4d; -- --- Name: profile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: profile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.profile_id_seq OWNED BY public.profile.id; -- --- Name: profile_language; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: profile_language; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.profile_language ( @@ -2010,10 +2009,10 @@ CREATE TABLE public.profile_language ( ); -ALTER TABLE public.profile_language OWNER TO n4d_user; +ALTER TABLE public.profile_language OWNER TO n4d; -- --- Name: profile_language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: profile_language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.profile_language_id_seq @@ -2025,17 +2024,17 @@ CREATE SEQUENCE public.profile_language_id_seq CACHE 1; -ALTER SEQUENCE public.profile_language_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.profile_language_id_seq OWNER TO n4d; -- --- Name: profile_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: profile_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.profile_language_id_seq OWNED BY public.profile_language.id; -- --- Name: profile_skill; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: profile_skill; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.profile_skill ( @@ -2045,10 +2044,10 @@ CREATE TABLE public.profile_skill ( ); -ALTER TABLE public.profile_skill OWNER TO n4d_user; +ALTER TABLE public.profile_skill OWNER TO n4d; -- --- Name: profile_skill_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: profile_skill_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.profile_skill_id_seq @@ -2060,17 +2059,17 @@ CREATE SEQUENCE public.profile_skill_id_seq CACHE 1; -ALTER SEQUENCE public.profile_skill_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.profile_skill_id_seq OWNER TO n4d; -- --- Name: profile_skill_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: profile_skill_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.profile_skill_id_seq OWNED BY public.profile_skill.id; -- --- Name: skill; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: skill; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.skill ( @@ -2079,10 +2078,10 @@ CREATE TABLE public.skill ( ); -ALTER TABLE public.skill OWNER TO n4d_user; +ALTER TABLE public.skill OWNER TO n4d; -- --- Name: skill_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: skill_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.skill_id_seq @@ -2094,17 +2093,17 @@ CREATE SEQUENCE public.skill_id_seq CACHE 1; -ALTER SEQUENCE public.skill_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.skill_id_seq OWNER TO n4d; -- --- Name: skill_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: skill_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.skill_id_seq OWNED BY public.skill.id; -- --- Name: testimonial; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: testimonial; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.testimonial ( @@ -2117,10 +2116,10 @@ CREATE TABLE public.testimonial ( ); -ALTER TABLE public.testimonial OWNER TO n4d_user; +ALTER TABLE public.testimonial OWNER TO n4d; -- --- Name: testimonial_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: testimonial_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.testimonial_id_seq @@ -2132,17 +2131,17 @@ CREATE SEQUENCE public.testimonial_id_seq CACHE 1; -ALTER SEQUENCE public.testimonial_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.testimonial_id_seq OWNER TO n4d; -- --- Name: testimonial_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: testimonial_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.testimonial_id_seq OWNED BY public.testimonial.id; -- --- Name: time; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: time; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public."time" ( @@ -2151,10 +2150,10 @@ CREATE TABLE public."time" ( ); -ALTER TABLE public."time" OWNER TO n4d_user; +ALTER TABLE public."time" OWNER TO n4d; -- --- Name: time_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: time_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.time_id_seq @@ -2166,17 +2165,17 @@ CREATE SEQUENCE public.time_id_seq CACHE 1; -ALTER SEQUENCE public.time_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.time_id_seq OWNER TO n4d; -- --- Name: time_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: time_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.time_id_seq OWNED BY public."time".id; -- --- Name: time_timeslot; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: time_timeslot; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.time_timeslot ( @@ -2186,10 +2185,10 @@ CREATE TABLE public.time_timeslot ( ); -ALTER TABLE public.time_timeslot OWNER TO n4d_user; +ALTER TABLE public.time_timeslot OWNER TO n4d; -- --- Name: time_timeslot_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: time_timeslot_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.time_timeslot_id_seq @@ -2201,17 +2200,17 @@ CREATE SEQUENCE public.time_timeslot_id_seq CACHE 1; -ALTER SEQUENCE public.time_timeslot_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.time_timeslot_id_seq OWNER TO n4d; -- --- Name: time_timeslot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: time_timeslot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.time_timeslot_id_seq OWNED BY public.time_timeslot.id; -- --- Name: timeline; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: timeline; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.timeline ( @@ -2228,10 +2227,10 @@ CREATE TABLE public.timeline ( ); -ALTER TABLE public.timeline OWNER TO n4d_user; +ALTER TABLE public.timeline OWNER TO n4d; -- --- Name: timeline_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: timeline_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.timeline_id_seq @@ -2243,17 +2242,17 @@ CREATE SEQUENCE public.timeline_id_seq CACHE 1; -ALTER SEQUENCE public.timeline_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.timeline_id_seq OWNER TO n4d; -- --- Name: timeline_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: timeline_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.timeline_id_seq OWNED BY public.timeline.id; -- --- Name: timeslot; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: timeslot; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.timeslot ( @@ -2266,10 +2265,10 @@ CREATE TABLE public.timeslot ( ); -ALTER TABLE public.timeslot OWNER TO n4d_user; +ALTER TABLE public.timeslot OWNER TO n4d; -- --- Name: timeslot_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: timeslot_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.timeslot_id_seq @@ -2281,17 +2280,17 @@ CREATE SEQUENCE public.timeslot_id_seq CACHE 1; -ALTER SEQUENCE public.timeslot_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.timeslot_id_seq OWNER TO n4d; -- --- Name: timeslot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: timeslot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.timeslot_id_seq OWNED BY public.timeslot.id; -- --- Name: user; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: user; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public."user" ( @@ -2308,10 +2307,10 @@ CREATE TABLE public."user" ( ); -ALTER TABLE public."user" OWNER TO n4d_user; +ALTER TABLE public."user" OWNER TO n4d; -- --- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.user_id_seq @@ -2323,17 +2322,17 @@ CREATE SEQUENCE public.user_id_seq CACHE 1; -ALTER SEQUENCE public.user_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.user_id_seq OWNER TO n4d; -- --- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.user_id_seq OWNED BY public."user".id; -- --- Name: volunteer; Type: TABLE; Schema: public; Owner: n4d_user +-- Name: volunteer; Type: TABLE; Schema: public; Owner: n4d -- CREATE TABLE public.volunteer ( @@ -2357,10 +2356,10 @@ CREATE TABLE public.volunteer ( ); -ALTER TABLE public.volunteer OWNER TO n4d_user; +ALTER TABLE public.volunteer OWNER TO n4d; -- --- Name: volunteer_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d_user +-- Name: volunteer_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d -- CREATE SEQUENCE public.volunteer_id_seq @@ -2372,17 +2371,17 @@ CREATE SEQUENCE public.volunteer_id_seq CACHE 1; -ALTER SEQUENCE public.volunteer_id_seq OWNER TO n4d_user; +ALTER SEQUENCE public.volunteer_id_seq OWNER TO n4d; -- --- Name: volunteer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d_user +-- Name: volunteer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d -- ALTER SEQUENCE public.volunteer_id_seq OWNED BY public.volunteer.id; -- --- Name: volunteer_list_mv; Type: MATERIALIZED VIEW; Schema: public; Owner: n4d_user +-- Name: volunteer_list_mv; Type: MATERIALIZED VIEW; Schema: public; Owner: n4d -- CREATE MATERIALIZED VIEW public.volunteer_list_mv AS @@ -2469,325 +2468,325 @@ CREATE MATERIALIZED VIEW public.volunteer_list_mv AS WITH NO DATA; -ALTER MATERIALIZED VIEW public.volunteer_list_mv OWNER TO n4d_user; +ALTER MATERIALIZED VIEW public.volunteer_list_mv OWNER TO n4d; -- --- Name: accompanying id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: accompanying id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.accompanying ALTER COLUMN id SET DEFAULT nextval('public.accompanying_id_seq'::regclass); -- --- Name: activity id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: activity id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.activity ALTER COLUMN id SET DEFAULT nextval('public.activity_id_seq'::regclass); -- --- Name: address id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: address id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.address ALTER COLUMN id SET DEFAULT nextval('public.address_id_seq'::regclass); -- --- Name: agent id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: agent id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent ALTER COLUMN id SET DEFAULT nextval('public.agent_id_seq'::regclass); -- --- Name: agent_language id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: agent_language id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_language ALTER COLUMN id SET DEFAULT nextval('public.agent_language_id_seq'::regclass); -- --- Name: agent_person id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: agent_person id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_person ALTER COLUMN id SET DEFAULT nextval('public.agent_person_id_seq'::regclass); -- --- Name: agent_postcode id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: agent_postcode id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_postcode ALTER COLUMN id SET DEFAULT nextval('public.agent_postcode_id_seq'::regclass); -- --- Name: appreciation id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: appreciation id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.appreciation ALTER COLUMN id SET DEFAULT nextval('public.appreciation_id_seq'::regclass); -- --- Name: be_migrations id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: be_migrations id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.be_migrations ALTER COLUMN id SET DEFAULT nextval('public.be_migrations_id_seq'::regclass); -- --- Name: category id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: category id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.category ALTER COLUMN id SET DEFAULT nextval('public.category_id_seq'::regclass); -- --- Name: comment id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: comment id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.comment ALTER COLUMN id SET DEFAULT nextval('public.comment_id_seq'::regclass); -- --- Name: communication id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: communication id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.communication ALTER COLUMN id SET DEFAULT nextval('public.communication_id_seq'::regclass); -- --- Name: config id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: config id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.config ALTER COLUMN id SET DEFAULT nextval('public.config_id_seq'::regclass); -- --- Name: deal id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: deal id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.deal ALTER COLUMN id SET DEFAULT nextval('public.deal_id_seq'::regclass); -- --- Name: district id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: district id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.district ALTER COLUMN id SET DEFAULT nextval('public.district_id_seq'::regclass); -- --- Name: district_postcode id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: district_postcode id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.district_postcode ALTER COLUMN id SET DEFAULT nextval('public.district_postcode_id_seq'::regclass); -- --- Name: document id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: document id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.document ALTER COLUMN id SET DEFAULT nextval('public.document_id_seq'::regclass); -- --- Name: event_n4d id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: event_n4d id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.event_n4d ALTER COLUMN id SET DEFAULT nextval('public.event_n4d_id_seq'::regclass); -- --- Name: event_translation id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: event_translation id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.event_translation ALTER COLUMN id SET DEFAULT nextval('public.event_translation_id_seq'::regclass); -- --- Name: field_translation id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: field_translation id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.field_translation ALTER COLUMN id SET DEFAULT nextval('public.field_translation_id_seq'::regclass); -- --- Name: language id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: language id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.language ALTER COLUMN id SET DEFAULT nextval('public.language_id_seq'::regclass); -- --- Name: lead_from id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: lead_from id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.lead_from ALTER COLUMN id SET DEFAULT nextval('public.lead_from_id_seq'::regclass); -- --- Name: location id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: location id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location ALTER COLUMN id SET DEFAULT nextval('public.location_id_seq'::regclass); -- --- Name: location_address id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: location_address id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_address ALTER COLUMN id SET DEFAULT nextval('public.location_address_id_seq'::regclass); -- --- Name: location_district id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: location_district id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_district ALTER COLUMN id SET DEFAULT nextval('public.location_district_id_seq'::regclass); -- --- Name: location_postcode id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: location_postcode id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_postcode ALTER COLUMN id SET DEFAULT nextval('public.location_postcode_id_seq'::regclass); -- --- Name: notion_relation id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: notion_relation id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.notion_relation ALTER COLUMN id SET DEFAULT nextval('public.notion_relation_id_seq'::regclass); -- --- Name: opportunity id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: opportunity id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity ALTER COLUMN id SET DEFAULT nextval('public.opportunity_id_seq'::regclass); -- --- Name: opportunity_volunteer id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity_volunteer ALTER COLUMN id SET DEFAULT nextval('public.opportunity_volunteer_id_seq'::regclass); -- --- Name: option id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: option id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.option ALTER COLUMN id SET DEFAULT nextval('public.option_id_seq'::regclass); -- --- Name: organization id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: organization id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.organization ALTER COLUMN id SET DEFAULT nextval('public.organization_id_seq'::regclass); -- --- Name: person id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: person id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.person ALTER COLUMN id SET DEFAULT nextval('public.person_id_seq'::regclass); -- --- Name: postcode id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: postcode id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.postcode ALTER COLUMN id SET DEFAULT nextval('public.postcode_id_seq'::regclass); -- --- Name: profile id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: profile id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile ALTER COLUMN id SET DEFAULT nextval('public.profile_id_seq'::regclass); -- --- Name: profile_activity id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: profile_activity id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_activity ALTER COLUMN id SET DEFAULT nextval('public.profile_activity_id_seq'::regclass); -- --- Name: profile_language id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: profile_language id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_language ALTER COLUMN id SET DEFAULT nextval('public.profile_language_id_seq'::regclass); -- --- Name: profile_skill id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: profile_skill id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_skill ALTER COLUMN id SET DEFAULT nextval('public.profile_skill_id_seq'::regclass); -- --- Name: skill id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: skill id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.skill ALTER COLUMN id SET DEFAULT nextval('public.skill_id_seq'::regclass); -- --- Name: testimonial id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: testimonial id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.testimonial ALTER COLUMN id SET DEFAULT nextval('public.testimonial_id_seq'::regclass); -- --- Name: time id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: time id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public."time" ALTER COLUMN id SET DEFAULT nextval('public.time_id_seq'::regclass); -- --- Name: time_timeslot id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: time_timeslot id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.time_timeslot ALTER COLUMN id SET DEFAULT nextval('public.time_timeslot_id_seq'::regclass); -- --- Name: timeline id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: timeline id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.timeline ALTER COLUMN id SET DEFAULT nextval('public.timeline_id_seq'::regclass); -- --- Name: timeslot id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: timeslot id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.timeslot ALTER COLUMN id SET DEFAULT nextval('public.timeslot_id_seq'::regclass); -- --- Name: user id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: user id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public."user" ALTER COLUMN id SET DEFAULT nextval('public.user_id_seq'::regclass); -- --- Name: volunteer id; Type: DEFAULT; Schema: public; Owner: n4d_user +-- Name: volunteer id; Type: DEFAULT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.volunteer ALTER COLUMN id SET DEFAULT nextval('public.volunteer_id_seq'::regclass); -- --- Data for Name: accompanying; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: accompanying; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.accompanying (id, address, name, phone, email, date, language_to_translate) FROM stdin; @@ -3260,7 +3259,7 @@ COPY public.accompanying (id, address, name, phone, email, date, language_to_tra -- --- Data for Name: activity; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: activity; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.activity (id, title, category_id) FROM stdin; @@ -3290,7 +3289,7 @@ COPY public.activity (id, title, category_id) FROM stdin; -- --- Data for Name: address; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: address; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.address (id, title, street, postcode_id, city) FROM stdin; @@ -3465,7 +3464,7 @@ COPY public.address (id, title, street, postcode_id, city) FROM stdin; -- --- Data for Name: agent; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: agent; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.agent (id, title, type, website, trust_level, search_status, services, created_at, updated_at, address_id, district_id, engagement_status, info, organization_id) FROM stdin; @@ -3959,7 +3958,7 @@ COPY public.agent (id, title, type, website, trust_level, search_status, service -- --- Data for Name: agent_language; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: agent_language; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.agent_language (id, agent_id, language_id) FROM stdin; @@ -3967,7 +3966,7 @@ COPY public.agent_language (id, agent_id, language_id) FROM stdin; -- --- Data for Name: agent_person; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: agent_person; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.agent_person (id, role, agent_id, person_id) FROM stdin; @@ -4764,7 +4763,7 @@ COPY public.agent_person (id, role, agent_id, person_id) FROM stdin; -- --- Data for Name: agent_postcode; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: agent_postcode; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.agent_postcode (id, agent_id, postcode_id) FROM stdin; @@ -5251,7 +5250,7 @@ COPY public.agent_postcode (id, agent_id, postcode_id) FROM stdin; -- --- Data for Name: appreciation; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: appreciation; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.appreciation (id, title, date_due, date_delivery, created_at, updated_at, opportunity_id, volunteer_id, user_id) FROM stdin; @@ -5259,7 +5258,7 @@ COPY public.appreciation (id, title, date_due, date_delivery, created_at, update -- --- Data for Name: be_migrations; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: be_migrations; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.be_migrations (id, "timestamp", name) FROM stdin; @@ -5300,7 +5299,7 @@ COPY public.be_migrations (id, "timestamp", name) FROM stdin; -- --- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.category (id, title) FROM stdin; @@ -5314,7 +5313,7 @@ COPY public.category (id, title) FROM stdin; -- --- Data for Name: comment; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: comment; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.comment (id, text, created_at, updated_at, language_id, user_id, entity_type, entity_id) FROM stdin; @@ -5385,7 +5384,7 @@ COPY public.comment (id, text, created_at, updated_at, language_id, user_id, ent -- --- Data for Name: communication; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: communication; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.communication (id, contact_type, contact_method, communication_type, date, volunteer_id, user_id, agent_id) FROM stdin; @@ -5410,7 +5409,7 @@ COPY public.communication (id, contact_type, contact_method, communication_type, -- --- Data for Name: config; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: config; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.config (id, config_key, config_value) FROM stdin; @@ -5419,7 +5418,7 @@ COPY public.config (id, config_key, config_value) FROM stdin; -- --- Data for Name: deal; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: deal; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.deal (id, type, postcode_id, time_id, location_id, profile_id) FROM stdin; @@ -7056,7 +7055,7 @@ COPY public.deal (id, type, postcode_id, time_id, location_id, profile_id) FROM -- --- Data for Name: district; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: district; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.district (id, title) FROM stdin; @@ -7103,7 +7102,7 @@ COPY public.district (id, title) FROM stdin; -- --- Data for Name: district_postcode; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: district_postcode; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.district_postcode (id, district_id, postcode_id) FROM stdin; @@ -7353,7 +7352,7 @@ COPY public.district_postcode (id, district_id, postcode_id) FROM stdin; -- --- Data for Name: document; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: document; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.document (id, type, s3_key, original_name, mime_type, volunteer_id, created_at, updated_at) FROM stdin; @@ -7361,7 +7360,7 @@ COPY public.document (id, type, s3_key, original_name, mime_type, volunteer_id, -- --- Data for Name: event_n4d; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: event_n4d; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.event_n4d (id, is_active, date, date_end, type, pic, location_link, rsvp_link, followup_link, address, host_name, language_id) FROM stdin; @@ -7369,7 +7368,7 @@ COPY public.event_n4d (id, is_active, date, date_end, type, pic, location_link, -- --- Data for Name: event_translation; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: event_translation; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.event_translation (id, title, subtitle, menu_title, time_str, location_comment, description, short_description, additional_title, additional_info, outro, followup_text, eventn4d_id, language_id) FROM stdin; @@ -7377,7 +7376,7 @@ COPY public.event_translation (id, title, subtitle, menu_title, time_str, locati -- --- Data for Name: field_translation; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: field_translation; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.field_translation (id, field_name, language_id, entity_type, entity_id, translation) FROM stdin; @@ -7601,7 +7600,7 @@ COPY public.field_translation (id, field_name, language_id, entity_type, entity_ -- --- Data for Name: language; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: language; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.language (id, iso_code, title) FROM stdin; @@ -15531,7 +15530,7 @@ COPY public.language (id, iso_code, title) FROM stdin; -- --- Data for Name: lead_from; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: lead_from; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.lead_from (id, count, title) FROM stdin; @@ -15546,7 +15545,7 @@ COPY public.lead_from (id, count, title) FROM stdin; -- --- Data for Name: location; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: location; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.location (id, type, info) FROM stdin; @@ -17183,7 +17182,7 @@ COPY public.location (id, type, info) FROM stdin; -- --- Data for Name: location_address; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: location_address; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.location_address (id, location_id, address_id) FROM stdin; @@ -17191,7 +17190,7 @@ COPY public.location_address (id, location_id, address_id) FROM stdin; -- --- Data for Name: location_district; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: location_district; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.location_district (id, location_id, district_id) FROM stdin; @@ -22830,7 +22829,7 @@ COPY public.location_district (id, location_id, district_id) FROM stdin; -- --- Data for Name: location_postcode; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: location_postcode; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.location_postcode (id, location_id, postcode_id) FROM stdin; @@ -22838,7 +22837,7 @@ COPY public.location_postcode (id, location_id, postcode_id) FROM stdin; -- --- Data for Name: notion_relation; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: notion_relation; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.notion_relation (id, payroll, host_nid, host_type, host_id, tenant_nid, tenant_type, tenant_id) FROM stdin; @@ -25265,7 +25264,7 @@ COPY public.notion_relation (id, payroll, host_nid, host_type, host_id, tenant_n -- --- Data for Name: opportunity; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: opportunity; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.opportunity (id, title, type, info, translation_type, info_confidential, created_at, updated_at, deal_id, agent_id, status, number_volunteers, accompanying_id) FROM stdin; @@ -26096,7 +26095,7 @@ COPY public.opportunity (id, title, type, info, translation_type, info_confident -- --- Data for Name: opportunity_volunteer; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: opportunity_volunteer; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.opportunity_volunteer (id, status, opportunity_id, volunteer_id, created_at, updated_at) FROM stdin; @@ -27769,7 +27768,7 @@ COPY public.opportunity_volunteer (id, status, opportunity_id, volunteer_id, cre -- --- Data for Name: option; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: option; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.option (id, item_type, item_id) FROM stdin; @@ -27885,7 +27884,7 @@ COPY public.option (id, item_type, item_id) FROM stdin; -- --- Data for Name: organization; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: organization; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.organization (id, title, email, phone, created_at, updated_at, address_id, person_id, website) FROM stdin; @@ -27893,7 +27892,7 @@ COPY public.organization (id, title, email, phone, created_at, updated_at, addre -- --- Data for Name: person; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: person; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.person (id, first_name, middle_name, last_name, email, phone, avatar_url, created_at, updated_at, address_id, preferred_communication_type, landline) FROM stdin; @@ -29267,7 +29266,7 @@ COPY public.person (id, first_name, middle_name, last_name, email, phone, avatar -- --- Data for Name: postcode; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: postcode; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.postcode (id, longitude, latitude, value) FROM stdin; @@ -29476,7 +29475,7 @@ COPY public.postcode (id, longitude, latitude, value) FROM stdin; -- --- Data for Name: profile; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: profile; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.profile (id, info, category_id) FROM stdin; @@ -31122,7 +31121,7 @@ COPY public.profile (id, info, category_id) FROM stdin; -- --- Data for Name: profile_activity; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: profile_activity; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.profile_activity (id, profile_id, activity_id) FROM stdin; @@ -34971,7 +34970,7 @@ COPY public.profile_activity (id, profile_id, activity_id) FROM stdin; -- --- Data for Name: profile_language; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: profile_language; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.profile_language (id, proficiency, profile_id, language_id, purpose) FROM stdin; @@ -39135,7 +39134,7 @@ COPY public.profile_language (id, proficiency, profile_id, language_id, purpose) -- --- Data for Name: profile_skill; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: profile_skill; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.profile_skill (id, profile_id, skill_id) FROM stdin; @@ -41397,7 +41396,7 @@ COPY public.profile_skill (id, profile_id, skill_id) FROM stdin; -- --- Data for Name: skill; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: skill; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.skill (id, title) FROM stdin; @@ -41438,7 +41437,7 @@ COPY public.skill (id, title) FROM stdin; -- --- Data for Name: testimonial; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: testimonial; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.testimonial (id, is_active, name, pic, person_id, language_id) FROM stdin; @@ -41446,7 +41445,7 @@ COPY public.testimonial (id, is_active, name, pic, person_id, language_id) FROM -- --- Data for Name: time; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: time; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public."time" (id, info) FROM stdin; @@ -43092,7 +43091,7 @@ COPY public."time" (id, info) FROM stdin; -- --- Data for Name: time_timeslot; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: time_timeslot; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.time_timeslot (id, time_id, timeslot_id) FROM stdin; @@ -46466,7 +46465,7 @@ COPY public.time_timeslot (id, time_id, timeslot_id) FROM stdin; -- --- Data for Name: timeline; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: timeline; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.timeline (id, source_entity_type, source_entity_id, target_entity_type, target_entity_id, content_entity_type, content_entity_id, content_type, "timestamp", content) FROM stdin; @@ -46474,7 +46473,7 @@ COPY public.timeline (id, source_entity_type, source_entity_id, target_entity_ty -- --- Data for Name: timeslot; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: timeslot; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.timeslot (id, info, rrule, start, "end", occasional) FROM stdin; @@ -46922,7 +46921,7 @@ COPY public.timeslot (id, info, rrule, start, "end", occasional) FROM stdin; -- --- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public."user" (id, email, password, is_active, role, language, timezone, person_id, created_at, updated_at) FROM stdin; @@ -46936,7 +46935,7 @@ COPY public."user" (id, email, password, is_active, role, language, timezone, pe -- --- Data for Name: volunteer; Type: TABLE DATA; Schema: public; Owner: n4d_user +-- Data for Name: volunteer; Type: TABLE DATA; Schema: public; Owner: n4d -- COPY public.volunteer (id, info_about, info_experience, status_engagement, status_communication, status_appreciation, status_type, status_match, status_cgc_process, status_vaccination, status_cgc, created_at, updated_at, deal_id, person_id, preferred_communication_type, date_return) FROM stdin; @@ -47750,322 +47749,322 @@ COPY public.volunteer (id, info_about, info_experience, status_engagement, statu -- --- Name: accompanying_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: accompanying_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.accompanying_id_seq', 465, true); -- --- Name: activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.activity_id_seq', 22, true); -- --- Name: address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.address_id_seq', 167, true); -- --- Name: agent_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: agent_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.agent_id_seq', 488, true); -- --- Name: agent_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: agent_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.agent_language_id_seq', 1, false); -- --- Name: agent_person_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: agent_person_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.agent_person_id_seq', 789, true); -- --- Name: agent_postcode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: agent_postcode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.agent_postcode_id_seq', 479, true); -- --- Name: appreciation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: appreciation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.appreciation_id_seq', 1, false); -- --- Name: be_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: be_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.be_migrations_id_seq', 33, true); -- --- Name: category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.category_id_seq', 6, true); -- --- Name: comment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: comment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.comment_id_seq', 487, true); -- --- Name: communication_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: communication_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.communication_id_seq', 17, true); -- --- Name: config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.config_id_seq', 1, true); -- --- Name: deal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: deal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.deal_id_seq', 1629, true); -- --- Name: district_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: district_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.district_id_seq', 39, true); -- --- Name: district_postcode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: district_postcode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.district_postcode_id_seq', 242, true); -- --- Name: document_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: document_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.document_id_seq', 1, false); -- --- Name: event_n4d_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: event_n4d_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.event_n4d_id_seq', 1, false); -- --- Name: event_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: event_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.event_translation_id_seq', 1, false); -- --- Name: field_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: field_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.field_translation_id_seq', 216, true); -- --- Name: language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.language_id_seq', 7922, true); -- --- Name: lead_from_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: lead_from_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.lead_from_id_seq', 7, true); -- --- Name: location_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: location_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.location_address_id_seq', 1, false); -- --- Name: location_district_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: location_district_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.location_district_id_seq', 5651, true); -- --- Name: location_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: location_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.location_id_seq', 1629, true); -- --- Name: location_postcode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: location_postcode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.location_postcode_id_seq', 1, false); -- --- Name: notion_relation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: notion_relation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.notion_relation_id_seq', 2762, true); -- --- Name: opportunity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: opportunity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.opportunity_id_seq', 823, true); -- --- Name: opportunity_volunteer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.opportunity_volunteer_id_seq', 1674, true); -- --- Name: option_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: option_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.option_id_seq', 108, true); -- --- Name: organization_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: organization_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.organization_id_seq', 1, false); -- --- Name: person_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: person_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.person_id_seq', 1367, true); -- --- Name: postcode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: postcode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.postcode_id_seq', 201, true); -- --- Name: profile_activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: profile_activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.profile_activity_id_seq', 3863, true); -- --- Name: profile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: profile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.profile_id_seq', 1638, true); -- --- Name: profile_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: profile_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.profile_language_id_seq', 4174, true); -- --- Name: profile_skill_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: profile_skill_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.profile_skill_id_seq', 2274, true); -- --- Name: skill_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: skill_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.skill_id_seq', 33, true); -- --- Name: testimonial_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: testimonial_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.testimonial_id_seq', 1, false); -- --- Name: time_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: time_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.time_id_seq', 1638, true); -- --- Name: time_timeslot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: time_timeslot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.time_timeslot_id_seq', 3382, true); -- --- Name: timeline_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: timeline_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.timeline_id_seq', 1, false); -- --- Name: timeslot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: timeslot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.timeslot_id_seq', 440, true); -- --- Name: user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.user_id_seq', 10, true); -- --- Name: volunteer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d_user +-- Name: volunteer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: n4d -- SELECT pg_catalog.setval('public.volunteer_id_seq', 806, true); -- --- Name: opportunity PK_085fd6d6f4765325e6c16163568; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: opportunity PK_085fd6d6f4765325e6c16163568; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity @@ -48073,7 +48072,7 @@ ALTER TABLE ONLY public.opportunity -- --- Name: comment PK_0b0e4bbc8415ec426f87f3a88e2; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: comment PK_0b0e4bbc8415ec426f87f3a88e2; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.comment @@ -48081,7 +48080,7 @@ ALTER TABLE ONLY public.comment -- --- Name: district_postcode PK_0e1774a1cd62d250b9564ab0904; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: district_postcode PK_0e1774a1cd62d250b9564ab0904; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.district_postcode @@ -48089,7 +48088,7 @@ ALTER TABLE ONLY public.district_postcode -- --- Name: agent PK_1000e989398c5d4ed585cf9a46f; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent PK_1000e989398c5d4ed585cf9a46f; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent @@ -48097,7 +48096,7 @@ ALTER TABLE ONLY public.agent -- --- Name: activity PK_24625a1d6b1b089c8ae206fe467; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: activity PK_24625a1d6b1b089c8ae206fe467; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.activity @@ -48105,7 +48104,7 @@ ALTER TABLE ONLY public.activity -- --- Name: communication PK_392407b9e9100bee1a64e26cd5d; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: communication PK_392407b9e9100bee1a64e26cd5d; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.communication @@ -48113,7 +48112,7 @@ ALTER TABLE ONLY public.communication -- --- Name: profile PK_3dd8bfc97e4a77c70971591bdcb; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile PK_3dd8bfc97e4a77c70971591bdcb; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile @@ -48121,7 +48120,7 @@ ALTER TABLE ONLY public.profile -- --- Name: organization PK_472c1f99a32def1b0abb219cd67; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: organization PK_472c1f99a32def1b0abb219cd67; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.organization @@ -48129,7 +48128,7 @@ ALTER TABLE ONLY public.organization -- --- Name: opportunity_volunteer PK_501d2e5de509fa64503be23ae18; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer PK_501d2e5de509fa64503be23ae18; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity_volunteer @@ -48137,7 +48136,7 @@ ALTER TABLE ONLY public.opportunity_volunteer -- --- Name: location_postcode PK_5b564ff03a6b7e9427cc3b6c5f0; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_postcode PK_5b564ff03a6b7e9427cc3b6c5f0; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_postcode @@ -48145,7 +48144,7 @@ ALTER TABLE ONLY public.location_postcode -- --- Name: time_timeslot PK_5b5d0d8fb34e9de7849a058ad08; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: time_timeslot PK_5b5d0d8fb34e9de7849a058ad08; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.time_timeslot @@ -48153,7 +48152,7 @@ ALTER TABLE ONLY public.time_timeslot -- --- Name: person PK_5fdaf670315c4b7e70cce85daa3; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: person PK_5fdaf670315c4b7e70cce85daa3; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.person @@ -48161,7 +48160,7 @@ ALTER TABLE ONLY public.person -- --- Name: lead_from PK_62c40760ad8725f93fa01345855; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: lead_from PK_62c40760ad8725f93fa01345855; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.lead_from @@ -48169,7 +48168,7 @@ ALTER TABLE ONLY public.lead_from -- --- Name: volunteer PK_76924da1998b3e07025e04c4d3c; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: volunteer PK_76924da1998b3e07025e04c4d3c; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.volunteer @@ -48177,7 +48176,7 @@ ALTER TABLE ONLY public.volunteer -- --- Name: profile_skill PK_7703bcb3f88131f9b11bfee8554; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_skill PK_7703bcb3f88131f9b11bfee8554; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_skill @@ -48185,7 +48184,7 @@ ALTER TABLE ONLY public.profile_skill -- --- Name: agent_postcode PK_790c4a8ac360683061758eea4fb; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_postcode PK_790c4a8ac360683061758eea4fb; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_postcode @@ -48193,7 +48192,7 @@ ALTER TABLE ONLY public.agent_postcode -- --- Name: location_district PK_828664dee332d2dc0499a1bd5e2; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_district PK_828664dee332d2dc0499a1bd5e2; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_district @@ -48201,7 +48200,7 @@ ALTER TABLE ONLY public.location_district -- --- Name: profile_activity PK_8433b160087402e98a26f61c1b8; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_activity PK_8433b160087402e98a26f61c1b8; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_activity @@ -48209,7 +48208,7 @@ ALTER TABLE ONLY public.profile_activity -- --- Name: location PK_876d7bdba03c72251ec4c2dc827; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location PK_876d7bdba03c72251ec4c2dc827; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location @@ -48217,7 +48216,7 @@ ALTER TABLE ONLY public.location -- --- Name: field_translation PK_9159080b83585be7c50d6a9883e; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: field_translation PK_9159080b83585be7c50d6a9883e; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.field_translation @@ -48225,7 +48224,7 @@ ALTER TABLE ONLY public.field_translation -- --- Name: category PK_9c4e4a89e3674fc9f382d733f03; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: category PK_9c4e4a89e3674fc9f382d733f03; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.category @@ -48233,7 +48232,7 @@ ALTER TABLE ONLY public.category -- --- Name: deal PK_9ce1c24acace60f6d7dc7a7189e; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: deal PK_9ce1c24acace60f6d7dc7a7189e; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.deal @@ -48241,7 +48240,7 @@ ALTER TABLE ONLY public.deal -- --- Name: time PK_9ec81ea937e5d405c33a9f49251; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: time PK_9ec81ea937e5d405c33a9f49251; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public."time" @@ -48249,7 +48248,7 @@ ALTER TABLE ONLY public."time" -- --- Name: skill PK_a0d33334424e64fb78dc3ce7196; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: skill PK_a0d33334424e64fb78dc3ce7196; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.skill @@ -48257,7 +48256,7 @@ ALTER TABLE ONLY public.skill -- --- Name: profile_language PK_a5e5b2402dffa65cf72af5925d1; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_language PK_a5e5b2402dffa65cf72af5925d1; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_language @@ -48265,7 +48264,7 @@ ALTER TABLE ONLY public.profile_language -- --- Name: notion_relation PK_a9db9fcae0b0476e5142622c0c0; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: notion_relation PK_a9db9fcae0b0476e5142622c0c0; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.notion_relation @@ -48273,7 +48272,7 @@ ALTER TABLE ONLY public.notion_relation -- --- Name: location_address PK_bf1188fd425a5c4f19d6fa22c2e; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_address PK_bf1188fd425a5c4f19d6fa22c2e; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_address @@ -48281,7 +48280,7 @@ ALTER TABLE ONLY public.location_address -- --- Name: postcode PK_c19bc9f774c1cf019766a35ca4d; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: postcode PK_c19bc9f774c1cf019766a35ca4d; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.postcode @@ -48289,7 +48288,7 @@ ALTER TABLE ONLY public.postcode -- --- Name: agent_language PK_c4b59dce9dddd19cb7ab607b1ad; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_language PK_c4b59dce9dddd19cb7ab607b1ad; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_language @@ -48297,7 +48296,7 @@ ALTER TABLE ONLY public.agent_language -- --- Name: user PK_cace4a159ff9f2512dd42373760; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: user PK_cace4a159ff9f2512dd42373760; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public."user" @@ -48305,7 +48304,7 @@ ALTER TABLE ONLY public."user" -- --- Name: language PK_cc0a99e710eb3733f6fb42b1d4c; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: language PK_cc0a99e710eb3733f6fb42b1d4c; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.language @@ -48313,7 +48312,7 @@ ALTER TABLE ONLY public.language -- --- Name: timeslot PK_cd8bca557ee1eb5b090b9e63009; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: timeslot PK_cd8bca557ee1eb5b090b9e63009; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.timeslot @@ -48321,7 +48320,7 @@ ALTER TABLE ONLY public.timeslot -- --- Name: config PK_d0ee79a681413d50b0a4f98cf7b; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: config PK_d0ee79a681413d50b0a4f98cf7b; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.config @@ -48329,7 +48328,7 @@ ALTER TABLE ONLY public.config -- --- Name: accompanying PK_d0fd931d21e719a937ba4ca36ac; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: accompanying PK_d0fd931d21e719a937ba4ca36ac; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.accompanying @@ -48337,7 +48336,7 @@ ALTER TABLE ONLY public.accompanying -- --- Name: event_translation PK_d5739128be79554fecf75dca107; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: event_translation PK_d5739128be79554fecf75dca107; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.event_translation @@ -48345,7 +48344,7 @@ ALTER TABLE ONLY public.event_translation -- --- Name: agent_person PK_d78c87230af992a1bf93c5b93ae; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_person PK_d78c87230af992a1bf93c5b93ae; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_person @@ -48353,7 +48352,7 @@ ALTER TABLE ONLY public.agent_person -- --- Name: address PK_d92de1f82754668b5f5f5dd4fd5; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: address PK_d92de1f82754668b5f5f5dd4fd5; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.address @@ -48361,7 +48360,7 @@ ALTER TABLE ONLY public.address -- --- Name: appreciation PK_d9824c8e198e82f7394c805eddf; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: appreciation PK_d9824c8e198e82f7394c805eddf; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.appreciation @@ -48369,7 +48368,7 @@ ALTER TABLE ONLY public.appreciation -- --- Name: be_migrations PK_db17e716f95ad729756da284318; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: be_migrations PK_db17e716f95ad729756da284318; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.be_migrations @@ -48377,7 +48376,7 @@ ALTER TABLE ONLY public.be_migrations -- --- Name: event_n4d PK_e0df3ada625ad10e0b3fbeaec47; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: event_n4d PK_e0df3ada625ad10e0b3fbeaec47; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.event_n4d @@ -48385,7 +48384,7 @@ ALTER TABLE ONLY public.event_n4d -- --- Name: testimonial PK_e1aee1c726db2d336480c69f7cb; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: testimonial PK_e1aee1c726db2d336480c69f7cb; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.testimonial @@ -48393,7 +48392,7 @@ ALTER TABLE ONLY public.testimonial -- --- Name: document PK_e57d3357f83f3cdc0acffc3d777; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: document PK_e57d3357f83f3cdc0acffc3d777; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.document @@ -48401,7 +48400,7 @@ ALTER TABLE ONLY public.document -- --- Name: option PK_e6090c1c6ad8962eea97abdbe63; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: option PK_e6090c1c6ad8962eea97abdbe63; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.option @@ -48409,7 +48408,7 @@ ALTER TABLE ONLY public.option -- --- Name: district PK_ee5cb6fd5223164bb87ea693f1e; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: district PK_ee5cb6fd5223164bb87ea693f1e; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.district @@ -48417,7 +48416,7 @@ ALTER TABLE ONLY public.district -- --- Name: timeline PK_f841188896cefd9277904ec40b9; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: timeline PK_f841188896cefd9277904ec40b9; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.timeline @@ -48425,7 +48424,7 @@ ALTER TABLE ONLY public.timeline -- --- Name: skill UQ_5b1131c92af934e7c2a1322ec87; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: skill UQ_5b1131c92af934e7c2a1322ec87; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.skill @@ -48433,7 +48432,7 @@ ALTER TABLE ONLY public.skill -- --- Name: document UQ_761a987245fa09ddf48e5aafcf4; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: document UQ_761a987245fa09ddf48e5aafcf4; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.document @@ -48441,7 +48440,7 @@ ALTER TABLE ONLY public.document -- --- Name: category UQ_9f16dbbf263b0af0f03637fa7b5; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: category UQ_9f16dbbf263b0af0f03637fa7b5; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.category @@ -48449,7 +48448,7 @@ ALTER TABLE ONLY public.category -- --- Name: activity UQ_a28a1682ea80f10d1ecc7babaa0; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: activity UQ_a28a1682ea80f10d1ecc7babaa0; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.activity @@ -48457,7 +48456,7 @@ ALTER TABLE ONLY public.activity -- --- Name: organization UQ_a7c11b94f5aaa12289f67de3f8f; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: organization UQ_a7c11b94f5aaa12289f67de3f8f; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.organization @@ -48465,7 +48464,7 @@ ALTER TABLE ONLY public.organization -- --- Name: notion_relation UQ_b92d4ef7fbe3be587f500d38326; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: notion_relation UQ_b92d4ef7fbe3be587f500d38326; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.notion_relation @@ -48473,7 +48472,7 @@ ALTER TABLE ONLY public.notion_relation -- --- Name: agent UQ_c13f74bf3e3d5e4fedf63231881; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent UQ_c13f74bf3e3d5e4fedf63231881; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent @@ -48481,7 +48480,7 @@ ALTER TABLE ONLY public.agent -- --- Name: address UQ_dc72f107eef6108d4163fae4cd2; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: address UQ_dc72f107eef6108d4163fae4cd2; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.address @@ -48489,7 +48488,7 @@ ALTER TABLE ONLY public.address -- --- Name: user UQ_e12875dfb3b1d92d7d7c5377e22; Type: CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: user UQ_e12875dfb3b1d92d7d7c5377e22; Type: CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public."user" @@ -48497,42 +48496,42 @@ ALTER TABLE ONLY public."user" -- --- Name: IDX_68fcd3be0d9a16a5b6c8371133; Type: INDEX; Schema: public; Owner: n4d_user +-- Name: IDX_68fcd3be0d9a16a5b6c8371133; Type: INDEX; Schema: public; Owner: n4d -- CREATE UNIQUE INDEX "IDX_68fcd3be0d9a16a5b6c8371133" ON public.timeline USING btree (target_entity_type, target_entity_id, "timestamp"); -- --- Name: IDX_8c3af29493287693cdd82d99c1; Type: INDEX; Schema: public; Owner: n4d_user +-- Name: IDX_8c3af29493287693cdd82d99c1; Type: INDEX; Schema: public; Owner: n4d -- CREATE INDEX "IDX_8c3af29493287693cdd82d99c1" ON public.comment USING btree (entity_type, entity_id, language_id); -- --- Name: IDX_cd9cbf582b713498a61c626c2d; Type: INDEX; Schema: public; Owner: n4d_user +-- Name: IDX_cd9cbf582b713498a61c626c2d; Type: INDEX; Schema: public; Owner: n4d -- CREATE UNIQUE INDEX "IDX_cd9cbf582b713498a61c626c2d" ON public.field_translation USING btree (language_id, entity_type, entity_id, field_name); -- --- Name: idx_person_search_gin; Type: INDEX; Schema: public; Owner: n4d_user +-- Name: idx_person_search_gin; Type: INDEX; Schema: public; Owner: n4d -- CREATE INDEX idx_person_search_gin ON public.person USING gin (to_tsvector('simple'::regconfig, (((((COALESCE(first_name, ''::character varying))::text || ' '::text) || (COALESCE(last_name, ''::character varying))::text) || ' '::text) || (COALESCE(email, ''::character varying))::text))); -- --- Name: mv_deal_id_unique_idx; Type: INDEX; Schema: public; Owner: n4d_user +-- Name: mv_deal_id_unique_idx; Type: INDEX; Schema: public; Owner: n4d -- CREATE UNIQUE INDEX mv_deal_id_unique_idx ON public.volunteer_list_mv USING btree (volunteer_id); -- --- Name: profile_skill FK_0010601b9bf612cda40aae1ed5f; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_skill FK_0010601b9bf612cda40aae1ed5f; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_skill @@ -48540,7 +48539,7 @@ ALTER TABLE ONLY public.profile_skill -- --- Name: event_n4d FK_019ed6de3369ed99b82ebf1b85c; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: event_n4d FK_019ed6de3369ed99b82ebf1b85c; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.event_n4d @@ -48548,7 +48547,7 @@ ALTER TABLE ONLY public.event_n4d -- --- Name: agent_postcode FK_0c0882d8ac7a24eec11d7bff144; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_postcode FK_0c0882d8ac7a24eec11d7bff144; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_postcode @@ -48556,7 +48555,7 @@ ALTER TABLE ONLY public.agent_postcode -- --- Name: organization FK_0f31fe3925535afb5462326d7d6; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: organization FK_0f31fe3925535afb5462326d7d6; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.organization @@ -48564,7 +48563,7 @@ ALTER TABLE ONLY public.organization -- --- Name: event_translation FK_10fabc95d13968a570404f5c516; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: event_translation FK_10fabc95d13968a570404f5c516; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.event_translation @@ -48572,7 +48571,7 @@ ALTER TABLE ONLY public.event_translation -- --- Name: location_district FK_1c289fab06d04d9bbff9d6d0028; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_district FK_1c289fab06d04d9bbff9d6d0028; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_district @@ -48580,7 +48579,7 @@ ALTER TABLE ONLY public.location_district -- --- Name: agent_person FK_1fc545aa66757a901d425e88f0b; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_person FK_1fc545aa66757a901d425e88f0b; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_person @@ -48588,7 +48587,7 @@ ALTER TABLE ONLY public.agent_person -- --- Name: profile_language FK_2115a7ecd80ab0e1c36565f87fd; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_language FK_2115a7ecd80ab0e1c36565f87fd; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_language @@ -48596,7 +48595,7 @@ ALTER TABLE ONLY public.profile_language -- --- Name: profile_activity FK_24c6818a8464f28891481760531; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_activity FK_24c6818a8464f28891481760531; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_activity @@ -48604,7 +48603,7 @@ ALTER TABLE ONLY public.profile_activity -- --- Name: appreciation FK_29ae22414bad9bb74367b329b00; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: appreciation FK_29ae22414bad9bb74367b329b00; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.appreciation @@ -48612,7 +48611,7 @@ ALTER TABLE ONLY public.appreciation -- --- Name: appreciation FK_2a91e0b949799349a3a87aa220b; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: appreciation FK_2a91e0b949799349a3a87aa220b; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.appreciation @@ -48620,7 +48619,7 @@ ALTER TABLE ONLY public.appreciation -- --- Name: communication FK_3120e867d4bf41caa7b8984440e; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: communication FK_3120e867d4bf41caa7b8984440e; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.communication @@ -48628,7 +48627,7 @@ ALTER TABLE ONLY public.communication -- --- Name: location_address FK_3191fd40b5538e1e5c3857042f2; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_address FK_3191fd40b5538e1e5c3857042f2; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_address @@ -48636,7 +48635,7 @@ ALTER TABLE ONLY public.location_address -- --- Name: event_translation FK_42df355dff4a2dd4edeb6f9fc66; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: event_translation FK_42df355dff4a2dd4edeb6f9fc66; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.event_translation @@ -48644,7 +48643,7 @@ ALTER TABLE ONLY public.event_translation -- --- Name: time_timeslot FK_42f12245378cdfc151d3af2189d; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: time_timeslot FK_42f12245378cdfc151d3af2189d; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.time_timeslot @@ -48652,7 +48651,7 @@ ALTER TABLE ONLY public.time_timeslot -- --- Name: time_timeslot FK_44cb00266b6e97b935c34c50686; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: time_timeslot FK_44cb00266b6e97b935c34c50686; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.time_timeslot @@ -48660,7 +48659,7 @@ ALTER TABLE ONLY public.time_timeslot -- --- Name: profile FK_49ea3bc2c466d5b457352c8a9b1; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile FK_49ea3bc2c466d5b457352c8a9b1; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile @@ -48668,7 +48667,7 @@ ALTER TABLE ONLY public.profile -- --- Name: opportunity_volunteer FK_4a47cea224192a18c9bb93c07b4; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer FK_4a47cea224192a18c9bb93c07b4; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity_volunteer @@ -48676,7 +48675,7 @@ ALTER TABLE ONLY public.opportunity_volunteer -- --- Name: volunteer FK_4b1093af5610c75cfca53546c0d; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: volunteer FK_4b1093af5610c75cfca53546c0d; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.volunteer @@ -48684,7 +48683,7 @@ ALTER TABLE ONLY public.volunteer -- --- Name: activity FK_5d3d888450207667a286922f945; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: activity FK_5d3d888450207667a286922f945; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.activity @@ -48692,7 +48691,7 @@ ALTER TABLE ONLY public.activity -- --- Name: opportunity FK_62f9c6aaa610596f0d5f972e962; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: opportunity FK_62f9c6aaa610596f0d5f972e962; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity @@ -48700,7 +48699,7 @@ ALTER TABLE ONLY public.opportunity -- --- Name: agent_language FK_655274b2246207a662e3940b0d4; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_language FK_655274b2246207a662e3940b0d4; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_language @@ -48708,7 +48707,7 @@ ALTER TABLE ONLY public.agent_language -- --- Name: agent FK_6b58af875f81124b0cd64dc843a; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent FK_6b58af875f81124b0cd64dc843a; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent @@ -48716,7 +48715,7 @@ ALTER TABLE ONLY public.agent -- --- Name: location_postcode FK_6c2e2c49c9b9e2647a76dce1538; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_postcode FK_6c2e2c49c9b9e2647a76dce1538; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_postcode @@ -48724,7 +48723,7 @@ ALTER TABLE ONLY public.location_postcode -- --- Name: location_district FK_721d5d8783c928890db616cfbe7; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_district FK_721d5d8783c928890db616cfbe7; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_district @@ -48732,7 +48731,7 @@ ALTER TABLE ONLY public.location_district -- --- Name: opportunity FK_72b2a2637cc12f5d5b71bb3236e; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: opportunity FK_72b2a2637cc12f5d5b71bb3236e; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity @@ -48740,7 +48739,7 @@ ALTER TABLE ONLY public.opportunity -- --- Name: district_postcode FK_7b72f500f43de90b1a7d6e60ead; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: district_postcode FK_7b72f500f43de90b1a7d6e60ead; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.district_postcode @@ -48748,7 +48747,7 @@ ALTER TABLE ONLY public.district_postcode -- --- Name: agent FK_7b8b0514632bffdf8d13afbc9de; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent FK_7b8b0514632bffdf8d13afbc9de; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent @@ -48756,7 +48755,7 @@ ALTER TABLE ONLY public.agent -- --- Name: location_postcode FK_8008547ccf8fed17a64fd13d3a8; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_postcode FK_8008547ccf8fed17a64fd13d3a8; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_postcode @@ -48764,7 +48763,7 @@ ALTER TABLE ONLY public.location_postcode -- --- Name: field_translation FK_804ca3b0c276af3e8b593664f06; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: field_translation FK_804ca3b0c276af3e8b593664f06; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.field_translation @@ -48772,7 +48771,7 @@ ALTER TABLE ONLY public.field_translation -- --- Name: profile_activity FK_850d7554542cf85eee1f9aee1fa; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_activity FK_850d7554542cf85eee1f9aee1fa; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_activity @@ -48780,7 +48779,7 @@ ALTER TABLE ONLY public.profile_activity -- --- Name: agent FK_92b5f704c0b5e65fb0698240744; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent FK_92b5f704c0b5e65fb0698240744; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent @@ -48788,7 +48787,7 @@ ALTER TABLE ONLY public.agent -- --- Name: profile_language FK_9b9cfa82b0245720d200c4b3bb5; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_language FK_9b9cfa82b0245720d200c4b3bb5; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_language @@ -48796,7 +48795,7 @@ ALTER TABLE ONLY public.profile_language -- --- Name: deal FK_9f36d6cf04687b811690d82a3c1; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: deal FK_9f36d6cf04687b811690d82a3c1; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.deal @@ -48804,7 +48803,7 @@ ALTER TABLE ONLY public.deal -- --- Name: user FK_a4cee7e601d219733b064431fba; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: user FK_a4cee7e601d219733b064431fba; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public."user" @@ -48812,7 +48811,7 @@ ALTER TABLE ONLY public."user" -- --- Name: deal FK_b709f61f789979d2087bfc41768; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: deal FK_b709f61f789979d2087bfc41768; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.deal @@ -48820,7 +48819,7 @@ ALTER TABLE ONLY public.deal -- --- Name: comment FK_bbfe153fa60aa06483ed35ff4a7; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: comment FK_bbfe153fa60aa06483ed35ff4a7; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.comment @@ -48828,7 +48827,7 @@ ALTER TABLE ONLY public.comment -- --- Name: location_address FK_bdd8e88dbc7fe1ad3f6b1f949c9; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: location_address FK_bdd8e88dbc7fe1ad3f6b1f949c9; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.location_address @@ -48836,7 +48835,7 @@ ALTER TABLE ONLY public.location_address -- --- Name: opportunity_volunteer FK_c0f508b980be4be0b244a5471a1; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: opportunity_volunteer FK_c0f508b980be4be0b244a5471a1; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity_volunteer @@ -48844,7 +48843,7 @@ ALTER TABLE ONLY public.opportunity_volunteer -- --- Name: agent_language FK_c58ded607e284db17d03e9eb20b; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_language FK_c58ded607e284db17d03e9eb20b; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_language @@ -48852,7 +48851,7 @@ ALTER TABLE ONLY public.agent_language -- --- Name: testimonial FK_c6bdc688fecc9e338d0c4018c4c; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: testimonial FK_c6bdc688fecc9e338d0c4018c4c; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.testimonial @@ -48860,7 +48859,7 @@ ALTER TABLE ONLY public.testimonial -- --- Name: person FK_cd587348ca3fec07931de208299; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: person FK_cd587348ca3fec07931de208299; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.person @@ -48868,7 +48867,7 @@ ALTER TABLE ONLY public.person -- --- Name: appreciation FK_ce5266cf486c563f4e2c8babe4c; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: appreciation FK_ce5266cf486c563f4e2c8babe4c; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.appreciation @@ -48876,7 +48875,7 @@ ALTER TABLE ONLY public.appreciation -- --- Name: deal FK_cefd2ee093f33d43794ebf5ed07; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: deal FK_cefd2ee093f33d43794ebf5ed07; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.deal @@ -48884,7 +48883,7 @@ ALTER TABLE ONLY public.deal -- --- Name: district_postcode FK_d3b662cb01cdb6f22c7097e0b33; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: district_postcode FK_d3b662cb01cdb6f22c7097e0b33; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.district_postcode @@ -48892,7 +48891,7 @@ ALTER TABLE ONLY public.district_postcode -- --- Name: profile_skill FK_dc3b7860ffbacd6dfcffbae9b06; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: profile_skill FK_dc3b7860ffbacd6dfcffbae9b06; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.profile_skill @@ -48900,7 +48899,7 @@ ALTER TABLE ONLY public.profile_skill -- --- Name: document FK_e1d6fe65e869e2858d0acfef925; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: document FK_e1d6fe65e869e2858d0acfef925; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.document @@ -48908,7 +48907,7 @@ ALTER TABLE ONLY public.document -- --- Name: address FK_e1d98846fd3dcdea8e3f267e7eb; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: address FK_e1d98846fd3dcdea8e3f267e7eb; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.address @@ -48916,7 +48915,7 @@ ALTER TABLE ONLY public.address -- --- Name: opportunity FK_e82fe25e9f9cbe9edbb6cba8c19; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: opportunity FK_e82fe25e9f9cbe9edbb6cba8c19; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.opportunity @@ -48924,7 +48923,7 @@ ALTER TABLE ONLY public.opportunity -- --- Name: communication FK_e8f1435f58864dd4b55c47d1468; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: communication FK_e8f1435f58864dd4b55c47d1468; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.communication @@ -48932,7 +48931,7 @@ ALTER TABLE ONLY public.communication -- --- Name: organization FK_e94553ff34338a3882ed305a74d; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: organization FK_e94553ff34338a3882ed305a74d; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.organization @@ -48940,7 +48939,7 @@ ALTER TABLE ONLY public.organization -- --- Name: agent_postcode FK_ec2a5aa17ef1f489815ee8cefdf; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_postcode FK_ec2a5aa17ef1f489815ee8cefdf; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_postcode @@ -48948,7 +48947,7 @@ ALTER TABLE ONLY public.agent_postcode -- --- Name: comment FK_f02c3b7cc4d58ca622a90d682a0; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: comment FK_f02c3b7cc4d58ca622a90d682a0; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.comment @@ -48956,7 +48955,7 @@ ALTER TABLE ONLY public.comment -- --- Name: deal FK_f5c86a234c167277fb5c18518b9; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: deal FK_f5c86a234c167277fb5c18518b9; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.deal @@ -48964,7 +48963,7 @@ ALTER TABLE ONLY public.deal -- --- Name: testimonial FK_f7086d54eec10b450adee1be7b9; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: testimonial FK_f7086d54eec10b450adee1be7b9; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.testimonial @@ -48972,7 +48971,7 @@ ALTER TABLE ONLY public.testimonial -- --- Name: communication FK_fb198b1a72d3e9fa9e006c824c0; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: communication FK_fb198b1a72d3e9fa9e006c824c0; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.communication @@ -48980,7 +48979,7 @@ ALTER TABLE ONLY public.communication -- --- Name: volunteer FK_fc40d3eada517c3c9315e0c9e51; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: volunteer FK_fc40d3eada517c3c9315e0c9e51; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.volunteer @@ -48988,7 +48987,7 @@ ALTER TABLE ONLY public.volunteer -- --- Name: agent_person FK_ffb35bb3606febae68541916709; Type: FK CONSTRAINT; Schema: public; Owner: n4d_user +-- Name: agent_person FK_ffb35bb3606febae68541916709; Type: FK CONSTRAINT; Schema: public; Owner: n4d -- ALTER TABLE ONLY public.agent_person @@ -48996,7 +48995,7 @@ ALTER TABLE ONLY public.agent_person -- --- Name: volunteer_list_mv; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: n4d_user +-- Name: volunteer_list_mv; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: n4d -- REFRESH MATERIALIZED VIEW public.volunteer_list_mv; @@ -49006,5 +49005,4 @@ REFRESH MATERIALIZED VIEW public.volunteer_list_mv; -- PostgreSQL database dump complete -- -\unrestrict tlLwyqjBLnERANtbTgfiXv69sszKnM6xcnW4q2xEWfEye5sQHWCgOhgUwB0Jo9n From 2baa7ccdab7441f335c606aa80edc06618a0d8d7 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 24 Jun 2026 20:30:48 +0200 Subject: [PATCH 18/89] =?UTF-8?q?=E2=9C=A8=20feat:=20add=20POST=20/user/ad?= =?UTF-8?q?min=20for=20admin-privileged=20user=20creation=20(#713)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Public POST /user/ blocks admin/coordinator roles by design. New POST /user/admin requires an active admin session and creates the account as immediately active (no email verification needed). Co-authored-by: Claude Sonnet 4.6 --- src/server/routes/user.ts | 85 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) diff --git a/src/server/routes/user.ts b/src/server/routes/user.ts index 64b03c68..50a5cea6 100644 --- a/src/server/routes/user.ts +++ b/src/server/routes/user.ts @@ -400,4 +400,89 @@ export default async function userRoutes( return reply.status(201).send(savedUser); }, ); + + // Admin-only user creation — accepts any role including admin/coordinator. + // Unlike POST /user/ this endpoint requires an authenticated admin session + // and activates the account immediately (no email verification flow). + fastify.post<{ + Body: ApiUserPost; + Reply: User | { message: string; errors?: any }; + }>( + "/admin", + { + schema: { + body: createUserBodySchema, + response: { + 201: userResponseSchemaIncludePerson, + ...responseErrors, + }, + }, + onRequest: [fastify.authenticate({ role: UserRole.ADMIN })], + preHandler: async (request) => { + const { person: personData, email } = request.body; + const personRepository = fastify.db.personRepository; + + if (personData.id) { + const resolvedPerson = await personRepository.findOneBy({ + id: personData.id, + }); + if (!resolvedPerson) { + throw new BadRequestError( + `Person with ID ${personData.id} not found.`, + ); + } + if (!resolvedPerson.email) { + resolvedPerson.email = email; + } + request.resolvedPerson = resolvedPerson; + return; + } + + const newPerson = new Person(personData); + newPerson.email = email; + const errors = await validate(newPerson); + if (errors.length > 0) { + const messages = errors.flatMap((err) => + Object.values(err.constraints || {}), + ); + throw new BadRequestError( + `Validation failed for new person data: ${messages.join("; ")}`, + ); + } + request.resolvedPerson = newPerson; + }, + }, + async (request, reply) => { + const { email, password: passwordPlain, role, language } = request.body; + const userRepository = fastify.db.userRepository; + + if (await userRepository.findOneBy({ email })) { + throw new ConflictError("User with this email already exists."); + } + + const newUser = new User({ + email, + password: await hashPassword(passwordPlain), + role, + isActive: true, + language: language ?? Lang.EN, + timezone: "CET", + person: request.resolvedPerson, + }); + + const errors = await validate(newUser); + if (errors.length > 0) { + logger.error( + `User entity validation errors: ${JSON.stringify(errors)}`, + ); + return reply.status(400).send({ + message: "Validation failed for newUser data", + errors: errors.flatMap((err) => Object.values(err.constraints || {})), + }); + } + + const savedUser = await userRepository.save(newUser); + return reply.status(201).send(savedUser); + }, + ); } From 0b7deeda6bc94b593e56778a94501c6b3a163d2b Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 24 Jun 2026 20:55:52 +0200 Subject: [PATCH 19/89] fix: add workflow_dispatch to deploy-aits workflow (#714) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ✨ feat: add POST /user/admin for admin-privileged user creation Public POST /user/ blocks admin/coordinator roles by design. New POST /user/admin requires an active admin session and creates the account as immediately active (no email verification needed). Co-Authored-By: Claude Sonnet 4.6 * fix: add workflow_dispatch to deploy-aits workflow Allows manual re-deploys without needing a code push. Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 --- .github/workflows/deploy-aits.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy-aits.yaml b/.github/workflows/deploy-aits.yaml index fde384a9..ad39f355 100644 --- a/.github/workflows/deploy-aits.yaml +++ b/.github/workflows/deploy-aits.yaml @@ -3,6 +3,7 @@ name: deploy-aits on: push: branches: [develop] + workflow_dispatch: jobs: build-and-deploy: From 574900a1c7b2cdd40c36e460db73d19d4a54187b Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 25 Jun 2026 09:44:41 +0000 Subject: [PATCH 20/89] chore: upgrade need4deed-sdk to 0.0.115, clean up agentId workarounds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Bump need4deed-sdk 0.0.114 → 0.0.115 (adds agentId to ApiUserGet) - serializeUserToMeDTO now returns ApiUserGet directly instead of ApiUserGet & { agentId?: number } - Fix additionalProperties misplacement in sdk-types.json ApiUserMe schema (was inside properties, now a sibling) Co-Authored-By: Claude Sonnet 4.6 --- package.json | 2 +- src/server/schema/sdk-types.json | 4 ++-- src/services/dto/dto-user.ts | 5 +---- yarn.lock | 8 ++++---- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 59586529..1102b587 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.114", + "need4deed-sdk": "0.0.115", "pg": "^8.14.1", "pino": "^10.3.1", "pino-pretty": "^13.0.0", diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index eaed28a8..8cb42fd3 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -456,9 +456,9 @@ }, "agentId": { "type": "integer" - }, - "additionalProperties": false + } }, + "additionalProperties": false, "required": ["id", "email", "role"] }, "DocumentType": { diff --git a/src/services/dto/dto-user.ts b/src/services/dto/dto-user.ts index 5f2c082d..ee16461f 100644 --- a/src/services/dto/dto-user.ts +++ b/src/services/dto/dto-user.ts @@ -1,10 +1,7 @@ import { ApiUserGet } from "need4deed-sdk"; import User from "../../data/entity/user.entity"; -export function serializeUserToMeDTO( - user: User, - agentId?: number, -): ApiUserGet & { agentId?: number } { +export function serializeUserToMeDTO(user: User, agentId?: number): ApiUserGet { return { id: user.id, // personId is nullable (person-less users); emit undefined so the diff --git a/yarn.lock b/yarn.lock index 51e0635a..f7759270 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2937,10 +2937,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.114: - version "0.0.114" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.114.tgz#6dee6f266310de84ba7ff790db58c09f40329467" - integrity sha512-KkHa+PSIZBJ8XoteoAL4xhlb/eV4nkU7ViPqXMFtemKWwXTKP7nNfsxEB/wmPQlkH9MjwcG9yz9NaccJx8WzIw== +need4deed-sdk@0.0.115: + version "0.0.115" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.115.tgz#cb07ffaabbd22353e65b28e9a592a3a78b269593" + integrity sha512-VoOpHlSnAUgNIHrUsKPrj1L4299ze+bBFsnCLs3BP5IPL5lLN5uK1vzkT+t9rAgilb8h22HqXWlzxMAPBhoTcA== no-case@^3.0.4: version "3.0.4" From 32d80a548a19bc3b86cbd9282d01b391110e9544 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 25 Jun 2026 09:45:16 +0000 Subject: [PATCH 21/89] fix: skip agentId lookup for non-agent users in GET /user/me Only AGENT-role users can have agent memberships; firing the agentPersonRepository queries for every user with a personId (volunteers, coordinators, admins) was wasted DB work on the hot session-check endpoint. Co-Authored-By: Claude Sonnet 4.6 --- src/server/routes/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/routes/user.ts b/src/server/routes/user.ts index 50a5cea6..f8c66841 100644 --- a/src/server/routes/user.ts +++ b/src/server/routes/user.ts @@ -163,7 +163,7 @@ export default async function userRoutes( } let agentId: number | undefined; - if (user.personId) { + if (user.role === UserRole.AGENT && user.personId) { // Prefer VOLUNTEER_COORDINATOR role; fall back to any active membership. const membership = (await fastify.db.agentPersonRepository.findOne({ From 210790f5ac60526826638b072cfbfe187b98c1db Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 25 Jun 2026 10:00:22 +0000 Subject: [PATCH 22/89] test(dto-user): cover agentId presence and absence in serializeUserToMeDTO Co-Authored-By: Claude Sonnet 4.6 --- src/test/services/dto/dto-user.test.ts | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/test/services/dto/dto-user.test.ts b/src/test/services/dto/dto-user.test.ts index a4d88efa..f2ee8374 100644 --- a/src/test/services/dto/dto-user.test.ts +++ b/src/test/services/dto/dto-user.test.ts @@ -55,6 +55,38 @@ describe("serializeUserToMeDTO", () => { expect(result.personId).toBeUndefined(); }); + it("includes agentId in the result when provided", () => { + const user = { + id: 4, + personId: 10, + email: "agent@example.com", + isActive: true, + role: "agent", + language: "en", + timezone: "CET", + person: { firstName: "Bob", name: "Bob Agent", avatarUrl: "" }, + }; + + const result = serializeUserToMeDTO(user as any, 99); + expect(result.agentId).toBe(99); + }); + + it("omits agentId when not provided", () => { + const user = { + id: 5, + personId: 11, + email: "vol@example.com", + isActive: true, + role: "volunteer", + language: "en", + timezone: "CET", + person: { firstName: "Eve", name: "Eve Vol", avatarUrl: "" }, + }; + + const result = serializeUserToMeDTO(user as any); + expect(result.agentId).toBeUndefined(); + }); + it("falls back to default isoCode 'en' and timezone 'CET' when not set", () => { const user = { id: 3, From e847196dac266b54a26cc677949ddefbadeff84f Mon Sep 17 00:00:00 2001 From: Boris Date: Thu, 25 Jun 2026 11:03:44 +0100 Subject: [PATCH 23/89] feat: add POST /auth/request-reset endpoint for password reset --- src/config/constants.ts | 8 ++ src/server/plugins/notify.ts | 4 + src/server/routes/auth.ts | 44 +++++++++ src/server/types/enums.ts | 1 + src/server/types/fastify.d.ts | 2 +- .../notify/events/email-password-reset.ts | 81 ++++++++++++++++ src/services/notify/index.ts | 1 + .../notify/email-password-reset.test.ts | 93 +++++++++++++++++++ 8 files changed, 233 insertions(+), 1 deletion(-) create mode 100644 src/services/notify/events/email-password-reset.ts create mode 100644 src/test/services/notify/email-password-reset.test.ts diff --git a/src/config/constants.ts b/src/config/constants.ts index e4e6071d..4771f363 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -82,9 +82,16 @@ export const urlEmailVerification = process.env.URL_EMAIL_VERIFICATION || "https://app.need4deed.org/verify-email"; +export const urlPasswordReset = + process.env.URL_PASSWORD_RESET || "https://app.need4deed.org/reset-password"; + // CDN manifest (per-locale subject + html/text) for the verification email. export const emailVerificationManifestUrl = CDNBaseUrl + "/emails/verification.json"; + +// CDN manifest (per-locale subject + html/text) for the password reset email. +export const emailPasswordResetManifestUrl = + CDNBaseUrl + "/emails/password-reset.json"; // How long a fetched email manifest is cached in-memory (default 10 min). export const emailTemplateTtlMs = Number(process.env.EMAIL_TEMPLATE_TTL_MS) || 10 * 60 * 1000; @@ -95,6 +102,7 @@ export const emailTemplateFetchTimeoutMs = export const REFRESH_LIFESPAN_MS = 7 * 24 * 60 * 60 * 1000; // 7 days in milliseconds export const ACCESS_LIFESPAN_MS = 15 * 60 * 1000; // 15 minutes in milliseconds export const VERIFY_LIFESPAN_MS = 24 * 60 * 60 * 1000; // 24h in milliseconds +export const RESET_LIFESPAN_MS = 60 * 60 * 1000; // 60 minutes in milliseconds export const pluginTimeout = 300 * 1000; // 30s in milliseconds export const accessCookieName = "access"; diff --git a/src/server/plugins/notify.ts b/src/server/plugins/notify.ts index 1382329d..45a2e8e8 100644 --- a/src/server/plugins/notify.ts +++ b/src/server/plugins/notify.ts @@ -8,6 +8,7 @@ import { sendCommentTagged, sendEmailVerification, sendOpsAlert, + sendPasswordReset, SlackChannel, SlackTransport, SlackWebhookTransport, @@ -15,6 +16,7 @@ import { interface NotifyService { emailVerification(user: User): Promise; + passwordReset(user: User): Promise; opsAlert(text: string): Promise; commentTagged(input: CommentTaggedInput): Promise; } @@ -50,6 +52,8 @@ async function notifyPlugin(fastify: FastifyInstance) { fastify.decorate("notify", { emailVerification: (user: User) => sendEmailVerification({ email, jwt: fastify.jwt }, user), + passwordReset: (user: User) => + sendPasswordReset({ email, jwt: fastify.jwt }, user), opsAlert: (text: string) => sendOpsAlert({ slack }, text), commentTagged: (input: CommentTaggedInput) => sendCommentTagged({ slack }, input), diff --git a/src/server/routes/auth.ts b/src/server/routes/auth.ts index d9a4ede8..309d42a8 100644 --- a/src/server/routes/auth.ts +++ b/src/server/routes/auth.ts @@ -236,6 +236,50 @@ async function authRoutes( return reply.status(200).send({ message: "Logout successful." }); }, ); + + fastify.post<{ + Body: { email: string }; + Reply: { message: string }; + }>( + prefixedPath + RoutePrefix.REQUEST_RESET, + { + schema: { + body: { + type: "object", + properties: { email: { type: "string", format: "email" } }, + required: ["email"], + }, + response: { + 200: { + type: "object", + properties: { message: { type: "string" } }, + required: ["message"], + }, + ...responseErrors, + }, + }, + }, + async (request, reply) => { + const { email } = request.body; + + const user = await fastify.db.userRepository.findOne({ + where: { email }, + }); + + if (user?.isActive) { + fastify.notify.passwordReset(user).catch((err) => { + logger.error( + `Failed to send password reset for user ${user.id}: ${err instanceof Error ? err.message : err}`, + ); + }); + } + + return reply.status(200).send({ + message: + "If an account with that email exists, a reset link has been sent.", + }); + }, + ); } export default fp(authRoutes, { diff --git a/src/server/types/enums.ts b/src/server/types/enums.ts index 354d4cc8..a245364b 100644 --- a/src/server/types/enums.ts +++ b/src/server/types/enums.ts @@ -19,6 +19,7 @@ export const RoutePrefix = { OPTION: "/option", PERSON: "/person", REFRESH: "/refresh", + REQUEST_RESET: "/request-reset", REGISTER: "/register", SWAGGER: "/swagger", TRUSTED_DOMAIN: "/trusted-domain", diff --git a/src/server/types/fastify.d.ts b/src/server/types/fastify.d.ts index ea733a4b..989ddd69 100644 --- a/src/server/types/fastify.d.ts +++ b/src/server/types/fastify.d.ts @@ -63,7 +63,7 @@ declare module "@fastify/jwt" { // It's crucial to extend the original FastifyJWT interface here // so that your custom 'payload' and 'user' types merge correctly // with the types that @fastify/jwt already defines (like jwtSign and jwtVerify methods on reply/request). - type TokenType = "access" | "refresh" | "verify"; + type TokenType = "access" | "refresh" | "verify" | "reset"; interface FastifyJWT { // Payload type when signing a token (`reply.jwtSign(payload)`) payload: { diff --git a/src/services/notify/events/email-password-reset.ts b/src/services/notify/events/email-password-reset.ts new file mode 100644 index 00000000..7825517f --- /dev/null +++ b/src/services/notify/events/email-password-reset.ts @@ -0,0 +1,81 @@ +import type { JWT } from "@fastify/jwt"; +import { Lang } from "need4deed-sdk"; +import { + emailPasswordResetManifestUrl, + RESET_LIFESPAN_MS, + urlPasswordReset, +} from "../../../config/constants"; +import type User from "../../../data/entity/user.entity"; +import logger from "../../../logger"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailMessage, EmailTransport } from "../types"; + +export interface PasswordResetDeps { + email: EmailTransport; + jwt: JWT; +} + +const BUILTIN: Record = { + [Lang.EN]: { + subject: "Password Reset", + text: `A password reset has been requested for your account. To reset your password, follow this link:\n{{resetUrl}}\n\nIf you did not request this, please ignore this email.`, + html: `

A password reset has been requested for your account.

\n

Reset your password

\n

If you did not request this, please ignore this email.

`, + }, + [Lang.DE]: { + subject: "Passwort zurücksetzen", + text: `Es wurde ein Zurücksetzen des Passworts für dein Konto angefordert. Um dein Passwort zurückzusetzen, folge diesem Link:\n{{resetUrl}}\n\nFalls du dies nicht angefordert hast, ignoriere diese E-Mail bitte.`, + html: `

Es wurde ein Zurücksetzen des Passworts für dein Konto angefordert.

\n

Passwort zurücksetzen

\n

Falls du dies nicht angefordert hast, ignoriere diese E-Mail bitte.

`, + }, +}; + +const loader = createManifestLoader(emailPasswordResetManifestUrl); + +export function resetPasswordResetTemplateCache(): void { + loader.resetCache(); +} + +export async function sendPasswordReset( + { email, jwt }: PasswordResetDeps, + user: User, +): Promise { + if (!user?.email) { + throw new Error("User email is required for password reset"); + } + + const token = jwt.sign( + { + id: user.id, + email: user.email, + type: "reset", + }, + { expiresIn: `${RESET_LIFESPAN_MS}` }, + ); + + const url = `${urlPasswordReset}?token=${encodeURIComponent(token)}`; + + logger.debug(`sendPasswordReset: ${user.email}, url: ${url}`); + + const content = resolveContent( + await loader.load(), + resolveLocale(user.language), + BUILTIN, + ); + const { subject, html, text } = fillTemplate(content, { + resetUrl: url, + }); + + const message: EmailMessage = { + to: user.email, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }; + + await email.send(message); +} diff --git a/src/services/notify/index.ts b/src/services/notify/index.ts index da197f3e..5bb58d49 100644 --- a/src/services/notify/index.ts +++ b/src/services/notify/index.ts @@ -5,3 +5,4 @@ export * from "./transports/slack-webhook"; export * from "./events/email-verification"; export * from "./events/ops-alert"; export * from "./events/comment-tagged"; +export * from "./events/email-password-reset"; diff --git a/src/test/services/notify/email-password-reset.test.ts b/src/test/services/notify/email-password-reset.test.ts new file mode 100644 index 00000000..88182028 --- /dev/null +++ b/src/test/services/notify/email-password-reset.test.ts @@ -0,0 +1,93 @@ +import { Lang } from "need4deed-sdk"; +import { beforeEach, describe, expect, it, vi } from "vitest"; +import { urlPasswordReset } from "../../../config/constants"; +import { fetchJsonFromUrl } from "../../../data/utils"; +import { + resetPasswordResetTemplateCache, + sendPasswordReset, +} from "../../../services/notify/events/email-password-reset"; + +vi.mock("../../../data/utils", () => ({ + fetchJsonFromUrl: vi.fn(), +})); + +const send = vi.fn(); +const deps = { email: { send }, jwt: { sign: () => "tok" } } as any; +const user = (over: any = {}) => ({ id: 1, email: "u@x.de", ...over }); +const expectedUrl = `${urlPasswordReset}?token=${encodeURIComponent("tok")}`; + +const manifest = { + en: { + subject: "Password Reset", + html: '{{resetUrl}}', + text: "reset: {{resetUrl}}", + }, + de: { + subject: "Passwort zurücksetzen", + html: '{{resetUrl}}', + text: "zurücksetzen: {{resetUrl}}", + }, +}; + +beforeEach(() => { + vi.clearAllMocks(); + resetPasswordResetTemplateCache(); +}); + +describe("sendPasswordReset", () => { + it("uses the manifest entry for the user's locale and substitutes the URL", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue(manifest); + + await sendPasswordReset(deps, user({ language: Lang.DE })); + + const msg = send.mock.calls[0][0]; + expect(msg.subject).toBe("Passwort zurücksetzen"); + expect(msg.text).toBe(`zurücksetzen: ${expectedUrl}`); + expect(msg.html).toBe(`${expectedUrl}`); + expect(msg.html).not.toContain("{{resetUrl}}"); + }); + + it("falls back to the default locale (en) for an unsupported language", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue(manifest); + + await sendPasswordReset(deps, user({ language: "fr" })); + + expect(send.mock.calls[0][0].subject).toBe("Password Reset"); + }); + + it("caches the manifest within TTL (single fetch across two sends)", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue(manifest); + + await sendPasswordReset(deps, user({ language: Lang.EN })); + await sendPasswordReset(deps, user({ language: Lang.DE })); + + expect(fetchJsonFromUrl).toHaveBeenCalledTimes(1); + }); + + it("falls back to built-in content when the manifest fetch fails, and still sends", async () => { + vi.mocked(fetchJsonFromUrl).mockRejectedValue(new Error("CDN down")); + + await sendPasswordReset(deps, user({ language: Lang.DE })); + + const msg = send.mock.calls[0][0]; + expect(msg.subject).toBe("Passwort zurücksetzen"); + expect(msg.text).toContain(expectedUrl); + expect(msg.text).not.toContain("{{resetUrl}}"); + }); + + it("falls back to built-in when the manifest entry is invalid (missing body)", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue({ + en: { subject: "no body here" }, + }); + + await sendPasswordReset(deps, user({ language: Lang.EN })); + + expect(send.mock.calls[0][0].subject).toBe("Password Reset"); + }); + + it("throws when the user has no email", async () => { + await expect( + sendPasswordReset(deps, user({ email: undefined })), + ).rejects.toThrow("User email is required"); + }); +}); From 5b4b988725cb3ee7425342d8c3e6ebc2852ccdf9 Mon Sep 17 00:00:00 2001 From: Boris Date: Thu, 25 Jun 2026 11:54:31 +0100 Subject: [PATCH 24/89] feat: add POST /auth/password-reset endpoint --- src/server/plugins/jwt.ts | 3 + src/server/routes/auth.ts | 91 +++++++++++++++++++++++++++++ src/server/types/auth.ts | 1 + src/server/types/enums.ts | 1 + src/test/server/routes/auth.test.ts | 65 +++++++++++++++++++++ 5 files changed, 161 insertions(+) diff --git a/src/server/plugins/jwt.ts b/src/server/plugins/jwt.ts index c6adb7ac..58d8e903 100644 --- a/src/server/plugins/jwt.ts +++ b/src/server/plugins/jwt.ts @@ -35,6 +35,9 @@ async function jwtPlugin( try { await request.jwtVerify(); } catch (_error) { + if (opt?.optional) { + return; + } reply.status(401); throw new Error("Authorization failed."); } diff --git a/src/server/routes/auth.ts b/src/server/routes/auth.ts index 309d42a8..11e8dda6 100644 --- a/src/server/routes/auth.ts +++ b/src/server/routes/auth.ts @@ -7,6 +7,7 @@ import { REFRESH_LIFESPAN_MS, refreshCookieName, } from "../../config/constants"; +import { hashPassword } from "../../data/utils"; import logger from "../../logger"; import { responseErrors } from "../schema/responseErrors"; import { @@ -280,6 +281,96 @@ async function authRoutes( }); }, ); + + fastify.post<{ + Body: { token?: string; password?: string; newPassword: string }; + Reply: { message: string }; + }>( + prefixedPath + RoutePrefix.RESET_PASSWORD, + { + onRequest: [fastify.authenticate({ optional: true })], + schema: { + body: { + type: "object", + properties: { + token: { type: "string" }, + password: { type: "string" }, + newPassword: { type: "string", minLength: 8, maxLength: 50 }, + }, + required: ["newPassword"], + }, + response: { + 200: { + type: "object", + properties: { message: { type: "string" } }, + required: ["message"], + }, + ...responseErrors, + }, + }, + }, + + async (request, reply) => { + const { token, password, newPassword } = request.body; + const TOKEN_ERROR_MESSAGE = "Invalid reset token."; + + if (token) { + let payload: { id: number; email: string; type?: string }; + try { + payload = await fastify.jwt.verify(token); + } catch { + return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); + } + + if (payload.type !== "reset") { + return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); + } + + const user = await fastify.db.userRepository.findOne({ + where: { id: payload.id }, + }); + + if (!user) { + return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); + } + + await fastify.db.userRepository.update( + { id: user.id }, + { password: await hashPassword(newPassword) }, + ); + + return reply.status(200).send({ + message: "Password has been reset.", + }); + } + + const authUser = request.authUser; + if (!authUser) { + return reply.status(403).send({ message: "Authentication required." }); + } + + if (!password) { + return reply + .status(400) + .send({ message: "Current password is required." }); + } + + if (!(await authUser.checkPassword(password))) { + return reply + .status(400) + .send({ message: "Current password is incorrect." }); + } + + await fastify.db.userRepository.update( + { id: authUser.id }, + { password: await hashPassword(newPassword) }, + ); + + return reply.status(200).send({ + message: "Password has been changed successfully.", + }); + }, + ); } export default fp(authRoutes, { diff --git a/src/server/types/auth.ts b/src/server/types/auth.ts index 79f58df3..291122c5 100644 --- a/src/server/types/auth.ts +++ b/src/server/types/auth.ts @@ -3,4 +3,5 @@ import { UserRole } from "need4deed-sdk"; export interface AuthOptions { role?: UserRole; allowSelf?: boolean; + optional?: boolean; } diff --git a/src/server/types/enums.ts b/src/server/types/enums.ts index a245364b..0f57ddde 100644 --- a/src/server/types/enums.ts +++ b/src/server/types/enums.ts @@ -20,6 +20,7 @@ export const RoutePrefix = { PERSON: "/person", REFRESH: "/refresh", REQUEST_RESET: "/request-reset", + RESET_PASSWORD: "/password-reset", REGISTER: "/register", SWAGGER: "/swagger", TRUSTED_DOMAIN: "/trusted-domain", diff --git a/src/test/server/routes/auth.test.ts b/src/test/server/routes/auth.test.ts index f658b93e..9009a2d9 100644 --- a/src/test/server/routes/auth.test.ts +++ b/src/test/server/routes/auth.test.ts @@ -42,3 +42,68 @@ describe("POST /auth/logout", () => { } }); }); + +describe("POST /auth/reset-password", () => { + let fastify: FastifyInstance; + + beforeAll(async () => { + fastify = await createServer(); + await fastify.ready(); + }); + + afterAll(async () => { + await fastify.close(); + }); + + it("rejects a token of type 'access'", async () => { + const nonResetToken = fastify.jwt.sign({ + id: 999, + email: "test@example.com", + type: "access", + }); + + const response = await fastify.inject({ + method: "POST", + url: "/auth/password-reset", + payload: { token: nonResetToken, newPassword: "newpass123456" }, + }); + + expect(response.statusCode).toBe(400); + }); + + it("rejects a token of type 'verify'", async () => { + const nonResetToken = fastify.jwt.sign({ + id: 999, + email: "test@example.com", + type: "verify", + }); + + const response = await fastify.inject({ + method: "POST", + url: "/auth/password-reset", + payload: { token: nonResetToken, newPassword: "newpass123456" }, + }); + + expect(response.statusCode).toBe(400); + }); + + it("rejects an invalid token", async () => { + const response = await fastify.inject({ + method: "POST", + url: "/auth/password-reset", + payload: { token: "not-a-valid-jwt", newPassword: "newpass123456" }, + }); + + expect(response.statusCode).toBe(400); + }); + + it("returns 403 when no token and no auth cookie", async () => { + const response = await fastify.inject({ + method: "POST", + url: "/auth/password-reset", + payload: { newPassword: "newpass123456" }, + }); + + expect(response.statusCode).toBe(403); + }); +}); From 00bf352f88c2995a34ad37631901950732d5ca20 Mon Sep 17 00:00:00 2001 From: Boris Date: Thu, 25 Jun 2026 13:57:06 +0100 Subject: [PATCH 25/89] chore: add green path tests for reset/change password endpoints --- src/test/server/routes/auth.test.ts | 156 +++++++++++++++++++++++++++- 1 file changed, 155 insertions(+), 1 deletion(-) diff --git a/src/test/server/routes/auth.test.ts b/src/test/server/routes/auth.test.ts index 9009a2d9..4abd75d7 100644 --- a/src/test/server/routes/auth.test.ts +++ b/src/test/server/routes/auth.test.ts @@ -1,8 +1,28 @@ import { FastifyInstance } from "fastify"; -import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { + afterAll, + afterEach, + beforeAll, + describe, + expect, + it, + vi, +} from "vitest"; import { accessCookieName, refreshCookieName } from "../../../config/constants"; import { createServer } from "../../../server"; +vi.mock("../../../data/utils", async () => { + const actual = await vi.importActual("../../../data/utils"); + return { + ...actual, + hashPassword: vi + .fn() + .mockImplementation((password: string) => + Promise.resolve("hashed-password-" + password), + ), + }; +}); + describe("POST /auth/logout", () => { let fastify: FastifyInstance; @@ -55,6 +75,10 @@ describe("POST /auth/reset-password", () => { await fastify.close(); }); + afterEach(() => { + vi.restoreAllMocks(); + }); + it("rejects a token of type 'access'", async () => { const nonResetToken = fastify.jwt.sign({ id: 999, @@ -106,4 +130,134 @@ describe("POST /auth/reset-password", () => { expect(response.statusCode).toBe(403); }); + + it("resets password with a valid reset token", async () => { + const resetToken = fastify.jwt.sign({ + id: 999, + email: "test@example.com", + type: "reset", + }); + + vi.spyOn(fastify.db.userRepository, "findOne").mockResolvedValue({ + id: 999, + } as any); + const updateSpy = vi + .spyOn(fastify.db.userRepository, "update") + .mockResolvedValue({} as any); + + const response = await fastify.inject({ + method: "POST", + url: "/auth/password-reset", + payload: { token: resetToken, newPassword: "newpass123456" }, + }); + + expect(updateSpy).toHaveBeenCalledWith( + { id: 999 }, + { password: "hashed-password-newpass123456" }, + ); + expect(response.statusCode).toBe(200); + }); + + it("resets password via cookie when password matches", async () => { + const accessToken = fastify.jwt.sign({ + id: 999, + email: "test@example.com", + type: "access", + }); + + const checkPassword = vi.fn().mockResolvedValue(true); + vi.spyOn(fastify.db.userRepository, "findOne").mockResolvedValue({ + id: 999, + checkPassword, + } as any); + const updateSpy = vi + .spyOn(fastify.db.userRepository, "update") + .mockResolvedValue({} as any); + + const currentPass = "currentpass123"; + const response = await fastify.inject({ + method: "POST", + url: "/auth/password-reset", + cookies: { access: accessToken }, + payload: { password: currentPass, newPassword: "newpass123456" }, + }); + + expect(checkPassword).toHaveBeenCalledWith(currentPass); + expect(updateSpy).toHaveBeenCalledWith( + { id: 999 }, + { password: "hashed-password-newpass123456" }, + ); + expect(response.statusCode).toBe(200); + }); +}); + +describe("POST /auth/request-reset", () => { + let fastify: FastifyInstance; + + beforeAll(async () => { + fastify = await createServer(); + await fastify.ready(); + }); + + afterAll(async () => { + await fastify.close(); + }); + + afterEach(() => { + vi.restoreAllMocks(); + }); + + it("sends reset email when user exists and is active", async () => { + const mockUser = { id: 1, email: "test@example.com", isActive: true }; + vi.spyOn(fastify.db.userRepository, "findOne").mockResolvedValue( + mockUser as any, + ); + + const passwordResetSpy = vi.fn().mockResolvedValue(undefined); + fastify.notify.passwordReset = passwordResetSpy; + + const response = await fastify.inject({ + method: "POST", + url: "/auth/request-reset", + payload: { email: "test@example.com" }, + }); + + expect(response.statusCode).toBe(200); + expect(passwordResetSpy).toHaveBeenCalledWith(mockUser); + }); + + it("does not send email when user is inactive", async () => { + const mockUser = { id: 1, email: "test@example.com", isActive: false }; + vi.spyOn(fastify.db.userRepository, "findOne").mockResolvedValue( + mockUser as any, + ); + + const passwordResetSpy = vi.fn().mockResolvedValue(undefined); + fastify.notify.passwordReset = passwordResetSpy; + + const response = await fastify.inject({ + method: "POST", + url: "/auth/request-reset", + payload: { email: "test@example.com" }, + }); + + expect(response.statusCode).toBe(200); + expect(passwordResetSpy).not.toHaveBeenCalled(); + }); + + it("does not send email when user does not exist", async () => { + vi.spyOn(fastify.db.userRepository, "findOne").mockResolvedValue(null); + + const passwordResetSpy = vi.fn().mockResolvedValue(undefined); + fastify.notify.passwordReset = passwordResetSpy; + + const response = await fastify.inject({ + method: "POST", + url: "/auth/request-reset", + payload: { email: "test@example.com" }, + }); + + expect(response.statusCode).toBe(200); + expect(passwordResetSpy).not.toHaveBeenCalled(); + }); }); From 464290877d95ad575b2e7f5aaf419892db57e3e9 Mon Sep 17 00:00:00 2001 From: Boris Date: Fri, 26 Jun 2026 22:02:47 +0100 Subject: [PATCH 26/89] feat: split password-reset endpoint to password-reset and password-change --- src/server/plugins/jwt.ts | 3 - src/server/routes/auth.ts | 99 +++++++++++++++++------------ src/server/types/auth.ts | 1 - src/server/types/enums.ts | 1 + src/test/server/routes/auth.test.ts | 64 +++++++++++++++---- 5 files changed, 110 insertions(+), 58 deletions(-) diff --git a/src/server/plugins/jwt.ts b/src/server/plugins/jwt.ts index 58d8e903..c6adb7ac 100644 --- a/src/server/plugins/jwt.ts +++ b/src/server/plugins/jwt.ts @@ -35,9 +35,6 @@ async function jwtPlugin( try { await request.jwtVerify(); } catch (_error) { - if (opt?.optional) { - return; - } reply.status(401); throw new Error("Authorization failed."); } diff --git a/src/server/routes/auth.ts b/src/server/routes/auth.ts index 11e8dda6..6155bd7d 100644 --- a/src/server/routes/auth.ts +++ b/src/server/routes/auth.ts @@ -283,21 +283,19 @@ async function authRoutes( ); fastify.post<{ - Body: { token?: string; password?: string; newPassword: string }; + Body: { token: string; newPassword: string }; Reply: { message: string }; }>( prefixedPath + RoutePrefix.RESET_PASSWORD, { - onRequest: [fastify.authenticate({ optional: true })], schema: { body: { type: "object", properties: { token: { type: "string" }, - password: { type: "string" }, newPassword: { type: "string", minLength: 8, maxLength: 50 }, }, - required: ["newPassword"], + required: ["token", "newPassword"], }, response: { 200: { @@ -309,52 +307,69 @@ async function authRoutes( }, }, }, - async (request, reply) => { - const { token, password, newPassword } = request.body; + const { token, newPassword } = request.body; const TOKEN_ERROR_MESSAGE = "Invalid reset token."; - if (token) { - let payload: { id: number; email: string; type?: string }; - try { - payload = await fastify.jwt.verify(token); - } catch { - return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); - } - - if (payload.type !== "reset") { - return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); - } - - const user = await fastify.db.userRepository.findOne({ - where: { id: payload.id }, - }); - - if (!user) { - return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); - } - - await fastify.db.userRepository.update( - { id: user.id }, - { password: await hashPassword(newPassword) }, - ); - - return reply.status(200).send({ - message: "Password has been reset.", - }); + let payload: { id: number; email: string; type?: string }; + try { + payload = await fastify.jwt.verify(token); + } catch { + return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); } - const authUser = request.authUser; - if (!authUser) { - return reply.status(403).send({ message: "Authentication required." }); + if (payload.type !== "reset") { + return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); } - if (!password) { - return reply - .status(400) - .send({ message: "Current password is required." }); + const user = await fastify.db.userRepository.findOne({ + where: { id: payload.id }, + }); + if (!user) { + return reply.status(400).send({ message: TOKEN_ERROR_MESSAGE }); } + await fastify.db.userRepository.update( + { id: user.id }, + { password: await hashPassword(newPassword) }, + ); + + return reply.status(200).send({ + message: "Password has been reset.", + }); + }, + ); + + fastify.post<{ + Body: { password: string; newPassword: string }; + Reply: { message: string }; + }>( + prefixedPath + RoutePrefix.CHANGE_PASSWORD, + { + onRequest: [fastify.authenticate()], + schema: { + body: { + type: "object", + properties: { + password: { type: "string" }, + newPassword: { type: "string", minLength: 8, maxLength: 50 }, + }, + required: ["password", "newPassword"], + }, + response: { + 200: { + type: "object", + properties: { message: { type: "string" } }, + required: ["message"], + }, + ...responseErrors, + }, + }, + }, + async (request, reply) => { + const { password, newPassword } = request.body; + const authUser = request.authUser!; + if (!(await authUser.checkPassword(password))) { return reply .status(400) @@ -367,7 +382,7 @@ async function authRoutes( ); return reply.status(200).send({ - message: "Password has been changed successfully.", + message: "Password has been changed.", }); }, ); diff --git a/src/server/types/auth.ts b/src/server/types/auth.ts index 291122c5..79f58df3 100644 --- a/src/server/types/auth.ts +++ b/src/server/types/auth.ts @@ -3,5 +3,4 @@ import { UserRole } from "need4deed-sdk"; export interface AuthOptions { role?: UserRole; allowSelf?: boolean; - optional?: boolean; } diff --git a/src/server/types/enums.ts b/src/server/types/enums.ts index 0f57ddde..95f8c4c5 100644 --- a/src/server/types/enums.ts +++ b/src/server/types/enums.ts @@ -21,6 +21,7 @@ export const RoutePrefix = { REFRESH: "/refresh", REQUEST_RESET: "/request-reset", RESET_PASSWORD: "/password-reset", + CHANGE_PASSWORD: "/password-change", REGISTER: "/register", SWAGGER: "/swagger", TRUSTED_DOMAIN: "/trusted-domain", diff --git a/src/test/server/routes/auth.test.ts b/src/test/server/routes/auth.test.ts index 4abd75d7..f1010b0e 100644 --- a/src/test/server/routes/auth.test.ts +++ b/src/test/server/routes/auth.test.ts @@ -121,16 +121,6 @@ describe("POST /auth/reset-password", () => { expect(response.statusCode).toBe(400); }); - it("returns 403 when no token and no auth cookie", async () => { - const response = await fastify.inject({ - method: "POST", - url: "/auth/password-reset", - payload: { newPassword: "newpass123456" }, - }); - - expect(response.statusCode).toBe(403); - }); - it("resets password with a valid reset token", async () => { const resetToken = fastify.jwt.sign({ id: 999, @@ -157,8 +147,58 @@ describe("POST /auth/reset-password", () => { ); expect(response.statusCode).toBe(200); }); +}); + +describe("POST /auth/password-change", () => { + let fastify: FastifyInstance; - it("resets password via cookie when password matches", async () => { + beforeAll(async () => { + fastify = await createServer(); + await fastify.ready(); + }); + + afterAll(async () => { + await fastify.close(); + }); + + afterEach(() => { + vi.restoreAllMocks(); + }); + + it("returns 401 when not authenticated", async () => { + const response = await fastify.inject({ + method: "POST", + url: "/auth/password-change", + payload: { password: "currentpass123", newPassword: "newpass123456" }, + }); + + expect(response.statusCode).toBe(401); + }); + + it("returns 400 when current password is incorrect", async () => { + const accessToken = fastify.jwt.sign({ + id: 999, + email: "test@example.com", + type: "access", + }); + + const checkPassword = vi.fn().mockResolvedValue(false); + vi.spyOn(fastify.db.userRepository, "findOne").mockResolvedValue({ + id: 999, + checkPassword, + } as any); + + const response = await fastify.inject({ + method: "POST", + url: "/auth/password-change", + cookies: { access: accessToken }, + payload: { password: "wrongpass", newPassword: "newpass123456" }, + }); + + expect(response.statusCode).toBe(400); + }); + + it("changes password when current password matches", async () => { const accessToken = fastify.jwt.sign({ id: 999, email: "test@example.com", @@ -177,7 +217,7 @@ describe("POST /auth/reset-password", () => { const currentPass = "currentpass123"; const response = await fastify.inject({ method: "POST", - url: "/auth/password-reset", + url: "/auth/password-change", cookies: { access: accessToken }, payload: { password: currentPass, newPassword: "newpass123456" }, }); From 49b1dc363fbe4513dfb3129489fa52e28c415f31 Mon Sep 17 00:00:00 2001 From: Boris Date: Fri, 26 Jun 2026 22:11:48 +0100 Subject: [PATCH 27/89] chore: move auth.routes schemas for reset-request, change/reset-password to schemas folder --- src/server/routes/auth.ts | 60 ++++++++------------------------ src/server/schema/user.schema.ts | 30 ++++++++++++++++ 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/src/server/routes/auth.ts b/src/server/routes/auth.ts index 6155bd7d..8635bf1f 100644 --- a/src/server/routes/auth.ts +++ b/src/server/routes/auth.ts @@ -11,12 +11,16 @@ import { hashPassword } from "../../data/utils"; import logger from "../../logger"; import { responseErrors } from "../schema/responseErrors"; import { + changePasswordSchema, + messageResponseSchema, refreshAccessResponseSchema, refreshAccessSchema, + requestResetSchema, + resetPasswordSchema, userLoginResponseSchema, userLoginSchema, } from "../schema/user.schema"; -import { RoutePrefix } from "../types"; +import { ReplyMessage, RoutePrefix } from "../types"; async function authRoutes( fastify: FastifyInstance, @@ -217,11 +221,7 @@ async function authRoutes( { schema: { response: { - 200: { - type: "object", - properties: { message: { type: "string" } }, - required: ["message"], - }, + 200: messageResponseSchema, ...responseErrors, }, }, @@ -240,22 +240,14 @@ async function authRoutes( fastify.post<{ Body: { email: string }; - Reply: { message: string }; + Reply: ReplyMessage; }>( prefixedPath + RoutePrefix.REQUEST_RESET, { schema: { - body: { - type: "object", - properties: { email: { type: "string", format: "email" } }, - required: ["email"], - }, + body: requestResetSchema, response: { - 200: { - type: "object", - properties: { message: { type: "string" } }, - required: ["message"], - }, + 200: messageResponseSchema, ...responseErrors, }, }, @@ -284,25 +276,14 @@ async function authRoutes( fastify.post<{ Body: { token: string; newPassword: string }; - Reply: { message: string }; + Reply: ReplyMessage; }>( prefixedPath + RoutePrefix.RESET_PASSWORD, { schema: { - body: { - type: "object", - properties: { - token: { type: "string" }, - newPassword: { type: "string", minLength: 8, maxLength: 50 }, - }, - required: ["token", "newPassword"], - }, + body: resetPasswordSchema, response: { - 200: { - type: "object", - properties: { message: { type: "string" } }, - required: ["message"], - }, + 200: messageResponseSchema, ...responseErrors, }, }, @@ -342,26 +323,15 @@ async function authRoutes( fastify.post<{ Body: { password: string; newPassword: string }; - Reply: { message: string }; + Reply: ReplyMessage; }>( prefixedPath + RoutePrefix.CHANGE_PASSWORD, { onRequest: [fastify.authenticate()], schema: { - body: { - type: "object", - properties: { - password: { type: "string" }, - newPassword: { type: "string", minLength: 8, maxLength: 50 }, - }, - required: ["password", "newPassword"], - }, + body: changePasswordSchema, response: { - 200: { - type: "object", - properties: { message: { type: "string" } }, - required: ["message"], - }, + 200: messageResponseSchema, ...responseErrors, }, }, diff --git a/src/server/schema/user.schema.ts b/src/server/schema/user.schema.ts index 0548f900..8af3892a 100644 --- a/src/server/schema/user.schema.ts +++ b/src/server/schema/user.schema.ts @@ -133,3 +133,33 @@ export const userResponseSchemaIncludePerson = { "person", ], }; + +export const messageResponseSchema = { + type: "object", + properties: { message: { type: "string" } }, + required: ["message"], +}; + +export const requestResetSchema = { + type: "object", + properties: { email: { type: "string", format: "email" } }, + required: ["email"], +}; + +export const resetPasswordSchema = { + type: "object", + properties: { + token: { type: "string" }, + newPassword: { type: "string", minLength: 8, maxLength: 50 }, + }, + required: ["token", "newPassword"], +}; + +export const changePasswordSchema = { + type: "object", + properties: { + password: { type: "string" }, + newPassword: { type: "string", minLength: 8, maxLength: 50 }, + }, + required: ["password", "newPassword"], +}; From e8b59ee95eb62438696ce47e20c3911187df3fc3 Mon Sep 17 00:00:00 2001 From: Boris Date: Fri, 26 Jun 2026 22:24:52 +0100 Subject: [PATCH 28/89] refactor: specific error classes for authenticate middleware --- src/server/plugins/jwt.ts | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/server/plugins/jwt.ts b/src/server/plugins/jwt.ts index c6adb7ac..5e758d4c 100644 --- a/src/server/plugins/jwt.ts +++ b/src/server/plugins/jwt.ts @@ -2,6 +2,11 @@ import fastifyJwt from "@fastify/jwt"; import { FastifyInstance, FastifyReply, FastifyRequest } from "fastify"; import fp from "fastify-plugin"; import { UserRole } from "need4deed-sdk"; +import { + BadRequestError, + UnauthenticatedError, + UnauthorizedError, +} from "../../config"; import { accessCookieName, cookieOptions } from "../../config/constants"; import logger from "../../logger"; import { AuthOptions } from "../types"; @@ -34,9 +39,9 @@ async function jwtPlugin( try { try { await request.jwtVerify(); - } catch (_error) { + } catch { reply.status(401); - throw new Error("Authorization failed."); + throw new UnauthenticatedError("Authorization failed."); } const userId = request.user?.id; @@ -53,7 +58,7 @@ async function jwtPlugin( if (!user) { reply.status(404); - throw new Error("User not found."); + throw new BadRequestError("User not found."); } // Expose the already-loaded user (carries personId + DB-authoritative @@ -77,14 +82,14 @@ async function jwtPlugin( if (role && role !== user.role) { reply.status(403); - throw new Error("Permission denied"); + throw new UnauthorizedError("Permission denied"); } if (allowSelf) { const requestParamId = (request.params as { id?: string }).id; if (String(userId) !== requestParamId) { reply.status(403); - throw new Error("Permission denied"); + throw new UnauthorizedError("Permission denied"); } } } catch (error) { From 16fb81dabc829b98532eae2f50cfd287e1f4055a Mon Sep 17 00:00:00 2001 From: Boris Date: Sun, 28 Jun 2026 12:49:03 +0100 Subject: [PATCH 29/89] refactor: authenticate, remove reply status calls, bypass try catch for BaseError --- src/server/plugins/jwt.ts | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/server/plugins/jwt.ts b/src/server/plugins/jwt.ts index 5e758d4c..97b8677b 100644 --- a/src/server/plugins/jwt.ts +++ b/src/server/plugins/jwt.ts @@ -4,6 +4,7 @@ import fp from "fastify-plugin"; import { UserRole } from "need4deed-sdk"; import { BadRequestError, + BaseError, UnauthenticatedError, UnauthorizedError, } from "../../config"; @@ -40,7 +41,6 @@ async function jwtPlugin( try { await request.jwtVerify(); } catch { - reply.status(401); throw new UnauthenticatedError("Authorization failed."); } @@ -57,7 +57,6 @@ async function jwtPlugin( }); if (!user) { - reply.status(404); throw new BadRequestError("User not found."); } @@ -81,23 +80,26 @@ async function jwtPlugin( ); if (role && role !== user.role) { - reply.status(403); throw new UnauthorizedError("Permission denied"); } if (allowSelf) { const requestParamId = (request.params as { id?: string }).id; if (String(userId) !== requestParamId) { - reply.status(403); throw new UnauthorizedError("Permission denied"); } } } catch (error) { logger.warn(`JWT verification failed: ${error.message}`); // Log the warning - reply.send({ - message: `Authentication failed: ${error.message}`, - error: error.message, - }); + + if (error instanceof BaseError) { + throw error; + } else { + reply.send({ + message: `Authentication failed: ${error.message}`, + error: error.message, + }); + } } }; }); From a75c9e4723350d7ca319e0901c0fb11a4d355a23 Mon Sep 17 00:00:00 2001 From: Boris Date: Sun, 28 Jun 2026 12:50:10 +0100 Subject: [PATCH 30/89] chore: make auth.test to be runnable without db spinned up, make tests little bit more specific by checking message --- src/test/server/routes/auth.test.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/test/server/routes/auth.test.ts b/src/test/server/routes/auth.test.ts index f1010b0e..b52404b7 100644 --- a/src/test/server/routes/auth.test.ts +++ b/src/test/server/routes/auth.test.ts @@ -11,6 +11,14 @@ import { import { accessCookieName, refreshCookieName } from "../../../config/constants"; import { createServer } from "../../../server"; +vi.mock("../../../data", async () => { + const actual = await vi.importActual("../../../data"); + return { + ...actual, + initDatabase: vi.fn().mockImplementation(() => Promise.resolve()), + }; +}); + vi.mock("../../../data/utils", async () => { const actual = await vi.importActual("../../../data/utils"); return { @@ -92,6 +100,10 @@ describe("POST /auth/reset-password", () => { payload: { token: nonResetToken, newPassword: "newpass123456" }, }); + // Since 400 can also be returned for other reasons, check message + expect(response.json()).toEqual({ + message: "Invalid reset token.", + }); expect(response.statusCode).toBe(400); }); @@ -108,6 +120,10 @@ describe("POST /auth/reset-password", () => { payload: { token: nonResetToken, newPassword: "newpass123456" }, }); + // Since 400 can also be returned for other reasons, check message + expect(response.json()).toEqual({ + message: "Invalid reset token.", + }); expect(response.statusCode).toBe(400); }); @@ -118,6 +134,10 @@ describe("POST /auth/reset-password", () => { payload: { token: "not-a-valid-jwt", newPassword: "newpass123456" }, }); + // Since 400 can also be returned for other reasons, check message + expect(response.json()).toEqual({ + message: "Invalid reset token.", + }); expect(response.statusCode).toBe(400); }); @@ -195,6 +215,10 @@ describe("POST /auth/password-change", () => { payload: { password: "wrongpass", newPassword: "newpass123456" }, }); + // Since 400 can also be returned for other reasons, check message + expect(response.json()).toEqual({ + message: "Current password is incorrect.", + }); expect(response.statusCode).toBe(400); }); From ec32634319d896ab0a0d432a96d75cb18f21e0da Mon Sep 17 00:00:00 2001 From: Boris Date: Sun, 28 Jun 2026 13:03:34 +0100 Subject: [PATCH 31/89] chore: use responseSchema for request-reset, password-reset, password-change endpoints --- src/server/routes/auth.ts | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/src/server/routes/auth.ts b/src/server/routes/auth.ts index 8635bf1f..e304e9f4 100644 --- a/src/server/routes/auth.ts +++ b/src/server/routes/auth.ts @@ -9,6 +9,7 @@ import { } from "../../config/constants"; import { hashPassword } from "../../data/utils"; import logger from "../../logger"; +import { responseSchema } from "../schema"; import { responseErrors } from "../schema/responseErrors"; import { changePasswordSchema, @@ -246,10 +247,7 @@ async function authRoutes( { schema: { body: requestResetSchema, - response: { - 200: messageResponseSchema, - ...responseErrors, - }, + response: responseSchema(""), }, }, async (request, reply) => { @@ -282,10 +280,7 @@ async function authRoutes( { schema: { body: resetPasswordSchema, - response: { - 200: messageResponseSchema, - ...responseErrors, - }, + response: responseSchema(""), }, }, async (request, reply) => { @@ -330,10 +325,7 @@ async function authRoutes( onRequest: [fastify.authenticate()], schema: { body: changePasswordSchema, - response: { - 200: messageResponseSchema, - ...responseErrors, - }, + response: responseSchema(""), }, }, async (request, reply) => { From 69f4840179f2f4cd5fdd3774e6500e5a12380b9e Mon Sep 17 00:00:00 2001 From: Boris Date: Mon, 29 Jun 2026 12:57:11 +0100 Subject: [PATCH 32/89] refactor: remove enveloping try catch from authenticate, unneeded reply.status(200), change no tound user error to UnauthorizedError --- src/server/plugins/jwt.ts | 95 +++++++++++++++------------------------ 1 file changed, 36 insertions(+), 59 deletions(-) diff --git a/src/server/plugins/jwt.ts b/src/server/plugins/jwt.ts index 97b8677b..91c8dbb7 100644 --- a/src/server/plugins/jwt.ts +++ b/src/server/plugins/jwt.ts @@ -1,13 +1,8 @@ import fastifyJwt from "@fastify/jwt"; -import { FastifyInstance, FastifyReply, FastifyRequest } from "fastify"; +import { FastifyInstance, FastifyRequest } from "fastify"; import fp from "fastify-plugin"; import { UserRole } from "need4deed-sdk"; -import { - BadRequestError, - BaseError, - UnauthenticatedError, - UnauthorizedError, -} from "../../config"; +import { UnauthenticatedError, UnauthorizedError } from "../../config"; import { accessCookieName, cookieOptions } from "../../config/constants"; import logger from "../../logger"; import { AuthOptions } from "../types"; @@ -25,7 +20,7 @@ async function jwtPlugin( }); fastify.decorate("authenticate", function (opt?: AuthOptions) { - return async function (request: FastifyRequest, reply: FastifyReply) { + return async function (request: FastifyRequest) { logger.debug( `jwtPlugin:authenticate called with request.routeOptions.config: ${JSON.stringify(request.routeOptions.config)}`, ); @@ -38,67 +33,49 @@ async function jwtPlugin( } try { - try { - await request.jwtVerify(); - } catch { - throw new UnauthenticatedError("Authorization failed."); - } - - const userId = request.user?.id; - logger.debug(`jwtPlugin:authenticated: ${userId}`); - - const userRepository = fastify.db.userRepository; - if (!userRepository) { - throw new Error("User repository is not initialized."); - } - - const user = await userRepository.findOne({ - where: { id: userId }, - }); + await request.jwtVerify(); + } catch { + throw new UnauthenticatedError("Authorization failed."); + } - if (!user) { - throw new BadRequestError("User not found."); - } + const userId = request.user?.id; + logger.debug(`jwtPlugin:authenticated: ${userId}`); - // Expose the already-loaded user (carries personId + DB-authoritative - // role) for downstream hooks (PII masking, self-auth) — avoids a second - // lookup and a JWT claim. - request.authUser = user; + const userRepository = fastify.db.userRepository; + const user = await userRepository.findOne({ + where: { id: userId }, + }); - if (user.role === UserRole.ADMIN) { - logger.debug( - `Admin user ${userId} authenticated, bypassing further checks.`, - ); - reply.status(200); - return; - } + if (!user) { + throw new UnauthorizedError("User not found."); + } - const { role, allowSelf } = opt || {}; + // Expose the already-loaded user (carries personId + DB-authoritative + // role) for downstream hooks (PII masking, self-auth) — avoids a second + // lookup and a JWT claim. + request.authUser = user; + if (user.role === UserRole.ADMIN) { logger.debug( - `authenticate role:${role}, allowSelf:${allowSelf}, userId:${userId}`, + `Admin user ${userId} authenticated, bypassing further checks.`, ); + return; + } - if (role && role !== user.role) { - throw new UnauthorizedError("Permission denied"); - } + const { role, allowSelf } = opt || {}; - if (allowSelf) { - const requestParamId = (request.params as { id?: string }).id; - if (String(userId) !== requestParamId) { - throw new UnauthorizedError("Permission denied"); - } - } - } catch (error) { - logger.warn(`JWT verification failed: ${error.message}`); // Log the warning + logger.debug( + `authenticate role:${role}, allowSelf:${allowSelf}, userId:${userId}`, + ); + + if (role && role !== user.role) { + throw new UnauthorizedError("Permission denied"); + } - if (error instanceof BaseError) { - throw error; - } else { - reply.send({ - message: `Authentication failed: ${error.message}`, - error: error.message, - }); + if (allowSelf) { + const requestParamId = (request.params as { id?: string }).id; + if (String(userId) !== requestParamId) { + throw new UnauthorizedError("Permission denied"); } } }; From 8755a34d86a0c0f949ed9c04d25d7b00d637a8ae Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Mon, 29 Jun 2026 17:20:28 +0000 Subject: [PATCH 33/89] fix: clear auth cookies at the start of POST /auth/login MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Any login attempt — successful or not — now starts with a clean slate, preventing stale sessions from persisting after a failed login. Co-Authored-By: Claude Sonnet 4.6 --- src/server/routes/auth.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server/routes/auth.ts b/src/server/routes/auth.ts index e304e9f4..e7342b36 100644 --- a/src/server/routes/auth.ts +++ b/src/server/routes/auth.ts @@ -51,6 +51,9 @@ async function authRoutes( }, }, async (request, reply) => { + reply.clearCookie(accessCookieName, cookieOptions); + reply.clearCookie(refreshCookieName, cookieOptions); + const { email, password } = request.body; if (!email || !password) { From 3645fe8fdf07a6b336ff911b7228c63531f7fa91 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 30 Jun 2026 11:12:17 +0000 Subject: [PATCH 34/89] feat: refactor seeds into reference/dev/fixtures layers; add e2e smoke tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Seeds reorganised into three focused layers: - `reference/` — 10 idempotent lookup-table seeders behind a single `seedReference()` entry point; safe to call on any environment - `dev/` — Notion-JSON entity seeders (agents, volunteers, opportunities) moved here from the flat seeds root - `fixtures/test.ts` — fully synthetic test dataset (4 users, 2 agents, 3 volunteers, 4 opportunities, 3 OV matches) keyed by TEST_EMAILS; idempotent guard prevents double-seeding E2e smoke test infrastructure wired up: - `vitest.e2e.config.ts` — separate vitest config with globalSetup, sequential file execution (`fileParallelism: false`), own PORT - `src/test/e2e/setup/global.ts` — runs migrations + all seeds once before any test worker starts - `src/test/e2e/helpers/app.ts` — `createTestApp()` / `getCookie()` helpers - `src/test/e2e/smoke/` — health-check and full auth-flow smoke tests (6 tests, all green) Run with: `yarn test:e2e` (requires Postgres) Co-Authored-By: Claude Sonnet 4.6 --- package.json | 1 + src/data/seeds/agent.seed.ts | 129 ----- src/data/seeds/dev-parsing.ts | 17 - src/data/seeds/fixtures/test.ts | 462 ++++++++++++++++++ src/data/seeds/opportunity.seed.ts | 127 ----- .../seeds/{ => reference}/activity.seed.ts | 12 +- .../seeds/{ => reference}/category.seed.ts | 10 +- .../seeds/{ => reference}/district.seed.ts | 14 +- .../{ => reference}/field_translation.seed.ts | 20 +- src/data/seeds/reference/index.ts | 24 + .../seeds/{ => reference}/language.seed.ts | 10 +- .../seeds/{ => reference}/lead_from.seed.ts | 10 +- src/data/seeds/{ => reference}/option.seed.ts | 21 +- .../seeds/{ => reference}/postcode.seed.ts | 10 +- src/data/seeds/{ => reference}/skill.seed.ts | 10 +- .../seeds/{ => reference}/timeslot.seed.ts | 6 +- src/data/seeds/seed.ts | 32 +- src/data/seeds/types.ts | 114 ----- src/data/seeds/utils.ts | 2 +- src/data/seeds/volunteer.seed.ts | 86 ---- src/test/e2e/helpers/app.ts | 15 + src/test/e2e/setup/global.ts | 28 ++ src/test/e2e/smoke/auth.test.ts | 95 ++++ src/test/e2e/smoke/health.test.ts | 23 + tsconfig.json | 2 +- vitest.e2e.config.ts | 36 ++ 26 files changed, 755 insertions(+), 561 deletions(-) delete mode 100644 src/data/seeds/agent.seed.ts delete mode 100644 src/data/seeds/dev-parsing.ts create mode 100644 src/data/seeds/fixtures/test.ts delete mode 100644 src/data/seeds/opportunity.seed.ts rename src/data/seeds/{ => reference}/activity.seed.ts (84%) rename src/data/seeds/{ => reference}/category.seed.ts (82%) rename src/data/seeds/{ => reference}/district.seed.ts (82%) rename src/data/seeds/{ => reference}/field_translation.seed.ts (96%) create mode 100644 src/data/seeds/reference/index.ts rename src/data/seeds/{ => reference}/language.seed.ts (83%) rename src/data/seeds/{ => reference}/lead_from.seed.ts (82%) rename src/data/seeds/{ => reference}/option.seed.ts (84%) rename src/data/seeds/{ => reference}/postcode.seed.ts (84%) rename src/data/seeds/{ => reference}/skill.seed.ts (81%) rename src/data/seeds/{ => reference}/timeslot.seed.ts (90%) delete mode 100644 src/data/seeds/types.ts delete mode 100644 src/data/seeds/volunteer.seed.ts create mode 100644 src/test/e2e/helpers/app.ts create mode 100644 src/test/e2e/setup/global.ts create mode 100644 src/test/e2e/smoke/auth.test.ts create mode 100644 src/test/e2e/smoke/health.test.ts create mode 100644 vitest.e2e.config.ts diff --git a/package.json b/package.json index 1102b587..1ec11eaa 100644 --- a/package.json +++ b/package.json @@ -68,6 +68,7 @@ "test:watch": "yarn test --watch", "test:coverage": "yarn test --coverage", "test:ui": "yarn test --ui", + "test:e2e": "vitest run --config vitest.e2e.config.ts", "prepare": "husky", "what": "./get-json-field-value.sh package.json" }, diff --git a/src/data/seeds/agent.seed.ts b/src/data/seeds/agent.seed.ts deleted file mode 100644 index f727d045..00000000 --- a/src/data/seeds/agent.seed.ts +++ /dev/null @@ -1,129 +0,0 @@ -import { EntityTableName } from "need4deed-sdk"; -import { DataSource } from "typeorm"; -import { seedAgentsFile, titleOrphanageAgent } from "../../config"; -import { tryCatch } from "../../services/utils"; -import Postcode from "../entity/location/postcode.entity"; -import AgentPerson from "../entity/m2m/agent-person"; -import AgentPostcode from "../entity/m2m/agent-postcode"; -import NotionRelation from "../entity/notion-relation.entity"; -import Agent from "../entity/opportunity/agent.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { AgentJSON } from "./types"; -import { - getAgentEngagement, - getAgentPersonRole, - getAgentSearchStatus, - getAgentService, - getAgentTrustLevel, - getAgentType, - getCount, - getOrCreatePerson, -} from "./utils"; - -export async function seedAgents(dataSource: DataSource): Promise { - const agentRepository = getRepository(dataSource, Agent); - - const count = await getCount(agentRepository); - if (count !== 0) { - dataSource.logger.log("log", "Skipping seeding agents."); - return; - } - - const agentsJson = (await fetchJsonFromUrl(seedAgentsFile)) as AgentJSON[]; - - // create an agent for orphan opportunities - agentsJson.unshift({ - title: titleOrphanageAgent, - about: "the dummy agent account for parenting orphaned opportunities.", - } as AgentJSON); - - for (const agentJson of agentsJson ?? []) { - const agentObj = new Agent({ - title: agentJson.title || agentJson.website || "unknown", - info: agentJson.about, - website: agentJson.website, - type: getAgentType(agentJson.type), - trustLevel: getAgentTrustLevel(agentJson.trustLevel), - searchStatus: getAgentSearchStatus(agentJson.statusSearch), - engagementStatus: getAgentEngagement(agentJson.statusEngagement), - services: agentJson.services?.map(getAgentService), - }); - const [agent, error] = await tryCatch(agentRepository.save(agentObj)); - - if (error) { - dataSource.logger.log( - "warn", - `While creating an agent ${agentJson.nid} occurred: ${error}`, - ); - continue; - } - - const agentPostcodeRepository = getRepository(dataSource, AgentPostcode); - const postcodeRepository = getRepository(dataSource, Postcode); - const postcode12345 = await postcodeRepository.findOneBy({ - value: "12345", - }); - const postcodesJson = agentJson.postcodes ?? []; - for (const postcodeJson of postcodesJson) { - const postcode = await postcodeRepository.findOneBy({ - value: postcodeJson, - }); - const [, error] = await tryCatch( - agentPostcodeRepository.save( - new AgentPostcode({ postcode: postcode! || postcode12345, agent }), - ), - ); - - if (error) { - dataSource.logger.log( - "warn", - `During storing postcode:${postcodeJson} for agent:${agentJson.nid} occurred: ${error}`, - ); - } - } - - const personsJson = agentJson.person ?? []; - for (const personJson of personsJson) { - if (Object.values(personJson).filter(Boolean).length) { - const person = await getOrCreatePerson(personJson, dataSource); - const agentPersonRepository = getRepository(dataSource, AgentPerson); - const agentPersonOnj = new AgentPerson({ - agentId: agent.id, - personId: person.id, - role: getAgentPersonRole(personJson.role), - }); - const [, error] = await tryCatch( - agentPersonRepository.save(agentPersonOnj), - ); - if (error) { - dataSource.logger.log( - "warn", - `Storing agent-person m2m (agentId:${agent.id}, personId:${person.id}) occurred: ${error}`, - ); - } - } - } - - const notionRelationRepository = getRepository(dataSource, NotionRelation); - const opportunityNids = agentJson.opportunityNids ?? []; - for (const opportunityNid of opportunityNids) { - const notionRel = new NotionRelation({ - hostId: agent.id, - hostType: EntityTableName.AGENT, - hostNid: agentJson.nid, - tenantType: EntityTableName.OPPORTUNITY, - tenantNid: opportunityNid, - }); - - const [, error] = await tryCatch( - notionRelationRepository.save(notionRel), - ); - if (error) { - dataSource.logger.log( - "warn", - `Storing notion relation (agentNid:${agentJson.nid}, opportunityNid:${opportunityNid}) occurred: ${error}`, - ); - } - } - } -} diff --git a/src/data/seeds/dev-parsing.ts b/src/data/seeds/dev-parsing.ts deleted file mode 100644 index 60ea9bf0..00000000 --- a/src/data/seeds/dev-parsing.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { DataSource } from "typeorm"; -import { seedVolunteersFile } from "../../config"; -import { fetchJsonFromUrl } from "../utils"; -import { VolunteerJSON } from "./types"; -import { createDealTimeslots } from "./utils"; - -export async function devTime(dataSource: DataSource) { - const volunteersJson = (await fetchJsonFromUrl( - seedVolunteersFile, - )) as VolunteerJSON[]; - - for (const volunteerJson of volunteersJson) { - if (volunteerJson.nid === "VOLVO-525") { - await createDealTimeslots(dataSource, volunteerJson.deal.time); - } - } -} diff --git a/src/data/seeds/fixtures/test.ts b/src/data/seeds/fixtures/test.ts new file mode 100644 index 00000000..e1ad9556 --- /dev/null +++ b/src/data/seeds/fixtures/test.ts @@ -0,0 +1,462 @@ +import { + AgentRoleType, + DocumentStatusType, + LangProficiency, + OpportunityType, + OpportunityVolunteerStatusType, + UserRole, + VolunteerStateEngagementType, +} from "need4deed-sdk"; +import { DataSource } from "typeorm"; +import logger from "../../../logger"; +import Deal from "../../entity/deal.entity"; +import Address from "../../entity/location/address.entity"; +import District from "../../entity/location/district.entity"; +import Postcode from "../../entity/location/postcode.entity"; +import AgentPerson from "../../entity/m2m/agent-person"; +import AgentPostcode from "../../entity/m2m/agent-postcode"; +import DealActivity from "../../entity/m2m/deal-activity"; +import DealDistrict from "../../entity/m2m/deal-district"; +import DealLanguage from "../../entity/m2m/deal-language"; +import DealSkill from "../../entity/m2m/deal-skill"; +import DealTimeslot from "../../entity/m2m/deal-timeslot"; +import OpportunityVolunteer from "../../entity/m2m/opportunity-volunteer"; +import Accompanying from "../../entity/opportunity/accompanying.entity"; +import Agent from "../../entity/opportunity/agent.entity"; +import Opportunity from "../../entity/opportunity/opportunity.entity"; +import Organization from "../../entity/organization.entity"; +import Person from "../../entity/person.entity"; +import Activity from "../../entity/profile/activity.entity"; +import Language from "../../entity/profile/language.entity"; +import Skill from "../../entity/profile/skill.entity"; +import Timeslot from "../../entity/time/timeslot.entity"; +import User from "../../entity/user.entity"; +import Volunteer from "../../entity/volunteer/volunteer.entity"; +import { DealType } from "../../types"; +import { getRepository, hashPassword } from "../../utils"; + +export const TEST_EMAILS = { + admin: "admin@test.need4deed.org", + coordinator: "coordinator@test.need4deed.org", + agentUser: "agent@test.need4deed.org", + volunteerUser: "volunteer@test.need4deed.org", +}; + +function makeEventTimeslot( + date: Date, + startHour: number, + endHour: number, +): Partial { + const start = new Date(date); + start.setHours(startHour, 0, 0, 0); + const end = new Date(date); + end.setHours(endHour, 0, 0, 0); + return { start, end }; +} + +function daysFromNow(n: number): Date { + const d = new Date(); + d.setDate(d.getDate() + n); + return d; +} + +async function makeDeal( + dataSource: DataSource, + type: DealType, + postcodeId: number, + opts: { + activityIds?: number[]; + skillIds?: number[]; + languages?: Array<{ languageId: number; proficiency: LangProficiency }>; + timeslotIds?: number[]; + districtIds?: number[]; + } = {}, +): Promise { + const dealRepo = getRepository(dataSource, Deal); + const deal = await dealRepo.save(new Deal({ type, postcodeId })); + + if (opts.activityIds?.length) { + const repo = getRepository(dataSource, DealActivity); + for (const activityId of opts.activityIds) { + await repo.save(new DealActivity({ dealId: deal.id, activityId })); + } + } + if (opts.skillIds?.length) { + const repo = getRepository(dataSource, DealSkill); + for (const skillId of opts.skillIds) { + await repo.save(new DealSkill({ dealId: deal.id, skillId })); + } + } + if (opts.languages?.length) { + const repo = getRepository(dataSource, DealLanguage); + for (const { languageId, proficiency } of opts.languages) { + await repo.save( + new DealLanguage({ dealId: deal.id, languageId, proficiency }), + ); + } + } + if (opts.timeslotIds?.length) { + const repo = getRepository(dataSource, DealTimeslot); + for (const timeslotId of opts.timeslotIds) { + await repo.save(new DealTimeslot({ dealId: deal.id, timeslotId })); + } + } + if (opts.districtIds?.length) { + const repo = getRepository(dataSource, DealDistrict); + for (const districtId of opts.districtIds) { + await repo.save(new DealDistrict({ dealId: deal.id, districtId })); + } + } + + return deal; +} + +export async function seedTestFixtures(dataSource: DataSource): Promise { + const userRepo = getRepository(dataSource, User); + + const existing = await userRepo.findOneBy({ email: TEST_EMAILS.admin }); + if (existing) { + logger.info("Skipping test fixtures — already seeded."); + return; + } + + // --- reference lookups --- + const postcodeRepo = getRepository(dataSource, Postcode); + const languageRepo = getRepository(dataSource, Language); + const activityRepo = getRepository(dataSource, Activity); + const skillRepo = getRepository(dataSource, Skill); + const districtRepo = getRepository(dataSource, District); + const timeslotRepo = getRepository(dataSource, Timeslot); + + const [pc10115, pc12043, pc13347] = await Promise.all([ + postcodeRepo.findOneByOrFail({ value: "10115" }), + postcodeRepo.findOneByOrFail({ value: "12043" }), + postcodeRepo.findOneByOrFail({ value: "13347" }), + ]); + const [langDe, langEn, langAr] = await Promise.all([ + languageRepo.findOneByOrFail({ isoCode: "de" }), + languageRepo.findOneByOrFail({ isoCode: "en" }), + languageRepo.findOneByOrFail({ isoCode: "ar" }), + ]); + const [actLangCafe, actTranslation, actDaycare, actSports] = + await Promise.all([ + activityRepo.findOneByOrFail({ title: "Language café" }), + activityRepo.findOneByOrFail({ title: "Translation" }), + activityRepo.findOneByOrFail({ title: "Daycare" }), + activityRepo.findOneByOrFail({ title: "Sports" }), + ]); + const [skillDrawing, skillPainting] = await Promise.all([ + skillRepo.findOneByOrFail({ title: "Drawing" }), + skillRepo.findOneByOrFail({ title: "Painting" }), + ]); + const [distMitte, distNeukoelln] = await Promise.all([ + districtRepo.findOneByOrFail({ title: "Mitte" }), + districtRepo.findOneByOrFail({ title: "Neukölln" }), + ]); + const [tsMoMorning, tsWeeMorning, tsFriNoon, tsTueAfternoon] = + await Promise.all([ + timeslotRepo.findOneByOrFail({ info: "MO-morning" }), + timeslotRepo.findOneByOrFail({ info: "WE-morning" }), + timeslotRepo.findOneByOrFail({ info: "FR-noon" }), + timeslotRepo.findOneByOrFail({ info: "TU-afternoon" }), + ]); + + // --- users --- + const pwHash = await hashPassword("test_password"); + + const adminPerson = new Person({ firstName: "Test", lastName: "Admin" }); + const userAdmin = new User({ + email: TEST_EMAILS.admin, + password: pwHash, + role: UserRole.ADMIN, + isActive: true, + person: adminPerson, + }); + + const coordinatorPerson = new Person({ + firstName: "Test", + lastName: "Coordinator", + }); + const userCoordinator = new User({ + email: TEST_EMAILS.coordinator, + password: pwHash, + role: UserRole.COORDINATOR, + isActive: true, + person: coordinatorPerson, + }); + + const agentContactPerson = new Person({ + firstName: "Test", + lastName: "AgentContact", + email: TEST_EMAILS.agentUser, + }); + const userAgentUser = new User({ + email: TEST_EMAILS.agentUser, + password: pwHash, + role: UserRole.USER, + isActive: true, + person: agentContactPerson, + }); + + const vol1Person = new Person({ + firstName: "Test", + lastName: "Volunteer", + email: TEST_EMAILS.volunteerUser, + }); + const userVolunteerUser = new User({ + email: TEST_EMAILS.volunteerUser, + password: pwHash, + role: UserRole.USER, + isActive: true, + person: vol1Person, + }); + + await userRepo.save([ + userAdmin, + userCoordinator, + userAgentUser, + userVolunteerUser, + ]); + + // reload persons with their generated IDs (cascaded by User save) + const personAgentContact = userAgentUser.person; + const personVol1 = userVolunteerUser.person; + + // --- agents --- + const addressRepo = getRepository(dataSource, Address); + const orgRepo = getRepository(dataSource, Organization); + const agentRepo = getRepository(dataSource, Agent); + const agentPersonRepo = getRepository(dataSource, AgentPerson); + const agentPostcodeRepo = getRepository(dataSource, AgentPostcode); + const personRepo = getRepository(dataSource, Person); + + // Agent 1 + const address1 = await addressRepo.save( + new Address({ title: "Test RAB HQ", postcodeId: pc10115.id }), + ); + const org1 = await orgRepo.save( + new Organization({ + title: "Test RAB Org", + addressId: address1.id, + personId: personAgentContact.id, + }), + ); + const agent1 = await agentRepo.save( + new Agent({ title: "Test RAB", organizationId: org1.id }), + ); + await agentPersonRepo.save( + new AgentPerson({ + agentId: agent1.id, + personId: personAgentContact.id, + role: AgentRoleType.VOLUNTEER_COORDINATOR, + }), + ); + await agentPostcodeRepo.save( + new AgentPostcode({ agentId: agent1.id, postcodeId: pc10115.id }), + ); + + // Agent 2 + const agent2ContactPerson = await personRepo.save( + new Person({ firstName: "Test", lastName: "Agent2Contact" }), + ); + const address2 = await addressRepo.save( + new Address({ title: "Test WiB HQ", postcodeId: pc12043.id }), + ); + const org2 = await orgRepo.save( + new Organization({ + title: "Test WiB Org", + addressId: address2.id, + personId: agent2ContactPerson.id, + }), + ); + const agent2 = await agentRepo.save( + new Agent({ title: "Test WiB", organizationId: org2.id }), + ); + await agentPersonRepo.save( + new AgentPerson({ + agentId: agent2.id, + personId: agent2ContactPerson.id, + role: AgentRoleType.OTHER, + }), + ); + await agentPostcodeRepo.save( + new AgentPostcode({ agentId: agent2.id, postcodeId: pc12043.id }), + ); + + // --- volunteers --- + const volunteerRepo = getRepository(dataSource, Volunteer); + + const deal1 = await makeDeal(dataSource, DealType.VOLUNTEER, pc10115.id, { + activityIds: [actLangCafe.id], + skillIds: [skillDrawing.id], + languages: [ + { languageId: langDe.id, proficiency: LangProficiency.ADVANCED }, + { languageId: langEn.id, proficiency: LangProficiency.INTERMEDIATE }, + ], + timeslotIds: [tsMoMorning.id, tsWeeMorning.id], + districtIds: [distMitte.id], + }); + const volunteer1 = await volunteerRepo.save( + new Volunteer({ + person: personVol1, + deal: deal1, + statusEngagement: VolunteerStateEngagementType.ACTIVE, + statusCGC: DocumentStatusType.YES, + statusVaccination: DocumentStatusType.YES, + infoAbout: "Test volunteer 1 — enjoys language exchange.", + infoExperience: "Tutoring 2 years.", + }), + ); + + const personVol2 = await personRepo.save( + new Person({ firstName: "Maria", lastName: "Schmidt" }), + ); + const deal2 = await makeDeal(dataSource, DealType.VOLUNTEER, pc12043.id, { + activityIds: [actDaycare.id], + skillIds: [skillPainting.id], + languages: [{ languageId: langDe.id, proficiency: LangProficiency.NATIVE }], + timeslotIds: [tsTueAfternoon.id], + districtIds: [distNeukoelln.id], + }); + const volunteer2 = await volunteerRepo.save( + new Volunteer({ person: personVol2, deal: deal2 }), + ); + + const personVol3 = await personRepo.save( + new Person({ firstName: "Ahmet", lastName: "Yilmaz" }), + ); + const deal3 = await makeDeal(dataSource, DealType.VOLUNTEER, pc13347.id, { + activityIds: [actSports.id, actTranslation.id], + languages: [ + { languageId: langAr.id, proficiency: LangProficiency.NATIVE }, + { languageId: langDe.id, proficiency: LangProficiency.BEGINNER }, + ], + timeslotIds: [tsFriNoon.id], + districtIds: [distMitte.id], + }); + const volunteer3 = await volunteerRepo.save( + new Volunteer({ person: personVol3, deal: deal3 }), + ); + + // --- opportunities --- + const opportunityRepo = getRepository(dataSource, Opportunity); + const accompanyingRepo = getRepository(dataSource, Accompanying); + + const oppDeal1 = await makeDeal( + dataSource, + DealType.OPPORTUNITY, + pc10115.id, + { + activityIds: [actLangCafe.id], + languages: [ + { languageId: langDe.id, proficiency: LangProficiency.ADVANCED }, + ], + timeslotIds: [tsMoMorning.id, tsWeeMorning.id], + districtIds: [distMitte.id], + }, + ); + const opp1 = await opportunityRepo.save( + new Opportunity({ + title: "Test Language Café", + type: OpportunityType.REGULAR, + agentId: agent1.id, + deal: oppDeal1, + numberVolunteers: 2, + }), + ); + + const oppDeal2 = await makeDeal( + dataSource, + DealType.OPPORTUNITY, + pc10115.id, + { + activityIds: [actSports.id], + timeslotIds: [tsMoMorning.id], + districtIds: [distMitte.id], + }, + ); + const opp2 = await opportunityRepo.save( + new Opportunity({ + title: "Test Sports Event", + type: OpportunityType.EVENTS, + agentId: agent1.id, + deal: oppDeal2, + numberVolunteers: 5, + }), + ); + + const eventDate = daysFromNow(14); + const accompanyingTimeslot = makeEventTimeslot(eventDate, 9, 12); + const accompanying = await accompanyingRepo.save( + new Accompanying({ + address: "Musterstraße 1, Berlin", + name: "Test Appointment", + date: accompanyingTimeslot.start, + postcodeId: pc12043.id, + }), + ); + const oppDeal3 = await makeDeal( + dataSource, + DealType.OPPORTUNITY, + pc12043.id, + { activityIds: [actDaycare.id], districtIds: [distNeukoelln.id] }, + ); + const opp3 = await opportunityRepo.save( + new Opportunity({ + title: "Test Accompanying Appointment", + type: OpportunityType.ACCOMPANYING, + agentId: agent2.id, + deal: oppDeal3, + accompanyingId: accompanying.id, + numberVolunteers: 1, + }), + ); + + const oppDeal4 = await makeDeal( + dataSource, + DealType.OPPORTUNITY, + pc12043.id, + { + activityIds: [actTranslation.id], + languages: [ + { languageId: langAr.id, proficiency: LangProficiency.NATIVE }, + ], + districtIds: [distNeukoelln.id], + }, + ); + await opportunityRepo.save( + new Opportunity({ + title: "Test Translation Support", + type: OpportunityType.REGULAR, + agentId: agent2.id, + deal: oppDeal4, + numberVolunteers: 1, + }), + ); + + // --- matches --- + const ovRepo = getRepository(dataSource, OpportunityVolunteer); + await ovRepo.save( + new OpportunityVolunteer({ + opportunityId: opp1.id, + volunteerId: volunteer1.id, + status: OpportunityVolunteerStatusType.ACTIVE, + }), + ); + await ovRepo.save( + new OpportunityVolunteer({ + opportunityId: opp3.id, + volunteerId: volunteer2.id, + status: OpportunityVolunteerStatusType.PENDING, + }), + ); + await ovRepo.save( + new OpportunityVolunteer({ + opportunityId: opp2.id, + volunteerId: volunteer3.id, + status: OpportunityVolunteerStatusType.MATCHED, + }), + ); + + logger.info("Test fixtures seeded."); +} diff --git a/src/data/seeds/opportunity.seed.ts b/src/data/seeds/opportunity.seed.ts deleted file mode 100644 index be64bb14..00000000 --- a/src/data/seeds/opportunity.seed.ts +++ /dev/null @@ -1,127 +0,0 @@ -import { - EntityTableName, - OpportunityType, - TranslatedIntoType, -} from "need4deed-sdk"; -import { DataSource } from "typeorm"; -import { seedOpportunitiesFile } from "../../config/constants"; -import logger from "../../logger"; -import { tryCatch } from "../../services/utils"; -import NotionRelation from "../entity/notion-relation.entity"; -import Accompanying from "../entity/opportunity/accompanying.entity"; -import Opportunity from "../entity/opportunity/opportunity.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { OpportunityJSON } from "./types"; -import { - createDeal, - getCount, - getEnumValue, - getOrCreateAgent, - getToTranslate, -} from "./utils"; - -export async function seedOpportunities(dataSource: DataSource): Promise { - if (!dataSource) { - throw new Error("DataSource is not initialized."); - } - - const opportunityRepository = getRepository(dataSource, Opportunity); - - const count = await getCount(opportunityRepository); - if (count !== 0) { - logger.info("Skipping seeding opportunities."); - return; - } - - const opportunities = (await fetchJsonFromUrl( - seedOpportunitiesFile, - )) as OpportunityJSON[]; - - for (const opportunity of opportunities ?? []) { - try { - const title = opportunity.title; - - if (!title) { - throw new Error("title is missing."); - } - - const deal = await createDeal(opportunity.deal, dataSource); - - const notionRelationRepository = getRepository( - dataSource, - NotionRelation, - ); - const [notionRelation] = await tryCatch( - notionRelationRepository.findOne({ - where: { - tenantNid: opportunity.nid, - tenantType: EntityTableName.OPPORTUNITY, - hostType: EntityTableName.AGENT, - }, - }), - ); - - const accompanyingRepository = getRepository(dataSource, Accompanying); - const [accompanying] = await tryCatch( - opportunity.accompanying - ? accompanyingRepository.save( - new Accompanying({ - address: opportunity.accompanying.address || "Berlin", - name: opportunity.accompanying.name || "unknown", - phone: opportunity.accompanying.phone, - date: new Date(opportunity.accompanying.date), - languageToTranslate: getToTranslate( - opportunity.accompanying.languageToTranslate, - ), - }), - ) - : Promise.reject(), - ); - - const newOpportunity = new Opportunity({ - title, - type: - getEnumValue(OpportunityType, opportunity.type) || - OpportunityType.REGULAR, - translationType: - getEnumValue(TranslatedIntoType, opportunity.translationType) || - TranslatedIntoType.NO_TRANSLATION, - info: opportunity.info || "", - infoConfidential: opportunity.infoConfidential || "", - numberVolunteers: Number(opportunity.numberVolunteers || 1), - createdAt: new Date(opportunity.timestamp), - updatedAt: new Date(opportunity.timestamp), - ...(accompanying?.id ? { accompanyingId: accompanying.id } : {}), - ...(notionRelation?.hostId - ? { agentId: notionRelation?.hostId } - : { agent: await getOrCreateAgent(opportunity.agent, dataSource) }), - deal, - }); - await opportunityRepository.save(newOpportunity); - - for (const [volunteerNid, payroll] of opportunity.volunteerNids) { - const [, error] = await tryCatch( - notionRelationRepository.save( - new NotionRelation({ - payroll, - hostNid: opportunity.nid, - hostId: newOpportunity.id, - hostType: EntityTableName.OPPORTUNITY, - tenantNid: volunteerNid, - tenantType: EntityTableName.VOLUNTEER, - }), - ), - ); - if (error) { - logger.warn( - `Seems like pair: ${opportunity.nid}-${volunteerNid} already exists.`, - ); - } - } - } catch (error) { - logger.info( - `Creation of opportunity ${opportunity?.title} rolled back due to error: ${(error as Error).message}`, - ); - } - } -} diff --git a/src/data/seeds/activity.seed.ts b/src/data/seeds/reference/activity.seed.ts similarity index 84% rename from src/data/seeds/activity.seed.ts rename to src/data/seeds/reference/activity.seed.ts index 55f28544..d802f4ed 100644 --- a/src/data/seeds/activity.seed.ts +++ b/src/data/seeds/reference/activity.seed.ts @@ -1,10 +1,10 @@ import { DataSource } from "typeorm"; -import { seedActivityFile } from "../../config/constants"; -import logger from "../../logger"; -import Activity from "../entity/profile/activity.entity"; -import Category from "../entity/profile/category.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +import { seedActivityFile } from "../../../config/constants"; +import logger from "../../../logger"; +import Activity from "../../entity/profile/activity.entity"; +import Category from "../../entity/profile/category.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; interface ActivityJSON { id: string; diff --git a/src/data/seeds/category.seed.ts b/src/data/seeds/reference/category.seed.ts similarity index 82% rename from src/data/seeds/category.seed.ts rename to src/data/seeds/reference/category.seed.ts index cc1b0875..4a5ffe00 100644 --- a/src/data/seeds/category.seed.ts +++ b/src/data/seeds/reference/category.seed.ts @@ -1,9 +1,9 @@ import { DataSource } from "typeorm"; -import { seedCategoryFile } from "../../config/constants"; -import logger from "../../logger"; -import Category from "../entity/profile/category.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +import { seedCategoryFile } from "../../../config/constants"; +import logger from "../../../logger"; +import Category from "../../entity/profile/category.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; interface CategoryJSON { id: string; diff --git a/src/data/seeds/district.seed.ts b/src/data/seeds/reference/district.seed.ts similarity index 82% rename from src/data/seeds/district.seed.ts rename to src/data/seeds/reference/district.seed.ts index 3b4f8034..f716d081 100644 --- a/src/data/seeds/district.seed.ts +++ b/src/data/seeds/reference/district.seed.ts @@ -1,11 +1,11 @@ import { DataSource } from "typeorm"; -import { seedDistrictFile } from "../../config/constants"; -import logger from "../../logger"; -import District from "../entity/location/district.entity"; -import Postcode from "../entity/location/postcode.entity"; -import DistrictPostcode from "../entity/m2m/district-postcode"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +import { seedDistrictFile } from "../../../config/constants"; +import logger from "../../../logger"; +import District from "../../entity/location/district.entity"; +import Postcode from "../../entity/location/postcode.entity"; +import DistrictPostcode from "../../entity/m2m/district-postcode"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; interface DistrictJSON { district: string; diff --git a/src/data/seeds/field_translation.seed.ts b/src/data/seeds/reference/field_translation.seed.ts similarity index 96% rename from src/data/seeds/field_translation.seed.ts rename to src/data/seeds/reference/field_translation.seed.ts index 10a6e0e5..69a9e8bf 100644 --- a/src/data/seeds/field_translation.seed.ts +++ b/src/data/seeds/reference/field_translation.seed.ts @@ -6,16 +6,16 @@ import { seedLanguageInUseFile, seedLeadFromFile, seedSkillFile, -} from "../../config/constants"; -import logger from "../../logger"; -import FieldTranslation from "../entity/field_translation.entity"; -import LeadFrom from "../entity/lead.entity"; -import Activity from "../entity/profile/activity.entity"; -import Category from "../entity/profile/category.entity"; -import Language from "../entity/profile/language.entity"; -import Skill from "../entity/profile/skill.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +} from "../../../config/constants"; +import logger from "../../../logger"; +import FieldTranslation from "../../entity/field_translation.entity"; +import LeadFrom from "../../entity/lead.entity"; +import Activity from "../../entity/profile/activity.entity"; +import Category from "../../entity/profile/category.entity"; +import Language from "../../entity/profile/language.entity"; +import Skill from "../../entity/profile/skill.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; const fieldNameTitle = "title"; const fieldNameDescription = "description"; diff --git a/src/data/seeds/reference/index.ts b/src/data/seeds/reference/index.ts new file mode 100644 index 00000000..bdf350a1 --- /dev/null +++ b/src/data/seeds/reference/index.ts @@ -0,0 +1,24 @@ +import { DataSource } from "typeorm"; +import { seedActivity } from "./activity.seed"; +import { seedCategory } from "./category.seed"; +import { seedDistrict } from "./district.seed"; +import { seedFieldTranslation } from "./field_translation.seed"; +import { seedLanguage } from "./language.seed"; +import { seedLeadFrom } from "./lead_from.seed"; +import { seedOptions } from "./option.seed"; +import { seedPostcode } from "./postcode.seed"; +import { seedSkill } from "./skill.seed"; +import { seedTimeslots } from "./timeslot.seed"; + +export async function seedReference(dataSource: DataSource): Promise { + await seedLanguage(dataSource); + await seedCategory(dataSource); + await seedActivity(dataSource); + await seedSkill(dataSource); + await seedLeadFrom(dataSource); + await seedFieldTranslation(dataSource); + await seedPostcode(dataSource); + await seedDistrict(dataSource); + await seedOptions(dataSource); + await seedTimeslots(dataSource); +} diff --git a/src/data/seeds/language.seed.ts b/src/data/seeds/reference/language.seed.ts similarity index 83% rename from src/data/seeds/language.seed.ts rename to src/data/seeds/reference/language.seed.ts index 737d1b3f..33cdf54f 100644 --- a/src/data/seeds/language.seed.ts +++ b/src/data/seeds/reference/language.seed.ts @@ -1,9 +1,9 @@ import { DataSource } from "typeorm"; -import { seedLanguageFile } from "../../config/constants"; -import logger from "../../logger"; -import Language from "../entity/profile/language.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +import { seedLanguageFile } from "../../../config/constants"; +import logger from "../../../logger"; +import Language from "../../entity/profile/language.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; interface LanguageJSON { iso_code: string; diff --git a/src/data/seeds/lead_from.seed.ts b/src/data/seeds/reference/lead_from.seed.ts similarity index 82% rename from src/data/seeds/lead_from.seed.ts rename to src/data/seeds/reference/lead_from.seed.ts index a3e62b08..a8f3d45b 100644 --- a/src/data/seeds/lead_from.seed.ts +++ b/src/data/seeds/reference/lead_from.seed.ts @@ -1,9 +1,9 @@ import { DataSource } from "typeorm"; -import { seedLeadFromFile } from "../../config/constants"; -import logger from "../../logger"; -import LeadFrom from "../entity/lead.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +import { seedLeadFromFile } from "../../../config/constants"; +import logger from "../../../logger"; +import LeadFrom from "../../entity/lead.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; interface LeadJSON { id: string; diff --git a/src/data/seeds/option.seed.ts b/src/data/seeds/reference/option.seed.ts similarity index 84% rename from src/data/seeds/option.seed.ts rename to src/data/seeds/reference/option.seed.ts index b6c8633d..12048e20 100644 --- a/src/data/seeds/option.seed.ts +++ b/src/data/seeds/reference/option.seed.ts @@ -1,15 +1,15 @@ import { EntityTableName } from "need4deed-sdk"; import { DataSource, In, Repository } from "typeorm"; -import { seedLanguageInUseFile } from "../../config/constants"; -import logger from "../../logger"; -import LeadFrom from "../entity/lead.entity"; -import District from "../entity/location/district.entity"; -import Option from "../entity/option.entity"; -import Activity from "../entity/profile/activity.entity"; -import Language from "../entity/profile/language.entity"; -import Skill from "../entity/profile/skill.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +import { seedLanguageInUseFile } from "../../../config/constants"; +import logger from "../../../logger"; +import LeadFrom from "../../entity/lead.entity"; +import District from "../../entity/location/district.entity"; +import Option from "../../entity/option.entity"; +import Activity from "../../entity/profile/activity.entity"; +import Language from "../../entity/profile/language.entity"; +import Skill from "../../entity/profile/skill.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; interface ContentEnDe { en: string; @@ -74,7 +74,6 @@ async function getOptionsForEntity( dataSource, entity as new () => InstanceType, ); - // const itemType = entity.name.toLowerCase() as TranslationEntityType; const itemType = dataSource.getMetadata(entity).tableName as EntityTableName; const items = await entityRepository.find(); if (!items.length) { diff --git a/src/data/seeds/postcode.seed.ts b/src/data/seeds/reference/postcode.seed.ts similarity index 84% rename from src/data/seeds/postcode.seed.ts rename to src/data/seeds/reference/postcode.seed.ts index 77e88c1c..c9cd574c 100644 --- a/src/data/seeds/postcode.seed.ts +++ b/src/data/seeds/reference/postcode.seed.ts @@ -1,9 +1,9 @@ import { DataSource } from "typeorm"; -import { seedPLZFile } from "../../config/constants"; -import logger from "../../logger"; -import Postcode from "../entity/location/postcode.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +import { seedPLZFile } from "../../../config/constants"; +import logger from "../../../logger"; +import Postcode from "../../entity/location/postcode.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; interface PLZJSON { plz: string; diff --git a/src/data/seeds/skill.seed.ts b/src/data/seeds/reference/skill.seed.ts similarity index 81% rename from src/data/seeds/skill.seed.ts rename to src/data/seeds/reference/skill.seed.ts index 457970e8..eb8181f6 100644 --- a/src/data/seeds/skill.seed.ts +++ b/src/data/seeds/reference/skill.seed.ts @@ -1,9 +1,9 @@ import { DataSource } from "typeorm"; -import { seedSkillFile } from "../../config/constants"; -import logger from "../../logger"; -import Skill from "../entity/profile/skill.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { getCount } from "./utils"; +import { seedSkillFile } from "../../../config/constants"; +import logger from "../../../logger"; +import Skill from "../../entity/profile/skill.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { getCount } from "../utils"; interface SkillJSON { id: string; diff --git a/src/data/seeds/timeslot.seed.ts b/src/data/seeds/reference/timeslot.seed.ts similarity index 90% rename from src/data/seeds/timeslot.seed.ts rename to src/data/seeds/reference/timeslot.seed.ts index f78a24bd..de405906 100644 --- a/src/data/seeds/timeslot.seed.ts +++ b/src/data/seeds/reference/timeslot.seed.ts @@ -1,8 +1,8 @@ import { OccasionalType } from "need4deed-sdk"; import { DataSource } from "typeorm"; -import Timeslot from "../entity/time/timeslot.entity"; -import { getRepository } from "../utils"; -import { getCount } from "./utils"; +import Timeslot from "../../entity/time/timeslot.entity"; +import { getRepository } from "../../utils"; +import { getCount } from "../utils"; export async function seedTimeslots(dataSource: DataSource): Promise { const timeslotRepository = getRepository(dataSource, Timeslot); diff --git a/src/data/seeds/seed.ts b/src/data/seeds/seed.ts index 82556e80..b9fa294e 100644 --- a/src/data/seeds/seed.ts +++ b/src/data/seeds/seed.ts @@ -1,33 +1,17 @@ import { DataSource } from "typeorm"; import { check } from ".."; -import { seedActivity } from "./activity.seed"; -import { seedAgents } from "./agent.seed"; -import { seedCategory } from "./category.seed"; -import { devTime } from "./dev-parsing"; -import { seedDistrict } from "./district.seed"; -import { seedFieldTranslation } from "./field_translation.seed"; -import { seedLanguage } from "./language.seed"; -import { seedLeadFrom } from "./lead_from.seed"; -import { seedOpportunities } from "./opportunity.seed"; -import { seedOptions } from "./option.seed"; -import { seedPostcode } from "./postcode.seed"; -import { seedSkill } from "./skill.seed"; -import { seedTimeslots } from "./timeslot.seed"; +import { seedAgents } from "./dev/agent.seed"; +import { devTime } from "./dev/dev-parsing"; +import { seedOpportunities } from "./dev/opportunity.seed"; +import { seedVolunteers } from "./dev/volunteer.seed"; +import { seedReference } from "./reference"; import { seedUser } from "./user.seed"; -import { seedVolunteers } from "./volunteer.seed"; + +export { seedReference } from "./reference"; export async function seed(dataSource: DataSource) { - await seedLanguage(dataSource); - await seedCategory(dataSource); - await seedActivity(dataSource); - await seedSkill(dataSource); - await seedLeadFrom(dataSource); - await seedFieldTranslation(dataSource); - await seedPostcode(dataSource); - await seedDistrict(dataSource); - await seedOptions(dataSource); + await seedReference(dataSource); await seedUser(dataSource); - await seedTimeslots(dataSource); if (check.flag) { devTime(dataSource); } else { diff --git a/src/data/seeds/types.ts b/src/data/seeds/types.ts deleted file mode 100644 index c04f28c3..00000000 --- a/src/data/seeds/types.ts +++ /dev/null @@ -1,114 +0,0 @@ -import { - DocumentStatusType, - LangProficiency, - OpportunityType, - VolunteerStateType, -} from "need4deed-sdk"; -import { DealType } from "../types"; - -export interface ProfileJSON { - info: string; - activities: string[]; - skills: string[]; - languages: [string, LangProficiency][]; -} -export interface TimeJSON { - timeslots: { - day: string; - daytime: string[]; - info: string; - start: string; - }[]; -} -export interface LocationJSON { - districts: string[]; -} -export interface DealJSON { - type: DealType; - postcode: string; - profile: ProfileJSON; - time: TimeJSON; - location: LocationJSON; -} -export interface AddressJSON { - postcode: number; - street?: string; -} -export interface PersonJSON { - firstName: string; - middleName: string; - lastName: string; - email: string; - phone: string; - address: AddressJSON; -} -export interface OrganizationJSON { - title: string; - phone: string; - email: string; - address: AddressJSON; - person: PersonJSON; -} -export interface _AgentJSON { - title: string; - page_id: string; - organization: OrganizationJSON; - person: PersonJSON; - postcode: string; -} -export interface VolunteerJSON { - nid: string; - timestamp: string; - status: VolunteerStateType; - statusEngagement: string; - accompanying: boolean; - statusCGC: DocumentStatusType; - statusVaccination: DocumentStatusType; - infoAbout: string; - infoExperience: string; - person: PersonJSON; - deal: DealJSON; -} -export interface AccompanyingJSON { - address: string; - name: string; - phone: string; - date: string; - languageToTranslate: string; -} -export interface OpportunityJSON { - status: string; - title: string; - nid: string; - timestamp: string; - type: OpportunityType; - translationType: string; - info: string; - numberVolunteers: string; - infoConfidential: string; - deal: DealJSON; - agent: _AgentJSON; - accompanying?: AccompanyingJSON; - volunteerNids: string[]; -} -export interface AgentJSON { - nid: string; - title: string; - about: string; - website: string; - type: string; - district: object; - trustLevel: string; - statusEngagement: string; - statusSearch: string; - languages: string; - services: string[]; - address: object; - postcodes: string[]; - phone: string; - status: string; - person: (PersonJSON & { role: string })[]; - operator: string; - opportunityNids: string[]; - accompanyingRelations: string[]; -} diff --git a/src/data/seeds/utils.ts b/src/data/seeds/utils.ts index 92969028..b817e7cf 100644 --- a/src/data/seeds/utils.ts +++ b/src/data/seeds/utils.ts @@ -51,7 +51,7 @@ import { PersonJSON, TimeJSON, VolunteerJSON, -} from "./types"; +} from "./dev/types"; const noGenderAvatarUrl = "all_genders_avatar.png"; diff --git a/src/data/seeds/volunteer.seed.ts b/src/data/seeds/volunteer.seed.ts deleted file mode 100644 index 949a416e..00000000 --- a/src/data/seeds/volunteer.seed.ts +++ /dev/null @@ -1,86 +0,0 @@ -import { EntityTableName, OpportunityVolunteerStatusType } from "need4deed-sdk"; -import { DataSource } from "typeorm"; -import { seedVolunteersFile } from "../../config/constants"; -import logger from "../../logger"; -import OpportunityVolunteer from "../entity/m2m/opportunity-volunteer"; -import NotionRelation from "../entity/notion-relation.entity"; -import Volunteer from "../entity/volunteer/volunteer.entity"; -import { fetchJsonFromUrl, getRepository } from "../utils"; -import { VolunteerJSON } from "./types"; -import { - createDeal, - getCount, - getDocumentStatus, - getEnumValue, - getOrCreatePerson, - getVolunteerState, -} from "./utils"; - -export async function seedVolunteers(dataSource: DataSource): Promise { - if (!dataSource) { - throw new Error("DataSource is not initialized."); - } - - const volunteerRepository = getRepository(dataSource, Volunteer); - - const count = await getCount(volunteerRepository); - if (count !== 0) { - logger.info("Skipping seeding volunteers."); - return; - } - - const volunteers = (await fetchJsonFromUrl( - seedVolunteersFile, - )) as VolunteerJSON[]; - - for (const volunteer of volunteers ?? []) { - try { - const person = await getOrCreatePerson(volunteer.person, dataSource); - - const deal = await createDeal(volunteer.deal, dataSource); - - const newVolunteer = new Volunteer({ - ...getVolunteerState(volunteer), - statusCGC: getDocumentStatus(volunteer.statusCGC), - statusVaccination: getDocumentStatus(volunteer.statusVaccination), - infoAbout: volunteer.infoAbout || "", - infoExperience: volunteer.infoExperience || "", - createdAt: new Date(volunteer.timestamp), - updatedAt: new Date(volunteer.timestamp), - person, - deal, - }); - await volunteerRepository.save(newVolunteer); - - const notionRelationRepository = getRepository( - dataSource, - NotionRelation, - ); - const relationsOpp = await notionRelationRepository.find({ - where: { - hostType: EntityTableName.OPPORTUNITY, - tenantType: EntityTableName.VOLUNTEER, - tenantNid: volunteer.nid, - }, - }); - - const opportunityVolunteerRepository = getRepository( - dataSource, - OpportunityVolunteer, - ); - for (const { payroll, hostId } of relationsOpp ?? []) { - await opportunityVolunteerRepository.save( - new OpportunityVolunteer({ - status: getEnumValue(OpportunityVolunteerStatusType, payroll), - opportunityId: hostId, - volunteerId: newVolunteer.id, - }), - ); - } - } catch (error) { - logger.info( - `Creation of volunteer ${volunteer?.person?.email} rolled back due to error: ${(error as Error).message}`, - ); - } - } -} diff --git a/src/test/e2e/helpers/app.ts b/src/test/e2e/helpers/app.ts new file mode 100644 index 00000000..171764fa --- /dev/null +++ b/src/test/e2e/helpers/app.ts @@ -0,0 +1,15 @@ +import { FastifyInstance } from "fastify"; +import { createServer } from "../../../server"; + +export async function createTestApp(): Promise { + const app = await createServer(); + await app.ready(); + return app; +} + +export function getCookie( + cookies: { name: string; value: string }[], + name: string, +): string | undefined { + return cookies.find((c) => c.name === name)?.value; +} diff --git a/src/test/e2e/setup/global.ts b/src/test/e2e/setup/global.ts new file mode 100644 index 00000000..580657ad --- /dev/null +++ b/src/test/e2e/setup/global.ts @@ -0,0 +1,28 @@ +/** + * Vitest global setup for e2e tests. + * + * Runs once in the main vitest process before any test workers start. + * Applies migrations and seeds all reference + test fixture data so that + * test files can connect to an already-prepared database. + * + * Seeds are idempotent — re-running against an existing DB is safe. + */ +export async function setup(): Promise { + // Dynamic imports avoid decorator metadata issues in the global setup context. + const { dataSource } = await import("../../../data/data-source"); + const { seedReference } = await import("../../../data/seeds/seed"); + const { seedUser } = await import("../../../data/seeds/user.seed"); + const { seedTestFixtures } = await import( + "../../../data/seeds/fixtures/test" + ); + + await dataSource.initialize(); + await dataSource.runMigrations(); + await seedReference(dataSource); + await seedUser(dataSource); + await seedTestFixtures(dataSource); + // Do not destroy: @AfterInsert hooks on OpportunityVolunteer fire async and + // use this same dataSource singleton. Destroying here would cut them off. + // Vitest forks get their own module instances; this connection is only in + // the main process and is released when vitest exits. +} diff --git a/src/test/e2e/smoke/auth.test.ts b/src/test/e2e/smoke/auth.test.ts new file mode 100644 index 00000000..79352f84 --- /dev/null +++ b/src/test/e2e/smoke/auth.test.ts @@ -0,0 +1,95 @@ +import { FastifyInstance } from "fastify"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { accessCookieName, refreshCookieName } from "../../../config/constants"; +import { TEST_EMAILS } from "../../../data/seeds/fixtures/test"; +import { createTestApp, getCookie } from "../helpers/app"; + +describe("smoke: auth flow", () => { + let app: FastifyInstance; + + beforeAll(async () => { + app = await createTestApp(); + }); + + afterAll(async () => { + await app.close(); + }); + + describe("POST /auth/login", () => { + it("rejects invalid credentials with 401", async () => { + const res = await app.inject({ + method: "POST", + url: "/auth/login", + payload: { email: TEST_EMAILS.admin, password: "wrong_password" }, + }); + expect(res.statusCode).toBe(401); + }); + + it("accepts valid admin credentials and sets httpOnly cookies", async () => { + const res = await app.inject({ + method: "POST", + url: "/auth/login", + payload: { email: TEST_EMAILS.admin, password: "test_password" }, + }); + expect(res.statusCode).toBe(200); + + const access = getCookie(res.cookies, accessCookieName); + const refresh = getCookie(res.cookies, refreshCookieName); + expect(access).toBeDefined(); + expect(refresh).toBeDefined(); + + const accessCookieMeta = res.cookies.find( + (c) => c.name === accessCookieName, + ); + expect(accessCookieMeta?.httpOnly).toBe(true); + }); + }); + + describe("GET /user/me", () => { + it("returns 401 without auth cookie", async () => { + const res = await app.inject({ method: "GET", url: "/user/me" }); + expect(res.statusCode).toBe(401); + }); + + it("returns current user data with valid access cookie", async () => { + const loginRes = await app.inject({ + method: "POST", + url: "/auth/login", + payload: { email: TEST_EMAILS.admin, password: "test_password" }, + }); + const accessToken = getCookie(loginRes.cookies, accessCookieName); + + const res = await app.inject({ + method: "GET", + url: "/user/me", + cookies: { [accessCookieName]: accessToken }, + }); + + expect(res.statusCode).toBe(200); + const body = res.json(); + expect(body.data.email).toBe(TEST_EMAILS.admin); + }); + }); + + describe("role enforcement", () => { + it("coordinator can hit /user/me", async () => { + const loginRes = await app.inject({ + method: "POST", + url: "/auth/login", + payload: { + email: TEST_EMAILS.coordinator, + password: "test_password", + }, + }); + const accessToken = getCookie(loginRes.cookies, accessCookieName); + + const res = await app.inject({ + method: "GET", + url: "/user/me", + cookies: { [accessCookieName]: accessToken }, + }); + expect(res.statusCode).toBe(200); + expect(res.json().data.email).toBe(TEST_EMAILS.coordinator); + }); + }); +}); diff --git a/src/test/e2e/smoke/health.test.ts b/src/test/e2e/smoke/health.test.ts new file mode 100644 index 00000000..7f9cd3cb --- /dev/null +++ b/src/test/e2e/smoke/health.test.ts @@ -0,0 +1,23 @@ +import { FastifyInstance } from "fastify"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { createTestApp } from "../helpers/app"; + +describe("smoke: health check", () => { + let app: FastifyInstance; + + beforeAll(async () => { + app = await createTestApp(); + }); + + afterAll(async () => { + await app.close(); + }); + + it("GET /health-check returns 200", async () => { + const res = await app.inject({ method: "GET", url: "/health-check" }); + expect(res.statusCode).toBe(200); + expect(res.json()).toMatchObject({ + message: expect.stringContaining("up and running"), + }); + }); +}); diff --git a/tsconfig.json b/tsconfig.json index 690bdbb8..86b0aab5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,7 @@ "skipLibCheck": true, "resolveJsonModule": true }, - "include": ["src/**/*.ts", "vitest.config.ts"], + "include": ["src/**/*.ts", "vitest.config.ts", "vitest.e2e.config.ts"], "exclude": ["node_modules"], "ts-node": { "files": true diff --git a/vitest.e2e.config.ts b/vitest.e2e.config.ts new file mode 100644 index 00000000..91897eff --- /dev/null +++ b/vitest.e2e.config.ts @@ -0,0 +1,36 @@ +import swc from "unplugin-swc"; +import { defineConfig } from "vitest/config"; + +export default defineConfig({ + test: { + globals: true, + environment: "node", + globalSetup: ["./src/test/e2e/setup/global.ts"], + setupFiles: ["./src/test/setup.ts"], + include: ["src/test/e2e/**/*.test.ts"], + pool: "forks", + fileParallelism: false, + env: { + JWT_SECRET: "test-secret-only-for-e2e-vitest", + NODE_ENV: "test", + PORT: "5002", + }, + }, + plugins: [ + swc.vite({ + jsc: { + keepClassNames: true, + target: "es2022", + parser: { + syntax: "typescript", + decorators: true, + dynamicImport: true, + }, + transform: { + legacyDecorator: true, + decoratorMetadata: true, + }, + }, + }), + ], +}); From 949bd5bf85536f562402a63b0a55a4822513df5f Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 11:48:13 +0000 Subject: [PATCH 35/89] feat: implement outbound email system with 9 email types and hourly scheduler - Add 9 transactional email handlers (suggestion, stale, introduction, post-match checkup, accompany-not-found, accompany-match, regular-update, new-regular, new-accompanying) with CDN manifest + built-in fallback - Wire event-driven emails into OV PATCH (pending/matched) and opportunity POST (volunteering/accompanying) route handlers via fire-and-forget IIFEs - Add hourly scheduler plugin (node-cron, 08-19 Berlin time, weekdays, German public holidays excluded) running 4 time-based scans with Postgres advisory lock for multi-instance safety - Track every sent email as a Communication record for deduplication and audit - Extend Communication entity: nullable volunteer/agent/user FKs, new opportunity_id FK, 5 new CommunicationType enum values; bump SDK to 0.0.116 - Add shareContact boolean to Volunteer entity (default true) for contact-sharing conditional text in accompany-match email - Support multi-recipient emails (to: string | string[]) in Brevo transport Co-Authored-By: Claude Sonnet 4.6 --- package.json | 4 +- src/config/constants.ts | 21 +++ src/data/entity/communication.entity.ts | 36 ++-- .../entity/opportunity/opportunity.entity.ts | 4 + src/data/entity/volunteer/volunteer.entity.ts | 3 + ...97313819-add-share-contact-to-volunteer.ts | 19 +++ ...n-nullable-fks-and-opportunity-relation.ts | 75 +++++++++ src/server/index.ts | 2 + src/server/plugins/notify.ts | 37 ++++ src/server/plugins/scheduler.ts | 74 ++++++++ .../m2m/opportunity-volunteer.routes.ts | 91 +++++++++- .../routes/opportunity/opportunity.routes.ts | 54 ++++++ .../utils/data/log-email-communication.ts | 29 ++++ src/services/jobs/german-holidays.ts | 70 ++++++++ src/services/jobs/scan-accompany-not-found.ts | 76 +++++++++ src/services/jobs/scan-post-match-checkup.ts | 45 +++++ src/services/jobs/scan-regular-update.ts | 50 ++++++ src/services/jobs/scan-stale-pending.ts | 47 ++++++ .../notify/events/email-accompany-match.ts | 120 +++++++++++++ .../events/email-accompany-not-found.ts | 78 +++++++++ .../notify/events/email-introduction.ts | 159 ++++++++++++++++++ .../notify/events/email-new-accompanying.ts | 92 ++++++++++ .../notify/events/email-new-regular.ts | 63 +++++++ .../notify/events/email-post-match-checkup.ts | 58 +++++++ .../notify/events/email-regular-update.ts | 63 +++++++ src/services/notify/events/email-stale.ts | 58 +++++++ .../notify/events/email-suggestion.ts | 71 ++++++++ src/services/notify/index.ts | 9 + src/services/notify/transports/email-brevo.ts | 4 +- src/services/notify/types.ts | 2 +- yarn.lock | 18 +- 31 files changed, 1513 insertions(+), 19 deletions(-) create mode 100644 src/data/migrations/1782897313819-add-share-contact-to-volunteer.ts create mode 100644 src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts create mode 100644 src/server/plugins/scheduler.ts create mode 100644 src/server/utils/data/log-email-communication.ts create mode 100644 src/services/jobs/german-holidays.ts create mode 100644 src/services/jobs/scan-accompany-not-found.ts create mode 100644 src/services/jobs/scan-post-match-checkup.ts create mode 100644 src/services/jobs/scan-regular-update.ts create mode 100644 src/services/jobs/scan-stale-pending.ts create mode 100644 src/services/notify/events/email-accompany-match.ts create mode 100644 src/services/notify/events/email-accompany-not-found.ts create mode 100644 src/services/notify/events/email-introduction.ts create mode 100644 src/services/notify/events/email-new-accompanying.ts create mode 100644 src/services/notify/events/email-new-regular.ts create mode 100644 src/services/notify/events/email-post-match-checkup.ts create mode 100644 src/services/notify/events/email-regular-update.ts create mode 100644 src/services/notify/events/email-stale.ts create mode 100644 src/services/notify/events/email-suggestion.ts diff --git a/package.json b/package.json index 1ec11eaa..83296156 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "@swc/core": "^1.15.10", "@swc/helpers": "^0.5.18", "@types/node": "^24.9.1", + "@types/node-cron": "^3.0.11", "@typescript-eslint/eslint-plugin": "^8.46.2", "@typescript-eslint/parser": "^8.46.2", "@typescript-eslint/utils": "^8.46.2", @@ -41,7 +42,8 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.115", + "need4deed-sdk": "0.0.116", + "node-cron": "^4.5.0", "pg": "^8.14.1", "pino": "^10.3.1", "pino-pretty": "^13.0.0", diff --git a/src/config/constants.ts b/src/config/constants.ts index 4771f363..a206dac1 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -92,6 +92,27 @@ export const emailVerificationManifestUrl = // CDN manifest (per-locale subject + html/text) for the password reset email. export const emailPasswordResetManifestUrl = CDNBaseUrl + "/emails/password-reset.json"; + +// CDN manifests for outbound volunteer/opportunity emails. +export const emailSuggestionManifestUrl = + CDNBaseUrl + "/emails/suggestion.json"; +export const emailStaleManifestUrl = CDNBaseUrl + "/emails/stale.json"; +export const emailIntroductionManifestUrl = + CDNBaseUrl + "/emails/introduction.json"; +export const emailPostMatchCheckupManifestUrl = + CDNBaseUrl + "/emails/checkup.json"; +export const emailAccompanyNotFoundManifestUrl = + CDNBaseUrl + "/emails/accompanynotfound.json"; +export const emailAccompanyMatchManifestUrl = + CDNBaseUrl + "/emails/accompanymatch.json"; +export const emailRegularUpdateManifestUrl = CDNBaseUrl + "/emails/update.json"; +export const emailNewRegularManifestUrl = + CDNBaseUrl + "/emails/confirmation.json"; +export const emailNewAccompanyingManifestUrl = + CDNBaseUrl + "/emails/confirmationaccompanying.json"; + +export const emailFromVolunteer = "volunteer@need4deed.org"; +export const emailFromContact = "contact@need4deed.org"; // How long a fetched email manifest is cached in-memory (default 10 min). export const emailTemplateTtlMs = Number(process.env.EMAIL_TEMPLATE_TTL_MS) || 10 * 60 * 1000; diff --git a/src/data/entity/communication.entity.ts b/src/data/entity/communication.entity.ts index 79855c57..5856db82 100644 --- a/src/data/entity/communication.entity.ts +++ b/src/data/entity/communication.entity.ts @@ -6,19 +6,22 @@ import { import { Check, Column, + CreateDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn, } from "typeorm"; import Agent from "./opportunity/agent.entity"; +import Opportunity from "./opportunity/opportunity.entity"; import User from "./user.entity"; import Volunteer from "./volunteer/volunteer.entity"; @Entity() @Check(` (CASE WHEN "volunteer_id" IS NOT NULL THEN 1 ELSE 0 END + - CASE WHEN "agent_id" IS NOT NULL THEN 1 ELSE 0 END) = 1 + CASE WHEN "agent_id" IS NOT NULL THEN 1 ELSE 0 END + + CASE WHEN "opportunity_id" IS NOT NULL THEN 1 ELSE 0 END) >= 1 `) export default class Communication { constructor(communication?: Partial) { @@ -26,6 +29,7 @@ export default class Communication { Object.assign(this, communication); } } + @PrimaryGeneratedColumn() id: number; @@ -38,36 +42,46 @@ export default class Communication { @Column({ type: "enum", enum: CommunicationType, nullable: true }) communicationType?: CommunicationType; - @Column({ type: "timestamp" }) + @CreateDateColumn() date: Date; @ManyToOne(() => Volunteer, { - nullable: false, + nullable: true, onDelete: "CASCADE", }) @JoinColumn({ name: "volunteer_id" }) - volunteer: Volunteer; + volunteer?: Volunteer; @Column({ nullable: true }) - volunteerId: number; + volunteerId?: number; @ManyToOne(() => Agent, { - nullable: false, + nullable: true, onDelete: "CASCADE", }) @JoinColumn({ name: "agent_id" }) - agent: Agent; + agent?: Agent; + + @Column({ nullable: true }) + agentId?: number; + + @ManyToOne(() => Opportunity, { + nullable: true, + onDelete: "CASCADE", + }) + @JoinColumn({ name: "opportunity_id" }) + opportunity?: Opportunity; @Column({ nullable: true }) - agentId: number; + opportunityId?: number; @ManyToOne(() => User, { - nullable: false, + nullable: true, onDelete: "CASCADE", }) @JoinColumn({ name: "user_id" }) - user: User; + user?: User; @Column({ nullable: true }) - userId: number; + userId?: number; } diff --git a/src/data/entity/opportunity/opportunity.entity.ts b/src/data/entity/opportunity/opportunity.entity.ts index ce0f4116..6b096254 100644 --- a/src/data/entity/opportunity/opportunity.entity.ts +++ b/src/data/entity/opportunity/opportunity.entity.ts @@ -15,6 +15,7 @@ import { PrimaryGeneratedColumn, UpdateDateColumn, } from "typeorm"; +import Communication from "../communication.entity"; import Deal from "../deal.entity"; import District from "../location/district.entity"; import OpportunityVolunteer from "../m2m/opportunity-volunteer"; @@ -131,6 +132,9 @@ export default class Opportunity { @OneToMany(() => Appreciation, (appreciation) => appreciation.opportunity) appreciations: Appreciation[]; + @OneToMany(() => Communication, (communication) => communication.opportunity) + communications: Communication[]; + @ManyToOne(() => Person, { nullable: true }) @JoinColumn({ name: "contact_person_id" }) contactPerson?: Person; diff --git a/src/data/entity/volunteer/volunteer.entity.ts b/src/data/entity/volunteer/volunteer.entity.ts index 3ca2cad8..4dcd99d6 100644 --- a/src/data/entity/volunteer/volunteer.entity.ts +++ b/src/data/entity/volunteer/volunteer.entity.ts @@ -173,6 +173,9 @@ export default class Volunteer { @OneToMany(() => Appreciation, (appreciation) => appreciation.volunteer) appreciations: Appreciation[]; + @Column({ default: true }) + shareContact: boolean; + @Column({ nullable: true }) @IsOptional() @IsString() diff --git a/src/data/migrations/1782897313819-add-share-contact-to-volunteer.ts b/src/data/migrations/1782897313819-add-share-contact-to-volunteer.ts new file mode 100644 index 00000000..06ad13e7 --- /dev/null +++ b/src/data/migrations/1782897313819-add-share-contact-to-volunteer.ts @@ -0,0 +1,19 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class AddShareContactToVolunteer1782897313819 + implements MigrationInterface +{ + name = "AddShareContactToVolunteer1782897313819"; + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "volunteer" ADD "share_contact" boolean NOT NULL DEFAULT true`, + ); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "volunteer" DROP COLUMN "share_contact"`, + ); + } +} diff --git a/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts b/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts new file mode 100644 index 00000000..e3fe75a4 --- /dev/null +++ b/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts @@ -0,0 +1,75 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class CommunicationNullableFksAndOpportunityRelation1782903516653 + implements MigrationInterface +{ + name = "CommunicationNullableFksAndOpportunityRelation1782903516653"; + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "communication" DROP CONSTRAINT "CHK_31faa29cb0aff6ef55be2b2146"`, + ); + await queryRunner.query( + `ALTER TABLE "communication" ADD "opportunity_id" integer`, + ); + await queryRunner.query( + `ALTER TYPE "public"."communication_communication_type_enum" RENAME TO "communication_communication_type_enum_old"`, + ); + await queryRunner.query( + `CREATE TYPE "public"."communication_communication_type_enum" AS ENUM('briefed', 'first-inquiry-sent', 'opportunity-list-sent', 'status-update', 'post-match-followup', 'matched', 'accompanying-not-found', 'accompanying-matched', 'opportunity-updated', 'opportunity-confirmation')`, + ); + await queryRunner.query( + `ALTER TABLE "communication" ALTER COLUMN "communication_type" TYPE "public"."communication_communication_type_enum" USING "communication_type"::"text"::"public"."communication_communication_type_enum"`, + ); + await queryRunner.query( + `DROP TYPE "public"."communication_communication_type_enum_old"`, + ); + await queryRunner.query( + `ALTER TABLE "communication" ALTER COLUMN "date" SET DEFAULT now()`, + ); + await queryRunner.query(`ALTER TABLE "communication" ADD CONSTRAINT "CHK_0ea4b79edeac5eaa19c54735c7" CHECK ( + (CASE WHEN "volunteer_id" IS NOT NULL THEN 1 ELSE 0 END + + CASE WHEN "agent_id" IS NOT NULL THEN 1 ELSE 0 END + + CASE WHEN "opportunity_id" IS NOT NULL THEN 1 ELSE 0 END) >= 1 +)`); + await queryRunner.query( + `ALTER TABLE "communication" ADD CONSTRAINT "FK_73aa11f1d453a65ba3cebda85fb" FOREIGN KEY ("opportunity_id") REFERENCES "opportunity"("id") ON DELETE CASCADE ON UPDATE NO ACTION`, + ); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "communication" DROP CONSTRAINT "FK_73aa11f1d453a65ba3cebda85fb"`, + ); + await queryRunner.query( + `ALTER TABLE "communication" DROP CONSTRAINT "CHK_0ea4b79edeac5eaa19c54735c7"`, + ); + await queryRunner.query( + `ALTER TABLE "communication" ALTER COLUMN "date" DROP DEFAULT`, + ); + await queryRunner.query( + `CREATE TYPE "public"."communication_communication_type_enum_old" AS ENUM('briefed', 'first-inquiry-sent', 'opportunity-list-sent', 'status-update', 'post-match-followup')`, + ); + await queryRunner.query( + `ALTER TABLE "communication" ALTER COLUMN "communication_type" TYPE "public"."communication_communication_type_enum_old" USING "communication_type"::"text"::"public"."communication_communication_type_enum_old"`, + ); + await queryRunner.query( + `DROP TYPE "public"."communication_communication_type_enum"`, + ); + await queryRunner.query( + `ALTER TYPE "public"."communication_communication_type_enum_old" RENAME TO "communication_communication_type_enum"`, + ); + await queryRunner.query( + `ALTER TABLE "communication" DROP COLUMN "opportunity_id"`, + ); + await queryRunner.query(`ALTER TABLE "communication" ADD CONSTRAINT "CHK_31faa29cb0aff6ef55be2b2146" CHECK (CHECK ((( +CASE + WHEN (volunteer_id IS NOT NULL) THEN 1 + ELSE 0 +END + +CASE + WHEN (agent_id IS NOT NULL) THEN 1 + ELSE 0 +END) = 1)))`); + } +} diff --git a/src/server/index.ts b/src/server/index.ts index 62d87338..e6b0fa5e 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -10,6 +10,7 @@ import logger from "../logger"; import cors, { corsOptions } from "./plugins/cors"; import jwtPlugin from "./plugins/jwt"; import notifyPlugin from "./plugins/notify"; +import schedulerPlugin from "./plugins/scheduler"; import typeormPlugin from "./plugins/typeorm"; import activityLogRoutes from "./routes/activity-log.routes"; import agentRoutes from "./routes/agent/agent.routes"; @@ -149,6 +150,7 @@ export async function createServer(): Promise { }, }); await fastifyInstance.register(notifyPlugin); + await fastifyInstance.register(schedulerPlugin); await fastifyInstance.register(healthRoutes, { prefix: RoutePrefix.HEALTH_CHECK, }); diff --git a/src/server/plugins/notify.ts b/src/server/plugins/notify.ts index 45a2e8e8..3876cde9 100644 --- a/src/server/plugins/notify.ts +++ b/src/server/plugins/notify.ts @@ -1,11 +1,22 @@ import { FastifyInstance } from "fastify"; import fp from "fastify-plugin"; +import OpportunityVolunteer from "../../data/entity/m2m/opportunity-volunteer"; +import Opportunity from "../../data/entity/opportunity/opportunity.entity"; import User from "../../data/entity/user.entity"; import { BrevoEmailTransport, CommentTaggedInput, EmailTransport, sendCommentTagged, + sendEmailAccompanyMatch, + sendEmailAccompanyNotFound, + sendEmailIntroduction, + sendEmailNewAccompanying, + sendEmailNewRegular, + sendEmailPostMatchCheckup, + sendEmailRegularUpdate, + sendEmailStale, + sendEmailSuggestion, sendEmailVerification, sendOpsAlert, sendPasswordReset, @@ -19,6 +30,15 @@ interface NotifyService { passwordReset(user: User): Promise; opsAlert(text: string): Promise; commentTagged(input: CommentTaggedInput): Promise; + emailSuggestion(ov: OpportunityVolunteer): Promise; + emailStale(ov: OpportunityVolunteer): Promise; + emailIntroduction(ov: OpportunityVolunteer): Promise; + emailPostMatchCheckup(ov: OpportunityVolunteer): Promise; + emailAccompanyNotFound(opportunity: Opportunity): Promise; + emailAccompanyMatch(ov: OpportunityVolunteer): Promise; + emailRegularUpdate(opportunity: Opportunity): Promise; + emailNewRegular(opportunity: Opportunity): Promise; + emailNewAccompanying(opportunity: Opportunity): Promise; } declare module "fastify" { @@ -57,6 +77,23 @@ async function notifyPlugin(fastify: FastifyInstance) { opsAlert: (text: string) => sendOpsAlert({ slack }, text), commentTagged: (input: CommentTaggedInput) => sendCommentTagged({ slack }, input), + emailSuggestion: (ov: OpportunityVolunteer) => + sendEmailSuggestion(email, ov), + emailStale: (ov: OpportunityVolunteer) => sendEmailStale(email, ov), + emailIntroduction: (ov: OpportunityVolunteer) => + sendEmailIntroduction(email, ov), + emailPostMatchCheckup: (ov: OpportunityVolunteer) => + sendEmailPostMatchCheckup(email, ov), + emailAccompanyNotFound: (opportunity: Opportunity) => + sendEmailAccompanyNotFound(email, opportunity), + emailAccompanyMatch: (ov: OpportunityVolunteer) => + sendEmailAccompanyMatch(email, ov), + emailRegularUpdate: (opportunity: Opportunity) => + sendEmailRegularUpdate(email, opportunity), + emailNewRegular: (opportunity: Opportunity) => + sendEmailNewRegular(email, opportunity), + emailNewAccompanying: (opportunity: Opportunity) => + sendEmailNewAccompanying(email, opportunity), }); } diff --git a/src/server/plugins/scheduler.ts b/src/server/plugins/scheduler.ts new file mode 100644 index 00000000..dd975ecc --- /dev/null +++ b/src/server/plugins/scheduler.ts @@ -0,0 +1,74 @@ +import { FastifyInstance } from "fastify"; +import fp from "fastify-plugin"; +import cron from "node-cron"; +import { dataSource } from "../../data/data-source"; +import logger from "../../logger"; +import { + berlinToday, + isGermanPublicHoliday, +} from "../../services/jobs/german-holidays"; +import { scanAccompanyNotFound } from "../../services/jobs/scan-accompany-not-found"; +import { scanPostMatchCheckup } from "../../services/jobs/scan-post-match-checkup"; +import { scanRegularUpdate } from "../../services/jobs/scan-regular-update"; +import { scanStalePending } from "../../services/jobs/scan-stale-pending"; + +// Unique integer key for this app's advisory lock — prevents duplicate runs +// across multiple ECS instances. +const SCHEDULER_LOCK_ID = 20240701; + +async function runWithAdvisoryLock(fn: () => Promise): Promise { + const [row] = await dataSource.query( + "SELECT pg_try_advisory_lock($1) AS acquired", + [SCHEDULER_LOCK_ID], + ); + if (!row?.acquired) { + logger.debug( + "scheduler: advisory lock held by another instance — skipping", + ); + return; + } + try { + await fn(); + } finally { + await dataSource.query("SELECT pg_advisory_unlock($1)", [ + SCHEDULER_LOCK_ID, + ]); + } +} + +async function schedulerPlugin(fastify: FastifyInstance): Promise { + // Hourly on the hour, 08:00–19:00 Berlin time, weekdays only. + // node-cron handles DST automatically when timezone is set. + cron.schedule( + "0 8-19 * * 1-5", + async () => { + if (isGermanPublicHoliday(berlinToday())) { + logger.info("scheduler: skipping — German public holiday"); + return; + } + + logger.info("scheduler: running hourly email scans"); + + await runWithAdvisoryLock(async () => { + const results = await Promise.allSettled([ + scanStalePending(fastify), + scanPostMatchCheckup(fastify), + scanAccompanyNotFound(fastify), + scanRegularUpdate(fastify), + ]); + + for (const r of results) { + if (r.status === "rejected") { + logger.error(`scheduler: scan failed: ${r.reason}`); + } + } + }); + }, + { timezone: "Europe/Berlin" }, + ); +} + +export default fp(schedulerPlugin, { + name: "scheduler", + dependencies: ["typeorm-plugin", "notify"], +}); diff --git a/src/server/routes/m2m/opportunity-volunteer.routes.ts b/src/server/routes/m2m/opportunity-volunteer.routes.ts index 53ec8e99..9831ea8e 100644 --- a/src/server/routes/m2m/opportunity-volunteer.routes.ts +++ b/src/server/routes/m2m/opportunity-volunteer.routes.ts @@ -1,9 +1,16 @@ import { FastifyInstance, FastifyPluginOptions } from "fastify"; -import { OpportunityVolunteerStatusType, UserRole } from "need4deed-sdk"; +import { + CommunicationType, + OpportunityVolunteerStatusType, + ProfileVolunteeringType, + UserRole, +} from "need4deed-sdk"; import { BadRequestError, NotFoundError } from "../../../config"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import logger from "../../../logger"; import { idParamSchema, responseSchema } from "../../schema"; import { ParamsId, ReplyMessage } from "../../types"; +import { logEmailCommunication } from "../../utils/data/log-email-communication"; export default async function m2mOpportunityVolunteerRoutes( fastify: FastifyInstance, @@ -72,11 +79,93 @@ export default async function m2mOpportunityVolunteerRoutes( throw new NotFoundError(`There's no M2M relation id:${id}`); } + const prevStatus = opportunityVolunteer.status; + const nextStatus = request.body.status; + opportunityVolunteerRepository.merge(opportunityVolunteer, request.body); await opportunityVolunteerRepository.save(opportunityVolunteer, { reload: true, }); + if (nextStatus && nextStatus !== prevStatus) { + const commRepo = fastify.db.communicationRepository; + + if (nextStatus === OpportunityVolunteerStatusType.PENDING) { + const ov = await opportunityVolunteerRepository.findOne({ + where: { id }, + relations: [ + "volunteer.person", + "volunteer.person.users", + "volunteer.deal.postcode", + "volunteer.deal.dealTimeslot.timeslot", + "opportunity", + ], + }); + if (ov) { + (async () => { + try { + await fastify.notify.emailSuggestion(ov); + await logEmailCommunication( + commRepo, + CommunicationType.FIRST_INQUIRY, + { volunteerId: ov.volunteerId }, + ); + } catch (err) { + logger.error( + `emailSuggestion side-effect failed (ov ${id}): ${err}`, + ); + } + })(); + } + } else if (nextStatus === OpportunityVolunteerStatusType.MATCHED) { + const ov = await opportunityVolunteerRepository.findOne({ + where: { id }, + relations: [ + "volunteer.person", + "volunteer.person.users", + "volunteer.deal.dealLanguage.language", + "volunteer.deal.dealSkill.skill", + "volunteer.deal.dealTimeslot.timeslot", + "opportunity.contactPerson", + "opportunity.contactPerson.users", + "opportunity.agent.address.postcode", + "opportunity.accompanying.postcode", + "opportunity.district", + ], + }); + if (ov) { + const isAccompany = + ov.opportunity?.type === ProfileVolunteeringType.ACCOMPANYING; + (async () => { + try { + if (isAccompany) { + await fastify.notify.emailAccompanyMatch(ov); + await logEmailCommunication( + commRepo, + CommunicationType.ACCOMPANYING_MATCHED, + { opportunityId: ov.opportunityId }, + ); + } else { + await fastify.notify.emailIntroduction(ov); + await logEmailCommunication( + commRepo, + CommunicationType.MATCHED, + { + volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, + }, + ); + } + } catch (err) { + logger.error( + `emailMatched side-effect failed (ov ${id}): ${err}`, + ); + } + })(); + } + } + } + return reply.status(204).send(); }, ); diff --git a/src/server/routes/opportunity/opportunity.routes.ts b/src/server/routes/opportunity/opportunity.routes.ts index e0763b8d..d241bb07 100644 --- a/src/server/routes/opportunity/opportunity.routes.ts +++ b/src/server/routes/opportunity/opportunity.routes.ts @@ -2,6 +2,7 @@ import { FastifyInstance, FastifyPluginOptions } from "fastify"; import { ApiOpportunityGet, ApiOpportunityPatch, + CommunicationType, OpportunityFormDataWithAgentSubmitter, OpportunityLegacyFormData, SortOrder, @@ -60,6 +61,7 @@ import { updateOptionList, writeOpportunityLegacy, } from "../../utils"; +import { logEmailCommunication } from "../../utils/data/log-email-communication"; import { makePiiSerialization, maskForCaller, @@ -341,6 +343,58 @@ export default async function opportunityRoutes( getOpportunityNotificationText(opportunity.title), ); + if (body.opportunity_type === "volunteering") { + const opp = await fastify.db.opportunityRepository.findOne({ + where: { id }, + relations: ["contactPerson", "contactPerson.users"], + }); + if (opp) { + (async () => { + try { + await fastify.notify.emailNewRegular(opp); + await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.OPPORTUNITY_CONFIRMATION, + { opportunityId: id }, + ); + } catch (err) { + logger.error( + `emailNewRegular side-effect failed (opp ${id}): ${err}`, + ); + } + })(); + } + } + + if (body.opportunity_type === "accompanying") { + const opp = await fastify.db.opportunityRepository.findOne({ + where: { id }, + relations: [ + "accompanying", + "accompanying.postcode", + "contactPerson", + "contactPerson.users", + "district", + ], + }); + if (opp) { + (async () => { + try { + await fastify.notify.emailNewAccompanying(opp); + await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.OPPORTUNITY_CONFIRMATION, + { opportunityId: id }, + ); + } catch (err) { + logger.error( + `emailNewAccompanying side-effect failed (opp ${id}): ${err}`, + ); + } + })(); + } + } + return reply.status(201).send({ message: `Opportunity (${id}) created.`, data: { id }, diff --git a/src/server/utils/data/log-email-communication.ts b/src/server/utils/data/log-email-communication.ts new file mode 100644 index 00000000..f58a0d56 --- /dev/null +++ b/src/server/utils/data/log-email-communication.ts @@ -0,0 +1,29 @@ +import { + CommunicationType, + ContactMethodType, + ContactType, +} from "need4deed-sdk"; +import { Repository } from "typeorm"; +import Communication from "../../../data/entity/communication.entity"; +import logger from "../../../logger"; + +export async function logEmailCommunication( + repo: Repository, + communicationType: CommunicationType, + ids: { volunteerId?: number; opportunityId?: number; agentId?: number }, +): Promise { + try { + await repo.save( + new Communication({ + contactType: ContactType.TEXT_EMAIL, + contactMethod: ContactMethodType.EMAIL, + communicationType, + ...ids, + }), + ); + } catch (err) { + logger.error( + `logEmailCommunication failed (type=${communicationType}): ${err}`, + ); + } +} diff --git a/src/services/jobs/german-holidays.ts b/src/services/jobs/german-holidays.ts new file mode 100644 index 00000000..5368b1b1 --- /dev/null +++ b/src/services/jobs/german-holidays.ts @@ -0,0 +1,70 @@ +function easterSunday(year: number): Date { + const a = year % 19; + const b = Math.floor(year / 100); + const c = year % 100; + const d = Math.floor(b / 4); + const e = b % 4; + const f = Math.floor((b + 8) / 25); + const g = Math.floor((b - f + 1) / 3); + const h = (19 * a + b - d - g + 15) % 30; + const i = Math.floor(c / 4); + const k = c % 4; + const l = (32 + 2 * e + 2 * i - h - k) % 7; + const m = Math.floor((a + 11 * h + 22 * l) / 451); + const month = Math.floor((h + l - 7 * m + 114) / 31) - 1; + const day = ((h + l - 7 * m + 114) % 31) + 1; + return new Date(year, month, day); +} + +function addDays(date: Date, n: number): Date { + return new Date(date.getFullYear(), date.getMonth(), date.getDate() + n); +} + +function sameDay(a: Date, b: Date): boolean { + return ( + a.getFullYear() === b.getFullYear() && + a.getMonth() === b.getMonth() && + a.getDate() === b.getDate() + ); +} + +export function isGermanPublicHoliday(date: Date): boolean { + const y = date.getFullYear(); + const easter = easterSunday(y); + + const holidays = [ + new Date(y, 0, 1), // Neujahr + new Date(y, 2, 8), // Internationaler Frauentag (Berlin) + new Date(y, 4, 1), // Tag der Arbeit + new Date(y, 9, 3), // Tag der Deutschen Einheit + new Date(y, 11, 25), // 1. Weihnachtstag + new Date(y, 11, 26), // 2. Weihnachtstag + addDays(easter, -2), // Karfreitag + addDays(easter, 1), // Ostermontag + addDays(easter, 39), // Christi Himmelfahrt + addDays(easter, 50), // Pfingstmontag + ]; + + return holidays.some((h) => sameDay(h, date)); +} + +export function addWorkingDays(from: Date, days: number): Date { + let result = new Date(from.getFullYear(), from.getMonth(), from.getDate()); + let added = 0; + while (added < days) { + result = addDays(result, 1); + const dow = result.getDay(); + if (dow !== 0 && dow !== 6 && !isGermanPublicHoliday(result)) { + added++; + } + } + return result; +} + +export function berlinToday(): Date { + const s = new Date().toLocaleDateString("sv-SE", { + timeZone: "Europe/Berlin", + }); + const [y, m, d] = s.split("-").map(Number); + return new Date(y, m - 1, d); +} diff --git a/src/services/jobs/scan-accompany-not-found.ts b/src/services/jobs/scan-accompany-not-found.ts new file mode 100644 index 00000000..39b31e6a --- /dev/null +++ b/src/services/jobs/scan-accompany-not-found.ts @@ -0,0 +1,76 @@ +import { FastifyInstance } from "fastify"; +import { + CommunicationType, + OpportunityVolunteerStatusType, + ProfileVolunteeringType, +} from "need4deed-sdk"; +import logger from "../../logger"; +import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; +import { addWorkingDays, berlinToday } from "./german-holidays"; + +export async function scanAccompanyNotFound( + fastify: FastifyInstance, +): Promise { + const targetDay = addWorkingDays(berlinToday(), 4); + const startOfDay = new Date( + targetDay.getFullYear(), + targetDay.getMonth(), + targetDay.getDate(), + 0, + 0, + 0, + 0, + ); + const endOfDay = new Date( + targetDay.getFullYear(), + targetDay.getMonth(), + targetDay.getDate(), + 23, + 59, + 59, + 999, + ); + + const opps = await fastify.db.opportunityRepository.find({ + where: { type: ProfileVolunteeringType.ACCOMPANYING as never }, + relations: [ + "accompanying", + "accompanying.postcode", + "contactPerson", + "contactPerson.users", + "district", + "opportunityVolunteer", + ], + }); + + const candidates = opps.filter((opp) => { + const date = opp.accompanying?.date; + if (!date) {return false;} + const d = new Date(date); + if (d < startOfDay || d > endOfDay) {return false;} + return !opp.opportunityVolunteer?.some( + (ov) => ov.status === OpportunityVolunteerStatusType.MATCHED, + ); + }); + + for (const opp of candidates) { + try { + const alreadySent = await fastify.db.communicationRepository.findOne({ + where: { + opportunityId: opp.id, + communicationType: CommunicationType.ACCOMPANYING_NOT_FOUND, + }, + }); + if (alreadySent) {continue;} + + await fastify.notify.emailAccompanyNotFound(opp); + await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.ACCOMPANYING_NOT_FOUND, + { opportunityId: opp.id }, + ); + } catch (err) { + logger.error(`scanAccompanyNotFound: opp ${opp.id} failed: ${err}`); + } + } +} diff --git a/src/services/jobs/scan-post-match-checkup.ts b/src/services/jobs/scan-post-match-checkup.ts new file mode 100644 index 00000000..703e3f74 --- /dev/null +++ b/src/services/jobs/scan-post-match-checkup.ts @@ -0,0 +1,45 @@ +import { FastifyInstance } from "fastify"; +import { + CommunicationType, + OpportunityVolunteerStatusType, +} from "need4deed-sdk"; +import { LessThan, MoreThan } from "typeorm"; +import logger from "../../logger"; +import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; + +export async function scanPostMatchCheckup( + fastify: FastifyInstance, +): Promise { + const twoMonthsAgo = new Date(); + twoMonthsAgo.setMonth(twoMonthsAgo.getMonth() - 2); + + const ovs = await fastify.db.opportunityVolunteerRepository.find({ + where: { + status: OpportunityVolunteerStatusType.MATCHED, + updatedAt: LessThan(twoMonthsAgo), + }, + relations: ["volunteer.person", "volunteer.person.users"], + }); + + for (const ov of ovs) { + try { + const alreadySent = await fastify.db.communicationRepository.findOne({ + where: { + volunteerId: ov.volunteerId, + communicationType: CommunicationType.POST_FOLLOWUP, + date: MoreThan(ov.updatedAt), + }, + }); + if (alreadySent) {continue;} + + await fastify.notify.emailPostMatchCheckup(ov); + await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.POST_FOLLOWUP, + { volunteerId: ov.volunteerId }, + ); + } catch (err) { + logger.error(`scanPostMatchCheckup: ov ${ov.id} failed: ${err}`); + } + } +} diff --git a/src/services/jobs/scan-regular-update.ts b/src/services/jobs/scan-regular-update.ts new file mode 100644 index 00000000..5a28f5c1 --- /dev/null +++ b/src/services/jobs/scan-regular-update.ts @@ -0,0 +1,50 @@ +import { FastifyInstance } from "fastify"; +import { + CommunicationType, + OpportunityStatusType, + ProfileVolunteeringType, +} from "need4deed-sdk"; +import { In, LessThan } from "typeorm"; +import logger from "../../logger"; +import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; + +export async function scanRegularUpdate( + fastify: FastifyInstance, +): Promise { + const twoMonthsAgo = new Date(); + twoMonthsAgo.setMonth(twoMonthsAgo.getMonth() - 2); + + const opps = await fastify.db.opportunityRepository.find({ + where: { + type: ProfileVolunteeringType.REGULAR as never, + status: In([ + OpportunityStatusType.NEW, + OpportunityStatusType.SEARCHING, + OpportunityStatusType.ACTIVE, + ]), + createdAt: LessThan(twoMonthsAgo), + }, + relations: ["contactPerson", "contactPerson.users"], + }); + + for (const opp of opps) { + try { + const alreadySent = await fastify.db.communicationRepository.findOne({ + where: { + opportunityId: opp.id, + communicationType: CommunicationType.OPPORTUNITY_UPDATED, + }, + }); + if (alreadySent) {continue;} + + await fastify.notify.emailRegularUpdate(opp); + await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.OPPORTUNITY_UPDATED, + { opportunityId: opp.id }, + ); + } catch (err) { + logger.error(`scanRegularUpdate: opp ${opp.id} failed: ${err}`); + } + } +} diff --git a/src/services/jobs/scan-stale-pending.ts b/src/services/jobs/scan-stale-pending.ts new file mode 100644 index 00000000..bdb9972e --- /dev/null +++ b/src/services/jobs/scan-stale-pending.ts @@ -0,0 +1,47 @@ +import { FastifyInstance } from "fastify"; +import { + CommunicationType, + OpportunityVolunteerStatusType, + VolunteerStateEngagementType, +} from "need4deed-sdk"; +import { LessThan, MoreThan } from "typeorm"; +import logger from "../../logger"; +import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; + +export async function scanStalePending( + fastify: FastifyInstance, +): Promise { + const twoMonthsAgo = new Date(); + twoMonthsAgo.setMonth(twoMonthsAgo.getMonth() - 2); + + const ovs = await fastify.db.opportunityVolunteerRepository.find({ + where: { + status: OpportunityVolunteerStatusType.PENDING, + updatedAt: LessThan(twoMonthsAgo), + volunteer: { statusEngagement: VolunteerStateEngagementType.AVAILABLE }, + }, + relations: ["volunteer.person", "volunteer.person.users"], + }); + + for (const ov of ovs) { + try { + const alreadySent = await fastify.db.communicationRepository.findOne({ + where: { + volunteerId: ov.volunteerId, + communicationType: CommunicationType.STATUS_UPDATE, + date: MoreThan(ov.updatedAt), + }, + }); + if (alreadySent) {continue;} + + await fastify.notify.emailStale(ov); + await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.STATUS_UPDATE, + { volunteerId: ov.volunteerId }, + ); + } catch (err) { + logger.error(`scanStalePending: ov ${ov.id} failed: ${err}`); + } + } +} diff --git a/src/services/notify/events/email-accompany-match.ts b/src/services/notify/events/email-accompany-match.ts new file mode 100644 index 00000000..8d47718c --- /dev/null +++ b/src/services/notify/events/email-accompany-match.ts @@ -0,0 +1,120 @@ +import { Lang } from "need4deed-sdk"; +import { + emailAccompanyMatchManifestUrl, + emailFromContact, +} from "../../../config/constants"; +import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import logger from "../../../logger"; +import { getLanguages } from "../../dto/utils"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: + "Accompanying to an appointment on {{ appointmentDate }} in {{ appointmentDistrict }} for {{ clientName }}", + text: `Dear {{ contactpersonName }},\n\n{{ volunteerName }} would be glad to provide interpreting support for this appointment. {{ volunteerName }} speaks {{ volunteerLanguage }}.\n\n{{ volunteerName }} has already received {{ clientName }}'s contact details and will get in touch with them shortly.\n\n{{ contactSharing }}\n\nBest regards,\nNeed4Deed`, + }, + [Lang.DE]: { + subject: + "Begleitung zum Termin am {{ appointmentDate }} in {{ appointmentDistrict }} für {{ clientName }}", + text: `Hallo {{ contactpersonName }},\n\n{{ volunteerName }} übernimmt gerne die Sprachmittlung für diesen Termin. {{ volunteerName }} spricht {{ volunteerLanguage }}.\n\n{{ volunteerName }} hat schon die Kontaktdaten von {{ clientName }} bekommen und meldet sich zeitnah bei der Person.\n\n{{ contactSharing }}\n\nViele Grüße\nNeed4Deed`, + }, +}; + +const loader = createManifestLoader(emailAccompanyMatchManifestUrl); + +export function resetAccompanyMatchTemplateCache(): void { + loader.resetCache(); +} + +function resolveContactSharing( + shareContact: boolean, + volunteerName: string, + volunteerEmail: string, + volunteerPhone: string, + lang: Lang, +): string { + if (shareContact) { + return lang === Lang.DE + ? `${volunteerName}s Kontaktdaten findest Du unten: ${volunteerEmail} ${volunteerPhone} Sollte es zur Terminabsage kommen, lass uns bitte wissen. Falls es zu einer kurzfristigen Absage kommt, kontaktiere ${volunteerName} gerne direkt. Gib bitte die Kontaktdaten des Sprachmittlers auf keinen Fall an die zu begleitende Person weiter.` + : `You can find ${volunteerName}'s contact details below: ${volunteerEmail} ${volunteerPhone} Please let us know if the appointment is cancelled. If it is cancelled at short notice, feel free to contact ${volunteerName} directly. Please do not, under any circumstances, pass the interpreter's contact details on to the person being accompanied.`; + } + return lang === Lang.DE + ? `Nach der Absprache mit ${volunteerName} dürfen wir Dir leider die Kontaktdaten nicht weitergeben. Sollte es zur Terminabsage kommen, lass uns bitte wissen. Für Fragen stehe ich Dir gerne zur Verfügung.` + : `As agreed with ${volunteerName}, we are unfortunately unable to share their contact details with you. Please let us know if the appointment is cancelled. I am happy to help if you have any questions.`; +} + +export async function sendEmailAccompanyMatch( + email: EmailTransport, + ov: OpportunityVolunteer, +): Promise { + const contactPersonEmail = ov.opportunity?.contactPerson?.email; + if (!contactPersonEmail) { + logger.warn( + `sendEmailAccompanyMatch: missing contact email for opportunity ${ov.opportunityId}`, + ); + return; + } + + const volunteer = ov.volunteer; + const opportunity = ov.opportunity; + const accompanying = opportunity.accompanying; + + const volunteerName = volunteer.person.name; + const volunteerEmail = volunteer.person.email ?? ""; + const volunteerPhone = volunteer.person.phone ?? ""; + const contactpersonName = opportunity.contactPerson!.name; + + const volunteerLanguage = getLanguages(volunteer.deal?.dealLanguage ?? []) + .map((l) => l.title) + .join(", "); + + const clientName = accompanying?.name ?? ""; + const appointmentDate = accompanying?.date + ? new Date(accompanying.date).toLocaleDateString("de-DE", { + timeZone: "Europe/Berlin", + year: "numeric", + month: "2-digit", + day: "2-digit", + }) + : ""; + const appointmentDistrict = + opportunity.district?.title ?? accompanying?.postcode?.value ?? ""; + + const locale = resolveLocale(opportunity.contactPerson?.users?.[0]?.language); + const contactSharing = resolveContactSharing( + volunteer.shareContact ?? true, + volunteerName, + volunteerEmail, + volunteerPhone, + locale, + ); + + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { + contactpersonName, + volunteerName, + volunteerLanguage, + clientName, + appointmentDate, + appointmentDistrict, + volunteerEmail, + volunteerPhone, + contactSharing, + }); + + await email.send({ + to: contactPersonEmail, + from: emailFromContact, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/events/email-accompany-not-found.ts b/src/services/notify/events/email-accompany-not-found.ts new file mode 100644 index 00000000..c340548f --- /dev/null +++ b/src/services/notify/events/email-accompany-not-found.ts @@ -0,0 +1,78 @@ +import { Lang } from "need4deed-sdk"; +import { + emailAccompanyNotFoundManifestUrl, + emailFromContact, +} from "../../../config/constants"; +import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; +import logger from "../../../logger"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: + "Accompanying to an appointment on {{ appointmentDate }} in {{ appointmentDistrict }} for {{ clientName }}", + text: `Dear {{ contactpersonName }},\n\nUnfortunately, we were unable to find a volunteer for this appointment. We have now called off our search.\n\nBest regards,\nNeed4Deed`, + }, + [Lang.DE]: { + subject: + "Begleitung zum Termin am {{ appointmentDate }} in {{ appointmentDistrict }} für {{ clientName }}", + text: `Hallo {{ contactpersonName }},\n\nleider hat sich niemand für die Sprachmittlung gemeldet. Wir haben nun unsere Suche eingestellt.\n\nViele Grüße\nNeed4Deed`, + }, +}; + +const loader = createManifestLoader(emailAccompanyNotFoundManifestUrl); + +export function resetAccompanyNotFoundTemplateCache(): void { + loader.resetCache(); +} + +export async function sendEmailAccompanyNotFound( + email: EmailTransport, + opportunity: Opportunity, +): Promise { + const contactPersonEmail = opportunity.contactPerson?.email; + if (!contactPersonEmail) { + logger.warn( + `sendEmailAccompanyNotFound: missing contact email for opportunity ${opportunity.id}`, + ); + return; + } + + const contactpersonName = opportunity.contactPerson!.name; + const accompanying = opportunity.accompanying; + const appointmentDate = accompanying?.date + ? new Date(accompanying.date).toLocaleDateString("de-DE", { + timeZone: "Europe/Berlin", + year: "numeric", + month: "2-digit", + day: "2-digit", + }) + : ""; + const appointmentDistrict = + opportunity.district?.title ?? accompanying?.postcode?.value ?? ""; + const clientName = accompanying?.name ?? ""; + + const locale = resolveLocale(opportunity.contactPerson?.users?.[0]?.language); + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { + contactpersonName, + appointmentDate, + appointmentDistrict, + clientName, + }); + + await email.send({ + to: contactPersonEmail, + from: emailFromContact, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/events/email-introduction.ts b/src/services/notify/events/email-introduction.ts new file mode 100644 index 00000000..3ea115fc --- /dev/null +++ b/src/services/notify/events/email-introduction.ts @@ -0,0 +1,159 @@ +import { DocumentStatusType, Lang, VolunteerStateCGCType } from "need4deed-sdk"; +import { + emailFromContact, + emailFromVolunteer, + emailIntroductionManifestUrl, +} from "../../../config/constants"; +import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import logger from "../../../logger"; +import { getLanguages, getOptionItems, getTitles } from "../../dto/utils"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: + "Introduction — {{ volunteerName }} & {{ volunteeringopportunityName }}", + text: `Dear {{ contactpersonName }}, dear {{ volunteerName }},\n\nWe are delighted to introduce you to each other for the volunteering opportunity "{{ volunteeringopportunityName }}".\n\n{{ volunteerName }} speaks {{ volunteerLanguage }} and has the following skills: {{ volunteerSkills }}.\nAvailability: {{ volSchedule }}\n\n{{ statmentOnCertificates }}\n\nVolunteer contact:\n{{ volunteerName }}\n{{ volunteerEmail }}\n{{ volunteerPhone }}\n\nCenter contact:\n{{ contactpersonName }}\n{{ contactpersonEmail }}\n{{ contactpersonPhone }}\n{{ agentAddress }}\n\nPlease feel free to get in touch with each other directly to arrange the details. If you have any questions, do not hesitate to contact us.\n\nBest regards,\nNeed4Deed`, + }, + [Lang.DE]: { + subject: + "Vorstellung — {{ volunteerName }} & {{ volunteeringopportunityName }}", + text: `Hallo {{ contactpersonName }}, hallo {{ volunteerName }},\n\nwir freuen uns, euch für das Gesuch „{{ volunteeringopportunityName }}" miteinander bekannt zu machen.\n\n{{ volunteerName }} spricht {{ volunteerLanguage }} und hat folgende Fähigkeiten: {{ volunteerSkills }}.\nVerfügbarkeit: {{ volSchedule }}\n\n{{ statmentOnCertificates }}\n\nKontaktdaten Ehrenamt:\n{{ volunteerName }}\n{{ volunteerEmail }}\n{{ volunteerPhone }}\n\nKontaktdaten Unterkunft:\n{{ contactpersonName }}\n{{ contactpersonEmail }}\n{{ contactpersonPhone }}\n{{ agentAddress }}\n\nIhr könnt gerne direkt miteinander in Kontakt treten, um die Details zu klären. Bei Fragen stehen wir gerne zur Verfügung.\n\nViele Grüße\nNeed4Deed`, + }, +}; + +const loader = createManifestLoader(emailIntroductionManifestUrl); + +export function resetIntroductionTemplateCache(): void { + loader.resetCache(); +} + +function resolveStatmentOnCertificates( + statusCGC: DocumentStatusType, + statusCgcProcess: VolunteerStateCGCType | null | undefined, + statusVaccination: DocumentStatusType, + lang: Lang, +): string { + const cgcNo = statusCGC === DocumentStatusType.NO; + const cgcYes = statusCGC === DocumentStatusType.YES; + const missing = statusCgcProcess === VolunteerStateCGCType.MISSING; + const uploaded = statusCgcProcess === VolunteerStateCGCType.UPLOADED; + const vaccinationYes = statusVaccination === DocumentStatusType.YES; + + if (cgcNo && missing && vaccinationYes) { + return lang === Lang.DE + ? "Das erweiterte Führungszeugnis beantragen wir sofort. Der Masernschutznachweis liegt vor." + : "We will apply for the certificate of good conduct (das erweiterte Führungszeugnis) for them. Proof of measles vaccination has been provided."; + } + if (cgcNo && missing && !vaccinationYes) { + return lang === Lang.DE + ? "Das erweiterte Führungszeugnis beantragen wir sofort." + : "We will apply for the certificate of good conduct (das erweiterte Führungszeugnis) for them."; + } + if (cgcNo && uploaded && vaccinationYes) { + return lang === Lang.DE + ? "Das erweiterte Führungszeugnis haben wir bereits beantragt. Der Masernschutznachweis liegt vor." + : "We have applied for the certificate of good conduct (das erweiterte Führungszeugnis) for them. Proof of measles vaccination has been provided."; + } + if (cgcNo && uploaded && !vaccinationYes) { + return lang === Lang.DE + ? "Das erweiterte Führungszeugnis haben wir bereits beantragt." + : "We have applied for the certificate of good conduct (das erweiterte Führungszeugnis) for them."; + } + if (cgcYes && vaccinationYes) { + return lang === Lang.DE + ? "Das erweiterte Führungszeugnis sowie der Masernschutznachweis liegen vor." + : "They have already gotten their certificate of good conduct (das erweiterte Führungszeugnis). Proof of measles vaccination has been provided."; + } + if (cgcYes && !vaccinationYes) { + return lang === Lang.DE + ? "Das erweiterte Führungszeugnis liegt vor." + : "They have already gotten their certificate of good conduct (das erweiterte Führungszeugnis)."; + } + return ""; +} + +export async function sendEmailIntroduction( + email: EmailTransport, + ov: OpportunityVolunteer, +): Promise { + const volunteerEmail = ov.volunteer?.person?.email; + const contactPersonEmail = ov.opportunity?.contactPerson?.email; + + if (!volunteerEmail || !contactPersonEmail) { + logger.warn( + `sendEmailIntroduction: missing email(s) for ov ${ov.id} (volunteer=${volunteerEmail}, contact=${contactPersonEmail})`, + ); + return; + } + + const volunteer = ov.volunteer; + const opportunity = ov.opportunity; + const locale = resolveLocale(volunteer.person?.users?.[0]?.language); + + const volunteerName = volunteer.person.name; + const contactpersonName = opportunity.contactPerson!.name; + const volunteeringopportunityName = opportunity.title; + + const volunteerLanguage = getLanguages(volunteer.deal?.dealLanguage ?? []) + .map((l) => l.title) + .join(", "); + + const volunteerSkills = getOptionItems( + volunteer.deal?.dealSkill ?? [], + "skill", + ) + .map((s) => s.title) + .join(", "); + + const volSchedule = + getTitles(volunteer.deal?.dealTimeslot ?? [], "timeslot") + .map((t) => String(t)) + .join(", ") || ""; + + const agentAddress = (() => { + const addr = opportunity.agent?.address; + if (!addr) {return "";} + return [addr.street, addr.postcode?.value, addr.city] + .filter(Boolean) + .join(", "); + })(); + + const statmentOnCertificates = resolveStatmentOnCertificates( + volunteer.statusCGC, + volunteer.statusCgcProcess, + volunteer.statusVaccination, + locale, + ); + + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { + contactpersonName, + volunteerName, + volunteeringopportunityName, + volunteerSkills, + volSchedule, + volunteerLanguage, + volunteerEmail, + volunteerPhone: volunteer.person.phone ?? "", + contactpersonEmail: contactPersonEmail, + contactpersonPhone: opportunity.contactPerson!.phone ?? "", + agentAddress, + statmentOnCertificates, + }); + + await email.send({ + to: [volunteerEmail, contactPersonEmail, emailFromVolunteer], + from: emailFromContact, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/events/email-new-accompanying.ts b/src/services/notify/events/email-new-accompanying.ts new file mode 100644 index 00000000..ef17ccc7 --- /dev/null +++ b/src/services/notify/events/email-new-accompanying.ts @@ -0,0 +1,92 @@ +import { Lang } from "need4deed-sdk"; +import { + emailFromContact, + emailNewAccompanyingManifestUrl, +} from "../../../config/constants"; +import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; +import logger from "../../../logger"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: + "Accompanying appointment on {{ appointmentDate }} in {{ appointmentDistrict }} for {{ clientName }}", + text: `Dear {{ contactpersonName }},\n\nThank you for your request.\n\nHere are the details you provided. Please check that everything is correct:\n {{ appointmentTitle }}\n {{ appointmentDistrict }}\n {{ appointmentAddress }}\n {{ accompaniedpersonLanguage }}\n{{ appointmentaLanguage }}\n{{ accompaniedpersonName }}\n{{ accompaniedpersonPhone }}\n{{ appointmentComment }}\n\nWe will review the information promptly and get back to you within two days if anything is missing.\n\nIf all the details are correct and the accompaniment is straightforward (e.g. not a hospital treatment, a brief description is provided, and a direct phone number of the contact person is available), we will forward your request to our volunteers. We will get back to you once we have found someone for the appointment.\nIf we are unable to find a volunteer for the appointment, we will let you know no later than four working days beforehand.\n\nMore information about our guidelines can be found at https://need4deed.org/rac-guidelines\n\nBest regards,\nThe Team`, + }, + [Lang.DE]: { + subject: + "Begleitung zum Termin am {{ appointmentDate }} in {{ appointmentDistrict }} für {{ clientName }}", + text: `Hallo {{ contactpersonName }},\n\nvielen Dank für die Anfrage.\n\nHier sind die angegebenen Details. Bitte prüfe kurz, ob alles stimmt:\n {{ appointmentTitle }}\n {{ appointmentDistrict }}\n {{ appointmentAddress }}\n {{ accompaniedpersonLanguage }}\n{{ appointmentaLanguage }}\n{{ accompaniedpersonName }}\n{{ accompaniedpersonPhone }}\n{{ appointmentComment }}\n\nWir überprüfen die Informationen umgehend und melden uns innerhalb von zwei Tagen, falls etwas fehlt.\n\nFalls alle Angaben korrekt sind und die Begleitung klar ist (z. B. keine Krankenhausbehandlung, kurze Beschreibung und verfügbare Direktnummer der begleitenden Person), leiten wir deine Anfrage an die Freiwilligen weiter. Wir melden uns, sobald wir jemanden für den Termin gefunden haben.\nFalls wir keine Freiwilligen für den Termin vermitteln können, melden wir uns spätestens vier Werktage vorher.\n\nMehr Informationen über die Leitlinien findest Du unter https://need4deed.org/rac-guidelines\n\nViele Grüße\nDas Team`, + }, +}; + +const loader = createManifestLoader(emailNewAccompanyingManifestUrl); + +export function resetNewAccompanyingTemplateCache(): void { + loader.resetCache(); +} + +export async function sendEmailNewAccompanying( + email: EmailTransport, + opportunity: Opportunity, +): Promise { + const contactPersonEmail = opportunity.contactPerson?.email; + if (!contactPersonEmail) { + logger.warn( + `sendEmailNewAccompanying: missing contact email for opportunity ${opportunity.id}`, + ); + return; + } + + const accompanying = opportunity.accompanying; + const contactpersonName = opportunity.contactPerson!.name; + const appointmentDate = accompanying?.date + ? new Date(accompanying.date).toLocaleDateString("de-DE", { + timeZone: "Europe/Berlin", + year: "numeric", + month: "2-digit", + day: "2-digit", + }) + : ""; + const appointmentDistrict = + opportunity.district?.title ?? accompanying?.postcode?.value ?? ""; + const clientName = accompanying?.name ?? ""; + const appointmentTitle = opportunity.title; + const appointmentAddress = accompanying?.address ?? ""; + const accompaniedpersonLanguage = accompanying?.languageToTranslate ?? ""; + const appointmentaLanguage = opportunity.translationType ?? ""; + const accompaniedpersonName = accompanying?.name ?? ""; + const accompaniedpersonPhone = accompanying?.phone ?? ""; + const appointmentComment = opportunity.info ?? ""; + + const locale = resolveLocale(opportunity.contactPerson?.users?.[0]?.language); + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { + contactpersonName, + appointmentDate, + appointmentDistrict, + clientName, + appointmentTitle, + appointmentAddress, + accompaniedpersonLanguage, + appointmentaLanguage, + accompaniedpersonName, + accompaniedpersonPhone, + appointmentComment, + }); + + await email.send({ + to: contactPersonEmail, + from: emailFromContact, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/events/email-new-regular.ts b/src/services/notify/events/email-new-regular.ts new file mode 100644 index 00000000..4a9cc973 --- /dev/null +++ b/src/services/notify/events/email-new-regular.ts @@ -0,0 +1,63 @@ +import { Lang } from "need4deed-sdk"; +import { + emailFromContact, + emailNewRegularManifestUrl, +} from "../../../config/constants"; +import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; +import logger from "../../../logger"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: "Your request to Need4Deed", + text: `Dear {{ contactpersonName }},\n\nThank you for sending us your volunteering opportunity "{{ volunteeringopportunityName }}".\n\nWe will start looking for volunteers as soon as possible.\n\nWe will let you know when we find someone and introduce the volunteer to you.\n\nBest regards,\nNeed4Deed`, + }, + [Lang.DE]: { + subject: "Deine Anfrage bei Need4Deed", + text: `Hallo {{ contactpersonName }},\n\nvielen Dank für deine Anfrage zu "{{ volunteeringopportunityName }}".\n\nWir fangen bald mit der Suche an.\n\nWenn wir jemanden gefunden haben, melden wir uns bei dir und stellen dir die Person vor.\n\nViele Grüße\nNeed4Deed`, + }, +}; + +const loader = createManifestLoader(emailNewRegularManifestUrl); + +export function resetNewRegularTemplateCache(): void { + loader.resetCache(); +} + +export async function sendEmailNewRegular( + email: EmailTransport, + opportunity: Opportunity, +): Promise { + const contactPersonEmail = opportunity.contactPerson?.email; + if (!contactPersonEmail) { + logger.warn( + `sendEmailNewRegular: missing contact email for opportunity ${opportunity.id}`, + ); + return; + } + + const contactpersonName = opportunity.contactPerson!.name; + const volunteeringopportunityName = opportunity.title; + + const locale = resolveLocale(opportunity.contactPerson?.users?.[0]?.language); + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { + contactpersonName, + volunteeringopportunityName, + }); + + await email.send({ + to: contactPersonEmail, + from: emailFromContact, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/events/email-post-match-checkup.ts b/src/services/notify/events/email-post-match-checkup.ts new file mode 100644 index 00000000..89062076 --- /dev/null +++ b/src/services/notify/events/email-post-match-checkup.ts @@ -0,0 +1,58 @@ +import { Lang } from "need4deed-sdk"; +import { + emailFromVolunteer, + emailPostMatchCheckupManifestUrl, +} from "../../../config/constants"; +import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import logger from "../../../logger"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: "Checking in — are you still volunteering?", + text: `Dear {{ volunteerName }},\n\nWe wanted to check in. You were matched two months ago, have you had the chance to volunteer and are you still active?\n\nLet us know by replying to this email so we can keep your profile up to date.\n\nThank you,\nNeed4Deed`, + }, + [Lang.DE]: { + subject: "Kurze Nachfrage — bist du noch aktiv?", + text: `Hallo {{ volunteerName }},\n\nwir wollten kurz nachfragen. Du wurdest vor zwei Monaten vermittelt — hattest du die Gelegenheit, dich ehrenamtlich zu engagieren, und bist du noch aktiv?\n\nBitte antworte einfach auf diese E-Mail, damit wir dein Profil aktuell halten können.\n\nVielen Dank\nNeed4Deed`, + }, +}; + +const loader = createManifestLoader(emailPostMatchCheckupManifestUrl); + +export function resetPostMatchCheckupTemplateCache(): void { + loader.resetCache(); +} + +export async function sendEmailPostMatchCheckup( + email: EmailTransport, + ov: OpportunityVolunteer, +): Promise { + const volunteerEmail = ov.volunteer?.person?.email; + if (!volunteerEmail) { + logger.warn( + `sendEmailPostMatchCheckup: missing email for volunteer ${ov.volunteerId}`, + ); + return; + } + + const volunteerName = ov.volunteer.person.name; + const locale = resolveLocale(ov.volunteer.person?.users?.[0]?.language); + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { volunteerName }); + + await email.send({ + to: volunteerEmail, + from: emailFromVolunteer, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/events/email-regular-update.ts b/src/services/notify/events/email-regular-update.ts new file mode 100644 index 00000000..9a2a4fb6 --- /dev/null +++ b/src/services/notify/events/email-regular-update.ts @@ -0,0 +1,63 @@ +import { Lang } from "need4deed-sdk"; +import { + emailFromContact, + emailRegularUpdateManifestUrl, +} from "../../../config/constants"; +import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; +import logger from "../../../logger"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: "Status of your volunteering opportunity — Need4Deed", + text: `Dear {{ contactpersonName }},\n\nWe are checking in to see if you are still looking for volunteers for "{{ volunteeringopportunityName }}".\n\nPlease let us know within two weeks. Otherwise we will mark this volunteering opportunity as inactive in our system.\n\nBest regards,\nNeed4Deed`, + }, + [Lang.DE]: { + subject: "Aktualisierung der Gesuche bei Need4Deed", + text: `Hallo {{ contactpersonName }},\n\nwir möchten gerne wissen, ob das Gesuch "{{ volunteeringopportunityName }}" noch aktuell ist.\n\nSollten wir innerhalb von 2 Wochen keine Rückmeldung bekommen, werden wir das Gesuch als "Inaktiv" markieren.\n\nWir freuen uns darauf, von Dir zu hören.\n\nViele Grüße\nNeed4Deed`, + }, +}; + +const loader = createManifestLoader(emailRegularUpdateManifestUrl); + +export function resetRegularUpdateTemplateCache(): void { + loader.resetCache(); +} + +export async function sendEmailRegularUpdate( + email: EmailTransport, + opportunity: Opportunity, +): Promise { + const contactPersonEmail = opportunity.contactPerson?.email; + if (!contactPersonEmail) { + logger.warn( + `sendEmailRegularUpdate: missing contact email for opportunity ${opportunity.id}`, + ); + return; + } + + const contactpersonName = opportunity.contactPerson!.name; + const volunteeringopportunityName = opportunity.title; + + const locale = resolveLocale(opportunity.contactPerson?.users?.[0]?.language); + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { + contactpersonName, + volunteeringopportunityName, + }); + + await email.send({ + to: contactPersonEmail, + from: emailFromContact, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/events/email-stale.ts b/src/services/notify/events/email-stale.ts new file mode 100644 index 00000000..bbf5db88 --- /dev/null +++ b/src/services/notify/events/email-stale.ts @@ -0,0 +1,58 @@ +import { Lang } from "need4deed-sdk"; +import { + emailFromVolunteer, + emailStaleManifestUrl, +} from "../../../config/constants"; +import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import logger from "../../../logger"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: "Are you still interested in volunteering? — Need4Deed", + text: `Dear {{ volunteerName }},\n\nWe wanted to check in. Two months ago we sent you a volunteering opportunity, but we have not heard back yet.\n\nIf you are still interested in volunteering, please reply to this email.\n\nBest regards,\nNeed4Deed`, + }, + [Lang.DE]: { + subject: "Bist du noch interessiert? — Need4Deed", + text: `Hallo {{ volunteerName }},\n\nwir wollten kurz nachfragen. Vor zwei Monaten haben wir dir eine ehrenamtliche Möglichkeit vorgeschlagen, aber bisher haben wir keine Rückmeldung erhalten.\n\nFalls du weiterhin Interesse hast, antworte bitte auf diese E-Mail.\n\nViele Grüße\nNeed4Deed`, + }, +}; + +const loader = createManifestLoader(emailStaleManifestUrl); + +export function resetStaleTemplateCache(): void { + loader.resetCache(); +} + +export async function sendEmailStale( + email: EmailTransport, + ov: OpportunityVolunteer, +): Promise { + const volunteerEmail = ov.volunteer?.person?.email; + if (!volunteerEmail) { + logger.warn( + `sendEmailStale: missing email for volunteer ${ov.volunteerId}`, + ); + return; + } + + const volunteerName = ov.volunteer.person.name; + const locale = resolveLocale(ov.volunteer.person?.users?.[0]?.language); + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { volunteerName }); + + await email.send({ + to: volunteerEmail, + from: emailFromVolunteer, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/events/email-suggestion.ts b/src/services/notify/events/email-suggestion.ts new file mode 100644 index 00000000..9068b333 --- /dev/null +++ b/src/services/notify/events/email-suggestion.ts @@ -0,0 +1,71 @@ +import { Lang } from "need4deed-sdk"; +import { + emailFromVolunteer, + emailSuggestionManifestUrl, +} from "../../../config/constants"; +import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import logger from "../../../logger"; +import { getTitles } from "../../dto/utils"; +import { + createManifestLoader, + fillTemplate, + resolveContent, + resolveLocale, + type LocaleContent, +} from "../email-template"; +import type { EmailTransport } from "../types"; + +const BUILTIN: Record = { + [Lang.EN]: { + subject: "Volunteering opportunity match — Need4Deed", + text: `Dear {{ volunteerName }},\n\nWe have found a volunteering opportunity that matches your profile.\n\nOpportunity: {{ opportunityName }}\nPostcode: {{ plz }}\nSchedule: {{ schedule }}\n\nIf you are interested, please reply to this email.\n\nBest regards,\nNeed4Deed`, + }, + [Lang.DE]: { + subject: "Möglicher Einsatz — Need4Deed", + text: `Hallo {{ volunteerName }},\n\nwir haben eine ehrenamtliche Möglichkeit gefunden, die zu deinem Profil passt.\n\nGesuch: {{ opportunityName }}\nPostleitzahl: {{ plz }}\nZeiten: {{ schedule }}\n\nFalls du Interesse hast, antworte bitte auf diese E-Mail.\n\nViele Grüße\nNeed4Deed`, + }, +}; + +const loader = createManifestLoader(emailSuggestionManifestUrl); + +export function resetSuggestionTemplateCache(): void { + loader.resetCache(); +} + +export async function sendEmailSuggestion( + email: EmailTransport, + ov: OpportunityVolunteer, +): Promise { + const volunteerEmail = ov.volunteer?.person?.email; + if (!volunteerEmail) { + logger.warn( + `sendEmailSuggestion: missing email for volunteer ${ov.volunteerId}`, + ); + return; + } + + const volunteerName = ov.volunteer.person.name; + const opportunityName = ov.opportunity?.title ?? ""; + const plz = ov.volunteer.deal?.postcode?.value ?? ""; + const schedule = + getTitles(ov.volunteer.deal?.dealTimeslot ?? [], "timeslot") + .map((t) => String(t)) + .join(", ") || ""; + + const locale = resolveLocale(ov.volunteer.person?.users?.[0]?.language); + const content = resolveContent(await loader.load(), locale, BUILTIN); + const { subject, text, html } = fillTemplate(content, { + volunteerName, + opportunityName, + plz, + schedule, + }); + + await email.send({ + to: volunteerEmail, + from: emailFromVolunteer, + subject, + ...(text !== undefined ? { text } : {}), + ...(html !== undefined ? { html } : {}), + }); +} diff --git a/src/services/notify/index.ts b/src/services/notify/index.ts index 5bb58d49..010f6d86 100644 --- a/src/services/notify/index.ts +++ b/src/services/notify/index.ts @@ -6,3 +6,12 @@ export * from "./events/email-verification"; export * from "./events/ops-alert"; export * from "./events/comment-tagged"; export * from "./events/email-password-reset"; +export * from "./events/email-suggestion"; +export * from "./events/email-stale"; +export * from "./events/email-introduction"; +export * from "./events/email-post-match-checkup"; +export * from "./events/email-accompany-not-found"; +export * from "./events/email-accompany-match"; +export * from "./events/email-regular-update"; +export * from "./events/email-new-regular"; +export * from "./events/email-new-accompanying"; diff --git a/src/services/notify/transports/email-brevo.ts b/src/services/notify/transports/email-brevo.ts index e415dc3e..8ac17a7c 100644 --- a/src/services/notify/transports/email-brevo.ts +++ b/src/services/notify/transports/email-brevo.ts @@ -26,7 +26,9 @@ export class BrevoEmailTransport implements EmailTransport { }, body: JSON.stringify({ sender: { email: msg.from ?? defaultFrom }, - to: [{ email: msg.to }], + to: (Array.isArray(msg.to) ? msg.to : [msg.to]).map((email) => ({ + email, + })), ...(isDev || isStaging ? { bcc: [ diff --git a/src/services/notify/types.ts b/src/services/notify/types.ts index 383ed82f..d0be1789 100644 --- a/src/services/notify/types.ts +++ b/src/services/notify/types.ts @@ -1,5 +1,5 @@ export interface EmailMessage { - to: string; + to: string | string[]; subject: string; text?: string; html?: string; diff --git a/yarn.lock b/yarn.lock index f7759270..c9678f96 100644 --- a/yarn.lock +++ b/yarn.lock @@ -844,6 +844,11 @@ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== +"@types/node-cron@^3.0.11": + version "3.0.11" + resolved "https://registry.yarnpkg.com/@types/node-cron/-/node-cron-3.0.11.tgz#70b7131f65038ae63cfe841354c8aba363632344" + integrity sha512-0ikrnug3/IyneSHqCBeslAhlK2aBfYek1fGo4bP4QnZPmiqSGRK+Oy7ZMisLWkesffJvQ1cqAcBnJC+8+nxIAg== + "@types/node@^24.9.1": version "24.10.0" resolved "https://registry.yarnpkg.com/@types/node/-/node-24.10.0.tgz#6b79086b0dfc54e775a34ba8114dcc4e0221f31f" @@ -2937,10 +2942,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.115: - version "0.0.115" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.115.tgz#cb07ffaabbd22353e65b28e9a592a3a78b269593" - integrity sha512-VoOpHlSnAUgNIHrUsKPrj1L4299ze+bBFsnCLs3BP5IPL5lLN5uK1vzkT+t9rAgilb8h22HqXWlzxMAPBhoTcA== +need4deed-sdk@0.0.116: + version "0.0.116" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.116.tgz#4b88f6a82129f2fc663825ac3c484731876ea70b" + integrity sha512-XL0bI7/qEKvzukxfrCnv0WyueVXyfFbk6FyOPJYw0H86tLUVvkR4iKUOw5f0yAA21vlj6EGx5y39+7VDgsJAcQ== no-case@^3.0.4: version "3.0.4" @@ -2955,6 +2960,11 @@ node-addon-api@^8.3.0: resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-8.5.0.tgz#c91b2d7682fa457d2e1c388150f0dff9aafb8f3f" integrity sha512-/bRZty2mXUIFY/xU5HLvveNHlswNJej+RnxBjOMkidWfwZzgTbPG1E3K5TOxRLOR+5hX7bSofy8yf1hZevMS8A== +node-cron@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/node-cron/-/node-cron-4.5.0.tgz#284908d302415a32e0774b3a8c8184d423e262a8" + integrity sha512-4Trh+kjvbXokyJkwQumvD5YAgeJfgHLR/sKyu71uSmxfCR5QMO1hldpvmFZOICN5pLgNY+J5Y8+ar3XKo5/4tQ== + node-gyp-build@^4.8.4: version "4.8.4" resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.4.tgz#8a70ee85464ae52327772a90d66c6077a900cfc8" From 43f00c9a643cc78ab08c9e4790a1923788a68b45 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 12:00:27 +0000 Subject: [PATCH 36/89] test: add unit tests for german-holidays utilities Covers isGermanPublicHoliday (fixed, Berlin-state, and Easter-based holidays across multiple years), addWorkingDays (weekend/holiday skipping including across Easter), and berlinToday (DST boundary). Co-Authored-By: Claude Sonnet 4.6 --- .../services/jobs/german-holidays.test.ts | 145 ++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 src/test/services/jobs/german-holidays.test.ts diff --git a/src/test/services/jobs/german-holidays.test.ts b/src/test/services/jobs/german-holidays.test.ts new file mode 100644 index 00000000..825c0749 --- /dev/null +++ b/src/test/services/jobs/german-holidays.test.ts @@ -0,0 +1,145 @@ +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; +import { + addWorkingDays, + berlinToday, + isGermanPublicHoliday, +} from "../../../services/jobs/german-holidays"; + +// Known Easter dates for reference years +// 2024: Mar 31 2025: Apr 20 2026: Apr 5 2023: Apr 9 +const d = (y: number, m: number, day: number) => new Date(y, m - 1, day); + +describe("isGermanPublicHoliday", () => { + describe("fixed federal holidays", () => { + it.each([ + ["Neujahr", d(2026, 1, 1)], + ["Tag der Arbeit", d(2026, 5, 1)], + ["Tag der Deutschen Einheit", d(2026, 10, 3)], + ["1. Weihnachtstag", d(2026, 12, 25)], + ["2. Weihnachtstag", d(2026, 12, 26)], + ])("%s is a holiday", (_name, date) => { + expect(isGermanPublicHoliday(date)).toBe(true); + }); + }); + + describe("Berlin state holiday", () => { + it("Internationaler Frauentag (Mar 8) is a holiday", () => { + expect(isGermanPublicHoliday(d(2026, 3, 8))).toBe(true); + }); + }); + + describe("Easter-based holidays", () => { + // 2026: Easter Sunday = Apr 5 + it.each([ + ["Karfreitag 2026", d(2026, 4, 3)], + ["Ostermontag 2026", d(2026, 4, 6)], + ["Christi Himmelfahrt 2026", d(2026, 5, 14)], + ["Pfingstmontag 2026", d(2026, 5, 25)], + ])("%s is a holiday", (_name, date) => { + expect(isGermanPublicHoliday(date)).toBe(true); + }); + + // 2025: Easter Sunday = Apr 20 + it.each([ + ["Karfreitag 2025", d(2025, 4, 18)], + ["Ostermontag 2025", d(2025, 4, 21)], + ["Christi Himmelfahrt 2025", d(2025, 5, 29)], + ["Pfingstmontag 2025", d(2025, 6, 9)], + ])("%s is a holiday", (_name, date) => { + expect(isGermanPublicHoliday(date)).toBe(true); + }); + + // 2024: Easter Sunday = Mar 31 + it.each([ + ["Karfreitag 2024", d(2024, 3, 29)], + ["Ostermontag 2024", d(2024, 4, 1)], + ["Christi Himmelfahrt 2024", d(2024, 5, 9)], + ["Pfingstmontag 2024", d(2024, 5, 20)], + ])("%s is a holiday", (_name, date) => { + expect(isGermanPublicHoliday(date)).toBe(true); + }); + }); + + describe("regular working days", () => { + it.each([ + d(2026, 1, 2), // Friday after Neujahr + d(2026, 4, 7), // Tuesday after Ostermontag + d(2026, 7, 1), // mid-summer Wednesday + d(2026, 12, 24), // Heiligabend (NOT a public holiday) + ])("%s is not a holiday", (date) => { + expect(isGermanPublicHoliday(date)).toBe(false); + }); + + it("Heiligabend (Dec 24) is not a public holiday", () => { + expect(isGermanPublicHoliday(d(2026, 12, 24))).toBe(false); + }); + }); +}); + +describe("addWorkingDays", () => { + it("skips weekends", () => { + // Friday 2026-01-02 + 1 working day = Monday 2026-01-05 + const result = addWorkingDays(d(2026, 1, 2), 1); + expect(result).toEqual(d(2026, 1, 5)); + }); + + it("skips Saturday and Sunday when spanning a weekend", () => { + // Thursday 2026-01-08 + 2 working days = Monday 2026-01-12 + const result = addWorkingDays(d(2026, 1, 8), 2); + expect(result).toEqual(d(2026, 1, 12)); + }); + + it("skips public holidays", () => { + // Thursday 2026-04-02 + 1 working day skips Karfreitag (Apr 3) → Monday Apr 6 + // (Ostermontag Apr 6 is also a holiday → Tuesday Apr 7) + const result = addWorkingDays(d(2026, 4, 2), 1); + expect(result).toEqual(d(2026, 4, 7)); + }); + + it("4 working days across Easter weekend", () => { + // Mon 2026-03-30: day1=Mar31, day2=Apr1, day3=Apr2, + // then skip Karfreitag Apr3, skip weekend Apr4-5, skip Ostermontag Apr6 + // day4=Apr7 + const result = addWorkingDays(d(2026, 3, 30), 4); + expect(result).toEqual(d(2026, 4, 7)); + }); + + it("adding 0 working days returns the same day", () => { + const result = addWorkingDays(d(2026, 6, 10), 0); + expect(result).toEqual(d(2026, 6, 10)); + }); + + it("does not count the start date itself", () => { + // Monday + 1 = Tuesday + const result = addWorkingDays(d(2026, 6, 1), 1); + expect(result).toEqual(d(2026, 6, 2)); + }); +}); + +describe("berlinToday", () => { + beforeEach(() => { + vi.useFakeTimers(); + }); + + afterEach(() => { + vi.useRealTimers(); + }); + + it("returns the current Berlin calendar date as a local Date", () => { + // Freeze to a known UTC time: 2026-07-01T22:30:00Z = 2026-07-02 in Berlin (UTC+2) + vi.setSystemTime(new Date("2026-07-01T22:30:00Z")); + const result = berlinToday(); + expect(result.getFullYear()).toBe(2026); + expect(result.getMonth()).toBe(6); // July = 6 (0-indexed) + expect(result.getDate()).toBe(2); + }); + + it("returns the same day when UTC and Berlin date match", () => { + // 2026-07-01T10:00:00Z = 2026-07-01 12:00 Berlin + vi.setSystemTime(new Date("2026-07-01T10:00:00Z")); + const result = berlinToday(); + expect(result.getFullYear()).toBe(2026); + expect(result.getMonth()).toBe(6); + expect(result.getDate()).toBe(1); + }); +}); From ad5af2e5c91c0465fc9d35a5dd4110f49190721d Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 15:37:26 +0000 Subject: [PATCH 37/89] fix: address 14 code-review findings in email scheduler and scan jobs - scheduler: use QueryRunner to pin advisory lock acquire+release to the same pool connection (session-level lock was silently non-released) - scheduler: wrap cron callback in try/catch (unhandled rejection would terminate Node 22); store ScheduledTask and stop it on onClose hook; pass Error object to pino instead of string-coercing r.reason - migration down(): remove spurious inner CHECK keyword from CHECK(CHECK(...)) which caused a PostgreSQL syntax error on migration:revert - scan-accompany-not-found: add status IN (NEW/SEARCHING/ACTIVE) filter; replace UTC-based startOfDay/endOfDay with berlinDayBoundaries() so Berlin-midnight timestamps are not missed on AWS (UTC); push date+status filters into SQL via Between/In to avoid full-table scan - german-holidays: export berlinDayBoundaries() helper (UTC boundaries for a Berlin calendar day, DST-aware) - scan-regular-update: use updatedAt instead of createdAt for staleness; add date: MoreThan(opp.updatedAt) to dedup so opportunities can receive follow-up emails after subsequent status changes - scan-post-match-checkup: add volunteer.statusEngagement=AVAILABLE guard; scope dedup to (volunteerId, opportunityId) pair - scan-stale-pending: scope dedup to (volunteerId, opportunityId) so a volunteer with multiple stale pending OVs gets an email per OV, not just one - log-email-communication: remove internal error swallow; callers already have per-item try/catch, silently dropping the comm record caused duplicate emails on every subsequent hourly scan - email-accompany-match: null-guard volunteer.person before accessing .name Co-Authored-By: Claude Sonnet 4.6 --- ...n-nullable-fks-and-opportunity-relation.ts | 4 +- src/server/plugins/scheduler.ts | 77 +++++++++++-------- .../utils/data/log-email-communication.ts | 23 ++---- src/services/jobs/german-holidays.ts | 26 +++++++ src/services/jobs/scan-accompany-not-found.ts | 56 +++++++------- src/services/jobs/scan-post-match-checkup.ts | 9 ++- src/services/jobs/scan-regular-update.ts | 9 ++- src/services/jobs/scan-stale-pending.ts | 7 +- .../notify/events/email-accompany-match.ts | 7 ++ 9 files changed, 132 insertions(+), 86 deletions(-) diff --git a/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts b/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts index e3fe75a4..986e736a 100644 --- a/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts +++ b/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts @@ -62,7 +62,7 @@ export class CommunicationNullableFksAndOpportunityRelation1782903516653 await queryRunner.query( `ALTER TABLE "communication" DROP COLUMN "opportunity_id"`, ); - await queryRunner.query(`ALTER TABLE "communication" ADD CONSTRAINT "CHK_31faa29cb0aff6ef55be2b2146" CHECK (CHECK ((( + await queryRunner.query(`ALTER TABLE "communication" ADD CONSTRAINT "CHK_31faa29cb0aff6ef55be2b2146" CHECK ((( CASE WHEN (volunteer_id IS NOT NULL) THEN 1 ELSE 0 @@ -70,6 +70,6 @@ END + CASE WHEN (agent_id IS NOT NULL) THEN 1 ELSE 0 -END) = 1)))`); +END) = 1))`); } } diff --git a/src/server/plugins/scheduler.ts b/src/server/plugins/scheduler.ts index dd975ecc..f07ec507 100644 --- a/src/server/plugins/scheduler.ts +++ b/src/server/plugins/scheduler.ts @@ -17,55 +17,68 @@ import { scanStalePending } from "../../services/jobs/scan-stale-pending"; const SCHEDULER_LOCK_ID = 20240701; async function runWithAdvisoryLock(fn: () => Promise): Promise { - const [row] = await dataSource.query( - "SELECT pg_try_advisory_lock($1) AS acquired", - [SCHEDULER_LOCK_ID], - ); - if (!row?.acquired) { - logger.debug( - "scheduler: advisory lock held by another instance — skipping", - ); - return; - } + // Acquire and release the lock on the same pool connection. + // pg_try_advisory_lock is session-level: releasing it from a different + // connection is a no-op, so both queries must share a QueryRunner. + const qr = dataSource.createQueryRunner(); + await qr.connect(); try { - await fn(); + const [row] = await qr.query( + "SELECT pg_try_advisory_lock($1) AS acquired", + [SCHEDULER_LOCK_ID], + ); + if (!row?.acquired) { + logger.debug( + "scheduler: advisory lock held by another instance — skipping", + ); + return; + } + try { + await fn(); + } finally { + await qr.query("SELECT pg_advisory_unlock($1)", [SCHEDULER_LOCK_ID]); + } } finally { - await dataSource.query("SELECT pg_advisory_unlock($1)", [ - SCHEDULER_LOCK_ID, - ]); + await qr.release(); } } async function schedulerPlugin(fastify: FastifyInstance): Promise { // Hourly on the hour, 08:00–19:00 Berlin time, weekdays only. // node-cron handles DST automatically when timezone is set. - cron.schedule( + const task = cron.schedule( "0 8-19 * * 1-5", async () => { - if (isGermanPublicHoliday(berlinToday())) { - logger.info("scheduler: skipping — German public holiday"); - return; - } + try { + if (isGermanPublicHoliday(berlinToday())) { + logger.info("scheduler: skipping — German public holiday"); + return; + } - logger.info("scheduler: running hourly email scans"); + logger.info("scheduler: running hourly email scans"); - await runWithAdvisoryLock(async () => { - const results = await Promise.allSettled([ - scanStalePending(fastify), - scanPostMatchCheckup(fastify), - scanAccompanyNotFound(fastify), - scanRegularUpdate(fastify), - ]); + await runWithAdvisoryLock(async () => { + const results = await Promise.allSettled([ + scanStalePending(fastify), + scanPostMatchCheckup(fastify), + scanAccompanyNotFound(fastify), + scanRegularUpdate(fastify), + ]); - for (const r of results) { - if (r.status === "rejected") { - logger.error(`scheduler: scan failed: ${r.reason}`); + for (const r of results) { + if (r.status === "rejected") { + logger.error({ err: r.reason }, "scheduler: scan failed"); + } } - } - }); + }); + } catch (err) { + logger.error({ err }, "scheduler: unhandled error in cron callback"); + } }, { timezone: "Europe/Berlin" }, ); + + fastify.addHook("onClose", () => task.stop()); } export default fp(schedulerPlugin, { diff --git a/src/server/utils/data/log-email-communication.ts b/src/server/utils/data/log-email-communication.ts index f58a0d56..ca3419a8 100644 --- a/src/server/utils/data/log-email-communication.ts +++ b/src/server/utils/data/log-email-communication.ts @@ -5,25 +5,18 @@ import { } from "need4deed-sdk"; import { Repository } from "typeorm"; import Communication from "../../../data/entity/communication.entity"; -import logger from "../../../logger"; export async function logEmailCommunication( repo: Repository, communicationType: CommunicationType, ids: { volunteerId?: number; opportunityId?: number; agentId?: number }, ): Promise { - try { - await repo.save( - new Communication({ - contactType: ContactType.TEXT_EMAIL, - contactMethod: ContactMethodType.EMAIL, - communicationType, - ...ids, - }), - ); - } catch (err) { - logger.error( - `logEmailCommunication failed (type=${communicationType}): ${err}`, - ); - } + await repo.save( + new Communication({ + contactType: ContactType.TEXT_EMAIL, + contactMethod: ContactMethodType.EMAIL, + communicationType, + ...ids, + }), + ); } diff --git a/src/services/jobs/german-holidays.ts b/src/services/jobs/german-holidays.ts index 5368b1b1..56da2355 100644 --- a/src/services/jobs/german-holidays.ts +++ b/src/services/jobs/german-holidays.ts @@ -68,3 +68,29 @@ export function berlinToday(): Date { const [y, m, d] = s.split("-").map(Number); return new Date(y, m - 1, d); } + +// Returns UTC timestamps for the start and end of the given Berlin calendar day. +// Necessary because Node.js `new Date(y, m, d)` uses the process-local timezone +// (UTC on AWS), so it would not correctly represent Berlin midnight. +export function berlinDayBoundaries(berlinDate: Date): { + startOfDay: Date; + endOfDay: Date; +} { + const y = berlinDate.getFullYear(); + const m = berlinDate.getMonth(); + const d = berlinDate.getDate(); + // Use noon UTC as a reference point to measure the Berlin offset for this day. + // DST transitions happen at 02:00 in Europe, so noon is always unambiguous. + const noonUTC = new Date(Date.UTC(y, m, d, 12)); + // toLocaleString renders Berlin wall-clock time as a string; parsing it back + // without a timezone treats it as local (= UTC on AWS). The difference gives + // the Berlin offset in milliseconds (e.g. +3600000 for UTC+1, +7200000 for UTC+2). + const berlinOffsetMs = + new Date( + noonUTC.toLocaleString("en-US", { timeZone: "Europe/Berlin" }), + ).getTime() - noonUTC.getTime(); + return { + startOfDay: new Date(Date.UTC(y, m, d, 0) - berlinOffsetMs), + endOfDay: new Date(Date.UTC(y, m, d, 23, 59, 59, 999) - berlinOffsetMs), + }; +} diff --git a/src/services/jobs/scan-accompany-not-found.ts b/src/services/jobs/scan-accompany-not-found.ts index 39b31e6a..d8cde5fb 100644 --- a/src/services/jobs/scan-accompany-not-found.ts +++ b/src/services/jobs/scan-accompany-not-found.ts @@ -1,38 +1,35 @@ import { FastifyInstance } from "fastify"; import { CommunicationType, + OpportunityStatusType, OpportunityVolunteerStatusType, ProfileVolunteeringType, } from "need4deed-sdk"; +import { Between, In } from "typeorm"; import logger from "../../logger"; import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; -import { addWorkingDays, berlinToday } from "./german-holidays"; +import { + addWorkingDays, + berlinDayBoundaries, + berlinToday, +} from "./german-holidays"; export async function scanAccompanyNotFound( fastify: FastifyInstance, ): Promise { const targetDay = addWorkingDays(berlinToday(), 4); - const startOfDay = new Date( - targetDay.getFullYear(), - targetDay.getMonth(), - targetDay.getDate(), - 0, - 0, - 0, - 0, - ); - const endOfDay = new Date( - targetDay.getFullYear(), - targetDay.getMonth(), - targetDay.getDate(), - 23, - 59, - 59, - 999, - ); + const { startOfDay, endOfDay } = berlinDayBoundaries(targetDay); const opps = await fastify.db.opportunityRepository.find({ - where: { type: ProfileVolunteeringType.ACCOMPANYING as never }, + where: { + type: ProfileVolunteeringType.ACCOMPANYING as never, + status: In([ + OpportunityStatusType.NEW, + OpportunityStatusType.SEARCHING, + OpportunityStatusType.ACTIVE, + ]), + accompanying: { date: Between(startOfDay, endOfDay) }, + }, relations: [ "accompanying", "accompanying.postcode", @@ -43,15 +40,12 @@ export async function scanAccompanyNotFound( ], }); - const candidates = opps.filter((opp) => { - const date = opp.accompanying?.date; - if (!date) {return false;} - const d = new Date(date); - if (d < startOfDay || d > endOfDay) {return false;} - return !opp.opportunityVolunteer?.some( - (ov) => ov.status === OpportunityVolunteerStatusType.MATCHED, - ); - }); + const candidates = opps.filter( + (opp) => + !opp.opportunityVolunteer?.some( + (ov) => ov.status === OpportunityVolunteerStatusType.MATCHED, + ), + ); for (const opp of candidates) { try { @@ -61,7 +55,9 @@ export async function scanAccompanyNotFound( communicationType: CommunicationType.ACCOMPANYING_NOT_FOUND, }, }); - if (alreadySent) {continue;} + if (alreadySent) { + continue; + } await fastify.notify.emailAccompanyNotFound(opp); await logEmailCommunication( diff --git a/src/services/jobs/scan-post-match-checkup.ts b/src/services/jobs/scan-post-match-checkup.ts index 703e3f74..049c54f3 100644 --- a/src/services/jobs/scan-post-match-checkup.ts +++ b/src/services/jobs/scan-post-match-checkup.ts @@ -2,6 +2,7 @@ import { FastifyInstance } from "fastify"; import { CommunicationType, OpportunityVolunteerStatusType, + VolunteerStateEngagementType, } from "need4deed-sdk"; import { LessThan, MoreThan } from "typeorm"; import logger from "../../logger"; @@ -17,6 +18,7 @@ export async function scanPostMatchCheckup( where: { status: OpportunityVolunteerStatusType.MATCHED, updatedAt: LessThan(twoMonthsAgo), + volunteer: { statusEngagement: VolunteerStateEngagementType.AVAILABLE }, }, relations: ["volunteer.person", "volunteer.person.users"], }); @@ -26,17 +28,20 @@ export async function scanPostMatchCheckup( const alreadySent = await fastify.db.communicationRepository.findOne({ where: { volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, communicationType: CommunicationType.POST_FOLLOWUP, date: MoreThan(ov.updatedAt), }, }); - if (alreadySent) {continue;} + if (alreadySent) { + continue; + } await fastify.notify.emailPostMatchCheckup(ov); await logEmailCommunication( fastify.db.communicationRepository, CommunicationType.POST_FOLLOWUP, - { volunteerId: ov.volunteerId }, + { volunteerId: ov.volunteerId, opportunityId: ov.opportunityId }, ); } catch (err) { logger.error(`scanPostMatchCheckup: ov ${ov.id} failed: ${err}`); diff --git a/src/services/jobs/scan-regular-update.ts b/src/services/jobs/scan-regular-update.ts index 5a28f5c1..8e1cddb3 100644 --- a/src/services/jobs/scan-regular-update.ts +++ b/src/services/jobs/scan-regular-update.ts @@ -4,7 +4,7 @@ import { OpportunityStatusType, ProfileVolunteeringType, } from "need4deed-sdk"; -import { In, LessThan } from "typeorm"; +import { In, LessThan, MoreThan } from "typeorm"; import logger from "../../logger"; import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; @@ -22,7 +22,7 @@ export async function scanRegularUpdate( OpportunityStatusType.SEARCHING, OpportunityStatusType.ACTIVE, ]), - createdAt: LessThan(twoMonthsAgo), + updatedAt: LessThan(twoMonthsAgo), }, relations: ["contactPerson", "contactPerson.users"], }); @@ -33,9 +33,12 @@ export async function scanRegularUpdate( where: { opportunityId: opp.id, communicationType: CommunicationType.OPPORTUNITY_UPDATED, + date: MoreThan(opp.updatedAt), }, }); - if (alreadySent) {continue;} + if (alreadySent) { + continue; + } await fastify.notify.emailRegularUpdate(opp); await logEmailCommunication( diff --git a/src/services/jobs/scan-stale-pending.ts b/src/services/jobs/scan-stale-pending.ts index bdb9972e..6b8bd87e 100644 --- a/src/services/jobs/scan-stale-pending.ts +++ b/src/services/jobs/scan-stale-pending.ts @@ -28,17 +28,20 @@ export async function scanStalePending( const alreadySent = await fastify.db.communicationRepository.findOne({ where: { volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, communicationType: CommunicationType.STATUS_UPDATE, date: MoreThan(ov.updatedAt), }, }); - if (alreadySent) {continue;} + if (alreadySent) { + continue; + } await fastify.notify.emailStale(ov); await logEmailCommunication( fastify.db.communicationRepository, CommunicationType.STATUS_UPDATE, - { volunteerId: ov.volunteerId }, + { volunteerId: ov.volunteerId, opportunityId: ov.opportunityId }, ); } catch (err) { logger.error(`scanStalePending: ov ${ov.id} failed: ${err}`); diff --git a/src/services/notify/events/email-accompany-match.ts b/src/services/notify/events/email-accompany-match.ts index 8d47718c..085fedf9 100644 --- a/src/services/notify/events/email-accompany-match.ts +++ b/src/services/notify/events/email-accompany-match.ts @@ -64,6 +64,13 @@ export async function sendEmailAccompanyMatch( } const volunteer = ov.volunteer; + if (!volunteer?.person) { + logger.warn( + `sendEmailAccompanyMatch: missing volunteer or person relation for ov ${ov.id}`, + ); + return; + } + const opportunity = ov.opportunity; const accompanying = opportunity.accompanying; From eb4d26298fc5ab9d44647e3d3ee3930e4d7d88f4 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 16:26:51 +0000 Subject: [PATCH 38/89] fix: address 6 second-round review findings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - scheduler: switch from session-level pg_try_advisory_lock to transaction-level pg_try_advisory_xact_lock; lock is released automatically on commit/rollback so a failed unlock query can no longer strand the lock on a pooled connection - migration down(): add DELETE cleanup before the two hard blockers: rows with new enum values (would abort the USING cast) and opportunity-only rows (would violate the restored CHECK sum=1) - german-holidays: replace toLocaleString+new Date() offset trick with Intl.DateTimeFormat.formatToParts(); the old approach produced wrong offsets on non-UTC developer machines because new Date(localeString) parses in the local timezone, not UTC - email functions: change warn+return to throw when a required recipient address is missing; previously the scan jobs called logEmailCommunication unconditionally after a silent return, writing a phantom dedup record that permanently suppressed future notifications - opportunity-volunteer routes: add opportunityId to FIRST_INQUIRY logEmailCommunication call (was omitted unlike every other scan dedup) Note: finding #1 ("volunteering" literal in opportunity.routes.ts) was a false positive — OpportunityLegacyFormData types opportunity_type as "accompanying" | "volunteering", so the literal is correct for the legacy form API. Co-Authored-By: Claude Sonnet 4.6 --- ...n-nullable-fks-and-opportunity-relation.ts | 11 ++++++ src/server/plugins/scheduler.ts | 21 +++++----- .../m2m/opportunity-volunteer.routes.ts | 5 ++- src/services/jobs/german-holidays.ts | 38 ++++++++++++++----- .../notify/events/email-accompany-match.ts | 7 +--- .../events/email-accompany-not-found.ts | 4 +- .../notify/events/email-introduction.ts | 8 ++-- .../notify/events/email-new-accompanying.ts | 4 +- .../notify/events/email-new-regular.ts | 4 +- .../notify/events/email-post-match-checkup.ts | 4 +- .../notify/events/email-regular-update.ts | 4 +- src/services/notify/events/email-stale.ts | 4 +- .../notify/events/email-suggestion.ts | 4 +- 13 files changed, 69 insertions(+), 49 deletions(-) diff --git a/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts b/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts index 986e736a..6c78e482 100644 --- a/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts +++ b/src/data/migrations/1782903516653-communication-nullable-fks-and-opportunity-relation.ts @@ -38,6 +38,17 @@ export class CommunicationNullableFksAndOpportunityRelation1782903516653 } public async down(queryRunner: QueryRunner): Promise { + // Remove rows that cannot survive the rollback: + // (a) rows whose communication_type is one of the 5 new enum values added in up() — + // the USING cast to the old enum would throw 'invalid input value for enum'. + // (b) rows where only opportunity_id is set (volunteer_id = NULL, agent_id = NULL) — + // after opportunity_id is dropped, those rows would violate the restored CHECK (sum = 1). + await queryRunner.query( + `DELETE FROM "communication" WHERE "communication_type" IN ('matched','accompanying-not-found','accompanying-matched','opportunity-updated','opportunity-confirmation')`, + ); + await queryRunner.query( + `DELETE FROM "communication" WHERE "volunteer_id" IS NULL AND "agent_id" IS NULL`, + ); await queryRunner.query( `ALTER TABLE "communication" DROP CONSTRAINT "FK_73aa11f1d453a65ba3cebda85fb"`, ); diff --git a/src/server/plugins/scheduler.ts b/src/server/plugins/scheduler.ts index f07ec507..ff5eb0ed 100644 --- a/src/server/plugins/scheduler.ts +++ b/src/server/plugins/scheduler.ts @@ -17,27 +17,30 @@ import { scanStalePending } from "../../services/jobs/scan-stale-pending"; const SCHEDULER_LOCK_ID = 20240701; async function runWithAdvisoryLock(fn: () => Promise): Promise { - // Acquire and release the lock on the same pool connection. - // pg_try_advisory_lock is session-level: releasing it from a different - // connection is a no-op, so both queries must share a QueryRunner. + // Use a transaction-level advisory lock (pg_try_advisory_xact_lock) so the + // lock is released automatically at commit/rollback — no explicit unlock + // needed. This avoids the session-level pitfall where pg_advisory_unlock + // could fail and leave the connection holding the lock in the pool. const qr = dataSource.createQueryRunner(); await qr.connect(); + await qr.startTransaction(); try { const [row] = await qr.query( - "SELECT pg_try_advisory_lock($1) AS acquired", + "SELECT pg_try_advisory_xact_lock($1) AS acquired", [SCHEDULER_LOCK_ID], ); if (!row?.acquired) { logger.debug( "scheduler: advisory lock held by another instance — skipping", ); + await qr.rollbackTransaction(); return; } - try { - await fn(); - } finally { - await qr.query("SELECT pg_advisory_unlock($1)", [SCHEDULER_LOCK_ID]); - } + await fn(); + await qr.commitTransaction(); + } catch (err) { + await qr.rollbackTransaction(); + throw err; } finally { await qr.release(); } diff --git a/src/server/routes/m2m/opportunity-volunteer.routes.ts b/src/server/routes/m2m/opportunity-volunteer.routes.ts index 9831ea8e..495b7684 100644 --- a/src/server/routes/m2m/opportunity-volunteer.routes.ts +++ b/src/server/routes/m2m/opportunity-volunteer.routes.ts @@ -108,7 +108,10 @@ export default async function m2mOpportunityVolunteerRoutes( await logEmailCommunication( commRepo, CommunicationType.FIRST_INQUIRY, - { volunteerId: ov.volunteerId }, + { + volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, + }, ); } catch (err) { logger.error( diff --git a/src/services/jobs/german-holidays.ts b/src/services/jobs/german-holidays.ts index 56da2355..4142e922 100644 --- a/src/services/jobs/german-holidays.ts +++ b/src/services/jobs/german-holidays.ts @@ -79,16 +79,36 @@ export function berlinDayBoundaries(berlinDate: Date): { const y = berlinDate.getFullYear(); const m = berlinDate.getMonth(); const d = berlinDate.getDate(); - // Use noon UTC as a reference point to measure the Berlin offset for this day. - // DST transitions happen at 02:00 in Europe, so noon is always unambiguous. + // Sample the Berlin UTC offset at noon on the target day. + // DST transitions happen at 02:00 in Europe, so noon is always post-transition. + // We use formatToParts (not toLocaleString + new Date()) because toLocaleString + // + new Date() parsing is implementation-defined and produces wrong offsets on + // non-UTC developer machines. formatToParts extracts numeric field values + // independently of the process local timezone. const noonUTC = new Date(Date.UTC(y, m, d, 12)); - // toLocaleString renders Berlin wall-clock time as a string; parsing it back - // without a timezone treats it as local (= UTC on AWS). The difference gives - // the Berlin offset in milliseconds (e.g. +3600000 for UTC+1, +7200000 for UTC+2). - const berlinOffsetMs = - new Date( - noonUTC.toLocaleString("en-US", { timeZone: "Europe/Berlin" }), - ).getTime() - noonUTC.getTime(); + const parts = new Intl.DateTimeFormat("en-US", { + timeZone: "Europe/Berlin", + year: "numeric", + month: "2-digit", + day: "2-digit", + hour: "2-digit", + minute: "2-digit", + second: "2-digit", + hour12: false, + }).formatToParts(noonUTC); + const get = (type: string) => + parseInt(parts.find((p) => p.type === type)!.value, 10); + // Treating the Berlin wall-clock values as UTC gives us a timestamp we can + // subtract from noonUTC to obtain the Berlin UTC offset in milliseconds. + const berlinNoonAsUTC = Date.UTC( + get("year"), + get("month") - 1, + get("day"), + get("hour") === 24 ? 0 : get("hour"), + get("minute"), + get("second"), + ); + const berlinOffsetMs = berlinNoonAsUTC - noonUTC.getTime(); return { startOfDay: new Date(Date.UTC(y, m, d, 0) - berlinOffsetMs), endOfDay: new Date(Date.UTC(y, m, d, 23, 59, 59, 999) - berlinOffsetMs), diff --git a/src/services/notify/events/email-accompany-match.ts b/src/services/notify/events/email-accompany-match.ts index 085fedf9..d97569fc 100644 --- a/src/services/notify/events/email-accompany-match.ts +++ b/src/services/notify/events/email-accompany-match.ts @@ -4,7 +4,6 @@ import { emailFromContact, } from "../../../config/constants"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; -import logger from "../../../logger"; import { getLanguages } from "../../dto/utils"; import { createManifestLoader, @@ -57,18 +56,16 @@ export async function sendEmailAccompanyMatch( ): Promise { const contactPersonEmail = ov.opportunity?.contactPerson?.email; if (!contactPersonEmail) { - logger.warn( + throw new Error( `sendEmailAccompanyMatch: missing contact email for opportunity ${ov.opportunityId}`, ); - return; } const volunteer = ov.volunteer; if (!volunteer?.person) { - logger.warn( + throw new Error( `sendEmailAccompanyMatch: missing volunteer or person relation for ov ${ov.id}`, ); - return; } const opportunity = ov.opportunity; diff --git a/src/services/notify/events/email-accompany-not-found.ts b/src/services/notify/events/email-accompany-not-found.ts index c340548f..61673f21 100644 --- a/src/services/notify/events/email-accompany-not-found.ts +++ b/src/services/notify/events/email-accompany-not-found.ts @@ -4,7 +4,6 @@ import { emailFromContact, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; -import logger from "../../../logger"; import { createManifestLoader, fillTemplate, @@ -39,10 +38,9 @@ export async function sendEmailAccompanyNotFound( ): Promise { const contactPersonEmail = opportunity.contactPerson?.email; if (!contactPersonEmail) { - logger.warn( + throw new Error( `sendEmailAccompanyNotFound: missing contact email for opportunity ${opportunity.id}`, ); - return; } const contactpersonName = opportunity.contactPerson!.name; diff --git a/src/services/notify/events/email-introduction.ts b/src/services/notify/events/email-introduction.ts index 3ea115fc..e131f433 100644 --- a/src/services/notify/events/email-introduction.ts +++ b/src/services/notify/events/email-introduction.ts @@ -5,7 +5,6 @@ import { emailIntroductionManifestUrl, } from "../../../config/constants"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; -import logger from "../../../logger"; import { getLanguages, getOptionItems, getTitles } from "../../dto/utils"; import { createManifestLoader, @@ -88,10 +87,9 @@ export async function sendEmailIntroduction( const contactPersonEmail = ov.opportunity?.contactPerson?.email; if (!volunteerEmail || !contactPersonEmail) { - logger.warn( + throw new Error( `sendEmailIntroduction: missing email(s) for ov ${ov.id} (volunteer=${volunteerEmail}, contact=${contactPersonEmail})`, ); - return; } const volunteer = ov.volunteer; @@ -120,7 +118,9 @@ export async function sendEmailIntroduction( const agentAddress = (() => { const addr = opportunity.agent?.address; - if (!addr) {return "";} + if (!addr) { + return ""; + } return [addr.street, addr.postcode?.value, addr.city] .filter(Boolean) .join(", "); diff --git a/src/services/notify/events/email-new-accompanying.ts b/src/services/notify/events/email-new-accompanying.ts index ef17ccc7..843f65a8 100644 --- a/src/services/notify/events/email-new-accompanying.ts +++ b/src/services/notify/events/email-new-accompanying.ts @@ -4,7 +4,6 @@ import { emailNewAccompanyingManifestUrl, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; -import logger from "../../../logger"; import { createManifestLoader, fillTemplate, @@ -39,10 +38,9 @@ export async function sendEmailNewAccompanying( ): Promise { const contactPersonEmail = opportunity.contactPerson?.email; if (!contactPersonEmail) { - logger.warn( + throw new Error( `sendEmailNewAccompanying: missing contact email for opportunity ${opportunity.id}`, ); - return; } const accompanying = opportunity.accompanying; diff --git a/src/services/notify/events/email-new-regular.ts b/src/services/notify/events/email-new-regular.ts index 4a9cc973..2fd8446e 100644 --- a/src/services/notify/events/email-new-regular.ts +++ b/src/services/notify/events/email-new-regular.ts @@ -4,7 +4,6 @@ import { emailNewRegularManifestUrl, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; -import logger from "../../../logger"; import { createManifestLoader, fillTemplate, @@ -37,10 +36,9 @@ export async function sendEmailNewRegular( ): Promise { const contactPersonEmail = opportunity.contactPerson?.email; if (!contactPersonEmail) { - logger.warn( + throw new Error( `sendEmailNewRegular: missing contact email for opportunity ${opportunity.id}`, ); - return; } const contactpersonName = opportunity.contactPerson!.name; diff --git a/src/services/notify/events/email-post-match-checkup.ts b/src/services/notify/events/email-post-match-checkup.ts index 89062076..31498930 100644 --- a/src/services/notify/events/email-post-match-checkup.ts +++ b/src/services/notify/events/email-post-match-checkup.ts @@ -4,7 +4,6 @@ import { emailPostMatchCheckupManifestUrl, } from "../../../config/constants"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; -import logger from "../../../logger"; import { createManifestLoader, fillTemplate, @@ -37,10 +36,9 @@ export async function sendEmailPostMatchCheckup( ): Promise { const volunteerEmail = ov.volunteer?.person?.email; if (!volunteerEmail) { - logger.warn( + throw new Error( `sendEmailPostMatchCheckup: missing email for volunteer ${ov.volunteerId}`, ); - return; } const volunteerName = ov.volunteer.person.name; diff --git a/src/services/notify/events/email-regular-update.ts b/src/services/notify/events/email-regular-update.ts index 9a2a4fb6..e2dc30af 100644 --- a/src/services/notify/events/email-regular-update.ts +++ b/src/services/notify/events/email-regular-update.ts @@ -4,7 +4,6 @@ import { emailRegularUpdateManifestUrl, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; -import logger from "../../../logger"; import { createManifestLoader, fillTemplate, @@ -37,10 +36,9 @@ export async function sendEmailRegularUpdate( ): Promise { const contactPersonEmail = opportunity.contactPerson?.email; if (!contactPersonEmail) { - logger.warn( + throw new Error( `sendEmailRegularUpdate: missing contact email for opportunity ${opportunity.id}`, ); - return; } const contactpersonName = opportunity.contactPerson!.name; diff --git a/src/services/notify/events/email-stale.ts b/src/services/notify/events/email-stale.ts index bbf5db88..5c0ed2c6 100644 --- a/src/services/notify/events/email-stale.ts +++ b/src/services/notify/events/email-stale.ts @@ -4,7 +4,6 @@ import { emailStaleManifestUrl, } from "../../../config/constants"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; -import logger from "../../../logger"; import { createManifestLoader, fillTemplate, @@ -37,10 +36,9 @@ export async function sendEmailStale( ): Promise { const volunteerEmail = ov.volunteer?.person?.email; if (!volunteerEmail) { - logger.warn( + throw new Error( `sendEmailStale: missing email for volunteer ${ov.volunteerId}`, ); - return; } const volunteerName = ov.volunteer.person.name; diff --git a/src/services/notify/events/email-suggestion.ts b/src/services/notify/events/email-suggestion.ts index 9068b333..9050bfd8 100644 --- a/src/services/notify/events/email-suggestion.ts +++ b/src/services/notify/events/email-suggestion.ts @@ -4,7 +4,6 @@ import { emailSuggestionManifestUrl, } from "../../../config/constants"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; -import logger from "../../../logger"; import { getTitles } from "../../dto/utils"; import { createManifestLoader, @@ -38,10 +37,9 @@ export async function sendEmailSuggestion( ): Promise { const volunteerEmail = ov.volunteer?.person?.email; if (!volunteerEmail) { - logger.warn( + throw new Error( `sendEmailSuggestion: missing email for volunteer ${ov.volunteerId}`, ); - return; } const volunteerName = ov.volunteer.person.name; From fec83b1002c5fadcb0b7fa6c9daa11a2bc152c73 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 16:37:16 +0000 Subject: [PATCH 39/89] chore: upgrade need4deed-sdk to 0.0.117, use OpportunityLegacyType enum Replace "volunteering" and "accompanying" string literals in the legacy opportunity route with OpportunityLegacyType.VOLUNTEERING and OpportunityLegacyType.ACCOMPANYING from the new SDK enum. Co-Authored-By: Claude Sonnet 4.6 --- package.json | 2 +- src/server/routes/opportunity/opportunity.routes.ts | 7 ++++--- yarn.lock | 8 ++++---- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 83296156..f262eb47 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.116", + "need4deed-sdk": "0.0.117", "node-cron": "^4.5.0", "pg": "^8.14.1", "pino": "^10.3.1", diff --git a/src/server/routes/opportunity/opportunity.routes.ts b/src/server/routes/opportunity/opportunity.routes.ts index d241bb07..46c3bb6a 100644 --- a/src/server/routes/opportunity/opportunity.routes.ts +++ b/src/server/routes/opportunity/opportunity.routes.ts @@ -5,6 +5,7 @@ import { CommunicationType, OpportunityFormDataWithAgentSubmitter, OpportunityLegacyFormData, + OpportunityLegacyType, SortOrder, UserRole, } from "need4deed-sdk"; @@ -325,7 +326,7 @@ export default async function opportunityRoutes( agent.address?.postcode?.value, ); opportunity.accompanying = - body.opportunity_type === "accompanying" + body.opportunity_type === OpportunityLegacyType.ACCOMPANYING ? await accompanyingParserOpportunity(legacyBody) : undefined; @@ -343,7 +344,7 @@ export default async function opportunityRoutes( getOpportunityNotificationText(opportunity.title), ); - if (body.opportunity_type === "volunteering") { + if (body.opportunity_type === OpportunityLegacyType.VOLUNTEERING) { const opp = await fastify.db.opportunityRepository.findOne({ where: { id }, relations: ["contactPerson", "contactPerson.users"], @@ -366,7 +367,7 @@ export default async function opportunityRoutes( } } - if (body.opportunity_type === "accompanying") { + if (body.opportunity_type === OpportunityLegacyType.ACCOMPANYING) { const opp = await fastify.db.opportunityRepository.findOne({ where: { id }, relations: [ diff --git a/yarn.lock b/yarn.lock index c9678f96..5f4b4925 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2942,10 +2942,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.116: - version "0.0.116" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.116.tgz#4b88f6a82129f2fc663825ac3c484731876ea70b" - integrity sha512-XL0bI7/qEKvzukxfrCnv0WyueVXyfFbk6FyOPJYw0H86tLUVvkR4iKUOw5f0yAA21vlj6EGx5y39+7VDgsJAcQ== +need4deed-sdk@0.0.117: + version "0.0.117" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.117.tgz#734ec1b168c6694dde1f5087bb42516a4cbb7232" + integrity sha512-3j5vIizFeH4bMEhqcPpF1O3A7PtXG8z6IaQVbIJR0l8HjDWeuP+dbnmKQcDkbzUtImvxnOnSPcMXIp9tXy0C5w== no-case@^3.0.4: version "3.0.4" From 1a0c2e1862d5cc8919f879cf477e01f0fc749b71 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 20:42:36 +0000 Subject: [PATCH 40/89] fix: harden email scan jobs and OV route side-effects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - log-email-communication: return saved entity so callers can roll back on send failure (dedup record removed → next run retries) - german-holidays: add monthsAgo(n) helper that clamps day to last day of target month, fixing setMonth overflow on month-end dates - scan-stale-pending / scan-post-match-checkup / scan-regular-update: replace raw setMonth with monthsAgo(2); remove date:MoreThan(updatedAt) from dedup (fragile after coordinator edits); log before send - scan-regular-update / scan-accompany-not-found: replace ProfileVolunteeringType.X as never with OpportunityType.X (correct type) - scan-accompany-not-found: bulk dedup query (N+1 → 2 queries); add date > opp.updatedAt guard so re-notification fires when a match falls through; log before send with rollback on failure - opportunity-volunteer.routes.ts: move findOne calls inside IIFE so handler returns 204 immediately; add dedup checks before firing PENDING/MATCHED emails; include volunteerId in ACCOMPANYING_MATCHED log (was missing); log before send with rollback on failure - communication.routes.ts: fix DELETE 403 when userId is null (system emails) Co-Authored-By: Claude Sonnet 4.6 --- src/server/routes/communication.routes.ts | 5 +- .../m2m/opportunity-volunteer.routes.ts | 169 +++++++++++------- .../utils/data/log-email-communication.ts | 4 +- src/services/jobs/german-holidays.ts | 12 ++ src/services/jobs/scan-accompany-not-found.ts | 44 +++-- src/services/jobs/scan-post-match-checkup.ts | 16 +- src/services/jobs/scan-regular-update.ts | 20 ++- src/services/jobs/scan-stale-pending.ts | 16 +- 8 files changed, 187 insertions(+), 99 deletions(-) diff --git a/src/server/routes/communication.routes.ts b/src/server/routes/communication.routes.ts index 8cc28016..d02e068f 100644 --- a/src/server/routes/communication.routes.ts +++ b/src/server/routes/communication.routes.ts @@ -88,7 +88,10 @@ export default async function communicationRoutes( }); } - if (communication.userId !== request.user.id) { + if ( + communication.userId !== null && + communication.userId !== request.user.id + ) { return reply.status(403).send({ message: `You do not have permission to delete communication with id:${id}.`, }); diff --git a/src/server/routes/m2m/opportunity-volunteer.routes.ts b/src/server/routes/m2m/opportunity-volunteer.routes.ts index 495b7684..748eac0b 100644 --- a/src/server/routes/m2m/opportunity-volunteer.routes.ts +++ b/src/server/routes/m2m/opportunity-volunteer.routes.ts @@ -91,81 +91,124 @@ export default async function m2mOpportunityVolunteerRoutes( const commRepo = fastify.db.communicationRepository; if (nextStatus === OpportunityVolunteerStatusType.PENDING) { - const ov = await opportunityVolunteerRepository.findOne({ - where: { id }, - relations: [ - "volunteer.person", - "volunteer.person.users", - "volunteer.deal.postcode", - "volunteer.deal.dealTimeslot.timeslot", - "opportunity", - ], - }); - if (ov) { - (async () => { + (async () => { + try { + // Fix: findOne inside the IIFE so the handler returns 204 immediately + // and a DB hiccup here doesn't produce a 500 after the OV is committed. + const ov = await opportunityVolunteerRepository.findOne({ + where: { id }, + relations: [ + "volunteer.person", + "volunteer.person.users", + "volunteer.deal.postcode", + "volunteer.deal.dealTimeslot.timeslot", + "opportunity", + ], + }); + if (!ov) {return;} + // Fix: dedup — skip if FIRST_INQUIRY already logged (e.g. PENDING→DECLINED→PENDING). + const alreadySent = await commRepo.findOne({ + where: { + volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, + communicationType: CommunicationType.FIRST_INQUIRY, + }, + }); + if (alreadySent) {return;} + // Fix: log before send; remove the dedup record on send failure so + // the next status toggle can retry. + const comm = await logEmailCommunication( + commRepo, + CommunicationType.FIRST_INQUIRY, + { + volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, + }, + ); try { await fastify.notify.emailSuggestion(ov); - await logEmailCommunication( + } catch (sendErr) { + await commRepo.remove(comm); + throw sendErr; + } + } catch (err) { + logger.error( + `emailSuggestion side-effect failed (ov ${id}): ${err}`, + ); + } + })(); + } else if (nextStatus === OpportunityVolunteerStatusType.MATCHED) { + (async () => { + try { + // Fix: findOne inside the IIFE — same reasoning as PENDING block above. + const ov = await opportunityVolunteerRepository.findOne({ + where: { id }, + relations: [ + "volunteer.person", + "volunteer.person.users", + "volunteer.deal.dealLanguage.language", + "volunteer.deal.dealSkill.skill", + "volunteer.deal.dealTimeslot.timeslot", + "opportunity.contactPerson", + "opportunity.contactPerson.users", + "opportunity.agent.address.postcode", + "opportunity.accompanying.postcode", + "opportunity.district", + ], + }); + if (!ov) {return;} + const isAccompany = + ov.opportunity?.type === ProfileVolunteeringType.ACCOMPANYING; + const commType = isAccompany + ? CommunicationType.ACCOMPANYING_MATCHED + : CommunicationType.MATCHED; + // Fix: dedup — skip if a match email was already sent for this pair. + const alreadySent = await commRepo.findOne({ + where: { + volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, + communicationType: commType, + }, + }); + if (alreadySent) {return;} + if (isAccompany) { + // Fix: log before send + rollback on failure; include volunteerId (was missing). + const comm = await logEmailCommunication( commRepo, - CommunicationType.FIRST_INQUIRY, + CommunicationType.ACCOMPANYING_MATCHED, { volunteerId: ov.volunteerId, opportunityId: ov.opportunityId, }, ); - } catch (err) { - logger.error( - `emailSuggestion side-effect failed (ov ${id}): ${err}`, - ); - } - })(); - } - } else if (nextStatus === OpportunityVolunteerStatusType.MATCHED) { - const ov = await opportunityVolunteerRepository.findOne({ - where: { id }, - relations: [ - "volunteer.person", - "volunteer.person.users", - "volunteer.deal.dealLanguage.language", - "volunteer.deal.dealSkill.skill", - "volunteer.deal.dealTimeslot.timeslot", - "opportunity.contactPerson", - "opportunity.contactPerson.users", - "opportunity.agent.address.postcode", - "opportunity.accompanying.postcode", - "opportunity.district", - ], - }); - if (ov) { - const isAccompany = - ov.opportunity?.type === ProfileVolunteeringType.ACCOMPANYING; - (async () => { - try { - if (isAccompany) { + try { await fastify.notify.emailAccompanyMatch(ov); - await logEmailCommunication( - commRepo, - CommunicationType.ACCOMPANYING_MATCHED, - { opportunityId: ov.opportunityId }, - ); - } else { - await fastify.notify.emailIntroduction(ov); - await logEmailCommunication( - commRepo, - CommunicationType.MATCHED, - { - volunteerId: ov.volunteerId, - opportunityId: ov.opportunityId, - }, - ); + } catch (sendErr) { + await commRepo.remove(comm); + throw sendErr; } - } catch (err) { - logger.error( - `emailMatched side-effect failed (ov ${id}): ${err}`, + } else { + const comm = await logEmailCommunication( + commRepo, + CommunicationType.MATCHED, + { + volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, + }, ); + try { + await fastify.notify.emailIntroduction(ov); + } catch (sendErr) { + await commRepo.remove(comm); + throw sendErr; + } } - })(); - } + } catch (err) { + logger.error( + `emailMatched side-effect failed (ov ${id}): ${err}`, + ); + } + })(); } } diff --git a/src/server/utils/data/log-email-communication.ts b/src/server/utils/data/log-email-communication.ts index ca3419a8..50bf5a12 100644 --- a/src/server/utils/data/log-email-communication.ts +++ b/src/server/utils/data/log-email-communication.ts @@ -10,8 +10,8 @@ export async function logEmailCommunication( repo: Repository, communicationType: CommunicationType, ids: { volunteerId?: number; opportunityId?: number; agentId?: number }, -): Promise { - await repo.save( +): Promise { + return repo.save( new Communication({ contactType: ContactType.TEXT_EMAIL, contactMethod: ContactMethodType.EMAIL, diff --git a/src/services/jobs/german-holidays.ts b/src/services/jobs/german-holidays.ts index 4142e922..c24f1065 100644 --- a/src/services/jobs/german-holidays.ts +++ b/src/services/jobs/german-holidays.ts @@ -61,6 +61,18 @@ export function addWorkingDays(from: Date, days: number): Date { return result; } +// Returns a Date n calendar months before now, clamping the day to the last +// day of the target month to avoid setMonth overflow (e.g. Apr 30 - 2 months +// should be Feb 28, not Mar 2). +export function monthsAgo(n: number): Date { + const now = new Date(); + const targetMonth = now.getMonth() - n; + const y = now.getFullYear() + Math.floor(targetMonth / 12); + const m = ((targetMonth % 12) + 12) % 12; + const maxDay = new Date(y, m + 1, 0).getDate(); + return new Date(y, m, Math.min(now.getDate(), maxDay)); +} + export function berlinToday(): Date { const s = new Date().toLocaleDateString("sv-SE", { timeZone: "Europe/Berlin", diff --git a/src/services/jobs/scan-accompany-not-found.ts b/src/services/jobs/scan-accompany-not-found.ts index d8cde5fb..7912f047 100644 --- a/src/services/jobs/scan-accompany-not-found.ts +++ b/src/services/jobs/scan-accompany-not-found.ts @@ -2,8 +2,8 @@ import { FastifyInstance } from "fastify"; import { CommunicationType, OpportunityStatusType, + OpportunityType, OpportunityVolunteerStatusType, - ProfileVolunteeringType, } from "need4deed-sdk"; import { Between, In } from "typeorm"; import logger from "../../logger"; @@ -22,7 +22,7 @@ export async function scanAccompanyNotFound( const opps = await fastify.db.opportunityRepository.find({ where: { - type: ProfileVolunteeringType.ACCOMPANYING as never, + type: OpportunityType.ACCOMPANYING as never, status: In([ OpportunityStatusType.NEW, OpportunityStatusType.SEARCHING, @@ -47,24 +47,42 @@ export async function scanAccompanyNotFound( ), ); + if (!candidates.length) {return;} + + // Fix 10: bulk dedup query — one DB round-trip instead of N per-item findOne calls. + const sentComms = await fastify.db.communicationRepository.find({ + where: { + opportunityId: In(candidates.map((c) => c.id)), + communicationType: CommunicationType.ACCOMPANYING_NOT_FOUND, + }, + select: ["opportunityId", "date"], + }); + // Fix 6: dedup only suppresses if the email was sent AFTER the last opportunity + // update — allows re-notification when a match falls through (bumps updatedAt). + const lastSentMap = new Map(); + for (const c of sentComms) { + const prev = lastSentMap.get(c.opportunityId!); + if (!prev || c.date > prev) {lastSentMap.set(c.opportunityId!, c.date);} + } + for (const opp of candidates) { try { - const alreadySent = await fastify.db.communicationRepository.findOne({ - where: { - opportunityId: opp.id, - communicationType: CommunicationType.ACCOMPANYING_NOT_FOUND, - }, - }); - if (alreadySent) { - continue; - } + const lastSent = lastSentMap.get(opp.id); + if (lastSent && lastSent > opp.updatedAt) {continue;} - await fastify.notify.emailAccompanyNotFound(opp); - await logEmailCommunication( + // Fix 4: log before send; remove the dedup record on send failure so the + // next run can retry rather than being permanently suppressed. + const comm = await logEmailCommunication( fastify.db.communicationRepository, CommunicationType.ACCOMPANYING_NOT_FOUND, { opportunityId: opp.id }, ); + try { + await fastify.notify.emailAccompanyNotFound(opp); + } catch (sendErr) { + await fastify.db.communicationRepository.remove(comm); + throw sendErr; + } } catch (err) { logger.error(`scanAccompanyNotFound: opp ${opp.id} failed: ${err}`); } diff --git a/src/services/jobs/scan-post-match-checkup.ts b/src/services/jobs/scan-post-match-checkup.ts index 049c54f3..c9fabe2d 100644 --- a/src/services/jobs/scan-post-match-checkup.ts +++ b/src/services/jobs/scan-post-match-checkup.ts @@ -4,15 +4,15 @@ import { OpportunityVolunteerStatusType, VolunteerStateEngagementType, } from "need4deed-sdk"; -import { LessThan, MoreThan } from "typeorm"; +import { LessThan } from "typeorm"; import logger from "../../logger"; import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; +import { monthsAgo } from "./german-holidays"; export async function scanPostMatchCheckup( fastify: FastifyInstance, ): Promise { - const twoMonthsAgo = new Date(); - twoMonthsAgo.setMonth(twoMonthsAgo.getMonth() - 2); + const twoMonthsAgo = monthsAgo(2); const ovs = await fastify.db.opportunityVolunteerRepository.find({ where: { @@ -30,19 +30,23 @@ export async function scanPostMatchCheckup( volunteerId: ov.volunteerId, opportunityId: ov.opportunityId, communicationType: CommunicationType.POST_FOLLOWUP, - date: MoreThan(ov.updatedAt), }, }); if (alreadySent) { continue; } - await fastify.notify.emailPostMatchCheckup(ov); - await logEmailCommunication( + const comm = await logEmailCommunication( fastify.db.communicationRepository, CommunicationType.POST_FOLLOWUP, { volunteerId: ov.volunteerId, opportunityId: ov.opportunityId }, ); + try { + await fastify.notify.emailPostMatchCheckup(ov); + } catch (sendErr) { + await fastify.db.communicationRepository.remove(comm); + throw sendErr; + } } catch (err) { logger.error(`scanPostMatchCheckup: ov ${ov.id} failed: ${err}`); } diff --git a/src/services/jobs/scan-regular-update.ts b/src/services/jobs/scan-regular-update.ts index 8e1cddb3..e2238754 100644 --- a/src/services/jobs/scan-regular-update.ts +++ b/src/services/jobs/scan-regular-update.ts @@ -2,21 +2,21 @@ import { FastifyInstance } from "fastify"; import { CommunicationType, OpportunityStatusType, - ProfileVolunteeringType, + OpportunityType, } from "need4deed-sdk"; -import { In, LessThan, MoreThan } from "typeorm"; +import { In, LessThan } from "typeorm"; import logger from "../../logger"; import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; +import { monthsAgo } from "./german-holidays"; export async function scanRegularUpdate( fastify: FastifyInstance, ): Promise { - const twoMonthsAgo = new Date(); - twoMonthsAgo.setMonth(twoMonthsAgo.getMonth() - 2); + const twoMonthsAgo = monthsAgo(2); const opps = await fastify.db.opportunityRepository.find({ where: { - type: ProfileVolunteeringType.REGULAR as never, + type: OpportunityType.REGULAR as never, status: In([ OpportunityStatusType.NEW, OpportunityStatusType.SEARCHING, @@ -33,19 +33,23 @@ export async function scanRegularUpdate( where: { opportunityId: opp.id, communicationType: CommunicationType.OPPORTUNITY_UPDATED, - date: MoreThan(opp.updatedAt), }, }); if (alreadySent) { continue; } - await fastify.notify.emailRegularUpdate(opp); - await logEmailCommunication( + const comm = await logEmailCommunication( fastify.db.communicationRepository, CommunicationType.OPPORTUNITY_UPDATED, { opportunityId: opp.id }, ); + try { + await fastify.notify.emailRegularUpdate(opp); + } catch (sendErr) { + await fastify.db.communicationRepository.remove(comm); + throw sendErr; + } } catch (err) { logger.error(`scanRegularUpdate: opp ${opp.id} failed: ${err}`); } diff --git a/src/services/jobs/scan-stale-pending.ts b/src/services/jobs/scan-stale-pending.ts index 6b8bd87e..58177fa9 100644 --- a/src/services/jobs/scan-stale-pending.ts +++ b/src/services/jobs/scan-stale-pending.ts @@ -4,15 +4,15 @@ import { OpportunityVolunteerStatusType, VolunteerStateEngagementType, } from "need4deed-sdk"; -import { LessThan, MoreThan } from "typeorm"; +import { LessThan } from "typeorm"; import logger from "../../logger"; import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; +import { monthsAgo } from "./german-holidays"; export async function scanStalePending( fastify: FastifyInstance, ): Promise { - const twoMonthsAgo = new Date(); - twoMonthsAgo.setMonth(twoMonthsAgo.getMonth() - 2); + const twoMonthsAgo = monthsAgo(2); const ovs = await fastify.db.opportunityVolunteerRepository.find({ where: { @@ -30,19 +30,23 @@ export async function scanStalePending( volunteerId: ov.volunteerId, opportunityId: ov.opportunityId, communicationType: CommunicationType.STATUS_UPDATE, - date: MoreThan(ov.updatedAt), }, }); if (alreadySent) { continue; } - await fastify.notify.emailStale(ov); - await logEmailCommunication( + const comm = await logEmailCommunication( fastify.db.communicationRepository, CommunicationType.STATUS_UPDATE, { volunteerId: ov.volunteerId, opportunityId: ov.opportunityId }, ); + try { + await fastify.notify.emailStale(ov); + } catch (sendErr) { + await fastify.db.communicationRepository.remove(comm); + throw sendErr; + } } catch (err) { logger.error(`scanStalePending: ov ${ov.id} failed: ${err}`); } From d90d15ac47939d0cc2dcb2d9391449493bbe9811 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 21:05:51 +0000 Subject: [PATCH 41/89] fix: address round-4 review findings in email scan jobs and routes - opportunity.routes.ts: move findOne inside IIFEs (handler no longer returns 500 after the DB row is committed), add alreadySent dedup guard for OPPORTUNITY_CONFIRMATION, swap to log-before-send with rollback on send failure (findings 1, 2, 6) - volunteer/communication.routes.ts: filter out system-generated records (userId IS NULL) and apply dtoCommunication DTO so the response matches ApiCommunicationGet (finding 3) - communication.routes.ts: revert null-userId bypass so coordinators cannot delete scan-job dedup records and inadvertently trigger re-sends (finding 4) - scan-regular-update.ts: replace permanent per-item findOne dedup with a single bulk query + lastSent > opp.updatedAt date-reset gate so persistently stale opportunities can be re-notified after an update (finding 5) - scan-stale-pending.ts, scan-post-match-checkup.ts: upgrade per-item findOne dedup to a single bulk find + Set lookup, matching the pattern already used by scanAccompanyNotFound (finding 8) - email-brevo.ts: strip raw response body from the thrown error to prevent recipient email addresses leaking into logs (finding 7); update the corresponding test assertion Co-Authored-By: Claude Sonnet 4.6 --- src/server/routes/communication.routes.ts | 5 +- .../routes/opportunity/opportunity.routes.ts | 112 +++++++++++------- .../routes/volunteer/communication.routes.ts | 5 +- src/services/jobs/scan-post-match-checkup.ts | 26 ++-- src/services/jobs/scan-regular-update.ts | 28 +++-- src/services/jobs/scan-stale-pending.ts | 26 ++-- src/services/notify/transports/email-brevo.ts | 3 +- src/test/services/notify/email-brevo.test.ts | 4 +- 8 files changed, 135 insertions(+), 74 deletions(-) diff --git a/src/server/routes/communication.routes.ts b/src/server/routes/communication.routes.ts index d02e068f..8cc28016 100644 --- a/src/server/routes/communication.routes.ts +++ b/src/server/routes/communication.routes.ts @@ -88,10 +88,7 @@ export default async function communicationRoutes( }); } - if ( - communication.userId !== null && - communication.userId !== request.user.id - ) { + if (communication.userId !== request.user.id) { return reply.status(403).send({ message: `You do not have permission to delete communication with id:${id}.`, }); diff --git a/src/server/routes/opportunity/opportunity.routes.ts b/src/server/routes/opportunity/opportunity.routes.ts index 46c3bb6a..f3e49a5d 100644 --- a/src/server/routes/opportunity/opportunity.routes.ts +++ b/src/server/routes/opportunity/opportunity.routes.ts @@ -345,55 +345,87 @@ export default async function opportunityRoutes( ); if (body.opportunity_type === OpportunityLegacyType.VOLUNTEERING) { - const opp = await fastify.db.opportunityRepository.findOne({ - where: { id }, - relations: ["contactPerson", "contactPerson.users"], - }); - if (opp) { - (async () => { + (async () => { + try { + const opp = await fastify.db.opportunityRepository.findOne({ + where: { id }, + relations: ["contactPerson", "contactPerson.users"], + }); + if (!opp) { + return; + } + const alreadySent = + await fastify.db.communicationRepository.findOne({ + where: { + opportunityId: id, + communicationType: CommunicationType.OPPORTUNITY_CONFIRMATION, + }, + }); + if (alreadySent) { + return; + } + const comm = await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.OPPORTUNITY_CONFIRMATION, + { opportunityId: id }, + ); try { await fastify.notify.emailNewRegular(opp); - await logEmailCommunication( - fastify.db.communicationRepository, - CommunicationType.OPPORTUNITY_CONFIRMATION, - { opportunityId: id }, - ); - } catch (err) { - logger.error( - `emailNewRegular side-effect failed (opp ${id}): ${err}`, - ); + } catch (sendErr) { + await fastify.db.communicationRepository.remove(comm); + throw sendErr; } - })(); - } + } catch (err) { + logger.error( + `emailNewRegular side-effect failed (opp ${id}): ${err}`, + ); + } + })(); } if (body.opportunity_type === OpportunityLegacyType.ACCOMPANYING) { - const opp = await fastify.db.opportunityRepository.findOne({ - where: { id }, - relations: [ - "accompanying", - "accompanying.postcode", - "contactPerson", - "contactPerson.users", - "district", - ], - }); - if (opp) { - (async () => { + (async () => { + try { + const opp = await fastify.db.opportunityRepository.findOne({ + where: { id }, + relations: [ + "accompanying", + "accompanying.postcode", + "contactPerson", + "contactPerson.users", + "district", + ], + }); + if (!opp) { + return; + } + const alreadySent = + await fastify.db.communicationRepository.findOne({ + where: { + opportunityId: id, + communicationType: CommunicationType.OPPORTUNITY_CONFIRMATION, + }, + }); + if (alreadySent) { + return; + } + const comm = await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.OPPORTUNITY_CONFIRMATION, + { opportunityId: id }, + ); try { await fastify.notify.emailNewAccompanying(opp); - await logEmailCommunication( - fastify.db.communicationRepository, - CommunicationType.OPPORTUNITY_CONFIRMATION, - { opportunityId: id }, - ); - } catch (err) { - logger.error( - `emailNewAccompanying side-effect failed (opp ${id}): ${err}`, - ); + } catch (sendErr) { + await fastify.db.communicationRepository.remove(comm); + throw sendErr; } - })(); - } + } catch (err) { + logger.error( + `emailNewAccompanying side-effect failed (opp ${id}): ${err}`, + ); + } + })(); } return reply.status(201).send({ diff --git a/src/server/routes/volunteer/communication.routes.ts b/src/server/routes/volunteer/communication.routes.ts index 43a1bdbf..fbf90626 100644 --- a/src/server/routes/volunteer/communication.routes.ts +++ b/src/server/routes/volunteer/communication.routes.ts @@ -1,5 +1,7 @@ import { FastifyInstance, FastifyPluginOptions } from "fastify"; import { ApiVolunteerCommunicationPost, UserRole } from "need4deed-sdk"; +import { IsNull, Not } from "typeorm"; +import { dtoCommunication } from "../../../services/dto/dto-communication"; import { idParamSchema } from "../../schema"; import { maskForCaller } from "../../utils/pii/pre-serialization"; @@ -31,13 +33,14 @@ export default function volunteerCommunicationRoutes( const communications = await communicationRepository.find({ where: { volunteerId, + userId: Not(IsNull()), }, }); await maskForCaller(request, communications); return reply.status(200).send({ message: `List of communications for volunteer_id:${volunteerId}`, - data: communications, + data: communications.map(dtoCommunication), }); }, ); diff --git a/src/services/jobs/scan-post-match-checkup.ts b/src/services/jobs/scan-post-match-checkup.ts index c9fabe2d..fb9d96bb 100644 --- a/src/services/jobs/scan-post-match-checkup.ts +++ b/src/services/jobs/scan-post-match-checkup.ts @@ -4,7 +4,7 @@ import { OpportunityVolunteerStatusType, VolunteerStateEngagementType, } from "need4deed-sdk"; -import { LessThan } from "typeorm"; +import { In, LessThan } from "typeorm"; import logger from "../../logger"; import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; import { monthsAgo } from "./german-holidays"; @@ -23,16 +23,24 @@ export async function scanPostMatchCheckup( relations: ["volunteer.person", "volunteer.person.users"], }); + if (!ovs.length) { + return; + } + + const sentComms = await fastify.db.communicationRepository.find({ + where: { + volunteerId: In(ovs.map((ov) => ov.volunteerId)), + communicationType: CommunicationType.POST_FOLLOWUP, + }, + select: ["volunteerId", "opportunityId"], + }); + const alreadySentSet = new Set( + sentComms.map((c) => `${c.volunteerId}-${c.opportunityId}`), + ); + for (const ov of ovs) { try { - const alreadySent = await fastify.db.communicationRepository.findOne({ - where: { - volunteerId: ov.volunteerId, - opportunityId: ov.opportunityId, - communicationType: CommunicationType.POST_FOLLOWUP, - }, - }); - if (alreadySent) { + if (alreadySentSet.has(`${ov.volunteerId}-${ov.opportunityId}`)) { continue; } diff --git a/src/services/jobs/scan-regular-update.ts b/src/services/jobs/scan-regular-update.ts index e2238754..644944da 100644 --- a/src/services/jobs/scan-regular-update.ts +++ b/src/services/jobs/scan-regular-update.ts @@ -27,15 +27,29 @@ export async function scanRegularUpdate( relations: ["contactPerson", "contactPerson.users"], }); + if (!opps.length) { + return; + } + + const sentComms = await fastify.db.communicationRepository.find({ + where: { + opportunityId: In(opps.map((o) => o.id)), + communicationType: CommunicationType.OPPORTUNITY_UPDATED, + }, + select: ["opportunityId", "date"], + }); + const lastSentMap = new Map(); + for (const c of sentComms) { + const prev = lastSentMap.get(c.opportunityId!); + if (!prev || c.date > prev) { + lastSentMap.set(c.opportunityId!, c.date); + } + } + for (const opp of opps) { try { - const alreadySent = await fastify.db.communicationRepository.findOne({ - where: { - opportunityId: opp.id, - communicationType: CommunicationType.OPPORTUNITY_UPDATED, - }, - }); - if (alreadySent) { + const lastSent = lastSentMap.get(opp.id); + if (lastSent && lastSent > opp.updatedAt) { continue; } diff --git a/src/services/jobs/scan-stale-pending.ts b/src/services/jobs/scan-stale-pending.ts index 58177fa9..63e29bac 100644 --- a/src/services/jobs/scan-stale-pending.ts +++ b/src/services/jobs/scan-stale-pending.ts @@ -4,7 +4,7 @@ import { OpportunityVolunteerStatusType, VolunteerStateEngagementType, } from "need4deed-sdk"; -import { LessThan } from "typeorm"; +import { In, LessThan } from "typeorm"; import logger from "../../logger"; import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; import { monthsAgo } from "./german-holidays"; @@ -23,16 +23,24 @@ export async function scanStalePending( relations: ["volunteer.person", "volunteer.person.users"], }); + if (!ovs.length) { + return; + } + + const sentComms = await fastify.db.communicationRepository.find({ + where: { + volunteerId: In(ovs.map((ov) => ov.volunteerId)), + communicationType: CommunicationType.STATUS_UPDATE, + }, + select: ["volunteerId", "opportunityId"], + }); + const alreadySentSet = new Set( + sentComms.map((c) => `${c.volunteerId}-${c.opportunityId}`), + ); + for (const ov of ovs) { try { - const alreadySent = await fastify.db.communicationRepository.findOne({ - where: { - volunteerId: ov.volunteerId, - opportunityId: ov.opportunityId, - communicationType: CommunicationType.STATUS_UPDATE, - }, - }); - if (alreadySent) { + if (alreadySentSet.has(`${ov.volunteerId}-${ov.opportunityId}`)) { continue; } diff --git a/src/services/notify/transports/email-brevo.ts b/src/services/notify/transports/email-brevo.ts index 8ac17a7c..cc2acd0f 100644 --- a/src/services/notify/transports/email-brevo.ts +++ b/src/services/notify/transports/email-brevo.ts @@ -44,8 +44,7 @@ export class BrevoEmailTransport implements EmailTransport { }); if (!res.ok) { - const body = await res.text().catch(() => ""); - throw new Error(`Brevo email failed (${res.status}): ${body}`); + throw new Error(`Brevo email failed (${res.status})`); } } } diff --git a/src/test/services/notify/email-brevo.test.ts b/src/test/services/notify/email-brevo.test.ts index dedecebb..e2957c2e 100644 --- a/src/test/services/notify/email-brevo.test.ts +++ b/src/test/services/notify/email-brevo.test.ts @@ -49,7 +49,7 @@ describe("BrevoEmailTransport", () => { expect(fetchMock).not.toHaveBeenCalled(); }); - it("throws with status and body on a non-2xx response", async () => { + it("throws with status on a non-2xx response (no body to avoid PII in logs)", async () => { fetchMock.mockResolvedValueOnce({ ok: false, status: 400, @@ -58,6 +58,6 @@ describe("BrevoEmailTransport", () => { await expect( new BrevoEmailTransport("secret-key").send(msg), - ).rejects.toThrow(/Brevo email failed \(400\): .*Invalid sender/); + ).rejects.toThrow(/Brevo email failed \(400\)$/); }); }); From 9a6b6562cbd31b605d8f4c619f5f8073b7e1fc8f Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 21:29:28 +0000 Subject: [PATCH 42/89] fix: address round-5 review findings Correctness: - volunteer/communication.routes.ts: remove Not(IsNull()) filter so automated emails (FIRST_INQUIRY, STATUS_UPDATE, POST_FOLLOWUP, etc.) are visible in volunteer history; also apply dtoCommunication to the POST response (raw entity was being returned) - opportunity.routes.ts: extract sendNewOpportunityEmail helper that wraps remove(comm).catch() so a DB error during rollback is logged with the orphan comm id instead of silently swallowing it and leaving a permanent dedup block Cleanup: - volunteer/communication.routes.ts: remove no-op maskForCaller call (no relations loaded, DTO discards every field it could mask) - opportunity.routes.ts: second ACCOMPANYING block is now else-if, making mutual exclusivity explicit; two 40-line IIFE bodies collapsed into one sendNewOpportunityEmail helper - log-email-communication.ts: extract buildSentPairSet (bulk volunteerId+opportunityId dedup with opportunityId filter added) and buildLastSentMap (bulk opportunity date-gate dedup) as shared helpers - scan-stale-pending.ts, scan-post-match-checkup.ts: use buildSentPairSet (adds missing opportunityId constraint to the bulk query, eliminates copy-paste between the two files) - scan-regular-update.ts, scan-accompany-not-found.ts: use buildLastSentMap (eliminates the identical Map-building loop) Co-Authored-By: Claude Sonnet 4.6 --- .../routes/opportunity/opportunity.routes.ts | 110 +++++++++--------- .../routes/volunteer/communication.routes.ts | 16 +-- .../utils/data/log-email-communication.ts | 38 +++++- src/services/jobs/scan-accompany-not-found.ts | 35 +++--- src/services/jobs/scan-post-match-checkup.ts | 21 ++-- src/services/jobs/scan-regular-update.ts | 24 ++-- src/services/jobs/scan-stale-pending.ts | 21 ++-- 7 files changed, 138 insertions(+), 127 deletions(-) diff --git a/src/server/routes/opportunity/opportunity.routes.ts b/src/server/routes/opportunity/opportunity.routes.ts index f3e49a5d..a5ecef98 100644 --- a/src/server/routes/opportunity/opportunity.routes.ts +++ b/src/server/routes/opportunity/opportunity.routes.ts @@ -70,6 +70,46 @@ import { import opportunityLegacyRoutes from "./legacy.routes"; import opportunityOpportunityVolunteerRoutes from "./opportunity-volunteer.routes"; +async function sendNewOpportunityEmail( + fastify: FastifyInstance, + id: number, + relations: string[], + notifyFn: (opp: Opportunity) => Promise, + label: string, +): Promise { + const opp = await fastify.db.opportunityRepository.findOne({ + where: { id }, + relations, + }); + if (!opp) { + return; + } + const alreadySent = await fastify.db.communicationRepository.findOne({ + where: { + opportunityId: id, + communicationType: CommunicationType.OPPORTUNITY_CONFIRMATION, + }, + }); + if (alreadySent) { + return; + } + const comm = await logEmailCommunication( + fastify.db.communicationRepository, + CommunicationType.OPPORTUNITY_CONFIRMATION, + { opportunityId: id }, + ); + try { + await notifyFn(opp); + } catch (sendErr) { + await fastify.db.communicationRepository.remove(comm).catch((removeErr) => { + logger.error( + `${label} dedup rollback failed (opp ${id}, comm ${comm.id}): ${removeErr}`, + ); + }); + throw sendErr; + } +} + export default async function opportunityRoutes( fastify: FastifyInstance, _options: FastifyPluginOptions, @@ -347,79 +387,35 @@ export default async function opportunityRoutes( if (body.opportunity_type === OpportunityLegacyType.VOLUNTEERING) { (async () => { try { - const opp = await fastify.db.opportunityRepository.findOne({ - where: { id }, - relations: ["contactPerson", "contactPerson.users"], - }); - if (!opp) { - return; - } - const alreadySent = - await fastify.db.communicationRepository.findOne({ - where: { - opportunityId: id, - communicationType: CommunicationType.OPPORTUNITY_CONFIRMATION, - }, - }); - if (alreadySent) { - return; - } - const comm = await logEmailCommunication( - fastify.db.communicationRepository, - CommunicationType.OPPORTUNITY_CONFIRMATION, - { opportunityId: id }, + await sendNewOpportunityEmail( + fastify, + id, + ["contactPerson", "contactPerson.users"], + (opp) => fastify.notify.emailNewRegular(opp), + "emailNewRegular", ); - try { - await fastify.notify.emailNewRegular(opp); - } catch (sendErr) { - await fastify.db.communicationRepository.remove(comm); - throw sendErr; - } } catch (err) { logger.error( `emailNewRegular side-effect failed (opp ${id}): ${err}`, ); } })(); - } - - if (body.opportunity_type === OpportunityLegacyType.ACCOMPANYING) { + } else if (body.opportunity_type === OpportunityLegacyType.ACCOMPANYING) { (async () => { try { - const opp = await fastify.db.opportunityRepository.findOne({ - where: { id }, - relations: [ + await sendNewOpportunityEmail( + fastify, + id, + [ "accompanying", "accompanying.postcode", "contactPerson", "contactPerson.users", "district", ], - }); - if (!opp) { - return; - } - const alreadySent = - await fastify.db.communicationRepository.findOne({ - where: { - opportunityId: id, - communicationType: CommunicationType.OPPORTUNITY_CONFIRMATION, - }, - }); - if (alreadySent) { - return; - } - const comm = await logEmailCommunication( - fastify.db.communicationRepository, - CommunicationType.OPPORTUNITY_CONFIRMATION, - { opportunityId: id }, + (opp) => fastify.notify.emailNewAccompanying(opp), + "emailNewAccompanying", ); - try { - await fastify.notify.emailNewAccompanying(opp); - } catch (sendErr) { - await fastify.db.communicationRepository.remove(comm); - throw sendErr; - } } catch (err) { logger.error( `emailNewAccompanying side-effect failed (opp ${id}): ${err}`, diff --git a/src/server/routes/volunteer/communication.routes.ts b/src/server/routes/volunteer/communication.routes.ts index fbf90626..b43a9e5f 100644 --- a/src/server/routes/volunteer/communication.routes.ts +++ b/src/server/routes/volunteer/communication.routes.ts @@ -1,9 +1,7 @@ import { FastifyInstance, FastifyPluginOptions } from "fastify"; import { ApiVolunteerCommunicationPost, UserRole } from "need4deed-sdk"; -import { IsNull, Not } from "typeorm"; import { dtoCommunication } from "../../../services/dto/dto-communication"; import { idParamSchema } from "../../schema"; -import { maskForCaller } from "../../utils/pii/pre-serialization"; export default function volunteerCommunicationRoutes( fastify: FastifyInstance, @@ -29,15 +27,10 @@ export default function volunteerCommunicationRoutes( async (request, reply) => { const volunteerId = Number(request.params.id); - const communicationRepository = fastify.db.communicationRepository; - const communications = await communicationRepository.find({ - where: { - volunteerId, - userId: Not(IsNull()), - }, + const communications = await fastify.db.communicationRepository.find({ + where: { volunteerId }, }); - await maskForCaller(request, communications); return reply.status(200).send({ message: `List of communications for volunteer_id:${volunteerId}`, data: communications.map(dtoCommunication), @@ -67,8 +60,7 @@ export default function volunteerCommunicationRoutes( async (request, reply) => { const volunteerId = Number(request.params.id); - const communicationRepository = fastify.db.communicationRepository; - const communication = await communicationRepository.save({ + const communication = await fastify.db.communicationRepository.save({ ...request.body, userId: request.user.id, volunteerId, @@ -76,7 +68,7 @@ export default function volunteerCommunicationRoutes( return reply.status(201).send({ message: `Communication created for volunteer_id:${volunteerId}`, - data: communication, + data: dtoCommunication(communication), }); }, ); diff --git a/src/server/utils/data/log-email-communication.ts b/src/server/utils/data/log-email-communication.ts index 50bf5a12..8d8fe54e 100644 --- a/src/server/utils/data/log-email-communication.ts +++ b/src/server/utils/data/log-email-communication.ts @@ -3,7 +3,7 @@ import { ContactMethodType, ContactType, } from "need4deed-sdk"; -import { Repository } from "typeorm"; +import { In, Repository } from "typeorm"; import Communication from "../../../data/entity/communication.entity"; export async function logEmailCommunication( @@ -20,3 +20,39 @@ export async function logEmailCommunication( }), ); } + +export async function buildSentPairSet( + repo: Repository, + volunteerIds: number[], + opportunityIds: number[], + communicationType: CommunicationType, +): Promise> { + const sentComms = await repo.find({ + where: { + volunteerId: In(volunteerIds), + opportunityId: In(opportunityIds), + communicationType, + }, + select: ["volunteerId", "opportunityId"], + }); + return new Set(sentComms.map((c) => `${c.volunteerId}-${c.opportunityId}`)); +} + +export async function buildLastSentMap( + repo: Repository, + opportunityIds: number[], + communicationType: CommunicationType, +): Promise> { + const sentComms = await repo.find({ + where: { opportunityId: In(opportunityIds), communicationType }, + select: ["opportunityId", "date"], + }); + const map = new Map(); + for (const c of sentComms) { + const prev = map.get(c.opportunityId!); + if (!prev || c.date > prev) { + map.set(c.opportunityId!, c.date); + } + } + return map; +} diff --git a/src/services/jobs/scan-accompany-not-found.ts b/src/services/jobs/scan-accompany-not-found.ts index 7912f047..6ee87063 100644 --- a/src/services/jobs/scan-accompany-not-found.ts +++ b/src/services/jobs/scan-accompany-not-found.ts @@ -7,7 +7,10 @@ import { } from "need4deed-sdk"; import { Between, In } from "typeorm"; import logger from "../../logger"; -import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; +import { + buildLastSentMap, + logEmailCommunication, +} from "../../server/utils/data/log-email-communication"; import { addWorkingDays, berlinDayBoundaries, @@ -47,31 +50,23 @@ export async function scanAccompanyNotFound( ), ); - if (!candidates.length) {return;} - - // Fix 10: bulk dedup query — one DB round-trip instead of N per-item findOne calls. - const sentComms = await fastify.db.communicationRepository.find({ - where: { - opportunityId: In(candidates.map((c) => c.id)), - communicationType: CommunicationType.ACCOMPANYING_NOT_FOUND, - }, - select: ["opportunityId", "date"], - }); - // Fix 6: dedup only suppresses if the email was sent AFTER the last opportunity - // update — allows re-notification when a match falls through (bumps updatedAt). - const lastSentMap = new Map(); - for (const c of sentComms) { - const prev = lastSentMap.get(c.opportunityId!); - if (!prev || c.date > prev) {lastSentMap.set(c.opportunityId!, c.date);} + if (!candidates.length) { + return; } + const lastSentMap = await buildLastSentMap( + fastify.db.communicationRepository, + candidates.map((c) => c.id), + CommunicationType.ACCOMPANYING_NOT_FOUND, + ); + for (const opp of candidates) { try { const lastSent = lastSentMap.get(opp.id); - if (lastSent && lastSent > opp.updatedAt) {continue;} + if (lastSent && lastSent > opp.updatedAt) { + continue; + } - // Fix 4: log before send; remove the dedup record on send failure so the - // next run can retry rather than being permanently suppressed. const comm = await logEmailCommunication( fastify.db.communicationRepository, CommunicationType.ACCOMPANYING_NOT_FOUND, diff --git a/src/services/jobs/scan-post-match-checkup.ts b/src/services/jobs/scan-post-match-checkup.ts index fb9d96bb..07c596bd 100644 --- a/src/services/jobs/scan-post-match-checkup.ts +++ b/src/services/jobs/scan-post-match-checkup.ts @@ -4,9 +4,12 @@ import { OpportunityVolunteerStatusType, VolunteerStateEngagementType, } from "need4deed-sdk"; -import { In, LessThan } from "typeorm"; +import { LessThan } from "typeorm"; import logger from "../../logger"; -import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; +import { + buildSentPairSet, + logEmailCommunication, +} from "../../server/utils/data/log-email-communication"; import { monthsAgo } from "./german-holidays"; export async function scanPostMatchCheckup( @@ -27,15 +30,11 @@ export async function scanPostMatchCheckup( return; } - const sentComms = await fastify.db.communicationRepository.find({ - where: { - volunteerId: In(ovs.map((ov) => ov.volunteerId)), - communicationType: CommunicationType.POST_FOLLOWUP, - }, - select: ["volunteerId", "opportunityId"], - }); - const alreadySentSet = new Set( - sentComms.map((c) => `${c.volunteerId}-${c.opportunityId}`), + const alreadySentSet = await buildSentPairSet( + fastify.db.communicationRepository, + ovs.map((ov) => ov.volunteerId), + ovs.map((ov) => ov.opportunityId), + CommunicationType.POST_FOLLOWUP, ); for (const ov of ovs) { diff --git a/src/services/jobs/scan-regular-update.ts b/src/services/jobs/scan-regular-update.ts index 644944da..53ca46b1 100644 --- a/src/services/jobs/scan-regular-update.ts +++ b/src/services/jobs/scan-regular-update.ts @@ -6,7 +6,10 @@ import { } from "need4deed-sdk"; import { In, LessThan } from "typeorm"; import logger from "../../logger"; -import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; +import { + buildLastSentMap, + logEmailCommunication, +} from "../../server/utils/data/log-email-communication"; import { monthsAgo } from "./german-holidays"; export async function scanRegularUpdate( @@ -31,20 +34,11 @@ export async function scanRegularUpdate( return; } - const sentComms = await fastify.db.communicationRepository.find({ - where: { - opportunityId: In(opps.map((o) => o.id)), - communicationType: CommunicationType.OPPORTUNITY_UPDATED, - }, - select: ["opportunityId", "date"], - }); - const lastSentMap = new Map(); - for (const c of sentComms) { - const prev = lastSentMap.get(c.opportunityId!); - if (!prev || c.date > prev) { - lastSentMap.set(c.opportunityId!, c.date); - } - } + const lastSentMap = await buildLastSentMap( + fastify.db.communicationRepository, + opps.map((o) => o.id), + CommunicationType.OPPORTUNITY_UPDATED, + ); for (const opp of opps) { try { diff --git a/src/services/jobs/scan-stale-pending.ts b/src/services/jobs/scan-stale-pending.ts index 63e29bac..b98a24a3 100644 --- a/src/services/jobs/scan-stale-pending.ts +++ b/src/services/jobs/scan-stale-pending.ts @@ -4,9 +4,12 @@ import { OpportunityVolunteerStatusType, VolunteerStateEngagementType, } from "need4deed-sdk"; -import { In, LessThan } from "typeorm"; +import { LessThan } from "typeorm"; import logger from "../../logger"; -import { logEmailCommunication } from "../../server/utils/data/log-email-communication"; +import { + buildSentPairSet, + logEmailCommunication, +} from "../../server/utils/data/log-email-communication"; import { monthsAgo } from "./german-holidays"; export async function scanStalePending( @@ -27,15 +30,11 @@ export async function scanStalePending( return; } - const sentComms = await fastify.db.communicationRepository.find({ - where: { - volunteerId: In(ovs.map((ov) => ov.volunteerId)), - communicationType: CommunicationType.STATUS_UPDATE, - }, - select: ["volunteerId", "opportunityId"], - }); - const alreadySentSet = new Set( - sentComms.map((c) => `${c.volunteerId}-${c.opportunityId}`), + const alreadySentSet = await buildSentPairSet( + fastify.db.communicationRepository, + ovs.map((ov) => ov.volunteerId), + ovs.map((ov) => ov.opportunityId), + CommunicationType.STATUS_UPDATE, ); for (const ov of ovs) { From 698bf7b6dae0626c1604579f015bef1527a46f92 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Wed, 1 Jul 2026 22:14:09 +0000 Subject: [PATCH 43/89] fix: harden scheduler, comm delete guard, and email send/rollback paths - scheduler.ts: move qr.connect()+startTransaction() into try block to prevent connection leak when startTransaction throws; guard rollbackTransaction() with .catch() so a double-failure doesn't swallow the original error - communication.routes.ts: allow coordinators to delete system comms (userId=null) by treating null userId as unowned rather than permanently blocking deletion - opportunity-volunteer.routes.ts: add .catch(logger.error) to all three commRepo.remove(comm) rollback calls; rewrite six stale "Fix:" comments as timeless invariants - scan-stale-pending, scan-post-match-checkup, scan-regular-update, scan-accompany-not-found: add .catch(logger.error) to remove(comm) rollback so a DB hiccup during rollback never swallows the original send error - email-accompany-match.ts: throw early when volunteer.deal is missing to prevent broken (empty-language) email reaching the agent contact person - log-email-communication.ts: replace buildLastSentMap full-table scan with GROUP BY MAX(date) query; return at most N rows for N opportunities Co-Authored-By: Claude Sonnet 4.6 --- src/server/plugins/scheduler.ts | 6 +-- src/server/routes/communication.routes.ts | 5 ++- .../m2m/opportunity-volunteer.routes.ts | 38 +++++++++++-------- .../utils/data/log-email-communication.ts | 22 +++++------ src/services/jobs/scan-accompany-not-found.ts | 4 +- src/services/jobs/scan-post-match-checkup.ts | 4 +- src/services/jobs/scan-regular-update.ts | 4 +- src/services/jobs/scan-stale-pending.ts | 4 +- .../notify/events/email-accompany-match.ts | 5 +++ 9 files changed, 58 insertions(+), 34 deletions(-) diff --git a/src/server/plugins/scheduler.ts b/src/server/plugins/scheduler.ts index ff5eb0ed..38efaf07 100644 --- a/src/server/plugins/scheduler.ts +++ b/src/server/plugins/scheduler.ts @@ -22,9 +22,9 @@ async function runWithAdvisoryLock(fn: () => Promise): Promise { // needed. This avoids the session-level pitfall where pg_advisory_unlock // could fail and leave the connection holding the lock in the pool. const qr = dataSource.createQueryRunner(); - await qr.connect(); - await qr.startTransaction(); try { + await qr.connect(); + await qr.startTransaction(); const [row] = await qr.query( "SELECT pg_try_advisory_xact_lock($1) AS acquired", [SCHEDULER_LOCK_ID], @@ -39,7 +39,7 @@ async function runWithAdvisoryLock(fn: () => Promise): Promise { await fn(); await qr.commitTransaction(); } catch (err) { - await qr.rollbackTransaction(); + await qr.rollbackTransaction().catch(logger.error); throw err; } finally { await qr.release(); diff --git a/src/server/routes/communication.routes.ts b/src/server/routes/communication.routes.ts index 8cc28016..d02e068f 100644 --- a/src/server/routes/communication.routes.ts +++ b/src/server/routes/communication.routes.ts @@ -88,7 +88,10 @@ export default async function communicationRoutes( }); } - if (communication.userId !== request.user.id) { + if ( + communication.userId !== null && + communication.userId !== request.user.id + ) { return reply.status(403).send({ message: `You do not have permission to delete communication with id:${id}.`, }); diff --git a/src/server/routes/m2m/opportunity-volunteer.routes.ts b/src/server/routes/m2m/opportunity-volunteer.routes.ts index 748eac0b..638771fd 100644 --- a/src/server/routes/m2m/opportunity-volunteer.routes.ts +++ b/src/server/routes/m2m/opportunity-volunteer.routes.ts @@ -93,8 +93,8 @@ export default async function m2mOpportunityVolunteerRoutes( if (nextStatus === OpportunityVolunteerStatusType.PENDING) { (async () => { try { - // Fix: findOne inside the IIFE so the handler returns 204 immediately - // and a DB hiccup here doesn't produce a 500 after the OV is committed. + // findOne inside the IIFE: handler returns 204 immediately; + // a DB hiccup here doesn't affect the HTTP response. const ov = await opportunityVolunteerRepository.findOne({ where: { id }, relations: [ @@ -105,8 +105,10 @@ export default async function m2mOpportunityVolunteerRoutes( "opportunity", ], }); - if (!ov) {return;} - // Fix: dedup — skip if FIRST_INQUIRY already logged (e.g. PENDING→DECLINED→PENDING). + if (!ov) { + return; + } + // Skip if FIRST_INQUIRY already sent (e.g. PENDING→DECLINED→PENDING). const alreadySent = await commRepo.findOne({ where: { volunteerId: ov.volunteerId, @@ -114,9 +116,10 @@ export default async function m2mOpportunityVolunteerRoutes( communicationType: CommunicationType.FIRST_INQUIRY, }, }); - if (alreadySent) {return;} - // Fix: log before send; remove the dedup record on send failure so - // the next status toggle can retry. + if (alreadySent) { + return; + } + // Log before send; remove the dedup record on failure so the next toggle can retry. const comm = await logEmailCommunication( commRepo, CommunicationType.FIRST_INQUIRY, @@ -128,7 +131,7 @@ export default async function m2mOpportunityVolunteerRoutes( try { await fastify.notify.emailSuggestion(ov); } catch (sendErr) { - await commRepo.remove(comm); + await commRepo.remove(comm).catch(logger.error); throw sendErr; } } catch (err) { @@ -140,7 +143,8 @@ export default async function m2mOpportunityVolunteerRoutes( } else if (nextStatus === OpportunityVolunteerStatusType.MATCHED) { (async () => { try { - // Fix: findOne inside the IIFE — same reasoning as PENDING block above. + // findOne inside the IIFE: handler returns 204 immediately; + // a DB hiccup here doesn't affect the HTTP response. const ov = await opportunityVolunteerRepository.findOne({ where: { id }, relations: [ @@ -156,13 +160,15 @@ export default async function m2mOpportunityVolunteerRoutes( "opportunity.district", ], }); - if (!ov) {return;} + if (!ov) { + return; + } const isAccompany = ov.opportunity?.type === ProfileVolunteeringType.ACCOMPANYING; const commType = isAccompany ? CommunicationType.ACCOMPANYING_MATCHED : CommunicationType.MATCHED; - // Fix: dedup — skip if a match email was already sent for this pair. + // Skip if a match email was already sent for this pair. const alreadySent = await commRepo.findOne({ where: { volunteerId: ov.volunteerId, @@ -170,9 +176,11 @@ export default async function m2mOpportunityVolunteerRoutes( communicationType: commType, }, }); - if (alreadySent) {return;} + if (alreadySent) { + return; + } if (isAccompany) { - // Fix: log before send + rollback on failure; include volunteerId (was missing). + // Log before send; remove the dedup record on failure so the next toggle can retry. const comm = await logEmailCommunication( commRepo, CommunicationType.ACCOMPANYING_MATCHED, @@ -184,7 +192,7 @@ export default async function m2mOpportunityVolunteerRoutes( try { await fastify.notify.emailAccompanyMatch(ov); } catch (sendErr) { - await commRepo.remove(comm); + await commRepo.remove(comm).catch(logger.error); throw sendErr; } } else { @@ -199,7 +207,7 @@ export default async function m2mOpportunityVolunteerRoutes( try { await fastify.notify.emailIntroduction(ov); } catch (sendErr) { - await commRepo.remove(comm); + await commRepo.remove(comm).catch(logger.error); throw sendErr; } } diff --git a/src/server/utils/data/log-email-communication.ts b/src/server/utils/data/log-email-communication.ts index 8d8fe54e..e72a241a 100644 --- a/src/server/utils/data/log-email-communication.ts +++ b/src/server/utils/data/log-email-communication.ts @@ -43,16 +43,16 @@ export async function buildLastSentMap( opportunityIds: number[], communicationType: CommunicationType, ): Promise> { - const sentComms = await repo.find({ - where: { opportunityId: In(opportunityIds), communicationType }, - select: ["opportunityId", "date"], - }); - const map = new Map(); - for (const c of sentComms) { - const prev = map.get(c.opportunityId!); - if (!prev || c.date > prev) { - map.set(c.opportunityId!, c.date); - } + if (!opportunityIds.length) { + return new Map(); } - return map; + const rows = await repo + .createQueryBuilder("c") + .select("c.opportunityId", "opportunityId") + .addSelect("MAX(c.date)", "date") + .where("c.opportunityId IN (:...ids)", { ids: opportunityIds }) + .andWhere("c.communicationType = :type", { type: communicationType }) + .groupBy("c.opportunityId") + .getRawMany<{ opportunityId: number; date: string | Date }>(); + return new Map(rows.map((r) => [Number(r.opportunityId), new Date(r.date)])); } diff --git a/src/services/jobs/scan-accompany-not-found.ts b/src/services/jobs/scan-accompany-not-found.ts index 6ee87063..584b83ab 100644 --- a/src/services/jobs/scan-accompany-not-found.ts +++ b/src/services/jobs/scan-accompany-not-found.ts @@ -75,7 +75,9 @@ export async function scanAccompanyNotFound( try { await fastify.notify.emailAccompanyNotFound(opp); } catch (sendErr) { - await fastify.db.communicationRepository.remove(comm); + await fastify.db.communicationRepository + .remove(comm) + .catch(logger.error); throw sendErr; } } catch (err) { diff --git a/src/services/jobs/scan-post-match-checkup.ts b/src/services/jobs/scan-post-match-checkup.ts index 07c596bd..0aacccc4 100644 --- a/src/services/jobs/scan-post-match-checkup.ts +++ b/src/services/jobs/scan-post-match-checkup.ts @@ -51,7 +51,9 @@ export async function scanPostMatchCheckup( try { await fastify.notify.emailPostMatchCheckup(ov); } catch (sendErr) { - await fastify.db.communicationRepository.remove(comm); + await fastify.db.communicationRepository + .remove(comm) + .catch(logger.error); throw sendErr; } } catch (err) { diff --git a/src/services/jobs/scan-regular-update.ts b/src/services/jobs/scan-regular-update.ts index 53ca46b1..fafce526 100644 --- a/src/services/jobs/scan-regular-update.ts +++ b/src/services/jobs/scan-regular-update.ts @@ -55,7 +55,9 @@ export async function scanRegularUpdate( try { await fastify.notify.emailRegularUpdate(opp); } catch (sendErr) { - await fastify.db.communicationRepository.remove(comm); + await fastify.db.communicationRepository + .remove(comm) + .catch(logger.error); throw sendErr; } } catch (err) { diff --git a/src/services/jobs/scan-stale-pending.ts b/src/services/jobs/scan-stale-pending.ts index b98a24a3..cfbe56b3 100644 --- a/src/services/jobs/scan-stale-pending.ts +++ b/src/services/jobs/scan-stale-pending.ts @@ -51,7 +51,9 @@ export async function scanStalePending( try { await fastify.notify.emailStale(ov); } catch (sendErr) { - await fastify.db.communicationRepository.remove(comm); + await fastify.db.communicationRepository + .remove(comm) + .catch(logger.error); throw sendErr; } } catch (err) { diff --git a/src/services/notify/events/email-accompany-match.ts b/src/services/notify/events/email-accompany-match.ts index d97569fc..3e6c7085 100644 --- a/src/services/notify/events/email-accompany-match.ts +++ b/src/services/notify/events/email-accompany-match.ts @@ -67,6 +67,11 @@ export async function sendEmailAccompanyMatch( `sendEmailAccompanyMatch: missing volunteer or person relation for ov ${ov.id}`, ); } + if (!volunteer.deal) { + throw new Error( + `sendEmailAccompanyMatch: volunteer ${volunteer.id} has no deal relation`, + ); + } const opportunity = ov.opportunity; const accompanying = opportunity.accompanying; From 9944396c330d3319df8c8d8856e497dd93758c5a Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 09:10:50 +0000 Subject: [PATCH 44/89] fix: add coordinator guard to volunteer comm GET and complete dtoCommunication - volunteer/communication.routes.ts: add onRequest coordinator guard to the GET handler (POST already had it); without it any authenticated user could read any volunteer's full communication history by changing the URL id - dto-communication.ts: add volunteerId and opportunityId to the DTO output; both were missing, making volunteer comm responses satisfy neither branch of the registered schema's oneOf: [{required:["agentId"]},{required:["volunteerId"]}] constraint and losing the identity FK for volunteer and opportunity records Co-Authored-By: Claude Sonnet 4.6 --- src/server/routes/volunteer/communication.routes.ts | 1 + src/services/dto/dto-communication.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/server/routes/volunteer/communication.routes.ts b/src/server/routes/volunteer/communication.routes.ts index b43a9e5f..470653c1 100644 --- a/src/server/routes/volunteer/communication.routes.ts +++ b/src/server/routes/volunteer/communication.routes.ts @@ -10,6 +10,7 @@ export default function volunteerCommunicationRoutes( fastify.get<{ Params: { id: string } }>( "/", { + onRequest: fastify.authenticate({ role: UserRole.COORDINATOR }), schema: { params: idParamSchema, response: { diff --git a/src/services/dto/dto-communication.ts b/src/services/dto/dto-communication.ts index 6baefad5..a7df27c2 100644 --- a/src/services/dto/dto-communication.ts +++ b/src/services/dto/dto-communication.ts @@ -10,6 +10,8 @@ export function dtoCommunication( contactMethod: communication.contactMethod, communicationType: communication.communicationType, date: communication.date, + volunteerId: communication.volunteerId, + opportunityId: communication.opportunityId, agentId: communication.agentId, userId: communication.userId, }; From 730516027a50733237fe03eb827a8f6c8d32e72b Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 10:45:31 +0000 Subject: [PATCH 45/89] add: HEAD to health check response --- Dockerfile | 2 ++ src/server/routes/health.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 03661a6d..48625742 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,12 +13,14 @@ ARG NODE_ENV=${NODE_ENV:-production} ARG CDN_BASE_URL ARG NIDS_TOKEN ARG RUN_MIGRATIONS=${RUN_MIGRATIONS:-true} +ARG GIT_COMMIT_SHA=${GIT_COMMIT_SHA:-unknown} ENV NODE_ENV=${NODE_ENV} ENV PORT=8000 ENV CDN_BASE_URL=${CDN_BASE_URL} ENV NIDS_TOKEN=${NIDS_TOKEN} ENV RUN_MIGRATIONS=${RUN_MIGRATIONS} +ENV GIT_COMMIT_SHA=${GIT_COMMIT_SHA} WORKDIR /app RUN apk update && apk add --no-cache curl dumb-init diff --git a/src/server/routes/health.ts b/src/server/routes/health.ts index 558472ce..7536ac2e 100644 --- a/src/server/routes/health.ts +++ b/src/server/routes/health.ts @@ -11,7 +11,7 @@ export default async function healthRoutes( { schema: { response: responseSchema("") } }, async (_request, reply) => { return reply.status(200).send({ - message: "Need4Deed API v1 is up and running.", + message: `Need4Deed API v1 is up and running.\nHEAD commit: ${process.env.GIT_COMMIT_SHA}`, }); }, ); From c69734826a2af07304267386aaecaf8d22d032e9 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 10:55:23 +0000 Subject: [PATCH 46/89] update: test --- src/test/server/index.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/test/server/index.test.ts b/src/test/server/index.test.ts index 273da0cb..25b7437b 100644 --- a/src/test/server/index.test.ts +++ b/src/test/server/index.test.ts @@ -16,13 +16,15 @@ describe("Fastify sanity check", () => { it("should create the server without errors", async () => { await fastify.ready(); - const health = { message: "Need4Deed API v1 is up and running." }; + const healthMsg = "Need4Deed API v1 is up and running."; const response = await fastify.inject({ method: "GET", url: "/health-check", }); expect(response.statusCode).toBe(200); - expect(response.json()).toEqual(health); + expect(response.json()).toMatchObject({ + message: expect.stringContaining(healthMsg), + }); }); }); From 3754672ec29d5edc88821f195137a95e01ede8fb Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 11:11:51 +0000 Subject: [PATCH 47/89] add: gate outbound emails prod only --- src/services/notify/transports/email-brevo.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/services/notify/transports/email-brevo.ts b/src/services/notify/transports/email-brevo.ts index cc2acd0f..5553cca4 100644 --- a/src/services/notify/transports/email-brevo.ts +++ b/src/services/notify/transports/email-brevo.ts @@ -1,4 +1,5 @@ import { defaultFrom, isDev, isStaging } from "../../../config/constants"; +import logger from "../../../logger"; import type { EmailMessage, EmailTransport } from "../types"; const BREVO_API_URL = "https://api.brevo.com/v3/smtp/email"; @@ -13,6 +14,12 @@ export class BrevoEmailTransport implements EmailTransport { constructor(private readonly apiKey: string) {} async send(msg: EmailMessage): Promise { + if (isDev || isStaging) { + logger.info( + `Brevo email transport (dev/staging) sending to ${msg.to}: ${msg.subject}`, + ); + return; + } if (!this.apiKey) { throw new Error("BREVO_API_KEY is not configured"); } From f87fb823cdf52937ee1575812ab1224b0f7de897 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 16:00:43 +0000 Subject: [PATCH 48/89] fix: move seed files out of gitignored dev/ directory src/data/seeds/dev/ was silently excluded by the `dev/` gitignore rule, causing Docker builds to fail with TS2307 module-not-found errors. Renamed to seeds/populate/ and updated the two import sites. Co-Authored-By: Claude Sonnet 4.6 --- src/data/seeds/populate/agent.seed.ts | 129 ++++++++++++++++++++ src/data/seeds/populate/dev-parsing.ts | 17 +++ src/data/seeds/populate/opportunity.seed.ts | 127 +++++++++++++++++++ src/data/seeds/populate/types.ts | 114 +++++++++++++++++ src/data/seeds/populate/volunteer.seed.ts | 86 +++++++++++++ src/data/seeds/seed.ts | 8 +- src/data/seeds/utils.ts | 2 +- 7 files changed, 478 insertions(+), 5 deletions(-) create mode 100644 src/data/seeds/populate/agent.seed.ts create mode 100644 src/data/seeds/populate/dev-parsing.ts create mode 100644 src/data/seeds/populate/opportunity.seed.ts create mode 100644 src/data/seeds/populate/types.ts create mode 100644 src/data/seeds/populate/volunteer.seed.ts diff --git a/src/data/seeds/populate/agent.seed.ts b/src/data/seeds/populate/agent.seed.ts new file mode 100644 index 00000000..e3f4a2a8 --- /dev/null +++ b/src/data/seeds/populate/agent.seed.ts @@ -0,0 +1,129 @@ +import { EntityTableName } from "need4deed-sdk"; +import { DataSource } from "typeorm"; +import { seedAgentsFile, titleOrphanageAgent } from "../../../config"; +import { tryCatch } from "../../../services/utils"; +import Postcode from "../../entity/location/postcode.entity"; +import AgentPerson from "../../entity/m2m/agent-person"; +import AgentPostcode from "../../entity/m2m/agent-postcode"; +import NotionRelation from "../../entity/notion-relation.entity"; +import Agent from "../../entity/opportunity/agent.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { + getAgentEngagement, + getAgentPersonRole, + getAgentSearchStatus, + getAgentService, + getAgentTrustLevel, + getAgentType, + getCount, + getOrCreatePerson, +} from "../utils"; +import { AgentJSON } from "./types"; + +export async function seedAgents(dataSource: DataSource): Promise { + const agentRepository = getRepository(dataSource, Agent); + + const count = await getCount(agentRepository); + if (count !== 0) { + dataSource.logger.log("log", "Skipping seeding agents."); + return; + } + + const agentsJson = (await fetchJsonFromUrl(seedAgentsFile)) as AgentJSON[]; + + // create an agent for orphan opportunities + agentsJson.unshift({ + title: titleOrphanageAgent, + about: "the dummy agent account for parenting orphaned opportunities.", + } as AgentJSON); + + for (const agentJson of agentsJson ?? []) { + const agentObj = new Agent({ + title: agentJson.title || agentJson.website || "unknown", + info: agentJson.about, + website: agentJson.website, + type: getAgentType(agentJson.type), + trustLevel: getAgentTrustLevel(agentJson.trustLevel), + searchStatus: getAgentSearchStatus(agentJson.statusSearch), + engagementStatus: getAgentEngagement(agentJson.statusEngagement), + services: agentJson.services?.map(getAgentService), + }); + const [agent, error] = await tryCatch(agentRepository.save(agentObj)); + + if (error) { + dataSource.logger.log( + "warn", + `While creating an agent ${agentJson.nid} occurred: ${error}`, + ); + continue; + } + + const agentPostcodeRepository = getRepository(dataSource, AgentPostcode); + const postcodeRepository = getRepository(dataSource, Postcode); + const postcode12345 = await postcodeRepository.findOneBy({ + value: "12345", + }); + const postcodesJson = agentJson.postcodes ?? []; + for (const postcodeJson of postcodesJson) { + const postcode = await postcodeRepository.findOneBy({ + value: postcodeJson, + }); + const [, error] = await tryCatch( + agentPostcodeRepository.save( + new AgentPostcode({ postcode: postcode! || postcode12345, agent }), + ), + ); + + if (error) { + dataSource.logger.log( + "warn", + `During storing postcode:${postcodeJson} for agent:${agentJson.nid} occurred: ${error}`, + ); + } + } + + const personsJson = agentJson.person ?? []; + for (const personJson of personsJson) { + if (Object.values(personJson).filter(Boolean).length) { + const person = await getOrCreatePerson(personJson, dataSource); + const agentPersonRepository = getRepository(dataSource, AgentPerson); + const agentPersonOnj = new AgentPerson({ + agentId: agent.id, + personId: person.id, + role: getAgentPersonRole(personJson.role), + }); + const [, error] = await tryCatch( + agentPersonRepository.save(agentPersonOnj), + ); + if (error) { + dataSource.logger.log( + "warn", + `Storing agent-person m2m (agentId:${agent.id}, personId:${person.id}) occurred: ${error}`, + ); + } + } + } + + const notionRelationRepository = getRepository(dataSource, NotionRelation); + const opportunityNids = agentJson.opportunityNids ?? []; + for (const opportunityNid of opportunityNids) { + const notionRel = new NotionRelation({ + hostId: agent.id, + hostType: EntityTableName.AGENT, + hostNid: agentJson.nid, + tenantType: EntityTableName.OPPORTUNITY, + tenantNid: opportunityNid, + }); + + const [, error] = await tryCatch( + notionRelationRepository.save(notionRel), + ); + if (error) { + dataSource.logger.log( + "warn", + `Storing notion relation (agentNid:${agentJson.nid}, opportunityNid:${opportunityNid}) occurred: ${error}`, + ); + } + } + } +} diff --git a/src/data/seeds/populate/dev-parsing.ts b/src/data/seeds/populate/dev-parsing.ts new file mode 100644 index 00000000..4224bbf7 --- /dev/null +++ b/src/data/seeds/populate/dev-parsing.ts @@ -0,0 +1,17 @@ +import { DataSource } from "typeorm"; +import { seedVolunteersFile } from "../../../config"; +import { fetchJsonFromUrl } from "../../utils"; +import { createDealTimeslots } from "../utils"; +import { VolunteerJSON } from "./types"; + +export async function devTime(dataSource: DataSource) { + const volunteersJson = (await fetchJsonFromUrl( + seedVolunteersFile, + )) as VolunteerJSON[]; + + for (const volunteerJson of volunteersJson) { + if (volunteerJson.nid === "VOLVO-525") { + await createDealTimeslots(dataSource, volunteerJson.deal.time); + } + } +} diff --git a/src/data/seeds/populate/opportunity.seed.ts b/src/data/seeds/populate/opportunity.seed.ts new file mode 100644 index 00000000..164f6682 --- /dev/null +++ b/src/data/seeds/populate/opportunity.seed.ts @@ -0,0 +1,127 @@ +import { + EntityTableName, + OpportunityType, + TranslatedIntoType, +} from "need4deed-sdk"; +import { DataSource } from "typeorm"; +import { seedOpportunitiesFile } from "../../../config/constants"; +import logger from "../../../logger"; +import { tryCatch } from "../../../services/utils"; +import NotionRelation from "../../entity/notion-relation.entity"; +import Accompanying from "../../entity/opportunity/accompanying.entity"; +import Opportunity from "../../entity/opportunity/opportunity.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { + createDeal, + getCount, + getEnumValue, + getOrCreateAgent, + getToTranslate, +} from "../utils"; +import { OpportunityJSON } from "./types"; + +export async function seedOpportunities(dataSource: DataSource): Promise { + if (!dataSource) { + throw new Error("DataSource is not initialized."); + } + + const opportunityRepository = getRepository(dataSource, Opportunity); + + const count = await getCount(opportunityRepository); + if (count !== 0) { + logger.info("Skipping seeding opportunities."); + return; + } + + const opportunities = (await fetchJsonFromUrl( + seedOpportunitiesFile, + )) as OpportunityJSON[]; + + for (const opportunity of opportunities ?? []) { + try { + const title = opportunity.title; + + if (!title) { + throw new Error("title is missing."); + } + + const deal = await createDeal(opportunity.deal, dataSource); + + const notionRelationRepository = getRepository( + dataSource, + NotionRelation, + ); + const [notionRelation] = await tryCatch( + notionRelationRepository.findOne({ + where: { + tenantNid: opportunity.nid, + tenantType: EntityTableName.OPPORTUNITY, + hostType: EntityTableName.AGENT, + }, + }), + ); + + const accompanyingRepository = getRepository(dataSource, Accompanying); + const [accompanying] = await tryCatch( + opportunity.accompanying + ? accompanyingRepository.save( + new Accompanying({ + address: opportunity.accompanying.address || "Berlin", + name: opportunity.accompanying.name || "unknown", + phone: opportunity.accompanying.phone, + date: new Date(opportunity.accompanying.date), + languageToTranslate: getToTranslate( + opportunity.accompanying.languageToTranslate, + ), + }), + ) + : Promise.reject(), + ); + + const newOpportunity = new Opportunity({ + title, + type: + getEnumValue(OpportunityType, opportunity.type) || + OpportunityType.REGULAR, + translationType: + getEnumValue(TranslatedIntoType, opportunity.translationType) || + TranslatedIntoType.NO_TRANSLATION, + info: opportunity.info || "", + infoConfidential: opportunity.infoConfidential || "", + numberVolunteers: Number(opportunity.numberVolunteers || 1), + createdAt: new Date(opportunity.timestamp), + updatedAt: new Date(opportunity.timestamp), + ...(accompanying?.id ? { accompanyingId: accompanying.id } : {}), + ...(notionRelation?.hostId + ? { agentId: notionRelation?.hostId } + : { agent: await getOrCreateAgent(opportunity.agent, dataSource) }), + deal, + }); + await opportunityRepository.save(newOpportunity); + + for (const [volunteerNid, payroll] of opportunity.volunteerNids) { + const [, error] = await tryCatch( + notionRelationRepository.save( + new NotionRelation({ + payroll, + hostNid: opportunity.nid, + hostId: newOpportunity.id, + hostType: EntityTableName.OPPORTUNITY, + tenantNid: volunteerNid, + tenantType: EntityTableName.VOLUNTEER, + }), + ), + ); + if (error) { + logger.warn( + `Seems like pair: ${opportunity.nid}-${volunteerNid} already exists.`, + ); + } + } + } catch (error) { + logger.info( + `Creation of opportunity ${opportunity?.title} rolled back due to error: ${(error as Error).message}`, + ); + } + } +} diff --git a/src/data/seeds/populate/types.ts b/src/data/seeds/populate/types.ts new file mode 100644 index 00000000..f1311ce0 --- /dev/null +++ b/src/data/seeds/populate/types.ts @@ -0,0 +1,114 @@ +import { + DocumentStatusType, + LangProficiency, + OpportunityType, + VolunteerStateType, +} from "need4deed-sdk"; +import { DealType } from "../../types"; + +export interface ProfileJSON { + info: string; + activities: string[]; + skills: string[]; + languages: [string, LangProficiency][]; +} +export interface TimeJSON { + timeslots: { + day: string; + daytime: string[]; + info: string; + start: string; + }[]; +} +export interface LocationJSON { + districts: string[]; +} +export interface DealJSON { + type: DealType; + postcode: string; + profile: ProfileJSON; + time: TimeJSON; + location: LocationJSON; +} +export interface AddressJSON { + postcode: number; + street?: string; +} +export interface PersonJSON { + firstName: string; + middleName: string; + lastName: string; + email: string; + phone: string; + address: AddressJSON; +} +export interface OrganizationJSON { + title: string; + phone: string; + email: string; + address: AddressJSON; + person: PersonJSON; +} +export interface _AgentJSON { + title: string; + page_id: string; + organization: OrganizationJSON; + person: PersonJSON; + postcode: string; +} +export interface VolunteerJSON { + nid: string; + timestamp: string; + status: VolunteerStateType; + statusEngagement: string; + accompanying: boolean; + statusCGC: DocumentStatusType; + statusVaccination: DocumentStatusType; + infoAbout: string; + infoExperience: string; + person: PersonJSON; + deal: DealJSON; +} +export interface AccompanyingJSON { + address: string; + name: string; + phone: string; + date: string; + languageToTranslate: string; +} +export interface OpportunityJSON { + status: string; + title: string; + nid: string; + timestamp: string; + type: OpportunityType; + translationType: string; + info: string; + numberVolunteers: string; + infoConfidential: string; + deal: DealJSON; + agent: _AgentJSON; + accompanying?: AccompanyingJSON; + volunteerNids: string[]; +} +export interface AgentJSON { + nid: string; + title: string; + about: string; + website: string; + type: string; + district: object; + trustLevel: string; + statusEngagement: string; + statusSearch: string; + languages: string; + services: string[]; + address: object; + postcodes: string[]; + phone: string; + status: string; + person: (PersonJSON & { role: string })[]; + operator: string; + opportunityNids: string[]; + accompanyingRelations: string[]; +} diff --git a/src/data/seeds/populate/volunteer.seed.ts b/src/data/seeds/populate/volunteer.seed.ts new file mode 100644 index 00000000..e490c42c --- /dev/null +++ b/src/data/seeds/populate/volunteer.seed.ts @@ -0,0 +1,86 @@ +import { EntityTableName, OpportunityVolunteerStatusType } from "need4deed-sdk"; +import { DataSource } from "typeorm"; +import { seedVolunteersFile } from "../../../config/constants"; +import logger from "../../../logger"; +import OpportunityVolunteer from "../../entity/m2m/opportunity-volunteer"; +import NotionRelation from "../../entity/notion-relation.entity"; +import Volunteer from "../../entity/volunteer/volunteer.entity"; +import { fetchJsonFromUrl, getRepository } from "../../utils"; +import { + createDeal, + getCount, + getDocumentStatus, + getEnumValue, + getOrCreatePerson, + getVolunteerState, +} from "../utils"; +import { VolunteerJSON } from "./types"; + +export async function seedVolunteers(dataSource: DataSource): Promise { + if (!dataSource) { + throw new Error("DataSource is not initialized."); + } + + const volunteerRepository = getRepository(dataSource, Volunteer); + + const count = await getCount(volunteerRepository); + if (count !== 0) { + logger.info("Skipping seeding volunteers."); + return; + } + + const volunteers = (await fetchJsonFromUrl( + seedVolunteersFile, + )) as VolunteerJSON[]; + + for (const volunteer of volunteers ?? []) { + try { + const person = await getOrCreatePerson(volunteer.person, dataSource); + + const deal = await createDeal(volunteer.deal, dataSource); + + const newVolunteer = new Volunteer({ + ...getVolunteerState(volunteer), + statusCGC: getDocumentStatus(volunteer.statusCGC), + statusVaccination: getDocumentStatus(volunteer.statusVaccination), + infoAbout: volunteer.infoAbout || "", + infoExperience: volunteer.infoExperience || "", + createdAt: new Date(volunteer.timestamp), + updatedAt: new Date(volunteer.timestamp), + person, + deal, + }); + await volunteerRepository.save(newVolunteer); + + const notionRelationRepository = getRepository( + dataSource, + NotionRelation, + ); + const relationsOpp = await notionRelationRepository.find({ + where: { + hostType: EntityTableName.OPPORTUNITY, + tenantType: EntityTableName.VOLUNTEER, + tenantNid: volunteer.nid, + }, + }); + + const opportunityVolunteerRepository = getRepository( + dataSource, + OpportunityVolunteer, + ); + for (const { payroll, hostId } of relationsOpp ?? []) { + await opportunityVolunteerRepository.save( + new OpportunityVolunteer({ + status: getEnumValue(OpportunityVolunteerStatusType, payroll), + opportunityId: hostId, + volunteerId: newVolunteer.id, + }), + ); + } + } catch (error) { + logger.info( + `Creation of volunteer ${volunteer?.person?.email} rolled back due to error: ${(error as Error).message}`, + ); + } + } +} diff --git a/src/data/seeds/seed.ts b/src/data/seeds/seed.ts index b9fa294e..0ba8b288 100644 --- a/src/data/seeds/seed.ts +++ b/src/data/seeds/seed.ts @@ -1,9 +1,9 @@ import { DataSource } from "typeorm"; import { check } from ".."; -import { seedAgents } from "./dev/agent.seed"; -import { devTime } from "./dev/dev-parsing"; -import { seedOpportunities } from "./dev/opportunity.seed"; -import { seedVolunteers } from "./dev/volunteer.seed"; +import { seedAgents } from "./populate/agent.seed"; +import { devTime } from "./populate/dev-parsing"; +import { seedOpportunities } from "./populate/opportunity.seed"; +import { seedVolunteers } from "./populate/volunteer.seed"; import { seedReference } from "./reference"; import { seedUser } from "./user.seed"; diff --git a/src/data/seeds/utils.ts b/src/data/seeds/utils.ts index b817e7cf..93b5228e 100644 --- a/src/data/seeds/utils.ts +++ b/src/data/seeds/utils.ts @@ -51,7 +51,7 @@ import { PersonJSON, TimeJSON, VolunteerJSON, -} from "./dev/types"; +} from "./populate/types"; const noGenderAvatarUrl = "all_genders_avatar.png"; From 66b4849e7d7cb5775fa099fdae5479538ebe1335 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 16:09:34 +0000 Subject: [PATCH 49/89] fix: exclude e2e tests from default vitest run E2e smoke tests require a globalSetup that seeds the DB (vitest.e2e.config.ts). Running them via yarn test (default config) caused auth failures because no test fixtures were seeded. Added src/test/e2e/** to the exclude list so they only run via yarn test:e2e. Preserved **/node_modules/** exclusion alongside it. Co-Authored-By: Claude Sonnet 4.6 --- vitest.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/vitest.config.ts b/vitest.config.ts index 41f580e6..c00cb9b8 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -7,6 +7,7 @@ export default defineConfig({ environment: "node", setupFiles: ["./src/test/setup.ts"], // Optional: for DB connection logic include: ["**/*.{test,spec}.ts"], + exclude: ["**/node_modules/**", "src/test/e2e/**"], env: { JWT_SECRET: "test-secret-only-for-vitest", NODE_ENV: "test", From 6ad4da5cbffd4946e8b005a8efb2161ec149cbde Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 19:53:18 +0000 Subject: [PATCH 50/89] feat: add dry-run mode to fastify.notify transports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Default to dry-run (log-only, no network calls) when NODE_ENV != "production". Override globally with NOTIFY_DRY_RUN or per-transport with NOTIFY_EMAIL_DRY_RUN / NOTIFY_SLACK_DRY_RUN. Also renames `positives` → exported `TRUTHY` Set in constants so the env-var truthiness check is defined once and shared. Co-Authored-By: Claude Sonnet 4.6 --- src/config/constants.ts | 18 ++++++++++------ src/server/plugins/notify.ts | 26 +++++++++++++++++++++++ src/services/notify/index.ts | 1 + src/services/notify/transports/dry-run.ts | 23 ++++++++++++++++++++ 4 files changed, 61 insertions(+), 7 deletions(-) create mode 100644 src/services/notify/transports/dry-run.ts diff --git a/src/config/constants.ts b/src/config/constants.ts index a206dac1..98d7a36a 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -2,7 +2,15 @@ import * as path from "path"; const publicFixturesFromHere = ["..", "..", "public", "data"]; -const positives = ["1", "YES", "Yes", "yes", "TRUE", "True", "true"]; +export const TRUTHY = new Set([ + "1", + "YES", + "Yes", + "yes", + "TRUE", + "True", + "true", +]); export const CDNBaseUrl = process.env.CDN_BASE_URL || "https://d2nwrdddg8skub.cloudfront.net"; @@ -145,12 +153,8 @@ export const isDev = process.env.NODE_ENV === "development"; export const isTest = process.env.NODE_ENV === "test"; export const isProd = process.env.NODE_ENV === "production"; export const isStaging = process.env.NODE_ENV === "staging"; -export const shouldTruncateAll = positives.includes( - process.env.TRUNCATE_ALL || "", -); -export const shouldRunMigrations = positives.includes( - process.env.RUN_MIGRATIONS || "", -); +export const shouldTruncateAll = TRUTHY.has(process.env.TRUNCATE_ALL || ""); +export const shouldRunMigrations = TRUTHY.has(process.env.RUN_MIGRATIONS || ""); export const nidsToken = process.env.NIDS_TOKEN || ""; export const authAccessTokenCookieName = "access"; diff --git a/src/server/plugins/notify.ts b/src/server/plugins/notify.ts index 3876cde9..2d60e668 100644 --- a/src/server/plugins/notify.ts +++ b/src/server/plugins/notify.ts @@ -1,11 +1,14 @@ import { FastifyInstance } from "fastify"; import fp from "fastify-plugin"; +import { isProd, TRUTHY } from "../../config/constants"; import OpportunityVolunteer from "../../data/entity/m2m/opportunity-volunteer"; import Opportunity from "../../data/entity/opportunity/opportunity.entity"; import User from "../../data/entity/user.entity"; import { BrevoEmailTransport, CommentTaggedInput, + DryRunEmailTransport, + DryRunSlackTransport, EmailTransport, sendCommentTagged, sendEmailAccompanyMatch, @@ -47,11 +50,34 @@ declare module "fastify" { } } +/** Resolve dry-run flag for a given transport key (e.g. "EMAIL", "SLACK"). + * Priority: per-transport env > global env > default (!isProd). */ +function isDryRun(transportKey: string): boolean { + const perTransport = process.env[`NOTIFY_${transportKey}_DRY_RUN`]; + if (perTransport !== undefined) { + return TRUTHY.has(perTransport); + } + + const global = process.env.NOTIFY_DRY_RUN; + if (global !== undefined) { + return TRUTHY.has(global); + } + + return !isProd; +} + function buildEmailTransport(): EmailTransport { + if (isDryRun("EMAIL")) { + return new DryRunEmailTransport(); + } return new BrevoEmailTransport(process.env.BREVO_API_KEY ?? ""); } function buildSlackTransport(): SlackTransport | undefined { + if (isDryRun("SLACK")) { + return new DryRunSlackTransport(); + } + const urls: Partial> = {}; if (process.env.SLACK_OPS_WEBHOOK_URL) { urls.ops = process.env.SLACK_OPS_WEBHOOK_URL; diff --git a/src/services/notify/index.ts b/src/services/notify/index.ts index 010f6d86..98be4a7d 100644 --- a/src/services/notify/index.ts +++ b/src/services/notify/index.ts @@ -2,6 +2,7 @@ export * from "./types"; export * from "./dispatch"; export * from "./transports/email-brevo"; export * from "./transports/slack-webhook"; +export * from "./transports/dry-run"; export * from "./events/email-verification"; export * from "./events/ops-alert"; export * from "./events/comment-tagged"; diff --git a/src/services/notify/transports/dry-run.ts b/src/services/notify/transports/dry-run.ts new file mode 100644 index 00000000..56b0e07d --- /dev/null +++ b/src/services/notify/transports/dry-run.ts @@ -0,0 +1,23 @@ +import logger from "../../../logger"; +import type { + EmailMessage, + EmailTransport, + SlackMessage, + SlackTransport, +} from "../types"; + +export class DryRunEmailTransport implements EmailTransport { + async send(msg: EmailMessage): Promise { + logger.info( + `[notify:dry-run] email suppressed — subject: "${msg.subject}"`, + ); + } +} + +export class DryRunSlackTransport implements SlackTransport { + async send(msg: SlackMessage): Promise { + logger.info( + `[notify:dry-run] slack suppressed — channel: ${msg.channel}, text: "${msg.text}"`, + ); + } +} From 6060306aa584fa3e29050def94a7ffb4c8d25e4a Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 19:58:16 +0000 Subject: [PATCH 51/89] refactor: remove env-gating from BrevoEmailTransport The dry-run layer now prevents BrevoEmailTransport from being used in dev/staging by default, making the early-return guard and BCC block redundant. The transport is now a pure sender with no environment awareness. Co-Authored-By: Claude Sonnet 4.6 --- src/services/notify/transports/email-brevo.ts | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/src/services/notify/transports/email-brevo.ts b/src/services/notify/transports/email-brevo.ts index 5553cca4..c7ecf9c8 100644 --- a/src/services/notify/transports/email-brevo.ts +++ b/src/services/notify/transports/email-brevo.ts @@ -1,5 +1,4 @@ -import { defaultFrom, isDev, isStaging } from "../../../config/constants"; -import logger from "../../../logger"; +import { defaultFrom } from "../../../config/constants"; import type { EmailMessage, EmailTransport } from "../types"; const BREVO_API_URL = "https://api.brevo.com/v3/smtp/email"; @@ -14,12 +13,6 @@ export class BrevoEmailTransport implements EmailTransport { constructor(private readonly apiKey: string) {} async send(msg: EmailMessage): Promise { - if (isDev || isStaging) { - logger.info( - `Brevo email transport (dev/staging) sending to ${msg.to}: ${msg.subject}`, - ); - return; - } if (!this.apiKey) { throw new Error("BREVO_API_KEY is not configured"); } @@ -36,14 +29,6 @@ export class BrevoEmailTransport implements EmailTransport { to: (Array.isArray(msg.to) ? msg.to : [msg.to]).map((email) => ({ email, })), - ...(isDev || isStaging - ? { - bcc: [ - { email: "dev@need4deed.org" }, - { email: "info@need4deed.org" }, - ], - } - : {}), // for monitoring/logging; not user-facing subject: msg.subject, ...(msg.html ? { htmlContent: msg.html } : {}), ...(msg.text ? { textContent: msg.text } : {}), From 925be36e2fbb75d37cf11c90f8b2f2c398f91b9a Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Thu, 2 Jul 2026 20:09:43 +0000 Subject: [PATCH 52/89] chore: wire NOTIFY_EMAIL_DRY_RUN and NOTIFY_SLACK_DRY_RUN into Docker config Dockerfile: ARG/ENV defaults to false (production-safe image default). docker-compose: both set to true for safe local dev. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 4 ++++ docker-compose.yaml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 48625742..c4fd5452 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,8 @@ ARG CDN_BASE_URL ARG NIDS_TOKEN ARG RUN_MIGRATIONS=${RUN_MIGRATIONS:-true} ARG GIT_COMMIT_SHA=${GIT_COMMIT_SHA:-unknown} +ARG NOTIFY_EMAIL_DRY_RUN=false +ARG NOTIFY_SLACK_DRY_RUN=false ENV NODE_ENV=${NODE_ENV} ENV PORT=8000 @@ -21,6 +23,8 @@ ENV CDN_BASE_URL=${CDN_BASE_URL} ENV NIDS_TOKEN=${NIDS_TOKEN} ENV RUN_MIGRATIONS=${RUN_MIGRATIONS} ENV GIT_COMMIT_SHA=${GIT_COMMIT_SHA} +ENV NOTIFY_EMAIL_DRY_RUN=${NOTIFY_EMAIL_DRY_RUN} +ENV NOTIFY_SLACK_DRY_RUN=${NOTIFY_SLACK_DRY_RUN} WORKDIR /app RUN apk update && apk add --no-cache curl dumb-init diff --git a/docker-compose.yaml b/docker-compose.yaml index 8fa93b0a..b260b850 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -15,6 +15,8 @@ services: - NODE_ENV=${NODE_ENV} - RUN_MIGRATIONS=${RUN_MIGRATIONS:-true} - PORT=8000 + - NOTIFY_EMAIL_DRY_RUN=true + - NOTIFY_SLACK_DRY_RUN=true - DB_HOST=db - DB_PORT=5432 - DB_USERNAME=postgres From 35bd0f143633315466f088668623ca98b7655b5e Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Mon, 6 Jul 2026 09:54:57 +0000 Subject: [PATCH 53/89] feat(post): add Post entity, feed endpoints and migration (#680) GET /post with role-based filtering, POST /post, PATCH /post/:id and DELETE /post/:id. Post supports tagged persons and linked opportunities via ManyToMany junctions. SDK upgraded to 0.0.118. Co-Authored-By: Claude Sonnet 4.6 --- package.json | 2 +- src/data/data-source.ts | 2 + src/data/entity/post.entity.ts | 65 ++++ .../1783331549694-add-post-entity.ts | 83 +++++ src/server/index.ts | 2 + src/server/plugins/typeorm.ts | 2 + src/server/routes/post.routes.ts | 317 ++++++++++++++++++ src/server/schema/sdk-types.json | 75 +++++ src/server/types/enums.ts | 1 + src/server/types/fastify.d.ts | 2 + src/services/dto/dto-post.ts | 25 ++ yarn.lock | 8 +- 12 files changed, 579 insertions(+), 5 deletions(-) create mode 100644 src/data/entity/post.entity.ts create mode 100644 src/data/migrations/1783331549694-add-post-entity.ts create mode 100644 src/server/routes/post.routes.ts create mode 100644 src/services/dto/dto-post.ts diff --git a/package.json b/package.json index f262eb47..049bd24c 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.117", + "need4deed-sdk": "0.0.118", "node-cron": "^4.5.0", "pg": "^8.14.1", "pino": "^10.3.1", diff --git a/src/data/data-source.ts b/src/data/data-source.ts index e476ff09..7d8e1f18 100644 --- a/src/data/data-source.ts +++ b/src/data/data-source.ts @@ -33,6 +33,7 @@ import Opportunity from "./entity/opportunity/opportunity.entity"; import Option from "./entity/option.entity"; import Organization from "./entity/organization.entity"; import Person from "./entity/person.entity"; +import Post from "./entity/post.entity"; import Activity from "./entity/profile/activity.entity"; import Category from "./entity/profile/category.entity"; import Language from "./entity/profile/language.entity"; @@ -91,6 +92,7 @@ export const dataSource = new DataSource({ OpportunityVolunteer, Organization, Person, + Post, Postcode, Option, Skill, diff --git a/src/data/entity/post.entity.ts b/src/data/entity/post.entity.ts new file mode 100644 index 00000000..f8301c92 --- /dev/null +++ b/src/data/entity/post.entity.ts @@ -0,0 +1,65 @@ +import { + Column, + CreateDateColumn, + Entity, + JoinColumn, + JoinTable, + ManyToMany, + ManyToOne, + PrimaryGeneratedColumn, + UpdateDateColumn, +} from "typeorm"; +import Agent from "./opportunity/agent.entity"; +import Opportunity from "./opportunity/opportunity.entity"; +import Person from "./person.entity"; + +@Entity() +export default class Post { + constructor(post?: Partial) { + if (post) { + Object.assign(this, post); + } + } + + @PrimaryGeneratedColumn() + id: number; + + @Column({ type: "text" }) + text: string; + + @ManyToOne(() => Person, { nullable: false, onDelete: "CASCADE" }) + @JoinColumn({ name: "author_id" }) + author: Person; + + @Column() + authorId: number; + + @ManyToOne(() => Agent, { nullable: true, onDelete: "SET NULL" }) + @JoinColumn({ name: "agent_id" }) + agent: Agent | null; + + @Column({ nullable: true }) + agentId: number | null; + + @ManyToMany(() => Person) + @JoinTable({ + name: "post_tagged_person", + joinColumn: { name: "post_id" }, + inverseJoinColumn: { name: "person_id" }, + }) + taggedPersons: Person[]; + + @ManyToMany(() => Opportunity) + @JoinTable({ + name: "post_linked_opportunity", + joinColumn: { name: "post_id" }, + inverseJoinColumn: { name: "opportunity_id" }, + }) + linkedOpportunities: Opportunity[]; + + @CreateDateColumn() + createdAt: Date; + + @UpdateDateColumn() + updatedAt: Date; +} diff --git a/src/data/migrations/1783331549694-add-post-entity.ts b/src/data/migrations/1783331549694-add-post-entity.ts new file mode 100644 index 00000000..216e140a --- /dev/null +++ b/src/data/migrations/1783331549694-add-post-entity.ts @@ -0,0 +1,83 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class AddPostEntity1783331549694 implements MigrationInterface { + name = "AddPostEntity1783331549694"; + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `CREATE TABLE "post" ("id" SERIAL NOT NULL, "text" text NOT NULL, "author_id" integer NOT NULL, "agent_id" integer, "created_at" TIMESTAMP NOT NULL DEFAULT now(), "updated_at" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_be5fda3aac270b134ff9c21cdee" PRIMARY KEY ("id"))`, + ); + await queryRunner.query( + `CREATE TABLE "post_tagged_person" ("post_id" integer NOT NULL, "person_id" integer NOT NULL, CONSTRAINT "PK_31a9cc0d2537296ff83168671d9" PRIMARY KEY ("post_id", "person_id"))`, + ); + await queryRunner.query( + `CREATE INDEX "IDX_5fc08b9a9f86f71a96b768b8bc" ON "post_tagged_person" ("post_id") `, + ); + await queryRunner.query( + `CREATE INDEX "IDX_baecb9a8491881fbe3952f52e5" ON "post_tagged_person" ("person_id") `, + ); + await queryRunner.query( + `CREATE TABLE "post_linked_opportunity" ("post_id" integer NOT NULL, "opportunity_id" integer NOT NULL, CONSTRAINT "PK_26a181e794cb00bd13d122a88c6" PRIMARY KEY ("post_id", "opportunity_id"))`, + ); + await queryRunner.query( + `CREATE INDEX "IDX_2a85fab36a4231966953a20f4d" ON "post_linked_opportunity" ("post_id") `, + ); + await queryRunner.query( + `CREATE INDEX "IDX_0c6a8cd35d93d57b8b7821ea3a" ON "post_linked_opportunity" ("opportunity_id") `, + ); + await queryRunner.query( + `ALTER TABLE "post" ADD CONSTRAINT "FK_2f1a9ca8908fc8168bc18437f62" FOREIGN KEY ("author_id") REFERENCES "person"("id") ON DELETE CASCADE ON UPDATE NO ACTION`, + ); + await queryRunner.query( + `ALTER TABLE "post" ADD CONSTRAINT "FK_60618b67a1e1043df6380caa22f" FOREIGN KEY ("agent_id") REFERENCES "agent"("id") ON DELETE SET NULL ON UPDATE NO ACTION`, + ); + await queryRunner.query( + `ALTER TABLE "post_tagged_person" ADD CONSTRAINT "FK_5fc08b9a9f86f71a96b768b8bc1" FOREIGN KEY ("post_id") REFERENCES "post"("id") ON DELETE CASCADE ON UPDATE CASCADE`, + ); + await queryRunner.query( + `ALTER TABLE "post_tagged_person" ADD CONSTRAINT "FK_baecb9a8491881fbe3952f52e54" FOREIGN KEY ("person_id") REFERENCES "person"("id") ON DELETE CASCADE ON UPDATE CASCADE`, + ); + await queryRunner.query( + `ALTER TABLE "post_linked_opportunity" ADD CONSTRAINT "FK_2a85fab36a4231966953a20f4db" FOREIGN KEY ("post_id") REFERENCES "post"("id") ON DELETE CASCADE ON UPDATE CASCADE`, + ); + await queryRunner.query( + `ALTER TABLE "post_linked_opportunity" ADD CONSTRAINT "FK_0c6a8cd35d93d57b8b7821ea3a1" FOREIGN KEY ("opportunity_id") REFERENCES "opportunity"("id") ON DELETE CASCADE ON UPDATE CASCADE`, + ); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "post_linked_opportunity" DROP CONSTRAINT "FK_0c6a8cd35d93d57b8b7821ea3a1"`, + ); + await queryRunner.query( + `ALTER TABLE "post_linked_opportunity" DROP CONSTRAINT "FK_2a85fab36a4231966953a20f4db"`, + ); + await queryRunner.query( + `ALTER TABLE "post_tagged_person" DROP CONSTRAINT "FK_baecb9a8491881fbe3952f52e54"`, + ); + await queryRunner.query( + `ALTER TABLE "post_tagged_person" DROP CONSTRAINT "FK_5fc08b9a9f86f71a96b768b8bc1"`, + ); + await queryRunner.query( + `ALTER TABLE "post" DROP CONSTRAINT "FK_60618b67a1e1043df6380caa22f"`, + ); + await queryRunner.query( + `ALTER TABLE "post" DROP CONSTRAINT "FK_2f1a9ca8908fc8168bc18437f62"`, + ); + await queryRunner.query( + `DROP INDEX "public"."IDX_0c6a8cd35d93d57b8b7821ea3a"`, + ); + await queryRunner.query( + `DROP INDEX "public"."IDX_2a85fab36a4231966953a20f4d"`, + ); + await queryRunner.query(`DROP TABLE "post_linked_opportunity"`); + await queryRunner.query( + `DROP INDEX "public"."IDX_baecb9a8491881fbe3952f52e5"`, + ); + await queryRunner.query( + `DROP INDEX "public"."IDX_5fc08b9a9f86f71a96b768b8bc"`, + ); + await queryRunner.query(`DROP TABLE "post_tagged_person"`); + await queryRunner.query(`DROP TABLE "post"`); + } +} diff --git a/src/server/index.ts b/src/server/index.ts index e6b0fa5e..0dd1f9b1 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -25,6 +25,7 @@ import opportunityRoutes from "./routes/opportunity/opportunity.routes"; import optionRoutes from "./routes/option"; import organizationRoutes from "./routes/organization.routes"; import personRoutes from "./routes/person.routes"; +import postRoutes from "./routes/post.routes"; import trustedDomainRoutes from "./routes/trusted-domain.routes"; import userRoutes from "./routes/user"; import volunteerRoutes from "./routes/volunteer/volunteer.routes"; @@ -157,6 +158,7 @@ export async function createServer(): Promise { await fastifyInstance.register(authRoutes, { prefix: RoutePrefix.AUTH }); await fastifyInstance.register(userRoutes, { prefix: RoutePrefix.USER }); await fastifyInstance.register(personRoutes, { prefix: RoutePrefix.PERSON }); + await fastifyInstance.register(postRoutes, { prefix: RoutePrefix.POST }); await fastifyInstance.register(volunteerRoutes, { prefix: RoutePrefix.VOLUNTEER, }); diff --git a/src/server/plugins/typeorm.ts b/src/server/plugins/typeorm.ts index 643d48c6..997bd92d 100644 --- a/src/server/plugins/typeorm.ts +++ b/src/server/plugins/typeorm.ts @@ -16,6 +16,7 @@ import Opportunity from "../../data/entity/opportunity/opportunity.entity"; import Option from "../../data/entity/option.entity"; import Organization from "../../data/entity/organization.entity"; import Person from "../../data/entity/person.entity"; +import Post from "../../data/entity/post.entity"; import Language from "../../data/entity/profile/language.entity"; import TrustedDomain from "../../data/entity/trusted-domain.entity"; import User from "../../data/entity/user.entity"; @@ -52,6 +53,7 @@ const typeormPlugin: FastifyPluginAsync = async (fastify) => { agentPersonRepository: dataSource.getRepository(AgentPerson), organizationRepository: dataSource.getRepository(Organization), postcodeRepository: dataSource.getRepository(Postcode), + postRepository: dataSource.getRepository(Post), trustedDomainRepository: dataSource.getRepository(TrustedDomain), }); diff --git a/src/server/routes/post.routes.ts b/src/server/routes/post.routes.ts new file mode 100644 index 00000000..5564672f --- /dev/null +++ b/src/server/routes/post.routes.ts @@ -0,0 +1,317 @@ +import { FastifyInstance, FastifyPluginOptions } from "fastify"; +import { + AgentMembershipStatus, + AgentRoleType, + ApiPostPatch, + ApiPostPost, + UserRole, +} from "need4deed-sdk"; +import { Brackets, In } from "typeorm"; +import { + BadRequestError, + NotFoundError, + UnauthorizedError, +} from "../../config/error/fastify"; +import { dtoPost } from "../../services/dto/dto-post"; +import { idParamSchema, responseSchema } from "../schema"; +import { getSkipTake } from "../utils"; + +const postListQuerySchema = { + type: "object", + properties: { + page: { type: "integer", minimum: 1 }, + limit: { type: "integer", minimum: 1, maximum: 120 }, + }, + additionalProperties: false, +}; + +export default async function postRoutes( + fastify: FastifyInstance, + _options: FastifyPluginOptions, +) { + // + // GET /post + // + fastify.get<{ Querystring: { page?: number; limit?: number } }>( + "/", + { + schema: { + querystring: postListQuerySchema, + response: responseSchema({ + dataSchemaRef: "ApiPostGet#", + isArray: true, + count: true, + }), + }, + onRequest: [fastify.authenticate()], + }, + async (request, reply) => { + const { role, id: userId } = request.user; + const [skip, take] = getSkipTake(request.query); + + const qb = fastify.db.postRepository + .createQueryBuilder("post") + .leftJoinAndSelect("post.author", "author") + .leftJoinAndSelect("post.taggedPersons", "taggedPerson") + .leftJoinAndSelect("post.linkedOpportunities", "opportunity") + .orderBy("post.createdAt", "DESC") + .skip(skip) + .take(take); + + if (role === UserRole.ADMIN || role === UserRole.COORDINATOR) { + // no filter — all posts visible + } else if (role === UserRole.AGENT) { + const user = await fastify.db.userRepository.findOne({ + where: { id: userId }, + select: ["personId"], + }); + const membership = user?.personId + ? ((await fastify.db.agentPersonRepository.findOne({ + where: { + personId: user.personId, + status: AgentMembershipStatus.ACTIVE, + role: AgentRoleType.VOLUNTEER_COORDINATOR, + }, + order: { id: "ASC" }, + })) ?? + (await fastify.db.agentPersonRepository.findOne({ + where: { + personId: user.personId, + status: AgentMembershipStatus.ACTIVE, + }, + order: { id: "ASC" }, + }))) + : null; + + if (!membership) { + return reply + .status(200) + .send({ message: "Posts.", data: [], count: 0 }); + } + qb.where("post.agentId = :agentId", { agentId: membership.agentId }); + } else if (role === UserRole.VOLUNTEER) { + const user = await fastify.db.userRepository.findOne({ + where: { id: userId }, + select: ["personId"], + }); + if (!user?.personId) { + return reply + .status(200) + .send({ message: "Posts.", data: [], count: 0 }); + } + + const memberships = await fastify.db.agentPersonRepository.find({ + where: { + personId: user.personId, + status: AgentMembershipStatus.ACTIVE, + }, + select: ["agentId"], + }); + const agentIds = memberships.map((m) => m.agentId); + + qb.where( + new Brackets((sub) => { + sub.where("taggedPerson.id = :personId", { + personId: user.personId, + }); + if (agentIds.length > 0) { + sub.orWhere("post.agentId IN (:...agentIds)", { agentIds }); + } + }), + ); + } else { + return reply + .status(200) + .send({ message: "Posts.", data: [], count: 0 }); + } + + const [posts, count] = await qb.getManyAndCount(); + return reply.status(200).send({ + message: "Posts.", + data: posts.map(dtoPost), + count, + }); + }, + ); + + // + // POST /post + // + fastify.post<{ Body: ApiPostPost }>( + "/", + { + schema: { + body: { $ref: "ApiPostPost#" }, + response: responseSchema({ + dataSchemaRef: "ApiPostGet#", + statusCode: 201, + }), + }, + onRequest: [fastify.authenticate()], + }, + async (request, reply) => { + const { id: userId, role } = request.user; + const { + text, + taggedPersonIds = [], + linkedOpportunityIds = [], + } = request.body; + + const user = await fastify.db.userRepository.findOne({ + where: { id: userId }, + select: ["personId"], + }); + if (!user?.personId) + {throw new BadRequestError("No person linked to this user.");} + + let agentId: number | null = null; + if (role === UserRole.AGENT) { + const membership = + (await fastify.db.agentPersonRepository.findOne({ + where: { + personId: user.personId, + status: AgentMembershipStatus.ACTIVE, + role: AgentRoleType.VOLUNTEER_COORDINATOR, + }, + order: { id: "ASC" }, + })) ?? + (await fastify.db.agentPersonRepository.findOne({ + where: { + personId: user.personId, + status: AgentMembershipStatus.ACTIVE, + }, + order: { id: "ASC" }, + })); + agentId = membership?.agentId ?? null; + } + + const taggedPersons = taggedPersonIds.length + ? await fastify.db.personRepository.findBy({ id: In(taggedPersonIds) }) + : []; + const linkedOpportunities = linkedOpportunityIds.length + ? await fastify.db.opportunityRepository.findBy({ + id: In(linkedOpportunityIds), + }) + : []; + + const post = fastify.db.postRepository.create({ + text, + authorId: user.personId, + agentId, + taggedPersons, + linkedOpportunities, + }); + + const saved = await fastify.db.postRepository.save(post); + + const full = await fastify.db.postRepository.findOne({ + where: { id: saved.id }, + relations: ["author", "taggedPersons", "linkedOpportunities"], + }); + + return reply + .status(201) + .send({ message: "Post created.", data: dtoPost(full!) }); + }, + ); + + // + // PATCH /post/:id + // + fastify.patch<{ Params: { id: string }; Body: ApiPostPatch }>( + "/:id", + { + schema: { + params: idParamSchema, + body: { $ref: "ApiPostPatch#" }, + response: responseSchema("ApiPostGet#"), + }, + onRequest: [fastify.authenticate()], + }, + async (request, reply) => { + const id = Number(request.params.id); + const { id: userId, role } = request.user; + + const post = await fastify.db.postRepository.findOne({ + where: { id }, + relations: ["author", "taggedPersons", "linkedOpportunities"], + }); + if (!post) {throw new NotFoundError(`Post ${id} not found.`);} + + const user = await fastify.db.userRepository.findOne({ + where: { id: userId }, + select: ["personId"], + }); + + const isAuthor = user?.personId === post.authorId; + const isPrivileged = + role === UserRole.ADMIN || role === UserRole.COORDINATOR; + if (!isAuthor && !isPrivileged) { + throw new UnauthorizedError( + "Only the author, coordinators, or admins can edit posts.", + ); + } + + const { text, taggedPersonIds, linkedOpportunityIds } = request.body; + + if (text !== null && text !== undefined) {post.text = text;} + if (taggedPersonIds !== null && taggedPersonIds !== undefined) { + post.taggedPersons = taggedPersonIds.length + ? await fastify.db.personRepository.findBy({ + id: In(taggedPersonIds), + }) + : []; + } + if (linkedOpportunityIds !== null && linkedOpportunityIds !== undefined) { + post.linkedOpportunities = linkedOpportunityIds.length + ? await fastify.db.opportunityRepository.findBy({ + id: In(linkedOpportunityIds), + }) + : []; + } + + const updated = await fastify.db.postRepository.save(post); + return reply + .status(200) + .send({ message: `Post ${id} updated.`, data: dtoPost(updated) }); + }, + ); + + // + // DELETE /post/:id + // + fastify.delete<{ Params: { id: string } }>( + "/:id", + { + schema: { + params: idParamSchema, + response: responseSchema({ statusCode: 204 }), + }, + onRequest: [fastify.authenticate()], + }, + async (request, reply) => { + const id = Number(request.params.id); + const { id: userId, role } = request.user; + + const post = await fastify.db.postRepository.findOne({ where: { id } }); + if (!post) {throw new NotFoundError(`Post ${id} not found.`);} + + const user = await fastify.db.userRepository.findOne({ + where: { id: userId }, + select: ["personId"], + }); + + const isAuthor = user?.personId === post.authorId; + const isPrivileged = + role === UserRole.ADMIN || role === UserRole.COORDINATOR; + if (!isAuthor && !isPrivileged) { + throw new UnauthorizedError( + "Only the author, coordinators, or admins can delete posts.", + ); + } + + await fastify.db.postRepository.remove(post); + return reply.status(204).send(); + }, + ); +} diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index 8cb42fd3..8be57a53 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -1571,6 +1571,81 @@ } }, "required": ["id", "readAt"] + }, + "ApiPostPerson": { + "$id": "ApiPostPerson", + "type": "object", + "properties": { + "id": { "type": "integer" }, + "fullName": { "type": "string" }, + "avatarUrl": { "type": "string" } + }, + "required": ["id", "fullName"] + }, + "ApiPostLinkedOpportunity": { + "$id": "ApiPostLinkedOpportunity", + "type": "object", + "properties": { + "id": { "type": "integer" }, + "title": { "type": "string" } + }, + "required": ["id", "title"] + }, + "ApiPostGet": { + "$id": "ApiPostGet", + "type": "object", + "properties": { + "id": { "type": "integer" }, + "text": { "type": "string" }, + "author": { "$ref": "ApiPostPerson#" }, + "agentId": { "type": ["integer", "null"] }, + "taggedPersons": { + "type": "array", + "items": { "$ref": "ApiPostPerson#" } + }, + "linkedOpportunities": { + "type": "array", + "items": { "$ref": "ApiPostLinkedOpportunity#" } + }, + "createdAt": { "type": "string", "format": "date-time" } + }, + "required": [ + "id", + "text", + "author", + "agentId", + "taggedPersons", + "linkedOpportunities", + "createdAt" + ] + }, + "ApiPostPost": { + "$id": "ApiPostPost", + "type": "object", + "properties": { + "text": { "type": "string", "minLength": 1 }, + "taggedPersonIds": { "type": "array", "items": { "type": "integer" } }, + "linkedOpportunityIds": { + "type": "array", + "items": { "type": "integer" } + } + }, + "required": ["text"] + }, + "ApiPostPatch": { + "$id": "ApiPostPatch", + "type": "object", + "properties": { + "text": { "type": ["string", "null"] }, + "taggedPersonIds": { + "type": ["array", "null"], + "items": { "type": "integer" } + }, + "linkedOpportunityIds": { + "type": ["array", "null"], + "items": { "type": "integer" } + } + } } } } diff --git a/src/server/types/enums.ts b/src/server/types/enums.ts index 95f8c4c5..d3fc98ae 100644 --- a/src/server/types/enums.ts +++ b/src/server/types/enums.ts @@ -18,6 +18,7 @@ export const RoutePrefix = { ORGANIZATION: "/organization", OPTION: "/option", PERSON: "/person", + POST: "/post", REFRESH: "/refresh", REQUEST_RESET: "/request-reset", RESET_PASSWORD: "/password-reset", diff --git a/src/server/types/fastify.d.ts b/src/server/types/fastify.d.ts index 989ddd69..4fab61a2 100644 --- a/src/server/types/fastify.d.ts +++ b/src/server/types/fastify.d.ts @@ -18,6 +18,7 @@ import Opportunity from "../../data/entity/opportunity/opportunity.entity"; import Option from "../../data/entity/option.entity"; import Organization from "../../data/entity/organization.entity"; import Person from "../../data/entity/person.entity"; +import Post from "../../data/entity/post.entity"; import Language from "../../data/entity/profile/language.entity"; import TrustedDomain from "../../data/entity/trusted-domain.entity"; import User from "../../data/entity/user.entity"; @@ -45,6 +46,7 @@ declare module "fastify" { agentPersonRepository: Repository; organizationRepository: Repository; postcodeRepository: Repository; + postRepository: Repository; trustedDomainRepository: Repository; }; jwt: JWT; diff --git a/src/services/dto/dto-post.ts b/src/services/dto/dto-post.ts new file mode 100644 index 00000000..99e6e442 --- /dev/null +++ b/src/services/dto/dto-post.ts @@ -0,0 +1,25 @@ +import { ApiPostGet } from "need4deed-sdk"; +import Post from "../../data/entity/post.entity"; + +export function dtoPost(post: Post): ApiPostGet { + return { + id: post.id, + text: post.text, + author: { + id: post.author.id, + fullName: post.author.name, + avatarUrl: post.author.avatarUrl, + }, + agentId: post.agentId, + taggedPersons: (post.taggedPersons ?? []).map((p) => ({ + id: p.id, + fullName: p.name, + avatarUrl: p.avatarUrl, + })), + linkedOpportunities: (post.linkedOpportunities ?? []).map((o) => ({ + id: o.id, + title: o.title, + })), + createdAt: post.createdAt, + }; +} diff --git a/yarn.lock b/yarn.lock index 5f4b4925..f5da039c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2942,10 +2942,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.117: - version "0.0.117" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.117.tgz#734ec1b168c6694dde1f5087bb42516a4cbb7232" - integrity sha512-3j5vIizFeH4bMEhqcPpF1O3A7PtXG8z6IaQVbIJR0l8HjDWeuP+dbnmKQcDkbzUtImvxnOnSPcMXIp9tXy0C5w== +need4deed-sdk@0.0.118: + version "0.0.118" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.118.tgz#5b2ae789c04acb87d0bb3af5770bc05d9a50716d" + integrity sha512-DalPX4Gbq7aW9r8hQ4zJRnJYhPFo5iTb9dKnKIqcyov4VP5ipsNh4KZEjjqvYp1uQZ2M6Wrm+30Un50nEFAcbA== no-case@^3.0.4: version "3.0.4" From bc99866ab523bd6d0f1a9aab7b6db86aee0a92f4 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Mon, 6 Jul 2026 10:33:39 +0000 Subject: [PATCH 54/89] fix(post): correct m2m table names and self-auth check Junction tables renamed to post_person and post_opportunity per convention. PATCH/DELETE now use request.authUser.personId instead of a redundant DB lookup to check authorship. Co-Authored-By: Claude Sonnet 4.6 --- src/data/entity/post.entity.ts | 4 +- .../1783331549694-add-post-entity.ts | 83 ------------------- .../1783333982288-add-post-entity.ts | 67 +++++++++++++++ src/server/routes/post.routes.ts | 35 ++++---- 4 files changed, 85 insertions(+), 104 deletions(-) delete mode 100644 src/data/migrations/1783331549694-add-post-entity.ts create mode 100644 src/data/migrations/1783333982288-add-post-entity.ts diff --git a/src/data/entity/post.entity.ts b/src/data/entity/post.entity.ts index f8301c92..e7c0794f 100644 --- a/src/data/entity/post.entity.ts +++ b/src/data/entity/post.entity.ts @@ -43,7 +43,7 @@ export default class Post { @ManyToMany(() => Person) @JoinTable({ - name: "post_tagged_person", + name: "post_person", joinColumn: { name: "post_id" }, inverseJoinColumn: { name: "person_id" }, }) @@ -51,7 +51,7 @@ export default class Post { @ManyToMany(() => Opportunity) @JoinTable({ - name: "post_linked_opportunity", + name: "post_opportunity", joinColumn: { name: "post_id" }, inverseJoinColumn: { name: "opportunity_id" }, }) diff --git a/src/data/migrations/1783331549694-add-post-entity.ts b/src/data/migrations/1783331549694-add-post-entity.ts deleted file mode 100644 index 216e140a..00000000 --- a/src/data/migrations/1783331549694-add-post-entity.ts +++ /dev/null @@ -1,83 +0,0 @@ -import { MigrationInterface, QueryRunner } from "typeorm"; - -export class AddPostEntity1783331549694 implements MigrationInterface { - name = "AddPostEntity1783331549694"; - - public async up(queryRunner: QueryRunner): Promise { - await queryRunner.query( - `CREATE TABLE "post" ("id" SERIAL NOT NULL, "text" text NOT NULL, "author_id" integer NOT NULL, "agent_id" integer, "created_at" TIMESTAMP NOT NULL DEFAULT now(), "updated_at" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_be5fda3aac270b134ff9c21cdee" PRIMARY KEY ("id"))`, - ); - await queryRunner.query( - `CREATE TABLE "post_tagged_person" ("post_id" integer NOT NULL, "person_id" integer NOT NULL, CONSTRAINT "PK_31a9cc0d2537296ff83168671d9" PRIMARY KEY ("post_id", "person_id"))`, - ); - await queryRunner.query( - `CREATE INDEX "IDX_5fc08b9a9f86f71a96b768b8bc" ON "post_tagged_person" ("post_id") `, - ); - await queryRunner.query( - `CREATE INDEX "IDX_baecb9a8491881fbe3952f52e5" ON "post_tagged_person" ("person_id") `, - ); - await queryRunner.query( - `CREATE TABLE "post_linked_opportunity" ("post_id" integer NOT NULL, "opportunity_id" integer NOT NULL, CONSTRAINT "PK_26a181e794cb00bd13d122a88c6" PRIMARY KEY ("post_id", "opportunity_id"))`, - ); - await queryRunner.query( - `CREATE INDEX "IDX_2a85fab36a4231966953a20f4d" ON "post_linked_opportunity" ("post_id") `, - ); - await queryRunner.query( - `CREATE INDEX "IDX_0c6a8cd35d93d57b8b7821ea3a" ON "post_linked_opportunity" ("opportunity_id") `, - ); - await queryRunner.query( - `ALTER TABLE "post" ADD CONSTRAINT "FK_2f1a9ca8908fc8168bc18437f62" FOREIGN KEY ("author_id") REFERENCES "person"("id") ON DELETE CASCADE ON UPDATE NO ACTION`, - ); - await queryRunner.query( - `ALTER TABLE "post" ADD CONSTRAINT "FK_60618b67a1e1043df6380caa22f" FOREIGN KEY ("agent_id") REFERENCES "agent"("id") ON DELETE SET NULL ON UPDATE NO ACTION`, - ); - await queryRunner.query( - `ALTER TABLE "post_tagged_person" ADD CONSTRAINT "FK_5fc08b9a9f86f71a96b768b8bc1" FOREIGN KEY ("post_id") REFERENCES "post"("id") ON DELETE CASCADE ON UPDATE CASCADE`, - ); - await queryRunner.query( - `ALTER TABLE "post_tagged_person" ADD CONSTRAINT "FK_baecb9a8491881fbe3952f52e54" FOREIGN KEY ("person_id") REFERENCES "person"("id") ON DELETE CASCADE ON UPDATE CASCADE`, - ); - await queryRunner.query( - `ALTER TABLE "post_linked_opportunity" ADD CONSTRAINT "FK_2a85fab36a4231966953a20f4db" FOREIGN KEY ("post_id") REFERENCES "post"("id") ON DELETE CASCADE ON UPDATE CASCADE`, - ); - await queryRunner.query( - `ALTER TABLE "post_linked_opportunity" ADD CONSTRAINT "FK_0c6a8cd35d93d57b8b7821ea3a1" FOREIGN KEY ("opportunity_id") REFERENCES "opportunity"("id") ON DELETE CASCADE ON UPDATE CASCADE`, - ); - } - - public async down(queryRunner: QueryRunner): Promise { - await queryRunner.query( - `ALTER TABLE "post_linked_opportunity" DROP CONSTRAINT "FK_0c6a8cd35d93d57b8b7821ea3a1"`, - ); - await queryRunner.query( - `ALTER TABLE "post_linked_opportunity" DROP CONSTRAINT "FK_2a85fab36a4231966953a20f4db"`, - ); - await queryRunner.query( - `ALTER TABLE "post_tagged_person" DROP CONSTRAINT "FK_baecb9a8491881fbe3952f52e54"`, - ); - await queryRunner.query( - `ALTER TABLE "post_tagged_person" DROP CONSTRAINT "FK_5fc08b9a9f86f71a96b768b8bc1"`, - ); - await queryRunner.query( - `ALTER TABLE "post" DROP CONSTRAINT "FK_60618b67a1e1043df6380caa22f"`, - ); - await queryRunner.query( - `ALTER TABLE "post" DROP CONSTRAINT "FK_2f1a9ca8908fc8168bc18437f62"`, - ); - await queryRunner.query( - `DROP INDEX "public"."IDX_0c6a8cd35d93d57b8b7821ea3a"`, - ); - await queryRunner.query( - `DROP INDEX "public"."IDX_2a85fab36a4231966953a20f4d"`, - ); - await queryRunner.query(`DROP TABLE "post_linked_opportunity"`); - await queryRunner.query( - `DROP INDEX "public"."IDX_baecb9a8491881fbe3952f52e5"`, - ); - await queryRunner.query( - `DROP INDEX "public"."IDX_5fc08b9a9f86f71a96b768b8bc"`, - ); - await queryRunner.query(`DROP TABLE "post_tagged_person"`); - await queryRunner.query(`DROP TABLE "post"`); - } -} diff --git a/src/data/migrations/1783333982288-add-post-entity.ts b/src/data/migrations/1783333982288-add-post-entity.ts new file mode 100644 index 00000000..0ad8109c --- /dev/null +++ b/src/data/migrations/1783333982288-add-post-entity.ts @@ -0,0 +1,67 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class AddPostEntity1783333982288 implements MigrationInterface { + name = "AddPostEntity1783333982288"; + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `CREATE TABLE "post_person" ("post_id" integer NOT NULL, "person_id" integer NOT NULL, CONSTRAINT "PK_2752a498efcea4ce067c3ced8b6" PRIMARY KEY ("post_id", "person_id"))`, + ); + await queryRunner.query( + `CREATE INDEX "IDX_6d5bd5330c6c6d717fb4128190" ON "post_person" ("post_id") `, + ); + await queryRunner.query( + `CREATE INDEX "IDX_c2ec8325a53c239442778bd029" ON "post_person" ("person_id") `, + ); + await queryRunner.query( + `CREATE TABLE "post_opportunity" ("post_id" integer NOT NULL, "opportunity_id" integer NOT NULL, CONSTRAINT "PK_83c02a05c6699152a7619ca8de2" PRIMARY KEY ("post_id", "opportunity_id"))`, + ); + await queryRunner.query( + `CREATE INDEX "IDX_dfcd3c6cd9a6db4700cd5ebe6c" ON "post_opportunity" ("post_id") `, + ); + await queryRunner.query( + `CREATE INDEX "IDX_61a8575d8e7c30b3462fa19f6d" ON "post_opportunity" ("opportunity_id") `, + ); + await queryRunner.query( + `ALTER TABLE "post_person" ADD CONSTRAINT "FK_6d5bd5330c6c6d717fb4128190f" FOREIGN KEY ("post_id") REFERENCES "post"("id") ON DELETE CASCADE ON UPDATE CASCADE`, + ); + await queryRunner.query( + `ALTER TABLE "post_person" ADD CONSTRAINT "FK_c2ec8325a53c239442778bd029d" FOREIGN KEY ("person_id") REFERENCES "person"("id") ON DELETE CASCADE ON UPDATE CASCADE`, + ); + await queryRunner.query( + `ALTER TABLE "post_opportunity" ADD CONSTRAINT "FK_dfcd3c6cd9a6db4700cd5ebe6c0" FOREIGN KEY ("post_id") REFERENCES "post"("id") ON DELETE CASCADE ON UPDATE CASCADE`, + ); + await queryRunner.query( + `ALTER TABLE "post_opportunity" ADD CONSTRAINT "FK_61a8575d8e7c30b3462fa19f6d0" FOREIGN KEY ("opportunity_id") REFERENCES "opportunity"("id") ON DELETE CASCADE ON UPDATE CASCADE`, + ); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "post_opportunity" DROP CONSTRAINT "FK_61a8575d8e7c30b3462fa19f6d0"`, + ); + await queryRunner.query( + `ALTER TABLE "post_opportunity" DROP CONSTRAINT "FK_dfcd3c6cd9a6db4700cd5ebe6c0"`, + ); + await queryRunner.query( + `ALTER TABLE "post_person" DROP CONSTRAINT "FK_c2ec8325a53c239442778bd029d"`, + ); + await queryRunner.query( + `ALTER TABLE "post_person" DROP CONSTRAINT "FK_6d5bd5330c6c6d717fb4128190f"`, + ); + await queryRunner.query( + `DROP INDEX "public"."IDX_61a8575d8e7c30b3462fa19f6d"`, + ); + await queryRunner.query( + `DROP INDEX "public"."IDX_dfcd3c6cd9a6db4700cd5ebe6c"`, + ); + await queryRunner.query(`DROP TABLE "post_opportunity"`); + await queryRunner.query( + `DROP INDEX "public"."IDX_c2ec8325a53c239442778bd029"`, + ); + await queryRunner.query( + `DROP INDEX "public"."IDX_6d5bd5330c6c6d717fb4128190"`, + ); + await queryRunner.query(`DROP TABLE "post_person"`); + } +} diff --git a/src/server/routes/post.routes.ts b/src/server/routes/post.routes.ts index 5564672f..637d47a1 100644 --- a/src/server/routes/post.routes.ts +++ b/src/server/routes/post.routes.ts @@ -161,8 +161,9 @@ export default async function postRoutes( where: { id: userId }, select: ["personId"], }); - if (!user?.personId) - {throw new BadRequestError("No person linked to this user.");} + if (!user?.personId) { + throw new BadRequestError("No person linked to this user."); + } let agentId: number | null = null; if (role === UserRole.AGENT) { @@ -230,20 +231,17 @@ export default async function postRoutes( }, async (request, reply) => { const id = Number(request.params.id); - const { id: userId, role } = request.user; + const { role } = request.user; const post = await fastify.db.postRepository.findOne({ where: { id }, relations: ["author", "taggedPersons", "linkedOpportunities"], }); - if (!post) {throw new NotFoundError(`Post ${id} not found.`);} - - const user = await fastify.db.userRepository.findOne({ - where: { id: userId }, - select: ["personId"], - }); + if (!post) { + throw new NotFoundError(`Post ${id} not found.`); + } - const isAuthor = user?.personId === post.authorId; + const isAuthor = request.authUser?.personId === post.authorId; const isPrivileged = role === UserRole.ADMIN || role === UserRole.COORDINATOR; if (!isAuthor && !isPrivileged) { @@ -254,7 +252,9 @@ export default async function postRoutes( const { text, taggedPersonIds, linkedOpportunityIds } = request.body; - if (text !== null && text !== undefined) {post.text = text;} + if (text !== null && text !== undefined) { + post.text = text; + } if (taggedPersonIds !== null && taggedPersonIds !== undefined) { post.taggedPersons = taggedPersonIds.length ? await fastify.db.personRepository.findBy({ @@ -291,17 +291,14 @@ export default async function postRoutes( }, async (request, reply) => { const id = Number(request.params.id); - const { id: userId, role } = request.user; + const { role } = request.user; const post = await fastify.db.postRepository.findOne({ where: { id } }); - if (!post) {throw new NotFoundError(`Post ${id} not found.`);} - - const user = await fastify.db.userRepository.findOne({ - where: { id: userId }, - select: ["personId"], - }); + if (!post) { + throw new NotFoundError(`Post ${id} not found.`); + } - const isAuthor = user?.personId === post.authorId; + const isAuthor = request.authUser?.personId === post.authorId; const isPrivileged = role === UserRole.ADMIN || role === UserRole.COORDINATOR; if (!isAuthor && !isPrivileged) { From fc5ec7c30fad9bdab86e9ceb26c8bbc2da713904 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Mon, 6 Jul 2026 11:06:09 +0000 Subject: [PATCH 55/89] refactor(post): move schema + types to shared folders Move inline querystring schema to src/server/schema/querystring.ts (paginationQuerySchema). Use QuerystringPagination, ReplyDataCount, ReplyData, ReplyMessage, and ParamsId from src/server/types instead of inline generics. Co-Authored-By: Claude Sonnet 4.6 --- src/server/routes/post.routes.ts | 44 ++++++++++++++++++++------------ src/server/schema/querystring.ts | 6 +++++ 2 files changed, 33 insertions(+), 17 deletions(-) diff --git a/src/server/routes/post.routes.ts b/src/server/routes/post.routes.ts index 637d47a1..d4621a66 100644 --- a/src/server/routes/post.routes.ts +++ b/src/server/routes/post.routes.ts @@ -2,6 +2,7 @@ import { FastifyInstance, FastifyPluginOptions } from "fastify"; import { AgentMembershipStatus, AgentRoleType, + ApiPostGet, ApiPostPatch, ApiPostPost, UserRole, @@ -13,18 +14,20 @@ import { UnauthorizedError, } from "../../config/error/fastify"; import { dtoPost } from "../../services/dto/dto-post"; -import { idParamSchema, responseSchema } from "../schema"; +import { + idParamSchema, + paginationQuerySchema, + responseSchema, +} from "../schema"; +import { + ParamsId, + QuerystringPagination, + ReplyData, + ReplyDataCount, + ReplyMessage, +} from "../types"; import { getSkipTake } from "../utils"; -const postListQuerySchema = { - type: "object", - properties: { - page: { type: "integer", minimum: 1 }, - limit: { type: "integer", minimum: 1, maximum: 120 }, - }, - additionalProperties: false, -}; - export default async function postRoutes( fastify: FastifyInstance, _options: FastifyPluginOptions, @@ -32,11 +35,14 @@ export default async function postRoutes( // // GET /post // - fastify.get<{ Querystring: { page?: number; limit?: number } }>( + fastify.get<{ + Querystring: QuerystringPagination; + Reply: ReplyDataCount; + }>( "/", { schema: { - querystring: postListQuerySchema, + querystring: paginationQuerySchema, response: responseSchema({ dataSchemaRef: "ApiPostGet#", isArray: true, @@ -137,7 +143,7 @@ export default async function postRoutes( // // POST /post // - fastify.post<{ Body: ApiPostPost }>( + fastify.post<{ Body: ApiPostPost; Reply: ReplyData }>( "/", { schema: { @@ -219,7 +225,11 @@ export default async function postRoutes( // // PATCH /post/:id // - fastify.patch<{ Params: { id: string }; Body: ApiPostPatch }>( + fastify.patch<{ + Params: ParamsId; + Body: ApiPostPatch; + Reply: ReplyData; + }>( "/:id", { schema: { @@ -230,7 +240,7 @@ export default async function postRoutes( onRequest: [fastify.authenticate()], }, async (request, reply) => { - const id = Number(request.params.id); + const { id } = request.params; const { role } = request.user; const post = await fastify.db.postRepository.findOne({ @@ -280,7 +290,7 @@ export default async function postRoutes( // // DELETE /post/:id // - fastify.delete<{ Params: { id: string } }>( + fastify.delete<{ Params: ParamsId; Reply: ReplyMessage }>( "/:id", { schema: { @@ -290,7 +300,7 @@ export default async function postRoutes( onRequest: [fastify.authenticate()], }, async (request, reply) => { - const id = Number(request.params.id); + const { id } = request.params; const { role } = request.user; const post = await fastify.db.postRepository.findOne({ where: { id } }); diff --git a/src/server/schema/querystring.ts b/src/server/schema/querystring.ts index d29e185d..593e855f 100644 --- a/src/server/schema/querystring.ts +++ b/src/server/schema/querystring.ts @@ -7,6 +7,12 @@ const paginationProps = { }; const langProp = { language: { type: "string" } }; +export const paginationQuerySchema = { + type: "object", + properties: paginationProps, + additionalProperties: false, +}; + export const langQuerySchema = { type: "object", properties: langProp, From 9179c5de14f6de550ef89717d98baba3cb4e7aa4 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Mon, 6 Jul 2026 13:03:48 +0000 Subject: [PATCH 56/89] update: add-post mig --- ...ty.ts => 1783342906122-add-post-entity.ts} | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) rename src/data/migrations/{1783333982288-add-post-entity.ts => 1783342906122-add-post-entity.ts} (73%) diff --git a/src/data/migrations/1783333982288-add-post-entity.ts b/src/data/migrations/1783342906122-add-post-entity.ts similarity index 73% rename from src/data/migrations/1783333982288-add-post-entity.ts rename to src/data/migrations/1783342906122-add-post-entity.ts index 0ad8109c..53fabdd4 100644 --- a/src/data/migrations/1783333982288-add-post-entity.ts +++ b/src/data/migrations/1783342906122-add-post-entity.ts @@ -1,9 +1,12 @@ import { MigrationInterface, QueryRunner } from "typeorm"; -export class AddPostEntity1783333982288 implements MigrationInterface { - name = "AddPostEntity1783333982288"; +export class AddPostEntity1783342906122 implements MigrationInterface { + name = "AddPostEntity1783342906122"; public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `CREATE TABLE "post" ("id" SERIAL NOT NULL, "text" text NOT NULL, "author_id" integer NOT NULL, "agent_id" integer, "created_at" TIMESTAMP NOT NULL DEFAULT now(), "updated_at" TIMESTAMP NOT NULL DEFAULT now(), CONSTRAINT "PK_be5fda3aac270b134ff9c21cdee" PRIMARY KEY ("id"))`, + ); await queryRunner.query( `CREATE TABLE "post_person" ("post_id" integer NOT NULL, "person_id" integer NOT NULL, CONSTRAINT "PK_2752a498efcea4ce067c3ced8b6" PRIMARY KEY ("post_id", "person_id"))`, ); @@ -22,6 +25,12 @@ export class AddPostEntity1783333982288 implements MigrationInterface { await queryRunner.query( `CREATE INDEX "IDX_61a8575d8e7c30b3462fa19f6d" ON "post_opportunity" ("opportunity_id") `, ); + await queryRunner.query( + `ALTER TABLE "post" ADD CONSTRAINT "FK_2f1a9ca8908fc8168bc18437f62" FOREIGN KEY ("author_id") REFERENCES "person"("id") ON DELETE CASCADE ON UPDATE NO ACTION`, + ); + await queryRunner.query( + `ALTER TABLE "post" ADD CONSTRAINT "FK_60618b67a1e1043df6380caa22f" FOREIGN KEY ("agent_id") REFERENCES "agent"("id") ON DELETE SET NULL ON UPDATE NO ACTION`, + ); await queryRunner.query( `ALTER TABLE "post_person" ADD CONSTRAINT "FK_6d5bd5330c6c6d717fb4128190f" FOREIGN KEY ("post_id") REFERENCES "post"("id") ON DELETE CASCADE ON UPDATE CASCADE`, ); @@ -49,6 +58,12 @@ export class AddPostEntity1783333982288 implements MigrationInterface { await queryRunner.query( `ALTER TABLE "post_person" DROP CONSTRAINT "FK_6d5bd5330c6c6d717fb4128190f"`, ); + await queryRunner.query( + `ALTER TABLE "post" DROP CONSTRAINT "FK_60618b67a1e1043df6380caa22f"`, + ); + await queryRunner.query( + `ALTER TABLE "post" DROP CONSTRAINT "FK_2f1a9ca8908fc8168bc18437f62"`, + ); await queryRunner.query( `DROP INDEX "public"."IDX_61a8575d8e7c30b3462fa19f6d"`, ); @@ -63,5 +78,6 @@ export class AddPostEntity1783333982288 implements MigrationInterface { `DROP INDEX "public"."IDX_6d5bd5330c6c6d717fb4128190"`, ); await queryRunner.query(`DROP TABLE "post_person"`); + await queryRunner.query(`DROP TABLE "post"`); } } From bf40f71dd350003f7e72b54eaa8fa0f73d1cbbb9 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 7 Jul 2026 09:57:22 +0000 Subject: [PATCH 57/89] fix(post): restrict POST to AGENT+, simplify GET visibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per product owner: only NGO (AGENT) and COORDINATOR/ADMIN users can post. All three roles see all posts — no per-agent scoping. Volunteers have no access (return empty feed). Removes the agentId derivation on POST, the per-agent WHERE filter on GET, the broken VOLUNTEER branch, and unused AgentMembershipStatus / AgentRoleType / Brackets imports. Co-Authored-By: Claude Sonnet 4.6 --- src/server/routes/post.routes.ts | 118 ++++--------------------------- 1 file changed, 15 insertions(+), 103 deletions(-) diff --git a/src/server/routes/post.routes.ts b/src/server/routes/post.routes.ts index d4621a66..056e1eea 100644 --- a/src/server/routes/post.routes.ts +++ b/src/server/routes/post.routes.ts @@ -1,13 +1,6 @@ import { FastifyInstance, FastifyPluginOptions } from "fastify"; -import { - AgentMembershipStatus, - AgentRoleType, - ApiPostGet, - ApiPostPatch, - ApiPostPost, - UserRole, -} from "need4deed-sdk"; -import { Brackets, In } from "typeorm"; +import { ApiPostGet, ApiPostPatch, ApiPostPost, UserRole } from "need4deed-sdk"; +import { In } from "typeorm"; import { BadRequestError, NotFoundError, @@ -52,7 +45,7 @@ export default async function postRoutes( onRequest: [fastify.authenticate()], }, async (request, reply) => { - const { role, id: userId } = request.user; + const { role } = request.user; const [skip, take] = getSkipTake(request.query); const qb = fastify.db.postRepository @@ -64,67 +57,12 @@ export default async function postRoutes( .skip(skip) .take(take); - if (role === UserRole.ADMIN || role === UserRole.COORDINATOR) { + if ( + role === UserRole.ADMIN || + role === UserRole.COORDINATOR || + role === UserRole.AGENT + ) { // no filter — all posts visible - } else if (role === UserRole.AGENT) { - const user = await fastify.db.userRepository.findOne({ - where: { id: userId }, - select: ["personId"], - }); - const membership = user?.personId - ? ((await fastify.db.agentPersonRepository.findOne({ - where: { - personId: user.personId, - status: AgentMembershipStatus.ACTIVE, - role: AgentRoleType.VOLUNTEER_COORDINATOR, - }, - order: { id: "ASC" }, - })) ?? - (await fastify.db.agentPersonRepository.findOne({ - where: { - personId: user.personId, - status: AgentMembershipStatus.ACTIVE, - }, - order: { id: "ASC" }, - }))) - : null; - - if (!membership) { - return reply - .status(200) - .send({ message: "Posts.", data: [], count: 0 }); - } - qb.where("post.agentId = :agentId", { agentId: membership.agentId }); - } else if (role === UserRole.VOLUNTEER) { - const user = await fastify.db.userRepository.findOne({ - where: { id: userId }, - select: ["personId"], - }); - if (!user?.personId) { - return reply - .status(200) - .send({ message: "Posts.", data: [], count: 0 }); - } - - const memberships = await fastify.db.agentPersonRepository.find({ - where: { - personId: user.personId, - status: AgentMembershipStatus.ACTIVE, - }, - select: ["agentId"], - }); - const agentIds = memberships.map((m) => m.agentId); - - qb.where( - new Brackets((sub) => { - sub.where("taggedPerson.id = :personId", { - personId: user.personId, - }); - if (agentIds.length > 0) { - sub.orWhere("post.agentId IN (:...agentIds)", { agentIds }); - } - }), - ); } else { return reply .status(200) @@ -153,45 +91,20 @@ export default async function postRoutes( statusCode: 201, }), }, - onRequest: [fastify.authenticate()], + onRequest: [fastify.authenticate({ role: UserRole.AGENT })], }, async (request, reply) => { - const { id: userId, role } = request.user; + const personId = request.authUser?.personId; + if (!personId) { + throw new BadRequestError("No person linked to this user."); + } + const { text, taggedPersonIds = [], linkedOpportunityIds = [], } = request.body; - const user = await fastify.db.userRepository.findOne({ - where: { id: userId }, - select: ["personId"], - }); - if (!user?.personId) { - throw new BadRequestError("No person linked to this user."); - } - - let agentId: number | null = null; - if (role === UserRole.AGENT) { - const membership = - (await fastify.db.agentPersonRepository.findOne({ - where: { - personId: user.personId, - status: AgentMembershipStatus.ACTIVE, - role: AgentRoleType.VOLUNTEER_COORDINATOR, - }, - order: { id: "ASC" }, - })) ?? - (await fastify.db.agentPersonRepository.findOne({ - where: { - personId: user.personId, - status: AgentMembershipStatus.ACTIVE, - }, - order: { id: "ASC" }, - })); - agentId = membership?.agentId ?? null; - } - const taggedPersons = taggedPersonIds.length ? await fastify.db.personRepository.findBy({ id: In(taggedPersonIds) }) : []; @@ -203,8 +116,7 @@ export default async function postRoutes( const post = fastify.db.postRepository.create({ text, - authorId: user.personId, - agentId, + authorId: personId, taggedPersons, linkedOpportunities, }); From 2cb20fdc80cad470febfb421dfcaab16c69a11e7 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 7 Jul 2026 10:08:19 +0000 Subject: [PATCH 58/89] fix(post): tighten ApiPostPost/ApiPostPatch AJV schemas Add additionalProperties: false to both input schemas (consistent with all other schemas in sdk-types.json). Add minLength: 1 to ApiPostPatch.text so an empty string cannot overwrite post content (mirrors the constraint already on ApiPostPost.text). Co-Authored-By: Claude Sonnet 4.6 --- src/server/schema/sdk-types.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index 8be57a53..def280c8 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -1630,13 +1630,14 @@ "items": { "type": "integer" } } }, - "required": ["text"] + "required": ["text"], + "additionalProperties": false }, "ApiPostPatch": { "$id": "ApiPostPatch", "type": "object", "properties": { - "text": { "type": ["string", "null"] }, + "text": { "type": ["string", "null"], "minLength": 1 }, "taggedPersonIds": { "type": ["array", "null"], "items": { "type": "integer" } @@ -1645,7 +1646,8 @@ "type": ["array", "null"], "items": { "type": "integer" } } - } + }, + "additionalProperties": false } } } From d5cc903e934025108432a8947bdab6cac13ebb32 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 7 Jul 2026 16:09:13 +0000 Subject: [PATCH 59/89] fix(post): validate relation IDs, resolve agentId, tighten auth - Validate taggedPersonIds/linkedOpportunityIds against DB in POST and PATCH; throw BadRequestError listing any missing IDs (matches the pattern in sync-comment-tags.ts) - Extract getAgentPersonRepresentative util: filters ACTIVE memberships, prefers VOLUNTEER_COORDINATOR role, deterministic ORDER BY id ASC; replaces duplicated inline logic in user.ts and new post handler - Set agentId on created posts via getAgentPersonRepresentative - Guard null full after findOne in POST; drop non-null assertion - Add role gate in PATCH/DELETE before DB fetch (ADMIN/COORDINATOR/AGENT only); closes VOLUNTEER existence-oracle via 404 vs 401 - Parallelize independent personRepository and opportunityRepository findBy calls in POST with Promise.all Co-Authored-By: Claude Sonnet 4.6 --- src/server/routes/post.routes.ts | 87 ++++++++++++++++--- src/server/routes/user.ts | 20 +---- .../data/get-agent-person-representative.ts | 28 ++++++ 3 files changed, 106 insertions(+), 29 deletions(-) create mode 100644 src/server/utils/data/get-agent-person-representative.ts diff --git a/src/server/routes/post.routes.ts b/src/server/routes/post.routes.ts index 056e1eea..9fce7d57 100644 --- a/src/server/routes/post.routes.ts +++ b/src/server/routes/post.routes.ts @@ -20,6 +20,7 @@ import { ReplyMessage, } from "../types"; import { getSkipTake } from "../utils"; +import { getAgentPersonRepresentative } from "../utils/data/get-agent-person-representative"; export default async function postRoutes( fastify: FastifyInstance, @@ -105,18 +106,45 @@ export default async function postRoutes( linkedOpportunityIds = [], } = request.body; - const taggedPersons = taggedPersonIds.length - ? await fastify.db.personRepository.findBy({ id: In(taggedPersonIds) }) - : []; - const linkedOpportunities = linkedOpportunityIds.length - ? await fastify.db.opportunityRepository.findBy({ - id: In(linkedOpportunityIds), - }) - : []; + const agentPerson = await getAgentPersonRepresentative(personId); + + const [taggedPersons, linkedOpportunities] = await Promise.all([ + taggedPersonIds.length + ? fastify.db.personRepository.findBy({ id: In(taggedPersonIds) }) + : [], + linkedOpportunityIds.length + ? fastify.db.opportunityRepository.findBy({ + id: In(linkedOpportunityIds), + }) + : [], + ]); + + const existingPersonIds = new Set(taggedPersons.map((p) => p.id)); + const missingPersonIds = [...new Set(taggedPersonIds)].filter( + (id) => !existingPersonIds.has(id), + ); + if (missingPersonIds.length) { + throw new BadRequestError( + `Invalid tagged person id(s): ${missingPersonIds.join(", ")}`, + ); + } + + const existingOpportunityIds = new Set( + linkedOpportunities.map((o) => o.id), + ); + const missingOpportunityIds = [...new Set(linkedOpportunityIds)].filter( + (id) => !existingOpportunityIds.has(id), + ); + if (missingOpportunityIds.length) { + throw new BadRequestError( + `Invalid linked opportunity id(s): ${missingOpportunityIds.join(", ")}`, + ); + } const post = fastify.db.postRepository.create({ text, authorId: personId, + agentId: agentPerson?.agentId ?? null, taggedPersons, linkedOpportunities, }); @@ -128,9 +156,10 @@ export default async function postRoutes( relations: ["author", "taggedPersons", "linkedOpportunities"], }); + if (!full) {throw new NotFoundError("Post not found.");} return reply .status(201) - .send({ message: "Post created.", data: dtoPost(full!) }); + .send({ message: "Post created.", data: dtoPost(full) }); }, ); @@ -155,6 +184,14 @@ export default async function postRoutes( const { id } = request.params; const { role } = request.user; + if ( + role !== UserRole.ADMIN && + role !== UserRole.COORDINATOR && + role !== UserRole.AGENT + ) { + throw new UnauthorizedError("Permission denied."); + } + const post = await fastify.db.postRepository.findOne({ where: { id }, relations: ["author", "taggedPersons", "linkedOpportunities"], @@ -178,18 +215,38 @@ export default async function postRoutes( post.text = text; } if (taggedPersonIds !== null && taggedPersonIds !== undefined) { - post.taggedPersons = taggedPersonIds.length + const found = taggedPersonIds.length ? await fastify.db.personRepository.findBy({ id: In(taggedPersonIds), }) : []; + const existingIds = new Set(found.map((p) => p.id)); + const missing = [...new Set(taggedPersonIds)].filter( + (id) => !existingIds.has(id), + ); + if (missing.length) { + throw new BadRequestError( + `Invalid tagged person id(s): ${missing.join(", ")}`, + ); + } + post.taggedPersons = found; } if (linkedOpportunityIds !== null && linkedOpportunityIds !== undefined) { - post.linkedOpportunities = linkedOpportunityIds.length + const found = linkedOpportunityIds.length ? await fastify.db.opportunityRepository.findBy({ id: In(linkedOpportunityIds), }) : []; + const existingIds = new Set(found.map((o) => o.id)); + const missing = [...new Set(linkedOpportunityIds)].filter( + (id) => !existingIds.has(id), + ); + if (missing.length) { + throw new BadRequestError( + `Invalid linked opportunity id(s): ${missing.join(", ")}`, + ); + } + post.linkedOpportunities = found; } const updated = await fastify.db.postRepository.save(post); @@ -215,6 +272,14 @@ export default async function postRoutes( const { id } = request.params; const { role } = request.user; + if ( + role !== UserRole.ADMIN && + role !== UserRole.COORDINATOR && + role !== UserRole.AGENT + ) { + throw new UnauthorizedError("Permission denied."); + } + const post = await fastify.db.postRepository.findOne({ where: { id } }); if (!post) { throw new NotFoundError(`Post ${id} not found.`); diff --git a/src/server/routes/user.ts b/src/server/routes/user.ts index f8c66841..5d9f660e 100644 --- a/src/server/routes/user.ts +++ b/src/server/routes/user.ts @@ -1,8 +1,6 @@ import { validate } from "class-validator"; import { FastifyInstance, FastifyPluginOptions } from "fastify"; import { - AgentMembershipStatus, - AgentRoleType, ApiUserGet, ApiUserPost, Lang, @@ -31,6 +29,7 @@ import { } from "../schema/user.schema"; import { QuerystringUserList, ReplyDataCount, RoutePrefix } from "../types"; import { getSkipTake, getUserWhere, isEmailDomainTrusted } from "../utils"; +import { getAgentPersonRepresentative } from "../utils/data/get-agent-person-representative"; export default async function userRoutes( fastify: FastifyInstance, @@ -165,22 +164,7 @@ export default async function userRoutes( let agentId: number | undefined; if (user.role === UserRole.AGENT && user.personId) { // Prefer VOLUNTEER_COORDINATOR role; fall back to any active membership. - const membership = - (await fastify.db.agentPersonRepository.findOne({ - where: { - personId: user.personId, - status: AgentMembershipStatus.ACTIVE, - role: AgentRoleType.VOLUNTEER_COORDINATOR, - }, - order: { id: "ASC" }, - })) ?? - (await fastify.db.agentPersonRepository.findOne({ - where: { - personId: user.personId, - status: AgentMembershipStatus.ACTIVE, - }, - order: { id: "ASC" }, - })); + const membership = await getAgentPersonRepresentative(user.personId); agentId = membership?.agentId; } diff --git a/src/server/utils/data/get-agent-person-representative.ts b/src/server/utils/data/get-agent-person-representative.ts new file mode 100644 index 00000000..2044a962 --- /dev/null +++ b/src/server/utils/data/get-agent-person-representative.ts @@ -0,0 +1,28 @@ +import { AgentMembershipStatus, AgentRoleType } from "need4deed-sdk"; +import { dataSource } from "../../../data/data-source"; +import AgentPerson from "../../../data/entity/m2m/agent-person"; +import { getRepository } from "../../../data/utils"; + +export async function getAgentPersonRepresentative( + personId: number, +): Promise { + const agentPersonRepository = getRepository(dataSource, AgentPerson); + const representative = + (await agentPersonRepository.findOne({ + where: { + personId, + status: AgentMembershipStatus.ACTIVE, + role: AgentRoleType.VOLUNTEER_COORDINATOR, + }, + order: { id: "ASC" }, + })) ?? + (await agentPersonRepository.findOne({ + where: { + personId, + status: AgentMembershipStatus.ACTIVE, + }, + order: { id: "ASC" }, + })); + + return representative; +} From ff44e1daeb5cfc6a839947ee0561500d20afdb9b Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 7 Jul 2026 20:11:16 +0000 Subject: [PATCH 60/89] chore: bump sdk patch --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 049bd24c..73ef7f59 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.118", + "need4deed-sdk": "0.0.119", "node-cron": "^4.5.0", "pg": "^8.14.1", "pino": "^10.3.1", diff --git a/yarn.lock b/yarn.lock index f5da039c..dcfbf687 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2942,10 +2942,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.118: - version "0.0.118" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.118.tgz#5b2ae789c04acb87d0bb3af5770bc05d9a50716d" - integrity sha512-DalPX4Gbq7aW9r8hQ4zJRnJYhPFo5iTb9dKnKIqcyov4VP5ipsNh4KZEjjqvYp1uQZ2M6Wrm+30Un50nEFAcbA== +need4deed-sdk@0.0.119: + version "0.0.119" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.119.tgz#e7d3ad32223b3ad2712e9e8b6d9d61c9d4426c01" + integrity sha512-hYXEdcm3p1zv8cTTRdCf4MSPG2QOunObrIdY45WKEdqO6ZsHa7FGX2Xgb7c+yXlB8ZWlIuEaklxJ6rZYJA+XeA== no-case@^3.0.4: version "3.0.4" From c986084f63161c9ec20c24c98e596afc6095355a Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 7 Jul 2026 20:11:40 +0000 Subject: [PATCH 61/89] refactor: back to singulars --- src/server/routes/agent/agent.routes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/routes/agent/agent.routes.ts b/src/server/routes/agent/agent.routes.ts index a3c3a461..68001240 100644 --- a/src/server/routes/agent/agent.routes.ts +++ b/src/server/routes/agent/agent.routes.ts @@ -72,13 +72,13 @@ export default async function agentRoutes( preSerialization: makePiiSerialization(dtoAgentGetList), }, async (request, reply) => { - logger.debug(`GET /agents: request.query:${Object.keys(request.query)}`); + logger.debug(`GET /agent: request.query:${Object.keys(request.query)}`); const { page, limit, sortOrder, filter } = request.query; const [skip, take] = getSkipTake({ page, limit }); const where = getAgentWhere(filter); logger.debug( - `GET /agents: filters:${JSON.stringify(filter)}, skip:${skip}, take:${take}`, + `GET /agent: filters:${JSON.stringify(filter)}, skip:${skip}, take:${take}`, ); const agentRepository = fastify.db.agentRepository; From 4060f3aa55188add81dbde6fecf3e0a328bdb260 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 7 Jul 2026 20:12:00 +0000 Subject: [PATCH 62/89] add: num opps to schema --- src/server/schema/sdk-types.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index def280c8..d1d35e12 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -1335,6 +1335,7 @@ "trustLevel", "activeVolunteers", "numActiveVolunteers", + "numOpportunities", "email", "volunteerSearch" ] From a009417e4ee7913b907e64cae97ddbee776f15a9 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 7 Jul 2026 20:12:18 +0000 Subject: [PATCH 63/89] add: num opps to dto --- src/services/dto/dto-agent.ts | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/services/dto/dto-agent.ts b/src/services/dto/dto-agent.ts index e5263bc7..ce657722 100644 --- a/src/services/dto/dto-agent.ts +++ b/src/services/dto/dto-agent.ts @@ -38,14 +38,20 @@ export function dtoAgentGetList(agent: Agent): ApiAgentGetList { volunteerSearch: agent.searchStatus, activeVolunteers: agent.activeVolunteers, numActiveVolunteers: agent.activeVolunteers, + numOpportunities: agent.opportunity?.length ?? 0, email: agent.representative?.person?.email || agent.organization?.email || "", district: { id: agent.districtId, title: { de: agent?.district?.title } }, }; } -type AgentDetailsExtended = AgentDetails & { addressStreet?: string | null; addressPostcode?: string | null }; -type ApiAgentGetExtended = Omit & { agentDetails: AgentDetailsExtended }; +type AgentDetailsExtended = AgentDetails & { + addressStreet?: string | null; + addressPostcode?: string | null; +}; +type ApiAgentGetExtended = Omit & { + agentDetails: AgentDetailsExtended; +}; export function dtoAgentGet( agent: Agent & { comments: Comment[] }, @@ -85,7 +91,10 @@ export function dtoOpportunityAgent(agent: Agent): ApiOpportunityAgent { }; } -function dtoAgentDetails(agent: Agent): AgentDetails & { addressStreet?: string | null; addressPostcode?: string | null } { +function dtoAgentDetails(agent: Agent): AgentDetails & { + addressStreet?: string | null; + addressPostcode?: string | null; +} { return { about: agent.info, address: serializeAddress(agent.address), From 4c3d62f25034b287d3456ad1885695ec7d2feba6 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 7 Jul 2026 20:31:43 +0000 Subject: [PATCH 64/89] test: strengthen dtoAgentGetList coverage Exercise trustLevel, email, and numOpportunities through real code paths instead of relying on fallback defaults. Co-Authored-By: Claude Sonnet 4.6 --- src/test/services/dto/dto-agent.test.ts | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/test/services/dto/dto-agent.test.ts b/src/test/services/dto/dto-agent.test.ts index 10713ee6..0f8557fc 100644 --- a/src/test/services/dto/dto-agent.test.ts +++ b/src/test/services/dto/dto-agent.test.ts @@ -143,24 +143,26 @@ describe("dtoAgentGetList", () => { title: "Helping Hands", type: "NGO", activeVolunteers: 10, + numOpportunities: 0, addressId: 101, searchStatus: AgentVolunteerSearchType.SEARCHING, districtId: 201, }; - it("should correctly map a complete agent object", () => { + it("maps all scalar fields from a fully-loaded agent", () => { const fullAgent = { ...mockAgentBase, + trustLevel: 3, address: { street: "Main St", city: "Berlin", postcodeId: 501, postcode: { value: "10115" }, }, - district: { - title: "Mitte", - }, - } as Agent & { activeVolunteers: number }; + district: { title: "Mitte" }, + representative: { person: { email: "contact@helping-hands.org" } }, + opportunity: [{} as any, {} as any], + } as Agent & { activeVolunteers: number; numOpportunities: number }; const result = dtoAgentGetList(fullAgent); @@ -168,9 +170,11 @@ describe("dtoAgentGetList", () => { id: 1, title: "Helping Hands", type: "NGO", + trustLevel: 3, activeVolunteers: 10, numActiveVolunteers: 10, - email: "", + numOpportunities: 2, + email: "contact@helping-hands.org", district: { id: 201, title: { de: "Mitte" }, From 62efb9c8b67d2250a987a55eb2629e88d0af064d Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 8 Jul 2026 11:58:42 +0200 Subject: [PATCH 65/89] chore: upgrade need4deed-sdk to 0.0.120 (#739) Drop numActiveVolunteers from DTO and test (removed from SDK contract). Update test to use AgentTrustType.HIGH instead of bare number. Co-authored-by: Claude Sonnet 4.6 --- package.json | 2 +- src/services/dto/dto-agent.ts | 1 - src/test/services/dto/dto-agent.test.ts | 7 +++---- yarn.lock | 8 ++++---- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 73ef7f59..6111d15d 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.119", + "need4deed-sdk": "0.0.120", "node-cron": "^4.5.0", "pg": "^8.14.1", "pino": "^10.3.1", diff --git a/src/services/dto/dto-agent.ts b/src/services/dto/dto-agent.ts index ce657722..ccd1131a 100644 --- a/src/services/dto/dto-agent.ts +++ b/src/services/dto/dto-agent.ts @@ -37,7 +37,6 @@ export function dtoAgentGetList(agent: Agent): ApiAgentGetList { trustLevel: agent.trustLevel, volunteerSearch: agent.searchStatus, activeVolunteers: agent.activeVolunteers, - numActiveVolunteers: agent.activeVolunteers, numOpportunities: agent.opportunity?.length ?? 0, email: agent.representative?.person?.email || agent.organization?.email || "", diff --git a/src/test/services/dto/dto-agent.test.ts b/src/test/services/dto/dto-agent.test.ts index 0f8557fc..08306a0e 100644 --- a/src/test/services/dto/dto-agent.test.ts +++ b/src/test/services/dto/dto-agent.test.ts @@ -1,4 +1,4 @@ -import { AgentVolunteerSearchType } from "need4deed-sdk"; +import { AgentTrustType, AgentVolunteerSearchType } from "need4deed-sdk"; import { describe, expect, it, vi } from "vitest"; import Agent from "../../../data/entity/opportunity/agent.entity"; import { @@ -152,7 +152,7 @@ describe("dtoAgentGetList", () => { it("maps all scalar fields from a fully-loaded agent", () => { const fullAgent = { ...mockAgentBase, - trustLevel: 3, + trustLevel: AgentTrustType.HIGH, address: { street: "Main St", city: "Berlin", @@ -170,9 +170,8 @@ describe("dtoAgentGetList", () => { id: 1, title: "Helping Hands", type: "NGO", - trustLevel: 3, + trustLevel: AgentTrustType.HIGH, activeVolunteers: 10, - numActiveVolunteers: 10, numOpportunities: 2, email: "contact@helping-hands.org", district: { diff --git a/yarn.lock b/yarn.lock index dcfbf687..95f7c788 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2942,10 +2942,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.119: - version "0.0.119" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.119.tgz#e7d3ad32223b3ad2712e9e8b6d9d61c9d4426c01" - integrity sha512-hYXEdcm3p1zv8cTTRdCf4MSPG2QOunObrIdY45WKEdqO6ZsHa7FGX2Xgb7c+yXlB8ZWlIuEaklxJ6rZYJA+XeA== +need4deed-sdk@0.0.120: + version "0.0.120" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.120.tgz#dfc49febd1fb4dde61b3b1c80c4acb8ddccbb90c" + integrity sha512-ehpWMuM09QUnEYsW1Cto/fWd9Ms/iES+8fa/Gmw9i8XjKHWRcS14Lz3Lhu10To8ZoU9bKHJqgz6KrU9+iHnY0w== no-case@^3.0.4: version "3.0.4" From 5ceb49f8fe33a031a36706ca8194026a81b07ff2 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 8 Jul 2026 13:03:19 +0200 Subject: [PATCH 66/89] feat: Infomaniak SMTP transport; dry-run redirect; mute cron flag (#740) * chore: upgrade need4deed-sdk to 0.0.120 Drop numActiveVolunteers from DTO and test (removed from SDK contract). Update test to use AgentTrustType.HIGH instead of bare number. Co-Authored-By: Claude Sonnet 4.6 * feat: switch to Infomaniak SMTP; redirect dry-run to test@; mute cron flag Replace Brevo with nodemailer SMTP (Infomaniak). DryRunEmailTransport now redirects to test@need4deed.org with [TO: ] subject prefix and actually delivers via the real transport. Add NOTIFY_CRON_MUTED env var to suppress cron email scans without disabling the scheduler. Co-Authored-By: Claude Sonnet 4.6 * fix: align SMTP_PASS env var name with infra Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 --- .env.example | 13 +++++-- package.json | 2 ++ src/server/plugins/notify.ts | 12 +++++-- src/server/plugins/scheduler.ts | 6 ++++ src/services/notify/index.ts | 1 + src/services/notify/transports/dry-run.ts | 13 ++++++- src/services/notify/transports/email-smtp.ts | 36 ++++++++++++++++++++ yarn.lock | 24 +++++++++++++ 8 files changed, 100 insertions(+), 7 deletions(-) create mode 100644 src/services/notify/transports/email-smtp.ts diff --git a/.env.example b/.env.example index 0c69eafb..f142e7fb 100644 --- a/.env.example +++ b/.env.example @@ -1,13 +1,20 @@ -# Transactional email via Brevo. EMAIL_FROM is the from address and must be a -# verified sender/domain in Brevo. +# Transactional email via Infomaniak SMTP. EMAIL_FROM=no-reply@need4deed.org -BREVO_API_KEY=fake-string +SMTP_HOST=mail.infomaniak.com +SMTP_PORT=587 +SMTP_USER=no-reply@need4deed.org +SMTP_PASS=fake-string # Verification email content is read from a per-locale CDN manifest # (${CDN_BASE_URL}emails/verification.json), cached in-memory; falls back to # built-in copy. Optional tuning: EMAIL_TEMPLATE_TTL_MS=600000 EMAIL_TEMPLATE_FETCH_TIMEOUT_MS=5000 +# Notification controls (default: dry-run on in non-prod, cron active) +# NOTIFY_DRY_RUN=true — redirect all emails to test@need4deed.org with [TO: ] subject prefix +# NOTIFY_EMAIL_DRY_RUN=true — same, email-only override +# NOTIFY_CRON_MUTED=true — suppress cron-triggered email scans entirely + CORS_ORIGINS=http://localhost:3000,http://localhost:3100,http://localhost:3200 CORS_CREDENTIALS=true diff --git a/package.json b/package.json index 6111d15d..3cb6798c 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "@swc/helpers": "^0.5.18", "@types/node": "^24.9.1", "@types/node-cron": "^3.0.11", + "@types/nodemailer": "^8.0.1", "@typescript-eslint/eslint-plugin": "^8.46.2", "@typescript-eslint/parser": "^8.46.2", "@typescript-eslint/utils": "^8.46.2", @@ -44,6 +45,7 @@ "fastify-plugin": "^5.0.1", "need4deed-sdk": "0.0.120", "node-cron": "^4.5.0", + "nodemailer": "^9.0.3", "pg": "^8.14.1", "pino": "^10.3.1", "pino-pretty": "^13.0.0", diff --git a/src/server/plugins/notify.ts b/src/server/plugins/notify.ts index 2d60e668..807de563 100644 --- a/src/server/plugins/notify.ts +++ b/src/server/plugins/notify.ts @@ -5,7 +5,6 @@ import OpportunityVolunteer from "../../data/entity/m2m/opportunity-volunteer"; import Opportunity from "../../data/entity/opportunity/opportunity.entity"; import User from "../../data/entity/user.entity"; import { - BrevoEmailTransport, CommentTaggedInput, DryRunEmailTransport, DryRunSlackTransport, @@ -26,6 +25,7 @@ import { SlackChannel, SlackTransport, SlackWebhookTransport, + SmtpEmailTransport, } from "../../services/notify"; interface NotifyService { @@ -67,10 +67,16 @@ function isDryRun(transportKey: string): boolean { } function buildEmailTransport(): EmailTransport { + const smtp = new SmtpEmailTransport({ + host: process.env.SMTP_HOST ?? "mail.infomaniak.com", + port: Number(process.env.SMTP_PORT ?? 587), + user: process.env.SMTP_USER ?? "", + password: process.env.SMTP_PASS ?? "", + }); if (isDryRun("EMAIL")) { - return new DryRunEmailTransport(); + return new DryRunEmailTransport(smtp); } - return new BrevoEmailTransport(process.env.BREVO_API_KEY ?? ""); + return smtp; } function buildSlackTransport(): SlackTransport | undefined { diff --git a/src/server/plugins/scheduler.ts b/src/server/plugins/scheduler.ts index 38efaf07..86f109b0 100644 --- a/src/server/plugins/scheduler.ts +++ b/src/server/plugins/scheduler.ts @@ -1,6 +1,7 @@ import { FastifyInstance } from "fastify"; import fp from "fastify-plugin"; import cron from "node-cron"; +import { TRUTHY } from "../../config/constants"; import { dataSource } from "../../data/data-source"; import logger from "../../logger"; import { @@ -53,6 +54,11 @@ async function schedulerPlugin(fastify: FastifyInstance): Promise { "0 8-19 * * 1-5", async () => { try { + if (TRUTHY.has(process.env.NOTIFY_CRON_MUTED ?? "")) { + logger.info("scheduler: skipping — NOTIFY_CRON_MUTED is set"); + return; + } + if (isGermanPublicHoliday(berlinToday())) { logger.info("scheduler: skipping — German public holiday"); return; diff --git a/src/services/notify/index.ts b/src/services/notify/index.ts index 98be4a7d..e64eb9d9 100644 --- a/src/services/notify/index.ts +++ b/src/services/notify/index.ts @@ -1,6 +1,7 @@ export * from "./types"; export * from "./dispatch"; export * from "./transports/email-brevo"; +export * from "./transports/email-smtp"; export * from "./transports/slack-webhook"; export * from "./transports/dry-run"; export * from "./events/email-verification"; diff --git a/src/services/notify/transports/dry-run.ts b/src/services/notify/transports/dry-run.ts index 56b0e07d..8342b88c 100644 --- a/src/services/notify/transports/dry-run.ts +++ b/src/services/notify/transports/dry-run.ts @@ -6,11 +6,22 @@ import type { SlackTransport, } from "../types"; +const DRY_RUN_RECIPIENT = "test@need4deed.org"; + export class DryRunEmailTransport implements EmailTransport { + constructor(private readonly realTransport: EmailTransport) {} + async send(msg: EmailMessage): Promise { + const originalTo = Array.isArray(msg.to) ? msg.to.join(", ") : msg.to; + const redirected: EmailMessage = { + ...msg, + to: DRY_RUN_RECIPIENT, + subject: `[TO: ${originalTo}] ${msg.subject}`, + }; logger.info( - `[notify:dry-run] email suppressed — subject: "${msg.subject}"`, + `[notify:dry-run] redirecting email to ${DRY_RUN_RECIPIENT} — original to: "${originalTo}", subject: "${msg.subject}"`, ); + await this.realTransport.send(redirected); } } diff --git a/src/services/notify/transports/email-smtp.ts b/src/services/notify/transports/email-smtp.ts new file mode 100644 index 00000000..450262cb --- /dev/null +++ b/src/services/notify/transports/email-smtp.ts @@ -0,0 +1,36 @@ +import nodemailer from "nodemailer"; +import { defaultFrom } from "../../../config/constants"; +import type { EmailMessage, EmailTransport } from "../types"; + +export interface SmtpConfig { + host: string; + port: number; + user: string; + password: string; + from?: string; +} + +export class SmtpEmailTransport implements EmailTransport { + private readonly transporter: nodemailer.Transporter; + private readonly from: string; + + constructor(config: SmtpConfig) { + this.from = config.from ?? defaultFrom; + this.transporter = nodemailer.createTransport({ + host: config.host, + port: config.port, + secure: config.port === 465, + auth: { user: config.user, pass: config.password }, + }); + } + + async send(msg: EmailMessage): Promise { + await this.transporter.sendMail({ + from: msg.from ?? this.from, + to: msg.to, + subject: msg.subject, + text: msg.text, + html: msg.html, + }); + } +} diff --git a/yarn.lock b/yarn.lock index 95f7c788..2f2b1e55 100644 --- a/yarn.lock +++ b/yarn.lock @@ -849,6 +849,13 @@ resolved "https://registry.yarnpkg.com/@types/node-cron/-/node-cron-3.0.11.tgz#70b7131f65038ae63cfe841354c8aba363632344" integrity sha512-0ikrnug3/IyneSHqCBeslAhlK2aBfYek1fGo4bP4QnZPmiqSGRK+Oy7ZMisLWkesffJvQ1cqAcBnJC+8+nxIAg== +"@types/node@*": + version "26.1.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-26.1.1.tgz#bad758d601e97d6cf457d204ee76a35fce7bd119" + integrity sha512-nxAkRSVkN1Y0JC1W8ky/fTfkGsMmcrRsbx+3XoZE+rMOX71kLYTV7fLXpqud1GpbpP5TuffXFqfX7fH2GgZREw== + dependencies: + undici-types "~8.3.0" + "@types/node@^24.9.1": version "24.10.0" resolved "https://registry.yarnpkg.com/@types/node/-/node-24.10.0.tgz#6b79086b0dfc54e775a34ba8114dcc4e0221f31f" @@ -856,6 +863,13 @@ dependencies: undici-types "~7.16.0" +"@types/nodemailer@^8.0.1": + version "8.0.1" + resolved "https://registry.yarnpkg.com/@types/nodemailer/-/nodemailer-8.0.1.tgz#4ef2b4e62c819225a0b8a6384bf750c0c664d465" + integrity sha512-PxpaInm8V1JQDd4j0ds5HfvWQk8JupS1C0Picb96QJsrrRDjBH+DlK7L4ZdNSqNULhiZRQHc40nLVShaGxXAMw== + dependencies: + "@types/node" "*" + "@types/validator@^13.11.8": version "13.15.4" resolved "https://registry.yarnpkg.com/@types/validator/-/validator-13.15.4.tgz#38a97ae54747416f745afdfc678f041713082635" @@ -2970,6 +2984,11 @@ node-gyp-build@^4.8.4: resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.4.tgz#8a70ee85464ae52327772a90d66c6077a900cfc8" integrity sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ== +nodemailer@^9.0.3: + version "9.0.3" + resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-9.0.3.tgz#ce84f8046977b616847ad56130aa30bdb3c67c1f" + integrity sha512-n+YP+NKwR5zRWa60k3GiQ6Q3B4KXCoAw40dAKeCtYn020iNN74aWK2liXIC3ZEATeGql7we3tE3t8QwhY0eskw== + nodemon@^3.1.10: version "3.1.10" resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.1.10.tgz#5015c5eb4fffcb24d98cf9454df14f4fecec9bc1" @@ -4181,6 +4200,11 @@ undici-types@~7.16.0: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46" integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw== +undici-types@~8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-8.3.0.tgz#44e9fc9f3244648cdea35e4f9bb2d681e9410809" + integrity sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ== + unplugin-swc@^1.5.9: version "1.5.9" resolved "https://registry.yarnpkg.com/unplugin-swc/-/unplugin-swc-1.5.9.tgz#b842394cd783afeb01ff875513cb52c3b85e89ae" From c12f02ea9b4bae39e0811fe52a7d19189cf60b4f Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Wed, 8 Jul 2026 13:37:48 +0200 Subject: [PATCH 67/89] fix: upgrade need4deed-sdk to 0.0.122; fix dtoAgentOpportunity fields (#741) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SDK 0.0.122 adds the five CommunicationType values that were in the PostgreSQL enum since migration 1782903516653 but missing from the TypeScript enum (ACCOMPANYING_MATCHED, MATCHED, OPPORTUNITY_CONFIRMATION, ACCOMPANYING_NOT_FOUND, OPPORTUNITY_UPDATED) and adds opportunityId to ApiCommunicationGet — both were blocking tsc compilation. dtoAgentOpportunity now returns the full ApiAgentOpportunity shape (volunteerType, district, languages, activities, location, availability). The agent-opportunity route loads the deal relations needed to populate them. Co-authored-by: Claude Sonnet 4.6 --- package.json | 2 +- .../routes/agent/agent-opportunity.routes.ts | 9 ++++++++- src/services/dto/dto-agent.ts | 11 +++++++++++ src/test/services/dto/dto-agent.test.ts | 15 +++++++++++++++ yarn.lock | 8 ++++---- 5 files changed, 39 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 3cb6798c..1ac792bf 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.120", + "need4deed-sdk": "0.0.122", "node-cron": "^4.5.0", "nodemailer": "^9.0.3", "pg": "^8.14.1", diff --git a/src/server/routes/agent/agent-opportunity.routes.ts b/src/server/routes/agent/agent-opportunity.routes.ts index 290d9421..4ea1e7d2 100644 --- a/src/server/routes/agent/agent-opportunity.routes.ts +++ b/src/server/routes/agent/agent-opportunity.routes.ts @@ -27,7 +27,14 @@ export default async function agentOpportunityRoutes( async (request, reply) => { const { id } = request.params; const agentRepository = fastify.db.agentRepository; - const relations = ["opportunity.opportunityVolunteer.volunteer.person"]; + const relations = [ + "opportunity.opportunityVolunteer.volunteer.person", + "opportunity.deal.dealLanguage.language", + "opportunity.deal.dealActivity.activity", + "opportunity.deal.dealDistrict.district", + "opportunity.deal.dealTimeslot.timeslot", + "opportunity.district", + ]; const agent = await agentRepository.findOne({ where: { id }, relations }); if (!agent) { diff --git a/src/services/dto/dto-agent.ts b/src/services/dto/dto-agent.ts index ccd1131a..904e8aaf 100644 --- a/src/services/dto/dto-agent.ts +++ b/src/services/dto/dto-agent.ts @@ -13,6 +13,7 @@ import Opportunity from "../../data/entity/opportunity/opportunity.entity"; import { serializeAddress } from "./dto-address"; import { commentSerializer } from "./dto-comment"; import { dtoSerializePerson } from "./dto-person"; +import { getAvailability, getLanguages } from "./utils"; // Serializes an agent<->person membership for the moderation endpoints. // Expects the `agent` and `person` relations to be loaded. @@ -123,10 +124,20 @@ export function dtoAgentOpportunity( return { id: opportunity.id, title: opportunity.title, + volunteerType: opportunity.type, statusOpportunity: opportunity.status, statusMatch: opportunity.statusMatch, numberOfVolunteers: opportunity.numberVolunteers, createdAt: opportunity.createdAt, + district: { id: opportunity.district?.id ?? opportunity.districtId }, + languages: getLanguages(opportunity.deal?.dealLanguage ?? []), + activities: (opportunity.deal?.dealActivity ?? []) + .filter(Boolean) + .map((da) => ({ id: da.activity.id })), + location: (opportunity.deal?.dealDistrict ?? []) + .filter(Boolean) + .map((dd) => ({ id: dd.district.id })), + availability: getAvailability(opportunity.deal?.dealTimeslot ?? []) ?? [], volunteers: (opportunity.opportunityVolunteer ?? []) .filter(Boolean) .map((ov) => ({ diff --git a/src/test/services/dto/dto-agent.test.ts b/src/test/services/dto/dto-agent.test.ts index 08306a0e..b02676bf 100644 --- a/src/test/services/dto/dto-agent.test.ts +++ b/src/test/services/dto/dto-agent.test.ts @@ -207,10 +207,19 @@ describe("dtoAgentOpportunity", () => { const baseOpportunity = { id: 42, title: "German tutoring", + type: "regular", status: "opp-active", statusMatch: "opp-vol-matched", numberVolunteers: 3, createdAt: new Date("2026-01-15"), + districtId: 7, + district: { id: 7 }, + deal: { + dealLanguage: [], + dealActivity: [], + dealDistrict: [], + dealTimeslot: [], + }, }; it("maps the opportunity scalars and its linked volunteers", () => { @@ -229,10 +238,16 @@ describe("dtoAgentOpportunity", () => { expect(dtoAgentOpportunity(opportunity as any)).toEqual({ id: 42, title: "German tutoring", + volunteerType: "regular", statusOpportunity: "opp-active", statusMatch: "opp-vol-matched", numberOfVolunteers: 3, createdAt: new Date("2026-01-15"), + district: { id: 7 }, + languages: [], + activities: [], + location: [], + availability: [], volunteers: [ { id: 5, diff --git a/yarn.lock b/yarn.lock index 2f2b1e55..37ef8f34 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2956,10 +2956,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.120: - version "0.0.120" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.120.tgz#dfc49febd1fb4dde61b3b1c80c4acb8ddccbb90c" - integrity sha512-ehpWMuM09QUnEYsW1Cto/fWd9Ms/iES+8fa/Gmw9i8XjKHWRcS14Lz3Lhu10To8ZoU9bKHJqgz6KrU9+iHnY0w== +need4deed-sdk@0.0.122: + version "0.0.122" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.122.tgz#2513f94fe2beed9f0fbd7b4837c47308c13a5aac" + integrity sha512-GtmQBUd0jYyfUDsGhuqXVJB24ddDreHIq0guBimPoBrNb8yyHH2TM5B9ulkEQ6MGAPEuOR86PxogeuLmEBIgrw== no-case@^3.0.4: version "3.0.4" From 96d057908a4bdea71b33cb77c97e90da66fb6a96 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Thu, 9 Jul 2026 17:31:30 +0200 Subject: [PATCH 68/89] fix: support title in PATCH /opportunity/:id (#743) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Coordinators need to rename opportunities from the dashboard. The title field was present on the Opportunity entity and in GET responses but was not accepted by the PATCH endpoint. - Upgrade need4deed-sdk 0.0.122 → 0.0.125 (0.0.125 adds title to ApiOpportunityPatch) - Add "title" to ApiVolunteerOpportunityPatch JSON schema so Fastify/AJV accepts it (schema had additionalProperties: false) - Map body.title into the opportunity object in parseOpportunity so it reaches patchEntity(Opportunity, ...) Co-authored-by: Claude Sonnet 4.6 --- package.json | 2 +- src/server/schema/sdk-types.json | 3 +++ src/services/dto/parser-opportunity-patch-data.ts | 1 + yarn.lock | 8 ++++---- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 1ac792bf..c9c4527d 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "class-validator": "^0.14.2", "fastify": "^5.3.3", "fastify-plugin": "^5.0.1", - "need4deed-sdk": "0.0.122", + "need4deed-sdk": "0.0.125", "node-cron": "^4.5.0", "nodemailer": "^9.0.3", "pg": "^8.14.1", diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index d1d35e12..2bad02cb 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -781,6 +781,9 @@ "$id": "ApiVolunteerOpportunityPatch", "type": "object", "properties": { + "title": { + "type": "string" + }, "statusOpportunity": { "$ref": "OpportunityStatusType#" }, diff --git a/src/services/dto/parser-opportunity-patch-data.ts b/src/services/dto/parser-opportunity-patch-data.ts index 50168292..2af13f6e 100644 --- a/src/services/dto/parser-opportunity-patch-data.ts +++ b/src/services/dto/parser-opportunity-patch-data.ts @@ -30,6 +30,7 @@ export function parseOpportunity(body: ApiOpportunityPatch) { return { ...getEmptyPropsNull({ opportunity: { + title: body.title, status: body.statusOpportunity, numberVolunteers: body.numberVolunteers, info: body.description, diff --git a/yarn.lock b/yarn.lock index 37ef8f34..a364052a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2956,10 +2956,10 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== -need4deed-sdk@0.0.122: - version "0.0.122" - resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.122.tgz#2513f94fe2beed9f0fbd7b4837c47308c13a5aac" - integrity sha512-GtmQBUd0jYyfUDsGhuqXVJB24ddDreHIq0guBimPoBrNb8yyHH2TM5B9ulkEQ6MGAPEuOR86PxogeuLmEBIgrw== +need4deed-sdk@0.0.125: + version "0.0.125" + resolved "https://registry.yarnpkg.com/need4deed-sdk/-/need4deed-sdk-0.0.125.tgz#adee2cbc342da82c1f6dedfeebafac2502648d46" + integrity sha512-g/7Bwk1zqcyLZYvmgnACeXhuem5TGfDcwexzQVsaxR2HfXQW3zcJ3NHFaKqaKT9p4hOoRqkJR1vtaFOvFOAgfg== no-case@^3.0.4: version "3.0.4" From 3194110eb7b890f45fcca05a8788a9e62bf2a4ad Mon Sep 17 00:00:00 2001 From: ivannissimrch Date: Thu, 9 Jul 2026 22:13:27 -0400 Subject: [PATCH 69/89] fix: add numOpportunities to AgentList schema properties --- src/server/schema/sdk-types.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server/schema/sdk-types.json b/src/server/schema/sdk-types.json index 2bad02cb..bcfdf6ac 100644 --- a/src/server/schema/sdk-types.json +++ b/src/server/schema/sdk-types.json @@ -1320,6 +1320,9 @@ "numActiveVolunteers": { "type": "integer" }, + "numOpportunities": { + "type": "integer" + }, "email": { "type": "string" }, From be0c6a2798cd9e1074ff6e341e3f60e2cde351a3 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Sat, 11 Jul 2026 14:39:33 +0200 Subject: [PATCH 70/89] =?UTF-8?q?=F0=9F=90=9B=20fix:=20allow=20null=20for?= =?UTF-8?q?=20timeslots=20in=20POST=20/opportunity=20schema=20(#745)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fastify's AJV coerces null → [null] for { type: "array" } fields. When creating an event-type opportunity the frontend sends timeslots: null; that null was coerced to [null], the parser looped over it, and tried to destructure null as [day, daytime] → TypeError: opportunityTime is not iterable. Change timeslots to { type: ["array", "null"] } so null passes through unchanged; the existing parser guard (formData.timeslots || []) then short-circuits to an empty array and the loop is never entered. Co-authored-by: Claude Sonnet 4.6 --- src/server/schema/opportunity-create.schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/schema/opportunity-create.schema.ts b/src/server/schema/opportunity-create.schema.ts index b62e02e2..0e57342e 100644 --- a/src/server/schema/opportunity-create.schema.ts +++ b/src/server/schema/opportunity-create.schema.ts @@ -23,7 +23,7 @@ export const opportunityCreateBodySchema = { activities: { type: "array", items: { type: "string" } }, skills: { type: "array", items: { type: "string" } }, berlin_locations: { type: "array", items: { type: "string" } }, - timeslots: { type: "array" }, + timeslots: { type: ["array", "null"] }, onetime_date_time: { type: "string" }, accomp_address: { type: "string" }, accomp_postcode: { type: "string" }, From 4c5c097ed17a0582b80c121afb353071a069abb8 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Sun, 12 Jul 2026 09:51:16 +0200 Subject: [PATCH 71/89] refactor(post): extract validateRelationIds helper (#747) Replace four copy-pasted Set-intersection validation blocks in the POST and PATCH /post handlers with a single pure helper that throws a consistent BadRequestError for missing relation ids. Co-authored-by: Claude Sonnet 4.6 --- src/server/routes/post.routes.ts | 50 ++++--------------- .../utils/data/validate-relation-ids.ts | 15 ++++++ .../utils/data/validate-relation-ids.test.ts | 37 ++++++++++++++ 3 files changed, 63 insertions(+), 39 deletions(-) create mode 100644 src/server/utils/data/validate-relation-ids.ts create mode 100644 src/test/server/utils/data/validate-relation-ids.test.ts diff --git a/src/server/routes/post.routes.ts b/src/server/routes/post.routes.ts index 9fce7d57..0c1af110 100644 --- a/src/server/routes/post.routes.ts +++ b/src/server/routes/post.routes.ts @@ -21,6 +21,7 @@ import { } from "../types"; import { getSkipTake } from "../utils"; import { getAgentPersonRepresentative } from "../utils/data/get-agent-person-representative"; +import { validateRelationIds } from "../utils/data/validate-relation-ids"; export default async function postRoutes( fastify: FastifyInstance, @@ -119,27 +120,12 @@ export default async function postRoutes( : [], ]); - const existingPersonIds = new Set(taggedPersons.map((p) => p.id)); - const missingPersonIds = [...new Set(taggedPersonIds)].filter( - (id) => !existingPersonIds.has(id), + validateRelationIds(taggedPersonIds, taggedPersons, "tagged person"); + validateRelationIds( + linkedOpportunityIds, + linkedOpportunities, + "linked opportunity", ); - if (missingPersonIds.length) { - throw new BadRequestError( - `Invalid tagged person id(s): ${missingPersonIds.join(", ")}`, - ); - } - - const existingOpportunityIds = new Set( - linkedOpportunities.map((o) => o.id), - ); - const missingOpportunityIds = [...new Set(linkedOpportunityIds)].filter( - (id) => !existingOpportunityIds.has(id), - ); - if (missingOpportunityIds.length) { - throw new BadRequestError( - `Invalid linked opportunity id(s): ${missingOpportunityIds.join(", ")}`, - ); - } const post = fastify.db.postRepository.create({ text, @@ -156,7 +142,9 @@ export default async function postRoutes( relations: ["author", "taggedPersons", "linkedOpportunities"], }); - if (!full) {throw new NotFoundError("Post not found.");} + if (!full) { + throw new NotFoundError("Post not found."); + } return reply .status(201) .send({ message: "Post created.", data: dtoPost(full) }); @@ -220,15 +208,7 @@ export default async function postRoutes( id: In(taggedPersonIds), }) : []; - const existingIds = new Set(found.map((p) => p.id)); - const missing = [...new Set(taggedPersonIds)].filter( - (id) => !existingIds.has(id), - ); - if (missing.length) { - throw new BadRequestError( - `Invalid tagged person id(s): ${missing.join(", ")}`, - ); - } + validateRelationIds(taggedPersonIds, found, "tagged person"); post.taggedPersons = found; } if (linkedOpportunityIds !== null && linkedOpportunityIds !== undefined) { @@ -237,15 +217,7 @@ export default async function postRoutes( id: In(linkedOpportunityIds), }) : []; - const existingIds = new Set(found.map((o) => o.id)); - const missing = [...new Set(linkedOpportunityIds)].filter( - (id) => !existingIds.has(id), - ); - if (missing.length) { - throw new BadRequestError( - `Invalid linked opportunity id(s): ${missing.join(", ")}`, - ); - } + validateRelationIds(linkedOpportunityIds, found, "linked opportunity"); post.linkedOpportunities = found; } diff --git a/src/server/utils/data/validate-relation-ids.ts b/src/server/utils/data/validate-relation-ids.ts new file mode 100644 index 00000000..3c117ba1 --- /dev/null +++ b/src/server/utils/data/validate-relation-ids.ts @@ -0,0 +1,15 @@ +import { BadRequestError } from "../../../config"; + +export function validateRelationIds( + requestedIds: number[], + foundEntities: { id: number }[], + label: string, +): void { + const existingIds = new Set(foundEntities.map((e) => e.id)); + const missing = [...new Set(requestedIds)].filter( + (id) => !existingIds.has(id), + ); + if (missing.length) { + throw new BadRequestError(`Invalid ${label} id(s): ${missing.join(", ")}`); + } +} diff --git a/src/test/server/utils/data/validate-relation-ids.test.ts b/src/test/server/utils/data/validate-relation-ids.test.ts new file mode 100644 index 00000000..f39560fb --- /dev/null +++ b/src/test/server/utils/data/validate-relation-ids.test.ts @@ -0,0 +1,37 @@ +import { describe, expect, it } from "vitest"; +import { BadRequestError } from "../../../../config"; +import { validateRelationIds } from "../../../../server/utils/data/validate-relation-ids"; + +describe("validateRelationIds", () => { + it("does not throw when all requested ids are found", () => { + expect(() => + validateRelationIds( + [1, 2, 3], + [{ id: 1 }, { id: 2 }, { id: 3 }], + "person", + ), + ).not.toThrow(); + }); + + it("throws BadRequestError when any id is missing", () => { + expect(() => validateRelationIds([1, 2, 3], [{ id: 1 }], "person")).toThrow( + BadRequestError, + ); + }); + + it("includes the label and missing ids in the error message", () => { + expect(() => + validateRelationIds([1, 2, 3], [{ id: 1 }], "tagged person"), + ).toThrow("Invalid tagged person id(s): 2, 3"); + }); + + it("deduplicates requested ids before checking", () => { + expect(() => + validateRelationIds([1, 1, 2], [{ id: 1 }, { id: 2 }], "person"), + ).not.toThrow(); + }); + + it("does not throw when requestedIds is empty", () => { + expect(() => validateRelationIds([], [], "person")).not.toThrow(); + }); +}); From 79522f21ddead3da17d7aaa129ef7d4357ec77f9 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Sun, 12 Jul 2026 07:58:41 +0000 Subject: [PATCH 72/89] feat(notify): split SMTP into verify and notify transports Infomaniak does not allow multiple senders on one SMTP account, so two separate transports are needed. The existing SMTP transport (SMTP_HOST / SMTP_USER / SMTP_PASS) is now exclusively for email-verification and password-reset. A new transport (SMTP_NOTIFY_HOST / SMTP_NOTIFY_USER / SMTP_NOTIFY_PASS / EMAIL_FROM_NOTIFY) handles all cron-scan and status-change notification emails. Co-Authored-By: Claude Sonnet 4.6 --- .env.example | 11 ++++++++- CLAUDE.md | 3 ++- src/server/plugins/notify.ts | 43 ++++++++++++++++++++++-------------- 3 files changed, 38 insertions(+), 19 deletions(-) diff --git a/.env.example b/.env.example index f142e7fb..cbb38626 100644 --- a/.env.example +++ b/.env.example @@ -1,9 +1,18 @@ -# Transactional email via Infomaniak SMTP. +# Verification emails (email-verification, password-reset) — Infomaniak SMTP account #1. EMAIL_FROM=no-reply@need4deed.org SMTP_HOST=mail.infomaniak.com SMTP_PORT=587 SMTP_USER=no-reply@need4deed.org SMTP_PASS=fake-string + +# Notification emails (cron scans, status-change triggers) — Infomaniak SMTP account #2. +# Infomaniak does not allow multiple senders on one SMTP account, hence the split. +EMAIL_FROM_NOTIFY=notifications@need4deed.org +SMTP_NOTIFY_HOST=mail.infomaniak.com +SMTP_NOTIFY_PORT=587 +SMTP_NOTIFY_USER=notifications@need4deed.org +SMTP_NOTIFY_PASS=fake-string + # Verification email content is read from a per-locale CDN manifest # (${CDN_BASE_URL}emails/verification.json), cached in-memory; falls back to # built-in copy. Optional tuning: diff --git a/CLAUDE.md b/CLAUDE.md index 4b49eeb7..77f01579 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -165,7 +165,8 @@ Copy `.env.example` to `.env` and fill in real values. Key variables: - `JWT_SECRET` — required; server refuses to start without it - `NODE_ENV` — `development` | `test` | `production` - `RUN_MIGRATIONS` — when truthy, auto-run pending migrations on server startup (always on in prod regardless of this flag); see Commands section -- `EMAIL_FROM`, `BREVO_API_KEY` — transactional email via Brevo (verified sender + API key) +- `EMAIL_FROM`, `SMTP_HOST`, `SMTP_PORT`, `SMTP_USER`, `SMTP_PASS` — Infomaniak SMTP account for verification emails (email-verification, password-reset) +- `EMAIL_FROM_NOTIFY`, `SMTP_NOTIFY_HOST`, `SMTP_NOTIFY_PORT`, `SMTP_NOTIFY_USER`, `SMTP_NOTIFY_PASS` — Infomaniak SMTP account for notification emails (cron scans, status-change triggers); separate account because Infomaniak does not allow multiple senders on one SMTP account - `EMAIL_TEMPLATE_TTL_MS`, `EMAIL_TEMPLATE_FETCH_TIMEOUT_MS` — optional; cache TTL + fetch timeout for the verification-email CDN manifest (`${CDN_BASE_URL}emails/verification.json`); falls back to built-in copy - `CORS_ORIGINS` — comma-separated list of allowed origins diff --git a/src/server/plugins/notify.ts b/src/server/plugins/notify.ts index 807de563..1eb91705 100644 --- a/src/server/plugins/notify.ts +++ b/src/server/plugins/notify.ts @@ -66,17 +66,25 @@ function isDryRun(transportKey: string): boolean { return !isProd; } -function buildEmailTransport(): EmailTransport { +function buildVerifyEmailTransport(): EmailTransport { const smtp = new SmtpEmailTransport({ host: process.env.SMTP_HOST ?? "mail.infomaniak.com", port: Number(process.env.SMTP_PORT ?? 587), user: process.env.SMTP_USER ?? "", password: process.env.SMTP_PASS ?? "", }); - if (isDryRun("EMAIL")) { - return new DryRunEmailTransport(smtp); - } - return smtp; + return isDryRun("EMAIL") ? new DryRunEmailTransport(smtp) : smtp; +} + +function buildNotifyEmailTransport(): EmailTransport { + const smtp = new SmtpEmailTransport({ + host: process.env.SMTP_NOTIFY_HOST ?? "mail.infomaniak.com", + port: Number(process.env.SMTP_NOTIFY_PORT ?? 587), + user: process.env.SMTP_NOTIFY_USER ?? "", + password: process.env.SMTP_NOTIFY_PASS ?? "", + from: process.env.EMAIL_FROM_NOTIFY ?? "", + }); + return isDryRun("EMAIL") ? new DryRunEmailTransport(smtp) : smtp; } function buildSlackTransport(): SlackTransport | undefined { @@ -98,34 +106,35 @@ function buildSlackTransport(): SlackTransport | undefined { } async function notifyPlugin(fastify: FastifyInstance) { - const email = buildEmailTransport(); + const emailVerify = buildVerifyEmailTransport(); + const emailNotify = buildNotifyEmailTransport(); const slack = buildSlackTransport(); fastify.decorate("notify", { emailVerification: (user: User) => - sendEmailVerification({ email, jwt: fastify.jwt }, user), + sendEmailVerification({ email: emailVerify, jwt: fastify.jwt }, user), passwordReset: (user: User) => - sendPasswordReset({ email, jwt: fastify.jwt }, user), + sendPasswordReset({ email: emailVerify, jwt: fastify.jwt }, user), opsAlert: (text: string) => sendOpsAlert({ slack }, text), commentTagged: (input: CommentTaggedInput) => sendCommentTagged({ slack }, input), emailSuggestion: (ov: OpportunityVolunteer) => - sendEmailSuggestion(email, ov), - emailStale: (ov: OpportunityVolunteer) => sendEmailStale(email, ov), + sendEmailSuggestion(emailNotify, ov), + emailStale: (ov: OpportunityVolunteer) => sendEmailStale(emailNotify, ov), emailIntroduction: (ov: OpportunityVolunteer) => - sendEmailIntroduction(email, ov), + sendEmailIntroduction(emailNotify, ov), emailPostMatchCheckup: (ov: OpportunityVolunteer) => - sendEmailPostMatchCheckup(email, ov), + sendEmailPostMatchCheckup(emailNotify, ov), emailAccompanyNotFound: (opportunity: Opportunity) => - sendEmailAccompanyNotFound(email, opportunity), + sendEmailAccompanyNotFound(emailNotify, opportunity), emailAccompanyMatch: (ov: OpportunityVolunteer) => - sendEmailAccompanyMatch(email, ov), + sendEmailAccompanyMatch(emailNotify, ov), emailRegularUpdate: (opportunity: Opportunity) => - sendEmailRegularUpdate(email, opportunity), + sendEmailRegularUpdate(emailNotify, opportunity), emailNewRegular: (opportunity: Opportunity) => - sendEmailNewRegular(email, opportunity), + sendEmailNewRegular(emailNotify, opportunity), emailNewAccompanying: (opportunity: Opportunity) => - sendEmailNewAccompanying(email, opportunity), + sendEmailNewAccompanying(emailNotify, opportunity), }); } From 0338356d6c372ac60cbf65fb51a44f8c1bab1765 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Sun, 12 Jul 2026 08:15:49 +0000 Subject: [PATCH 73/89] fix: set EMAIL_FROM_NOTIFY to coordinators@need4deed.org Co-Authored-By: Claude Sonnet 4.6 --- .env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index cbb38626..1f745980 100644 --- a/.env.example +++ b/.env.example @@ -7,10 +7,10 @@ SMTP_PASS=fake-string # Notification emails (cron scans, status-change triggers) — Infomaniak SMTP account #2. # Infomaniak does not allow multiple senders on one SMTP account, hence the split. -EMAIL_FROM_NOTIFY=notifications@need4deed.org +EMAIL_FROM_NOTIFY=coordinators@need4deed.org SMTP_NOTIFY_HOST=mail.infomaniak.com SMTP_NOTIFY_PORT=587 -SMTP_NOTIFY_USER=notifications@need4deed.org +SMTP_NOTIFY_USER=coordinators@need4deed.org SMTP_NOTIFY_PASS=fake-string # Verification email content is read from a per-locale CDN manifest From 6251955c8a8c970daad2c59f1b5be062ad43db73 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Sun, 12 Jul 2026 08:43:58 +0000 Subject: [PATCH 74/89] feat(notify): add CC addresses to outbound notification emails MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a cc field to EmailMessage and wire it through SmtpEmailTransport (passes to nodemailer) and DryRunEmailTransport (strips CC, appends CC addresses to the [TO: ...] subject prefix for visibility). Add emailFromAccompanying constant (accompanying@need4deed.org). CC assignments per trigger: - emailSuggestion → cc: volunteer@need4deed.org - emailAccompanyMatch → cc: contact@need4deed.org - emailIntroduction → cc: [contact@, volunteer@] (was incorrectly stuffed into to[]) - emailNewAccompanying → cc: [contact@, accompanying@] - emailStale → cc: volunteer@need4deed.org - emailPostMatchCheckup → cc: volunteer@need4deed.org - emailAccompanyNotFound → cc: accompanying@need4deed.org - emailRegularUpdate → cc: contact@need4deed.org Co-Authored-By: Claude Sonnet 4.6 --- src/config/constants.ts | 1 + src/services/notify/events/email-accompany-match.ts | 1 + .../notify/events/email-accompany-not-found.ts | 2 ++ src/services/notify/events/email-introduction.ts | 3 ++- .../notify/events/email-new-accompanying.ts | 2 ++ .../notify/events/email-post-match-checkup.ts | 1 + src/services/notify/events/email-regular-update.ts | 1 + src/services/notify/events/email-stale.ts | 1 + src/services/notify/events/email-suggestion.ts | 1 + src/services/notify/transports/dry-run.ts | 13 +++++++++++-- src/services/notify/transports/email-smtp.ts | 1 + src/services/notify/types.ts | 1 + 12 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/config/constants.ts b/src/config/constants.ts index 98d7a36a..1176dd25 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -121,6 +121,7 @@ export const emailNewAccompanyingManifestUrl = export const emailFromVolunteer = "volunteer@need4deed.org"; export const emailFromContact = "contact@need4deed.org"; +export const emailFromAccompanying = "accompanying@need4deed.org"; // How long a fetched email manifest is cached in-memory (default 10 min). export const emailTemplateTtlMs = Number(process.env.EMAIL_TEMPLATE_TTL_MS) || 10 * 60 * 1000; diff --git a/src/services/notify/events/email-accompany-match.ts b/src/services/notify/events/email-accompany-match.ts index 3e6c7085..22bbeb84 100644 --- a/src/services/notify/events/email-accompany-match.ts +++ b/src/services/notify/events/email-accompany-match.ts @@ -121,6 +121,7 @@ export async function sendEmailAccompanyMatch( await email.send({ to: contactPersonEmail, + cc: emailFromContact, from: emailFromContact, subject, ...(text !== undefined ? { text } : {}), diff --git a/src/services/notify/events/email-accompany-not-found.ts b/src/services/notify/events/email-accompany-not-found.ts index 61673f21..3a0573bc 100644 --- a/src/services/notify/events/email-accompany-not-found.ts +++ b/src/services/notify/events/email-accompany-not-found.ts @@ -1,6 +1,7 @@ import { Lang } from "need4deed-sdk"; import { emailAccompanyNotFoundManifestUrl, + emailFromAccompanying, emailFromContact, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; @@ -68,6 +69,7 @@ export async function sendEmailAccompanyNotFound( await email.send({ to: contactPersonEmail, + cc: emailFromAccompanying, from: emailFromContact, subject, ...(text !== undefined ? { text } : {}), diff --git a/src/services/notify/events/email-introduction.ts b/src/services/notify/events/email-introduction.ts index e131f433..5f32e30e 100644 --- a/src/services/notify/events/email-introduction.ts +++ b/src/services/notify/events/email-introduction.ts @@ -150,7 +150,8 @@ export async function sendEmailIntroduction( }); await email.send({ - to: [volunteerEmail, contactPersonEmail, emailFromVolunteer], + to: [volunteerEmail, contactPersonEmail], + cc: [emailFromContact, emailFromVolunteer], from: emailFromContact, subject, ...(text !== undefined ? { text } : {}), diff --git a/src/services/notify/events/email-new-accompanying.ts b/src/services/notify/events/email-new-accompanying.ts index 843f65a8..d87b4582 100644 --- a/src/services/notify/events/email-new-accompanying.ts +++ b/src/services/notify/events/email-new-accompanying.ts @@ -1,5 +1,6 @@ import { Lang } from "need4deed-sdk"; import { + emailFromAccompanying, emailFromContact, emailNewAccompanyingManifestUrl, } from "../../../config/constants"; @@ -82,6 +83,7 @@ export async function sendEmailNewAccompanying( await email.send({ to: contactPersonEmail, + cc: [emailFromContact, emailFromAccompanying], from: emailFromContact, subject, ...(text !== undefined ? { text } : {}), diff --git a/src/services/notify/events/email-post-match-checkup.ts b/src/services/notify/events/email-post-match-checkup.ts index 31498930..507e49fc 100644 --- a/src/services/notify/events/email-post-match-checkup.ts +++ b/src/services/notify/events/email-post-match-checkup.ts @@ -48,6 +48,7 @@ export async function sendEmailPostMatchCheckup( await email.send({ to: volunteerEmail, + cc: emailFromVolunteer, from: emailFromVolunteer, subject, ...(text !== undefined ? { text } : {}), diff --git a/src/services/notify/events/email-regular-update.ts b/src/services/notify/events/email-regular-update.ts index e2dc30af..3b77ddc1 100644 --- a/src/services/notify/events/email-regular-update.ts +++ b/src/services/notify/events/email-regular-update.ts @@ -53,6 +53,7 @@ export async function sendEmailRegularUpdate( await email.send({ to: contactPersonEmail, + cc: emailFromContact, from: emailFromContact, subject, ...(text !== undefined ? { text } : {}), diff --git a/src/services/notify/events/email-stale.ts b/src/services/notify/events/email-stale.ts index 5c0ed2c6..3038abc0 100644 --- a/src/services/notify/events/email-stale.ts +++ b/src/services/notify/events/email-stale.ts @@ -48,6 +48,7 @@ export async function sendEmailStale( await email.send({ to: volunteerEmail, + cc: emailFromVolunteer, from: emailFromVolunteer, subject, ...(text !== undefined ? { text } : {}), diff --git a/src/services/notify/events/email-suggestion.ts b/src/services/notify/events/email-suggestion.ts index 9050bfd8..8b093841 100644 --- a/src/services/notify/events/email-suggestion.ts +++ b/src/services/notify/events/email-suggestion.ts @@ -61,6 +61,7 @@ export async function sendEmailSuggestion( await email.send({ to: volunteerEmail, + cc: emailFromVolunteer, from: emailFromVolunteer, subject, ...(text !== undefined ? { text } : {}), diff --git a/src/services/notify/transports/dry-run.ts b/src/services/notify/transports/dry-run.ts index 8342b88c..1f7a193b 100644 --- a/src/services/notify/transports/dry-run.ts +++ b/src/services/notify/transports/dry-run.ts @@ -13,13 +13,22 @@ export class DryRunEmailTransport implements EmailTransport { async send(msg: EmailMessage): Promise { const originalTo = Array.isArray(msg.to) ? msg.to.join(", ") : msg.to; + const originalCc = msg.cc + ? Array.isArray(msg.cc) + ? msg.cc.join(", ") + : msg.cc + : undefined; + const prefix = originalCc + ? `[TO: ${originalTo} CC: ${originalCc}]` + : `[TO: ${originalTo}]`; const redirected: EmailMessage = { ...msg, to: DRY_RUN_RECIPIENT, - subject: `[TO: ${originalTo}] ${msg.subject}`, + cc: undefined, + subject: `${prefix} ${msg.subject}`, }; logger.info( - `[notify:dry-run] redirecting email to ${DRY_RUN_RECIPIENT} — original to: "${originalTo}", subject: "${msg.subject}"`, + `[notify:dry-run] redirecting email to ${DRY_RUN_RECIPIENT} — original to: "${originalTo}"${originalCc ? `, cc: "${originalCc}"` : ""}, subject: "${msg.subject}"`, ); await this.realTransport.send(redirected); } diff --git a/src/services/notify/transports/email-smtp.ts b/src/services/notify/transports/email-smtp.ts index 450262cb..4bfa6486 100644 --- a/src/services/notify/transports/email-smtp.ts +++ b/src/services/notify/transports/email-smtp.ts @@ -28,6 +28,7 @@ export class SmtpEmailTransport implements EmailTransport { await this.transporter.sendMail({ from: msg.from ?? this.from, to: msg.to, + ...(msg.cc !== undefined ? { cc: msg.cc } : {}), subject: msg.subject, text: msg.text, html: msg.html, diff --git a/src/services/notify/types.ts b/src/services/notify/types.ts index d0be1789..76763f68 100644 --- a/src/services/notify/types.ts +++ b/src/services/notify/types.ts @@ -1,5 +1,6 @@ export interface EmailMessage { to: string | string[]; + cc?: string | string[]; subject: string; text?: string; html?: string; From 9018d243a17b1647dc9afc73ce97ef5279ef22a7 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Sun, 12 Jul 2026 09:12:49 +0000 Subject: [PATCH 75/89] refactor(notify): read sender addresses from env vars EMAIL_FROM_VOLUNTEER, EMAIL_FROM_CONTACT, EMAIL_FROM_ACCOMPANYING fall back to the existing @need4deed.org defaults when unset. Co-Authored-By: Claude Sonnet 4.6 --- .env.example | 5 +++++ src/config/constants.ts | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index f142e7fb..2c172a92 100644 --- a/.env.example +++ b/.env.example @@ -10,6 +10,11 @@ SMTP_PASS=fake-string EMAIL_TEMPLATE_TTL_MS=600000 EMAIL_TEMPLATE_FETCH_TIMEOUT_MS=5000 +# Sender addresses for outbound notification emails (fall back to these defaults if unset). +EMAIL_FROM_VOLUNTEER=volunteer@need4deed.org +EMAIL_FROM_CONTACT=contact@need4deed.org +EMAIL_FROM_ACCOMPANYING=accompanying@need4deed.org + # Notification controls (default: dry-run on in non-prod, cron active) # NOTIFY_DRY_RUN=true — redirect all emails to test@need4deed.org with [TO: ] subject prefix # NOTIFY_EMAIL_DRY_RUN=true — same, email-only override diff --git a/src/config/constants.ts b/src/config/constants.ts index 1176dd25..ee1242af 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -119,9 +119,12 @@ export const emailNewRegularManifestUrl = export const emailNewAccompanyingManifestUrl = CDNBaseUrl + "/emails/confirmationaccompanying.json"; -export const emailFromVolunteer = "volunteer@need4deed.org"; -export const emailFromContact = "contact@need4deed.org"; -export const emailFromAccompanying = "accompanying@need4deed.org"; +export const emailFromVolunteer = + process.env.EMAIL_FROM_VOLUNTEER || "volunteer@need4deed.org"; +export const emailFromContact = + process.env.EMAIL_FROM_CONTACT || "contact@need4deed.org"; +export const emailFromAccompanying = + process.env.EMAIL_FROM_ACCOMPANYING || "accompanying@need4deed.org"; // How long a fetched email manifest is cached in-memory (default 10 min). export const emailTemplateTtlMs = Number(process.env.EMAIL_TEMPLATE_TTL_MS) || 10 * 60 * 1000; From d3319d75753a03305c883143c757a6cd24057a96 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Sun, 12 Jul 2026 09:21:44 +0000 Subject: [PATCH 76/89] use emailFromNotify as from on all 8 notification triggers All notification emails now send from coordinators@need4deed.org (the dedicated notify SMTP account). The cc addresses remain the role-specific ones (volunteer@, contact@, accompanying@) so replies still reach the right inbox. EMAIL_FROM_NOTIFY is configurable via env var. Co-Authored-By: Claude Sonnet 4.6 --- .env.example | 2 ++ src/config/constants.ts | 2 ++ src/services/notify/events/email-accompany-match.ts | 3 ++- src/services/notify/events/email-accompany-not-found.ts | 4 ++-- src/services/notify/events/email-introduction.ts | 3 ++- src/services/notify/events/email-new-accompanying.ts | 3 ++- src/services/notify/events/email-post-match-checkup.ts | 3 ++- src/services/notify/events/email-regular-update.ts | 3 ++- src/services/notify/events/email-stale.ts | 3 ++- src/services/notify/events/email-suggestion.ts | 3 ++- 10 files changed, 20 insertions(+), 9 deletions(-) diff --git a/.env.example b/.env.example index 2c172a92..2fb9c4a3 100644 --- a/.env.example +++ b/.env.example @@ -11,6 +11,8 @@ EMAIL_TEMPLATE_TTL_MS=600000 EMAIL_TEMPLATE_FETCH_TIMEOUT_MS=5000 # Sender addresses for outbound notification emails (fall back to these defaults if unset). +# EMAIL_FROM_NOTIFY is the SMTP account used as `from` on all 8 notification triggers. +EMAIL_FROM_NOTIFY=coordinators@need4deed.org EMAIL_FROM_VOLUNTEER=volunteer@need4deed.org EMAIL_FROM_CONTACT=contact@need4deed.org EMAIL_FROM_ACCOMPANYING=accompanying@need4deed.org diff --git a/src/config/constants.ts b/src/config/constants.ts index ee1242af..06ac26c7 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -125,6 +125,8 @@ export const emailFromContact = process.env.EMAIL_FROM_CONTACT || "contact@need4deed.org"; export const emailFromAccompanying = process.env.EMAIL_FROM_ACCOMPANYING || "accompanying@need4deed.org"; +export const emailFromNotify = + process.env.EMAIL_FROM_NOTIFY || "coordinators@need4deed.org"; // How long a fetched email manifest is cached in-memory (default 10 min). export const emailTemplateTtlMs = Number(process.env.EMAIL_TEMPLATE_TTL_MS) || 10 * 60 * 1000; diff --git a/src/services/notify/events/email-accompany-match.ts b/src/services/notify/events/email-accompany-match.ts index 22bbeb84..ccea07db 100644 --- a/src/services/notify/events/email-accompany-match.ts +++ b/src/services/notify/events/email-accompany-match.ts @@ -2,6 +2,7 @@ import { Lang } from "need4deed-sdk"; import { emailAccompanyMatchManifestUrl, emailFromContact, + emailFromNotify, } from "../../../config/constants"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; import { getLanguages } from "../../dto/utils"; @@ -122,7 +123,7 @@ export async function sendEmailAccompanyMatch( await email.send({ to: contactPersonEmail, cc: emailFromContact, - from: emailFromContact, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}), diff --git a/src/services/notify/events/email-accompany-not-found.ts b/src/services/notify/events/email-accompany-not-found.ts index 3a0573bc..c55ae546 100644 --- a/src/services/notify/events/email-accompany-not-found.ts +++ b/src/services/notify/events/email-accompany-not-found.ts @@ -2,7 +2,7 @@ import { Lang } from "need4deed-sdk"; import { emailAccompanyNotFoundManifestUrl, emailFromAccompanying, - emailFromContact, + emailFromNotify, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; import { @@ -70,7 +70,7 @@ export async function sendEmailAccompanyNotFound( await email.send({ to: contactPersonEmail, cc: emailFromAccompanying, - from: emailFromContact, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}), diff --git a/src/services/notify/events/email-introduction.ts b/src/services/notify/events/email-introduction.ts index 5f32e30e..6b5d96d2 100644 --- a/src/services/notify/events/email-introduction.ts +++ b/src/services/notify/events/email-introduction.ts @@ -1,6 +1,7 @@ import { DocumentStatusType, Lang, VolunteerStateCGCType } from "need4deed-sdk"; import { emailFromContact, + emailFromNotify, emailFromVolunteer, emailIntroductionManifestUrl, } from "../../../config/constants"; @@ -152,7 +153,7 @@ export async function sendEmailIntroduction( await email.send({ to: [volunteerEmail, contactPersonEmail], cc: [emailFromContact, emailFromVolunteer], - from: emailFromContact, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}), diff --git a/src/services/notify/events/email-new-accompanying.ts b/src/services/notify/events/email-new-accompanying.ts index d87b4582..5965ccf7 100644 --- a/src/services/notify/events/email-new-accompanying.ts +++ b/src/services/notify/events/email-new-accompanying.ts @@ -2,6 +2,7 @@ import { Lang } from "need4deed-sdk"; import { emailFromAccompanying, emailFromContact, + emailFromNotify, emailNewAccompanyingManifestUrl, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; @@ -84,7 +85,7 @@ export async function sendEmailNewAccompanying( await email.send({ to: contactPersonEmail, cc: [emailFromContact, emailFromAccompanying], - from: emailFromContact, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}), diff --git a/src/services/notify/events/email-post-match-checkup.ts b/src/services/notify/events/email-post-match-checkup.ts index 507e49fc..2f9b17bb 100644 --- a/src/services/notify/events/email-post-match-checkup.ts +++ b/src/services/notify/events/email-post-match-checkup.ts @@ -1,5 +1,6 @@ import { Lang } from "need4deed-sdk"; import { + emailFromNotify, emailFromVolunteer, emailPostMatchCheckupManifestUrl, } from "../../../config/constants"; @@ -49,7 +50,7 @@ export async function sendEmailPostMatchCheckup( await email.send({ to: volunteerEmail, cc: emailFromVolunteer, - from: emailFromVolunteer, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}), diff --git a/src/services/notify/events/email-regular-update.ts b/src/services/notify/events/email-regular-update.ts index 3b77ddc1..f6770a6e 100644 --- a/src/services/notify/events/email-regular-update.ts +++ b/src/services/notify/events/email-regular-update.ts @@ -1,6 +1,7 @@ import { Lang } from "need4deed-sdk"; import { emailFromContact, + emailFromNotify, emailRegularUpdateManifestUrl, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; @@ -54,7 +55,7 @@ export async function sendEmailRegularUpdate( await email.send({ to: contactPersonEmail, cc: emailFromContact, - from: emailFromContact, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}), diff --git a/src/services/notify/events/email-stale.ts b/src/services/notify/events/email-stale.ts index 3038abc0..eb28fa70 100644 --- a/src/services/notify/events/email-stale.ts +++ b/src/services/notify/events/email-stale.ts @@ -1,5 +1,6 @@ import { Lang } from "need4deed-sdk"; import { + emailFromNotify, emailFromVolunteer, emailStaleManifestUrl, } from "../../../config/constants"; @@ -49,7 +50,7 @@ export async function sendEmailStale( await email.send({ to: volunteerEmail, cc: emailFromVolunteer, - from: emailFromVolunteer, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}), diff --git a/src/services/notify/events/email-suggestion.ts b/src/services/notify/events/email-suggestion.ts index 8b093841..56e84e7d 100644 --- a/src/services/notify/events/email-suggestion.ts +++ b/src/services/notify/events/email-suggestion.ts @@ -1,5 +1,6 @@ import { Lang } from "need4deed-sdk"; import { + emailFromNotify, emailFromVolunteer, emailSuggestionManifestUrl, } from "../../../config/constants"; @@ -62,7 +63,7 @@ export async function sendEmailSuggestion( await email.send({ to: volunteerEmail, cc: emailFromVolunteer, - from: emailFromVolunteer, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}), From 4725f84afa3be1ef9c1ccf4e65d55f0b0b6cb7a6 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Sun, 12 Jul 2026 13:28:31 +0200 Subject: [PATCH 77/89] =?UTF-8?q?=F0=9F=90=9B=20fix:=20make=20PLZ=20option?= =?UTF-8?q?al=20in=20agent=20address=20lookup=20so=20search=20fires=20on?= =?UTF-8?q?=20street=20alone=20(#750)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The /agent/register/search guard required postcode, but the frontend only has the street at the time of typing. Make plz optional in getAgentByAddress (still used as a narrowing filter when provided) and drop !postcode from the route guard so the lookup fires as soon as street >= 3 chars. Co-authored-by: Claude Sonnet 4.6 --- src/server/routes/agent/register.routes.ts | 2 +- .../utils/data/get-agent-by-postcode.ts | 22 +++---- .../utils/data/get-agent-by-postcode.test.ts | 58 +++++++++++++++---- 3 files changed, 58 insertions(+), 24 deletions(-) diff --git a/src/server/routes/agent/register.routes.ts b/src/server/routes/agent/register.routes.ts index 81a2506f..ff557f66 100644 --- a/src/server/routes/agent/register.routes.ts +++ b/src/server/routes/agent/register.routes.ts @@ -91,7 +91,7 @@ export default async function agentRegisterRoutes( const street = (request.query.street ?? "").trim(); const postcode = (request.query.postcode ?? "").trim(); const domain = request.registrant?.email.split("@").pop()?.toLowerCase(); - if (street.length < 3 || !postcode || !domain) { + if (street.length < 3 || !domain) { return reply.status(200).send({ message: "No query", data: [] }); } diff --git a/src/server/utils/data/get-agent-by-postcode.ts b/src/server/utils/data/get-agent-by-postcode.ts index 75092475..d165e22c 100644 --- a/src/server/utils/data/get-agent-by-postcode.ts +++ b/src/server/utils/data/get-agent-by-postcode.ts @@ -5,8 +5,8 @@ function normalizeStreet(s: string): string { .trim() .toLowerCase() .replace(/\s*stra(?:ße|sse)\b/g, "str") // straße / strasse → str - .replace(/\s*str\./g, "str") // str. → str - .replace(/\s+str\b/g, "str"); // " str" → str + .replace(/\s*str\./g, "str") // str. → str + .replace(/\s+str\b/g, "str"); // " str" → str } const HOUSE_NUMBER_RE = /\s+(\d+[\w-]*(?:\s+[a-z]+)?)$/; @@ -22,7 +22,7 @@ function extractHouseNumber(s: string): string | undefined { } function agentHasPlz(a: Agent, plz: string): boolean { - if (a.address?.postcode?.value === plz) return true; + if (a.address?.postcode?.value === plz) {return true;} return !!a.agentPostcode?.some((ap) => ap.postcode?.value === plz); } @@ -34,34 +34,34 @@ function streetNameWordRegex(streetName: string): RegExp { export function getAgentByAddress( agents: Agent[], street: string, - plz: string, + plz?: string, ): Agent | undefined { const normStreet = normalizeStreet(street); // 1. Strict: agents created via new code have address.street set const strict = agents.find( (a) => - a.address?.postcode?.value === plz && + (!plz || a.address?.postcode?.value === plz) && normalizeStreet(a.address?.street ?? "") === normStreet, ); - if (strict) return strict; + if (strict) {return strict;} // 2. Fuzzy fallback for legacy agents: street name (no number) found as a - // whole word in agent title + PLZ from either address.postcode or agentPostcode. + // whole word in agent title. PLZ narrows the match when provided. // Number consistency: if the agent title contains a number it must match the // form's number — prevents "Heerstr 10" matching form input "Heerstr 110". // Agents with no number in title (e.g. "Refugium Hausvaterweg") match on // street name alone. const streetName = extractStreetName(street); - if (!streetName) return undefined; + if (!streetName) {return undefined;} const streetRegex = streetNameWordRegex(streetName); const houseNumber = extractHouseNumber(street); const fuzzyMatches = agents.filter((a) => { - if (!agentHasPlz(a, plz)) return false; - if (!streetRegex.test(normalizeStreet(a.title ?? ""))) return false; + if (plz && !agentHasPlz(a, plz)) {return false;} + if (!streetRegex.test(normalizeStreet(a.title ?? ""))) {return false;} const titleNumber = extractHouseNumber(a.title ?? ""); - if (titleNumber && houseNumber && titleNumber !== houseNumber) return false; + if (titleNumber && houseNumber && titleNumber !== houseNumber) {return false;} return true; }); diff --git a/src/test/server/utils/data/get-agent-by-postcode.test.ts b/src/test/server/utils/data/get-agent-by-postcode.test.ts index 39d511ed..572b788c 100644 --- a/src/test/server/utils/data/get-agent-by-postcode.test.ts +++ b/src/test/server/utils/data/get-agent-by-postcode.test.ts @@ -6,8 +6,14 @@ import { describe("getAgentByPostcode", () => { const agents = [ - { id: 1, address: { postcode: { value: "12345" }, street: "Müllerstraße 48" } }, - { id: 2, address: { postcode: { value: "55555" }, street: "Hauptstr. 10" } }, + { + id: 1, + address: { postcode: { value: "12345" }, street: "Müllerstraße 48" }, + }, + { + id: 2, + address: { postcode: { value: "55555" }, street: "Hauptstr. 10" }, + }, ] as any; it("returns agent for matching postcode", () => { @@ -45,12 +51,22 @@ describe("getAgentByAddress — street normalisation", () => { }); it("does not match wrong postcode", () => { - expect(getAgentByAddress(agents, "Müllerstraße 48", "00000")).toBeUndefined(); + expect( + getAgentByAddress(agents, "Müllerstraße 48", "00000"), + ).toBeUndefined(); }); it("does not match wrong street", () => { expect(getAgentByAddress(agents, "Hauptstraße 1", plz)).toBeUndefined(); }); + + it("matches by street alone when PLZ is omitted", () => { + expect(getAgentByAddress(agents, "Müllerstraße 48")).toEqual(agent); + }); + + it("does not match wrong street when PLZ is omitted", () => { + expect(getAgentByAddress(agents, "Hauptstraße 1")).toBeUndefined(); + }); }); describe("getAgentByAddress — fuzzy fallback for legacy agents", () => { @@ -64,11 +80,15 @@ describe("getAgentByAddress — fuzzy fallback for legacy agents", () => { const plz = "13353"; it("matches form address street name against agent title via agentPostcode PLZ", () => { - expect(getAgentByAddress(agents, "Hausvaterweg 21", plz)).toEqual(legacyAgent); + expect(getAgentByAddress(agents, "Hausvaterweg 21", plz)).toEqual( + legacyAgent, + ); }); it("does not match when PLZ differs", () => { - expect(getAgentByAddress(agents, "Hausvaterweg 21", "99999")).toBeUndefined(); + expect( + getAgentByAddress(agents, "Hausvaterweg 21", "99999"), + ).toBeUndefined(); }); it("does not match when street name not in title", () => { @@ -88,8 +108,12 @@ describe("getAgentByAddress — fuzzy fallback for legacy agents", () => { address: null, agentPostcode: [{ postcode: { value: "13353" } }], } as any; - expect(getAgentByAddress([agentAt21, agentAt45], "Hausvaterweg 21", plz)).toEqual(agentAt21); - expect(getAgentByAddress([agentAt21, agentAt45], "Hausvaterweg 45", plz)).toEqual(agentAt45); + expect( + getAgentByAddress([agentAt21, agentAt45], "Hausvaterweg 21", plz), + ).toEqual(agentAt21); + expect( + getAgentByAddress([agentAt21, agentAt45], "Hausvaterweg 45", plz), + ).toEqual(agentAt45); }); it("returns undefined when multiple agents share street and PLZ and none has the number in title", () => { @@ -99,7 +123,9 @@ describe("getAgentByAddress — fuzzy fallback for legacy agents", () => { address: null, agentPostcode: [{ postcode: { value: "13353" } }], } as any; - expect(getAgentByAddress([legacyAgent, second], "Hausvaterweg 21", plz)).toBeUndefined(); + expect( + getAgentByAddress([legacyAgent, second], "Hausvaterweg 21", plz), + ).toBeUndefined(); }); it("does not match 'Heerstr 10' when form submits 'Heerstr 110' (number prefix false positive)", () => { @@ -109,7 +135,9 @@ describe("getAgentByAddress — fuzzy fallback for legacy agents", () => { address: null, agentPostcode: [{ postcode: { value: "13353" } }], } as any; - expect(getAgentByAddress([heerstr10], "Heerstr 110", "13353")).toBeUndefined(); + expect( + getAgentByAddress([heerstr10], "Heerstr 110", "13353"), + ).toBeUndefined(); }); it("matches 'Heerstr 110' agent when form submits 'Heerstr 110'", () => { @@ -125,7 +153,9 @@ describe("getAgentByAddress — fuzzy fallback for legacy agents", () => { address: null, agentPostcode: [{ postcode: { value: "13353" } }], } as any; - expect(getAgentByAddress([heerstr10, heerstr110], "Heerstr 110", "13353")).toEqual(heerstr110); + expect( + getAgentByAddress([heerstr10, heerstr110], "Heerstr 110", "13353"), + ).toEqual(heerstr110); }); it("does not false-match when street name is a substring of a different street in title", () => { @@ -140,10 +170,14 @@ describe("getAgentByAddress — fuzzy fallback for legacy agents", () => { }); it("matches address with hyphenated house number range", () => { - expect(getAgentByAddress(agents, "Hausvaterweg 5-7", plz)).toEqual(legacyAgent); + expect(getAgentByAddress(agents, "Hausvaterweg 5-7", plz)).toEqual( + legacyAgent, + ); }); it("matches address with space-separated letter suffix (e.g. '21 A')", () => { - expect(getAgentByAddress(agents, "Hausvaterweg 21 A", plz)).toEqual(legacyAgent); + expect(getAgentByAddress(agents, "Hausvaterweg 21 A", plz)).toEqual( + legacyAgent, + ); }); }); From 8f71cb0e036f29c9a58de7da1a02d3ac678228c7 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Sun, 12 Jul 2026 13:52:39 +0200 Subject: [PATCH 78/89] =?UTF-8?q?=F0=9F=90=9B=20fix:=20embed=20role=20in?= =?UTF-8?q?=20verification=20URL=20so=20agent=20redirect=20doesn't=20need?= =?UTF-8?q?=20browser=20cookie=20(#751)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit n4d_pending_role cookie was fragile — absent when the link is opened in a different browser than where registration happened. Append ?role=agent to the verification URL for AGENT users so the redirect target is always in the URL. Co-authored-by: Claude Sonnet 4.6 --- .../notify/events/email-verification.ts | 6 +++-- .../notify/email-verification.test.ts | 27 ++++++++++++++++++- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/src/services/notify/events/email-verification.ts b/src/services/notify/events/email-verification.ts index 8a59eeb5..ee0565f3 100644 --- a/src/services/notify/events/email-verification.ts +++ b/src/services/notify/events/email-verification.ts @@ -1,5 +1,5 @@ import type { JWT, TokenType } from "@fastify/jwt"; -import { Lang } from "need4deed-sdk"; +import { Lang, UserRole } from "need4deed-sdk"; import { emailVerificationManifestUrl, urlEmailVerification, @@ -53,7 +53,9 @@ export async function sendEmailVerification( email: user.email, type: "verify" as TokenType, }); - const url = `${urlEmailVerification}/${token}`; + const roleParam = + user.role === UserRole.AGENT ? `?role=${UserRole.AGENT}` : ""; + const url = `${urlEmailVerification}/${token}${roleParam}`; logger.debug(`sendEmailVerification: ${user.email}, url: ${url}`); diff --git a/src/test/services/notify/email-verification.test.ts b/src/test/services/notify/email-verification.test.ts index 1a616bed..8e1ebfb8 100644 --- a/src/test/services/notify/email-verification.test.ts +++ b/src/test/services/notify/email-verification.test.ts @@ -1,4 +1,4 @@ -import { Lang } from "need4deed-sdk"; +import { Lang, UserRole } from "need4deed-sdk"; import { beforeEach, describe, expect, it, vi } from "vitest"; import { urlEmailVerification } from "../../../config/constants"; import { fetchJsonFromUrl } from "../../../data/utils"; @@ -90,4 +90,29 @@ describe("sendEmailVerification", () => { sendEmailVerification(deps, user({ email: undefined })), ).rejects.toThrow("User email is required"); }); + + it("appends ?role=agent to the URL for AGENT users", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue(manifest); + + await sendEmailVerification( + deps, + user({ role: UserRole.AGENT, language: Lang.EN }), + ); + + const msg = send.mock.calls[0][0]; + expect(msg.text).toContain(`${expectedUrl}?role=agent`); + }); + + it("does not append a role param for non-agent users", async () => { + vi.mocked(fetchJsonFromUrl).mockResolvedValue(manifest); + + await sendEmailVerification( + deps, + user({ role: UserRole.USER, language: Lang.EN }), + ); + + const msg = send.mock.calls[0][0]; + expect(msg.text).toContain(expectedUrl); + expect(msg.text).not.toContain("?role="); + }); }); From 82749b9adb36e926a0e6613f5a883f7b83277ab9 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Mon, 13 Jul 2026 13:03:15 +0200 Subject: [PATCH 79/89] Replace bootstrap SQL dump with clean seed infrastructure (#753) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * replace bootstrap SQL dump with clean seed infrastructure - Remove scrambled-dump.sql and bootstrap.sh from data-bootstrap/; the pg_dump approach was derived from production data and posed a PII risk even when scrambled. - Add dev/files/fixtures/ with three fake-data JSON files (nid-agents.json, nid-opportunities.json, nid-volunteers.json): 8 fake RACs, 12 opportunities, 15 volunteers, all cross-referenced by NID, zero real personal data. - Wire populate seeders to the fixtures directory (constants.ts paths updated from dev/files/notion/ to dev/files/fixtures/). - Add src/data/seeds/populate/agent-user.seed.ts: after agents are seeded, creates UserRole.USER accounts for the 5 RAC contact persons that carry an @example.com email in the fixture. - Expand user.seed.ts from 1+1 to 1 admin + 3 coordinators (sarah/michael/ julia.doe) + 1 dummy USER (anna.doe, kept as seed-utils fallback person). - Add src/data/seeds/run.ts entry point (initDatabase → seed) and a "seed" npm script so the bootstrap container can call yarn seed. - Rewrite data-bootstrap/Dockerfile: drop postgres:17 base, use node:22-alpine, install be deps, run yarn seed. - Update docker-compose.yaml: bootstrap now builds from the be/ root with dockerfile: data-bootstrap/Dockerfile; adds NODE_ENV=development and RUN_MIGRATIONS=true so migrations run before seeding. Co-Authored-By: Claude Sonnet 4.6 * move populate fixtures from dev/ to src/data/seeds/fixtures/ dev/ is gitignored; fixtures are committed source files and belong alongside the seeder code. Update constants.ts paths accordingly. Co-Authored-By: Claude Sonnet 4.6 --------- Co-authored-by: Claude Sonnet 4.6 --- data-bootstrap/Dockerfile | 26 +- data-bootstrap/bootstrap.sh | 21 - data-bootstrap/scrambled-dump.sql | 49008 ---------------- docker-compose.yaml | 5 +- package.json | 1 + src/config/constants.ts | 10 +- src/data/seeds/fixtures/nid-agents.json | 164 + .../seeds/fixtures/nid-opportunities.json | 430 + src/data/seeds/fixtures/nid-volunteers.json | 641 + src/data/seeds/populate/agent-user.seed.ts | 44 + src/data/seeds/run.ts | 11 + src/data/seeds/seed.ts | 2 + src/data/seeds/user.seed.ts | 36 +- 13 files changed, 1340 insertions(+), 49059 deletions(-) delete mode 100644 data-bootstrap/bootstrap.sh delete mode 100644 data-bootstrap/scrambled-dump.sql create mode 100644 src/data/seeds/fixtures/nid-agents.json create mode 100644 src/data/seeds/fixtures/nid-opportunities.json create mode 100644 src/data/seeds/fixtures/nid-volunteers.json create mode 100644 src/data/seeds/populate/agent-user.seed.ts create mode 100644 src/data/seeds/run.ts diff --git a/data-bootstrap/Dockerfile b/data-bootstrap/Dockerfile index 5f10688a..b23eb050 100644 --- a/data-bootstrap/Dockerfile +++ b/data-bootstrap/Dockerfile @@ -1,22 +1,6 @@ -FROM postgres:17.2 - -# Install postgresql-client for pg_restore/psql commands - -# Set environment variables for external database connection -ENV PGHOST=localhost -ENV PGPORT=5432 -ENV PGDATABASE=mydb -ENV PGUSER=postgres -ENV PGPASSWORD=password - -# Copy the SQL files -COPY *.sql /app/ - -# Create script to restore dump to external database -COPY bootstrap.sh /app/ -RUN chmod +x /app/bootstrap.sh - +FROM node:22-alpine WORKDIR /app - -# Run the restore script -CMD ["/app/bootstrap.sh"] \ No newline at end of file +COPY package.json yarn.lock ./ +RUN yarn install --frozen-lockfile +COPY . . +CMD ["yarn", "seed"] diff --git a/data-bootstrap/bootstrap.sh b/data-bootstrap/bootstrap.sh deleted file mode 100644 index ed25dc31..00000000 --- a/data-bootstrap/bootstrap.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -set -e - -# Idempotent: skip if the base schema is already loaded. -TABLE_EXISTS=$(PGPASSWORD="${DB_PASSWORD}" psql -q -h "${DB_HOST}" -p "${DB_PORT}" -U "${DB_USER}" -d "${DB_NAME}" -tAc \ - "SELECT EXISTS (SELECT FROM information_schema.tables WHERE table_schema='public' AND table_name='language')") - -if [ "$TABLE_EXISTS" = "t" ]; then - echo "Database already bootstrapped, skipping." - exit 0 -fi - -echo "Importing database dump..." -PGPASSWORD="${DB_PASSWORD}" psql -q -h "${DB_HOST}" -p "${DB_PORT}" -U "${DB_USER}" -d "${DB_NAME}" -f /app/scrambled-dump.sql -echo "Database import completed successfully" - -unset PGPASSWORD -echo "Connection details for verification:" -echo " psql -h $DB_HOST -p $DB_PORT -U $DB_USER -d $DB_NAME" -exit 0 diff --git a/data-bootstrap/scrambled-dump.sql b/data-bootstrap/scrambled-dump.sql deleted file mode 100644 index 253ae936..00000000 --- a/data-bootstrap/scrambled-dump.sql +++ /dev/null @@ -1,49008 +0,0 @@ --- --- PostgreSQL database dump --- - - --- Dumped from database version 17.2 --- Dumped by pg_dump version 18.3 (Ubuntu 18.3-1.pgdg24.04+1) - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET transaction_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- Name: accompanying_language_to_translate_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.accompanying_language_to_translate_enum AS ENUM ( - 'deutsche', - 'englishOk', - 'noTranslation' -); - - -ALTER TYPE public.accompanying_language_to_translate_enum OWNER TO n4d; - --- --- Name: agent_engagement_status_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.agent_engagement_status_enum AS ENUM ( - 'agent-new', - 'agent-active', - 'agent-unresponsive', - 'agent-inactive' -); - - -ALTER TYPE public.agent_engagement_status_enum OWNER TO n4d; - --- --- Name: agent_person_role_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.agent_person_role_enum AS ENUM ( - 'social-worker', - 'volunteer-coordinator', - 'manager', - 'project-coordinator', - 'psychologist', - 'project-staff', - 'childcare-worker', - 'other' -); - - -ALTER TYPE public.agent_person_role_enum OWNER TO n4d; - --- --- Name: agent_search_status_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.agent_search_status_enum AS ENUM ( - 'agent-searching', - 'agent-not-needed', - 'agent-volunteers-found' -); - - -ALTER TYPE public.agent_search_status_enum OWNER TO n4d; - --- --- Name: agent_trust_level_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.agent_trust_level_enum AS ENUM ( - 'agent-high', - 'agent-low', - 'agent-unknown' -); - - -ALTER TYPE public.agent_trust_level_enum OWNER TO n4d; - --- --- Name: agent_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.agent_type_enum AS ENUM ( - 'AE', - 'GU1', - 'GU2', - 'GU2+', - 'GU3', - 'NU', - 'ASOG', - 'counseling-center', - 'tandem', - 'multiple-social-support' -); - - -ALTER TYPE public.agent_type_enum OWNER TO n4d; - --- --- Name: appreciation_title_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.appreciation_title_enum AS ENUM ( - 't-shirt', - 'benefit-card', - 'tote-bag' -); - - -ALTER TYPE public.appreciation_title_enum OWNER TO n4d; - --- --- Name: comment_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.comment_entity_type_enum AS ENUM ( - 'none', - 'activity', - 'agent', - 'comment', - 'category', - 'district', - 'language', - 'lead_from', - 'opportunity', - 'skill', - 'volunteer' -); - - -ALTER TYPE public.comment_entity_type_enum OWNER TO n4d; - --- --- Name: communication_communication_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.communication_communication_type_enum AS ENUM ( - 'briefed', - 'first-inquiry-sent', - 'opportunity-list-sent', - 'status-update', - 'post-match-followup' -); - - -ALTER TYPE public.communication_communication_type_enum OWNER TO n4d; - --- --- Name: communication_contact_method_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.communication_contact_method_enum AS ENUM ( - 'email', - 'phone-number', - 'telegram', - 'whatsapp', - 'signal', - 'sms', - 'voicenote' -); - - -ALTER TYPE public.communication_contact_method_enum OWNER TO n4d; - --- --- Name: communication_contact_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.communication_contact_type_enum AS ENUM ( - 'called', - 'tried-to-call', - 'texted-or-emailed', - 'other' -); - - -ALTER TYPE public.communication_contact_type_enum OWNER TO n4d; - --- --- Name: config_config_key_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.config_config_key_enum AS ENUM ( - 'schema', - 'reference_data', - 'master_data', - 'truncate-all' -); - - -ALTER TYPE public.config_config_key_enum OWNER TO n4d; - --- --- Name: deal_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.deal_type_enum AS ENUM ( - 'volunteer', - 'opportunity' -); - - -ALTER TYPE public.deal_type_enum OWNER TO n4d; - --- --- Name: document_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.document_type_enum AS ENUM ( - 'measles-vacc-cert', - 'good-conduct-cert', - 'CGC-application', - 'passport-copy' -); - - -ALTER TYPE public.document_type_enum OWNER TO n4d; - --- --- Name: event_n4d_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.event_n4d_type_enum AS ENUM ( - 'party', - 'workshop' -); - - -ALTER TYPE public.event_n4d_type_enum OWNER TO n4d; - --- --- Name: field_translation_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.field_translation_entity_type_enum AS ENUM ( - 'none', - 'activity', - 'agent', - 'comment', - 'category', - 'district', - 'language', - 'lead_from', - 'opportunity', - 'skill', - 'volunteer' -); - - -ALTER TYPE public.field_translation_entity_type_enum OWNER TO n4d; - --- --- Name: location_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.location_type_enum AS ENUM ( - 'postcode', - 'district', - 'address', - 'geolocation' -); - - -ALTER TYPE public.location_type_enum OWNER TO n4d; - --- --- Name: notion_relation_host_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.notion_relation_host_type_enum AS ENUM ( - 'none', - 'activity', - 'agent', - 'comment', - 'category', - 'district', - 'language', - 'lead_from', - 'opportunity', - 'skill', - 'volunteer' -); - - -ALTER TYPE public.notion_relation_host_type_enum OWNER TO n4d; - --- --- Name: notion_relation_tenant_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.notion_relation_tenant_type_enum AS ENUM ( - 'none', - 'activity', - 'agent', - 'comment', - 'category', - 'district', - 'language', - 'lead_from', - 'opportunity', - 'skill', - 'volunteer' -); - - -ALTER TYPE public.notion_relation_tenant_type_enum OWNER TO n4d; - --- --- Name: opportunity_status_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.opportunity_status_enum AS ENUM ( - 'opp-new', - 'opp-searching', - 'opp-active', - 'opp-past' -); - - -ALTER TYPE public.opportunity_status_enum OWNER TO n4d; - --- --- Name: opportunity_translation_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.opportunity_translation_type_enum AS ENUM ( - 'deutsche', - 'englishOk', - 'noTranslation' -); - - -ALTER TYPE public.opportunity_translation_type_enum OWNER TO n4d; - --- --- Name: opportunity_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.opportunity_type_enum AS ENUM ( - 'accompanying', - 'regular', - 'events' -); - - -ALTER TYPE public.opportunity_type_enum OWNER TO n4d; - --- --- Name: opportunity_volunteer_status_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.opportunity_volunteer_status_enum AS ENUM ( - 'opp-pending', - 'opp-matched', - 'opp-active', - 'opp-past' -); - - -ALTER TYPE public.opportunity_volunteer_status_enum OWNER TO n4d; - --- --- Name: option_item_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.option_item_type_enum AS ENUM ( - 'none', - 'activity', - 'agent', - 'comment', - 'category', - 'district', - 'language', - 'lead_from', - 'opportunity', - 'skill', - 'volunteer' -); - - -ALTER TYPE public.option_item_type_enum OWNER TO n4d; - --- --- Name: profile_language_proficiency_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.profile_language_proficiency_enum AS ENUM ( - 'beginner', - 'intermediate', - 'advanced', - 'fluent', - 'native' -); - - -ALTER TYPE public.profile_language_proficiency_enum OWNER TO n4d; - --- --- Name: profile_language_purpose_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.profile_language_purpose_enum AS ENUM ( - 'general', - 'translation', - 'recipient' -); - - -ALTER TYPE public.profile_language_purpose_enum OWNER TO n4d; - --- --- Name: timeline_content_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.timeline_content_entity_type_enum AS ENUM ( - 'none', - 'activity', - 'agent', - 'comment', - 'category', - 'district', - 'language', - 'lead_from', - 'opportunity', - 'skill', - 'volunteer' -); - - -ALTER TYPE public.timeline_content_entity_type_enum OWNER TO n4d; - --- --- Name: timeline_content_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.timeline_content_type_enum AS ENUM ( - 'create', - 'update', - 'remove', - 'comment', - 'status', - 'matching' -); - - -ALTER TYPE public.timeline_content_type_enum OWNER TO n4d; - --- --- Name: timeline_source_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.timeline_source_entity_type_enum AS ENUM ( - 'none', - 'activity', - 'agent', - 'comment', - 'category', - 'district', - 'language', - 'lead_from', - 'opportunity', - 'skill', - 'volunteer' -); - - -ALTER TYPE public.timeline_source_entity_type_enum OWNER TO n4d; - --- --- Name: timeline_target_entity_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.timeline_target_entity_type_enum AS ENUM ( - 'none', - 'activity', - 'agent', - 'comment', - 'category', - 'district', - 'language', - 'lead_from', - 'opportunity', - 'skill', - 'volunteer' -); - - -ALTER TYPE public.timeline_target_entity_type_enum OWNER TO n4d; - --- --- Name: timeslot_occasional_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.timeslot_occasional_enum AS ENUM ( - 'weekends', - 'weekdays' -); - - -ALTER TYPE public.timeslot_occasional_enum OWNER TO n4d; - --- --- Name: user_role_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.user_role_enum AS ENUM ( - 'user', - 'coordinator', - 'agent', - 'volunteer', - 'admin' -); - - -ALTER TYPE public.user_role_enum OWNER TO n4d; - --- --- Name: volunteer_status_appreciation_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.volunteer_status_appreciation_enum AS ENUM ( - 't-shirt', - 'benefit-card', - 'tote-bag' -); - - -ALTER TYPE public.volunteer_status_appreciation_enum OWNER TO n4d; - --- --- Name: volunteer_status_cgc_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.volunteer_status_cgc_enum AS ENUM ( - 'undefined', - 'yes', - 'no', - 'asked_to_apply', - 'applied_self', - 'applied_n4d' -); - - -ALTER TYPE public.volunteer_status_cgc_enum OWNER TO n4d; - --- --- Name: volunteer_status_cgc_process_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.volunteer_status_cgc_process_enum AS ENUM ( - 'uploaded', - 'missing' -); - - -ALTER TYPE public.volunteer_status_cgc_process_enum OWNER TO n4d; - --- --- Name: volunteer_status_communication_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.volunteer_status_communication_enum AS ENUM ( - 'called', - 'email-sent', - 'briefed', - 'tried-call', - 'not-responding' -); - - -ALTER TYPE public.volunteer_status_communication_enum OWNER TO n4d; - --- --- Name: volunteer_status_engagement_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.volunteer_status_engagement_enum AS ENUM ( - 'vol-new', - 'vol-active', - 'vol-available', - 'vol-temp-unavailable', - 'vol-inactive', - 'vol-unresponsive' -); - - -ALTER TYPE public.volunteer_status_engagement_enum OWNER TO n4d; - --- --- Name: volunteer_status_match_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.volunteer_status_match_enum AS ENUM ( - 'vol-no-matches', - 'vol-pending-match', - 'vol-matched', - 'vol-needs-rematch' -); - - -ALTER TYPE public.volunteer_status_match_enum OWNER TO n4d; - --- --- Name: volunteer_status_type_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.volunteer_status_type_enum AS ENUM ( - 'accompanying', - 'regular', - 'events', - 'regular-accompanying' -); - - -ALTER TYPE public.volunteer_status_type_enum OWNER TO n4d; - --- --- Name: volunteer_status_vaccination_enum; Type: TYPE; Schema: public; Owner: n4d --- - -CREATE TYPE public.volunteer_status_vaccination_enum AS ENUM ( - 'undefined', - 'yes', - 'no', - 'asked_to_apply', - 'applied_self', - 'applied_n4d' -); - - -ALTER TYPE public.volunteer_status_vaccination_enum OWNER TO n4d; - --- --- Name: validate_communication_types(text[]); Type: FUNCTION; Schema: public; Owner: n4d --- - -CREATE FUNCTION public.validate_communication_types(data text[]) RETURNS boolean - LANGUAGE plpgsql IMMUTABLE - AS $$ - BEGIN - RETURN ( - SELECT bool_and(elem IN ('email','mobilePhone','whatsapp','telegram')) - FROM unnest(data) AS elem - ); - END; - $$; - - -ALTER FUNCTION public.validate_communication_types(data text[]) OWNER TO n4d; - -SET default_tablespace = ''; - -SET default_table_access_method = heap; - --- --- Name: accompanying; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.accompanying ( - id integer NOT NULL, - address character varying NOT NULL, - name character varying NOT NULL, - phone character varying, - email character varying, - date timestamp with time zone NOT NULL, - language_to_translate public.accompanying_language_to_translate_enum -); - - -ALTER TABLE public.accompanying OWNER TO n4d; - --- --- Name: accompanying_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.accompanying_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.accompanying_id_seq OWNER TO n4d; - --- --- Name: accompanying_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.accompanying_id_seq OWNED BY public.accompanying.id; - - --- --- Name: activity; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.activity ( - id integer NOT NULL, - title character varying NOT NULL, - category_id integer -); - - -ALTER TABLE public.activity OWNER TO n4d; - --- --- Name: activity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.activity_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.activity_id_seq OWNER TO n4d; - --- --- Name: activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.activity_id_seq OWNED BY public.activity.id; - - --- --- Name: address; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.address ( - id integer NOT NULL, - title character varying, - street character varying, - postcode_id integer NOT NULL, - city character varying -); - - -ALTER TABLE public.address OWNER TO n4d; - --- --- Name: address_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.address_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.address_id_seq OWNER TO n4d; - --- --- Name: address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.address_id_seq OWNED BY public.address.id; - - --- --- Name: agent; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.agent ( - id integer NOT NULL, - title character varying NOT NULL, - type public.agent_type_enum, - website character varying, - trust_level public.agent_trust_level_enum DEFAULT 'agent-unknown'::public.agent_trust_level_enum NOT NULL, - search_status public.agent_search_status_enum DEFAULT 'agent-not-needed'::public.agent_search_status_enum NOT NULL, - services text[], - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL, - address_id integer, - district_id integer, - engagement_status public.agent_engagement_status_enum DEFAULT 'agent-new'::public.agent_engagement_status_enum NOT NULL, - info character varying, - organization_id integer -); - - -ALTER TABLE public.agent OWNER TO n4d; - --- --- Name: agent_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.agent_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.agent_id_seq OWNER TO n4d; - --- --- Name: agent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.agent_id_seq OWNED BY public.agent.id; - - --- --- Name: agent_language; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.agent_language ( - id integer NOT NULL, - agent_id integer NOT NULL, - language_id integer NOT NULL -); - - -ALTER TABLE public.agent_language OWNER TO n4d; - --- --- Name: agent_language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.agent_language_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.agent_language_id_seq OWNER TO n4d; - --- --- Name: agent_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.agent_language_id_seq OWNED BY public.agent_language.id; - - --- --- Name: agent_person; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.agent_person ( - id integer NOT NULL, - role public.agent_person_role_enum DEFAULT 'other'::public.agent_person_role_enum NOT NULL, - agent_id integer NOT NULL, - person_id integer NOT NULL -); - - -ALTER TABLE public.agent_person OWNER TO n4d; - --- --- Name: agent_person_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.agent_person_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.agent_person_id_seq OWNER TO n4d; - --- --- Name: agent_person_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.agent_person_id_seq OWNED BY public.agent_person.id; - - --- --- Name: agent_postcode; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.agent_postcode ( - id integer NOT NULL, - agent_id integer NOT NULL, - postcode_id integer NOT NULL -); - - -ALTER TABLE public.agent_postcode OWNER TO n4d; - --- --- Name: agent_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.agent_postcode_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.agent_postcode_id_seq OWNER TO n4d; - --- --- Name: agent_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.agent_postcode_id_seq OWNED BY public.agent_postcode.id; - - --- --- Name: appreciation; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.appreciation ( - id integer NOT NULL, - title public.appreciation_title_enum NOT NULL, - date_due timestamp without time zone, - date_delivery timestamp without time zone, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL, - opportunity_id integer, - volunteer_id integer NOT NULL, - user_id integer -); - - -ALTER TABLE public.appreciation OWNER TO n4d; - --- --- Name: appreciation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.appreciation_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.appreciation_id_seq OWNER TO n4d; - --- --- Name: appreciation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.appreciation_id_seq OWNED BY public.appreciation.id; - - --- --- Name: be_migrations; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.be_migrations ( - id integer NOT NULL, - "timestamp" bigint NOT NULL, - name character varying NOT NULL -); - - -ALTER TABLE public.be_migrations OWNER TO n4d; - --- --- Name: be_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.be_migrations_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.be_migrations_id_seq OWNER TO n4d; - --- --- Name: be_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.be_migrations_id_seq OWNED BY public.be_migrations.id; - - --- --- Name: category; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.category ( - id integer NOT NULL, - title character varying NOT NULL -); - - -ALTER TABLE public.category OWNER TO n4d; - --- --- Name: category_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.category_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.category_id_seq OWNER TO n4d; - --- --- Name: category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.category_id_seq OWNED BY public.category.id; - - --- --- Name: comment; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.comment ( - id integer NOT NULL, - text text NOT NULL, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL, - language_id integer, - user_id integer NOT NULL, - entity_type public.comment_entity_type_enum DEFAULT 'none'::public.comment_entity_type_enum NOT NULL, - entity_id integer NOT NULL -); - - -ALTER TABLE public.comment OWNER TO n4d; - --- --- Name: comment_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.comment_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.comment_id_seq OWNER TO n4d; - --- --- Name: comment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.comment_id_seq OWNED BY public.comment.id; - - --- --- Name: communication; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.communication ( - id integer NOT NULL, - contact_type public.communication_contact_type_enum NOT NULL, - contact_method public.communication_contact_method_enum NOT NULL, - communication_type public.communication_communication_type_enum, - date timestamp without time zone NOT NULL, - volunteer_id integer, - user_id integer, - agent_id integer, - CONSTRAINT "CHK_31faa29cb0aff6ef55be2b2146" CHECK ((( -CASE - WHEN (volunteer_id IS NOT NULL) THEN 1 - ELSE 0 -END + -CASE - WHEN (agent_id IS NOT NULL) THEN 1 - ELSE 0 -END) = 1)) -); - - -ALTER TABLE public.communication OWNER TO n4d; - --- --- Name: communication_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.communication_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.communication_id_seq OWNER TO n4d; - --- --- Name: communication_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.communication_id_seq OWNED BY public.communication.id; - - --- --- Name: config; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.config ( - id integer NOT NULL, - config_key public.config_config_key_enum NOT NULL, - config_value boolean -); - - -ALTER TABLE public.config OWNER TO n4d; - --- --- Name: config_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.config_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.config_id_seq OWNER TO n4d; - --- --- Name: config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.config_id_seq OWNED BY public.config.id; - - --- --- Name: deal; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.deal ( - id integer NOT NULL, - type public.deal_type_enum NOT NULL, - postcode_id integer NOT NULL, - time_id integer NOT NULL, - location_id integer NOT NULL, - profile_id integer -); - - -ALTER TABLE public.deal OWNER TO n4d; - --- --- Name: deal_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.deal_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.deal_id_seq OWNER TO n4d; - --- --- Name: deal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.deal_id_seq OWNED BY public.deal.id; - - --- --- Name: district; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.district ( - id integer NOT NULL, - title character varying NOT NULL -); - - -ALTER TABLE public.district OWNER TO n4d; - --- --- Name: district_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.district_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.district_id_seq OWNER TO n4d; - --- --- Name: district_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.district_id_seq OWNED BY public.district.id; - - --- --- Name: district_postcode; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.district_postcode ( - id integer NOT NULL, - district_id integer NOT NULL, - postcode_id integer NOT NULL -); - - -ALTER TABLE public.district_postcode OWNER TO n4d; - --- --- Name: district_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.district_postcode_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.district_postcode_id_seq OWNER TO n4d; - --- --- Name: district_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.district_postcode_id_seq OWNED BY public.district_postcode.id; - - --- --- Name: document; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.document ( - id integer NOT NULL, - type public.document_type_enum NOT NULL, - s3_key character varying NOT NULL, - original_name character varying NOT NULL, - mime_type character varying NOT NULL, - volunteer_id integer, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL -); - - -ALTER TABLE public.document OWNER TO n4d; - --- --- Name: document_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.document_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.document_id_seq OWNER TO n4d; - --- --- Name: document_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.document_id_seq OWNED BY public.document.id; - - --- --- Name: event_n4d; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.event_n4d ( - id integer NOT NULL, - is_active boolean DEFAULT false NOT NULL, - date timestamp with time zone NOT NULL, - date_end timestamp with time zone, - type public.event_n4d_type_enum DEFAULT 'party'::public.event_n4d_type_enum NOT NULL, - pic character varying(256), - location_link character varying(256), - rsvp_link character varying(256) NOT NULL, - followup_link character varying(256), - address character varying(256) NOT NULL, - host_name character varying(256), - language_id integer -); - - -ALTER TABLE public.event_n4d OWNER TO n4d; - --- --- Name: event_n4d_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.event_n4d_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.event_n4d_id_seq OWNER TO n4d; - --- --- Name: event_n4d_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.event_n4d_id_seq OWNED BY public.event_n4d.id; - - --- --- Name: event_translation; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.event_translation ( - id integer NOT NULL, - title character varying(256), - subtitle character varying(256), - menu_title character varying(256), - time_str character varying(256), - location_comment character varying(256), - description text NOT NULL, - short_description character varying(512) NOT NULL, - additional_title character varying(256), - additional_info jsonb, - outro text, - followup_text character varying(256), - eventn4d_id integer, - language_id integer -); - - -ALTER TABLE public.event_translation OWNER TO n4d; - --- --- Name: event_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.event_translation_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.event_translation_id_seq OWNER TO n4d; - --- --- Name: event_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.event_translation_id_seq OWNED BY public.event_translation.id; - - --- --- Name: field_translation; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.field_translation ( - id integer NOT NULL, - field_name character varying DEFAULT 'title'::character varying NOT NULL, - language_id integer, - entity_type public.field_translation_entity_type_enum DEFAULT 'none'::public.field_translation_entity_type_enum NOT NULL, - entity_id integer NOT NULL, - translation text NOT NULL -); - - -ALTER TABLE public.field_translation OWNER TO n4d; - --- --- Name: field_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.field_translation_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.field_translation_id_seq OWNER TO n4d; - --- --- Name: field_translation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.field_translation_id_seq OWNED BY public.field_translation.id; - - --- --- Name: language; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.language ( - id integer NOT NULL, - iso_code character varying NOT NULL, - title character varying NOT NULL -); - - -ALTER TABLE public.language OWNER TO n4d; - --- --- Name: language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.language_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.language_id_seq OWNER TO n4d; - --- --- Name: language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.language_id_seq OWNED BY public.language.id; - - --- --- Name: lead_from; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.lead_from ( - id integer NOT NULL, - count integer DEFAULT 0 NOT NULL, - title character varying NOT NULL -); - - -ALTER TABLE public.lead_from OWNER TO n4d; - --- --- Name: lead_from_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.lead_from_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.lead_from_id_seq OWNER TO n4d; - --- --- Name: lead_from_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.lead_from_id_seq OWNED BY public.lead_from.id; - - --- --- Name: location; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.location ( - id integer NOT NULL, - type public.location_type_enum DEFAULT 'district'::public.location_type_enum NOT NULL, - info character varying -); - - -ALTER TABLE public.location OWNER TO n4d; - --- --- Name: location_address; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.location_address ( - id integer NOT NULL, - location_id integer NOT NULL, - address_id integer NOT NULL -); - - -ALTER TABLE public.location_address OWNER TO n4d; - --- --- Name: location_address_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.location_address_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.location_address_id_seq OWNER TO n4d; - --- --- Name: location_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.location_address_id_seq OWNED BY public.location_address.id; - - --- --- Name: location_district; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.location_district ( - id integer NOT NULL, - location_id integer NOT NULL, - district_id integer NOT NULL -); - - -ALTER TABLE public.location_district OWNER TO n4d; - --- --- Name: location_district_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.location_district_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.location_district_id_seq OWNER TO n4d; - --- --- Name: location_district_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.location_district_id_seq OWNED BY public.location_district.id; - - --- --- Name: location_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.location_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.location_id_seq OWNER TO n4d; - --- --- Name: location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.location_id_seq OWNED BY public.location.id; - - --- --- Name: location_postcode; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.location_postcode ( - id integer NOT NULL, - location_id integer NOT NULL, - postcode_id integer NOT NULL -); - - -ALTER TABLE public.location_postcode OWNER TO n4d; - --- --- Name: location_postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.location_postcode_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.location_postcode_id_seq OWNER TO n4d; - --- --- Name: location_postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.location_postcode_id_seq OWNED BY public.location_postcode.id; - - --- --- Name: notion_relation; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.notion_relation ( - id integer NOT NULL, - payroll character varying, - host_nid character varying NOT NULL, - host_type public.notion_relation_host_type_enum NOT NULL, - host_id integer NOT NULL, - tenant_nid character varying NOT NULL, - tenant_type public.notion_relation_tenant_type_enum NOT NULL, - tenant_id integer -); - - -ALTER TABLE public.notion_relation OWNER TO n4d; - --- --- Name: notion_relation_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.notion_relation_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.notion_relation_id_seq OWNER TO n4d; - --- --- Name: notion_relation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.notion_relation_id_seq OWNED BY public.notion_relation.id; - - --- --- Name: opportunity; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.opportunity ( - id integer NOT NULL, - title character varying NOT NULL, - type public.opportunity_type_enum NOT NULL, - info character varying, - translation_type public.opportunity_translation_type_enum, - info_confidential character varying, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL, - deal_id integer, - agent_id integer, - status public.opportunity_status_enum DEFAULT 'opp-new'::public.opportunity_status_enum NOT NULL, - number_volunteers integer DEFAULT 1 NOT NULL, - accompanying_id integer -); - - -ALTER TABLE public.opportunity OWNER TO n4d; - --- --- Name: opportunity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.opportunity_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.opportunity_id_seq OWNER TO n4d; - --- --- Name: opportunity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.opportunity_id_seq OWNED BY public.opportunity.id; - - --- --- Name: opportunity_volunteer; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.opportunity_volunteer ( - id integer NOT NULL, - status public.opportunity_volunteer_status_enum NOT NULL, - opportunity_id integer NOT NULL, - volunteer_id integer NOT NULL, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL -); - - -ALTER TABLE public.opportunity_volunteer OWNER TO n4d; - --- --- Name: opportunity_volunteer_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.opportunity_volunteer_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.opportunity_volunteer_id_seq OWNER TO n4d; - --- --- Name: opportunity_volunteer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.opportunity_volunteer_id_seq OWNED BY public.opportunity_volunteer.id; - - --- --- Name: option; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.option ( - id integer NOT NULL, - item_type public.option_item_type_enum NOT NULL, - item_id integer NOT NULL -); - - -ALTER TABLE public.option OWNER TO n4d; - --- --- Name: option_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.option_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.option_id_seq OWNER TO n4d; - --- --- Name: option_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.option_id_seq OWNED BY public.option.id; - - --- --- Name: organization; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.organization ( - id integer NOT NULL, - title character varying NOT NULL, - email character varying, - phone character varying, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL, - address_id integer NOT NULL, - person_id integer NOT NULL, - website character varying -); - - -ALTER TABLE public.organization OWNER TO n4d; - --- --- Name: organization_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.organization_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.organization_id_seq OWNER TO n4d; - --- --- Name: organization_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.organization_id_seq OWNED BY public.organization.id; - - --- --- Name: person; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.person ( - id integer NOT NULL, - first_name character varying NOT NULL, - middle_name character varying, - last_name character varying, - email character varying, - phone character varying, - avatar_url character varying, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL, - address_id integer, - preferred_communication_type text[] DEFAULT '{mobilePhone}'::text[] NOT NULL, - landline character varying -); - - -ALTER TABLE public.person OWNER TO n4d; - --- --- Name: person_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.person_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.person_id_seq OWNER TO n4d; - --- --- Name: person_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.person_id_seq OWNED BY public.person.id; - - --- --- Name: postcode; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.postcode ( - id integer NOT NULL, - longitude numeric(10,7), - latitude numeric(9,7), - value character varying NOT NULL -); - - -ALTER TABLE public.postcode OWNER TO n4d; - --- --- Name: postcode_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.postcode_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.postcode_id_seq OWNER TO n4d; - --- --- Name: postcode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.postcode_id_seq OWNED BY public.postcode.id; - - --- --- Name: profile; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.profile ( - id integer NOT NULL, - info character varying, - category_id integer -); - - -ALTER TABLE public.profile OWNER TO n4d; - --- --- Name: profile_activity; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.profile_activity ( - id integer NOT NULL, - profile_id integer NOT NULL, - activity_id integer NOT NULL -); - - -ALTER TABLE public.profile_activity OWNER TO n4d; - --- --- Name: profile_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.profile_activity_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.profile_activity_id_seq OWNER TO n4d; - --- --- Name: profile_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.profile_activity_id_seq OWNED BY public.profile_activity.id; - - --- --- Name: profile_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.profile_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.profile_id_seq OWNER TO n4d; - --- --- Name: profile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.profile_id_seq OWNED BY public.profile.id; - - --- --- Name: profile_language; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.profile_language ( - id integer NOT NULL, - proficiency public.profile_language_proficiency_enum DEFAULT 'advanced'::public.profile_language_proficiency_enum, - profile_id integer NOT NULL, - language_id integer NOT NULL, - purpose public.profile_language_purpose_enum DEFAULT 'general'::public.profile_language_purpose_enum -); - - -ALTER TABLE public.profile_language OWNER TO n4d; - --- --- Name: profile_language_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.profile_language_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.profile_language_id_seq OWNER TO n4d; - --- --- Name: profile_language_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.profile_language_id_seq OWNED BY public.profile_language.id; - - --- --- Name: profile_skill; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.profile_skill ( - id integer NOT NULL, - profile_id integer NOT NULL, - skill_id integer NOT NULL -); - - -ALTER TABLE public.profile_skill OWNER TO n4d; - --- --- Name: profile_skill_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.profile_skill_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.profile_skill_id_seq OWNER TO n4d; - --- --- Name: profile_skill_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.profile_skill_id_seq OWNED BY public.profile_skill.id; - - --- --- Name: skill; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.skill ( - id integer NOT NULL, - title character varying NOT NULL -); - - -ALTER TABLE public.skill OWNER TO n4d; - --- --- Name: skill_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.skill_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.skill_id_seq OWNER TO n4d; - --- --- Name: skill_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.skill_id_seq OWNED BY public.skill.id; - - --- --- Name: testimonial; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.testimonial ( - id integer NOT NULL, - is_active boolean DEFAULT false NOT NULL, - name character varying(256), - pic character varying(256), - person_id integer, - language_id integer -); - - -ALTER TABLE public.testimonial OWNER TO n4d; - --- --- Name: testimonial_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.testimonial_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.testimonial_id_seq OWNER TO n4d; - --- --- Name: testimonial_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.testimonial_id_seq OWNED BY public.testimonial.id; - - --- --- Name: time; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public."time" ( - id integer NOT NULL, - info character varying -); - - -ALTER TABLE public."time" OWNER TO n4d; - --- --- Name: time_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.time_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.time_id_seq OWNER TO n4d; - --- --- Name: time_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.time_id_seq OWNED BY public."time".id; - - --- --- Name: time_timeslot; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.time_timeslot ( - id integer NOT NULL, - time_id integer NOT NULL, - timeslot_id integer NOT NULL -); - - -ALTER TABLE public.time_timeslot OWNER TO n4d; - --- --- Name: time_timeslot_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.time_timeslot_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.time_timeslot_id_seq OWNER TO n4d; - --- --- Name: time_timeslot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.time_timeslot_id_seq OWNED BY public.time_timeslot.id; - - --- --- Name: timeline; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.timeline ( - id integer NOT NULL, - source_entity_type public.timeline_source_entity_type_enum, - source_entity_id integer, - target_entity_type public.timeline_target_entity_type_enum NOT NULL, - target_entity_id integer NOT NULL, - content_entity_type public.timeline_content_entity_type_enum NOT NULL, - content_entity_id integer NOT NULL, - content_type public.timeline_content_type_enum NOT NULL, - "timestamp" timestamp without time zone DEFAULT now() NOT NULL, - content text NOT NULL -); - - -ALTER TABLE public.timeline OWNER TO n4d; - --- --- Name: timeline_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.timeline_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.timeline_id_seq OWNER TO n4d; - --- --- Name: timeline_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.timeline_id_seq OWNED BY public.timeline.id; - - --- --- Name: timeslot; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.timeslot ( - id integer NOT NULL, - info character varying, - rrule character varying, - start timestamp without time zone, - "end" timestamp without time zone, - occasional public.timeslot_occasional_enum -); - - -ALTER TABLE public.timeslot OWNER TO n4d; - --- --- Name: timeslot_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.timeslot_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.timeslot_id_seq OWNER TO n4d; - --- --- Name: timeslot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.timeslot_id_seq OWNED BY public.timeslot.id; - - --- --- Name: user; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public."user" ( - id integer NOT NULL, - email character varying NOT NULL, - password character varying NOT NULL, - is_active boolean DEFAULT false NOT NULL, - role public.user_role_enum DEFAULT 'user'::public.user_role_enum NOT NULL, - language character varying DEFAULT 'en'::character varying NOT NULL, - timezone character varying DEFAULT 'CET'::character varying NOT NULL, - person_id integer, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL -); - - -ALTER TABLE public."user" OWNER TO n4d; - --- --- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.user_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.user_id_seq OWNER TO n4d; - --- --- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.user_id_seq OWNED BY public."user".id; - - --- --- Name: volunteer; Type: TABLE; Schema: public; Owner: n4d --- - -CREATE TABLE public.volunteer ( - id integer NOT NULL, - info_about character varying, - info_experience character varying, - status_engagement public.volunteer_status_engagement_enum DEFAULT 'vol-new'::public.volunteer_status_engagement_enum NOT NULL, - status_communication public.volunteer_status_communication_enum, - status_appreciation public.volunteer_status_appreciation_enum, - status_type public.volunteer_status_type_enum, - status_match public.volunteer_status_match_enum DEFAULT 'vol-no-matches'::public.volunteer_status_match_enum NOT NULL, - status_cgc_process public.volunteer_status_cgc_process_enum, - status_vaccination public.volunteer_status_vaccination_enum DEFAULT 'undefined'::public.volunteer_status_vaccination_enum NOT NULL, - status_cgc public.volunteer_status_cgc_enum DEFAULT 'undefined'::public.volunteer_status_cgc_enum NOT NULL, - created_at timestamp without time zone DEFAULT now() NOT NULL, - updated_at timestamp without time zone DEFAULT now() NOT NULL, - deal_id integer, - person_id integer, - preferred_communication_type text[] DEFAULT '{mobilePhone}'::text[] NOT NULL, - date_return timestamp without time zone -); - - -ALTER TABLE public.volunteer OWNER TO n4d; - --- --- Name: volunteer_id_seq; Type: SEQUENCE; Schema: public; Owner: n4d --- - -CREATE SEQUENCE public.volunteer_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - -ALTER SEQUENCE public.volunteer_id_seq OWNER TO n4d; - --- --- Name: volunteer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: n4d --- - -ALTER SEQUENCE public.volunteer_id_seq OWNED BY public.volunteer.id; - - --- --- Name: volunteer_list_mv; Type: MATERIALIZED VIEW; Schema: public; Owner: n4d --- - -CREATE MATERIALIZED VIEW public.volunteer_list_mv AS - WITH aggregatedtimeslots AS ( - SELECT d_1.id AS deal_id, - array_agg(DISTINCT "substring"((t.rrule)::text, 'BYDAY=([A-Z,]+)'::text)) FILTER (WHERE (t.rrule IS NOT NULL)) AS available_days_array_raw, - array_agg(DISTINCT - CASE - WHEN ((EXTRACT(hour FROM t.start) >= (8)::numeric) AND (EXTRACT(hour FROM t."end") <= (11)::numeric)) THEN '08-11'::text - WHEN ((EXTRACT(hour FROM t.start) >= (11)::numeric) AND (EXTRACT(hour FROM t."end") <= (14)::numeric)) THEN '11-14'::text - WHEN ((EXTRACT(hour FROM t."end") <= (17)::numeric) AND (EXTRACT(hour FROM t.start) >= (14)::numeric)) THEN '14-17'::text - WHEN ((EXTRACT(hour FROM t."end") <= (20)::numeric) AND (EXTRACT(hour FROM t.start) >= (17)::numeric)) THEN '17-20'::text - ELSE NULL::text - END) FILTER (WHERE (t.rrule IS NOT NULL)) AS available_times_array, - array_agg(DISTINCT t.occasional) FILTER (WHERE (t.occasional IS NOT NULL)) AS available_occasional_array, - jsonb_agg(jsonb_build_object('start_hour', EXTRACT(hour FROM t.start), 'end_hour', EXTRACT(hour FROM t."end"), 'byday_part', COALESCE("substring"((t.rrule)::text, 'BYDAY=([A-Z,]+)'::text), ''::text), 'occasional', t.occasional)) AS timeslot_data - FROM (((public.timeslot t - JOIN public.time_timeslot tt ON ((t.id = tt.timeslot_id))) - JOIN public."time" tm ON ((tt.time_id = tm.id))) - JOIN public.deal d_1 ON ((tm.id = d_1.time_id))) - GROUP BY d_1.id - ), aggregatedlanguages AS ( - SELECT d_1.id AS deal_id, - array_agg(lang.id) AS language_ids, - array_agg(lang.title) AS language_titles - FROM (((public.language lang - JOIN public.profile_language pl ON ((lang.id = pl.language_id))) - JOIN public.profile p_1 ON ((pl.profile_id = p_1.id))) - JOIN public.deal d_1 ON ((p_1.id = d_1.profile_id))) - GROUP BY d_1.id - ), aggregateddistricts AS ( - SELECT d_1.id AS deal_id, - array_agg(dist.id) AS district_ids, - array_agg(dist.title) AS district_titles - FROM (((public.district dist - JOIN public.location_district ld ON ((dist.id = ld.district_id))) - JOIN public.location l_1 ON ((ld.location_id = l_1.id))) - JOIN public.deal d_1 ON ((l_1.id = d_1.location_id))) - GROUP BY d_1.id - ), aggregatedactivities AS ( - SELECT d_1.id AS deal_id, - array_agg(a.id) AS activity_ids, - array_agg(a.title) AS activity_titles - FROM (((public.activity a - JOIN public.profile_activity pa ON ((a.id = pa.activity_id))) - JOIN public.profile p_1 ON ((pa.profile_id = p_1.id))) - JOIN public.deal d_1 ON ((p_1.id = d_1.profile_id))) - GROUP BY d_1.id - ) - SELECT v.id AS volunteer_id, - d.id AS deal_id, - v.status_engagement, - v.status_type, - per.first_name, - per.last_name, - per.email, - per.phone, - per.avatar_url, - concat_ws(' '::text, NULLIF(TRIM(BOTH FROM per.first_name), ''::text), NULLIF(TRIM(BOTH FROM per.last_name), ''::text)) AS full_name, - ad.district_ids AS district_ids_array, - al.language_ids AS language_ids_array, - (al.language_ids @> ARRAY[( SELECT language.id - FROM public.language - WHERE ((language.iso_code)::text = 'de'::text) - LIMIT 1)]) AS has_german_language, - ( SELECT array_agg(x.x) AS array_agg - FROM unnest(at.available_days_array_raw) x(x)) AS available_days_array, - at.available_times_array, - at.available_occasional_array, - aa.activity_titles, - al.language_titles, - ad.district_titles, - at.timeslot_data - FROM ((((((((public.deal d - JOIN public.volunteer v ON ((d.id = v.deal_id))) - JOIN public.person per ON ((v.person_id = per.id))) - JOIN public.profile p ON ((d.profile_id = p.id))) - JOIN public.location l ON ((d.location_id = l.id))) - LEFT JOIN aggregatedactivities aa ON ((d.id = aa.deal_id))) - LEFT JOIN aggregatedlanguages al ON ((d.id = al.deal_id))) - LEFT JOIN aggregatedtimeslots at ON ((d.id = at.deal_id))) - LEFT JOIN aggregateddistricts ad ON ((d.id = ad.deal_id))) - WHERE (d.type = 'volunteer'::public.deal_type_enum) - WITH NO DATA; - - -ALTER MATERIALIZED VIEW public.volunteer_list_mv OWNER TO n4d; - --- --- Name: accompanying id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.accompanying ALTER COLUMN id SET DEFAULT nextval('public.accompanying_id_seq'::regclass); - - --- --- Name: activity id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.activity ALTER COLUMN id SET DEFAULT nextval('public.activity_id_seq'::regclass); - - --- --- Name: address id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.address ALTER COLUMN id SET DEFAULT nextval('public.address_id_seq'::regclass); - - --- --- Name: agent id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.agent ALTER COLUMN id SET DEFAULT nextval('public.agent_id_seq'::regclass); - - --- --- Name: agent_language id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.agent_language ALTER COLUMN id SET DEFAULT nextval('public.agent_language_id_seq'::regclass); - - --- --- Name: agent_person id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.agent_person ALTER COLUMN id SET DEFAULT nextval('public.agent_person_id_seq'::regclass); - - --- --- Name: agent_postcode id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.agent_postcode ALTER COLUMN id SET DEFAULT nextval('public.agent_postcode_id_seq'::regclass); - - --- --- Name: appreciation id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.appreciation ALTER COLUMN id SET DEFAULT nextval('public.appreciation_id_seq'::regclass); - - --- --- Name: be_migrations id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.be_migrations ALTER COLUMN id SET DEFAULT nextval('public.be_migrations_id_seq'::regclass); - - --- --- Name: category id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.category ALTER COLUMN id SET DEFAULT nextval('public.category_id_seq'::regclass); - - --- --- Name: comment id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.comment ALTER COLUMN id SET DEFAULT nextval('public.comment_id_seq'::regclass); - - --- --- Name: communication id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.communication ALTER COLUMN id SET DEFAULT nextval('public.communication_id_seq'::regclass); - - --- --- Name: config id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.config ALTER COLUMN id SET DEFAULT nextval('public.config_id_seq'::regclass); - - --- --- Name: deal id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.deal ALTER COLUMN id SET DEFAULT nextval('public.deal_id_seq'::regclass); - - --- --- Name: district id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.district ALTER COLUMN id SET DEFAULT nextval('public.district_id_seq'::regclass); - - --- --- Name: district_postcode id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.district_postcode ALTER COLUMN id SET DEFAULT nextval('public.district_postcode_id_seq'::regclass); - - --- --- Name: document id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.document ALTER COLUMN id SET DEFAULT nextval('public.document_id_seq'::regclass); - - --- --- Name: event_n4d id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.event_n4d ALTER COLUMN id SET DEFAULT nextval('public.event_n4d_id_seq'::regclass); - - --- --- Name: event_translation id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.event_translation ALTER COLUMN id SET DEFAULT nextval('public.event_translation_id_seq'::regclass); - - --- --- Name: field_translation id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.field_translation ALTER COLUMN id SET DEFAULT nextval('public.field_translation_id_seq'::regclass); - - --- --- Name: language id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.language ALTER COLUMN id SET DEFAULT nextval('public.language_id_seq'::regclass); - - --- --- Name: lead_from id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.lead_from ALTER COLUMN id SET DEFAULT nextval('public.lead_from_id_seq'::regclass); - - --- --- Name: location id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.location ALTER COLUMN id SET DEFAULT nextval('public.location_id_seq'::regclass); - - --- --- Name: location_address id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.location_address ALTER COLUMN id SET DEFAULT nextval('public.location_address_id_seq'::regclass); - - --- --- Name: location_district id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.location_district ALTER COLUMN id SET DEFAULT nextval('public.location_district_id_seq'::regclass); - - --- --- Name: location_postcode id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.location_postcode ALTER COLUMN id SET DEFAULT nextval('public.location_postcode_id_seq'::regclass); - - --- --- Name: notion_relation id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.notion_relation ALTER COLUMN id SET DEFAULT nextval('public.notion_relation_id_seq'::regclass); - - --- --- Name: opportunity id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.opportunity ALTER COLUMN id SET DEFAULT nextval('public.opportunity_id_seq'::regclass); - - --- --- Name: opportunity_volunteer id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.opportunity_volunteer ALTER COLUMN id SET DEFAULT nextval('public.opportunity_volunteer_id_seq'::regclass); - - --- --- Name: option id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.option ALTER COLUMN id SET DEFAULT nextval('public.option_id_seq'::regclass); - - --- --- Name: organization id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.organization ALTER COLUMN id SET DEFAULT nextval('public.organization_id_seq'::regclass); - - --- --- Name: person id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.person ALTER COLUMN id SET DEFAULT nextval('public.person_id_seq'::regclass); - - --- --- Name: postcode id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.postcode ALTER COLUMN id SET DEFAULT nextval('public.postcode_id_seq'::regclass); - - --- --- Name: profile id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.profile ALTER COLUMN id SET DEFAULT nextval('public.profile_id_seq'::regclass); - - --- --- Name: profile_activity id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.profile_activity ALTER COLUMN id SET DEFAULT nextval('public.profile_activity_id_seq'::regclass); - - --- --- Name: profile_language id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.profile_language ALTER COLUMN id SET DEFAULT nextval('public.profile_language_id_seq'::regclass); - - --- --- Name: profile_skill id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.profile_skill ALTER COLUMN id SET DEFAULT nextval('public.profile_skill_id_seq'::regclass); - - --- --- Name: skill id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.skill ALTER COLUMN id SET DEFAULT nextval('public.skill_id_seq'::regclass); - - --- --- Name: testimonial id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.testimonial ALTER COLUMN id SET DEFAULT nextval('public.testimonial_id_seq'::regclass); - - --- --- Name: time id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public."time" ALTER COLUMN id SET DEFAULT nextval('public.time_id_seq'::regclass); - - --- --- Name: time_timeslot id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.time_timeslot ALTER COLUMN id SET DEFAULT nextval('public.time_timeslot_id_seq'::regclass); - - --- --- Name: timeline id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.timeline ALTER COLUMN id SET DEFAULT nextval('public.timeline_id_seq'::regclass); - - --- --- Name: timeslot id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.timeslot ALTER COLUMN id SET DEFAULT nextval('public.timeslot_id_seq'::regclass); - - --- --- Name: user id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public."user" ALTER COLUMN id SET DEFAULT nextval('public.user_id_seq'::regclass); - - --- --- Name: volunteer id; Type: DEFAULT; Schema: public; Owner: n4d --- - -ALTER TABLE ONLY public.volunteer ALTER COLUMN id SET DEFAULT nextval('public.volunteer_id_seq'::regclass); - - --- --- Data for Name: accompanying; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.accompanying (id, address, name, phone, email, date, language_to_translate) FROM stdin; -1 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk -2 Wtksof Qswkteiz Yüklzt\fTiktfqdzlaggkrofqzgk\fdqoszg:qswkteiz.yxtklzt@epr.rt  \N \N 1970-01-01 00:00:00+00 deutsche -3 Wtksof Dnkzg Dxfigm-Wgossgz\fdqoszg:dnkzg.dxfigm-wgossgz@zqdqpq.rt\f+26 79045183982 \N \N 1970-01-01 00:00:00+00 deutsche -4 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -5 Wtksof xfafgvf \N \N 2024-09-24 00:00:00+00 deutsche -6 Wtksof xfafgvf \N \N 2024-09-17 00:00:00+00 deutsche -7 Wtksof xfafgvf \N \N 2024-09-24 12:10:00+00 deutsche -8 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk -9 Wtksof Tdokiqf \N \N 1970-01-01 00:00:00+00 englishOk -10 Wtksof Qswkteiz Yüklzt\fTiktfqdzlaggkrofqzgk\fRotflziqfrn: 5705 1512019\fdqoszg:qswkteiz.yxtklzt@epr.rt  \N \N 1970-01-01 00:00:00+00 deutsche -11 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -12 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -13 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -14 Ankozmtk Lzkqßt 28, Lhgkziqsst xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -15 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -16 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -17 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk -18 Wtksof Qsqq Qzoq 579353535933, dqoszg:sgsnad@oesgxr.egd \N 1970-01-01 00:00:00+00 englishOk -19 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -20 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -21 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -22 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -23 Wüsgvlzk 70, 75048 Dqko Oldqosn \N \N 2024-12-17 10:20:00+00 deutsche -24 DCM Qroxcqkt, Wqrlzk. 83, 78890 Wtksof Ugso Dgiqdqro Ixlwqfr Lqkcqk Aiqf Ltnyo 5701 87 571 257 \N 2024-11-21 09:50:00+00 deutsche -25 Eqdhxl Cokeigv-Asofoaxd\fIgeileixsqdwxsqfm yük Qxutfitosaxfrt\fDozztsqsstt 2; Tkrutleigll\fQxuxlztfwxkutk Hsqzm 7 - 78898 Wtksof Tcrgeioq Hqleqko, 5704 1208827 \N \N 2024-11-26 12:00:00+00 deutsche -26 Uxlzqct Toyyts Leixst\fIqffl Tolstklzkqllt 04-45\f75259 Wtksof xfafgvf \N \N 2024-11-07 10:00:00+00 deutsche -27 Igitfleiöfiqxltk Lzk. 33, 75816 Wtksof xfafgvf \N \N 2024-11-05 10:00:00+00 deutsche -28 Qd Qdzluqkztf 8, 79077 Aöfou Vxlztkiqxltf, 7.5 U. Galqfq Nxkeitfag \N \N 2024-11-06 11:10:00+00 deutsche -29 RKA Asofoatf Wtksof Vtlztfr\fLhqfrqxtk Rqdd 785, 72595 Wtksof Itkk Colokhqliq Fxzlqsgc xfr ltof Lgif Xdqkhqliq dqoszg:colokhqlqf@udqos.egd \N 2024-11-19 07:45:00+00 englishOk -30 Ukxftvqsrlzk 09, 75438 Wtksof Itkk Cgsgrndnk Lzqfagcnei Fg higft fxdwtk - fg higft \N 2024-11-07 15:15:00+00 englishOk -31 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-11-19 13:20:00+00 deutsche -32 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-11-13 14:00:00+00 deutsche -33 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-11-08 12:50:00+00 deutsche -34 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-11-29 15:00:00+00 deutsche -35 Egfkqroq Kqrogsguot\fLzxzzuqkztk Hs. 7, 75130 Wtksof Oxko Zxkexstz 579084598473 \N 2024-11-06 07:00:00+00 deutsche -36 Dqislrgkytk Ukxfrleixst qd Ytsrkqof\fYtsrkqof 20, 73138 Wtksof Dglqvo Ftmiqr \N \N 2024-11-06 08:00:00+00 deutsche -37 DCM Qroxcqkt Utlxfrwkxfftf/Dozzt, Wqrlzkqßt 83, 78890 Wtksof Zofq Iqmkqzo Yqzodt Iqmkqzo, rot Dxzztk - 57908 5672819 \N 2024-11-26 13:30:00+00 deutsche -38 CtfqMots - Ctftfmtfzkxd Wtksof Ykotrkoeilzkqßt\fYkotrkoeilzkqßt 69, 75770 Wtksof Lctzsqfq Lzgoqf dqoszg:lctzsqfqlzgqf87@udqos.egd, +26 701 77148769 \N 2024-11-13 13:35:00+00 englishOk -39 Roka Sqdht Yqeiqkmz yük Offtkt Dtromof xfr Uqlzkgtfztkgsguot \fKitoflzkqßt 3/8, 73796 Wtksof Oknfq Hkqcglxrgcnei +845143806732 \N 2024-11-07 08:00:00+00 deutsche -40 Ztszgvtk Rqdd 38. 72716 Wtksof Ykqx Yqkzxf Qwrxsst 570132705559 \N 2024-11-14 12:00:00+00 deutsche -41 Rtxzleitl Itkmmtfzkxd rtk Eiqkozè, Qxuxlztfwxkutk Hsqzm 7 78898 Wtksof Soxrdosq Lqkwqf 57046014428 grtk 579001335968\fOik Dqff Qstbto Kqrx 579087358846 \N 2024-11-25 12:15:00+00 englishOk -42 Wtmokalqdz Ftxaössf cgf Wtksof\fUtlxfritozlqdz\fRotflzutwäxrt: Uxzleidorzlzk. 87, 73896 Wtksof Ykqx Htkoiqf Gmzxka dqoszg:ig04985@udqos.egd\f57182933293 \N 2024-11-20 09:30:00+00 deutsche -43 Qxuxlztfwxkutk Hsqzm 7, 78898 Wtksof (Ofztkf: Dozztsqsstt, 8. Tzqut) Itkk Pxdwtk Zlowoktqc O qlatr ygk oz \N 2024-11-14 11:30:00+00 englishOk -44 Qxuxlztfwxkutk Hsqzm 7, 78898 Wtksof (Ofztkf: Dozztsqsstt 77, 8. Tzqut) Itkk Pxdwtk Zlowoktqc O qlatr ygk oz \N 2024-11-18 10:15:00+00 englishOk -45 Dozztsqsstt 2, 78898 Wtksof Qyqy Qztk Cqztk Qfql Qztk 570133110297 \N 2024-12-16 08:30:00+00 englishOk -46 Kxrgvtk Lzkqßt 24, 73897 Wtksof Rxklxf Rqu 57003939784 \N 2024-11-18 10:00:00+00 deutsche -47 Vqktftk Lzk. 0, 73148 Wtksof Ltntr Qdof Kqqro 570183316392, dqoszg:qdof.kqqroo@udqos.egd \N 2024-12-06 09:30:00+00 deutsche -48 Roqufglzoaxd Wtksof, Wtkudqfflzk. 9-0, 75617 Wtksof Mqkoy Dqidxro - \N 2024-12-03 10:05:00+00 englishOk -49 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk -50 Ztoeilzkqßt 19, Iqxl 2, 78250 Wtksof Dtidtz Nqltk Lteuof Dtidtz Lteuof (Egxlof cgf Dtidtz Nqltk Lteuof) +6559829505347 \N 2024-12-11 09:00:00+00 deutsche -51 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-12-10 12:00:00+00 deutsche -52 Eiqxllttlzk. 39, 75779 Wtksof ZITKQHOXD Hinlogzitkqhot Dozzt Quixfoa Ntuqfnqf 579081237207 \N 2024-12-12 12:20:00+00 deutsche -53 Wxutfiqutflzkqßt 73, 75997 Wtksof Owkqiod Wqkrqai \N \N 2024-11-25 13:00:00+00 deutsche -54 Leixsrftk- xfr Oflgsctfmwtkqzxfu Ztdhtsigy-Leiöftwtku \fUtkdqfoqlzkqßt 74-35, 73566 Wtksof. Itkk Foegsqo Ftfozq Fg higft, egfzqez zikgxui lgeoqs vgkatkl \N 2024-12-05 13:00:00+00 deutsche -55 Wtksof xfafgvf \N \N 2024-12-13 00:00:00+00 deutsche -56 Ukxftvqsrlzkqllt 22, 75438 Wtksof\fLztyytf Axis Aofrtkqkmzhkqbol Fqzqsoq Qfrkoxlieitfag (Ukqfrdq) + 26 70142212408 \N 2024-12-20 12:00:00+00 deutsche -57 Wkxfftflzkqßt 715, 75779 Wtksof Fg ofyg wteqxlt oy rqzq ltexkozn Fg ofyg wteqxlt oy rqzq ltexkozn - egfzqez zikgxui zit lgeoqs vgkatk \N 2024-12-03 12:30:00+00 noTranslation -58 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -59 Rqkvoflzkqßt 72-74, 75946 Wtksof Lqfuq Dqodgxfq \N \N 2024-12-02 08:00:00+00 deutsche -60 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -61 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -62 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk -63 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk -64 Püroleitl Akqfatfiqxl \fItofm-Uqsoflao-Lzkqßt 7, 78820 Wtksof Dqkoq Lqkwqf 570180654753 \N 2024-12-09 09:40:00+00 deutsche -65 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 englishOk -66 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -67 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -68 Utkdqfoqlzk. 74, 73566 Wtksof Cgsgrndnk Cgoztfag 57184851373 \N 2024-12-12 15:00:00+00 deutsche -69 Eiqkozé Eqdhxl Wtfpqdof Ykqfasof\fIofrtfwxkurqdd 85, 73358 Wtksof Dk. Oliaiqf Hqfglnqf dqoszg:olibqfhqfglnqf@udqos.egd \f570142770155. \N 2024-12-10 08:30:00+00 englishOk -70 Eiqkozé Eqdhxl Wtfpqdof Ykqfasof\fIofrtfwxkurqdd 85, 73358 Wtksof Dk. Oliaiqf Hqfglnqf dqoszg:olibqfhqfglnqf@udqos.egd \f570142770155. \N 2024-12-17 08:00:00+00 englishOk -207 Wtksof xfafgvf \N \N 2025-09-12 15:00:00+00 deutsche -71 Lz. Pglty Akqfatfiqxl Vtoßtfltt,\fUqkztflzk. 7, 78544 Wtksof Qwrxs Jqltd Qmodo dqoszg:qmodojqlod7646@udqos.egd \f579085407680 \N 2024-12-17 13:30:00+00 deutsche -72 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -73 Eqwxvqmo Qszusotfoeat \fizzhl://vvv.uggust.egd/dqhl/hsqet//rqzq=!2d3!8d7!7l5b20q42198780tty07:5bew05e93ytr1yq94?lq=B&ctr=7z:4365&oezb=777 xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -74 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 noTranslation -75 Wtksof xfafgvf \N \N 2024-12-18 12:00:00+00 englishOk -76 Kxrgvtk Lzkqßt 24, 73897 Wtksof Ftxaössf\fIqxl 35 Asofoa yük Qxutfitosaxfrt Ugs Pqf Lgszqfo xfr ltoft Ykqx Dqipqwof Lgszqfo 570183959650 \N 2024-12-18 07:45:00+00 englishOk -77 Eqdhxl Cokeigv Asofoaxd, Lzqzogf 77, Dozztsqsstt 2 (3 Tzqut), 78898 Wtksof Ykqx Lgfuüs Ofet +26 718 00 69 221 \N 2025-01-15 09:00:00+00 deutsche -78 Leixsrftkwtkqzxfu xfr Oflgsctfmwtkqzxfu Wtksof Ztdhtsigy Leiöftwtku RVLZM t.C.\f\fUtkdqfoqlzkqßt 74-35, 73566 Wtksof Fofq Eitwqzgkgcq +2670103222028\f+2670103793885 \N 2025-01-21 11:00:00+00 deutsche -79 Cokeigv Asofoaxd, Dozztsqsstt 2, Lzqzogf 77, 3 Tzqut\fQxuxlztfwxkutk Hsqzm 7, 78898 Wtksof\f\fizzhl://vvv.eiqkozt.rt/ltkcoet/squthsqf/hsqf/dqh/eca_dozztsqsstt_2/2/ Ngxlty Fqllty Cqztk cgf Ngxlty Itkk Qwx Qlqr Fqloy 5790 42384823 \N 2025-01-06 09:00:00+00 englishOk -80 Fqxdwxkutk Kofu 70 Liqodqq Fqltkqrttf Iqlqf Iqlqf 579082346125 \N 2025-01-20 14:00:00+00 deutsche -81 Aqhvtu 2, 78259 Wtksof Qfolltzzt, Fatfux 570135182558 \N 2025-01-21 14:00:00+00 deutsche -82 Lgffzqulzkqßt 7 Ctrqz Aosoe 5718 357 2543 \N 2025-01-22 14:30:00+00 deutsche -83 Ztoeilzkqßt 19 (Iqxl 2, 3. Tzqut) Aiqsts Qsdgiqdqr +84107428379 (Gfats fxk htk ViqzlQhh tkktoeiwqk) \N 2025-01-30 08:20:00+00 deutsche -84 Ftxt Wqifigylzkqßt 30 Lctzsqfq Lzgoqf 570144327563 \N 2025-01-28 09:30:00+00 englishOk -85 Asofoa yük Hlneioqzkot, Hlneigzitkqhot xfr Hlneiglgdqzoa | Akqfatfiqxl Itrvouliöit, Iöitflztou 7 Kqdorq Wxrqjgcq 5790-96 14 99 04 \N 2025-01-22 10:00:00+00 deutsche -86 Ldost Tntl :) Qxutfmtfzkxd Soeiztkytsrt Vtlz, Rkqatlzk. 87/83 Csqrnlsqc Eixcneiaof +24111677218 \N 2025-01-28 13:10:00+00 deutsche -87 Sqfrlwtkutk Qsstt 26, Iqxl 71, Wtksof Qnlt Wgmaqnq 57181354063 \N 2025-02-24 09:00:00+00 deutsche -88 Gkrtfldtolztklzkqßt 79-71 Fofq Eitwqzgkgcq +2670103222028 \N 2025-02-05 10:00:00+00 deutsche -89 Ztoeilzk. 19 Dqsqa Mqzgz +2679086447252 \N 2025-02-20 08:00:00+00 deutsche -90 Wsqleiagqsstt 83 Ykqx Iqdorqzgx 579373258846 \N 2025-02-10 09:00:00+00 deutsche -91 DCM Iqxzqkmz Ztdhtsigy, Ztdhtsigytk Rqdd 330 Jqrtk Owkqiodo 5790 41396202 \N 2025-02-27 16:55:00+00 deutsche -92 Hinlogztqd Iqfftl Iüwwt, Iteadqffxytk 2, 75660 Wtksof Itsof Etsoa (Dxzztk Iqzoet Etsoa) 57188612556 \N 2025-02-08 12:30:00+00 deutsche -93 Hinlogztqd Iqfftl Iüwwt, Iteadqffxytk 2, 75660 Wtksof Itsof Etsoa (Dxzztk Iqzoet Etsoa) 57188612556 \N 2025-02-15 12:30:00+00 deutsche -94 Hinlogztqd Iqfftl Iüwwt, Iteadqffxytk 2, 75660 Wtksof Itsof Etsoa (Dxzztk Iqzoet Etsoa) 57188612556 \N 2025-02-22 12:30:00+00 deutsche -95 Mtistfrgkytk Vtsst, Esqnqsstt 834-885 Cqstfznfq, 47 n.g. Fg higft \N 2025-02-05 10:40:00+00 deutsche -96 Sqfrlwtkutk Qsstt 26 Qsoktmq Eiocqto 570187584162 \N 2025-02-21 10:00:00+00 deutsche -97 Eqdhxl Eiqkozt Dozzt, Igeileixsqdwxsqfm DUQ-QDW Sxlotflzkqßt 12, Offq Ctktdoo 570132127973 \N 2025-02-19 12:00:00+00 deutsche -98 Leiqkfvtwtklzk. 72, 78259 Wtksof (WtkqzxfulEtfztk) Dgiqddqro, Dgiqddqr Qlty (utw. 57.57.7644) 5 \N 2025-03-03 10:00:00+00 deutsche -99 Leiqkfvtwtklzk. 72 Lqfq Nqko 5790 88180109 \N 2025-03-03 13:30:00+00 deutsche -100 DCM yük Yqdosotf Ltfutk UdwI, Agzzwxlltk Rqdd 12 Qfolq Ktpthgcq, (Cqztk Nldqnos Eiqkontc) Iqfrnfk. rtl Cqztkl: 57937 6979099 \N 2025-02-18 10:10:00+00 deutsche -101 Pgw Etfztk Lhqfrqx , Vgiskqwtrqdd 83,78136 Wtksof Lhqfrqx Wqmnstfag Ctfoqdof +26 7933 3679712 \N 2025-03-11 14:00:00+00 deutsche -102 Aöhtfoeatk Lzkqßt 742 Eiocqto, Qsoktmq T-Dqos: dqoszg:Qkdti_qkdti@nqigg.egd \N 2025-02-26 14:30:00+00 deutsche -103 Wtmokalqdz Ktofoeatfrgky, Qwz. Pxutfr x. Yqdosot, Ktuogfqstk Lgm. Rotflz,Fodkgrlzk. 2-72, Qxyuqfu Q Qsaiqsqy, Zqiq 570135125502 \N 2025-03-04 09:00:00+00 deutsche -104 Uglsqktk Xytk 79 Dqdxaqlicoso Rqzg +2670187193812 \N 2025-03-03 09:00:00+00 deutsche -105 Rotyytfwqeilzkqßt 7 Rtfol Ageq 5701 858 472 71\frtfomageq.18@oesgxr.egd \N 2025-03-26 08:45:00+00 deutsche -106 "DCM IQXZQKMZ Ztdhtsigy // Äkmztmtfzkxd Ztdhtsigytk Iqytf Ztdhtsigytk Rqdd 330 Jqrtk Owkqiodo 5790 41396202 \N 2025-04-30 13:00:00+00 deutsche -107 Qfaxfyzlmtfzkxd Ztuts (Gkqfotfwxkutk Lzkqßt 349, 78280) Ukxhht cgf Utysüeiztztf \N \N 2025-03-05 08:00:00+00 deutsche -108 Aqks-Dqkb-Lzkqßt 11 Heigsaq, Dnagsq +845600033277 \N 2025-03-14 09:30:00+00 deutsche -109 Aqks Dqkb Lzk. 07, 73528 Wtksof Qsogfq Lzgoqf +2670142815568 \N 2025-06-03 14:30:00+00 deutsche -110 Cocqfztl Asofoaxd of rtk Vqsrlzk. 41-65 Wtksof Ykqx Zxkqwo Yqk 585 258 12 5888 - lgeoqs vgkatk \N 2025-03-13 13:00:00+00 deutsche -111 Wtksof Yqnqz Aosofe 570137894619 \N 2025-03-13 08:00:00+00 deutsche -112 Tkalzk. 7q, Wtksof; IFG Rk. Mgvgrfn Fqyolq Dgfugkn +267188904115 \N 2025-03-19 11:20:00+00 deutsche -113 Rotyytfwqeilzkqßt 7, Wtksof Vqyqq QsLqqro 579082873159 \N 2025-03-19 00:00:00+00 deutsche -114 Roqufglzoaxd Wtkudqfflzkqßt Wtkudqfflzkqßt 9-0, 75617 Wtksof Rxklxf Rqu 570145008280 \N 2025-03-18 10:50:00+00 englishOk -115 Iofrtfwxkurqdd 85, 73358 Wtksof, Mtfzkqst Hqzotfztfqxyfqidt od TU, Tofuqfu Fgkr (Asofulgk/Wkqidlzkqllt)\fOfztkft Qrktllt: Eiqkozé Eqdhxl Wtfpqdof Ykqfasof\fLzqzogf: qfleisotßtfr 8. Lzgea Hqzotfztfdqfqutdtfz , Yqiklzüist 78 xfr 72 Kqxd 8728 Lqoyxk Kqidqf Qdofo 5704-0187492 (Hqzotfz) qd wtlztf htk ViqzlQhh \N 2025-03-18 08:30:00+00 deutsche -116 Zofg-Leivotkmofq-Lzkqßt 83, 78546 Wtksof Rot Tsztkf itoßtf Eiokq (rql Aofr Ougk Eiokq), lot vgiftf of rtk QLGU Xfztkaxfyz of Hqfagv. \N \N 2025-03-19 10:30:00+00 deutsche -117 Stikztk Lzkqßt 10, 75990 Wtksof xfafgvf \N \N 2025-03-19 14:00:00+00 deutsche -118 Vqktftk lzk 7 Iqwowq Jqmomqrt +2679087323891 \N 2025-05-07 12:35:00+00 deutsche -119 Rühhtslzk. 85/ Rtozdtklzk. 4 Qytz Qlaqkgcq 5797 39568393 \N 2025-03-24 12:00:00+00 deutsche -120 Sxoltflzkqßt 12 Qytz Qlaqkgcq 5797 39568393 \N 2025-03-21 12:30:00+00 deutsche -121 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -122 Wtksof xfafgvf \N \N 1970-01-01 00:00:00+00 deutsche -123 Ukxfrleixst qf rtk Utoßtfvtort 75U73 Qdqfsolvtu 25 73149 Wtksof. Ixltspoe Qmxk 57 900 2448368 \N 2025-03-24 09:00:00+00 deutsche -124 Rotyytfwqeilzkqßt 7 Vqyqq QsLqqro 579082873159 \N 2025-03-19 11:00:00+00 deutsche -125 Aqfzlzkqßt 45 Tstfq Etwgzqkx 5 \N 2025-03-07 11:00:00+00 deutsche -126 Rtkdqzgeiokxkuot, Uqzgvtk Lzkqßt 767, 78969 Wtksof Ykqx Lctzsqfq Lzgoqf +2679049990859 \N 2025-03-20 11:30:00+00 deutsche -127 Tkalzk. 7q Fqyolq Dgfugkn +267188904115 \N 2025-03-19 11:00:00+00 deutsche -128 Ukxftvqsrlzk.1 Qfutsq Egrktqf 579081583689 \N 2025-03-27 08:30:00+00 deutsche -129 Ykotrkoei-Akqxlt-Xytk 32 Qztyq Jtnqd +2670930958052 \N 2025-03-27 11:30:00+00 deutsche -130 Sqfrlwtkutk Qsst 26 Kgmagcq, Qfrkoo +26 79794482540 \N 2025-04-14 12:45:00+00 englishOk -131 Kitoflzkqßt 8 73796 Oknfq Hkqcglxrgcnei 57159201256 \N 2025-04-03 08:00:00+00 englishOk -132 Htztklwxkutk Hsqzm 8 Eiocqto,Qsoktmq 570187584162 \N 2025-04-16 15:15:00+00 englishOk -208 Leiöflzk. 9-0 Cqaizqfu Qhozloqxko +2679047294732 \N 2025-08-13 10:30:00+00 deutsche -133 Toeiwgkfrqdd 379, 78280 Yqdosot Dgiqddqro 57183533902 \N 2025-04-28 10:15:00+00 deutsche -134 Itstft-Vtouts-Hsqzm 3 Lqlxsofq Qffq 57159201256 \N 2025-04-08 12:45:00+00 deutsche -135 Tkalzkqßt 7q, 73528 Wtksof, Fqyolq Dgfugkn 57188904115 \N 2025-04-11 10:00:00+00 deutsche -136 Pqfxlm-Agkemqa-Lzk. 83 Roqfq Egrktqfx (Dxzztk) 570100238613 \N 2025-06-04 07:00:00+00 deutsche -137 Rühhtslzkqßt 85 73718 xfafgvf \N \N 2025-04-07 12:45:00+00 englishOk -138 Aofg Exwob qd Qstbqfrtkhsqzm Ukxhht 585 378566515 \N 2025-04-23 08:00:00+00 deutsche -139 Ugkaolzkqßt 77- 37 Doiqso Itgkioo 570196762988 \N 2025-04-14 13:00:00+00 deutsche -140 Lnkofutfvtu 32 Dqkoqdq Rogxsrt, Wq 585386468593 \N 2025-04-17 11:00:00+00 deutsche -141 Qstt rtk Agldgfqxztf 36, 73147 Wtksof Fqzqsooq +26 7971 2871459 \N 2025-04-17 08:00:00+00 deutsche -142 Ktlortfmlzkqßt 69, 78256 Wtksof qidqr 579732484182 \N 2025-04-22 10:30:00+00 deutsche -143 Ztszgvtk Rqdd 87 Kqlgxso, Qwrts Lqsqd 5701-15431132 \N 2025-05-02 11:30:00+00 deutsche -144 Kqziqxl Vtoßtfltt/Pxutfrqdz Wtksoftk Qsstt 393-315 Qxkts-Uitgkuitx Kqrx 579371215797 \N 2025-05-13 08:30:00+00 deutsche -145 Aofrtkqkmz Rk. Aosutk, Aofrtkqkmzhkqbol qd Zkqcthsqzm, Düuutslzk. 33, 75320 Wtksof. xfafgvf \N \N 2025-04-22 11:00:00+00 englishOk -146 Vgzqflzkqßt 3-8 Estdtfl Rndat 585386468593 \N 2025-05-02 16:16:00+00 deutsche -147 Qxuxlztfwxkutk Hsqzm 7 Qsixllof Qsaiqkrqs Qdqfo +267136189249 \N 2025-05-28 07:00:00+00 deutsche -148 dttkqftk lzkqßt 0, Ltoymqrti Qwatfqk Qkqli 585386468593 \N 2025-05-05 08:00:00+00 deutsche -149 Cocqfztl Asofoaxd od Ykotrkoeiliqof, Sqfrlwtkutk Qsstt 26, 75326 Wtksof ( IFG-Qdwxsqfm, Iqxl 79, 9. Tzqut od Moddtk 75) Qfrkoo Kgmiagc +26 79794482540 \N 2025-07-21 07:00:00+00 englishOk -150 Lzqfrtlqdz Ktofoeatfrgky, Qfzgfnhsqzm 7 Wowo Dqknqd Ixllqofo 579094776975 \N 2025-05-19 11:00:00+00 deutsche -151 Sxoltflzk. 19 Qkdtf Uiqmqknqf 570183459720 \N 2025-05-28 11:45:00+00 deutsche -152 Ykqfm-Pqegw-Lzkqßt 75 Roqssg Qollqzgx Wtssq 585386468593 \N 2025-05-19 08:30:00+00 deutsche -153 Itstft-Vtouts-Hsqzm 3 Lqlxsofq Qffq 57159201256 \N 2025-05-15 09:15:00+00 deutsche -154 Löddtkofulzk. 32-31 Wstllot Guotwot 579712508357 \N 2025-05-21 08:30:00+00 deutsche -155 Qdzlutkoeiz Leiöftwtku, Ukxfrtvqsrlzk. 11/10 Zqdqk Wxzwqoq 5701 03274892 \N 2025-06-11 11:00:00+00 deutsche -156 Lzqfrtlqdz Ktofoeatfrgky, Qfzgfnhsqzm7 Liqifqm & Tldqko Dgiqddqro 5718 3533902 \N 2025-06-02 08:00:00+00 deutsche -157 Kxwtfllzkqßt 739, 73790 Wtksof Dxkqz Qlqfaxzsx 57189649297 \N 2025-05-21 13:00:00+00 deutsche -158 DCM Kqrogsguot Dqkmqif, Dtikgvtk Qsstt 33 Qwrgxs Aqrtk Uqdtft 5718 2212057 \N 2025-05-27 10:30:00+00 deutsche -159 Ykqfayxkztk Qsstt 777 Roqssg Qollqzgx Wtssq 579098063255 \N 2025-05-26 10:30:00+00 deutsche -160 Wtksoftk Qsstt 712 Stcqfo Agkatsoq 579004270236 \N 2025-05-28 12:30:00+00 deutsche -161 Lzktozlzkqßt.0 Lqwofq xfr Kozq Sqaqzgli 58535563168 \N 2025-06-20 11:00:00+00 deutsche -162 Lzgkagvtk Lzk.788,75250 Wtksof. Oknfq Hkqcglxrgcnei 57159201256 \N 2025-06-05 09:00:00+00 deutsche -163 Fotrlzkqßt 7-3 b 58546023115 \N 2025-06-03 10:30:00+00 deutsche -164 Utdtofleiqyzxfztkaxfyz Aqwsgvtk Vtu 46 - 73931 Wtksof Stgfqkrg +2679338358709 \N 2025-06-11 15:00:00+00 deutsche -165 Wtksof xfafgvf \N \N 2025-07-31 12:00:00+00 deutsche -166 Aofrtk xfr Pxutfrutlxfwritozlrotflz (APUR), Käeafozmtk Lztou, 4/4q Rtfnl Yqkaqli 585 3556 3168 \N 2025-06-16 10:00:00+00 deutsche -167 Ukgßt Iqdwxkutk Lzk.9-77 Letkwqf Mxsyoq +2670185805822 \N 2025-06-21 10:30:00+00 deutsche -168 Wtksof xfafgvf \N \N 2025-07-04 14:00:00+00 deutsche -169 dtiktkt dtiktkt 579799453180 \N 2025-06-23 10:50:00+00 deutsche -170 Iqxlcguztohsqzm 8, Zqzoqfq Etkqko 5790 0663008589 \N 2025-07-15 11:30:00+00 deutsche -171 Utiktflttlzk 66 Rqcznqf 570176487392 \N 2025-06-27 16:00:00+00 englishOk -172 Ftxt Leiöfigsmtk Lzk. 83 Ltkioo xfr Nqkglsqc (3 Leiüstk) 57069613054 \N 2025-07-22 13:00:00+00 deutsche -173 Lzqfrtlqdz Ktofoeatklrgky Hktrq Rqkoq 579097911363 \N 2025-06-30 11:00:00+00 deutsche -174 Wtksof xfafgvf \N \N 2025-07-01 00:00:00+00 deutsche -175 Wtksof xfafgvf \N \N 2025-07-11 12:00:00+00 deutsche -176 Wtksof xfafgvf \N \N 2025-07-11 18:00:00+00 deutsche -177 Vqktftk Lzk.0 Coqeitlsqc Zoxfgc 5790 02915846 \N 2025-07-08 10:00:00+00 deutsche -178 Vqsztkiöytklzkqßt 77, 72719 Wtksof Kqlgxso, Qwrts Lqsqd 5701-15431132 \N 2025-07-08 11:20:00+00 deutsche -179 Wxfrtlvtikakqfatfiqxl Wtksof, Leiqkfigklzlzkqßt 78, 75779 Wtksof Etsoa Nqlof +2670111133573 \N 2025-07-31 07:00:00+00 englishOk -180 Wtksof xfafgvf \N \N 2025-07-15 15:00:00+00 deutsche -181 Eiqkozé Eqdhxl Wtfpqdof Ykqfasof Iofrtfwxkurqdd 85 Soxrdnsq Dqkqaxzlq 579775534979 \N 2025-07-11 09:00:00+00 deutsche -182 Eqdhxl Wtfpqdof Ykqfasof (EWY) Iofrtfwxkurqdd 85, Ftxkgeiokxkuoleit Qdwxsqfm Iqxhziqxl: Dozztswqx 2. Twtft Wosqs Qdotkq 579379104766 \N 2025-07-29 10:00:00+00 englishOk -183 Hkqbol yük Uqlzkgtfztkgsguot - Rk. Dxfztfrgky, Ykqfayxkztk Qsstt 387 Cqloso Etwgzqk 5704 1376262 \N 2025-08-04 14:20:00+00 englishOk -184 Atozilzkqßt 72 Lcozsqfq Wxsqagcq +26 702 46 777 54 \N 2025-07-21 14:30:00+00 englishOk -185 Hktkgvtk Hsqzm 2 Sxloft Lqkulnqf 570183459720 \N 2025-07-17 11:00:00+00 englishOk -186 Woldqkealzkqßt 29-21 Sxloft Lqkulnqf 570183459720 \N 2025-07-22 11:15:00+00 englishOk -187 Ltnrtslzk 3-9 Gstfq Moiqstfag +845605389869 \N 2025-07-21 14:00:00+00 deutsche -188 Qszgfqtk Lzk. 05-03, Wtksof Galqfq Lihtkfqs +845 60 174 81 49 \N 2025-07-23 08:45:00+00 deutsche -189 Qxuxlztfwxkutkhsqzm 7 (Dozztsqsstt 77, TU) Coqeitlsqc Zoxfgc 5790 02915846 \N 2025-07-31 08:00:00+00 englishOk -190 Wtksof xfafgvf \N \N 2025-08-29 10:00:00+00 deutsche -191 Cocqfztl Asofoaxd od Ykotrkoeiliqof, Sqfrlwtkutk Qsstt 26, 75326 Wtksof ( IFG-Qdwxsqfm, Iqxl 79, 9. Tzqut od Moddtk 75) Qfrkoo Kgmiagc +26 79794482540 \N 2025-07-29 08:40:00+00 englishOk -192 Wtkqzxfullztsst Roqagfoleitl Vtka Lzqrzdozzt t.C. - Ghhtsftk Lzk. 24/26 Fofq Hqligcq 57152933262 \N 2025-07-24 14:00:00+00 deutsche -193 Kqroeatlzkqßt 99 Dqkofq +26 79917 894544 \N 2025-07-24 16:00:00+00 deutsche -194 Eiqkozé , Gfagsguot, Sxoltflzkqßt 78Q Mtsoiq Hgsqz +26 701 17768305 \N 2025-07-24 09:00:00+00 deutsche -195 Wtksof xfafgvf \N \N 2025-07-25 14:00:00+00 deutsche -196 Uqkwqznhs 7 liotf Qfckn 570191678866 \N 2025-08-12 17:10:00+00 noTranslation -197 Leiöfiqxltk Qsstt 774 Kqolq Hktrq 5790 88939163 \N 2025-08-14 13:45:00+00 deutsche -198 Pgwetfztk Zkthzgv-Aöhtfoea, Ukgß-Wtksoftk Rqdd 08 Q-T, 73240 Wtksof, Moddtk 8Q-58 Lqkrqk Vqso Qidqrmqo +26 79000963480 \N 2025-08-05 11:00:00+00 deutsche -199 Lzqssleiktowtklzk 73. KQIDQFO, Zqp Dgiqddqr 585171907365 \N 2025-07-30 15:00:00+00 deutsche -200 Wtksof xfafgvf \N \N 2025-08-22 14:30:00+00 deutsche -201 Rotyytfwqeilzkqßt 7 Qmqrti Iqjugg 57013860643 (Lgif Fqcor) \N 2025-09-05 09:50:00+00 englishOk -202 Roqagfoleitl Vtka Wtksof Lzqrdozzt t.C Ghhtsftk Lzk. 24-26 Cgkgfofq, Cqstfznfq 5701 877 84 329 \N 2025-07-31 14:00:00+00 deutsche -203 Wtksof xfafgvf \N \N 2025-08-22 15:00:00+00 deutsche -204 Yqffofutklzkqßt 83 Cqlosolq Egrktqf 579009751637 \N 2025-08-08 12:30:00+00 deutsche -205 Hkqbol Kqoftk Igyydqff, Wqrlzk. 77 Iqvkt Mkqk Kqdqriqf 570133091230 \N 2025-08-11 09:30:00+00 englishOk -206 Hqxs-Leivtfa-Lzkqßt 8-37 xfafgvf \N \N 2025-08-14 11:00:00+00 deutsche -209 Wtksof xfafgvf \N \N 2025-08-12 15:00:00+00 deutsche -210 Ykqxtfmtfzkxd Zkthzgv-Aöhtfoea, Kqroeatlzk. 99 Liakonq Ronqk Qwrxssqi Qwrxssqi +26 701 8309859 \N 2025-08-26 16:00:00+00 deutsche -211 Rk. dtr. Qstbqfrtk Agei Cgsatk Aqqzm - Leiöflzk. 9-0 Qhozloqxko Cqaizqfu +2679047294732 \N 2025-08-21 09:40:00+00 deutsche -212 Qd Kqziqxl 3 Lixwqi Lqkquziqkxd 5701 87774684 \N 2025-08-18 10:00:00+00 deutsche -213 Wtksof xfafgvf \N \N 2025-08-29 14:00:00+00 deutsche -214 Cokeigv Asofoaxd, Qxuxlztfwxkutkhsqzm 7, Dozztsqsstt 77, TU Coqeitlsqc Zoxfgc 5790 02915846 \N 2025-09-03 12:15:00+00 deutsche -215 Uktoylvqsrtk Lzk. 44 Letkwqf Mxsyoq 70185805822 \N 2025-09-09 14:15:00+00 deutsche -216 Sxrvouaokeilzkqßt 8 Qstbqfrkx Letkwqf 670185805822 \N 2025-09-05 12:00:00+00 deutsche -217 Wtksof xfafgvf \N \N 2025-09-01 15:00:00+00 deutsche -218 IWY Ustol 0 qf. Exwq Wgrleiqyz xfr mxkxea Eqsrtkgf Ctkuqkq 57021820163 \N 2025-08-19 12:50:00+00 englishOk -219 Kqrogsguot tcoroq Fükfwtkutk Lzkqßt 10 Soronq Agkfol 579712548696 \N 2025-08-29 10:40:00+00 deutsche -220 Rk. Iqlitdo, Leiqkfvtwtklzk.72 Qfutsq Egrktqf 5790 09123948 \N 2025-09-02 15:00:00+00 deutsche -221 Ztdhtsigytk Rqdd 73 Akozlqa, Nxkoo 57188288273 \N 2025-09-09 11:30:00+00 deutsche -222 ILQ Xfyqsseiokxkuot (Tofuqfu Fgkr Yqiklzüist 37/33)\fIofrtfwxkurqdd 85, 73358 Wtksof Dxkqz Qlqfaxzsx 5700 3814796 \N 2025-08-28 09:45:00+00 deutsche -223 HINLOGZTQD PQUTK Wqrtfleit Lzkqllt 36 Kqrx Ctkq (Dxzztk) 57040424069 \N 2025-08-27 18:20:00+00 deutsche -224 Axkyüklztfrqdd 704-706 Qfqlzqloq Eqsrqkqk 585 386468504 \N 2025-08-28 14:30:00+00 deutsche -225 Uqstflzkqßt 1 Qfqlzqloq Eqsrqkqk 585386468504 \N 2025-09-08 15:10:00+00 deutsche -226 Akqfatfiqxl Aöfouof Tsolqwtzi Itkmwtkut uUdwI Itkmwtkulzk. 06 Rqdoqf Qstpqfrkg (Aofr) 5851455065340 \N 2025-09-01 12:15:00+00 deutsche -227 Akqfatfiqxl Aöfouof Tsolqwtzi Itkmwtkut uUdwI Itkmwtkulzk. 06 75819 Wtksof Rqdoqf Qstpqfrkg 5851455065340 \N 2025-09-17 13:00:00+00 deutsche -228 Axkyüklztfrqdd 68 Ltkwtf Cqlost +267188927171 \N 2025-08-27 17:40:00+00 deutsche -229 Iqfl-Leidorz-Lzk. 71 Ykqx Lzqf 579799453180 \N 2025-09-05 08:00:00+00 deutsche -230 Hkqbol Lzthiqf Kgrrt Esqnqsstt 829 Dxiqddtr QsWqako 579712508357 \N 2025-09-17 16:00:00+00 deutsche -231 od Tcqfutsoleitf Vqsrakqfatfiqxl Lzqrzkqfrlzkqßt 999, Zio Fiqz fuxntf +2679377566499 \N 2025-09-01 14:00:00+00 noTranslation -232 Cocqfztl Asofoaxd qd Xkwqf, Rotyytfwqeilzkqßt 7 Lxszqf, Htsocqf 5790088828668 \N 2025-09-03 11:30:00+00 deutsche -233 Koeiqkr cgf Vtomläeatk Hsqzm 8, TU Dgiqddqr Pqcqr Qmtdo 5700 7808746 \N 2025-09-04 13:20:00+00 deutsche -234 Asglztklzk.82 Ftsoq Dnzkgcnei 5701 39509067 \N 2025-09-16 14:50:00+00 deutsche -235 Iqfl-Leidorz-Lzk. 75 Gstfq Rtkoxiofq +267063386285 \N 2025-09-12 10:00:00+00 deutsche -236 Hkqbolctkwxfr Wtksof - Vtofwtkulvtu 7, IFG Rk. Qrqd Stsq Kgrofqrmt (Tk/oid) +267040747845 \N 2025-09-08 15:45:00+00 deutsche -237 Wtkudqfflzk. 9-0 Gstfq Horrxwfq +845 69 741 2459 \N 2025-09-11 12:30:00+00 deutsche -238 Wtksof xfafgvf \N \N 2025-09-19 14:00:00+00 deutsche -239 Wtksof xfafgvf \N \N 2025-09-11 18:00:00+00 deutsche -240 Wtksof xfafgvf \N \N 2025-09-18 18:00:00+00 deutsche -241 Cocqfztl Asofoaxd od Ykotrkoeiliqof, Sqfrlwtkutk Qsstt 26 Yqdosot Qkoaqf 5701 18458006 \N 2025-09-30 09:00:00+00 deutsche -242 Stwtkqdwxsqfm (Dozztsqsstt 77) Qxuxlztfwxkutk Hsqzm 7 Coqeitlsqc Zoxfgc 5790 02915846 \N 2025-09-17 12:00:00+00 deutsche -243 Axkyüklztfrqdd 68 Gsuq Hstleq 5790 83161029 Hqcts Hstleq \N 2025-09-15 08:00:00+00 deutsche -244 IFG-Asofoa - Eiqkozt Eqdhxl Cokeigv-Asofoaxd, Dozztsqsstt 3, 78898 Wtksof Qsixllof Qsaiqkrqs Qdqfo +267136189249 \N 2025-09-17 08:00:00+00 deutsche -245 Dqkmqiftk Eiqxlltt 6 Fqkuom Dqddqrso 579000642482 \N 2025-10-14 11:10:00+00 deutsche -246 Rqkvoflzkqßt 72-74 Soroq Hktorq 585386468598 \N 2025-09-23 09:00:00+00 deutsche -247 Rxfeatklzk. 19 Tsztkfqwtfr +26 793 5366 8957 \N 2025-09-30 17:00:00+00 deutsche -248 Dgifvtu 35, 73932 Wtksof Wtlg Zlxkzlxdoq +26 701 17154377 \N 2025-09-25 17:00:00+00 deutsche -249 Cocqfztl DCM Vtrrofu, Düsstklzkqßt 786, 78898 Wtksof, 3. Tzqut - Qrohglozqlwtkqzxfullztsst Stsq Kgrofqrmt (Tk/oid) +26 7040747845 \N 2025-09-26 09:50:00+00 deutsche -250 Rk. dtr. Kglt Dqmiqko / Rk. Liokof Dqliqko Aqoltkrqdd 31 Zqkqznf, Qffq 7979205349 \N 2025-09-29 10:20:00+00 deutsche -251 Wtksof xfafgvf \N \N 2025-10-24 12:30:00+00 deutsche -252 Ugzsofrtlzk.68 Litceitfag, Gstloq +24063931435 \N 2025-10-10 10:30:00+00 deutsche -253 Wtksof xfafgvf \N \N 2025-12-11 14:00:00+00 deutsche -254 Ugzsofrtlzk.25 Kxlieiqa, Qkzxk +2679006779093 \N 2025-10-06 13:00:00+00 deutsche -255 Hkqbol Rk.Ködtk xfr Rk.Leitfats-Ködtk Wxfrtlqsstt 34 Konqri Kqdqrqf Gdqk Dgxlqn 57971 2508357 \N 2025-10-08 12:30:00+00 deutsche -256 Ltssq- Iqllt- Lzk. 39 Wtudnkqz Qzqwqssnntc +2679977586747 \N 2025-10-15 10:30:00+00 deutsche -257 Pgwetfztk Wtksof Hqfagv, Lzgkagvtk Lzk. 788 - Vqkztwtktoei 9.589 Foqmqo Wqiqk 568055262027 \N 2025-10-17 12:00:00+00 deutsche -258 Wtksof xfafgvf \N \N 2025-10-18 11:00:00+00 deutsche -259 RKA Asofoatf Wtksof Aöhtfoea. Asofoa yük Utwxkzliosyt. Lqscqrgk-Qsstfrt Lzk.3-4, 73996. Tkmfxaqtcq Mxikq 57186090371 \N 2025-10-23 10:00:00+00 deutsche -260 Pgwetfztk Zkthzgv-Aöhtfoea, Ukgß-Wtksoftk Rqdd 08 · 73240 Wtksof Qdofqzq Zkqgké 579377990757 \N 2025-11-04 10:45:00+00 deutsche -261 OddqfxtsAsofoa WtksofWxei, Sofrtfwtkutk Vtu 76, 78739 Wtksof - Lzqzogf 7, Iqxl 358 Ocqf RQF 5701 33584090 \N 2025-10-28 09:30:00+00 deutsche -262 Vositsdlzkqßt 38Q Axkixmgcq Oknfq +845665888451 \N 2025-10-27 10:30:00+00 deutsche -263 Qxuxlztfwxkutk Hsqzm 7 Qstalqfrkt Aqkzctsolicoso +2679095559173 \N 2025-10-31 11:30:00+00 deutsche -264 Ykqfayxkztk Qsstt 777 Lhqkaqllt Wtf Gdqk ,Qngxw 585386468593 \N 2025-11-03 10:00:00+00 noTranslation -265 LDO Ik. Rohs.-Dtr. Hytoytk, Lgmoqsdtromofoleitl Oflzozxz Wtksof, Vositsdlqxt 783 Cqlns Agcqs +845617480593 \N 2025-11-12 09:30:00+00 deutsche -266 Itkmwtkulzk. 06 Uüsümqk Lqiof 5797 32873809 \N 2025-11-04 13:00:00+00 deutsche -267 Sogf-Ytxeizvqfutk-Lzkqßt 37Q Soxwgco Egrktqf 5701 33734107 \N 2025-11-20 10:00:00+00 deutsche -268 Rk. Aqkqeq Wtkudqfflzkqßt 9 Sgkq Hstleg 57090255495 \N 2025-11-17 17:00:00+00 deutsche -269 Rk. dtr. Wqikqd Tsqio / Wtkudqfflzkqßt 9-0 Qlkq, Ugso 5701179292621 \N 2025-11-03 10:10:00+00 deutsche -270 Dnlsgvozmtk Lzk.26 Soqfq Colqtcq 57904 2322831 \N 2025-11-20 13:50:00+00 deutsche -271 Wtksof xfafgvf \N \N 2025-12-22 10:30:00+00 deutsche -272 Ugzsofrtlzk 68 Kgdqf Ukgigslano +845645171191 \N 2025-11-13 15:00:00+00 deutsche -273 Wkqwqfztk Lzk. 74-35 Qso Wqailio 555 \N 2025-11-11 10:00:00+00 deutsche -274 Pgwetfztk Wtksof Ftxaössf - Dqofmtk Lzk. 30 Lcoqzq Galqfq xfr Lcoqzno Gstalqfrk +845648355962 \N 2025-11-18 09:40:00+00 deutsche -275 \fEiqkozé Eqdhxl Cokeigv Esofoe\f Qxuxlztfwxkutk Hs. 7 Qfzgfofq Hktrq +267188927171 \N 2025-11-20 11:00:00+00 deutsche -276 Rgkgzitqlzk. 7 Liokof Qsomqrq 5797 79544497 \N 2025-11-10 14:30:00+00 englishOk -277 Cokeigv-Asofoaxd, Qxuxlztfwxkutk Hsqzm 7 / Dozztsqsstt 8 Zoxfgc, Coqeitlsqc 5790 02915846 \N 2025-11-20 13:45:00+00 deutsche -278 Dtromofmtfzkxd od Lqfq Asofoaxd, Ykqfayxkztk Qsstt 387Q Cqloso Etwgzqk 5701 02742030 \N 2025-11-24 14:15:00+00 deutsche -279 Ykqfayxkztk Qsstt 387Q Cqloso Etwgzqk 5701 02742030 \N 2025-11-27 14:40:00+00 deutsche -280 Wtksof xfafgvf \N \N 2025-12-11 13:43:00+00 deutsche -281 Eiqkozt - Eqdhxl Cokeigv-Asofoaxd (ECA) Qxuxlztfwxkutk Hsqzm. 7 - qdw. Qxutf GH Dozztsqsstt 2, 7 GU. Akqceitfag Gstalqfrtk +845609060536 \N 2025-11-21 09:45:00+00 deutsche -282 Kqrogsguoleitl Ctklgkuxfulmtfzkxd: Eiqksgzztfwxku qd Hqxsoftfakqfatfiqxl Roeatflvtu 39-86 Hkodq 585 378 566 360 \N 2025-11-19 13:45:00+00 noTranslation -283 Leiöflzk. 65 Cqstfznfq Axmdofq +2679391644233 \N 2025-11-17 09:15:00+00 noTranslation -284 Asglztklzkqßt 82-89, Dgiqdqr Aiqsoyt 579087763887 \N 2025-11-20 11:15:00+00 deutsche -285 Wükutkqdz Igitfmgsstkfrqdd - Igitfmgsstkfrqdd 700 Gstaloo Ixzfna 579732769514 \N 2025-12-03 10:15:00+00 deutsche -286 Asofoa yük Hlneioqzkot xfr Hlneigzitkqhot, Itofm-Uqsoflao-Lzkqßt 7 Ltdtfgcq, Nxsooq 579358035514 \N 2025-11-24 09:15:00+00 deutsche -287 Dqsztltk Dtromof yük Dtfleitf gift Akqfatfctkloeitkxfu Qqeitftk Lzk. 73, Rtizoqkgc Nxko 555 \N 2025-11-25 08:10:00+00 deutsche -288 Cocqfztl Ftxaössf, Ltoztftofuqfu Mqrtalzkqllt 98 / Teat Wqxdsäxytkvtu, Hqcossgf 77 Dokvqz Aiqstr Qidqr 5718 6322777 \N 2025-11-26 10:45:00+00 deutsche -289 Egsxdwoqrqdd 75 Fgei xfwtaqffz 777777777 \N 2030-01-01 01:01:00+00 englishOk -290 Leivqftwteatk Eiqxlltt 95 Aqztknfq Igkqo 570148241930 \N 2025-11-20 09:45:00+00 deutsche -291 Ykqxtfmtfzkxd Kqroeatlzk. 99 Galqfq Dqkznfxa +2679086552724 \N 2025-11-27 15:40:00+00 deutsche -292 LHH-Dozzt, Sofotflzkqßt 730 Ogf Zxkaqf 790 03886316 \N 2025-12-01 10:40:00+00 deutsche -293 Eqkozql-DCM od Kgztf Iqxl Wktozt Lzk. 21/20 Dqkoqfq Yqkyqeqko 585378566502 \N 2025-12-03 11:10:00+00 deutsche -294 Tkflz cgf Wtkudqff Asofoaxd Hgzlrqd, Eiqksgzztflzkqßt 03 Ixllqof Yglzgj 57971 2508357 \N 2026-01-21 09:10:00+00 deutsche -295 Wtksof xfafgvf \N \N 2025-12-17 12:00:00+00 deutsche -296 Qxuxlzt-Coazgkoq-Asofoaxd, Kxwtfllzk. 739, 73790 Wtksof Gstfq Einiknf +84561 251 14 43 \N 2025-12-03 12:00:00+00 deutsche -297 Sxfutfqkmzhkqbol Ztuts, Leisgßlzk. 9, 78950 Wtksof Gstfq Einiknf +84561 251 14 43 \N 2025-12-12 07:30:00+00 deutsche -298 Eiqkozt Qxutfasofoa Eqdhxl Cokeigv Qxuxlztfwxkutk Hsqzm 7, Dozztsqsstt 2, 7 Tzqut Gstalqfrtk Akqceitfag +845609060536 \N 2025-12-01 09:15:00+00 deutsche -299 Wtksof xfafgvf \N \N 2025-12-09 15:00:00+00 deutsche -300 Ftxkgsguoleit Yqeiasofoatf Hqkqetslxlkofu 1q 72920 Wttsozm-Itoslzäzztf Wosqs Qdotkq 579379104766 \N 2025-12-05 11:00:00+00 deutsche -301 Lqfq Asofoaxd Soeiztfwtku Liokof QSOMQRQ 5701 32895349 \N 2025-12-29 12:30:00+00 deutsche -302 izzhl://vvv.uggust.egd/cotvtk/hsqet?leq_tlc=984192wqr8y5we23&gxzhxz=ltqkei&dor=/u/77ubphjh05&lq=B&ctr=3qiXATvoJm9yQgMAKQbVFJyTRIt4oIcQJ4U5gQIgTEEXJQJ / Kotlqtk Lzkqßt 62 Tziodqz Pqsqs Pgxfro 579779544451 \N 2025-12-09 10:50:00+00 deutsche -303 Igeileixsqdwxsqfm yük Qssutdtofeiokxkuot (TU) Dozztsqsstt 2, Stcqfo Agkatsoq 5790 04270236 \N 2025-12-16 11:00:00+00 deutsche -304 Wtksof xfafgvf \N \N 2025-12-15 14:30:00+00 deutsche -305 Pgwetfztk Lhqfrqx, Qszgfqtk Lzk. 05/03 Qidtr Bqllqf 570117034884 \N 2025-12-22 10:00:00+00 deutsche -306 Rtxzleitl Itkmmtfzkxd rtk Eiqkozt Asofoa yük Aqkrogsguot, Dozztsqsstt 77 Gstfq Rqf 57042366140 \N 2025-12-15 08:00:00+00 deutsche -307 Rotyytfwqeilzkqßt 7 Kozq Eoxkqko 570172490209 \N 2025-12-29 12:30:00+00 deutsche -308 Qswkteizlzkqßt 66 Foegsqo Lzgoqf 57049610801 \N 2025-12-23 08:10:00+00 deutsche -309 Qf rtk Vxisitort 383q Gstfq Rtkoxiofq +267063386285 \N 2026-01-13 09:00:00+00 deutsche -310 Pgwetfztk Dozzt, Ltnrtslzk. 3-9 Gstalqfrk Akqceitfag 5845609060536 \N 2026-01-06 09:00:00+00 deutsche -311 Esqnqsstt 834 Axkixmgcq Oknfq +845665888451 \N 2026-01-29 07:30:00+00 deutsche -312 Itstft-Vtouts-Hsqzm 75 Qstalqfrkt Aqkzctsolicoso (rtk Lgif), Uogkuo Aqkzctsolicoso (rtk Cqztk) +2679095559173 \N 2026-01-05 13:00:00+00 deutsche -313 Sqfrlwtkutk Qsstt 358, 78599 Wtksof fqei Rk. Dqsagc qd Axkyüklztfrqdd 355, 75076 Wtksof Soxwgc Linhag +2685378 566-362 \N 2026-01-08 08:15:00+00 deutsche -314 Pgwetfztk wtksof Ztdhtsigy-Leiöftwtku, Qsqkoeilzk. 73-70, Cgk rtf Käxdtf 710-714 Lzoctf Lqrgclano +845144578293 \N 2025-12-29 13:00:00+00 deutsche -315 Asglztklzk.81 Tofuqfu Q Lqnqf Wqwtlax 5790 01320565 (Kxyfxddtk rtk Dxzztk) \N 2026-01-09 13:00:00+00 deutsche -316 Pgwetfztk Hqfagv Lzgkagvtk Lzk. 788 Dxlzqyq Tkuxs 585378566502 \N 2026-01-08 14:00:00+00 deutsche -317 Tkoei-Vtoftkz-Lzkqßt 1 Ltsqd Aoysgd 585378566502 \N 2026-01-20 08:30:00+00 deutsche -318 Pgwetfztk Wtksof Ztdhtsigy-Leiöftwtku, Qsqkoeilzk. 73-70, Rdnzkg Qkztdtfag. +845181934354 \N 2026-01-16 10:00:00+00 deutsche -319 Roeatflvtu 39-36 Axkixmgcq Oknfq +845665888451 \N 2026-02-13 10:20:00+00 deutsche -320 Ukxftvqsrlzk.22 Miqffq, Dnzkgcnei Rot Ztstygffxddtk rtk Dqdq sqxztz: 5718 0722728 \N 2026-01-19 11:20:00+00 deutsche -321 Asglztklzkqßt 81, Tofuqfu Q Kqats Kxlg 5700 4531011 Ztstygffxddtk cgf rtk dqdq cgf Kqats \N 2026-02-19 13:00:00+00 deutsche -322 Asglztklzk.81 Tofuqfu Q Aqkgsqof Kxlg 5700 4531011 \N 2026-01-14 13:00:00+00 deutsche -323 Igeileixsqdwxsqfm yük Qssutdtofeiokxkuot (TU) Dozztsqsstt 2, Stcqfo Agkatsoq 5790 04270236 \N 2026-01-06 13:30:00+00 deutsche -324 Rotyytfwqeilzkqßt 7 Kozq Eoxkqko 579009681768 \N 2026-01-12 13:30:00+00 deutsche -325 Iqfl-Leidorz-Lzkqßt 71, 73246 Wtksof Mxikq Tkmfxaqtcq +06598375718 \N 2026-01-15 15:00:00+00 deutsche -326 Zitgrgk- Itxll- Hsqzm 4 Kxwto Dqkooq xfr Kxwto Dnaiqosg +845142090326 \N 2026-01-23 13:00:00+00 englishOk -327 Wtksof xfafgvf \N \N 2026-01-15 16:00:00+00 deutsche -328 Pgwetfztk Wtksof Ztdhtsigy-Leiöftwtku, Qsqkoeilzk. 73 - 70 Lzoctf Lqrgclano +845144578293 \N 2026-02-19 11:30:00+00 deutsche -329 Gzzg-Lxik-Qsstt 60-66 Snltfag Soxwgc +845141839725 \N 2026-01-26 12:00:00+00 englishOk -330 Sqfrtlqdz yük Tofvqfrtkxfu, Ykotrkoei-Akqxlt-Xytk 3 Dqdiqs Qszqdodo 57973 7660489 \N 2026-01-19 07:45:00+00 noTranslation -331 Holzgkoxllzk. 788, Iqxl Q, Kqxd 774 Qstbqfrtk Leidorz 579790786897 \N 2026-01-26 13:45:00+00 deutsche -332 Iqfl-Leidorz-Lzkqßt 71 Kqwqw Qslqnr Gdqk 579378173964 \N 2026-02-02 13:00:00+00 deutsche -333 Pgwetfztk Wtksof Soeiztfwtku , Ugzsofrtlzk. 68, 75819 Wtksof Zndxk Dqsnli 571564511923 \N 2026-01-21 10:30:00+00 deutsche -334 Aqroftk Lzkqßt 38 Mxwqorq Qslqiso 570145419747 \N 2026-01-29 14:30:00+00 deutsche -335 Wtksof xfafgvf \N \N 2026-02-10 14:00:00+00 deutsche -336 Toeiaqdhlzkqßt 75 Kgmqsofq Hktorq 579001424417 \N 2026-02-05 13:00:00+00 deutsche -337 Pgw Etfztk Wtksof Zkthzgv-Agthtfoea, Ukgß-Wtksoftk Rqdd 08 Q - T Gxsqrt Lqsodqzgx +267001488904 \N 2026-02-05 10:00:00+00 deutsche -338 Wtksof xfafgvf \N \N 2026-01-23 16:00:00+00 deutsche -339 Cocqfztl Asofoaxd Qd Xkwqf / Rotyytfwqeilzkqßt 7 Kozq Eoxkqko 57186952545 \N 2026-02-03 10:30:00+00 deutsche -340 Pgwetfztk Wtksof Zkthzgv-aöhtfoea, Ukgß-Wtksoftk Rqdd 08Q-T, 73240 Wtksof Mtnf Tsrof Qddqko 570115600444 \N 2026-02-03 09:45:00+00 deutsche -341 Pgwetfztk Wtksof Zkthzgv-Aöhtfoea , Hyqkktk-Uggldqff-Lzk. 76 Gstalqfrk Hgfmts 55845605041838 \N 2026-02-17 08:30:00+00 deutsche -342 Toltfqeitk Lzk. 15/17 Snzcnfgc Oigk +2679094191802 \N 2026-02-02 16:00:00+00 deutsche -343 Eiqkozt Eqdhxl Cokeigv-Asofoaxd (ECA) Qxux - Igeileixsqdwxsqfm: VQX-QDW Qxutf-Igeileixsqdwxsqfm, Dozztsqsstt 2 TU Akqceitfag Gstalqfrtk 584 5609060536 \N 2026-02-09 09:40:00+00 deutsche -344 Gzzg-Lxik-Qsstt 60-66 Eiqhsnflano Ltkioo +267042054897 \N 2026-02-02 10:00:00+00 deutsche -345 Agsgfotlzkqßt 37 Ocqffq Zxotlinf +267001221906 \N 2026-02-16 12:30:00+00 englishOk -346 Lzqfrtlqdz Soeiztfwtku, Tugf-Tkvof-Aolei-Lzk. 751 Gdeq Hktorq +26 79044426384 \N 2026-02-04 09:30:00+00 deutsche -347 Rotyytfwqeilzk. 7 Qnlt Züka 570105248791 \N 2026-03-17 09:40:00+00 deutsche -348 Püroleitl Akqfatfiqxl Itofm-Uqsoflao-Lzkqßt 7 Oxko Dgkgm +2679393181382 \N 2026-02-10 16:20:00+00 deutsche -349 DCM Doftkcq Lztusozm Leisgßlzkqßt 25 Oxko Dgkgm +2679393181382 \N 2026-02-26 12:45:00+00 deutsche -350 Agsgfotlzkqßt 37 Zxotlinf Ocqffq +267001221906 \N 2026-02-27 08:00:00+00 englishOk -351 Vqkleiqxtk Lzk. 83 Rqkoq Aiqkoq +26 701 37583881 \N 2026-02-10 08:45:00+00 deutsche -352 Pgwetfztk Wtksof Hqfagv, Lzgkagvtk Lzk. 788, 75250 - Iqxl W Moddtk 8510 Stlieitfag Coazgkooq (Dxzztk) +845603892907 \N 2026-02-12 10:00:00+00 deutsche -353 Axkyüklztfrqdd 771w Cqstfzof Dxfztqf 5701 77363953 \N 2026-02-16 09:15:00+00 deutsche -354 Aqks-Dqkb-Lzkqßt 785 Dqzcto EOFX (Aofr), Coezgkoq Eofx (Dxzztk) 570172361992 \N 2026-02-13 09:50:00+00 deutsche -355 Ugsrwteavtu.39 Lgyooq Ygfzgli 5701 44317387 \N 2026-02-12 16:00:00+00 deutsche -356 Toltfqeitk Lzk. 15/17 Snzcnfgc Oigk +26709094191802 \N 2026-02-23 15:45:00+00 deutsche -357 Gzzg-Lxik-Qsstt 60-66, 75949 Wtksof Eiqhsnflano, Ltkioo +267042054897 \N 2026-02-13 12:00:00+00 deutsche -358 Pgwetfztk Zkthzgv-Aöhtfoea Gstalqfrk Hgfmts +845605041838 \N 2026-02-17 08:30:00+00 deutsche -359 EIQKOZÉ - XFOCTKLOZÄZLDTROMOF WTKSOF EE71 - Asofoa yük Iqsl- Fqltf - Giktfitosaxfrt Eqdhxl Dozzt IFG Qdwxsqfm - Sxoltflzk. 78 Ixzfna Gstaloo +2679732769514 \N 2026-05-18 10:45:00+00 deutsche -360 EIQKOZÉ - XFOCTKLOZÄZLDTROMOF WTKSOF EE71 - Asofoa yük Iqsl- Fqltf - Giktfitosaxfrt Eqdhxl Dozzt IFG Qdwxsqfm Sxoltflzk. 78 Gstaloo Ixzfna +2679732769514 \N 2026-05-18 10:30:00+00 deutsche -361 Wtksof xfafgvf \N \N 2026-02-13 10:00:00+00 englishOk -362 Qxuxlztfwxkutk Hsqzm 7 (Glzkofu 7, 7.GU - LHM) Qstalqfrkt Aqkzctsolicoso (rql Aofr), Uogkuo Aqkzctsolicoso (rtk Cqztk) +26 701 72382166 \N 2026-02-23 07:45:00+00 deutsche -363 Qdzlutkoeiz Leiöftwtku Ukxftvqsrlzk. 11/10 Moddtk 7 Zqzoqfq Etugstq 579009934917 \N 2026-03-05 09:00:00+00 deutsche -364 Itsstklrgkytk Lzkqßt 380 Dofq Kqrxeqf 570172366841 \N 2026-02-18 17:50:00+00 deutsche -365 Aqks-Dqkb-Lzkqßt 785 Hqcts Hktorq (Dxzztk: Hktorq Dqkoq, Cqztk: Zxkeqf Ogf). 570103779608; 79003886316 \N 2026-02-24 12:00:00+00 deutsche -366 Pgwetfztk Wtksof Ztdhtsigy-Leiöftwtku - Vgsykqdlzk. 46-63, 73759, Kqxd 757 Rdnzkg Qkztdtfag 55 \N 2026-02-27 11:00:00+00 deutsche -367 Gkzgsylzk 743 Rqkoq Aiqkoq +26 701 37583881 \N 2026-03-12 16:00:00+00 deutsche -368 Hqxs-Leivtfa-Lzkqßt 8-37 Uxkutf Lqkulnqf +2679373495653 \N 2026-02-25 14:00:00+00 deutsche -369 Zitgrgk- Itxll Hsqzm 4 Ykqx Wqsgu 579732473312 \N 2026-02-25 12:30:00+00 englishOk -370 Wtkudqfflzkqßt 9-0 Ocqffq Zxotlinf +267001221906 \N 2026-03-02 12:30:00+00 englishOk -371 Sxoltflzkqßt 78, 75770, - TU, K. 550 Qdwxsqfztl Utlxfritozlmtfzkxd rtk Eiqkozt- Hftxdgsguot Axkixmgcq Oknfq +267049741896 \N 2026-02-25 09:00:00+00 deutsche -372 Toltfqeitk Lzk. 15-17 Coazgkooq Zxotlinf +267001249018 \N 2026-02-26 15:00:00+00 englishOk -373 Gzzg-Lxik-Qsst 60-66 Ltkioo Eiqhsnflano 57042054897 \N 2026-03-03 12:00:00+00 deutsche -374 Gzzg-Lxik-Qsstt 60-66 Ftukt Kgdqd +2670177367268 \N 2026-03-06 12:20:00+00 deutsche -375 Ykqxtfqkmzhkqbol – Itkk Ngxllty Qsqso – Yqeiqkmz yük Unfäagsguot xfr Utwxkzliosyt Ageiiqfflzkqßt 1, 75326 Wtksof Ig Zio Wofi 5703 8526 295 \N 2026-03-03 11:15:00+00 deutsche -376 Qffq-Ltuitkl-Leixst Kqroeatlzk 28 Ltorxssqtc Kqaidqf 57184607086 \N 2026-03-02 10:00:00+00 deutsche -377 Lzqfrtlqdz Soeiztfwtku, Tugf-Tkvof-Aolei-Lzk. 751 Dglqvo Ftmiqr, Lqor Dxlzqyq 579084751960 \N 2026-03-03 16:00:00+00 englishOk -378 Laqsozmtk Lzkqßt 79 Sosoqfq Hktorq 57900664028649 \N 2026-03-30 16:00:00+00 deutsche -379 Qxuxlztfwxkutk Hsqzm 7 Gbqfq Eoxkqko 570177595576 \N 2026-03-03 15:00:00+00 deutsche -380 Pgw Etfztk Wtksof Zkthzgv-Agthtfoea, Ukgß-Wtksoftk Rqdd 08 Q - T Gxsqrt Lqsodqzgx +267001488904 \N 2026-03-12 10:00:00+00 deutsche -381 Qsstt rtk Agldgfqxztf 20 Sxeiatcnei Qfrkoo +267131664163 \N 2026-03-10 16:00:00+00 deutsche -382 Voestylzkqßt 99-91 Nxkoo Rtizoqkgc +267153203404 \N 2026-05-22 11:00:00+00 englishOk -383 Lqfozäzliqxl GVW gIU, Asglztklzkqßt 4-6 Qkqli Ltoymqrti Qwatfqk 57049255131 \N 2026-03-06 09:00:00+00 deutsche -384 Wtmokalqdz Dozzt cgf Wtksof, Lgmoqsqdz, Düsstklzk. 721, 78898 Wtksof, Moddtk 350 Gstfq xfr Cqlns RQF 5700 88 85 854 \N 2026-03-19 10:00:00+00 deutsche -385 Qhytsvoeastklzkqßt 2/1, 73148 Wtksof Dxiqddqr Lqrxsqtc (utw. 76.53.3576) +267002228946 \N 2026-03-04 08:00:00+00 deutsche -386 Wxfrtl Lzk. 755 Htztk Rgt 325-235 \N 2026-03-19 12:30:00+00 englishOk -387 Wtksof xfafgvf \N \N 2026-03-14 09:00:00+00 deutsche -388 Leiqkfvtwtklzkqßt 7/2 Galqfq Lcoqzq +845648355962 \N 2026-04-15 11:05:00+00 englishOk -389 Aqks-Dqkb-Lzk 30 Gstalqfrk Lcoqzno +845648355962 \N 2026-04-22 11:05:00+00 englishOk -390 Leisgßlzkqßt 37 Ocqffq Zxotlinf +267001221906 \N 2026-03-11 09:45:00+00 englishOk -391 Wtksof xfafgvf \N \N 2026-03-11 09:00:00+00 deutsche -392 Cocqfztl Asofoaxd od Ykotrkoeiliqof, Sqfrlwtkutk Qsstt 26 Sqkolq Dqsoe 570172282820 \N 2026-03-25 10:30:00+00 deutsche -393 Yqdosotfyökrtkmtfzkxd Hqfatiqxl Lgsroftk Lzkqßt 01, 78896 Wtksof Coazgkooq Stlieitfag +845603892907 \N 2026-03-12 15:00:00+00 deutsche -394 Pgwetfztk Wtksof-Hqfagv, Lzgkagvtk Lzk. 788, 75250 Wtksof, Iqxl W, Moddtk 8510 Anknsg Kqmxdgc 5718 419 84 93 \N 2026-03-16 11:00:00+00 deutsche -395 Wtksof xfafgvf \N \N 2026-03-17 14:30:00+00 deutsche -396 Wtksof xfafgvf \N \N 2026-04-07 10:30:00+00 deutsche -397 Woldqkealzkqßt 29-21 Aqztknfq Ixzfna 57159278832 \N 2026-05-18 13:30:00+00 englishOk -398 Gkqfotfrqdd 1-75/E Nqruqk Lzqk Lqwtk 57040303793 \N 2026-03-13 11:00:00+00 deutsche -399 Owltflzkqßt 70 Ykqx Qfrktq Ztolmstk 5703 8443613 \N 2026-03-17 10:00:00+00 deutsche -400 Wtksof xfafgvf \N \N 2026-03-17 14:30:00+00 deutsche -401 Wtksof xfafgvf \N \N 2026-04-07 10:30:00+00 deutsche -402 Lzgkagvtk Lzk. 757Q Dnagsq Hkgaghtfag 579779544433 \N 2026-03-16 11:30:00+00 deutsche -403 Wtksof xfafgvf \N \N 2026-07-02 10:00:00+00 deutsche -404 Wtksof xfafgvf \N \N 2026-06-05 14:30:00+00 deutsche -405 Eiqkozt Igeileixsqdwxsqfm Gkzighärot, Sxoltflzk. 12, 75770 Wtksof (Wtzztfigeiiqxl), Mtfzkqst Hqzotfztfqxyfqidt Stcqfo agkatsoq 57900 4270236 \N 2026-03-23 09:00:00+00 deutsche -406 Düsstk Lzk. 720 Gstalqfrk Akqceitfag +845609060536 \N 2026-03-17 10:30:00+00 englishOk -407 Lzqfrtlqdz Ftxaössf, Iqxl 9, Wsqleiagqsstt 83, Kqrx Ctkq +80814745744 \N 2026-03-16 11:00:00+00 deutsche -408 Qsqkoeilzk. 73 Rndzkg Qkztdtfag 57001082458 \N 2026-03-26 08:15:00+00 englishOk -409 Wtksoftklzkqßt 66, 78950 Wtksof Ktofoeatfrgky Znzneiag Aiknlznfq (dqoszg:akolzofqwqsofz40@udqos.egd) 570103554978 \N 2026-03-18 12:00:00+00 deutsche -410 Leisgßlzkqßt 37 Ocqffq Zxotlinf +267001221906 \N 2026-03-23 10:45:00+00 englishOk -411 Wgkfigsdtk Ukxfrleixst, Owltflzkqßt 70, 75286 Wtksof Kqxd 355 Ykqx Ztolmstk 5703 8443613 \N 2026-03-24 11:00:00+00 deutsche -412 Tc. Tsolqwtzi Asofoa, Süzmgvlzkqßt 32-31 Cqloso Etwgzqk 5701 72490830 \N 2026-03-23 12:30:00+00 deutsche -413 Lzqrzkqfrlzkqßt 999 Zqzoqfq Yqkqrptc 570175481492 \N 2026-03-23 09:15:00+00 deutsche -414 Wtksof xfafgvf \N \N 2026-03-23 15:00:00+00 deutsche -415 Ykotrtkoatlzkqßt 88 Lcozsqfq Ytltfag 57002187721 \N 2026-04-09 14:00:00+00 deutsche -416 DCM Lz. Itrvou-Akqfatfiqxl Wtksof Ukgßt Iqdwxkutk Lzkqßt 9-77 Gstalqfrk Lcoqzno +84 5648355962 \N 2026-04-07 10:00:00+00 englishOk -417 Qxuxlztfwxkutk Hsqzm 7 Qstalqfrkt Aqkzctsolicoso (rql Aofr), Uogkuo Aqkzctsolicoso (rtk Cqztk) 579779544497 \N 2026-03-26 08:00:00+00 deutsche -418 Esqnqsstt 339 Cozqsoo Hteitkozlq +2679004089057 \N 2026-04-01 11:40:00+00 englishOk -419 Aqks-Dqkb-Lzkqßt 791 Lqctsoo Wneitcno +267007891427 \N 2026-03-30 11:00:00+00 deutsche -420 Pgwetfztk Wtksof Hqfagv,Lzgkagvtk Lzk 788 Miqffq Rxhsofq +845604531306 \N 2026-04-16 11:45:00+00 deutsche -421 Pgwetfztk Wtksof Hqfagv,Lzgkagvtk Lzk 788 Miqffq Rxhsofq +845604531306 \N 2026-04-16 11:45:00+00 deutsche -422 Leisgßlzkqßt 31 Gstfq Einiknf +845612511443 \N 2026-04-09 17:10:00+00 deutsche -423 Ukxfrleixst qd Ztutsleitf Gkz, Utksofrtvtu 77-38 Lsgctflaq +2679377042671 \N 2026-04-15 13:20:00+00 deutsche -424 Ukxfrleixst qd Ztutsleitf Gkz, Utksofrtvtu 77-38 Mqhgkgmiqf +267183513378 \N 2026-04-15 13:40:00+00 deutsche -425 DCM Ftxaössf / Aqks-Dqkb-Lzkqßt 785 Dqkoq Hktorq +26718668531528 \N 2026-04-10 09:50:00+00 deutsche -426 Pgqf-Dokó-Ukxfrleixst (52U52), Ltaktzqkoqz, Tofuqfu R, Wstowzktxlzkqßt 28 75138 Wtksof Eitwgzqk Qfitsofq, Dqalnd xfr Roxroq Rqfots, Cqftllq 571561922803 \N 2026-04-13 08:15:00+00 deutsche -427 Qsstt rtk Agldgfqxztf 36 Qsolq Igiq +267049296359 \N 2026-04-21 09:30:00+00 englishOk -428 Qhytsvoeastklzkqßt 2/1 Aiqfoyq Lqrxsqtcq +267002228946 \N 2026-04-13 09:00:00+00 deutsche -429 Fükfwtkutk Lzkqßt 10 Gstalqfrk Lcoqzno +845648355962 \N 2026-04-07 18:00:00+00 englishOk -430 Cocqfztl DCM Sqfrlwtkutk Qsstt 26 Dnaiqosg Nqktdtfag 5701 68982824 \N 2026-04-13 14:00:00+00 deutsche -431 Tugf-Tkvof-Aolei-Lzk. 751 Pgiqofq Qs Dxiqddqr Qs-Qso 570137608887 \N 2026-04-09 10:00:00+00 deutsche -432 Pgwetfztk Wtksof Dqkmqif-Itsstklrgky, Wtoslztoftk Lzk. 778 Htzkg Hgh 57049296359 \N 2026-04-21 09:30:00+00 deutsche -433 Pgwetfztk Wtksof Dqkmqif-Itsstklrgky, Wtoslztoftk Lzk. 778 Qsolq Igiq 57049296359 \N 2026-04-21 10:00:00+00 deutsche -434 Hgzlrqdtk Eiqxllt 45 Tdoso Agkwxroqfo 57038499644 \N 2026-04-20 15:10:00+00 englishOk -435 Itofm-Uqsoflao Lzkqßt 7 Kqlior Aiqdwotc 570115579521 \N 2026-04-10 07:30:00+00 deutsche -436 Eiqkozt : Dozztsqsst 2 Akqceitfag Gstalqfrk +845609060536 \N 2026-04-13 08:20:00+00 deutsche -437 Itsstklrgkytk Lzk. 380 Kqdqzxssqi Lqstio 570183528842 \N 2026-04-23 12:00:00+00 deutsche -438 Leisgßlzkqßt 37 Ocqffq Zxotlinf +267001221906 \N 2026-04-15 11:00:00+00 englishOk -439 Wtksof xfafgvf \N \N 2026-05-05 14:00:00+00 deutsche -440 Qd Fgkrukqwtf 3 Uitqzi Pvqk 5555 \N 2026-04-22 09:15:00+00 deutsche -441 Hkofmtflzkqßt 61 Nxkoo Rtizoqkgc +2679792137701 \N 2026-04-17 11:00:00+00 noTranslation -442 Wtmokalqdz Dqkmqif-Itsstklrgky, Kotlqtklzkqßt 62 Altfooq Agcqstfag +845101181726 \N 2026-04-21 10:00:00+00 deutsche -443 Fükfwtkutk Lzkqßt 10, Wtksof Gstalqfrk Akqceitfag +845609060536 \N 2026-04-23 09:45:00+00 deutsche -444 Kgsqfrlzkqllt 89 , Iqxl W Kqxd W 357 Lnsvoq 585 \N 2026-04-27 14:30:00+00 deutsche -445 DCM Lhqfrqx Ftxaössf Aqks-Dqkb-Lzkqßt 785, 73528 Wtksof 7.GU Hktorq Dqkoq +26 718 8531 528 \N 2026-05-13 12:00:00+00 deutsche -446 Pqfxlm Agkemqa lzk 83 Lqrxsqtc Kxlsqf +26 7002228946 \N 2026-04-22 08:15:00+00 deutsche -447 Hktkgvtk Hsqzm 2 Sxloft Lqkulnqf +2670183459720 \N 2026-04-23 12:00:00+00 deutsche -448 lqrq rlrl 738738 \N 2026-09-19 10:52:00+00 deutsche -449 tsltflzkqWt 40 Fqrqc 579399881896 \N 2026-04-30 08:52:00+00 deutsche -450 Vqsrleixsqsstt 48 Qfutsoat Hgsoqagcq 579379504421 \N 2026-05-23 09:00:00+00 englishOk -451 Wstowzktxlzkqßt 28 Eitwgzqk +2671561922803 \N 2026-04-24 07:00:00+00 englishOk -453 Itkdqfflzkqllt 391-394 Kqidqzxssqi Lqstio 570183528842 \N 2026-05-08 08:30:00+00 deutsche -454 Uktoylvqsrtk Lzk.780 Tstfq Uqsqzqf 5790 04916706 \N 2026-04-27 12:25:00+00 deutsche -455 Pxutfrqdz Lztusozm Mtistfrgky Aokeilzkqßt 7-8, Kqxd R789 Itkk Qs-Qsqdkqfo, Ykqx Qs-Tjqwo 5526 85 25 81 25 204 \N 2026-04-28 09:00:00+00 deutsche -456 Wozztkytsrtk Lzkqßt 77/78 Qfo Ztfqrmt 579088552382 \N 2026-04-29 12:00:00+00 deutsche -452 Aofrtk- xfr Pxutfrutlxfritoz - Dqkmqif-Itsstklrgky Pqfxlm-Agkemqa-Lzkqßt 83, 73130 Wtksof Lqrxsqtc Kxlsqf +267002228946 \N 2026-05-27 09:35:00+00 deutsche -458 lxddnrkttz rxddn dxddn 75757575757 \N 2026-05-08 08:41:00+00 englishOk -459 Qzzosqlzkqßt 17-10 Oxko Yqkyqeqko +808 049 64 146 \N 2026-05-05 07:50:00+00 englishOk -460 Axkyüklztfrqdd 719 Dqknfq Sqaqzgli +845665869569 \N 2026-05-01 08:30:00+00 deutsche -457 Ugzsofrtlzkqßt 68, Pgwetfztk Wtksof-Soeiztfwtku Iqxl 7W, 0. Tzqut, Moddtk 088 Kgixssq Qdoko 5701 32895349 \N 2026-05-05 09:30:00+00 deutsche -461 Itofm-Uqsoflao-Lzkqßt 7 Fqzqsooq Wosgxl +845140070784 \N 2026-05-08 11:30:00+00 deutsche -462 Ztztkgvtk Kofu 27 Qyuqf Qsontc +2670142474314 \N 2026-06-05 07:15:00+00 deutsche -463 Hqxs-Leivtfa-Lzkqßt 8-37 Uxkutf Lqkulnqf +2679373495653 \N 2026-05-06 08:00:00+00 deutsche -464 Aöfoulzk. 18 Rgsoei, Ocqf +26 701 7277 1103 \N 2026-05-06 09:00:00+00 deutsche -465 Cocqfztl Asofoaxd Sqfrlwtkutk Qsstt 26 Mqatk Fqrtko 579374842519 \N 2026-05-12 10:00:00+00 deutsche -\. - - --- --- Data for Name: activity; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.activity (id, title, category_id) FROM stdin; -1 Daycare 2 -2 Sports 5 -3 Language café 1 -4 Translation 1 -5 Fillout German forms 1 -6 Arts 2 -7 Gardening 3 -8 One-day 4 -9 Playing 2 -10 Reading 1 -11 Activities-women 3 -12 Activities-men 3 -13 Tutoring 1 -14 Clothing Sorting 3 -15 Excursions 5 -16 Miscellaneous 3 -17 Mentorship 3 -18 Accompanying to government appointments 6 -19 Apartment viewing accompanying 6 -20 Schools meetings accompanying 6 -21 Accompanying 6 -22 Accompanying to doctors' 6 -\. - - --- --- Data for Name: address; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.address (id, title, street, postcode_id, city) FROM stdin; -1 Dummy \N 1 \N -2 \N 1 \N -3 \N 65 \N -4 \N 140 \N -5 \N 104 \N -6 \N 60 \N -7 \N 4 \N -8 \N 102 \N -9 \N 99 \N -10 \N 144 \N -11 \N 61 \N -12 \N 11 \N -13 \N 125 \N -14 \N 16 \N -15 \N 145 \N -16 \N 71 \N -17 \N 103 \N -18 \N 9 \N -19 \N 29 \N -20 \N 21 \N -21 \N 66 \N -22 \N 128 \N -23 \N 115 \N -24 \N 86 \N -25 \N 54 \N -26 \N 114 \N -27 \N 10 \N -28 \N 189 \N -29 \N 64 \N -30 \N 143 \N -31 \N 141 \N -32 \N 22 \N -33 \N 142 \N -34 \N 95 \N -35 \N 8 \N -36 \N 101 \N -37 \N 20 \N -38 \N 151 \N -39 \N 2 \N -40 \N 6 \N -41 \N 81 \N -42 \N 62 \N -43 \N 139 \N -44 \N 69 \N -45 \N 186 \N -46 \N 105 \N -47 \N 147 \N -48 \N 59 \N -49 \N 51 \N -50 \N 55 \N -51 \N 18 \N -52 \N 74 \N -53 \N 43 \N -54 \N 26 \N -55 \N 133 \N -56 \N 190 \N -57 \N 27 \N -58 \N 7 \N -59 \N 127 \N -60 \N 39 \N -61 \N 23 \N -62 \N 53 \N -63 \N 47 \N -64 \N 130 \N -65 \N 146 \N -66 \N 168 \N -67 \N 94 \N -68 \N 49 \N -69 \N 50 \N -70 \N 76 \N -71 \N 44 \N -72 \N 46 \N -73 \N 45 \N -74 \N 117 \N -75 \N 120 \N -76 \N 32 \N -77 \N 183 \N -78 \N 108 \N -79 \N 67 \N -80 \N 131 \N -81 \N 57 \N -82 \N 63 \N -83 \N 179 \N -84 \N 77 \N -85 \N 5 \N -86 \N 28 \N -87 \N 58 \N -88 \N 178 \N -89 \N 185 \N -90 \N 19 \N -91 \N 98 \N -92 \N 129 \N -93 \N 154 \N -94 \N 163 \N -96 \N 177 \N -97 \N 148 \N -98 \N 162 \N -99 \N 85 \N -100 \N 36 \N -101 \N 110 \N -102 \N 52 \N -103 \N 172 \N -104 \N 116 \N -105 \N 164 \N -106 \N 113 \N -107 \N 153 \N -108 \N 24 \N -109 \N 192 \N -110 \N 106 \N -111 \N 90 \N -112 \N 31 \N -113 \N 35 \N -114 \N 12 \N -115 \N 160 \N -116 \N 3 \N -117 \N 92 \N -118 \N 73 \N -119 \N 25 \N -120 \N 149 \N -121 \N 97 \N -122 \N 70 \N -123 \N 100 \N -124 \N 13 \N -125 \N 15 \N -126 \N 41 \N -127 \N 137 \N -128 \N 167 \N -129 \N 166 \N -130 \N 109 \N -131 \N 175 \N -132 \N 121 \N -133 \N 79 \N -134 \N 33 \N -135 \N 181 \N -136 \N 14 \N -137 \N 83 \N -138 \N 42 \N -139 \N 91 \N -140 \N 17 \N -141 \N 40 \N -142 \N 124 \N -143 \N 136 \N -144 \N 93 \N -145 \N 165 \N -146 \N 155 \N -147 \N 123 \N -148 \N 191 \N -149 \N 78 \N -150 \N 37 \N -151 \N 150 \N -152 \N \N 5 \N -153 \N \N 36 \N -154 \N \N 63 \N -155 \N Elsenstraße 87 101 Berlin -156 \N \N 72 \N -157 \N \N 72 \N -158 \N \N 101 \N -159 \N \N 82 \N -160 \N \N 63 \N -161 \N \N 19 \N -162 \N \N 36 \N -163 \N \N 114 \N -165 \N \N 8 \N -166 \N \N 140 \N -95 \N Berlin 56 10965 -167 \N \N 148 \N -164 \N Berlin 15 Berlin -\. - - --- --- Data for Name: agent; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.agent (id, title, type, website, trust_level, search_status, services, created_at, updated_at, address_id, district_id, engagement_status, info, organization_id) FROM stdin; -2 Eschenallee AE \N agent-low agent-not-needed {} 2026-04-14 16:09:52.586862 2026-04-14 16:09:52.586862 \N \N agent-new \N \N -3 Refugium Hausvaterweg NU \N agent-low agent-not-needed {} 2026-04-14 16:09:52.633775 2026-04-14 16:09:52.633775 \N \N agent-new \N \N -4 Rhinstr. (Refugium Lichtenberg) AE \N agent-high agent-not-needed {} 2026-04-14 16:09:52.780422 2026-04-14 16:09:52.780422 \N \N agent-new \N \N -5 Dingolfinger Str. AE \N agent-high agent-not-needed {} 2026-04-14 16:09:52.91112 2026-04-14 16:09:52.91112 \N \N agent-new \N \N -6 Blumberger Damm AE \N agent-high agent-not-needed {} 2026-04-14 16:09:53.112293 2026-04-14 16:09:53.112293 \N \N agent-new \N \N -7 Invalidenstraße (Hotel) AE \N agent-high agent-not-needed {} 2026-04-14 16:09:53.345283 2026-04-14 16:09:53.345283 \N \N agent-new \N \N -9 Buchholzer Str. AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:53.601135 2026-04-14 16:09:53.601135 \N \N agent-new \N \N -10 Siverstorpstraße AE \N agent-low agent-not-needed {} 2026-04-14 16:09:53.665485 2026-04-14 16:09:53.665485 \N \N agent-new \N \N -11 Groscurthstraße AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:53.732709 2026-04-14 16:09:53.732709 \N \N agent-new \N \N -12 Askanierring (AE) AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:53.770256 2026-04-14 16:09:53.770256 \N \N agent-new \N \N -41 Rudolf-Leonhard-Str. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:55.473192 2026-04-14 16:09:55.473192 \N \N agent-new \N \N -42 Albert-Kuntz-Str. \N \N agent-unknown agent-searching {} 2026-04-14 16:09:55.547443 2026-04-14 16:09:55.547443 \N \N agent-unresponsive \N \N -13 Kurt-Schumacher-Damm AE \N agent-high agent-not-needed {} 2026-04-14 16:09:53.815018 2026-04-14 16:09:53.815018 \N \N agent-new \N \N -14 Zum Heckeshorn AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:53.987686 2026-04-14 16:09:53.987686 \N \N agent-new \N \N -15 P3 AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.029794 2026-04-14 16:09:54.029794 \N \N agent-new \N \N -16 Hangar 1-3 (Columbiadamm 10) NU \N agent-high agent-not-needed {} 2026-04-14 16:09:54.054369 2026-04-14 16:09:54.054369 \N \N agent-new \N \N -17 Schwalbenweg AE \N agent-low agent-not-needed {} 2026-04-14 16:09:54.158142 2026-04-14 16:09:54.158142 \N \N agent-new \N \N -18 Kiefholzstr. 36 \N \N agent-high agent-not-needed {} 2026-04-14 16:09:54.239181 2026-04-14 16:09:54.239181 \N \N agent-new \N \N -19 Quittenweg AE \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.318179 2026-04-14 16:09:54.318179 \N \N agent-new \N \N -20 Soorstraße \N \N agent-low agent-not-needed {} 2026-04-14 16:09:54.379069 2026-04-14 16:09:54.379069 \N \N agent-new \N \N -21 Fritz-Wildung-Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.444622 2026-04-14 16:09:54.444622 \N \N agent-new \N \N -43 Zossener Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.588375 2026-04-14 16:09:55.588375 \N \N agent-new \N \N -69 Pichelswerder Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.679056 2026-04-14 16:09:56.679056 \N \N agent-new \N \N -90 Alfred-Randt-Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.692928 2026-04-14 16:09:57.692928 \N \N agent-new \N \N -91 Radickestr. \N \N agent-high agent-not-needed {} 2026-04-14 16:09:57.733236 2026-04-14 16:09:57.733236 \N \N agent-new \N \N -22 Brabanter Str. GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.487089 2026-04-14 16:09:54.487089 \N \N agent-new \N \N -23 Fritz-Wildung-Straße 20 GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.524335 2026-04-14 16:09:54.524335 \N \N agent-new \N \N -24 Zeughofstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.55155 2026-04-14 16:09:54.55155 \N \N agent-new \N \N -25 Alte Jakobstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.588288 2026-04-14 16:09:54.588288 \N \N agent-new \N \N -26 Stallschreiberstr. \N \N agent-high agent-not-needed {} 2026-04-14 16:09:54.615992 2026-04-14 16:09:54.615992 \N \N agent-new \N \N -27 Degnerstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.715886 2026-04-14 16:09:54.715886 \N \N agent-new \N \N -28 Bornitzstraße \N \N agent-high agent-not-needed {} 2026-04-14 16:09:54.779291 2026-04-14 16:09:54.779291 \N \N agent-new \N \N -29 Max-Brunnow-Straße \N \N agent-high agent-not-needed {} 2026-04-14 16:09:54.827742 2026-04-14 16:09:54.827742 \N \N agent-new \N \N -30 Konrad-Wolf-Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.872853 2026-04-14 16:09:54.872853 \N \N agent-new \N \N -31 Wollenberger Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:54.913999 2026-04-14 16:09:54.913999 \N \N agent-new \N \N -32 Gehrenseestr. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:54.945235 2026-04-14 16:09:54.945235 \N \N agent-new \N \N -33 Hagenower Ring \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.013093 2026-04-14 16:09:55.013093 \N \N agent-new \N \N -34 Wartenberger Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.115441 2026-04-14 16:09:55.115441 \N \N agent-new \N \N -35 Grafenauer Weg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.144021 2026-04-14 16:09:55.144021 \N \N agent-new \N \N -36 Seehausener Str. \N \N agent-high agent-not-needed {} 2026-04-14 16:09:55.166295 2026-04-14 16:09:55.166295 \N \N agent-new \N \N -37 Maxie-Wander-Str. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:55.296378 2026-04-14 16:09:55.296378 \N \N agent-new \N \N -38 Bitterfelder Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.362026 2026-04-14 16:09:55.362026 \N \N agent-new \N \N -39 Wittenberger Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.404611 2026-04-14 16:09:55.404611 \N \N agent-new \N \N -40 Paul-Schwenk-Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.434748 2026-04-14 16:09:55.434748 \N \N agent-new \N \N -67 Senftenberger Ring \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.63016 2026-04-14 16:09:56.63016 \N \N agent-new \N \N -68 Oranienburger Straße 285 NU \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.659097 2026-04-14 16:09:56.659097 \N \N agent-new \N \N -44 Murtzaner Ring \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.608238 2026-04-14 16:09:55.608238 \N \N agent-new \N \N -45 Haus Leo \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.663108 2026-04-14 16:09:55.663108 \N \N agent-new \N \N -46 Müllerstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.700784 2026-04-14 16:09:55.700784 \N \N agent-new \N \N -47 Chaussee Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.729201 2026-04-14 16:09:55.729201 \N \N agent-new \N \N -48 Vom Guten Hirten \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:55.784956 2026-04-14 16:09:55.784956 \N \N agent-new \N \N -49 Alt-Moabit \N \N agent-high agent-not-needed {} 2026-04-14 16:09:55.805057 2026-04-14 16:09:55.805057 \N \N agent-new \N \N -50 Haarlemer Str. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:55.859901 2026-04-14 16:09:55.859901 \N \N agent-new \N \N -51 Kiefholzstr. 71 \N \N agent-high agent-not-needed {} 2026-04-14 16:09:55.924917 2026-04-14 16:09:55.924917 \N \N agent-new \N \N -52 Karl-Marx-Str. \N \N agent-low agent-not-needed {} 2026-04-14 16:09:55.984412 2026-04-14 16:09:55.984412 \N \N agent-new \N \N -53 Töpchiner Weg \N \N agent-low agent-not-needed {} 2026-04-14 16:09:56.050446 2026-04-14 16:09:56.050446 \N \N agent-new \N \N -54 Falkenberger Str. GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.120544 2026-04-14 16:09:56.120544 \N \N agent-new \N \N -55 Storkower Straße 118 ASOG \N agent-high agent-not-needed {} 2026-04-14 16:09:56.143773 2026-04-14 16:09:56.143773 \N \N agent-new \N \N -56 Mühlenstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.259061 2026-04-14 16:09:56.259061 \N \N agent-new \N \N -57 Straßburger Straße \N \N agent-low agent-not-needed {} 2026-04-14 16:09:56.289175 2026-04-14 16:09:56.289175 \N \N agent-new \N \N -58 Bühringstraße \N \N agent-high agent-not-needed {} 2026-04-14 16:09:56.385312 2026-04-14 16:09:56.385312 \N \N agent-new \N \N -59 Storkower Straße 139C \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.438809 2026-04-14 16:09:56.438809 \N \N agent-new \N \N -60 Treskowstr. 15-16 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.468351 2026-04-14 16:09:56.468351 \N \N agent-new \N \N -61 Wolfgang-Heinz-Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.48726 2026-04-14 16:09:56.48726 \N \N agent-new \N \N -62 Lindenberger Weg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.505462 2026-04-14 16:09:56.505462 \N \N agent-new \N \N -63 Rennbahnstr. 87 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.535375 2026-04-14 16:09:56.535375 \N \N agent-new \N \N -64 Rennbahnstr. 71-74 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.563065 2026-04-14 16:09:56.563065 \N \N agent-new \N \N -65 Eichborndamm \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.584088 2026-04-14 16:09:56.584088 \N \N agent-new \N \N -66 Bernauer Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.616602 2026-04-14 16:09:56.616602 \N \N agent-new \N \N -70 Am Oberhafen \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.707966 2026-04-14 16:09:56.707966 \N \N agent-new \N \N -71 Freudstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.725229 2026-04-14 16:09:56.725229 \N \N agent-new \N \N -72 Spandauer Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.78748 2026-04-14 16:09:56.78748 \N \N agent-new \N \N -73 Freiheit \N \N agent-low agent-not-needed {} 2026-04-14 16:09:56.815207 2026-04-14 16:09:56.815207 \N \N agent-new \N \N -74 Rauchstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.913681 2026-04-14 16:09:56.913681 \N \N agent-new \N \N -75 Hohentwielsteig \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:56.941955 2026-04-14 16:09:56.941955 \N \N agent-new \N \N -76 Ostpreußendamm \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.040411 2026-04-14 16:09:57.040411 \N \N agent-new \N \N -77 Bäkestr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.059441 2026-04-14 16:09:57.059441 \N \N agent-new \N \N -78 Leonorenstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.079917 2026-04-14 16:09:57.079917 \N \N agent-new \N \N -79 Am Beelitzhof \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.107474 2026-04-14 16:09:57.107474 \N \N agent-new \N \N -80 Osteweg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.16127 2026-04-14 16:09:57.16127 \N \N agent-new \N \N -81 Trachenbergring AE \N agent-high agent-not-needed {} 2026-04-14 16:09:57.228067 2026-04-14 16:09:57.228067 \N \N agent-new \N \N -82 Marienfelder Allee \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.276867 2026-04-14 16:09:57.276867 \N \N agent-new \N \N -83 Kirchhainer Damm \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.327113 2026-04-14 16:09:57.327113 \N \N agent-new \N \N -84 Colditzstraße \N \N agent-low agent-not-needed {} 2026-04-14 16:09:57.359613 2026-04-14 16:09:57.359613 \N \N agent-new \N \N -85 Großbeerenstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.454161 2026-04-14 16:09:57.454161 \N \N agent-new \N \N -86 Niedstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.484262 2026-04-14 16:09:57.484262 \N \N agent-new \N \N -87 Handjerystr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.516321 2026-04-14 16:09:57.516321 \N \N agent-new \N \N -88 Columbiadamm 84 \N \N agent-high agent-volunteers-found {} 2026-04-14 16:09:57.546219 2026-04-14 16:09:57.546219 \N \N agent-active \N \N -89 Rahnsdorf \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.648725 2026-04-14 16:09:57.648725 \N \N agent-new \N \N -92 Köpenicker Landstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.787954 2026-04-14 16:09:57.787954 \N \N agent-new \N \N -93 Chris-Gueffroy-Allee \N \N agent-high agent-not-needed {} 2026-04-14 16:09:57.822462 2026-04-14 16:09:57.822462 \N \N agent-new \N \N -94 Wassersportallee \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.875884 2026-04-14 16:09:57.875884 \N \N agent-new \N \N -95 Salvador-Allende-Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.931157 2026-04-14 16:09:57.931157 \N \N agent-new \N \N -96 Hassoweg GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:57.970086 2026-04-14 16:09:57.970086 \N \N agent-new \N \N -97 Kablower Weg \N \N agent-low agent-not-needed {} 2026-04-14 16:09:57.990349 2026-04-14 16:09:57.990349 \N \N agent-new \N \N -98 Bundesnetzwerk Bürgerschaftliches Engagement (BBE) multiple-social-support https://www.b-b-e.de agent-unknown agent-not-needed {consultation,voluntary-support} 2026-04-14 16:09:58.047811 2026-04-14 16:09:58.047811 \N \N agent-new \N \N -99 FreiwilligenAgentur Marzahn-Hellersdorf multiple-social-support https://aller-ehren-wert.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:09:58.074178 2026-04-14 16:09:58.074178 \N \N agent-new \N \N -100 Interkulturelles Haus Schöneberg \N https://ikhberlin.de agent-unknown agent-not-needed {} 2026-04-14 16:09:58.102302 2026-04-14 16:09:58.102302 \N \N agent-new \N \N -101 Quartiersmanagement Boulevard Kastanienallee \N https://boulevard-kastanienallee.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.122866 2026-04-14 16:09:58.122866 \N \N agent-new \N \N -102 Afrotak e.V. multiple-social-support https://afrotak.tv/ agent-unknown agent-not-needed {consultation,tutoring,welfare} 2026-04-14 16:09:58.143623 2026-04-14 16:09:58.143623 \N \N agent-new \N \N -103 LaLoka multiple-social-support https://www.berlin.de/ba-marzahn-hellersdorf/politik-und-verwaltung/beauftragte/integration/beratung/artikel.837488.php agent-unknown agent-not-needed {consultation,consultation,welfare,sport} 2026-04-14 16:09:58.163627 2026-04-14 16:09:58.163627 \N \N agent-new \N \N -104 Berlin Arrival Support multiple-social-support https://arrivalsupport.berlin/ agent-unknown agent-not-needed {consultation,consultation,voluntary-support,voluntary-support} 2026-04-14 16:09:58.189532 2026-04-14 16:09:58.189532 \N \N agent-new \N \N -105 Café Pink multiple-social-support https://www.pfh-berlin.de/de/cafepink agent-unknown agent-not-needed {refugee-accommodation,childcare,welfare,voluntary-support,tandem} 2026-04-14 16:09:58.211426 2026-04-14 16:09:58.211426 \N \N agent-new \N \N -106 Club Dialog e.V. multiple-social-support https://www.club-dialog.de/ agent-unknown agent-not-needed {consultation,consultation,voluntary-support,tandem,voluntary-support} 2026-04-14 16:09:58.236624 2026-04-14 16:09:58.236624 \N \N agent-new \N \N -107 DaMigra multiple-social-support https://www.damigra.de agent-unknown agent-not-needed {consultation,voluntary-support,tandem,welfare} 2026-04-14 16:09:58.265925 2026-04-14 16:09:58.265925 \N \N agent-new \N \N -108 Das Interkulturelle Frauenzentrum S.U.S.I. multiple-social-support susi-frauen-zentrum.com agent-unknown agent-not-needed {tutoring,consultation,tandem,voluntary-support,welfare,voluntary-support,sport,welfare} 2026-04-14 16:09:58.292967 2026-04-14 16:09:58.292967 \N \N agent-new \N \N -109 Dütti-Treff multiple-social-support https://duetti-treff.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.318787 2026-04-14 16:09:58.318787 \N \N agent-new \N \N -110 Elikia e.V. multiple-social-support https://www.elikia-ev.org agent-unknown agent-not-needed {} 2026-04-14 16:09:58.344365 2026-04-14 16:09:58.344365 \N \N agent-new \N \N -111 EMERGE e.V. multiple-social-support http://emergeev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.366357 2026-04-14 16:09:58.366357 \N \N agent-new \N \N -112 Feministisches Zentrum für Migrant*innen (FZM*) multiple-social-support https://fzm-berlin.com agent-unknown agent-not-needed {} 2026-04-14 16:09:58.378807 2026-04-14 16:09:58.378807 \N \N agent-new \N \N -113 Pro Asyl multiple-social-support https://www.proasyl.de/ehrenamtliches-engagement/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.401849 2026-04-14 16:09:58.401849 \N \N agent-new \N \N -114 Georgisches Haus multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.431862 2026-04-14 16:09:58.431862 \N \N agent-new \N \N -115 Berliner Georgische Gesellschaft multiple-social-support http://www.bggev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.457945 2026-04-14 16:09:58.457945 \N \N agent-new \N \N -116 Gesellschaftsspiele e.V. multiple-social-support https://gesellschaftsspiele.berlin/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.488058 2026-04-14 16:09:58.488058 \N \N agent-new \N \N -117 Gladt e.V. multiple-social-support https://gladt.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.51154 2026-04-14 16:09:58.51154 \N \N agent-new \N \N -118 Global New Generation Berlin multiple-social-support https://www.gngberlin.de agent-unknown agent-not-needed {} 2026-04-14 16:09:58.542487 2026-04-14 16:09:58.542487 \N \N agent-new \N \N -119 Imagine Fellows multiple-social-support https://imagine-fellows.com/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.571703 2026-04-14 16:09:58.571703 \N \N agent-new \N \N -120 Initiative Selbstständiger Immigrantinnen (I.S.I. e.V.) multiple-social-support https://isi-ev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:58.585376 2026-04-14 16:09:58.585376 \N \N agent-new \N \N -121 Inssan e.V. multiple-social-support inssan.de agent-unknown agent-not-needed {} 2026-04-14 16:09:58.614942 2026-04-14 16:09:58.614942 \N \N agent-new \N \N -122 Kiezspinne FAS multiple-social-support https://www.kiezspinne-fas.org agent-unknown agent-not-needed {consultation,tutoring,voluntary-support,welfare,voluntary-support} 2026-04-14 16:09:58.643125 2026-04-14 16:09:58.643125 \N \N agent-new \N \N -123 Anne Jerzak \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.669742 2026-04-14 16:09:58.669742 \N \N agent-new \N \N -124 Philipp Rhein \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.700173 2026-04-14 16:09:58.700173 \N \N agent-new \N \N -125 Julia Stadtfeld \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.728036 2026-04-14 16:09:58.728036 \N \N agent-new \N \N -126 Carolyn Kanja \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.756513 2026-04-14 16:09:58.756513 \N \N agent-new \N \N -127 Luise Budäus \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.784619 2026-04-14 16:09:58.784619 \N \N agent-new \N \N -128 Fabian Bork \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.811907 2026-04-14 16:09:58.811907 \N \N agent-new \N \N -129 Integrationsbüro Treptow-Köpenick \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.844722 2026-04-14 16:09:58.844722 \N \N agent-new \N \N -130 Senatsverwaltung für Arbeit, Soziales, Gleichstellung, Integration, Vielfalt und Antidiskriminierung (SenASGIVA) \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.869314 2026-04-14 16:09:58.869314 \N \N agent-new \N \N -131 Katarina Niewedzal \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.890139 2026-04-14 16:09:58.890139 \N \N agent-new \N \N -132 Elke Michauk \N https://www.berlin.de/ba-spandau/ueber-den-bezirk/artikel.269631.php agent-unknown agent-not-needed {} 2026-04-14 16:09:58.918782 2026-04-14 16:09:58.918782 \N \N agent-new \N \N -133 Güner Balci \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.94382 2026-04-14 16:09:58.94382 \N \N agent-new \N \N -134 Integrationsbüro Neukölln \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.968614 2026-04-14 16:09:58.968614 \N \N agent-new \N \N -135 Ehrenamtsbüro Tempelhof-Schöneberg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:09:58.990956 2026-04-14 16:09:58.990956 \N \N agent-new \N \N -136 Interflugs multiple-social-support https://www.interflugs.de agent-unknown agent-not-needed {} 2026-04-14 16:09:59.017673 2026-04-14 16:09:59.017673 \N \N agent-new \N \N -137 International Rescue Committee (IRC) multiple-social-support https://www.rescue.org/eu agent-unknown agent-not-needed {} 2026-04-14 16:09:59.042915 2026-04-14 16:09:59.042915 \N \N agent-new \N \N -138 JUMEN e.V.(Juristische Menschenrechtsarbeit in Deutschland) multiple-social-support https://jumen.org agent-unknown agent-not-needed {} 2026-04-14 16:09:59.066835 2026-04-14 16:09:59.066835 \N \N agent-new \N \N -139 Karuna e.V. multiple-social-support https://cms.karuna-ev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.100416 2026-04-14 16:09:59.100416 \N \N agent-new \N \N -140 KOK - Bundesweiter Koordinierungskreis gegen Menschenhandel e.V. multiple-social-support https://www.kok-gegen-menschenhandel.de/startseite agent-unknown agent-not-needed {} 2026-04-14 16:09:59.132225 2026-04-14 16:09:59.132225 \N \N agent-new \N \N -141 Kontakt- und Beratungsstelle für Flüchtlinge und Migrant_innen e.V. (KUB) multiple-social-support https://www.kub-berlin.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.156496 2026-04-14 16:09:59.156496 \N \N agent-new \N \N -142 LaruHelpsUkraine e.V. multiple-social-support https://laruhelpsukraine.com/de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.184161 2026-04-14 16:09:59.184161 \N \N agent-new \N \N -143 Refugees Welcome multiple-social-support https://www.refugees-welcome.net/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.211743 2026-04-14 16:09:59.211743 \N \N agent-new \N \N -144 Mingru Jipen e.V. multiple-social-support https://www.mingru-jipen.com/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.232281 2026-04-14 16:09:59.232281 \N \N agent-new \N \N -145 MitMachMusik – ein Weg zur Integration e.V. multiple-social-support https://www.mit-mach-musik.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.257189 2026-04-14 16:09:59.257189 \N \N agent-new \N \N -146 Mittelhof e.V. multiple-social-support https://www.mittelhof.org agent-unknown agent-not-needed {} 2026-04-14 16:09:59.284243 2026-04-14 16:09:59.284243 \N \N agent-new \N \N -147 Moabit hilft e.V. multiple-social-support https://www.moabit-hilft.com/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.313041 2026-04-14 16:09:59.313041 \N \N agent-new \N \N -148 TransInterQueer e.V. multiple-social-support https://www.transinterqueer.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.338521 2026-04-14 16:09:59.338521 \N \N agent-new \N \N -175 Ausbildungszentrum OTA gGmbH \N https://www.ausbildung-ota.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.97941 2026-04-14 16:09:59.97941 \N \N agent-new \N \N -149 moveGLOBAL e.V. multiple-social-support https://moveglobal.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.363478 2026-04-14 16:09:59.363478 \N \N agent-new \N \N -150 Paritätische Akademie Berlin gGmbH multiple-social-support https://akademie.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.390306 2026-04-14 16:09:59.390306 \N \N agent-new \N \N -151 PEACE TRAIN BERLIN e.V. multiple-social-support https://www.peace-train-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.415988 2026-04-14 16:09:59.415988 \N \N agent-new \N \N -152 Willkommensbündnis für Flüchtlinge in Steglitz-Zehlendorf multiple-social-support https://www.willkommensbuendnis-steglitz-zehlendorf.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.43625 2026-04-14 16:09:59.43625 \N \N agent-new \N \N -153 Pinel gGmbH multiple-social-support https://www.pinel.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.46082 2026-04-14 16:09:59.46082 \N \N agent-new \N \N -154 Quarteera e.V. multiple-social-support https://www.quarteera.de agent-unknown agent-not-needed {} 2026-04-14 16:09:59.487015 2026-04-14 16:09:59.487015 \N \N agent-new \N \N -155 Refugio Berlin multiple-social-support https://refugio.berlin/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.506714 2026-04-14 16:09:59.506714 \N \N agent-new \N \N -156 Reistrommel e.V. multiple-social-support https://www.reistrommel-ev.de agent-unknown agent-not-needed {} 2026-04-14 16:09:59.532666 2026-04-14 16:09:59.532666 \N \N agent-new \N \N -157 Sporting Club Horus e. V. multiple-social-support https://sc-horus.com agent-unknown agent-not-needed {} 2026-04-14 16:09:59.557297 2026-04-14 16:09:59.557297 \N \N agent-new \N \N -158 Hangar 1 multiple-social-support https://www.hangar1.de agent-unknown agent-not-needed {} 2026-04-14 16:09:59.580572 2026-04-14 16:09:59.580572 \N \N agent-new \N \N -159 SprachCafé Polnisch multiple-social-support https://sprachcafe-polnisch.org agent-unknown agent-not-needed {} 2026-04-14 16:09:59.603189 2026-04-14 16:09:59.603189 \N \N agent-new \N \N -160 TIK e.V. multiple-social-support https://www.tik-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.628029 2026-04-14 16:09:59.628029 \N \N agent-new \N \N -161 nachbarschafft e.V. multiple-social-support https://www.nachbarschafft-ev.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.647935 2026-04-14 16:09:59.647935 \N \N agent-new \N \N -162 Türkischer Frauenverein Berlin e. V. multiple-social-support https://www.tuerkischerfrauenverein-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.675552 2026-04-14 16:09:59.675552 \N \N agent-new \N \N -163 Über den Teller multiple-social-support https://ueberdentellerrand.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.704462 2026-04-14 16:09:59.704462 \N \N agent-new \N \N -164 Xenion (Psychosoziale Hilfen für politisch Verfolgte e.V.) multiple-social-support https://www.xenion.org/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.729507 2026-04-14 16:09:59.729507 \N \N agent-new \N \N -165 Xochicuicatl e.V. multiple-social-support https://www.xochicuicatl.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.755033 2026-04-14 16:09:59.755033 \N \N agent-new \N \N -166 La Red e. V. multiple-social-support https://la-red.eu/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.778024 2026-04-14 16:09:59.778024 \N \N agent-new \N \N -167 YAAR e.V. multiple-social-support http://yaarberlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.801967 2026-04-14 16:09:59.801967 \N \N agent-new \N \N -168 Zaki e.V. multiple-social-support https://zaki-ev.de/ agent-unknown agent-not-needed {tandem,consultation,tandem,voluntary-support,voluntary-support} 2026-04-14 16:09:59.820816 2026-04-14 16:09:59.820816 \N \N agent-new \N \N -169 Zentral-Verband der Ukrainer in Deutschland (ZVUD) e.V. multiple-social-support https://bagiv.de/avada_portfolio/zentral-verband-der-ukrainer-in-deutschland-zvud-e-v/ agent-unknown agent-not-needed {tutoring,tandem,voluntary-support,voluntary-support} 2026-04-14 16:09:59.849366 2026-04-14 16:09:59.849366 \N \N agent-new \N \N -170 WIR - R-Lichtenberg multiple-social-support r-lichtenberg.de agent-unknown agent-not-needed {consultation,tutoring,voluntary-support,welfare,voluntary-support} 2026-04-14 16:09:59.873492 2026-04-14 16:09:59.873492 \N \N agent-new \N \N -171 Space2groW (Frauenkreise Berlin) multiple-social-support https://www.space2grow.de agent-unknown agent-not-needed {tandem,consultation,voluntary-support,voluntary-support,welfare} 2026-04-14 16:09:59.892569 2026-04-14 16:09:59.892569 \N \N agent-new \N \N -172 Irina Warkentin \N https://www.berlin.de/ba-marzahn-hellersdorf/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.916678 2026-04-14 16:09:59.916678 \N \N agent-new \N \N -173 DRK-Schule für soziale Berufe Berlin gGmbH \N https://www.drk-schule.berlin/ agent-unknown agent-not-needed {} 2026-04-14 16:09:59.940618 2026-04-14 16:09:59.940618 \N \N agent-new \N \N -174 Alice Salomon Hochschule Berlin \N https://www.ash-berlin.eu agent-unknown agent-not-needed {} 2026-04-14 16:09:59.959456 2026-04-14 16:09:59.959456 \N \N agent-new \N \N -176 Welcome Alliance multiple-social-support https://welcome-alliance.org agent-unknown agent-not-needed {tandem,tandem} 2026-04-14 16:09:59.998583 2026-04-14 16:09:59.998583 \N \N agent-new \N \N -177 Deutsche Stiftung für Engagement und Ehrenamt multiple-social-support https://www.deutsche-stiftung-engagement-und-ehrenamt.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:00.176784 2026-04-14 16:10:00.176784 \N \N agent-new \N \N -178 Easy German multiple-social-support https://www.easygerman.org/ agent-unknown agent-not-needed {tandem} 2026-04-14 16:10:00.215429 2026-04-14 16:10:00.215429 \N \N agent-new \N \N -179 Pestalozzi-Fröbel-Haus multiple-social-support https://www.pfh-berlin.de/de/startseite/das-pestalozzi-froebel-haus agent-unknown agent-not-needed {consultation,tutoring} 2026-04-14 16:10:00.246066 2026-04-14 16:10:00.246066 \N \N agent-new \N \N -180 Pegasus GmbH multiple-social-support https://www.tempelhoferfeld.de/entdecken-erleben/projekte-buergerschaftlichen-engagements/stadtacker/ agent-unknown agent-not-needed {tandem} 2026-04-14 16:10:00.27899 2026-04-14 16:10:00.27899 \N \N agent-new \N \N -181 Stiftung Berliner Leben multiple-social-support https://www.stiftung-berliner-leben.de/ agent-unknown agent-not-needed {tutoring,welfare,welfare} 2026-04-14 16:10:00.312787 2026-04-14 16:10:00.312787 \N \N agent-new \N \N -182 Vostel multiple-social-support https://vostel.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:00.336381 2026-04-14 16:10:00.336381 \N \N agent-new \N \N -183 Aşkın-Hayat Doğan multiple-social-support https://ask-dogan.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:00.361955 2026-04-14 16:10:00.361955 \N \N agent-new \N \N -184 JUMA e.V. multiple-social-support http://juma-ev.de/ agent-unknown agent-not-needed {welfare,tandem} 2026-04-14 16:10:00.382967 2026-04-14 16:10:00.382967 \N \N agent-new \N \N -185 Diakoniewerk Simeon multiple-social-support https://www.diakoniewerk-simeon.de agent-unknown agent-not-needed {consultation,tutoring,tutoring,voluntary-support} 2026-04-14 16:10:00.410251 2026-04-14 16:10:00.410251 \N \N agent-new \N \N -186 grenzgänge multiple-social-support https://grenzgaenge.net/ agent-unknown agent-not-needed {welfare,tutoring,youth} 2026-04-14 16:10:00.441626 2026-04-14 16:10:00.441626 \N \N agent-new \N \N -187 Das Afghanistan-Komitee für Frieden, Wiederaufbau und Kultur e.V. multiple-social-support https://afghanistankomitee.de/ agent-unknown agent-not-needed {tutoring,tandem} 2026-04-14 16:10:00.466527 2026-04-14 16:10:00.466527 \N \N agent-new \N \N -188 Die Akademie für Ehrenamtlichkeit multiple-social-support https://www.ehrenamt.de/ agent-unknown agent-not-needed {tutoring,voluntary-support} 2026-04-14 16:10:00.491108 2026-04-14 16:10:00.491108 \N \N agent-new \N \N -189 akinda multiple-social-support https://www.akinda-berlin.org agent-unknown agent-not-needed {tandem,consultation,childcare,voluntary-support,tutoring,voluntary-support} 2026-04-14 16:10:00.516208 2026-04-14 16:10:00.516208 \N \N agent-new \N \N -190 Amaro Foro e.V. multiple-social-support https://amaroforo.de/ agent-unknown agent-not-needed {consultation,voluntary-support,tandem,voluntary-support} 2026-04-14 16:10:00.542147 2026-04-14 16:10:00.542147 \N \N agent-new \N \N -191 AWO Südwest (Friedenau) multiple-social-support https://www.awo-suedwest.de/friedenau.html agent-unknown agent-not-needed {consultation,consultation,sport,youth} 2026-04-14 16:10:00.568445 2026-04-14 16:10:00.568445 \N \N agent-new \N \N -192 Ausländer mit uns - Verein zur Förderung interkultureller Begegnungen e. V. multiple-social-support https://amuberlin.de/ agent-unknown agent-not-needed {refugee-accommodation,voluntary-support,welfare,voluntary-support,tutoring} 2026-04-14 16:10:00.599404 2026-04-14 16:10:00.599404 \N \N agent-new \N \N -193 BDB - Bund für Antidiskriminierungs- und Bildungsarbeit e.V. multiple-social-support https://bdb-germany.de/ agent-unknown agent-not-needed {consultation,welfare,tandem} 2026-04-14 16:10:00.626357 2026-04-14 16:10:00.626357 \N \N agent-new \N \N -194 Berlin hilft multiple-social-support https://berlin-hilft.com/ agent-unknown agent-not-needed {consultation,tutoring,tandem} 2026-04-14 16:10:00.653048 2026-04-14 16:10:00.653048 \N \N agent-new \N \N -195 Berlin to Borders e.V. multiple-social-support https://www.berlintoborders.org/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:00.675442 2026-04-14 16:10:00.675442 \N \N agent-new \N \N -196 BEGspo multiple-social-support https://begspo.de/k agent-unknown agent-not-needed {childcare,sport,youth} 2026-04-14 16:10:00.703245 2026-04-14 16:10:00.703245 \N \N agent-new \N \N -197 Berliner Stadtmission multiple-social-support https://www.berliner-stadtmission.de/ehrenamt agent-unknown agent-not-needed {consultation,voluntary-support,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:00.73193 2026-04-14 16:10:00.73193 \N \N agent-new \N \N -198 Bundesarbeitsgemeinschaft der Freiwilligenagenturen e.V. multiple-social-support https://bagfa.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:00.76094 2026-04-14 16:10:00.76094 \N \N agent-new \N \N -199 BAfF e.V. multiple-social-support \N agent-unknown agent-not-needed {tutoring,voluntary-support} 2026-04-14 16:10:00.791474 2026-04-14 16:10:00.791474 \N \N agent-new \N \N -200 buntkicktgut gGmbH multiple-social-support https://buntkicktgut.org/ agent-unknown agent-not-needed {sport} 2026-04-14 16:10:00.832661 2026-04-14 16:10:00.832661 \N \N agent-new \N \N -201 Bus of Resources multiple-social-support https://www.busofresources.de agent-unknown agent-not-needed {consultation,voluntary-support,voluntary-support} 2026-04-14 16:10:00.902512 2026-04-14 16:10:00.902512 \N \N agent-new \N \N -202 Caritas Deutschland multiple-social-support https://www.caritas.de/fuerprofis/fachthemen/migration/ehrenamt-in-der-fluechtlingsarbeit/ehrenamt-in-der-fluechtlingsarbeit agent-unknown agent-not-needed {consultation,voluntary-support,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:00.93203 2026-04-14 16:10:00.93203 \N \N agent-new \N \N -203 Centre for Humanitarian Action (CHA) multiple-social-support https://www.chaberlin.org/ agent-unknown agent-not-needed {voluntary-support,tandem} 2026-04-14 16:10:00.97611 2026-04-14 16:10:00.97611 \N \N agent-new \N \N -204 LeaveNoOneBehind multiple-social-support https://lnob.net/ agent-unknown agent-not-needed {voluntary-support,tandem,voluntary-support} 2026-04-14 16:10:01.003564 2026-04-14 16:10:01.003564 \N \N agent-new \N \N -205 DaKS – Dachverband Berliner Kinder- und Schülerläden e. V. multiple-social-support https://www.daks-berlin.de/ agent-unknown agent-not-needed {welfare,childcare,tandem,welfare,youth} 2026-04-14 16:10:01.025908 2026-04-14 16:10:01.025908 \N \N agent-new \N \N -206 Dekabristen e.V. multiple-social-support https://dekabristen.org/ agent-unknown agent-not-needed {tutoring,tandem} 2026-04-14 16:10:01.055022 2026-04-14 16:10:01.055022 \N \N agent-new \N \N -207 Der Paritätische multiple-social-support https://www.der-paritaetische.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:01.086316 2026-04-14 16:10:01.086316 \N \N agent-new \N \N -208 djo-hilft multiple-social-support https://djo-hilft.de/ agent-unknown agent-not-needed {tutoring,childcare,voluntary-support,voluntary-support,youth} 2026-04-14 16:10:01.116932 2026-04-14 16:10:01.116932 \N \N agent-new \N \N -209 Ev. Kirchengemeinde Zum Guten Hirten multiple-social-support https://www.zum-guten-hirten-friedenau.de agent-unknown agent-not-needed {consultation,voluntary-support,welfare,tutoring} 2026-04-14 16:10:01.143419 2026-04-14 16:10:01.143419 \N \N agent-new \N \N -210 Fabrik Osloer Strasse e.V. multiple-social-support \N agent-unknown agent-not-needed {tutoring,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:01.234912 2026-04-14 16:10:01.234912 \N \N agent-new \N \N -211 Flüchtlingsrat Berlin e.V. multiple-social-support https://fluechtlingsrat-berlin.de/ agent-unknown agent-not-needed {consultation,tandem,voluntary-support} 2026-04-14 16:10:01.397787 2026-04-14 16:10:01.397787 \N \N agent-new \N \N -212 MIM - Migrantinnen in Marzahn e.V. multiple-social-support https://www.mimev.de agent-unknown agent-not-needed {welfare,voluntary-support,welfare} 2026-04-14 16:10:01.508297 2026-04-14 16:10:01.508297 \N \N agent-new \N \N -213 Freiwilligenagentur Steglitz-Zehlendorf multiple-social-support https://freiwilligenagentur.info agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:01.557044 2026-04-14 16:10:01.557044 \N \N agent-new \N \N -214 Goldnetz multiple-social-support https://www.goldnetz-berlin.de agent-unknown agent-not-needed {consultation,tutoring,job-coaching,welfare} 2026-04-14 16:10:01.591615 2026-04-14 16:10:01.591615 \N \N agent-new \N \N -215 gfp Gesellschaft für Pflege- und Sozialberufe gGmbH \N https://www.gfp-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:01.619283 2026-04-14 16:10:01.619283 \N \N agent-new \N \N -216 GoVolunteer multiple-social-support https://govolunteer.com/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:01.641774 2026-04-14 16:10:01.641774 \N \N agent-new \N \N -241 Schöneberg hilft e.V. multiple-social-support www.schoeneberg-hilft.de agent-unknown agent-not-needed {consultation,voluntary-support,tandem,voluntary-support,voluntary-support} 2026-04-14 16:10:02.919332 2026-04-14 16:10:02.919332 \N \N agent-new \N \N -217 Handicap International e.V. multiple-social-support https://handicap-international.de/ agent-unknown agent-not-needed {voluntary-support,tandem} 2026-04-14 16:10:01.675706 2026-04-14 16:10:01.675706 \N \N agent-new \N \N -218 Haus Babylon - Babel e.V. multiple-social-support http://www.haus-babylon.de agent-unknown agent-not-needed {consultation,consultation,welfare,childcare,tandem,youth} 2026-04-14 16:10:01.707365 2026-04-14 16:10:01.707365 \N \N agent-new \N \N -219 Salvation Army multiple-social-support https://www.heilsarmee.de/berlinsuedwest/ueber-uns.html agent-unknown agent-not-needed {consultation,welfare,voluntary-support,tutoring} 2026-04-14 16:10:01.734983 2026-04-14 16:10:01.734983 \N \N agent-new \N \N -220 Willkommen in Reinickendorf multiple-social-support https://wir-netzwerk.de agent-unknown agent-not-needed {welfare,voluntary-support,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:01.774936 2026-04-14 16:10:01.774936 \N \N agent-new \N \N -221 House of Resources multiple-social-support https://www.house-of-resources.berlin/ agent-unknown agent-not-needed {consultation,voluntary-support} 2026-04-14 16:10:01.838634 2026-04-14 16:10:01.838634 \N \N agent-new \N \N -222 Humanistischer Verband Deutschlands, Landesverband Berlin-Brandenburg multiple-social-support https://humanistisch.de/ agent-unknown agent-not-needed {consultation,welfare,tandem} 2026-04-14 16:10:01.920465 2026-04-14 16:10:01.920465 \N \N agent-new \N \N -223 OlamAid e.V. multiple-social-support https://www.olamaid.org/de agent-unknown agent-not-needed {consultation,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:02.115468 2026-04-14 16:10:02.115468 \N \N agent-new \N \N -224 Johanniter-Unfall-Hilfe e.V. multiple-social-support https://www.johanniter.de/ agent-unknown agent-not-needed {consultation,voluntary-support,voluntary-support} 2026-04-14 16:10:02.159162 2026-04-14 16:10:02.159162 \N \N agent-new \N \N -225 Kommunales Bildungswerk e. V. multiple-social-support https://www.kbw.de/ agent-unknown agent-not-needed {tutoring} 2026-04-14 16:10:02.228138 2026-04-14 16:10:02.228138 \N \N agent-new \N \N -226 LAGFA Berlin -Landesarbeitsgemeinschaft der Freiwilligenagenturen Berlin e.V. multiple-social-support https://www.lagfa.berlin agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:02.301198 2026-04-14 16:10:02.301198 \N \N agent-new \N \N -227 Landesfreiwilligenagentur multiple-social-support https://landesfreiwilligenagentur.berlin agent-unknown agent-not-needed {welfare,voluntary-support} 2026-04-14 16:10:02.33541 2026-04-14 16:10:02.33541 \N \N agent-new \N \N -228 Landesverband Berliner Rotes Kreuz e.V. multiple-social-support https://www.drk-berlin.de/ agent-unknown agent-not-needed {consultation,consultation,voluntary-support,voluntary-support,voluntary-support,voluntary-support} 2026-04-14 16:10:02.365708 2026-04-14 16:10:02.365708 \N \N agent-new \N \N -229 LARA - Verein gegen sexuelle Gewalt an Frauen e.V. multiple-social-support https://lara-berlin.de/home agent-unknown agent-not-needed {consultation,consultation,voluntary-support,voluntary-support,welfare} 2026-04-14 16:10:02.406575 2026-04-14 16:10:02.406575 \N \N agent-new \N \N -230 Lernlabor Berlin multiple-social-support https://lernlabor.berlin/about/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:02.484429 2026-04-14 16:10:02.484429 \N \N agent-new \N \N -231 Let’s Act e.V. multiple-social-support letsact.de agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:02.516812 2026-04-14 16:10:02.516812 \N \N agent-new \N \N -232 WiB e.V. (Wir im Brunnenviertel) multiple-social-support https://wib-jugend.org/ agent-unknown agent-not-needed {welfare,voluntary-support,welfare,voluntary-support,welfare} 2026-04-14 16:10:02.554625 2026-04-14 16:10:02.554625 \N \N agent-new \N \N -233 Malteser Hilfsdienst e.V. multiple-social-support https://www.malteser-berlin.de agent-unknown agent-not-needed {voluntary-support,voluntary-support,voluntary-support} 2026-04-14 16:10:02.593717 2026-04-14 16:10:02.593717 \N \N agent-new \N \N -234 Nachbarschaftshaus Friedenau multiple-social-support https://www.nbhs.de agent-unknown agent-not-needed {welfare,welfare} 2026-04-14 16:10:02.639667 2026-04-14 16:10:02.639667 \N \N agent-new \N \N -235 NEZ - Neuköllner EngagementZentrum multiple-social-support https://nez-neukoelln.de/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:02.68758 2026-04-14 16:10:02.68758 \N \N agent-new \N \N -236 oskar - Freiwilligenagentur multiple-social-support https://oskar.berlin/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:02.727771 2026-04-14 16:10:02.727771 \N \N agent-new \N \N -237 People Beyond Borders multiple-social-support https://peoplebeyondborders.org/ agent-unknown agent-not-needed {welfare,voluntary-support} 2026-04-14 16:10:02.787238 2026-04-14 16:10:02.787238 \N \N agent-new \N \N -238 ReDI School of Digital Integration multiple-social-support redi-school.org agent-unknown agent-not-needed {tutoring,childcare,voluntary-support,voluntary-support,youth} 2026-04-14 16:10:02.824149 2026-04-14 16:10:02.824149 \N \N agent-new \N \N -239 Refugee Law Clinic Berlin e.V. multiple-social-support https://www.rlc-berlin.org/ agent-unknown agent-not-needed {consultation,voluntary-support} 2026-04-14 16:10:02.852111 2026-04-14 16:10:02.852111 \N \N agent-new \N \N -240 Save the Children Deutschland multiple-social-support https://www.savethechildren.de/ agent-unknown agent-not-needed {voluntary-support,childcare,tandem} 2026-04-14 16:10:02.879299 2026-04-14 16:10:02.879299 \N \N agent-new \N \N -242 Landessportbund Berlin e.V. multiple-social-support www.sportbund.de agent-unknown agent-not-needed {consultation,childcare,sport,youth} 2026-04-14 16:10:02.951859 2026-04-14 16:10:02.951859 \N \N agent-new \N \N -243 Stadtteilzentrum Hellersdorf-Ost multiple-social-support https://www.ev-mittendrin.de/stadtteilzentrum-hellersdorf-ost/ agent-unknown agent-not-needed {welfare,tutoring} 2026-04-14 16:10:02.995589 2026-04-14 16:10:02.995589 \N \N agent-new \N \N -244 THFwelcome e.V. multiple-social-support https://thfwelcome.de/ agent-unknown agent-not-needed {childcare,voluntary-support,welfare,youth} 2026-04-14 16:10:03.028051 2026-04-14 16:10:03.028051 \N \N agent-new \N \N -245 Ulme35 – Interkulturanstalten Westend e.V. multiple-social-support https://interkulturanstalten.de agent-unknown agent-not-needed {tutoring,welfare,tandem,voluntary-support,welfare,voluntary-support,tutoring} 2026-04-14 16:10:03.063947 2026-04-14 16:10:03.063947 \N \N agent-new \N \N -246 VIA Berlin/Brandenburg multiple-social-support https://www.via-in-berlin.de/ agent-unknown agent-not-needed {consultation,voluntary-support,voluntary-support,voluntary-support} 2026-04-14 16:10:03.09314 2026-04-14 16:10:03.09314 \N \N agent-new \N \N -247 Wellbeing for Everyone gUG multiple-social-support https://www.wellbeing-company.com/ agent-unknown agent-not-needed {tutoring} 2026-04-14 16:10:03.126177 2026-04-14 16:10:03.126177 \N \N agent-new \N \N -248 Türöffner e.V. – Jobnetzwerk für Geflüchtete multiple-social-support https://tueroeffner-ev.de/ agent-unknown agent-not-needed {job-coaching,voluntary-support} 2026-04-14 16:10:03.150792 2026-04-14 16:10:03.150792 \N \N agent-new \N \N -249 Gemeinwesenverein Heerstraße Nord e.V. multiple-social-support https://gwv-heerstrasse.de/ agent-unknown agent-not-needed {consultation,voluntary-support,welfare,voluntary-support} 2026-04-14 16:10:03.178541 2026-04-14 16:10:03.178541 \N \N agent-new \N \N -250 BENN Wilmersdorf \N https://benn-wilmersdorf.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.214507 2026-04-14 16:10:03.214507 \N \N agent-new \N \N -251 BENN Hohenschönhausen Nord \N www.benn-hohenschoenhausen.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.246607 2026-04-14 16:10:03.246607 \N \N agent-new \N \N -252 BENN Fennpfuhl \N https://www.benn-fennpfuhl.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.270044 2026-04-14 16:10:03.270044 \N \N agent-new \N \N -253 BENN Alt-Hohenschönhausen \N https://www.benn-alt-hsh.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.293286 2026-04-14 16:10:03.293286 \N \N agent-new \N \N -254 BENN Wartenberg \N https://sozdia.de/taetigkeitsbereiche/gemeinwesen/benn-wartenberg/ueber-uns agent-unknown agent-not-needed {} 2026-04-14 16:10:03.319958 2026-04-14 16:10:03.319958 \N \N agent-new \N \N -255 BENN Blumberger Damm \N https://benn-blumbergerdamm.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.351432 2026-04-14 16:10:03.351432 \N \N agent-new \N \N -256 BENN Lewis-Lewin-Straße \N https://benn-lls.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.375151 2026-04-14 16:10:03.375151 \N \N agent-new \N \N -257 BENN Marzahn-Süd \N https://marzahn-sued.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.412043 2026-04-14 16:10:03.412043 \N \N agent-new \N \N -258 BENNplus Wittenberger Straße \N https://www.wittenberger-strasse.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.438509 2026-04-14 16:10:03.438509 \N \N agent-new \N \N -259 BENNplus Raoul-Wallenberg-Str. \N https://www.drk-berlin-nordost.de/benn-plus-raoul-wallenberg-strasse.html agent-unknown agent-not-needed {} 2026-04-14 16:10:03.464806 2026-04-14 16:10:03.464806 \N \N agent-new \N \N -260 BENN Britz \N https://benn-britz.com agent-unknown agent-not-needed {} 2026-04-14 16:10:03.494933 2026-04-14 16:10:03.494933 \N \N agent-new \N \N -261 BENN Buch \N https://www.benn-buch.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.522428 2026-04-14 16:10:03.522428 \N \N agent-new \N \N -262 BENN Weißensee \N https://benn-weissensee.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.545665 2026-04-14 16:10:03.545665 \N \N agent-new \N \N -263 BENN Märkisches Viertel \N https://www.bennimmv.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.56946 2026-04-14 16:10:03.56946 \N \N agent-new \N \N -264 BENN Tegel-Süd \N https://benn-tegelsued.de/index.php agent-unknown agent-not-needed {} 2026-04-14 16:10:03.593161 2026-04-14 16:10:03.593161 \N \N agent-new \N \N -265 BENN Wittenau-Süd \N https://wittenau-sued.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.619084 2026-04-14 16:10:03.619084 \N \N agent-new \N \N -266 BENN Hakenfelde \N https://benn-hakenfelde.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.64277 2026-04-14 16:10:03.64277 \N \N agent-new \N \N -267 BENN Staaken \N https://gwv-heerstrasse.de/orte/benn-staaken/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.664307 2026-04-14 16:10:03.664307 \N \N agent-new \N \N -268 BENN Hindenburgdamm \N https://www.benn-hindenburgdamm.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.693094 2026-04-14 16:10:03.693094 \N \N agent-new \N \N -269 BENN Mariendorf-Tempelhof \N https://www.benn-mariendorf-tempelhof.de agent-unknown agent-not-needed {} 2026-04-14 16:10:03.718367 2026-04-14 16:10:03.718367 \N \N agent-new \N \N -270 BENN Allende-Viertel \N https://www.benn-allende-viertel.de/de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.741345 2026-04-14 16:10:03.741345 \N \N agent-new \N \N -271 BENN Altglienicke \N https://www.benn-altglienicke.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.762968 2026-04-14 16:10:03.762968 \N \N agent-new \N \N -272 Laura El-Khatib \N https://www.berlin.de/ba-steglitz-zehlendorf/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.790933 2026-04-14 16:10:03.790933 \N \N agent-new \N \N -273 Nina Scholz (?) \N https://www.berlin.de/ba-steglitz-zehlendorf/auf-einen-blick/ehrenamt/aktuelles/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.822099 2026-04-14 16:10:03.822099 \N \N agent-new \N \N -274 Cem Gömüsay \N https://www.berlin.de/ba-charlottenburg-wilmersdorf/verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.848137 2026-04-14 16:10:03.848137 \N \N agent-new \N \N -275 Prisca Martaguet \N https://www.berlin.de/ba-charlottenburg-wilmersdorf/verwaltung/beauftragte/integration/das-integrationsbuero/artikel.663448.php agent-unknown agent-not-needed {} 2026-04-14 16:10:03.87333 2026-04-14 16:10:03.87333 \N \N agent-new \N \N -276 Sahra Nell \N https://www.berlin.de/ba-friedrichshain-kreuzberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.902424 2026-04-14 16:10:03.902424 \N \N agent-new \N \N -374 Schönwalder Allee \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.766126 2026-04-14 16:10:06.766126 \N \N agent-new \N \N -277 Forouzan Forough \N https://www.berlin.de/ba-friedrichshain-kreuzberg/politik-und-verwaltung/beauftragte/integration/team/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.929973 2026-04-14 16:10:03.929973 \N \N agent-new \N \N -278 Johanna Kösters \N https://www.berlin.de/ba-mitte/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.956532 2026-04-14 16:10:03.956532 \N \N agent-new \N \N -279 Noemi Majer \N https://www.berlin.de/ba-mitte/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:03.986055 2026-04-14 16:10:03.986055 \N \N agent-new \N \N -280 Fabian Nehring \N https://www.berlin.de/ba-lichtenberg/politik-und-verwaltung/beauftragte/integration/artikel.708493.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.0218 2026-04-14 16:10:04.0218 \N \N agent-new \N \N -281 Irina Plat \N https://www.berlin.de/ba-lichtenberg/politik-und-verwaltung/beauftragte/integration/artikel.708493.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.054515 2026-04-14 16:10:04.054515 \N \N agent-new \N \N -282 Zhanna Kramer \N https://www.berlin.de/ba-lichtenberg/politik-und-verwaltung/beauftragte/integration/artikel.708493.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.087144 2026-04-14 16:10:04.087144 \N \N agent-new \N \N -283 Gregor Postler \N https://www.berlin.de/ba-treptow-koepenick/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.122777 2026-04-14 16:10:04.122777 \N \N agent-new \N \N -284 Katharina Stökl \N https://www.berlin.de/ba-treptow-koepenick/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.147037 2026-04-14 16:10:04.147037 \N \N agent-new \N \N -285 Dr. Lisa Rüter \N https://www.berlin.de/ba-tempelhof-schoeneberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.175391 2026-04-14 16:10:04.175391 \N \N agent-new \N \N -286 Romy Powils \N https://www.berlin.de/ba-tempelhof-schoeneberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.207558 2026-04-14 16:10:04.207558 \N \N agent-new \N \N -287 Ariane Ortmann \N https://www.berlin.de/ba-tempelhof-schoeneberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.240831 2026-04-14 16:10:04.240831 \N \N agent-new \N \N -288 Dr. Max Meier \N https://www.berlin.de/ba-tempelhof-schoeneberg/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.268889 2026-04-14 16:10:04.268889 \N \N agent-new \N \N -289 Martin Peters \N https://www.berlin.de/ba-spandau/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.299558 2026-04-14 16:10:04.299558 \N \N agent-new \N \N -290 Christina Skirde \N https://www.berlin.de/ba-spandau/politik-und-verwaltung/beauftragte/integration/artikel.745181.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.335123 2026-04-14 16:10:04.335123 \N \N agent-new \N \N -291 Juliana Ramm \N https://www.berlin.de/ba-reinickendorf/politik-und-verwaltung/beauftragte/integration/artikel.601733.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.363987 2026-04-14 16:10:04.363987 \N \N agent-new \N \N -292 Anne Speck multiple-social-support https://www.berlin.de/ba-pankow/politik-und-verwaltung/beauftragte/integration/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.39571 2026-04-14 16:10:04.39571 \N \N agent-new \N \N -293 Türkische Bund Berlin - TBB multiple-social-support tbb-berlin.de agent-unknown agent-not-needed {consultation,job-coaching,voluntary-support} 2026-04-14 16:10:04.434673 2026-04-14 16:10:04.434673 \N \N agent-new \N \N -294 kein Abseits! e.V. multiple-social-support https://www.kein-abseits.de agent-unknown agent-not-needed {job-coaching,childcare,voluntary-support,sport,tutoring,voluntary-support} 2026-04-14 16:10:04.464097 2026-04-14 16:10:04.464097 \N \N agent-new \N \N -295 Torhaus Berlin e.V. multiple-social-support https://torhausberlin.de/ agent-unknown agent-not-needed {refugee-accommodation,welfare,voluntary-support,welfare} 2026-04-14 16:10:04.500752 2026-04-14 16:10:04.500752 \N \N agent-new \N \N -296 Interkular gGmbH multiple-social-support https://www.interkular.de/ agent-unknown agent-not-needed {refugee-accommodation,consultation,welfare,voluntary-support,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:04.524816 2026-04-14 16:10:04.524816 \N \N agent-new \N \N -297 Forough Ghiasi multiple-social-support https://www.berlin.de/ba-steglitz-zehlendorf/politik-und-verwaltung/beauftragte/integration/artikel.622675.php agent-unknown agent-not-needed {} 2026-04-14 16:10:04.553262 2026-04-14 16:10:04.553262 \N \N agent-new \N \N -298 lilipad e.V. multiple-social-support https://www.lilipadlibrary.org/ agent-unknown agent-not-needed {tutoring,childcare,tutoring} 2026-04-14 16:10:04.578019 2026-04-14 16:10:04.578019 \N \N agent-new \N \N -299 Pankow hilft e.V. multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:04.600243 2026-04-14 16:10:04.600243 \N \N agent-new \N \N -300 Clean Up Trepnick multiple-social-support https://www.cleanuptrepnick.de/en agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:04.628819 2026-04-14 16:10:04.628819 \N \N agent-new \N \N -301 Du für Berlin multiple-social-support https://dfb.govolunteer.com/ agent-unknown agent-not-needed {voluntary-support,voluntary-support,voluntary-support} 2026-04-14 16:10:04.649857 2026-04-14 16:10:04.649857 \N \N agent-new \N \N -302 Iranische Gemeinde in Deutschland e.V. multiple-social-support \N agent-unknown agent-not-needed {welfare,tandem,voluntary-support,sport,welfare} 2026-04-14 16:10:04.670515 2026-04-14 16:10:04.670515 \N \N agent-new \N \N -303 Kiezkiosk Open Tiny e.V.  multiple-social-support https://opentiny.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:04.730341 2026-04-14 16:10:04.730341 \N \N agent-new \N \N -304 Beratungsforum Engagement für Geflüchtete (BfE) Nord multiple-social-support https://beratungsforum-engagement.berlin/beratungsforum-team/ agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:04.794089 2026-04-14 16:10:04.794089 \N \N agent-new \N \N -305 Internationaler Bund (IB) Marzahn multiple-social-support www.ib.de agent-unknown agent-not-needed {consultation,voluntary-support,tutoring} 2026-04-14 16:10:04.820106 2026-04-14 16:10:04.820106 \N \N agent-new \N \N -306 Mobijob multiple-social-support https://www.mobijob-berlin.de agent-unknown agent-not-needed {consultation,job-coaching,voluntary-support} 2026-04-14 16:10:04.851287 2026-04-14 16:10:04.851287 \N \N agent-new \N \N -375 Seegefelder Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.785526 2026-04-14 16:10:06.785526 \N \N agent-new \N \N -307 Zentrum ÜBERLEBEN gGmbH multiple-social-support https://www.ueberleben.org/kontakt/kontakt/ agent-unknown agent-not-needed {consultation,tutoring,voluntary-support} 2026-04-14 16:10:04.87828 2026-04-14 16:10:04.87828 \N \N agent-new \N \N -308 Flamingo e.V. multiple-social-support https://flamingo-berlin.org/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.903888 2026-04-14 16:10:04.903888 \N \N agent-new \N \N -309 ALEP e.V. Außerschulisches Lernen und Erlebnispädagogik multiple-social-support https://alep-ev.de/ agent-unknown agent-not-needed {welfare,tutoring,tandem,childcare,voluntary-support,youth} 2026-04-14 16:10:04.914885 2026-04-14 16:10:04.914885 \N \N agent-new \N \N -310 FU Berlin student body multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:04.942919 2026-04-14 16:10:04.942919 \N \N agent-new \N \N -311 SBZ Motorenprüfstand \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:04.955007 2026-04-14 16:10:04.955007 \N \N agent-new \N \N -312 Medical School Berlin \N https://www.medicalschool-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.976933 2026-04-14 16:10:04.976933 \N \N agent-new \N \N -313 Internationale Hochschule \N https://www.iu-dualesstudium.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.987834 2026-04-14 16:10:04.987834 \N \N agent-new \N \N -314 \nHochschule für Soziale Arbeit und Pädagogik (HSAP) \N https://www.hsap.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:04.998457 2026-04-14 16:10:04.998457 \N \N agent-new \N \N -315 \nEvangelische Hochschule Berlin (EHB) \N https://www.eh-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:05.014155 2026-04-14 16:10:05.014155 \N \N agent-new \N \N -316 Mensa Adlershof HU \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.029233 2026-04-14 16:10:05.029233 \N \N agent-new \N \N -317 Humboldt Universität \N https://www.hu-berlin.de/de agent-unknown agent-not-needed {} 2026-04-14 16:10:05.043877 2026-04-14 16:10:05.043877 \N \N agent-new \N \N -318 Freie Universität Berlin \N https://www.fu-berlin.de/ agent-unknown agent-not-needed {} 2026-04-14 16:10:05.056251 2026-04-14 16:10:05.056251 \N \N agent-new \N \N -319 Technische Universität Berlin \N https://www.tu.berlin/ agent-unknown agent-not-needed {} 2026-04-14 16:10:05.070783 2026-04-14 16:10:05.070783 \N \N agent-new \N \N -320 Grünauer Straße \N \N agent-low agent-not-needed {} 2026-04-14 16:10:05.083635 2026-04-14 16:10:05.083635 \N \N agent-new \N \N -321 KinderKulturMonat multiple-social-support https://www.kinderkulturmonat.de agent-unknown agent-not-needed {welfare,childcare,voluntary-support,voluntary-support} 2026-04-14 16:10:05.136786 2026-04-14 16:10:05.136786 \N \N agent-new \N \N -322 Reforum Space multiple-social-support https://www.4freerussia.org/reforum-space/ agent-unknown agent-not-needed {consultation,tutoring} 2026-04-14 16:10:05.165509 2026-04-14 16:10:05.165509 \N \N agent-new \N \N -323 Berlin Scholars multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.189297 2026-04-14 16:10:05.189297 \N \N agent-new \N \N -324 VHS Lichtenberg \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.201902 2026-04-14 16:10:05.201902 \N \N agent-new \N \N -325 VHS Pankow \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.223688 2026-04-14 16:10:05.223688 \N \N agent-new \N \N -326 VHS Spandau \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.245027 2026-04-14 16:10:05.245027 \N \N agent-new \N \N -327 VHS Reinikendorf \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.266117 2026-04-14 16:10:05.266117 \N \N agent-new \N \N -328 VHS Marzahn-Hellersdorf \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.286654 2026-04-14 16:10:05.286654 \N \N agent-new \N \N -329 VHS Treptow Köpenick \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.307917 2026-04-14 16:10:05.307917 \N \N agent-new \N \N -330 VHS Neukölln \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.328873 2026-04-14 16:10:05.328873 \N \N agent-new \N \N -331 VHS Tempelhof Schöneberg multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.348542 2026-04-14 16:10:05.348542 \N \N agent-new \N \N -332 paragraf 1 Soziale Dienste gGmbH multiple-social-support www.paragraf1.de agent-unknown agent-not-needed {consultation,tandem} 2026-04-14 16:10:05.370276 2026-04-14 16:10:05.370276 \N \N agent-new \N \N -333 Campus Hedwig SozDia Jugendhilfe, Bildung und Arbeit gGmbH multiple-social-support https://stadtteilzentren.de/orte/lichtenberg/stadtteilzentrum-campus-hedwig-sozdia-ggmbh/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:05.397369 2026-04-14 16:10:05.397369 \N \N agent-new \N \N -334 https://stadtteilzentren.de/orte/lichtenberg/interkultureller-garten-lichtenberg-sozdia-ggmbh/# multiple-social-support https://sozdia.de/taetigkeitsbereiche/gemeinwesen/interkultureller-garten/ueber-uns agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:05.408571 2026-04-14 16:10:05.408571 \N \N agent-new \N \N -335 Unabhängiges Jugendzentrum Pankow – JUP e. V. multiple-social-support https://www.jup-ev.org/haus/neuigkeiten.html agent-unknown agent-not-needed {} 2026-04-14 16:10:05.42001 2026-04-14 16:10:05.42001 \N \N agent-new \N \N -336 Bessemerstr. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.432673 2026-04-14 16:10:05.432673 \N \N agent-new \N \N -337 Röblingstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.459289 2026-04-14 16:10:05.459289 \N \N agent-new \N \N -338 Tamaja gGmbH multiple-social-support http://www.tamaja.de agent-unknown agent-not-needed {voluntary-support,voluntary-support} 2026-04-14 16:10:05.481369 2026-04-14 16:10:05.481369 \N \N agent-new \N \N -339 Mansio Mitte ASOG \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.5085 2026-04-14 16:10:05.5085 \N \N agent-new \N \N -340 Wohnheim Heider ASOG \N agent-low agent-not-needed {} 2026-04-14 16:10:05.525399 2026-04-14 16:10:05.525399 \N \N agent-new \N \N -372 Quedlinburger Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.700353 2026-04-14 16:10:06.700353 \N \N agent-new \N \N -341 bedcon - Berlin Education & Consulting multiple-social-support bedcon.net agent-unknown agent-not-needed {consultation,job-coaching,sport,voluntary-support,voluntary-support,welfare} 2026-04-14 16:10:05.54602 2026-04-14 16:10:05.54602 \N \N agent-new \N \N -342 Home and Beyond e.V. multiple-social-support https://www.homebeyond.org/ agent-unknown agent-not-needed {consultation,tutoring,voluntary-support,voluntary-support,welfare} 2026-04-14 16:10:05.571986 2026-04-14 16:10:05.571986 \N \N agent-new \N \N -343 Asyl in der Kirche e.V. multiple-social-support https://kirchenasyl.de agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:05.599958 2026-04-14 16:10:05.599958 \N \N agent-new \N \N -344 Aktion für Flüchtlingshilfe e.V. multiple-social-support https://aktion-fh.de agent-unknown agent-not-needed {tandem,welfare,tandem,voluntary-support} 2026-04-14 16:10:05.626455 2026-04-14 16:10:05.626455 \N \N agent-new \N \N -345 Berliner Aids-Hilfe e.V. multiple-social-support https://www.berlin-aidshilfe.de agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:05.653543 2026-04-14 16:10:05.653543 \N \N agent-new \N \N -346 BWK BildungsWerk in Kreuzberg GmbH multiple-social-support bwk-berlin.de agent-unknown agent-not-needed {tutoring,job-coaching} 2026-04-14 16:10:05.679404 2026-04-14 16:10:05.679404 \N \N agent-new \N \N -347 Verein iranischer Flüchtlinge in Berlin e.V. multiple-social-support https://iprberlin.com agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:05.706498 2026-04-14 16:10:05.706498 \N \N agent-new \N \N -348 Bona Peiser Sozio-kulturelle Projekträume - Wassertor e.V. multiple-social-support https://bona-peiser.de agent-unknown agent-not-needed {consultation,consultation,tutoring,tandem,welfare} 2026-04-14 16:10:05.728542 2026-04-14 16:10:05.728542 \N \N agent-new \N \N -349 Arrivo Berlin Hospitality multiple-social-support bildungsmarkt.de agent-unknown agent-not-needed {tutoring,refugee-accommodation} 2026-04-14 16:10:05.756134 2026-04-14 16:10:05.756134 \N \N agent-new \N \N -350 S27 – Kunst und Bildung multiple-social-support s27.de agent-unknown agent-not-needed {tutoring,refugee-accommodation,welfare,welfare,youth} 2026-04-14 16:10:05.7824 2026-04-14 16:10:05.7824 \N \N agent-new \N \N -351 woloho multiple-social-support https://woloho.com/unser-team/ agent-unknown agent-not-needed {} 2026-04-14 16:10:05.803306 2026-04-14 16:10:05.803306 \N \N agent-new \N \N -352 Vereinigung der Vietnamesen multiple-social-support https://vietnam-bb.de/de/home/ agent-unknown agent-not-needed {tandem,voluntary-support,voluntary-support} 2026-04-14 16:10:05.815294 2026-04-14 16:10:05.815294 \N \N agent-new \N \N -353 Somalischen Kultur und Hilfe Verein multiple-social-support https://somalis-berlin.de/ agent-unknown agent-not-needed {welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:05.850966 2026-04-14 16:10:05.850966 \N \N agent-new \N \N -354 Ankunftszentrum Tegel NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.873471 2026-04-14 16:10:05.873471 \N \N agent-new \N \N -355 Haus Kopernikus AE \N agent-unknown agent-not-needed {} 2026-04-14 16:10:05.897816 2026-04-14 16:10:05.897816 \N \N agent-new \N \N -356 Storkower Straße 160 (Hostel Generator) AE \N agent-high agent-not-needed {} 2026-04-14 16:10:05.981539 2026-04-14 16:10:05.981539 \N \N agent-new \N \N -357 Landsberger Allee 201-205 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.079559 2026-04-14 16:10:06.079559 \N \N agent-new \N \N -358 Bohnsdorfer Weg GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.179597 2026-04-14 16:10:06.179597 \N \N agent-new \N \N -359 Refugium Gotenburger Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.214602 2026-04-14 16:10:06.214602 \N \N agent-new \N \N -360 Wotanstraße AE \N agent-low agent-not-needed {} 2026-04-14 16:10:06.237378 2026-04-14 16:10:06.237378 \N \N agent-new \N \N -361 Albrechtstraße NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.30212 2026-04-14 16:10:06.30212 \N \N agent-new \N \N -362 Am Rudolfplatz (Frauenunterkunft) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.312986 2026-04-14 16:10:06.312986 \N \N agent-new \N \N -363 Askanierring (GU3) \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.333086 2026-04-14 16:10:06.333086 \N \N agent-new \N \N -364 Bülowstraße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.35539 2026-04-14 16:10:06.35539 \N \N agent-new \N \N -365 Eislebener Straße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.388175 2026-04-14 16:10:06.388175 \N \N agent-new \N \N -366 Glockenturmstraße (Hotel Alecsa) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.422586 2026-04-14 16:10:06.422586 \N \N agent-new \N \N -367 Hohenzollerndamm Albegro City (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.491199 2026-04-14 16:10:06.491199 \N \N agent-new \N \N -368 Kalischer Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.543679 2026-04-14 16:10:06.543679 \N \N agent-new \N \N -369 Knesebeckstraße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.576514 2026-04-14 16:10:06.576514 \N \N agent-new \N \N -370 Luckenwalder Straße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.617703 2026-04-14 16:10:06.617703 \N \N agent-new \N \N -371 Mariendorfer Weg (Sunpark) \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.660813 2026-04-14 16:10:06.660813 \N \N agent-new \N \N -373 Rudolstädter Straße (Hotel) NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.744528 2026-04-14 16:10:06.744528 \N \N agent-new \N \N -376 Skutaristraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.8073 2026-04-14 16:10:06.8073 \N \N agent-new \N \N -377 Treskowstraße 14 AE AE \N agent-unknown agent-not-needed {} 2026-04-14 16:10:06.831289 2026-04-14 16:10:06.831289 \N \N agent-new \N \N -378 Hotel Plaza Inn (Sömmeringstraße) NU \N agent-high agent-not-needed {} 2026-04-14 16:10:06.908574 2026-04-14 16:10:06.908574 \N \N agent-new \N \N -379 Storkower Str. 101A \N \N agent-low agent-not-needed {} 2026-04-14 16:10:07.299496 2026-04-14 16:10:07.299496 \N \N agent-new \N \N -380 Rudowerstr. GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:07.372032 2026-04-14 16:10:07.372032 \N \N agent-new \N \N -381 Buckower Felder GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:07.39921 2026-04-14 16:10:07.39921 \N \N agent-new \N \N -382 DDA Destiny Diversity Academy GmbH multiple-social-support www.ddacademy.de agent-unknown agent-not-needed {consultation,welfare,tutoring,childcare,childcare,tandem,youth} 2026-04-14 16:10:07.434975 2026-04-14 16:10:07.434975 \N \N agent-new \N \N -383 Mistechko Berlin multiple-social-support kulturschafft.de agent-unknown agent-not-needed {tutoring,welfare,childcare,tandem,voluntary-support} 2026-04-14 16:10:07.467545 2026-04-14 16:10:07.467545 \N \N agent-new \N \N -384 STK 118 GmbH multiple-social-support www.stk118.de agent-unknown agent-not-needed {tutoring,voluntary-support,tandem,voluntary-support} 2026-04-14 16:10:07.501407 2026-04-14 16:10:07.501407 \N \N agent-new \N \N -385 KulturLeben Berlin - Schlüssel zur Kultur e.V. multiple-social-support https://kulturleben-berlin.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:07.534894 2026-04-14 16:10:07.534894 \N \N agent-new \N \N -386 Bundesverband russischsprachiger Eltern e.V. (BVRE) multiple-social-support www.bvre.de agent-unknown agent-not-needed {tutoring,tutoring,welfare,tandem,childcare,tandem,voluntary-support,youth} 2026-04-14 16:10:07.563538 2026-04-14 16:10:07.563538 \N \N agent-new \N \N -387 Stadteilmütter - Bethania Diakonie multiple-social-support https://bethania.de/stadtteilmuetter-in-mitte agent-unknown agent-not-needed {consultation,tandem,welfare} 2026-04-14 16:10:07.5968 2026-04-14 16:10:07.5968 \N \N agent-new \N \N -388 Kieztandem multiple-social-support \N agent-unknown agent-not-needed {welfare,childcare,voluntary-support,voluntary-support,sport,voluntary-support,youth} 2026-04-14 16:10:07.631312 2026-04-14 16:10:07.631312 \N \N agent-new \N \N -389 BUNT Stiftung multiple-social-support https://www.bunt-berlin.de/ agent-unknown agent-not-needed {tutoring,tutoring} 2026-04-14 16:10:07.672064 2026-04-14 16:10:07.672064 \N \N agent-new \N \N -390 MachBar - Schildkröte GmbH multiple-social-support https://www.schildkroete-berlin.de/angebote/machbar/ agent-unknown agent-not-needed {consultation,tandem} 2026-04-14 16:10:07.704096 2026-04-14 16:10:07.704096 \N \N agent-new \N \N -391 TIO e.V. — Treff-und Informationsort für Migrantinnen multiple-social-support www.tio-berlin.de agent-unknown agent-not-needed {consultation,tutoring,tandem,voluntary-support,tutoring,welfare,youth} 2026-04-14 16:10:07.734527 2026-04-14 16:10:07.734527 \N \N agent-new \N \N -392 agens Arbeitsmarktservice gGmbH multiple-social-support www.agens-berlin.de agent-unknown agent-not-needed {consultation,tutoring,job-coaching,voluntary-support} 2026-04-14 16:10:07.76243 2026-04-14 16:10:07.76243 \N \N agent-new \N \N -393 Sternenfischer Freiwilligenzentrum Treptow-Köpenick multiple-social-support www.sternenfischer.org agent-unknown agent-not-needed {voluntary-support} 2026-04-14 16:10:07.792543 2026-04-14 16:10:07.792543 \N \N agent-new \N \N -394 Internationaler Bund (IB) Berlin-Brandenburg gGmbH multiple-social-support www.ib-berlin.de agent-unknown agent-not-needed {tutoring,tutoring,welfare,childcare,childcare,voluntary-support,tandem,voluntary-support,youth} 2026-04-14 16:10:07.825404 2026-04-14 16:10:07.825404 \N \N agent-new \N \N -395 Gemeinsam für eine bessere Zukunft e.V. multiple-social-support www.gbz-germany.org agent-unknown agent-not-needed {tutoring,voluntary-support,sport,welfare} 2026-04-14 16:10:07.854893 2026-04-14 16:10:07.854893 \N \N agent-new \N \N -396 Etehad e.V. multiple-social-support https://etehadberlin.de agent-unknown agent-not-needed {tutoring,welfare,tutoring,childcare,tandem,voluntary-support,voluntary-support,sport} 2026-04-14 16:10:07.885445 2026-04-14 16:10:07.885445 \N \N agent-new \N \N -397 IPSO multiple-social-support https://ipsocontext.org/ agent-unknown agent-not-needed {consultation,tutoring} 2026-04-14 16:10:07.913974 2026-04-14 16:10:07.913974 \N \N agent-new \N \N -398 Vorspiel — Queerer Sportverein Berlin e.V. multiple-social-support https://www.vorspiel-berlin.de/# agent-unknown agent-not-needed {consultation,sport} 2026-04-14 16:10:07.941978 2026-04-14 16:10:07.941978 \N \N agent-new \N \N -399 ARTivisten e.V. multiple-social-support www.artivisten.org agent-unknown agent-not-needed {tutoring,welfare,tandem} 2026-04-14 16:10:07.972943 2026-04-14 16:10:07.972943 \N \N agent-new \N \N -400 BBK-Linde (Bildung-Beratung-Kultur) multiple-social-support www.salamkulturclub.de//aktuelles/ agent-unknown agent-not-needed {tutoring,refugee-accommodation,consultation,tandem,voluntary-support,welfare,voluntary-support} 2026-04-14 16:10:08.005711 2026-04-14 16:10:08.005711 \N \N agent-new \N \N -401 BENN Mierendorffinsel multiple-social-support www.benn-mierendorffinsel.de agent-unknown agent-not-needed {tandem,welfare,voluntary-support,voluntary-support} 2026-04-14 16:10:08.041792 2026-04-14 16:10:08.041792 \N \N agent-new \N \N -402 Offene Tür Für Menschen Aller Welt e.V. multiple-social-support www.offenetuer.net agent-unknown agent-not-needed {welfare,tandem} 2026-04-14 16:10:08.15337 2026-04-14 16:10:08.15337 \N \N agent-new \N \N -403 Wir Gestalten e.V. multiple-social-support https://www.wirgestaltenev.de/ agent-unknown agent-not-needed {consultation,tandem,childcare,tutoring,youth} 2026-04-14 16:10:08.177965 2026-04-14 16:10:08.177965 \N \N agent-new \N \N -404 AWO Kreisverband Berlin Spree-Wuhle e.V. multiple-social-support www.awo-spree-wuhle.de agent-unknown agent-not-needed {tutoring,childcare} 2026-04-14 16:10:08.209872 2026-04-14 16:10:08.209872 \N \N agent-new \N \N -405 Psychosozialen Verbundes (PSV) Treptow e.V. multiple-social-support www.psv-treptow.de agent-unknown agent-not-needed {welfare,welfare,tutoring,voluntary-support} 2026-04-14 16:10:08.244981 2026-04-14 16:10:08.244981 \N \N agent-new \N \N -406 Berliner Beratungsnetz für Zugewanderte (BfZ) \N www.beratungsnetz-migration.de agent-unknown agent-not-needed {consultation,tutoring,tandem,voluntary-support,voluntary-support} 2026-04-14 16:10:08.270492 2026-04-14 16:10:08.270492 \N \N agent-new \N \N -407 Zukunft Memorial multiple-social-support https://zukunft-memorial.org/ agent-unknown agent-not-needed {welfare,tutoring,tandem,youth} 2026-04-14 16:10:08.322187 2026-04-14 16:10:08.322187 \N \N agent-new \N \N -408 Clavis multiple-social-support www.clavis-schule.de agent-unknown agent-not-needed {} 2026-04-14 16:10:08.382098 2026-04-14 16:10:08.382098 \N \N agent-new \N \N -409 Warschauer Platz AE \N agent-low agent-not-needed {} 2026-04-14 16:10:08.412235 2026-04-14 16:10:08.412235 \N \N agent-new \N \N -410 Riwwel gUG multiple-social-support riwwel.eu agent-unknown agent-not-needed {welfare,tutoring,voluntary-support,tandem} 2026-04-14 16:10:08.440928 2026-04-14 16:10:08.440928 \N \N agent-new \N \N -411 Get Smart Akademie  multiple-social-support www.getsmart-gmbh.de agent-unknown agent-not-needed {tutoring,job-coaching} 2026-04-14 16:10:08.465895 2026-04-14 16:10:08.465895 \N \N agent-new \N \N -412 Perspektive Ausbildung multiple-social-support https://tueroeffner-ev.de/aktuelles/perspektive-ausbildung/ agent-unknown agent-not-needed {tutoring,job-coaching} 2026-04-14 16:10:08.498207 2026-04-14 16:10:08.498207 \N \N agent-new \N \N -413 Inpaed multiple-social-support www.inpaed-berlin.de agent-unknown agent-not-needed {tutoring,job-coaching,voluntary-support,welfare,youth} 2026-04-14 16:10:08.526897 2026-04-14 16:10:08.526897 \N \N agent-new \N \N -414 Sonnenallee \N \N agent-high agent-not-needed {} 2026-04-14 16:10:08.557184 2026-04-14 16:10:08.557184 \N \N agent-new \N \N -415 Wohngruppe Clayallee NU \N agent-high agent-not-needed {} 2026-04-14 16:10:08.618471 2026-04-14 16:10:08.618471 \N \N agent-new \N \N -416 Friederikestr. NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.646148 2026-04-14 16:10:08.646148 \N \N agent-new \N \N -417 Heerstraße AE \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.71188 2026-04-14 16:10:08.71188 \N \N agent-new \N \N -418 Rüsternallee \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.777286 2026-04-14 16:10:08.777286 \N \N agent-new \N \N -419 Potsdamerstraße 184 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.807953 2026-04-14 16:10:08.807953 \N \N agent-new \N \N -420 WohnContainerDorf Grünauer Straße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.8327 2026-04-14 16:10:08.8327 \N \N agent-new \N \N -421 Diesterwegstraße \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.868742 2026-04-14 16:10:08.868742 \N \N agent-new \N \N -422 Kirchstraße GU3 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.890437 2026-04-14 16:10:08.890437 \N \N agent-new \N \N -423 unknown multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:08.924093 2026-04-14 16:10:08.924093 \N \N agent-new \N \N -425 Kotti mobil multiple-social-support https://kotti-berlin.de/kotti-mobil/ agent-unknown agent-not-needed {tandem,consultation,job-coaching,welfare} 2026-04-14 16:10:08.946885 2026-04-14 16:10:08.946885 \N \N agent-new \N \N -426 KulturNest e.V. aus Berlin multiple-social-support www.kulturnest.org agent-unknown agent-not-needed {tutoring,tandem} 2026-04-14 16:10:08.980781 2026-04-14 16:10:08.980781 \N \N agent-new \N \N -427 Prolisok multiple-social-support https://cccc.charite.de/metas/person/person/address_detail/prolisok_selbsthilfegruppe_gesundheit_und_migration agent-unknown agent-not-needed {welfare,voluntary-support} 2026-04-14 16:10:09.009764 2026-04-14 16:10:09.009764 \N \N agent-new \N \N -428 Handbook Germany multiple-social-support https://handbookgermany.de/ agent-unknown agent-not-needed {tandem,voluntary-support,voluntary-support} 2026-04-14 16:10:09.047694 2026-04-14 16:10:09.047694 \N \N agent-new \N \N -429 Soziale Dienstleistungen GmbH multiple-social-support \N agent-unknown agent-not-needed {voluntary-support,voluntary-support} 2026-04-14 16:10:09.075124 2026-04-14 16:10:09.075124 \N \N agent-new \N \N -430 flotte multiple-social-support www.flotte-berlin.de agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:09.103466 2026-04-14 16:10:09.103466 \N \N agent-new \N \N -431 House of Resources Berlin multiple-social-support WWW.HOUSE-OF-RESOURCES.BERLIN agent-unknown agent-not-needed {tandem} 2026-04-14 16:10:09.137098 2026-04-14 16:10:09.137098 \N \N agent-new \N \N -432 Falkenberger Str. \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:09.168348 2026-04-14 16:10:09.168348 \N \N agent-new \N \N -433 fair mieten fair wohnen multiple-social-support https://fairmieten-fairwohnen.de/kontakt/ agent-unknown agent-not-needed {tandem,voluntary-support,voluntary-support,tutoring} 2026-04-14 16:10:09.197776 2026-04-14 16:10:09.197776 \N \N agent-new \N \N -434 GIZ multiple-social-support https://giz.berlin/projects/wfr.htm agent-unknown agent-not-needed {consultation,job-coaching} 2026-04-14 16:10:09.231796 2026-04-14 16:10:09.231796 \N \N agent-new \N \N -435 Music for Identity multiple-social-support https://spore-initiative.org/en/ agent-unknown agent-not-needed {tutoring,voluntary-support,tandem} 2026-04-14 16:10:09.262156 2026-04-14 16:10:09.262156 \N \N agent-new \N \N -436 ADNB multiple-social-support https://www.adnb.de/de agent-unknown agent-not-needed {consultation,voluntary-support,voluntary-support} 2026-04-14 16:10:09.297582 2026-04-14 16:10:09.297582 \N \N agent-new \N \N -437 I-report multiple-social-support www.claim-allianz.de agent-unknown agent-not-needed {voluntary-support,voluntary-support} 2026-04-14 16:10:09.331455 2026-04-14 16:10:09.331455 \N \N agent-new \N \N -438 ADAS multiple-social-support https://adas-berlin.de/vorfall-melden/ agent-unknown agent-not-needed {voluntary-support,voluntary-support} 2026-04-14 16:10:09.362066 2026-04-14 16:10:09.362066 \N \N agent-new \N \N -439 Familien Büro multiple-social-support www.familienbuero-lichtenberg.de agent-unknown agent-not-needed {consultation,tutoring,childcare,childcare} 2026-04-14 16:10:09.391992 2026-04-14 16:10:09.391992 \N \N agent-new \N \N -440 MaMis en Movimiento e.V. multiple-social-support www.mamisenmovimiento.de agent-unknown agent-not-needed {tutoring,voluntary-support,welfare} 2026-04-14 16:10:09.425231 2026-04-14 16:10:09.425231 \N \N agent-new \N \N -441 Heerstraße 343 \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:09.45063 2026-04-14 16:10:09.45063 \N \N agent-new \N \N -442 Volkssolidarität Berlin multiple-social-support https://volkssolidaritaet-berlin.de/uber-uns/fakten-werte-positionen/ agent-unknown agent-not-needed {welfare,welfare,tandem,voluntary-support} 2026-04-14 16:10:09.470321 2026-04-14 16:10:09.470321 \N \N agent-new \N \N -443 Kirchengemeinde Staaken multiple-social-support https://www.staaken-evangelisch.de/mitmachen agent-unknown agent-not-needed {welfare,refugee-accommodation,welfare,tandem,voluntary-support} 2026-04-14 16:10:09.503057 2026-04-14 16:10:09.503057 \N \N agent-new \N \N -444 Vista Berlin multiple-social-support https://vistaberlin.de/ agent-unknown agent-not-needed {welfare,consultation} 2026-04-14 16:10:09.540714 2026-04-14 16:10:09.540714 \N \N agent-new \N \N -445 Kungerkiezinitiative e.V. multiple-social-support https://kungerkiez.de/ agent-unknown agent-not-needed {tutoring,welfare,tandem,tandem,youth} 2026-04-14 16:10:09.569511 2026-04-14 16:10:09.569511 \N \N agent-new \N \N -446 KIEZKLUB Allende e.V. multiple-social-support https://www.kiezklub-allende-ev.de/ agent-unknown agent-not-needed {welfare,tandem,welfare} 2026-04-14 16:10:09.598471 2026-04-14 16:10:09.598471 \N \N agent-new \N \N -447 Bezirksamt Mitte (Ehrenamtsbüro) multiple-social-support https://www.berlin.de/ba-mitte/politik-und-verwaltung/aemter/amt-fuer-soziales/ehrenamtsbuero/ agent-unknown agent-not-needed {welfare,welfare,tandem} 2026-04-14 16:10:09.628702 2026-04-14 16:10:09.628702 \N \N agent-new \N \N -448 Mehr Generation House multiple-social-support https://www.mehrgenerationenhaeuser.de/ agent-unknown agent-not-needed {welfare} 2026-04-14 16:10:09.662354 2026-04-14 16:10:09.662354 \N \N agent-new \N \N -449 Community Empowerment multiple-social-support community-empowerment.de agent-unknown agent-not-needed {welfare,consultation,voluntary-support,consultation} 2026-04-14 16:10:09.692588 2026-04-14 16:10:09.692588 \N \N agent-new \N \N -450 VNN Bundesverband Nachhilfe- und Nachmittagsschulen e. V. multiple-social-support https://nachhilfeschulen.org/ agent-unknown agent-not-needed {tutoring,childcare,tandem} 2026-04-14 16:10:09.71462 2026-04-14 16:10:09.71462 \N \N agent-new \N \N -451 Haus der Statistik multiple-social-support https://hausderstatistik.org/ agent-unknown agent-not-needed {tutoring,welfare,tutoring} 2026-04-14 16:10:09.742309 2026-04-14 16:10:09.742309 \N \N agent-new \N \N -452 moment mal e.V. multiple-social-support https://www.moment-mal.org/ agent-unknown agent-not-needed {childcare,tutoring,sport} 2026-04-14 16:10:09.765488 2026-04-14 16:10:09.765488 \N \N agent-new \N \N -453 Kultur Schaft multiple-social-support https://kulturschafft.de agent-unknown agent-not-needed {welfare,welfare} 2026-04-14 16:10:09.793082 2026-04-14 16:10:09.793082 \N \N agent-new \N \N -454 IQ - Netzwerk multiple-social-support https://netzwerk-iq.de/ agent-unknown agent-not-needed {job-coaching,tandem} 2026-04-14 16:10:09.822613 2026-04-14 16:10:09.822613 \N \N agent-new \N \N -455 PANDA PLATFORMA multiple-social-support https://panda-platforma.berlin/ agent-unknown agent-not-needed {tutoring,welfare} 2026-04-14 16:10:09.841119 2026-04-14 16:10:09.841119 \N \N agent-new \N \N -456 GESOBAU multiple-social-support https://www.gesobau.de/ueber-uns/ agent-unknown agent-not-needed {tandem,welfare} 2026-04-14 16:10:09.870375 2026-04-14 16:10:09.870375 \N \N agent-new \N \N -457 KWB multiple-social-support https://www.kompetenz-wasser.de/en agent-unknown agent-not-needed {tandem} 2026-04-14 16:10:09.898369 2026-04-14 16:10:09.898369 \N \N agent-new \N \N -458 KJHV multiple-social-support https://kjhv-bb.de/ agent-unknown agent-not-needed {consultation,tandem,youth} 2026-04-14 16:10:09.927101 2026-04-14 16:10:09.927101 \N \N agent-new \N \N -459 BEMA - Berlin multiple-social-support https://bema.berlin/ agent-unknown agent-not-needed {tandem,voluntary-support,consultation} 2026-04-14 16:10:09.955448 2026-04-14 16:10:09.955448 \N \N agent-new \N \N -460 Ringsum begleiten multiple-social-support https://thessa-ev.de/ringsum-begleiten agent-unknown agent-not-needed {consultation,childcare} 2026-04-14 16:10:09.973162 2026-04-14 16:10:09.973162 \N \N agent-new \N \N -461 check up multiple-social-support http://www.checkup-info.de/ agent-unknown agent-not-needed {tutoring,youth} 2026-04-14 16:10:10.003546 2026-04-14 16:10:10.003546 \N \N agent-new \N \N -462 Hürdenspringer multiple-social-support https://www.huerdenspringer.unionhilfswerk.de/ agent-unknown agent-not-needed {tutoring,voluntary-support,youth} 2026-04-14 16:10:10.049347 2026-04-14 16:10:10.049347 \N \N agent-new \N \N -463 Stiftung Stadtkultur multiple-social-support https://www.stiftung-stadtkultur.de/ agent-unknown agent-not-needed {welfare,tutoring,tandem} 2026-04-14 16:10:10.086921 2026-04-14 16:10:10.086921 \N \N agent-new \N \N -464 STK118 multiple-social-support https://www.stk118.de/ agent-unknown agent-not-needed {welfare,welfare} 2026-04-14 16:10:10.104661 2026-04-14 16:10:10.104661 \N \N agent-new \N \N -465 Prisod multiple-social-support https://www.prisod.de/prisod/ agent-unknown agent-not-needed {tandem,voluntary-support,welfare} 2026-04-14 16:10:10.128241 2026-04-14 16:10:10.128241 \N \N agent-new \N \N -466 Unionhilfswerk multiple-social-support https://www.unionhilfswerk.de/ agent-unknown agent-not-needed {welfare,voluntary-support} 2026-04-14 16:10:10.156615 2026-04-14 16:10:10.156615 \N \N agent-new \N \N -467 Amnesty International multiple-social-support https://www.amnesty.org/en/ agent-unknown agent-not-needed {tandem,voluntary-support} 2026-04-14 16:10:10.185611 2026-04-14 16:10:10.185611 \N \N agent-new \N \N -468 Deutsches Kinderhilfswerk multiple-social-support https://www.dkhw.de/ agent-unknown agent-not-needed {childcare,welfare} 2026-04-14 16:10:10.203519 2026-04-14 16:10:10.203519 \N \N agent-new \N \N -469 Children of Gutenberg multiple-social-support https://childrenofgutenberg.de/ agent-unknown agent-not-needed {tutoring} 2026-04-14 16:10:10.235277 2026-04-14 16:10:10.235277 \N \N agent-new \N \N -470 Beratung zu Bildung & Beruf multiple-social-support www.kos-qualitaet.de agent-unknown agent-not-needed {tutoring,job-coaching,voluntary-support} 2026-04-14 16:10:10.264955 2026-04-14 16:10:10.264955 \N \N agent-new \N \N -471 P12 multiple-social-support https://outreach.berlin/p12/ agent-unknown agent-not-needed {tandem,consultation,tutoring,youth} 2026-04-14 16:10:10.296783 2026-04-14 16:10:10.296783 \N \N agent-new \N \N -472 Interaxion multiple-social-support https://www.interaxion-tk.de/ agent-unknown agent-not-needed {voluntary-support,voluntary-support,welfare,refugee-accommodation} 2026-04-14 16:10:10.314927 2026-04-14 16:10:10.314927 \N \N agent-new \N \N -473 Sylvestar e.V. multiple-social-support https://www.sylvester-ev.de/ agent-unknown agent-not-needed {childcare,childcare} 2026-04-14 16:10:10.346882 2026-04-14 16:10:10.346882 \N \N agent-new \N \N -474 Türöffner e.V. multiple-social-support https://tueroeffner-ev.de/ agent-unknown agent-not-needed {job-coaching,voluntary-support} 2026-04-14 16:10:10.375767 2026-04-14 16:10:10.375767 \N \N agent-new \N \N -475 Treptow e.V. multiple-social-support https://www.psv-treptow.de/startseite-psv-treptow.html agent-unknown agent-not-needed {tutoring,welfare} 2026-04-14 16:10:10.403495 2026-04-14 16:10:10.403495 \N \N agent-new \N \N -476 HEILHAUS-STIFTUNG URSA PAUL multiple-social-support https://www.heilhaus.org/ agent-unknown agent-not-needed {welfare,childcare,welfare} 2026-04-14 16:10:10.4212 2026-04-14 16:10:10.4212 \N \N agent-new \N \N -478 Heerstr. 110 (Hotel Carat) AE \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.443736 2026-04-14 16:10:10.443736 \N \N agent-new \N \N -479 Soziales Berlin \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.461655 2026-04-14 16:10:10.461655 \N \N agent-new \N \N -480 Stützrad multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.49352 2026-04-14 16:10:10.49352 \N \N agent-new \N \N -481 Stadtteilmütter Treptow-Köpenick multiple-social-support \N agent-high agent-not-needed {} 2026-04-14 16:10:10.527479 2026-04-14 16:10:10.527479 \N \N agent-new \N \N -482 BZSL multiple-social-support \N agent-high agent-not-needed {} 2026-04-14 16:10:10.586499 2026-04-14 16:10:10.586499 \N \N agent-new \N \N -483 Primo-Levi-Gymnasium \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.612338 2026-04-14 16:10:10.612338 \N \N agent-new \N \N -484 reinhold-burger schule \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.638257 2026-04-14 16:10:10.638257 \N \N agent-new \N \N -485 sibuz \N \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.665037 2026-04-14 16:10:10.665037 \N \N agent-new \N \N -486 RAC or Consultation center multiple-social-support \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.674392 2026-04-14 16:10:10.674392 \N \N agent-new \N \N -487 Kronprinzendamm NU \N agent-unknown agent-not-needed {} 2026-04-14 16:10:10.795453 2026-04-14 16:10:10.795453 \N \N agent-new \N \N -1 Fritz-Wildung-Straße 21 \N \N agent-unknown agent-not-needed \N 2026-04-14 16:09:52.577512 2026-04-20 13:37:23.778294 \N 9 agent-new \N \N -488 Orphanage For Opportunities \N \N agent-unknown agent-not-needed \N 2026-04-21 12:59:39.104073 2026-04-21 12:59:39.104073 \N \N agent-new \N \N -8 Buschkrugallee (Hotel Centro) NU \N agent-high agent-not-needed {} 2026-04-14 16:09:53.49409 2026-04-23 09:47:15.781953 \N \N agent-new \N \N -\. - - --- --- Data for Name: agent_language; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.agent_language (id, agent_id, language_id) FROM stdin; -\. - - --- --- Data for Name: agent_person; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.agent_person (id, role, agent_id, person_id) FROM stdin; -1 manager 2 4 -2 volunteer-coordinator 2 5 -3 manager 3 6 -4 volunteer-coordinator 3 7 -5 manager 4 8 -6 volunteer-coordinator 4 9 -7 manager 5 10 -8 volunteer-coordinator 5 11 -9 social-worker 5 12 -10 manager 6 13 -11 volunteer-coordinator 6 14 -12 social-worker 6 15 -13 manager 7 16 -14 volunteer-coordinator 7 17 -15 manager 8 18 -16 volunteer-coordinator 8 19 -17 manager 9 1 -18 social-worker 9 1 -19 manager 10 20 -20 volunteer-coordinator 10 21 -21 manager 11 22 -22 volunteer-coordinator 11 23 -23 manager 12 24 -24 social-worker 12 25 -25 manager 13 26 -26 volunteer-coordinator 13 27 -27 social-worker 13 28 -28 manager 14 29 -29 volunteer-coordinator 14 30 -30 other 15 31 -31 manager 16 32 -32 volunteer-coordinator 16 33 -33 manager 17 34 -34 volunteer-coordinator 17 35 -35 manager 18 36 -36 volunteer-coordinator 18 37 -37 social-worker 18 38 -38 manager 19 39 -39 volunteer-coordinator 19 40 -40 manager 20 41 -41 volunteer-coordinator 20 42 -42 social-worker 20 43 -43 manager 21 44 -44 volunteer-coordinator 21 45 -45 manager 22 46 -46 manager 23 47 -47 manager 24 48 -48 volunteer-coordinator 24 49 -49 manager 25 50 -50 manager 26 51 -51 volunteer-coordinator 26 52 -52 social-worker 26 53 -53 manager 27 54 -54 volunteer-coordinator 27 55 -55 manager 28 56 -56 volunteer-coordinator 28 57 -57 manager 29 58 -58 volunteer-coordinator 29 59 -59 manager 30 60 -60 volunteer-coordinator 30 61 -61 manager 31 62 -62 other 31 63 -63 manager 32 64 -64 manager 33 65 -65 volunteer-coordinator 33 66 -66 manager 34 67 -67 volunteer-coordinator 34 68 -68 manager 35 69 -69 manager 36 70 -70 volunteer-coordinator 36 71 -71 social-worker 36 72 -72 manager 37 73 -73 volunteer-coordinator 37 74 -74 manager 38 75 -75 volunteer-coordinator 38 76 -76 manager 39 77 -77 volunteer-coordinator 39 78 -78 manager 40 79 -79 manager 41 80 -80 volunteer-coordinator 41 81 -81 social-worker 41 82 -82 manager 42 83 -83 manager 43 84 -84 volunteer-coordinator 44 85 -85 manager 45 86 -86 volunteer-coordinator 45 87 -87 manager 46 88 -88 volunteer-coordinator 46 89 -89 manager 47 90 -90 volunteer-coordinator 47 91 -91 manager 48 92 -92 manager 49 93 -93 volunteer-coordinator 49 94 -94 manager 50 95 -95 volunteer-coordinator 50 96 -96 manager 51 97 -97 volunteer-coordinator 51 98 -98 manager 52 99 -99 volunteer-coordinator 52 100 -100 manager 53 101 -101 volunteer-coordinator 53 102 -102 social-worker 53 103 -103 manager 54 104 -104 manager 55 105 -105 volunteer-coordinator 55 106 -106 social-worker 55 107 -107 manager 56 108 -108 volunteer-coordinator 56 109 -109 manager 57 110 -110 volunteer-coordinator 57 111 -111 social-worker 57 112 -112 manager 58 113 -113 volunteer-coordinator 58 114 -114 other 59 115 -115 other 59 116 -116 manager 60 117 -117 manager 61 118 -118 manager 62 119 -119 volunteer-coordinator 62 120 -120 manager 63 121 -121 volunteer-coordinator 63 122 -122 manager 64 123 -123 manager 65 124 -124 volunteer-coordinator 65 125 -125 manager 67 126 -126 volunteer-coordinator 67 127 -127 manager 68 128 -128 manager 69 129 -129 other 69 130 -130 manager 71 131 -131 volunteer-coordinator 71 132 -132 social-worker 71 133 -133 manager 72 134 -134 volunteer-coordinator 72 135 -135 manager 73 136 -136 volunteer-coordinator 73 137 -137 social-worker 73 138 -138 manager 74 139 -139 manager 75 140 -140 volunteer-coordinator 75 141 -141 other 76 142 -142 manager 77 143 -143 manager 78 144 -144 volunteer-coordinator 78 145 -145 manager 79 146 -146 volunteer-coordinator 79 147 -147 manager 80 148 -148 volunteer-coordinator 80 149 -149 manager 81 150 -150 volunteer-coordinator 81 151 -151 manager 82 152 -152 volunteer-coordinator 82 153 -153 manager 83 154 -154 volunteer-coordinator 83 155 -155 manager 84 156 -156 volunteer-coordinator 84 157 -157 social-worker 84 158 -158 manager 85 159 -159 volunteer-coordinator 85 160 -160 manager 86 161 -161 manager 87 162 -162 volunteer-coordinator 87 163 -163 manager 88 164 -164 volunteer-coordinator 88 165 -165 social-worker 88 166 -166 manager 89 167 -167 manager 91 168 -168 volunteer-coordinator 91 169 -169 manager 92 170 -170 volunteer-coordinator 92 171 -171 manager 93 172 -172 volunteer-coordinator 93 173 -173 manager 94 174 -174 volunteer-coordinator 94 169 -175 social-worker 94 175 -176 manager 95 176 -177 volunteer-coordinator 95 177 -178 manager 96 178 -179 manager 97 179 -180 volunteer-coordinator 97 180 -181 other 98 1 -182 other 98 181 -183 other 99 1 -184 other 99 182 -185 other 100 183 -186 other 101 184 -187 other 102 185 -188 other 103 1 -189 other 103 186 -190 other 104 187 -191 other 105 1 -192 other 105 188 -193 other 106 1 -194 other 106 189 -195 other 107 1 -196 other 107 190 -197 other 108 1 -198 other 108 191 -199 other 109 1 -200 other 109 192 -201 other 110 193 -202 other 112 194 -203 other 113 1 -204 other 113 195 -205 other 114 1 -206 other 114 196 -207 other 115 1 -208 other 115 197 -209 other 116 198 -210 other 117 1 -211 other 117 199 -212 other 118 1 -213 other 118 200 -214 other 120 1 -215 other 120 201 -216 other 121 1 -217 other 121 202 -218 other 122 1 -219 other 122 203 -220 other 123 1 -221 other 123 204 -222 other 124 1 -223 other 124 205 -224 other 125 1 -225 other 125 206 -226 other 126 1 -227 other 126 207 -228 other 127 1 -229 other 127 208 -230 other 128 1 -231 other 128 209 -232 other 128 210 -233 other 129 1 -234 other 129 211 -235 other 130 212 -236 other 131 1 -237 other 131 213 -238 other 132 1 -239 other 132 214 -240 other 133 1 -241 other 133 215 -242 other 134 216 -243 other 135 1 -244 other 135 217 -245 other 136 1 -246 other 136 218 -247 other 137 1 -248 other 137 219 -249 other 138 1 -250 other 138 220 -251 other 139 1 -252 other 139 221 -253 other 140 1 -254 other 140 222 -255 other 141 1 -256 other 141 223 -257 other 142 1 -258 other 142 224 -259 other 143 225 -260 other 144 1 -261 other 144 226 -262 other 145 1 -263 other 145 227 -264 other 146 1 -265 other 146 228 -266 other 147 1 -267 other 147 229 -268 other 148 1 -269 other 148 230 -270 other 149 1 -271 other 149 231 -272 other 150 1 -273 other 150 232 -274 other 151 233 -275 other 152 1 -276 other 152 234 -277 other 153 1 -278 other 153 235 -279 other 154 236 -280 other 155 1 -281 other 155 237 -282 other 156 1 -283 other 156 238 -284 other 157 239 -285 other 158 240 -286 other 159 1 -287 other 159 241 -288 other 160 242 -289 other 161 1 -290 other 161 243 -291 other 162 1 -292 other 162 244 -293 other 163 1 -294 other 163 245 -295 other 164 246 -296 other 165 1 -297 other 165 247 -298 other 166 1 -299 other 166 248 -300 other 167 249 -301 other 168 1 -302 other 168 250 -303 other 169 1 -304 other 169 251 -305 other 170 252 -306 other 171 1 -307 other 171 253 -308 other 172 1 -309 other 172 254 -310 other 173 255 -311 other 174 256 -312 other 175 257 -313 other 176 258 -314 other 177 1 -315 other 177 259 -316 other 178 260 -317 other 179 1 -318 other 179 261 -319 other 180 262 -320 other 181 263 -321 other 182 1 -322 other 182 264 -323 other 183 265 -324 other 184 1 -325 other 184 266 -326 other 185 1 -327 other 185 267 -328 other 186 1 -329 other 186 268 -330 other 187 1 -331 other 187 269 -332 other 188 1 -333 other 188 270 -334 other 189 1 -335 other 189 271 -336 other 190 1 -337 other 190 272 -338 other 191 1 -339 other 191 273 -340 other 192 1 -341 other 192 274 -342 other 193 1 -343 other 193 275 -344 other 194 276 -345 other 195 1 -346 other 195 277 -347 other 196 1 -348 other 196 278 -349 other 197 1 -350 other 197 279 -351 other 198 1 -352 other 198 280 -353 other 199 1 -354 other 199 281 -355 other 200 1 -356 other 200 282 -357 other 201 1 -358 other 201 283 -359 other 202 1 -360 other 202 284 -361 other 203 1 -362 other 203 285 -363 other 204 286 -364 other 205 1 -365 other 205 287 -366 other 206 1 -367 other 206 288 -368 other 207 1 -369 other 207 289 -370 other 208 290 -371 other 209 1 -372 other 209 291 -373 other 210 1 -374 other 210 292 -375 other 211 1 -376 other 211 293 -377 other 212 1 -378 other 212 294 -379 other 213 1 -380 other 213 295 -381 other 214 1 -382 other 214 296 -383 other 215 297 -384 other 216 1 -385 other 216 298 -386 other 217 1 -387 other 217 299 -388 other 218 1 -389 other 218 300 -390 other 219 1 -391 other 219 301 -392 other 220 1 -393 other 220 302 -394 other 221 1 -395 other 221 303 -396 other 222 1 -397 other 222 304 -398 other 223 305 -399 other 224 1 -400 other 224 306 -401 other 225 1 -402 other 225 307 -403 other 226 1 -404 other 226 308 -405 other 227 1 -406 other 227 309 -407 other 228 310 -408 other 229 1 -409 other 229 311 -410 other 230 312 -411 other 231 1 -412 other 231 313 -413 other 232 314 -414 other 233 1 -415 other 233 315 -416 other 234 1 -417 other 234 316 -418 other 235 1 -419 other 235 317 -420 other 236 1 -421 other 236 318 -422 other 237 319 -423 other 238 320 -424 other 239 321 -425 other 240 1 -426 other 240 322 -427 other 241 323 -428 other 242 1 -429 other 242 324 -430 other 243 1 -431 other 243 325 -432 other 244 326 -433 other 245 327 -434 other 246 1 -435 other 246 328 -436 other 247 329 -437 other 248 330 -438 other 249 1 -439 other 249 331 -440 other 250 332 -441 other 251 333 -442 other 252 334 -443 other 253 335 -444 other 254 336 -445 other 255 337 -446 other 256 338 -447 other 257 339 -448 other 258 340 -449 other 259 341 -450 other 260 342 -451 other 261 343 -452 other 262 344 -453 other 263 345 -454 other 264 346 -455 other 265 347 -456 other 266 348 -457 other 267 349 -458 other 268 350 -459 other 269 351 -460 other 270 352 -461 other 271 353 -462 other 272 1 -463 other 272 354 -464 other 273 1 -465 other 273 355 -466 other 274 356 -467 other 275 1 -468 other 275 357 -469 other 276 1 -470 other 276 358 -471 other 277 1 -472 other 277 359 -473 other 278 1 -474 other 278 360 -475 other 279 1 -476 other 279 361 -477 other 280 1 -478 other 280 362 -479 other 281 1 -480 other 281 363 -481 other 282 1 -482 other 282 364 -483 other 283 1 -484 other 283 211 -485 other 284 1 -486 other 284 365 -487 other 285 1 -488 other 285 366 -489 other 286 1 -490 other 286 367 -491 other 287 1 -492 other 287 368 -493 other 288 1 -494 other 288 369 -495 other 289 1 -496 other 289 370 -497 other 290 1 -498 other 290 371 -499 other 291 1 -500 other 291 372 -501 other 292 1 -502 other 292 373 -503 other 292 374 -504 other 293 1 -505 other 293 375 -506 other 294 1 -507 other 294 376 -508 other 295 377 -509 other 296 1 -510 other 296 378 -511 other 297 379 -512 other 298 380 -513 other 299 381 -514 other 300 382 -515 other 301 383 -516 other 302 1 -517 other 302 384 -518 other 303 385 -519 other 304 1 -520 other 304 386 -521 other 305 1 -522 other 305 387 -523 other 306 1 -524 other 306 388 -525 other 307 1 -526 other 307 389 -527 other 309 1 -528 other 309 390 -529 other 311 391 -530 manager 320 392 -531 volunteer-coordinator 320 393 -532 other 321 1 -533 other 321 394 -534 other 322 395 -535 other 324 396 -536 other 325 397 -537 other 326 398 -538 other 327 399 -539 other 328 400 -540 other 329 401 -541 other 330 402 -542 other 331 403 -543 other 332 1 -544 other 332 404 -545 manager 336 405 -546 manager 337 406 -547 other 338 1 -548 other 338 407 -549 manager 339 1 -550 manager 340 408 -551 other 341 1 -552 other 341 409 -553 other 342 1 -554 other 342 410 -555 other 343 1 -556 other 343 411 -557 other 344 1 -558 other 344 412 -559 other 345 1 -560 other 345 413 -561 other 346 1 -562 other 346 414 -563 other 347 415 -564 other 348 1 -565 other 348 416 -566 other 349 1 -567 other 349 417 -568 other 350 418 -569 other 352 1 -570 other 352 419 -571 other 353 420 -572 manager 355 421 -573 volunteer-coordinator 355 422 -574 other 355 1 -575 volunteer-coordinator 356 423 -576 volunteer-coordinator 356 424 -577 manager 357 425 -578 volunteer-coordinator 357 426 -579 social-worker 357 1 -580 manager 358 427 -581 manager 359 428 -582 manager 360 429 -583 other 360 1 -584 manager 362 430 -585 manager 363 431 -586 manager 364 432 -587 other 364 433 -588 manager 365 434 -589 volunteer-coordinator 365 435 -590 manager 366 436 -591 volunteer-coordinator 366 437 -592 manager 367 438 -593 volunteer-coordinator 367 439 -594 manager 368 1 -595 volunteer-coordinator 368 440 -596 manager 369 432 -597 volunteer-coordinator 369 441 -598 manager 370 442 -599 volunteer-coordinator 370 433 -600 manager 371 443 -601 volunteer-coordinator 371 444 -602 manager 372 445 -603 volunteer-coordinator 372 446 -604 social-worker 372 447 -605 manager 373 448 -606 manager 374 443 -607 manager 375 449 -608 manager 376 450 -609 manager 377 451 -610 volunteer-coordinator 377 452 -611 social-worker 377 453 -612 volunteer-coordinator 378 454 -613 social-worker 378 455 -614 manager 379 456 -615 volunteer-coordinator 379 457 -616 manager 380 458 -617 manager 381 459 -618 other 381 460 -619 other 382 1 -620 other 382 461 -621 other 383 1 -622 other 383 462 -623 other 384 1 -624 other 384 463 -625 other 385 1 -626 other 385 464 -627 other 386 1 -628 other 386 465 -629 other 387 1 -630 other 387 466 -631 other 388 1 -632 other 388 467 -633 other 389 1 -634 other 389 468 -635 other 390 1 -636 other 390 469 -637 other 391 1 -638 other 391 470 -639 other 392 1 -640 other 392 471 -641 other 393 1 -642 other 393 472 -643 other 394 1 -644 other 394 473 -645 other 395 1 -646 other 395 474 -647 other 396 1 -648 other 396 475 -649 other 397 1 -650 other 397 476 -651 other 398 1 -652 other 398 477 -653 other 399 1 -654 other 399 478 -655 other 400 1 -656 other 400 479 -657 other 401 1 -658 other 401 480 -659 other 402 481 -660 other 403 1 -661 other 403 482 -662 other 404 1 -663 other 404 483 -664 other 405 484 -665 other 406 1 -666 other 406 485 -667 other 407 486 -668 other 408 1 -669 other 408 487 -670 manager 409 488 -671 other 410 489 -672 other 411 1 -673 other 411 490 -674 other 412 1 -675 other 412 491 -676 other 413 1 -677 other 413 492 -678 manager 414 493 -679 volunteer-coordinator 414 494 -680 volunteer-coordinator 415 495 -681 manager 416 496 -682 manager 417 497 -683 volunteer-coordinator 417 498 -684 social-worker 417 499 -685 manager 418 500 -686 manager 419 501 -687 manager 420 502 -688 volunteer-coordinator 420 503 -689 manager 421 504 -690 manager 422 505 -691 other 425 1 -692 other 425 506 -693 other 426 507 -694 other 427 1 -695 other 427 508 -696 other 428 509 -697 other 429 1 -698 other 429 138 -699 other 430 1 -700 other 430 510 -701 other 431 1 -702 other 431 511 -703 manager 432 512 -704 other 433 1 -705 other 433 513 -706 other 434 1 -707 other 434 514 -708 other 435 1 -709 other 435 515 -710 other 436 1 -711 other 436 516 -712 other 437 1 -713 other 437 517 -714 other 438 1 -715 other 438 518 -716 other 439 1 -717 other 439 519 -718 other 440 520 -719 manager 441 449 -720 other 442 1 -721 other 442 521 -722 other 443 1 -723 other 443 522 -724 other 444 1 -725 other 444 523 -726 other 445 1 -727 other 445 524 -728 other 446 1 -729 other 446 525 -730 other 447 1 -731 other 447 526 -732 other 448 1 -733 other 448 527 -734 other 449 528 -735 other 450 1 -736 other 450 529 -737 other 451 530 -738 other 452 1 -739 other 452 531 -740 other 453 1 -741 other 453 532 -742 other 454 1 -743 other 455 1 -744 other 455 533 -745 other 456 1 -746 other 456 534 -747 other 457 1 -748 other 457 535 -749 other 458 1 -750 other 458 536 -751 other 459 1 -752 other 460 1 -753 other 460 537 -754 other 461 1 -755 other 461 538 -756 other 462 1 -757 other 462 539 -758 other 463 1 -759 other 464 1 -760 other 464 105 -761 other 465 1 -762 other 465 540 -763 other 466 1 -764 other 466 541 -765 other 467 1 -766 other 468 1 -767 other 468 542 -768 other 469 1 -769 other 469 543 -770 other 470 1 -771 other 470 544 -772 other 471 1 -773 other 472 1 -774 other 472 545 -775 other 473 1 -776 other 473 546 -777 other 474 1 -778 other 474 547 -779 other 475 1 -780 other 476 1 -781 volunteer-coordinator 478 437 -782 social-worker 479 548 -783 social-worker 480 549 -784 social-worker 481 550 -785 other 483 551 -786 other 484 552 -787 other 486 1 -788 volunteer-coordinator 487 553 -789 volunteer-coordinator 1 2 -\. - - --- --- Data for Name: agent_postcode; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.agent_postcode (id, agent_id, postcode_id) FROM stdin; -1 2 174 -2 3 128 -3 4 11 -4 5 121 -5 6 119 -6 7 2 -7 8 100 -8 9 138 -9 10 133 -10 11 133 -11 12 164 -12 13 149 -13 14 181 -14 15 71 -15 16 71 -16 17 107 -17 18 101 -18 19 106 -19 20 174 -20 21 190 -21 22 39 -22 23 190 -23 24 59 -24 25 58 -25 26 58 -26 27 126 -27 28 15 -28 29 17 -29 30 127 -30 31 126 -31 32 126 -32 33 129 -33 34 126 -34 35 13 -35 36 128 -36 37 114 -37 38 120 -38 39 124 -39 40 122 -40 41 118 -41 42 117 -42 43 118 -43 44 120 -44 45 27 -45 46 142 -46 47 2 -47 48 151 -48 49 26 -49 50 100 -50 51 68 -51 52 68 -52 53 95 -53 54 131 -54 55 19 -55 56 139 -56 57 18 -57 58 130 -58 59 19 -59 60 132 -60 61 133 -61 62 133 -62 63 130 -63 64 130 -64 65 148 -65 66 160 -66 67 152 -67 68 153 -68 69 170 -69 70 170 -70 71 166 -71 72 167 -72 73 170 -73 74 165 -74 75 183 -75 76 85 -76 77 85 -77 78 87 -78 79 182 -79 80 185 -80 81 88 -81 82 89 -82 83 93 -83 84 70 -84 85 74 -85 86 77 -86 87 78 -87 88 56 -88 89 113 -89 90 111 -90 91 105 -91 92 102 -92 93 102 -93 94 108 -94 95 111 -95 96 106 -96 97 107 -97 98 6 -98 99 120 -99 100 53 -100 101 117 -101 102 3 -102 103 117 -103 104 1 -104 105 45 -105 106 5 -106 107 66 -107 108 44 -108 109 57 -109 110 90 -110 111 69 -111 112 44 -112 113 1 -113 114 40 -114 115 1 -115 116 22 -116 117 47 -117 118 7 -118 119 177 -119 120 47 -120 121 58 -121 122 15 -122 123 117 -123 124 1 -124 125 153 -125 126 24 -126 127 101 -127 128 105 -128 129 105 -129 130 58 -130 131 47 -131 132 1 -132 133 61 -133 134 61 -134 135 51 -135 136 32 -136 137 145 -137 138 70 -138 139 151 -139 140 47 -140 141 58 -141 142 49 -142 143 141 -143 144 151 -144 145 42 -145 146 183 -146 147 28 -147 148 9 -148 149 66 -149 150 3 -150 151 1 -151 152 79 -152 153 50 -153 154 21 -154 155 63 -155 156 120 -156 157 49 -157 158 71 -158 159 139 -159 160 72 -160 161 40 -161 162 57 -162 163 53 -163 164 79 -164 165 18 -165 166 150 -166 167 144 -167 168 66 -168 169 41 -169 170 13 -170 171 4 -171 172 117 -172 173 120 -173 174 117 -174 175 15 -175 176 1 -176 177 1 -177 178 4 -178 179 59 -179 180 47 -180 181 28 -181 182 69 -182 183 144 -183 184 24 -184 185 66 -185 186 66 -186 187 34 -187 188 7 -188 189 56 -189 190 55 -190 191 77 -191 192 53 -192 193 144 -193 194 78 -194 195 2 -195 196 35 -196 197 27 -197 198 47 -198 199 79 -199 200 66 -200 201 64 -201 202 151 -202 203 6 -203 204 58 -204 205 52 -205 206 22 -206 207 5 -207 208 26 -208 209 78 -209 210 147 -210 211 18 -211 212 119 -212 213 81 -213 214 79 -214 215 120 -215 216 6 -216 217 39 -217 218 118 -218 219 77 -219 220 153 -220 221 7 -221 222 6 -222 223 3 -223 224 47 -224 225 131 -225 226 57 -226 227 3 -227 228 1 -228 229 43 -229 230 1 -230 231 1 -231 232 146 -232 233 30 -233 234 78 -234 235 67 -235 236 12 -236 237 1 -237 238 54 -238 239 3 -239 240 37 -240 241 53 -241 242 53 -242 243 117 -243 244 56 -244 245 174 -245 246 9 -246 247 47 -247 248 109 -248 249 168 -249 250 39 -250 251 128 -251 252 17 -252 253 126 -253 254 129 -254 255 119 -255 256 130 -256 257 119 -257 258 120 -258 259 123 -259 260 100 -260 261 133 -261 262 130 -262 263 154 -263 264 1 -264 265 148 -265 266 165 -266 267 167 -267 268 83 -268 269 75 -269 270 110 -270 271 106 -271 272 83 -272 273 87 -273 274 29 -274 275 29 -275 276 56 -276 277 56 -277 278 24 -278 279 24 -279 280 1 -280 281 1 -281 282 1 -282 283 105 -283 284 105 -284 285 51 -285 286 51 -286 287 51 -287 288 53 -288 289 170 -289 290 170 -290 291 1 -291 292 139 -292 293 58 -293 294 144 -294 295 71 -295 296 64 -296 297 83 -297 298 60 -298 299 1 -299 300 1 -300 301 6 -301 302 41 -302 303 69 -303 304 3 -304 305 120 -305 306 1 -306 307 28 -307 308 1 -308 309 183 -309 310 1 -310 311 105 -311 312 1 -312 313 1 -313 314 1 -314 315 1 -315 316 105 -316 317 1 -317 318 1 -318 319 1 -319 320 110 -320 321 65 -321 322 60 -322 323 1 -323 324 1 -324 325 1 -325 326 1 -326 327 1 -327 328 1 -328 329 1 -329 330 1 -330 331 1 -331 332 160 -332 333 126 -333 334 126 -334 335 139 -335 336 72 -336 337 73 -337 338 76 -338 339 6 -339 340 6 -340 341 144 -341 342 169 -342 343 54 -343 344 170 -344 345 47 -345 346 59 -346 347 63 -347 348 58 -348 349 24 -349 350 59 -350 351 1 -351 352 15 -352 353 148 -353 354 149 -354 355 7 -355 356 19 -356 357 127 -357 358 106 -358 359 147 -359 360 15 -360 361 81 -361 362 8 -362 363 164 -363 364 46 -364 365 49 -365 366 192 -366 367 39 -367 368 39 -368 369 32 -369 370 55 -370 371 65 -371 372 117 -372 373 39 -373 374 165 -374 375 163 -375 376 75 -376 377 116 -377 378 31 -378 379 19 -379 380 96 -380 381 95 -381 382 145 -382 383 54 -383 384 19 -384 385 101 -385 386 5 -386 387 146 -387 388 110 -388 389 65 -389 390 145 -390 391 66 -391 392 65 -392 393 110 -393 394 88 -394 395 66 -395 396 11 -396 397 44 -397 398 44 -398 399 101 -399 400 153 -400 401 31 -401 402 142 -402 403 144 -403 404 59 -404 405 101 -405 406 9 -406 407 3 -407 408 18 -408 409 1 -409 410 72 -410 411 37 -411 412 109 -412 413 71 -413 414 62 -414 415 188 -415 416 159 -416 417 192 -417 418 174 -418 419 46 -419 420 110 -420 421 18 -421 422 137 -422 425 60 -423 426 127 -424 427 105 -425 428 47 -426 429 170 -427 430 56 -428 431 7 -429 432 131 -430 433 58 -431 434 170 -432 435 65 -433 436 10 -434 437 58 -435 438 78 -436 439 127 -437 440 19 -438 441 168 -439 442 19 -440 443 168 -441 444 61 -442 445 101 -443 446 111 -444 447 144 -445 448 1 -446 449 164 -447 450 190 -448 451 5 -449 452 27 -450 453 54 -451 454 150 -452 455 21 -453 456 139 -454 457 51 -455 458 146 -456 459 70 -457 460 97 -458 461 58 -459 462 61 -460 463 13 -461 464 19 -462 465 3 -463 466 56 -464 467 69 -465 468 3 -466 469 13 -467 470 6 -468 471 58 -469 472 191 -470 473 109 -471 474 109 -472 475 101 -473 476 1 -474 478 192 -475 479 1 -476 480 1 -477 481 1 -478 484 139 -479 487 38 -\. - - --- --- Data for Name: appreciation; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.appreciation (id, title, date_due, date_delivery, created_at, updated_at, opportunity_id, volunteer_id, user_id) FROM stdin; -\. - - --- --- Data for Name: be_migrations; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.be_migrations (id, "timestamp", name) FROM stdin; -1 1763036250587 UpdateVolunteerListMv1763036250587 -2 1763636303849 AddEventEntity1763636303849 -3 1765976202270 AddCityToAddressEntity1765976202270 -4 1766003754834 AddPreferredCommToVolunteerEntity1766003754834 -5 1766352158945 ChangeVolunteerPreferredCommToArray1766352158945 -6 1767357208920 AddDocumentEntity1767357208920 -7 1767816732428 AddCommunicationEntity1767816732428 -8 1768772092135 AddAppreciationEntity1768772092135 -9 1769012055276 CatchTsJan211769012055276 -10 1769183878914 AddVolunteerReturnDate1769183878914 -11 1769606450859 SyncAndUpdateOppVolM2m1769606450859 -12 1770126767598 UpdateOppProfile1770126767598 -13 1770226586693 UpdateOppTypeEnum1770226586693 -14 1770655462205 AddAccomponyingEntity1770655462205 -15 1770713139121 AddConfigKey1770713139121 -16 1771086827549 UpdateAgentEntity1771086827549 -17 1771201168124 UpdateAgentEntity21771201168124 -18 1771505596306 UpdateAgentEntity31771505596306 -19 1771858452728 UpdateAgentEntity41771858452728 -20 1772005888557 UpdateOppProfileProfLang1772005888557 -21 1772019993181 UpdateCommentEtity1772019993181 -22 1772052519214 UpdatePersonEntity1772052519214 -23 1772545971802 MoveAccompanyingToOpportunity1772545971802 -24 1772609767417 CheckIfInSync1772609767417 -25 1773268076415 UpdateAgentEntity6AgentPerson1773268076415 -26 1773413991868 UpdatePersonEntityAddLandline1773413991868 -27 1773423834140 UpdateAgentEntity71773423834140 -28 1773438090614 UpdateCommunicationEntity1773438090614 -29 1773746534596 UpdateCommentEtity21773746534596 -30 1774135672526 AddNotionRelationEntity1774135672526 -31 1776035229092 AddVolIndeces1776035229092 -32 1776321570996 UpdateOppOrphanage1776321570996 -33 1776699111911 UpdateAgentEntity1776699111911 -\. - - --- --- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.category (id, title) FROM stdin; -1 de-lng-support -2 child-care -3 skills-based -4 events -5 sport-activities -6 accompanying -\. - - --- --- Data for Name: comment; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.comment (id, text, created_at, updated_at, language_id, user_id, entity_type, entity_id) FROM stdin; -418 vig ol ziol uxn? 2026-04-21 09:49:36.209348 2026-04-21 09:49:36.209348 \N 4 volunteer 797 -420 it ol q foet uxn 2026-04-21 10:08:09.900538 2026-04-21 10:08:09.900538 \N 5 volunteer 797 -421 TYM wtqfzkqutf. 2026-04-21 10:10:59.149693 2026-04-21 10:10:59.149693 \N 9 volunteer 789 -422 TYM wtqfzkqutf. 2026-04-21 10:12:49.207042 2026-04-21 10:12:49.207042 \N 9 volunteer 760 -423 Rql TYM vxkrt qd 79.52.3531 wtqfzkquz. 2026-04-21 10:15:41.60944 2026-04-21 10:15:41.60944 \N 9 volunteer 785 -424 Rql TYM vxkrt qd 72.52.3531 wtqfzkquz. 2026-04-21 10:18:59.887798 2026-04-21 10:18:59.887798 \N 9 volunteer 782 -425 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:21:10.073317 2026-04-21 10:21:10.073317 \N 9 volunteer 751 -426 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:21:34.880124 2026-04-21 10:21:34.880124 \N 9 volunteer 772 -427 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:22:02.374942 2026-04-21 10:22:02.374942 \N 9 volunteer 756 -428 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:22:27.972908 2026-04-21 10:22:27.972908 \N 9 volunteer 778 -429 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:24:49.126072 2026-04-21 10:24:49.126072 \N 9 volunteer 767 -430 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:25:23.586742 2026-04-21 10:25:23.586742 \N 9 volunteer 776 -431 Rql TYM vxkrt qd 78.52.3531 wtqfzkquz. 2026-04-21 10:25:41.488079 2026-04-21 10:25:41.488079 \N 9 volunteer 770 -435 Rql TYM-Rgaxdtfz vxkrt qd 78. Qhkos tkiqsztf. 2026-04-21 10:31:27.421725 2026-04-21 10:31:27.421725 \N 9 volunteer 692 -436 Rql TYM vxkrt qd 53.52.3531 wtqfzkquz. 2026-04-21 10:32:55.758766 2026-04-21 10:32:55.758766 \N 9 volunteer 765 -437 Atfmq: RT fqzoct, ZK qfr TF ysxtfz. Lit ol dqofsn ofztktlztr of Wtustozxfu. Ygk ktuxsqk cgsxfzttkofu, lit egxsr odquoft rgofu lhgkzl qfr stqrofu gf wqlatzwqss. Lit ol ofztktlztr of uqkrtfofu wxz oy lit ol zgsr viqz zg rg. Lit ol qcqosqwst Ykorqnl qss rqn, Dgfrqnl lzqkzofu 73i, Zxtlrqnl wtzvttf 6i qfr 73i qfr quqof qyztk 71i qfr Zixklrqnl wtzvttf 6 qfr 73. Lit iql zit dtqlstl cqeeoft qfr qf TYM ykgd Lthztdwtk. 2026-04-21 12:27:43.17342 2026-04-21 12:27:43.17342 \N 5 volunteer 799 -438 Ltfnq eiteatr of zgrqn qfr Xsso lqor Sqxknf ol ktuxsqksn cgsxfzttkofu. 2026-04-21 14:02:43.99929 2026-04-21 14:02:43.99929 \N 5 volunteer 684 -441 Qfzkqulztsstk*of: Ytktlizq Pqyqko, pqyqko@mqao-tc.rt, 5799 90569811 2026-04-21 15:00:09.864574 2026-04-21 15:00:09.864574 \N 7 opportunity 804 -443 oei qxei 2026-04-21 16:12:53.211037 2026-04-21 16:12:53.211037 \N 4 opportunity 810 -444 ztlz 2026-04-21 16:13:33.046839 2026-04-21 16:13:33.046839 \N 4 opportunity 809 -445 Rql olz tof Agddtfzqk rtl Tfzvoeastkl 2026-04-21 17:23:53.644011 2026-04-21 17:23:53.644011 \N 1 volunteer 798 -446 Fq 2026-04-21 20:45:59.930379 2026-04-21 20:45:59.930379 \N 4 volunteer 797 -447 Eitea-of: Zgutzitk vozi Ltuxf zitn qkt gyytkofu q lhgkzqfutwgz tctkn Zixklrqn. 2026-04-22 07:21:36.247263 2026-04-22 07:21:36.247263 \N 5 volunteer 685 -442 Atfmq: Ofztktlztr of cgsxfzttkofu vozi eiosrktf, vgkatr 8 ntqkl ql q wqwn lozztk qfr iql lowsoful. Lit eqf qslg itsh vozi yossofu rgexdtfzl, lit lhtqal RT & TF. Lg qslg ofztktlztr of Lhkqeieqytl. Soctl of Ftxaössf (Itkddqfhsqzm). Lzxrotl Ofztkfqzogfqs Wxloftll Dqfqutdtfz. Lit ol ystbowst gf Zixklrqnl qfr Ykorqnl. 2026-04-21 15:09:06.420064 2026-04-22 07:36:31.574 \N 5 volunteer 794 -448 rxddn@qvg-dozzt.rt<|>rxddn ztlz<|>rxddnlzkttz<|>73829 2026-04-22 08:41:24.343342 2026-04-22 08:41:24.343342 \N 1 opportunity 811 -449 u 2026-04-22 08:42:22.02148 2026-04-22 08:42:22.02148 \N 4 opportunity 811 -450 l 2026-04-22 08:56:16.98197 2026-04-22 08:56:16.98197 \N 4 opportunity 811 -451 moddtkdqff@qvg-dozzt.rt<|>Qdn Moddtkdqff<|>Akgfhkofmtfrqdd 7<|>75077 2026-04-22 09:48:10.04167 2026-04-22 09:48:10.04167 \N 1 opportunity 812 -452 vlh@rka-dxtuutslhktt.rt<|>Aofqfq Ltodxqq<|>Vqlltklhgkzqsstt 91-94<|>73930 2026-04-22 11:13:26.002539 2026-04-22 11:13:26.002539 \N 1 opportunity 813 -453 uogkuo.sgaiolicoso@ow.rt<|>Uogkuo Sgaiolicoso<|>Ktofoeatfrgky Lzk. 29<|>78890 2026-04-22 13:22:00.81108 2026-04-22 13:22:00.81108 \N 1 opportunity 814 -454 Rtk Ztkdof olz xd 75:85 2026-04-22 13:24:13.4216 2026-04-22 13:24:13.4216 \N 7 opportunity 814 -455 Koeizout Ofygl: 51.59.3531 xd 77.85 Xik! 2026-04-22 14:11:09.888319 2026-04-22 14:11:09.888319 \N 7 opportunity 810 -456 Atfmq: Ysxtfz of Utkdqf (wgkf qfr kqoltr itkt), ofztkdtroqzt Qswqfoqf qfr Lhqfoli. Ofztktlztr of zxzgkofu, gkuqfolofu qezocozotl ql lit qsktqrn rgtl ziqz vozi q lzxrtfz gkuqfolqzogf qz itk xfoctklozn. Lit ol qslg ofztktlztr of qeegdhqfnofu wxz ygk Qswqfoqf oz rthtfrl vioei aofr gy qhhgofzdtfzl zitn qkt. Lit afgvl q sgz gy htghst vig lhtqa Qswqfoqf ysxtfzsn vig egxsr rg ziol wtzztk ziqf itk. Lit soctl of Ztdhtsigy qfr eqf ug zg zit rolzkoezl dtfzogftr qwgctr of zit ygkd. Qcqosqwst gf Ykorqnl qfr vttatfrl qfr lit iql zit dtqlstl cqeeoft. 2026-04-23 08:41:57.328635 2026-04-23 08:41:57.328635 \N 5 volunteer 796 -458 Ftv higft fxdwtk: 579386157536 2026-04-23 08:53:32.952096 2026-04-23 08:53:32.952096 \N 7 volunteer 475 -459 Rtk Ztkdof olz xd 6:95 Xik. 2026-04-23 10:07:07.31761 2026-04-23 10:07:07.31761 \N 7 opportunity 813 -460 Atfmq: lzxrtfz, ol zknofu zg yofr cgsxfzttkofu ghhgkzxfozotl wxz oz qsvqnl rgtlfz vgka ygk zodofu ktqlgfl. Rxkofu zit vtta ol royyoexsz wteqxlt lit iql zg wt q sgz qz zit xfoctklozn, lg vttatfrl qkt wtzztk ygk itk. Lit qsktqrn uqct fqeiiosoyt of dqzi qfr tfusoli. Lit soatl eiosrktf, gkuqfolofu tctfzl. Lit ol qslg qcqosqwst tctkn zxtlrqn qyztk 79i qfr soctl of Lztusozm. 2026-04-23 10:36:25.035341 2026-04-23 10:36:25.035341 \N 5 volunteer 798 -461 Atfmq: Lgzokol qfr Cqlosoao qkt q egxhst qfr zitn vqfz zg cgsxfzttk zgutzitk. Cqlosoao vqlfz qcqosqwst ygk zit higft eqss lg Lgzokol vql zqsaofu gf zit wtiqsy gy zit zvg gy zitd. Zitn dgctr zvg vttal qug zg Wtksof, rgfz lhtqa Utkdqf qfr soct of Eiqksgzztfwxku. Cqlosoao ol q wogsguolz, Lgzokol ol q dxloeoqf. Lgzokol ol qcqosqwst gf Dgfrqnl, Vtrftlrqnl qfr Ykorqnl qyztkfggf. Zitn qkt wgzi uggr vozi aorl wxz fg tbhtkzolt. Lgzokol iql Qfdtsrxfu (lg vt eqf qhhsn ygk iol TYM) wxz Cqlosoao rgtlfz (lit iql zg qhhsn of Ukttet). It ol qslg ofztktlztr of tctfzl: lg wqea of Ukttet, it ror lgxfr tfuofttk qfr ltz xh, lg it egxsr itsh vozi iqfrsofu zit doekghigftl. Zitn eqf egddxzt vozi woatl qfr hxwsoe zkqflhgkzqzogfl. 2026-04-23 10:45:41.212523 2026-04-23 10:45:41.212523 \N 5 volunteer 801 -462 Atfmq: Atfmq: Gfsn zqsatr zg Lgzokol itk wgnykotfr. Cqlosoao vqlf'z qcqosqwst ygk zit higft eqss lg Lgzokol vql zqsaofu gf zit wtiqsy gy zit zvg gy zitd. Zitn dgctr zvg vttal qug zg Wtksof, rgfz lhtqa Utkdqf qfr soct of Eiqksgzztfwxku. Cqlosoao ol q wogsguolz, Lgzokol ol q dxloeoqf. Lgzokol ol qcqosqwst gf Dgfrqnl, Vtrftlrqnl qfr Ykorqnl qyztkfggf. Zitn qkt wgzi uggr vozi aorl wxz fg tbhtkzolt. Lgzokol iql Qfdtsrxfu (lg vt eqf qhhsn ygk iol TYM) wxz Cqlosoao rgtlfz (lit iql zg qhhsn of Ukttet). It ol qslg ofztktlztr of tctfzl: lg wqea of Ukttet, it ror lgxfr tfuofttk qfr ltz xh, lg it egxsr itsh vozi iqfrsofu zit doekghigftl. Zitn eqf egddxzt vozi woatl qfr hxwsoe zkqflhgkzqzogfl. 2026-04-23 10:49:33.44694 2026-04-23 10:49:33.44694 \N 5 volunteer 793 -463 lcozsqfq.gzkqrfgcq@ow.rt<|>Lcozsqfq Gzkqrfgcq<|>Ktofoeatfrgkytklzkqßt 29, Wtksof<|>78890 2026-04-23 11:29:13.19035 2026-04-23 11:29:13.19035 \N 1 opportunity 815 -464 moddtkdqff@qvg-dozzt.rt<|>Qdn Moddtkdqff<|>Usgeatfzxkdlzkqßt 85<|>72599 2026-04-23 12:39:33.458193 2026-04-23 12:39:33.458193 \N 1 opportunity 816 -465 Rot Ofygl: Itkk Lqstio vxkrt qf rot Gkzighärot üwtkvotltf, xd toft dtromofoleit Wtxkztosxfu cgd Qkmz mx igstf. Tk vokr rot Üwtkvtolxfu mxd Ztkdof dozwkofutf. Rqkof lofr rot Qfsotutf xfr Iofztkuküfrt qxei qxlyüiksoeitk wtleikotwtf. 2026-04-23 12:46:02.407052 2026-04-23 12:46:02.407052 \N 7 opportunity 804 -457 Dqzof aqff rot Wtustozxfu fqei rtd Wkotyofu üwtkftidtf. 2026-04-23 08:50:50.477412 2026-04-23 12:46:24.958 \N 7 opportunity 804 -466 Rtk Ztkdof yofrtz qd 85.52. xd 6:89 Xik lzqzz. 2026-04-23 12:58:40.090168 2026-04-23 12:58:40.090168 \N 7 opportunity 802 -467 dqkoaq.fqftolicoso@itkgtxkght.egd<|>Dqkoaq Fqftolicoso<|>Wsxdwtkutk Rqdd 718<|>73149 2026-04-23 14:09:03.70705 2026-04-23 14:09:03.70705 \N 1 opportunity 817 -468 Atfmq: it ol q htklgfqs zkqoftk, itqkr qwgxz xl ykgd q esotfz. Qsvqnl vqfztr zg cgsxfzttk. It eqf gyytk eqsolzitfoel vioei ngx gfsn fttr ngxk wgrn vtouiz ygk. It eqf qslg itsh vozi eggaofu qfr rgofu qkzl. It ol ykgd Wkqlos, 2 ntqkl of Wtksof. Soctl of Vqkleiqxtk Lzk lg eqf ug zg Ftxaössf, Aktxmwtku, Ykotrkoeiliqof qfr Soeiztfwtku. Lhtqal ysxtfz Hgkzxuxtlt, Lhqfoli qfr Tfusoli. Utkdqf Q3. O qlatr oy it eqf qslg rg zioful vozi aorl qfr it lqor zitn qkt eiqsstfuofu wxz it ol xh ygk oz. Qcqosqwst dglz dgkfoful wxz zxtlrqnl qfr zixklrqn ygk lxkt. It ol q ykttsqfetk lg it rgtlfz iqct q yobtr leitrxst. 2026-04-23 14:25:58.732924 2026-04-23 14:25:58.732924 \N 5 volunteer 804 -469 leikgtzztk@dozztsigy.gku<|>Xskoat Leiközztk<|>Esqnqsstt 63<|>72769 2026-04-23 15:08:40.853081 2026-04-23 15:08:40.853081 \N 1 opportunity 818 -470 dqkoaq.fqftolicoso@itkgtxkght.egd<|>Dqkoaq Fqftolicoso<|>Hqxs-Leivtfa-Lzkqßt 8-37<|>73149 2026-04-24 07:46:05.95657 2026-04-24 07:46:05.95657 \N 1 opportunity 819 -472 _ 2026-04-24 10:48:52.489451 2026-04-24 10:48:52.489451 \N 4 volunteer 797 -473 Uvtf-wxteiftk@udb.rt<|>Uvtfinyqk Wüeiftk<|>Ykotrtkoatflzk. 88<|>78959 2026-04-24 11:14:06.398438 2026-04-24 11:14:06.398438 \N 1 opportunity 820 -474 Uvtf-wxteiftk@udb.rt<|>Uvtfinyqk Wüeiftk<|>Igitfmgsstkfrqdd 88<|>75078 2026-04-24 11:18:28.535456 2026-04-24 11:18:28.535456 \N 1 opportunity 821 -471 Rtk Ztkdof yofrtz qd 59.59. xd 56:79 lzqzz. Rql Yqeiutwotz olz Lzgdqzgsguot. Rtk Ztkdof olz yük Uxzqeizxfu. 2026-04-24 10:48:17.039937 2026-04-24 12:39:47.341 \N 7 opportunity 817 -476 Rtk Ztkdof yofrtz xd 75 Xik lzqzz. Wto rtd Ztkdof utiz tl xd rot Wtuxzqeizxfu. Rtk Wtvgiftk iqz toftf Qfzkqu qxy Hystut wto SQY utlztssz. Rtliqsw agddz tof Dozqkwtoztk qslg tof Uxzqeiztk xfr lztssz tofout Ykqutf üwtk ltoft Utlxfritoz qf rtf Wtvgiftk. 2026-04-24 12:41:12.435781 2026-04-24 12:41:12.435781 \N 7 opportunity 819 -477 ltfnq qlatr oy higft zkqflsqzogf ol hgllowst lzoss fg kthsn 2026-04-24 13:44:42.8481 2026-04-24 13:44:42.8481 \N 4 opportunity 819 -478 Xhrqzt: Qz zit dgdtfz O’d fgz qcqosqwst rxkofu zit vtta zoss 72:55. Wxz O’r wt iqhhn zg lxhhgkz oy qfn qhhgofzdtfzl yqss gf zit ltegfr hqkz gy zit rqn. 2026-04-24 13:57:07.933292 2026-04-24 13:57:07.933292 \N 7 volunteer 85 -479 Dqkot aqff rot Wtustozxfu foeiz üwtkftidtf, Rqkoq iqz qxy dtoft T-Dqos foeiz utqfzvgkztz. 2026-04-24 14:29:32.98711 2026-04-24 14:29:32.98711 \N 7 opportunity 813 -480 Vok wkqxeitf fgei dtik Ofygkdqzogftf rqmx, oei iqwt Lcozsqfq rotlwtmüusoei qfutleikotwtf. 2026-04-24 14:30:42.986067 2026-04-24 14:30:42.986067 \N 7 opportunity 815 -481 Fgz fttrtr qfndgkt. 2026-04-24 14:54:03.437164 2026-04-24 14:54:03.437164 \N 7 opportunity 809 -482 Tssofq.Anlisqk@syu-w.rt<|>Tssofq Anlisqk<|>UX sqfrlwtkutk Qsstt 357-359<|>78599 2026-04-27 14:46:11.760312 2026-04-27 14:46:11.760312 \N 1 opportunity 822 -483 Oei iqwt toft Qwlqut utleioeaz. 2026-04-27 15:03:43.557084 2026-04-27 15:08:21.703 \N 9 opportunity 822 -484 fggk@mqao-tc.rt<|>Zqdqf Fggk<|>Leiöfysotlltk Lzk. 0<|>75286 2026-04-27 15:22:05.58204 2026-04-27 15:22:05.58204 \N 1 opportunity 823 -485 Oei iqwt rot Qwlqut utleioeaz. 2026-04-27 15:31:01.176923 2026-04-27 15:31:01.176923 \N 9 opportunity 813 -486 Oei iqwt rot Qwlqut utleioeaz. 2026-04-27 15:48:17.417422 2026-04-27 15:48:17.417422 \N 9 opportunity 823 -487 Ztzoqfq iqz cots Tkyqikxfu qsl Tiktfqdzsoeit of rtk Xakqoft (Zitqztk, Zqfmtf). Qxei of Wtksof vqk lot od Dozztsigy tiktfqdzsoei zäzou xfr iqz rgkz od Lgddtk 3539 TYM tkiqsztf.\fOf oiktk Aofritoz vxkrt lot ututf Dqltkf utodhyz, ptrgei mtouzt tof Qfzoaökhtkztlz, rqll atof qxlktoeitfrtk Leixzm dtik wtlztiz. Rqitk olz toft Qxyykoleixfulodhyxfu tkygkrtksoei.\fOikt Rtxzleiatffzfollt sotutf qxy rtd Foctqx W7. Lot dqeiz fgei Ytistk, aqff loei qwtk ctklzäfroutf. (Lot iqz wtktozl toft Yqdosot qd 33.52.3531 mx toftd Aofrtkqkmzztkdof wtustoztz)\fLot olz wtktoz, od Kqxd Dqkmqif-Itsstklrgky tiktfqdzsoei zäzou mx vtkrtf. Wtlgfrtkl utkf vükrt lot doz Aofrtkf qkwtoztf, m. W. Zqfm qfwotztf grtk astoft Qazocozäztf od Kqidtf rtk Wtzktxxfu rxkeiyüiktf. 2026-04-27 16:15:47.774451 2026-04-27 16:15:47.774451 \N 9 volunteer 802 -\. - - --- --- Data for Name: communication; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.communication (id, contact_type, contact_method, communication_type, date, volunteer_id, user_id, agent_id) FROM stdin; -1 tried-to-call phone-number \N 2026-04-21 10:26:10.203 800 5 \N -2 tried-to-call phone-number \N 2026-04-21 10:29:26.029 794 5 \N -3 tried-to-call phone-number \N 2026-04-21 10:30:41.511 791 5 \N -4 tried-to-call phone-number \N 2026-04-21 10:32:03.91 795 5 \N -5 called phone-number \N 2026-04-21 12:17:20.8 799 5 \N -8 tried-to-call phone-number \N 2026-04-22 09:19:26.33 802 5 \N -9 texted-or-emailed email \N 2026-04-22 09:24:05.828 803 5 \N -10 tried-to-call phone-number \N 2026-04-22 09:34:06.801 804 5 \N -11 called phone-number \N 2026-04-23 08:39:43.795 796 5 \N -12 texted-or-emailed email \N 2026-04-23 08:52:49.308 475 7 \N -6 called phone-number \N 2026-04-22 22:00:00 798 5 \N -7 called phone-number \N 2026-04-22 22:00:00 801 5 \N -13 tried-to-call phone-number \N 2026-04-23 14:14:34.505 803 5 \N -14 called phone-number \N 2026-04-23 14:23:20.211 804 5 \N -15 tried-to-call phone-number \N 2026-04-23 14:28:21.959 805 5 \N -16 other whatsapp briefed 2026-04-24 13:24:53.849 475 4 \N -17 called phone-number \N 2026-04-27 15:57:51.986 802 9 \N -\. - - --- --- Data for Name: config; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.config (id, config_key, config_value) FROM stdin; -1 truncate-all t -\. - - --- --- Data for Name: deal; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.deal (id, type, postcode_id, time_id, location_id, profile_id) FROM stdin; -1 opportunity 1 1 1 1 -2 opportunity 1 2 2 2 -3 opportunity 149 3 3 3 -4 opportunity 1 4 4 4 -5 opportunity 1 5 5 5 -6 opportunity 1 6 6 6 -7 opportunity 1 7 7 7 -8 opportunity 1 8 8 8 -9 opportunity 1 9 9 9 -10 opportunity 1 10 10 10 -11 opportunity 1 11 11 11 -12 opportunity 1 12 12 12 -13 opportunity 1 13 13 13 -14 opportunity 100 14 14 14 -15 opportunity 1 15 15 15 -16 opportunity 1 16 16 16 -17 opportunity 1 17 17 17 -18 opportunity 1 18 18 18 -19 opportunity 1 19 19 19 -20 opportunity 1 21 20 21 -21 opportunity 1 22 21 22 -22 opportunity 1 23 22 23 -23 opportunity 1 25 23 25 -24 opportunity 1 27 24 27 -25 opportunity 1 28 25 28 -26 opportunity 1 29 26 29 -27 opportunity 1 30 27 30 -28 opportunity 1 31 28 31 -29 opportunity 1 32 29 32 -30 opportunity 1 33 30 33 -31 opportunity 1 34 31 34 -32 opportunity 1 35 32 35 -33 opportunity 1 36 33 36 -34 opportunity 1 37 34 37 -35 opportunity 1 38 35 38 -36 opportunity 1 39 36 39 -37 opportunity 1 40 37 40 -38 opportunity 1 41 38 41 -39 opportunity 149 42 39 42 -40 opportunity 1 44 40 44 -41 opportunity 1 45 41 45 -42 opportunity 1 46 42 46 -43 opportunity 1 47 43 47 -44 opportunity 1 48 44 48 -45 opportunity 1 49 45 49 -46 opportunity 1 50 46 50 -47 opportunity 1 51 47 51 -48 opportunity 1 52 48 52 -49 opportunity 1 53 49 53 -50 opportunity 1 54 50 54 -51 opportunity 1 55 51 55 -52 opportunity 1 56 52 56 -53 opportunity 1 57 53 57 -54 opportunity 1 58 54 58 -55 opportunity 1 59 55 59 -56 opportunity 1 60 56 60 -57 opportunity 1 61 57 61 -58 opportunity 1 62 58 62 -59 opportunity 1 63 59 63 -60 opportunity 1 64 60 64 -61 opportunity 1 65 61 65 -62 opportunity 1 66 62 66 -63 opportunity 1 67 63 67 -64 opportunity 1 68 64 68 -65 opportunity 1 69 65 69 -66 opportunity 1 70 66 70 -67 opportunity 1 71 67 71 -68 opportunity 1 72 68 72 -69 opportunity 1 73 69 73 -70 opportunity 1 74 70 74 -71 opportunity 1 75 71 75 -72 opportunity 1 76 72 76 -73 opportunity 1 77 73 77 -74 opportunity 1 78 74 78 -75 opportunity 1 79 75 79 -76 opportunity 1 80 76 80 -77 opportunity 1 81 77 81 -78 opportunity 1 82 78 82 -79 opportunity 1 83 79 83 -80 opportunity 1 84 80 84 -81 opportunity 1 85 81 85 -82 opportunity 1 86 82 86 -83 opportunity 1 88 83 88 -84 opportunity 1 89 84 89 -85 opportunity 1 90 85 90 -86 opportunity 1 91 86 91 -87 opportunity 1 92 87 92 -88 opportunity 1 93 88 93 -89 opportunity 1 94 89 94 -90 opportunity 1 95 90 95 -91 opportunity 1 96 91 96 -92 opportunity 1 98 92 98 -93 opportunity 1 99 93 99 -94 opportunity 1 100 94 100 -95 opportunity 1 101 95 101 -96 opportunity 1 102 96 102 -97 opportunity 1 103 97 103 -98 opportunity 1 104 98 104 -99 opportunity 1 105 99 105 -100 opportunity 1 106 100 106 -101 opportunity 1 107 101 107 -102 opportunity 11 108 102 108 -103 opportunity 1 109 103 109 -104 opportunity 183 110 104 110 -105 opportunity 183 111 105 111 -106 opportunity 183 112 106 112 -107 opportunity 1 113 107 113 -108 opportunity 1 114 108 114 -109 opportunity 1 115 109 115 -110 opportunity 1 117 110 117 -111 opportunity 1 118 111 118 -112 opportunity 1 119 112 119 -113 opportunity 1 120 113 120 -114 opportunity 1 121 114 121 -115 opportunity 1 122 115 122 -116 opportunity 1 123 116 123 -117 opportunity 1 124 117 124 -118 opportunity 1 125 118 125 -119 opportunity 1 126 119 126 -120 opportunity 1 127 120 127 -121 opportunity 1 128 121 128 -122 opportunity 1 129 122 129 -123 opportunity 1 130 123 130 -124 opportunity 1 131 124 131 -125 opportunity 1 132 125 132 -126 opportunity 1 133 126 133 -127 opportunity 1 134 127 134 -128 opportunity 1 135 128 135 -129 opportunity 1 136 129 136 -130 opportunity 1 137 130 137 -131 opportunity 1 138 131 138 -132 opportunity 1 139 132 139 -133 opportunity 1 140 133 140 -134 opportunity 1 141 134 141 -135 opportunity 1 142 135 142 -136 opportunity 1 143 136 143 -137 opportunity 1 144 137 144 -138 opportunity 1 145 138 145 -139 opportunity 1 146 139 146 -140 opportunity 1 147 140 147 -141 opportunity 1 148 141 148 -142 opportunity 1 149 142 149 -143 opportunity 1 150 143 150 -144 opportunity 1 151 144 151 -145 opportunity 1 152 145 152 -146 opportunity 1 153 146 153 -147 opportunity 1 154 147 154 -148 opportunity 1 155 148 155 -149 opportunity 1 156 149 156 -150 opportunity 1 157 150 157 -151 opportunity 1 158 151 158 -152 opportunity 1 159 152 159 -153 opportunity 1 160 153 160 -154 opportunity 1 161 154 161 -155 opportunity 1 162 155 162 -156 opportunity 1 163 156 163 -157 opportunity 1 164 157 164 -158 opportunity 1 165 158 165 -159 opportunity 1 166 159 166 -160 opportunity 1 167 160 167 -161 opportunity 1 168 161 168 -162 opportunity 1 169 162 169 -163 opportunity 1 170 163 170 -164 opportunity 1 171 164 171 -165 opportunity 1 172 165 172 -166 opportunity 1 173 166 173 -167 opportunity 1 174 167 174 -168 opportunity 1 175 168 175 -169 opportunity 1 176 169 176 -170 opportunity 1 177 170 177 -171 opportunity 1 178 171 178 -172 opportunity 1 179 172 179 -173 opportunity 1 180 173 180 -174 opportunity 1 181 174 181 -175 opportunity 19 182 175 182 -176 opportunity 1 183 176 183 -177 opportunity 1 184 177 184 -178 opportunity 1 185 178 185 -179 opportunity 1 186 179 186 -180 opportunity 1 187 180 187 -181 opportunity 1 188 181 188 -182 opportunity 1 189 182 189 -183 opportunity 1 190 183 190 -184 opportunity 1 191 184 191 -185 opportunity 1 192 185 192 -186 opportunity 1 193 186 193 -187 opportunity 1 194 187 194 -188 opportunity 1 195 188 195 -189 opportunity 1 196 189 196 -190 opportunity 1 197 190 197 -191 opportunity 1 198 191 198 -192 opportunity 1 199 192 199 -193 opportunity 1 200 193 200 -194 opportunity 1 201 194 201 -195 opportunity 1 202 195 202 -196 opportunity 1 203 196 203 -197 opportunity 1 204 197 204 -198 opportunity 105 205 198 205 -199 opportunity 1 206 199 206 -200 opportunity 1 207 200 207 -201 opportunity 1 208 201 208 -202 opportunity 1 209 202 209 -203 opportunity 1 210 203 210 -204 opportunity 101 211 204 211 -205 opportunity 101 212 205 212 -206 opportunity 144 213 206 213 -207 opportunity 70 214 207 214 -208 opportunity 144 215 208 215 -209 opportunity 68 216 209 216 -210 opportunity 120 217 210 217 -211 opportunity 149 218 211 218 -212 opportunity 126 219 212 219 -213 opportunity 15 220 213 220 -214 opportunity 119 221 214 221 -215 opportunity 8 222 215 222 -216 opportunity 150 223 216 223 -217 opportunity 95 224 217 224 -218 opportunity 68 225 218 225 -219 opportunity 100 226 219 226 -220 opportunity 68 227 220 227 -221 opportunity 68 228 221 228 -222 opportunity 11 229 222 229 -223 opportunity 8 230 223 230 -224 opportunity 11 231 224 231 -225 opportunity 107 232 225 232 -226 opportunity 170 233 226 233 -227 opportunity 19 234 227 234 -228 opportunity 19 235 228 235 -229 opportunity 185 236 229 236 -230 opportunity 183 237 230 237 -231 opportunity 185 238 231 238 -232 opportunity 185 239 232 239 -233 opportunity 84 240 233 240 -234 opportunity 68 241 234 241 -235 opportunity 10 242 235 242 -236 opportunity 68 243 236 243 -237 opportunity 70 244 237 244 -238 opportunity 150 245 238 245 -239 opportunity 71 246 239 246 -240 opportunity 100 247 240 247 -241 opportunity 70 248 241 248 -242 opportunity 59 249 242 249 -243 opportunity 59 250 243 250 -244 opportunity 59 251 244 251 -245 opportunity 1 252 245 252 -246 opportunity 111 253 246 253 -247 opportunity 186 254 247 254 -248 opportunity 10 255 248 255 -249 opportunity 56 256 249 256 -250 opportunity 185 257 250 257 -251 opportunity 149 258 251 258 -252 opportunity 160 259 252 259 -253 opportunity 149 260 253 260 -254 opportunity 57 261 254 261 -255 opportunity 170 262 255 262 -256 opportunity 185 263 256 263 -257 opportunity 185 264 257 264 -258 opportunity 121 265 258 265 -259 opportunity 88 266 259 266 -260 opportunity 88 267 260 267 -261 opportunity 58 268 261 268 -262 opportunity 15 269 262 269 -263 opportunity 149 270 263 270 -264 opportunity 31 271 264 271 -265 opportunity 57 272 265 272 -266 opportunity 128 273 266 273 -267 opportunity 7 274 267 274 -268 opportunity 121 275 268 275 -269 opportunity 153 276 269 276 -270 opportunity 11 277 270 277 -271 opportunity 11 278 271 278 -272 opportunity 71 279 272 279 -273 opportunity 31 280 273 280 -274 opportunity 100 281 274 281 -275 opportunity 111 282 275 282 -276 opportunity 126 283 276 283 -277 opportunity 126 284 277 284 -278 opportunity 19 285 278 285 -279 opportunity 100 286 279 286 -280 opportunity 148 287 280 287 -281 opportunity 1 288 281 288 -282 opportunity 61 289 282 289 -283 opportunity 57 290 283 290 -284 opportunity 54 291 284 291 -285 opportunity 83 292 285 292 -286 opportunity 132 293 286 293 -287 opportunity 27 294 287 294 -288 opportunity 121 295 288 295 -289 opportunity 110 296 289 296 -290 opportunity 111 297 290 297 -291 opportunity 111 298 291 298 -292 opportunity 128 299 292 299 -293 opportunity 70 300 293 300 -294 opportunity 183 301 294 301 -295 opportunity 121 302 295 302 -296 opportunity 58 303 296 303 -297 opportunity 55 304 297 304 -298 opportunity 101 305 298 305 -299 opportunity 149 306 299 306 -300 opportunity 100 307 300 307 -301 opportunity 18 308 301 308 -302 opportunity 80 309 302 309 -303 opportunity 144 310 303 310 -304 opportunity 10 312 304 312 -305 opportunity 19 313 305 313 -306 opportunity 10 314 306 314 -307 opportunity 31 315 307 315 -308 opportunity 149 316 308 316 -309 opportunity 19 317 309 317 -310 opportunity 18 318 310 318 -311 opportunity 117 319 311 319 -312 opportunity 79 320 312 320 -313 opportunity 68 321 313 321 -314 opportunity 170 322 314 322 -315 opportunity 170 323 315 323 -316 opportunity 160 324 316 324 -317 opportunity 19 325 317 325 -318 opportunity 11 326 318 326 -319 opportunity 88 327 319 327 -320 opportunity 127 328 320 328 -321 opportunity 121 329 321 329 -322 opportunity 126 330 322 330 -323 opportunity 18 331 323 331 -324 opportunity 186 332 324 332 -325 opportunity 101 333 325 333 -326 opportunity 19 334 326 334 -327 opportunity 19 335 327 335 -328 opportunity 126 336 328 336 -329 opportunity 126 337 329 337 -330 opportunity 126 338 330 338 -331 opportunity 126 339 331 339 -332 opportunity 19 340 332 340 -333 opportunity 127 341 333 341 -334 opportunity 113 342 334 342 -335 opportunity 15 343 335 343 -336 opportunity 31 344 336 344 -337 opportunity 89 345 337 345 -338 opportunity 113 346 338 346 -339 opportunity 120 347 339 347 -340 opportunity 56 348 340 348 -341 opportunity 56 349 341 349 -342 opportunity 170 350 342 350 -343 opportunity 119 351 343 351 -344 opportunity 2 352 344 352 -345 opportunity 17 353 345 353 -346 opportunity 120 354 346 354 -347 opportunity 56 355 347 355 -348 opportunity 132 356 348 356 -349 opportunity 31 357 349 357 -350 opportunity 149 358 350 358 -351 opportunity 149 359 351 359 -352 opportunity 120 360 352 360 -353 opportunity 120 361 353 361 -354 opportunity 19 362 354 362 -355 opportunity 122 363 355 363 -356 opportunity 66 364 356 364 -357 opportunity 15 365 357 365 -358 opportunity 18 366 358 366 -359 opportunity 18 367 359 367 -360 opportunity 57 368 360 368 -361 opportunity 131 369 361 369 -362 opportunity 2 370 362 370 -363 opportunity 17 371 363 371 -364 opportunity 2 372 364 372 -365 opportunity 170 373 365 373 -366 opportunity 127 374 366 374 -367 opportunity 130 375 367 375 -368 opportunity 19 376 368 376 -369 opportunity 77 377 369 377 -370 opportunity 107 378 370 378 -371 opportunity 107 379 371 379 -372 opportunity 17 380 372 380 -373 opportunity 107 381 373 381 -374 opportunity 2 382 374 382 -375 opportunity 170 383 375 383 -376 opportunity 121 384 376 384 -377 opportunity 132 385 377 385 -378 opportunity 107 386 378 386 -379 opportunity 3 387 379 387 -380 opportunity 126 388 380 388 -381 opportunity 139 389 381 389 -382 opportunity 121 390 382 390 -383 opportunity 31 391 383 391 -384 opportunity 111 392 384 392 -385 opportunity 111 393 385 393 -386 opportunity 121 394 386 394 -387 opportunity 185 395 387 395 -388 opportunity 2 396 388 396 -389 opportunity 11 397 389 397 -390 opportunity 31 398 390 398 -391 opportunity 83 399 391 399 -392 opportunity 31 400 392 400 -393 opportunity 15 401 393 401 -394 opportunity 48 402 394 402 -395 opportunity 2 403 395 403 -396 opportunity 125 404 396 404 -397 opportunity 128 405 397 405 -398 opportunity 100 406 398 406 -399 opportunity 53 407 399 407 -400 opportunity 106 408 400 408 -401 opportunity 185 409 401 409 -402 opportunity 144 410 402 410 -403 opportunity 126 411 403 411 -404 opportunity 102 412 404 412 -405 opportunity 126 413 405 413 -406 opportunity 58 414 406 414 -407 opportunity 121 415 407 415 -408 opportunity 170 416 408 416 -409 opportunity 56 417 409 417 -410 opportunity 105 418 410 418 -411 opportunity 3 419 411 419 -412 opportunity 149 420 412 420 -413 opportunity 31 421 413 421 -414 opportunity 31 422 414 422 -415 opportunity 31 423 415 423 -416 opportunity 139 424 416 424 -417 opportunity 22 425 417 425 -418 opportunity 104 426 418 426 -419 opportunity 58 427 419 427 -420 opportunity 126 428 420 428 -421 opportunity 57 429 421 429 -422 opportunity 59 430 422 430 -423 opportunity 105 431 423 431 -424 opportunity 15 432 424 432 -425 opportunity 58 433 425 433 -426 opportunity 146 434 426 434 -427 opportunity 120 435 427 435 -428 opportunity 149 436 428 436 -429 opportunity 19 437 429 437 -430 opportunity 19 438 430 438 -431 opportunity 107 439 431 439 -432 opportunity 130 440 432 440 -433 opportunity 11 441 433 441 -434 opportunity 105 443 434 443 -435 opportunity 130 444 435 444 -436 opportunity 51 445 436 445 -437 opportunity 122 446 437 446 -438 opportunity 144 447 438 447 -439 opportunity 20 448 439 448 -440 opportunity 42 449 440 449 -441 opportunity 19 450 441 450 -442 opportunity 1 451 442 451 -443 opportunity 15 452 443 452 -444 opportunity 48 453 444 453 -445 opportunity 149 454 445 454 -446 opportunity 56 455 446 455 -447 opportunity 26 456 447 456 -448 opportunity 19 457 448 457 -449 opportunity 40 458 449 458 -450 opportunity 36 459 450 459 -451 opportunity 170 460 451 460 -452 opportunity 15 461 452 461 -453 opportunity 11 462 453 462 -454 opportunity 37 463 454 463 -455 opportunity 105 464 455 464 -456 opportunity 186 465 456 465 -457 opportunity 182 466 457 466 -458 opportunity 121 467 458 467 -459 opportunity 57 468 459 468 -460 opportunity 52 469 460 469 -461 opportunity 162 470 461 470 -462 opportunity 105 471 462 471 -463 opportunity 1 472 463 472 -464 opportunity 54 473 464 473 -465 opportunity 109 474 465 474 -466 opportunity 31 475 466 475 -467 opportunity 31 476 467 476 -468 opportunity 145 477 468 477 -469 opportunity 130 478 469 478 -470 opportunity 183 479 470 479 -471 opportunity 183 480 471 480 -472 opportunity 10 481 472 481 -473 opportunity 144 482 473 482 -474 opportunity 37 483 474 483 -475 opportunity 31 484 475 484 -476 opportunity 11 485 476 485 -477 opportunity 31 486 477 486 -478 opportunity 62 487 478 487 -479 opportunity 71 488 479 488 -480 opportunity 1 489 480 489 -481 opportunity 71 490 481 490 -482 opportunity 9 491 482 491 -483 opportunity 106 492 483 492 -484 opportunity 144 493 484 493 -485 opportunity 145 494 485 494 -486 opportunity 178 495 486 495 -487 opportunity 117 496 487 496 -488 opportunity 15 497 488 497 -489 opportunity 117 498 489 498 -490 opportunity 117 499 490 499 -491 opportunity 15 500 491 500 -492 opportunity 133 501 492 501 -493 opportunity 31 502 493 502 -494 opportunity 123 503 494 503 -495 opportunity 19 504 495 504 -496 opportunity 31 505 496 505 -497 opportunity 111 506 497 506 -498 opportunity 126 507 498 507 -499 opportunity 170 508 499 508 -500 opportunity 2 509 500 509 -501 opportunity 104 510 501 510 -502 opportunity 133 511 502 511 -503 opportunity 168 512 503 512 -504 opportunity 144 513 504 513 -505 opportunity 18 514 505 514 -506 opportunity 89 515 506 515 -507 opportunity 89 516 507 516 -508 opportunity 18 517 508 517 -509 opportunity 15 518 509 518 -510 opportunity 40 519 510 519 -511 opportunity 15 520 511 520 -512 opportunity 114 521 512 521 -513 opportunity 54 522 513 522 -514 opportunity 54 523 514 523 -515 opportunity 122 524 515 524 -516 opportunity 102 525 516 525 -517 opportunity 102 526 517 526 -518 opportunity 70 527 518 527 -519 opportunity 88 528 519 528 -520 opportunity 17 529 520 529 -521 opportunity 15 530 521 530 -522 opportunity 70 531 522 531 -523 opportunity 39 532 523 532 -524 opportunity 66 533 524 533 -525 opportunity 144 534 525 534 -526 opportunity 13 535 526 535 -527 opportunity 122 536 527 536 -528 opportunity 107 537 528 537 -529 opportunity 15 538 529 538 -530 opportunity 15 539 530 539 -531 opportunity 122 540 531 540 -532 opportunity 103 541 532 541 -533 opportunity 31 542 533 542 -534 opportunity 166 543 534 543 -535 opportunity 68 544 535 544 -536 opportunity 192 545 536 545 -537 opportunity 19 546 537 546 -538 opportunity 19 547 538 547 -539 opportunity 130 548 539 548 -540 opportunity 162 549 540 549 -541 opportunity 39 550 541 550 -542 opportunity 183 551 542 551 -543 opportunity 128 552 543 552 -544 opportunity 141 553 544 553 -545 opportunity 39 554 545 554 -546 opportunity 96 555 546 555 -547 opportunity 71 556 547 556 -548 opportunity 1 557 548 557 -549 opportunity 105 558 549 558 -550 opportunity 66 559 550 559 -551 opportunity 2 560 551 560 -552 opportunity 61 561 552 561 -553 opportunity 132 562 553 562 -554 opportunity 139 563 554 563 -555 opportunity 1 564 555 564 -556 opportunity 170 565 556 565 -557 opportunity 192 566 557 566 -558 opportunity 31 567 558 567 -559 opportunity 192 568 559 568 -560 opportunity 192 569 560 569 -561 opportunity 130 570 561 570 -562 opportunity 68 571 562 571 -563 opportunity 159 572 563 572 -564 opportunity 160 573 564 573 -565 opportunity 31 574 565 574 -566 opportunity 11 575 566 575 -567 opportunity 148 576 567 576 -568 opportunity 1 577 568 577 -569 opportunity 128 578 569 578 -570 opportunity 117 579 570 579 -571 opportunity 58 580 571 580 -572 opportunity 58 581 572 581 -573 opportunity 100 582 573 582 -574 opportunity 144 583 574 583 -575 opportunity 188 584 575 584 -576 opportunity 39 585 576 585 -577 opportunity 100 586 577 586 -578 opportunity 162 587 578 587 -579 opportunity 68 588 579 588 -580 opportunity 19 589 580 589 -581 opportunity 57 590 581 590 -582 opportunity 68 591 582 591 -583 opportunity 17 592 583 592 -584 opportunity 183 593 584 593 -585 opportunity 95 594 585 594 -586 opportunity 81 595 586 595 -587 opportunity 103 596 587 596 -588 opportunity 3 597 588 597 -589 opportunity 71 598 589 598 -590 opportunity 186 599 590 599 -591 opportunity 126 600 591 600 -592 opportunity 120 601 592 601 -593 opportunity 15 602 593 602 -594 opportunity 128 603 594 603 -595 opportunity 166 604 595 604 -596 opportunity 26 605 596 605 -597 opportunity 73 606 597 606 -598 opportunity 170 607 598 607 -599 opportunity 19 608 599 608 -600 opportunity 23 609 600 609 -601 opportunity 73 610 601 610 -602 opportunity 132 611 602 611 -603 opportunity 192 612 603 612 -604 opportunity 51 613 604 613 -605 opportunity 162 614 605 614 -606 opportunity 162 615 606 615 -607 opportunity 149 616 607 616 -608 opportunity 57 617 608 617 -609 opportunity 130 618 609 618 -610 opportunity 130 619 610 619 -611 opportunity 105 620 611 620 -612 opportunity 175 621 612 621 -613 opportunity 183 622 613 622 -614 opportunity 73 623 614 623 -615 opportunity 29 624 615 624 -616 opportunity 127 625 616 625 -617 opportunity 144 626 617 626 -618 opportunity 127 627 618 627 -619 opportunity 127 628 619 628 -620 opportunity 119 629 620 629 -621 opportunity 2 630 621 630 -622 opportunity 2 631 622 631 -623 opportunity 130 632 623 632 -624 opportunity 121 633 624 633 -625 opportunity 105 634 625 634 -626 opportunity 105 635 626 635 -627 opportunity 107 636 627 636 -628 opportunity 15 637 628 637 -629 opportunity 121 638 629 638 -630 opportunity 7 639 630 639 -631 opportunity 11 640 631 640 -632 opportunity 192 641 632 641 -633 opportunity 104 642 633 642 -634 opportunity 62 643 634 643 -635 opportunity 105 644 635 644 -636 opportunity 57 645 636 645 -637 opportunity 105 646 637 646 -638 opportunity 105 647 638 647 -639 opportunity 58 648 639 648 -640 opportunity 50 649 640 649 -641 opportunity 144 650 641 650 -642 opportunity 29 651 642 651 -643 opportunity 147 652 643 652 -644 opportunity 129 653 644 653 -645 opportunity 57 654 645 654 -646 opportunity 141 655 646 655 -647 opportunity 80 656 647 656 -648 opportunity 147 657 648 657 -649 opportunity 7 658 649 658 -650 opportunity 19 659 650 659 -651 opportunity 19 660 651 660 -652 opportunity 19 661 652 661 -653 opportunity 19 662 653 662 -654 opportunity 38 663 654 663 -655 opportunity 61 664 655 664 -656 opportunity 101 665 656 665 -657 opportunity 101 666 657 666 -658 opportunity 171 667 658 667 -659 opportunity 50 668 659 668 -660 opportunity 29 669 660 669 -661 opportunity 31 670 661 670 -662 opportunity 31 671 662 671 -663 opportunity 31 672 663 672 -664 opportunity 101 673 664 673 -665 opportunity 144 674 665 674 -666 opportunity 50 675 666 675 -667 opportunity 117 676 667 676 -668 opportunity 176 677 668 677 -669 opportunity 149 678 669 678 -670 opportunity 61 679 670 679 -671 opportunity 31 680 671 680 -672 opportunity 106 681 672 681 -673 opportunity 122 682 673 682 -674 opportunity 175 683 674 683 -675 opportunity 54 684 675 684 -676 opportunity 3 685 676 685 -677 opportunity 50 686 677 686 -678 opportunity 176 687 678 687 -679 opportunity 29 688 679 688 -680 opportunity 29 689 680 689 -681 opportunity 10 690 681 690 -682 opportunity 68 691 682 691 -683 opportunity 105 692 683 692 -684 opportunity 129 693 684 693 -685 opportunity 60 694 685 694 -686 opportunity 144 695 686 695 -687 opportunity 1 696 687 696 -688 opportunity 120 697 688 697 -689 opportunity 31 698 689 698 -690 opportunity 62 699 690 699 -691 opportunity 71 700 691 700 -692 opportunity 71 701 692 701 -693 opportunity 71 702 693 702 -694 opportunity 162 703 694 703 -695 opportunity 100 704 695 704 -696 opportunity 100 705 696 705 -697 opportunity 100 706 697 706 -698 opportunity 144 707 698 707 -699 opportunity 121 708 699 708 -700 opportunity 26 709 700 709 -701 opportunity 1 710 701 710 -702 opportunity 1 711 702 711 -703 opportunity 1 712 703 712 -704 opportunity 2 713 704 713 -705 opportunity 1 714 705 714 -706 opportunity 2 715 706 715 -707 opportunity 149 716 707 716 -708 opportunity 61 717 708 717 -709 opportunity 126 718 709 718 -710 opportunity 79 719 710 719 -711 opportunity 39 720 711 720 -712 opportunity 39 721 712 721 -713 opportunity 127 722 713 722 -714 opportunity 10 723 714 723 -715 opportunity 147 724 715 724 -716 opportunity 65 725 716 725 -717 opportunity 19 726 717 726 -718 opportunity 107 727 718 727 -719 opportunity 31 728 719 728 -720 opportunity 31 729 720 729 -721 opportunity 31 730 721 730 -722 opportunity 89 731 722 731 -723 opportunity 133 732 723 732 -724 opportunity 133 733 724 733 -725 opportunity 34 734 725 734 -726 opportunity 157 735 726 735 -727 opportunity 23 736 727 736 -728 opportunity 31 737 728 737 -729 opportunity 31 738 729 738 -730 opportunity 31 739 730 739 -731 opportunity 132 740 731 740 -732 opportunity 19 741 732 741 -733 opportunity 132 742 733 742 -734 opportunity 119 743 734 743 -735 opportunity 119 744 735 744 -736 opportunity 3 745 736 745 -737 opportunity 144 746 737 746 -738 opportunity 100 747 738 747 -739 opportunity 73 748 739 748 -740 opportunity 160 749 740 749 -741 opportunity 183 750 741 750 -742 opportunity 183 751 742 751 -743 opportunity 183 752 743 752 -744 opportunity 79 753 744 753 -745 opportunity 18 754 745 754 -746 opportunity 23 755 746 755 -747 opportunity 47 756 747 756 -748 opportunity 166 757 748 757 -749 opportunity 19 758 749 758 -750 opportunity 107 759 750 759 -751 opportunity 146 760 751 760 -752 opportunity 2 761 752 761 -753 opportunity 128 762 753 762 -754 opportunity 188 763 754 763 -755 opportunity 61 764 755 764 -756 opportunity 146 765 756 765 -757 opportunity 19 766 757 766 -758 opportunity 160 767 758 767 -759 opportunity 68 768 759 768 -760 opportunity 29 769 760 769 -761 opportunity 159 770 761 770 -762 opportunity 159 771 762 771 -763 opportunity 93 772 763 772 -764 opportunity 31 773 764 773 -765 opportunity 61 774 765 774 -766 opportunity 32 775 766 775 -767 opportunity 120 776 767 776 -768 opportunity 121 777 768 777 -769 opportunity 121 778 769 778 -770 opportunity 48 779 770 779 -771 opportunity 1 780 771 780 -772 opportunity 129 781 772 781 -773 opportunity 129 782 773 782 -774 opportunity 38 783 774 783 -775 opportunity 174 784 775 784 -776 opportunity 129 785 776 785 -777 opportunity 146 786 777 786 -778 opportunity 129 787 778 787 -779 opportunity 146 788 779 788 -780 opportunity 129 789 780 789 -781 opportunity 182 790 781 790 -782 opportunity 141 791 782 791 -783 opportunity 146 792 783 792 -784 opportunity 71 793 784 793 -785 opportunity 117 794 785 794 -786 opportunity 79 795 786 795 -787 opportunity 1 796 787 796 -788 opportunity 11 797 788 797 -789 opportunity 165 798 789 798 -790 opportunity 58 799 790 799 -791 opportunity 117 800 791 800 -792 opportunity 48 801 792 801 -793 opportunity 136 802 793 802 -794 opportunity 61 803 794 803 -795 opportunity 121 804 795 804 -796 opportunity 128 805 796 805 -797 volunteer 1 806 797 806 -798 volunteer 1 807 798 807 -799 volunteer 1 808 799 808 -800 volunteer 1 809 800 809 -801 volunteer 1 810 801 810 -802 volunteer 1 811 802 811 -803 volunteer 1 812 803 812 -804 volunteer 1 813 804 813 -805 volunteer 1 814 805 814 -806 volunteer 1 815 806 815 -807 volunteer 1 816 807 816 -808 volunteer 1 817 808 817 -809 volunteer 1 818 809 818 -810 volunteer 1 819 810 819 -811 volunteer 1 820 811 820 -812 volunteer 1 821 812 821 -813 volunteer 1 822 813 822 -814 volunteer 1 823 814 823 -815 volunteer 1 824 815 824 -816 volunteer 1 825 816 825 -817 volunteer 1 826 817 826 -818 volunteer 1 827 818 827 -819 volunteer 1 828 819 828 -820 volunteer 1 829 820 829 -821 volunteer 1 830 821 830 -822 volunteer 1 831 822 831 -823 volunteer 1 832 823 832 -824 volunteer 1 833 824 833 -825 volunteer 1 834 825 834 -826 volunteer 1 835 826 835 -827 volunteer 1 836 827 836 -828 volunteer 1 837 828 837 -829 volunteer 1 838 829 838 -830 volunteer 1 839 830 839 -831 volunteer 1 840 831 840 -832 volunteer 1 841 832 841 -833 volunteer 1 842 833 842 -834 volunteer 1 843 834 843 -835 volunteer 1 844 835 844 -836 volunteer 1 845 836 845 -837 volunteer 1 846 837 846 -838 volunteer 1 847 838 847 -839 volunteer 1 848 839 848 -840 volunteer 1 849 840 849 -841 volunteer 1 850 841 850 -842 volunteer 1 851 842 851 -843 volunteer 1 852 843 852 -844 volunteer 1 853 844 853 -845 volunteer 1 854 845 854 -846 volunteer 1 855 846 855 -847 volunteer 1 856 847 856 -848 volunteer 1 857 848 857 -849 volunteer 1 858 849 858 -850 volunteer 1 859 850 859 -851 volunteer 1 860 851 860 -852 volunteer 1 861 852 861 -853 volunteer 1 862 853 862 -854 volunteer 1 863 854 863 -855 volunteer 1 864 855 864 -856 volunteer 1 865 856 865 -857 volunteer 1 866 857 866 -858 volunteer 1 867 858 867 -859 volunteer 1 868 859 868 -860 volunteer 1 869 860 869 -861 volunteer 1 870 861 870 -862 volunteer 1 871 862 871 -863 volunteer 1 872 863 872 -864 volunteer 1 873 864 873 -865 volunteer 1 874 865 874 -866 volunteer 65 875 866 875 -867 volunteer 1 876 867 876 -868 volunteer 1 877 868 877 -869 volunteer 1 878 869 878 -870 volunteer 1 879 870 879 -871 volunteer 1 880 871 880 -872 volunteer 1 881 872 881 -873 volunteer 1 882 873 882 -874 volunteer 1 883 874 883 -875 volunteer 1 884 875 884 -876 volunteer 1 885 876 885 -877 volunteer 1 886 877 886 -878 volunteer 1 887 878 887 -879 volunteer 1 888 879 888 -880 volunteer 1 889 880 889 -881 volunteer 1 890 881 890 -882 volunteer 1 891 882 891 -883 volunteer 1 892 883 892 -884 volunteer 1 893 884 893 -885 volunteer 1 894 885 894 -886 volunteer 1 895 886 895 -887 volunteer 1 896 887 896 -888 volunteer 1 897 888 897 -889 volunteer 1 898 889 898 -890 volunteer 1 899 890 899 -891 volunteer 1 900 891 900 -892 volunteer 1 901 892 901 -893 volunteer 1 902 893 902 -894 volunteer 1 903 894 903 -895 volunteer 1 904 895 904 -896 volunteer 1 905 896 905 -897 volunteer 1 906 897 906 -898 volunteer 140 907 898 907 -899 volunteer 1 908 899 908 -900 volunteer 1 909 900 909 -901 volunteer 1 910 901 910 -902 volunteer 1 911 902 911 -903 volunteer 1 912 903 912 -904 volunteer 1 913 904 913 -905 volunteer 1 914 905 914 -906 volunteer 1 915 906 915 -907 volunteer 1 916 907 916 -908 volunteer 1 917 908 917 -909 volunteer 1 918 909 918 -910 volunteer 1 919 910 919 -911 volunteer 1 920 911 920 -912 volunteer 1 921 912 921 -913 volunteer 104 922 913 922 -914 volunteer 1 923 914 923 -915 volunteer 1 924 915 924 -916 volunteer 1 925 916 925 -917 volunteer 1 926 917 926 -918 volunteer 1 927 918 927 -919 volunteer 1 928 919 928 -920 volunteer 1 929 920 929 -921 volunteer 1 930 921 930 -922 volunteer 1 931 922 931 -923 volunteer 1 932 923 932 -924 volunteer 1 933 924 933 -925 volunteer 1 934 925 934 -926 volunteer 1 935 926 935 -927 volunteer 1 936 927 936 -928 volunteer 1 937 928 937 -929 volunteer 1 938 929 938 -930 volunteer 1 939 930 939 -931 volunteer 1 940 931 940 -932 volunteer 1 941 932 941 -933 volunteer 1 942 933 942 -934 volunteer 1 943 934 943 -935 volunteer 1 944 935 944 -936 volunteer 1 945 936 945 -937 volunteer 1 946 937 946 -938 volunteer 1 947 938 947 -939 volunteer 1 948 939 948 -940 volunteer 1 949 940 949 -941 volunteer 1 950 941 950 -942 volunteer 1 951 942 951 -943 volunteer 1 952 943 952 -944 volunteer 1 953 944 953 -945 volunteer 1 954 945 954 -946 volunteer 1 955 946 955 -947 volunteer 1 956 947 956 -948 volunteer 1 957 948 957 -949 volunteer 1 958 949 958 -950 volunteer 1 959 950 959 -951 volunteer 1 960 951 960 -952 volunteer 60 961 952 961 -953 volunteer 1 962 953 962 -954 volunteer 1 963 954 963 -955 volunteer 4 964 955 964 -956 volunteer 1 965 956 965 -957 volunteer 1 966 957 966 -958 volunteer 1 967 958 967 -959 volunteer 1 968 959 968 -960 volunteer 1 969 960 969 -961 volunteer 1 970 961 970 -962 volunteer 1 971 962 971 -963 volunteer 1 972 963 972 -964 volunteer 1 973 964 973 -965 volunteer 1 974 965 974 -966 volunteer 1 975 966 975 -967 volunteer 1 976 967 976 -968 volunteer 1 977 968 977 -969 volunteer 1 978 969 978 -970 volunteer 1 979 970 979 -971 volunteer 1 980 971 980 -972 volunteer 1 981 972 981 -973 volunteer 1 982 973 982 -974 volunteer 1 983 974 983 -975 volunteer 1 984 975 984 -976 volunteer 1 985 976 985 -977 volunteer 1 986 977 986 -978 volunteer 1 987 978 987 -979 volunteer 1 988 979 988 -980 volunteer 1 989 980 989 -981 volunteer 1 990 981 990 -982 volunteer 1 991 982 991 -983 volunteer 1 992 983 992 -984 volunteer 1 993 984 993 -985 volunteer 1 994 985 994 -986 volunteer 1 995 986 995 -987 volunteer 1 996 987 996 -988 volunteer 1 997 988 997 -989 volunteer 1 998 989 998 -990 volunteer 1 999 990 999 -991 volunteer 1 1000 991 1000 -992 volunteer 1 1001 992 1001 -993 volunteer 1 1002 993 1002 -994 volunteer 1 1003 994 1003 -995 volunteer 1 1004 995 1004 -996 volunteer 1 1005 996 1005 -997 volunteer 1 1006 997 1006 -998 volunteer 1 1007 998 1007 -999 volunteer 1 1008 999 1008 -1000 volunteer 1 1009 1000 1009 -1001 volunteer 1 1010 1001 1010 -1002 volunteer 1 1011 1002 1011 -1003 volunteer 1 1012 1003 1012 -1004 volunteer 1 1013 1004 1013 -1005 volunteer 1 1014 1005 1014 -1006 volunteer 1 1015 1006 1015 -1007 volunteer 1 1016 1007 1016 -1008 volunteer 1 1017 1008 1017 -1009 volunteer 1 1018 1009 1018 -1010 volunteer 1 1019 1010 1019 -1011 volunteer 1 1020 1011 1020 -1012 volunteer 1 1021 1012 1021 -1013 volunteer 102 1022 1013 1022 -1014 volunteer 1 1023 1014 1023 -1015 volunteer 1 1024 1015 1024 -1016 volunteer 1 1025 1016 1025 -1017 volunteer 1 1026 1017 1026 -1018 volunteer 1 1027 1018 1027 -1019 volunteer 1 1028 1019 1028 -1020 volunteer 1 1029 1020 1029 -1021 volunteer 1 1030 1021 1030 -1022 volunteer 1 1031 1022 1031 -1023 volunteer 1 1032 1023 1032 -1024 volunteer 1 1033 1024 1033 -1025 volunteer 1 1034 1025 1034 -1026 volunteer 1 1035 1026 1035 -1027 volunteer 1 1036 1027 1036 -1028 volunteer 1 1037 1028 1037 -1029 volunteer 99 1038 1029 1038 -1030 volunteer 1 1039 1030 1039 -1031 volunteer 1 1040 1031 1040 -1032 volunteer 1 1041 1032 1041 -1033 volunteer 1 1042 1033 1042 -1034 volunteer 1 1043 1034 1043 -1035 volunteer 1 1044 1035 1044 -1036 volunteer 1 1045 1036 1045 -1037 volunteer 1 1046 1037 1046 -1038 volunteer 1 1047 1038 1047 -1039 volunteer 1 1048 1039 1048 -1040 volunteer 1 1049 1040 1049 -1041 volunteer 1 1050 1041 1050 -1042 volunteer 1 1051 1042 1051 -1043 volunteer 1 1052 1043 1052 -1044 volunteer 1 1053 1044 1053 -1045 volunteer 1 1054 1045 1054 -1046 volunteer 1 1055 1046 1055 -1047 volunteer 1 1056 1047 1056 -1048 volunteer 1 1057 1048 1057 -1049 volunteer 1 1058 1049 1058 -1050 volunteer 1 1059 1050 1059 -1051 volunteer 1 1060 1051 1060 -1052 volunteer 1 1061 1052 1061 -1053 volunteer 1 1062 1053 1062 -1054 volunteer 1 1063 1054 1063 -1055 volunteer 1 1064 1055 1064 -1056 volunteer 1 1065 1056 1065 -1057 volunteer 1 1066 1057 1066 -1058 volunteer 1 1067 1058 1067 -1059 volunteer 1 1068 1059 1068 -1060 volunteer 1 1069 1060 1069 -1061 volunteer 1 1070 1061 1070 -1062 volunteer 1 1071 1062 1071 -1063 volunteer 1 1072 1063 1072 -1064 volunteer 1 1073 1064 1073 -1065 volunteer 1 1074 1065 1074 -1066 volunteer 1 1075 1066 1075 -1067 volunteer 1 1076 1067 1076 -1068 volunteer 1 1077 1068 1077 -1069 volunteer 1 1078 1069 1078 -1070 volunteer 1 1079 1070 1079 -1071 volunteer 1 1080 1071 1080 -1072 volunteer 1 1081 1072 1081 -1073 volunteer 1 1082 1073 1082 -1074 volunteer 1 1083 1074 1083 -1075 volunteer 1 1084 1075 1084 -1076 volunteer 1 1085 1076 1085 -1077 volunteer 1 1086 1077 1086 -1078 volunteer 1 1087 1078 1087 -1079 volunteer 1 1088 1079 1088 -1080 volunteer 1 1089 1080 1089 -1081 volunteer 1 1090 1081 1090 -1082 volunteer 1 1091 1082 1091 -1083 volunteer 1 1092 1083 1092 -1084 volunteer 1 1093 1084 1093 -1085 volunteer 1 1094 1085 1094 -1086 volunteer 1 1095 1086 1095 -1087 volunteer 1 1096 1087 1096 -1088 volunteer 1 1097 1088 1097 -1089 volunteer 1 1098 1089 1098 -1090 volunteer 1 1099 1090 1099 -1091 volunteer 1 1100 1091 1100 -1092 volunteer 1 1101 1092 1101 -1093 volunteer 1 1102 1093 1102 -1094 volunteer 1 1103 1094 1103 -1095 volunteer 1 1104 1095 1104 -1096 volunteer 1 1105 1096 1105 -1097 volunteer 1 1106 1097 1106 -1098 volunteer 1 1107 1098 1107 -1099 volunteer 1 1108 1099 1108 -1100 volunteer 1 1109 1100 1109 -1101 volunteer 1 1110 1101 1110 -1102 volunteer 102 1111 1102 1111 -1103 volunteer 144 1112 1103 1112 -1104 volunteer 61 1113 1104 1113 -1105 volunteer 1 1114 1105 1114 -1106 volunteer 1 1115 1106 1115 -1107 volunteer 11 1116 1107 1116 -1108 volunteer 125 1117 1108 1117 -1109 volunteer 16 1118 1109 1118 -1110 volunteer 145 1119 1110 1119 -1111 volunteer 71 1120 1111 1120 -1112 volunteer 103 1121 1112 1121 -1113 volunteer 1 1122 1113 1122 -1114 volunteer 9 1123 1114 1123 -1115 volunteer 29 1124 1115 1124 -1116 volunteer 21 1125 1116 1125 -1117 volunteer 66 1126 1117 1126 -1118 volunteer 128 1127 1118 1127 -1119 volunteer 115 1128 1119 1128 -1120 volunteer 86 1129 1120 1129 -1121 volunteer 54 1130 1121 1130 -1122 volunteer 114 1131 1122 1131 -1123 volunteer 10 1132 1123 1132 -1124 volunteer 140 1133 1124 1133 -1125 volunteer 189 1134 1125 1134 -1126 volunteer 64 1135 1126 1135 -1127 volunteer 143 1136 1127 1136 -1128 volunteer 54 1137 1128 1137 -1129 volunteer 141 1138 1129 1138 -1130 volunteer 22 1139 1130 1139 -1131 volunteer 142 1140 1131 1140 -1132 volunteer 95 1141 1132 1141 -1133 volunteer 8 1142 1133 1142 -1134 volunteer 101 1143 1134 1143 -1135 volunteer 20 1144 1135 1144 -1136 volunteer 151 1145 1136 1145 -1137 volunteer 2 1146 1137 1146 -1138 volunteer 6 1147 1138 1147 -1139 volunteer 81 1148 1139 1148 -1140 volunteer 62 1149 1140 1149 -1141 volunteer 62 1150 1141 1150 -1142 volunteer 8 1151 1142 1151 -1143 volunteer 2 1152 1143 1152 -1144 volunteer 103 1153 1144 1153 -1145 volunteer 139 1154 1145 1154 -1146 volunteer 69 1155 1146 1155 -1147 volunteer 141 1156 1147 1156 -1148 volunteer 186 1157 1148 1157 -1149 volunteer 8 1158 1149 1158 -1150 volunteer 105 1159 1150 1159 -1151 volunteer 147 1160 1151 1160 -1152 volunteer 59 1161 1152 1161 -1153 volunteer 51 1162 1153 1162 -1154 volunteer 54 1163 1154 1163 -1155 volunteer 55 1164 1155 1164 -1156 volunteer 18 1165 1156 1165 -1157 volunteer 74 1166 1157 1166 -1158 volunteer 29 1167 1158 1167 -1159 volunteer 43 1168 1159 1168 -1160 volunteer 26 1169 1160 1169 -1161 volunteer 133 1170 1161 1170 -1162 volunteer 190 1171 1162 1171 -1163 volunteer 27 1172 1163 1172 -1164 volunteer 1 1173 1164 1173 -1165 volunteer 62 1174 1165 1174 -1166 volunteer 7 1175 1166 1175 -1167 volunteer 69 1176 1167 1176 -1168 volunteer 6 1177 1168 1177 -1169 volunteer 6 1178 1169 1178 -1170 volunteer 6 1179 1170 1179 -1171 volunteer 127 1180 1171 1180 -1172 volunteer 7 1181 1172 1181 -1173 volunteer 39 1182 1173 1182 -1174 volunteer 23 1183 1174 1183 -1175 volunteer 53 1184 1175 1184 -1176 volunteer 9 1185 1176 1185 -1177 volunteer 144 1186 1177 1186 -1178 volunteer 47 1187 1178 1187 -1179 volunteer 60 1188 1179 1188 -1180 volunteer 130 1189 1180 1189 -1181 volunteer 1 1190 1181 1190 -1182 volunteer 62 1191 1182 1191 -1183 volunteer 65 1192 1183 1192 -1184 volunteer 146 1193 1184 1193 -1185 volunteer 189 1194 1185 1194 -1186 volunteer 168 1195 1186 1195 -1187 volunteer 94 1196 1187 1196 -1188 volunteer 49 1197 1188 1197 -1189 volunteer 50 1198 1189 1198 -1190 volunteer 104 1199 1190 1199 -1191 volunteer 53 1200 1191 1200 -1192 volunteer 54 1201 1192 1201 -1193 volunteer 76 1202 1193 1202 -1194 volunteer 1 1203 1194 1203 -1195 volunteer 44 1204 1195 1204 -1196 volunteer 46 1205 1196 1205 -1197 volunteer 46 1206 1197 1206 -1198 volunteer 45 1207 1198 1207 -1199 volunteer 65 1208 1199 1208 -1200 volunteer 9 1209 1200 1209 -1201 volunteer 117 1210 1201 1210 -1202 volunteer 27 1211 1202 1211 -1203 volunteer 50 1212 1203 1212 -1204 volunteer 101 1213 1204 1213 -1205 volunteer 1 1214 1205 1214 -1206 volunteer 65 1215 1206 1215 -1207 volunteer 6 1216 1207 1216 -1208 volunteer 50 1217 1208 1217 -1209 volunteer 120 1218 1209 1218 -1210 volunteer 32 1219 1210 1219 -1211 volunteer 183 1220 1211 1220 -1212 volunteer 141 1221 1212 1221 -1213 volunteer 147 1222 1213 1222 -1214 volunteer 76 1223 1214 1223 -1215 volunteer 108 1224 1215 1224 -1216 volunteer 9 1225 1216 1225 -1217 volunteer 18 1226 1217 1226 -1218 volunteer 60 1227 1218 1227 -1219 volunteer 127 1228 1219 1228 -1220 volunteer 67 1229 1220 1229 -1221 volunteer 139 1230 1221 1230 -1222 volunteer 108 1231 1222 1231 -1223 volunteer 65 1232 1223 1232 -1224 volunteer 131 1233 1224 1233 -1225 volunteer 57 1234 1225 1234 -1226 volunteer 143 1235 1226 1235 -1227 volunteer 63 1236 1227 1236 -1228 volunteer 179 1237 1228 1237 -1229 volunteer 64 1238 1229 1238 -1230 volunteer 101 1239 1230 1239 -1231 volunteer 6 1240 1231 1240 -1232 volunteer 57 1241 1232 1241 -1233 volunteer 2 1242 1233 1242 -1234 volunteer 77 1243 1234 1243 -1235 volunteer 8 1244 1235 1244 -1236 volunteer 59 1245 1236 1245 -1237 volunteer 63 1246 1237 1246 -1238 volunteer 5 1247 1238 1247 -1239 volunteer 23 1248 1239 1248 -1240 volunteer 66 1249 1240 1249 -1241 volunteer 28 1250 1241 1250 -1242 volunteer 8 1251 1242 1251 -1243 volunteer 58 1252 1243 1252 -1244 volunteer 59 1253 1244 1253 -1245 volunteer 9 1254 1245 1254 -1246 volunteer 43 1255 1246 1255 -1247 volunteer 81 1256 1247 1256 -1248 volunteer 60 1257 1248 1257 -1249 volunteer 55 1258 1249 1258 -1250 volunteer 58 1259 1250 1259 -1251 volunteer 26 1260 1251 1260 -1252 volunteer 59 1261 1252 1261 -1253 volunteer 178 1262 1253 1262 -1254 volunteer 7 1263 1254 1263 -1255 volunteer 59 1264 1255 1264 -1256 volunteer 185 1265 1256 1265 -1257 volunteer 19 1266 1257 1266 -1258 volunteer 98 1267 1258 1267 -1259 volunteer 11 1268 1259 1268 -1260 volunteer 62 1269 1260 1269 -1261 volunteer 6 1270 1261 1270 -1262 volunteer 1 1271 1262 1271 -1263 volunteer 129 1272 1263 1272 -1264 volunteer 59 1273 1264 1273 -1265 volunteer 154 1274 1265 1274 -1266 volunteer 23 1275 1266 1275 -1267 volunteer 26 1276 1267 1276 -1268 volunteer 57 1277 1268 1277 -1269 volunteer 163 1278 1269 1278 -1270 volunteer 144 1279 1270 1279 -1271 volunteer 56 1280 1271 1280 -1272 volunteer 1 1281 1272 1281 -1273 volunteer 60 1282 1273 1282 -1274 volunteer 23 1283 1274 1283 -1275 volunteer 177 1284 1275 1284 -1276 volunteer 148 1285 1276 1285 -1277 volunteer 162 1286 1277 1286 -1278 volunteer 144 1287 1278 1287 -1279 volunteer 85 1288 1279 1288 -1280 volunteer 9 1289 1280 1289 -1281 volunteer 51 1290 1281 1290 -1282 volunteer 36 1291 1282 1291 -1283 volunteer 10 1292 1283 1292 -1284 volunteer 141 1293 1284 1293 -1285 volunteer 147 1294 1285 1294 -1286 volunteer 110 1295 1286 1295 -1287 volunteer 52 1296 1287 1296 -1288 volunteer 18 1297 1288 1297 -1289 volunteer 172 1298 1289 1298 -1290 volunteer 143 1299 1290 1299 -1291 volunteer 116 1300 1291 1300 -1292 volunteer 27 1301 1292 1301 -1293 volunteer 164 1302 1293 1302 -1294 volunteer 113 1303 1294 1303 -1295 volunteer 153 1304 1295 1304 -1296 volunteer 28 1305 1296 1305 -1297 volunteer 11 1306 1297 1306 -1298 volunteer 139 1307 1298 1307 -1299 volunteer 64 1308 1299 1308 -1300 volunteer 44 1309 1300 1309 -1301 volunteer 65 1310 1301 1310 -1302 volunteer 60 1311 1302 1311 -1303 volunteer 164 1312 1303 1312 -1304 volunteer 8 1313 1304 1313 -1305 volunteer 24 1314 1305 1314 -1306 volunteer 11 1315 1306 1315 -1307 volunteer 8 1316 1307 1316 -1308 volunteer 1 1317 1308 1317 -1309 volunteer 189 1318 1309 1318 -1310 volunteer 192 1319 1310 1319 -1311 volunteer 4 1320 1311 1320 -1312 volunteer 147 1321 1312 1321 -1313 volunteer 106 1322 1313 1322 -1314 volunteer 90 1323 1314 1323 -1315 volunteer 105 1324 1315 1324 -1316 volunteer 103 1325 1316 1325 -1317 volunteer 7 1326 1317 1326 -1318 volunteer 1 1327 1318 1327 -1319 volunteer 140 1328 1319 1328 -1320 volunteer 22 1329 1320 1329 -1321 volunteer 31 1330 1321 1330 -1322 volunteer 23 1331 1322 1331 -1323 volunteer 23 1332 1323 1332 -1324 volunteer 190 1333 1324 1333 -1325 volunteer 101 1334 1325 1334 -1326 volunteer 23 1335 1326 1335 -1327 volunteer 32 1336 1327 1336 -1328 volunteer 35 1337 1328 1337 -1329 volunteer 12 1338 1329 1338 -1330 volunteer 160 1339 1330 1339 -1331 volunteer 3 1340 1331 1340 -1332 volunteer 57 1341 1332 1341 -1333 volunteer 61 1342 1333 1342 -1334 volunteer 141 1343 1334 1343 -1335 volunteer 92 1344 1335 1344 -1336 volunteer 144 1345 1336 1345 -1337 volunteer 58 1346 1337 1346 -1338 volunteer 28 1347 1338 1347 -1339 volunteer 73 1348 1339 1348 -1340 volunteer 7 1349 1340 1349 -1341 volunteer 66 1350 1341 1350 -1342 volunteer 130 1351 1342 1351 -1343 volunteer 23 1352 1343 1352 -1344 volunteer 25 1353 1344 1353 -1345 volunteer 52 1354 1345 1354 -1346 volunteer 131 1355 1346 1355 -1347 volunteer 149 1356 1347 1356 -1348 volunteer 8 1357 1348 1357 -1349 volunteer 9 1358 1349 1358 -1350 volunteer 81 1359 1350 1359 -1351 volunteer 18 1360 1351 1360 -1352 volunteer 97 1361 1352 1361 -1353 volunteer 70 1362 1353 1362 -1354 volunteer 168 1363 1354 1363 -1355 volunteer 3 1364 1355 1364 -1356 volunteer 100 1365 1356 1365 -1357 volunteer 11 1366 1357 1366 -1358 volunteer 4 1367 1358 1367 -1359 volunteer 164 1368 1359 1368 -1360 volunteer 58 1369 1360 1369 -1361 volunteer 25 1370 1361 1370 -1362 volunteer 164 1371 1362 1371 -1363 volunteer 1 1372 1363 1372 -1364 volunteer 28 1373 1364 1373 -1365 volunteer 7 1374 1365 1374 -1366 volunteer 21 1375 1366 1375 -1367 volunteer 26 1376 1367 1376 -1368 volunteer 28 1377 1368 1377 -1369 volunteer 9 1378 1369 1378 -1370 volunteer 28 1379 1370 1379 -1371 volunteer 13 1380 1371 1380 -1372 volunteer 67 1381 1372 1381 -1373 volunteer 15 1382 1373 1382 -1374 volunteer 59 1383 1374 1383 -1375 volunteer 7 1384 1375 1384 -1376 volunteer 69 1385 1376 1385 -1377 volunteer 25 1386 1377 1386 -1378 volunteer 35 1387 1378 1387 -1379 volunteer 18 1388 1379 1388 -1380 volunteer 60 1389 1380 1389 -1381 volunteer 36 1390 1381 1390 -1382 volunteer 6 1391 1382 1391 -1383 volunteer 13 1392 1383 1392 -1384 volunteer 53 1393 1384 1393 -1385 volunteer 65 1394 1385 1394 -1386 volunteer 41 1395 1386 1395 -1387 volunteer 63 1396 1387 1396 -1388 volunteer 52 1397 1388 1397 -1389 volunteer 39 1398 1389 1398 -1390 volunteer 71 1399 1390 1399 -1391 volunteer 10 1400 1391 1400 -1392 volunteer 77 1401 1392 1401 -1393 volunteer 56 1402 1393 1402 -1394 volunteer 63 1403 1394 1403 -1395 volunteer 13 1404 1395 1404 -1396 volunteer 3 1405 1396 1405 -1397 volunteer 54 1406 1397 1406 -1398 volunteer 50 1407 1398 1407 -1399 volunteer 185 1408 1399 1408 -1400 volunteer 15 1409 1400 1409 -1401 volunteer 9 1410 1401 1410 -1402 volunteer 20 1411 1402 1411 -1403 volunteer 77 1412 1403 1412 -1404 volunteer 39 1413 1404 1413 -1405 volunteer 137 1414 1405 1414 -1406 volunteer 25 1415 1406 1415 -1407 volunteer 167 1416 1407 1416 -1408 volunteer 166 1417 1408 1417 -1409 volunteer 166 1418 1409 1418 -1410 volunteer 109 1419 1410 1419 -1411 volunteer 175 1420 1411 1420 -1412 volunteer 148 1421 1412 1421 -1413 volunteer 61 1422 1413 1422 -1414 volunteer 151 1423 1414 1423 -1415 volunteer 65 1424 1415 1424 -1416 volunteer 10 1425 1416 1425 -1417 volunteer 2 1426 1417 1426 -1418 volunteer 77 1427 1418 1427 -1419 volunteer 13 1428 1419 1428 -1420 volunteer 146 1429 1420 1429 -1421 volunteer 65 1430 1421 1430 -1422 volunteer 121 1431 1422 1431 -1423 volunteer 71 1432 1423 1432 -1424 volunteer 186 1433 1424 1433 -1425 volunteer 79 1434 1425 1434 -1426 volunteer 142 1435 1426 1435 -1427 volunteer 11 1436 1427 1436 -1428 volunteer 139 1437 1428 1437 -1429 volunteer 147 1438 1429 1438 -1430 volunteer 50 1439 1430 1439 -1431 volunteer 63 1440 1431 1440 -1432 volunteer 7 1441 1432 1441 -1433 volunteer 3 1442 1433 1442 -1434 volunteer 70 1443 1434 1443 -1435 volunteer 4 1444 1435 1444 -1436 volunteer 33 1445 1436 1445 -1437 volunteer 66 1446 1437 1446 -1438 volunteer 33 1447 1438 1447 -1439 volunteer 13 1448 1439 1448 -1440 volunteer 181 1449 1440 1449 -1441 volunteer 14 1450 1441 1450 -1442 volunteer 22 1451 1442 1451 -1443 volunteer 23 1452 1443 1452 -1444 volunteer 66 1453 1444 1453 -1445 volunteer 54 1454 1445 1454 -1446 volunteer 151 1455 1446 1455 -1447 volunteer 83 1456 1447 1456 -1448 volunteer 4 1457 1448 1457 -1449 volunteer 4 1458 1449 1458 -1450 volunteer 147 1459 1450 1459 -1451 volunteer 6 1460 1451 1460 -1452 volunteer 60 1461 1452 1461 -1453 volunteer 67 1462 1453 1462 -1454 volunteer 42 1463 1454 1463 -1455 volunteer 144 1464 1455 1464 -1456 volunteer 39 1465 1456 1465 -1457 volunteer 91 1466 1457 1466 -1458 volunteer 14 1467 1458 1467 -1459 volunteer 91 1468 1459 1468 -1460 volunteer 130 1469 1460 1469 -1461 volunteer 146 1470 1461 1470 -1462 volunteer 21 1471 1462 1471 -1463 volunteer 151 1472 1463 1472 -1464 volunteer 17 1473 1464 1473 -1465 volunteer 18 1474 1465 1474 -1466 volunteer 7 1475 1466 1475 -1467 volunteer 192 1476 1467 1476 -1468 volunteer 125 1477 1468 1477 -1469 volunteer 40 1478 1469 1478 -1470 volunteer 64 1479 1470 1479 -1471 volunteer 49 1480 1471 1480 -1472 volunteer 101 1481 1472 1481 -1473 volunteer 62 1482 1473 1482 -1474 volunteer 3 1483 1474 1483 -1475 volunteer 8 1484 1475 1484 -1476 volunteer 67 1485 1476 1485 -1477 volunteer 124 1486 1477 1486 -1478 volunteer 52 1487 1478 1487 -1479 volunteer 17 1488 1479 1488 -1480 volunteer 69 1489 1480 1489 -1481 volunteer 54 1490 1481 1490 -1482 volunteer 21 1491 1482 1491 -1483 volunteer 136 1492 1483 1492 -1484 volunteer 31 1493 1484 1493 -1485 volunteer 13 1494 1485 1494 -1486 volunteer 61 1495 1486 1495 -1487 volunteer 131 1496 1487 1496 -1488 volunteer 20 1497 1488 1497 -1489 volunteer 67 1498 1489 1498 -1490 volunteer 1 1499 1490 1499 -1491 volunteer 177 1500 1491 1500 -1492 volunteer 64 1501 1492 1501 -1493 volunteer 21 1502 1493 1502 -1494 volunteer 121 1503 1494 1503 -1495 volunteer 67 1504 1495 1504 -1496 volunteer 67 1505 1496 1505 -1497 volunteer 50 1506 1497 1506 -1498 volunteer 65 1507 1498 1507 -1499 volunteer 131 1508 1499 1508 -1500 volunteer 93 1509 1500 1509 -1501 volunteer 168 1510 1501 1510 -1502 volunteer 85 1511 1502 1511 -1503 volunteer 101 1512 1503 1512 -1504 volunteer 85 1513 1504 1513 -1505 volunteer 6 1514 1505 1514 -1506 volunteer 7 1515 1506 1515 -1507 volunteer 165 1516 1507 1516 -1508 volunteer 103 1517 1508 1517 -1509 volunteer 65 1518 1509 1518 -1510 volunteer 6 1519 1510 1519 -1511 volunteer 12 1520 1511 1520 -1512 volunteer 109 1521 1512 1521 -1513 volunteer 9 1522 1513 1522 -1514 volunteer 54 1523 1514 1523 -1515 volunteer 103 1524 1515 1524 -1516 volunteer 155 1525 1516 1525 -1517 volunteer 45 1526 1517 1526 -1518 volunteer 60 1527 1518 1527 -1519 volunteer 1 1528 1519 1528 -1520 volunteer 61 1529 1520 1529 -1521 volunteer 19 1530 1521 1530 -1522 volunteer 16 1531 1522 1531 -1523 volunteer 12 1532 1523 1532 -1524 volunteer 145 1533 1524 1533 -1525 volunteer 64 1534 1525 1534 -1526 volunteer 186 1535 1526 1535 -1527 volunteer 4 1536 1527 1536 -1528 volunteer 144 1537 1528 1537 -1529 volunteer 123 1538 1529 1538 -1530 volunteer 8 1539 1530 1539 -1531 volunteer 45 1540 1531 1540 -1532 volunteer 124 1541 1532 1541 -1533 volunteer 144 1542 1533 1542 -1534 volunteer 160 1543 1534 1543 -1535 volunteer 22 1544 1535 1544 -1536 volunteer 141 1545 1536 1545 -1537 volunteer 21 1546 1537 1546 -1538 volunteer 18 1547 1538 1547 -1539 volunteer 140 1548 1539 1548 -1540 volunteer 97 1549 1540 1549 -1541 volunteer 105 1550 1541 1550 -1542 volunteer 57 1551 1542 1551 -1543 volunteer 56 1552 1543 1552 -1544 volunteer 23 1553 1544 1553 -1545 volunteer 8 1554 1545 1554 -1546 volunteer 54 1555 1546 1555 -1547 volunteer 40 1556 1547 1556 -1548 volunteer 15 1557 1548 1557 -1549 volunteer 63 1558 1549 1558 -1550 volunteer 114 1559 1550 1559 -1551 volunteer 53 1560 1551 1560 -1552 volunteer 52 1561 1552 1561 -1553 volunteer 27 1562 1553 1562 -1554 volunteer 191 1563 1554 1563 -1555 volunteer 35 1564 1555 1564 -1556 volunteer 186 1565 1556 1565 -1557 volunteer 131 1566 1557 1566 -1558 volunteer 144 1567 1558 1567 -1559 volunteer 78 1568 1559 1568 -1560 volunteer 61 1569 1560 1569 -1561 volunteer 37 1570 1561 1570 -1562 volunteer 60 1571 1562 1571 -1563 volunteer 28 1572 1563 1572 -1564 volunteer 62 1573 1564 1573 -1565 volunteer 165 1574 1565 1574 -1566 volunteer 2 1575 1566 1575 -1567 volunteer 25 1576 1567 1576 -1568 volunteer 66 1577 1568 1577 -1569 volunteer 27 1578 1569 1578 -1570 volunteer 69 1579 1570 1579 -1571 volunteer 141 1580 1571 1580 -1572 volunteer 77 1581 1572 1581 -1573 volunteer 144 1582 1573 1582 -1574 volunteer 150 1583 1574 1583 -1575 volunteer 7 1584 1575 1584 -1576 volunteer 2 1585 1576 1585 -1577 volunteer 31 1586 1577 1586 -1578 volunteer 18 1587 1578 1587 -1579 volunteer 25 1588 1579 1588 -1580 volunteer 47 1589 1580 1589 -1581 volunteer 12 1590 1581 1590 -1582 volunteer 129 1591 1582 1591 -1583 volunteer 102 1592 1583 1592 -1584 volunteer 65 1593 1584 1593 -1585 volunteer 94 1594 1585 1594 -1586 volunteer 10 1595 1586 1595 -1587 volunteer 29 1596 1587 1596 -1588 volunteer 128 1597 1588 1597 -1589 volunteer 128 1598 1589 1598 -1590 volunteer 5 1599 1590 1599 -1591 volunteer 192 1600 1591 1600 -1592 volunteer 192 1601 1592 1601 -1593 volunteer 39 1602 1593 1602 -1594 volunteer 121 1603 1594 1603 -1595 volunteer 39 1604 1595 1604 -1596 volunteer 66 1605 1596 1605 -1597 volunteer 102 1606 1597 1606 -1598 volunteer 36 1607 1598 1607 -1599 volunteer 63 1608 1599 1608 -1600 volunteer 122 1609 1600 1609 -1601 volunteer 182 1610 1601 1610 -1602 volunteer 120 1611 1602 1611 -1603 volunteer 2 1612 1603 1612 -1604 volunteer 72 1613 1604 1613 -1605 volunteer 72 1614 1605 1614 -1606 volunteer 101 1615 1606 1615 -1607 volunteer 82 1616 1607 1616 -1608 volunteer 63 1617 1608 1617 -1609 volunteer 19 1618 1609 1618 -1610 volunteer 36 1619 1610 1619 -1611 volunteer 114 1620 1611 1620 -1612 volunteer 128 1621 1612 1621 -1613 volunteer 15 1622 1613 1622 -1614 volunteer 8 1623 1614 1623 -1615 volunteer 1 1624 1615 1624 -1616 volunteer 38 1625 1616 1625 -1617 volunteer 108 1626 1617 1626 -1618 volunteer 146 1627 1618 1627 -1619 volunteer 140 1628 1619 1628 -1620 volunteer 146 1629 1620 1629 -1621 volunteer 192 1630 1621 1630 -1622 volunteer 122 1631 1622 1631 -1623 volunteer 188 1632 1623 1632 -1624 volunteer 122 1633 1624 1633 -1625 volunteer 159 1634 1625 1634 -1626 volunteer 39 1635 1626 1635 -1627 volunteer 148 1636 1627 1636 -1628 volunteer 127 1637 1628 1637 -1629 volunteer 201 1638 1629 1638 -\. - - --- --- Data for Name: district; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.district (id, title) FROM stdin; -1 Mitte -2 Friedrichshain-Kreuzberg -3 Pankow -4 Charlottenburg-Wilmersdorf -5 Spandau -6 Steglitz-Zehlendorf -7 Tempelhof-Schöneberg -8 Neukölln -9 Treptow-Köpenick -10 Marzahn-Hellersdorf -11 Lichtenberg -12 Reinickendorf -13 Hellersdorf -14 Treptow -15 Marzahn -16 Schöneberg -17 Tempelhof -18 Berlin -19 Friedrichshain -20 Marienfelde -21 Charlottenburg -22 Tegel -23 Köpenick -24 Moabit -25 Prenzlauer Berg -26 Zehlendorf -27 Wilmersdorf -28 Remote -29 Königs Wusterhausen -30 Kreuzberg -31 Steglitz -32 Weißensee -33 Wedding -34 Rudow -35 Potsdam -36 Remotely -37 Freidrichshain -38 Phone translation -39 Telefonisch -\. - - --- --- Data for Name: district_postcode; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.district_postcode (id, district_id, postcode_id) FROM stdin; -1 1 2 -2 1 28 -3 1 145 -4 1 3 -5 1 32 -6 1 146 -7 1 4 -8 1 47 -9 1 147 -10 1 5 -11 1 48 -12 1 149 -13 1 6 -14 1 55 -15 1 150 -16 1 21 -17 1 58 -18 1 151 -19 1 24 -20 1 141 -21 1 25 -22 1 142 -23 1 26 -24 1 143 -25 1 27 -26 1 144 -27 2 6 -28 2 57 -29 2 7 -30 2 58 -31 2 8 -32 2 59 -33 2 9 -34 2 60 -35 2 10 -36 2 62 -37 2 16 -38 2 47 -39 2 54 -40 2 55 -41 2 56 -42 3 4 -43 3 126 -44 3 139 -45 3 9 -46 3 130 -47 3 140 -48 3 10 -49 3 131 -50 3 18 -51 3 132 -52 3 19 -53 3 133 -54 3 20 -55 3 134 -56 3 21 -57 3 135 -58 3 22 -59 3 136 -60 3 23 -61 3 137 -62 3 125 -63 3 138 -64 4 25 -65 4 38 -66 4 144 -67 4 177 -68 4 29 -69 4 39 -70 4 170 -71 4 188 -72 4 30 -73 4 40 -74 4 172 -75 4 189 -76 4 31 -77 4 41 -78 4 173 -79 4 190 -80 4 32 -81 4 42 -82 4 174 -83 4 33 -84 4 43 -85 4 175 -86 4 34 -87 4 44 -88 4 176 -89 4 35 -90 4 48 -91 4 192 -92 4 36 -93 4 49 -94 4 178 -95 4 37 -96 4 51 -97 4 179 -98 5 162 -99 5 172 -100 5 163 -101 5 173 -102 5 164 -103 5 175 -104 5 165 -105 5 180 -106 5 166 -107 5 167 -108 5 168 -109 5 169 -110 5 170 -111 5 171 -112 6 76 -113 6 87 -114 6 177 -115 6 78 -116 6 88 -117 6 188 -118 6 79 -119 6 89 -120 6 189 -121 6 80 -122 6 90 -123 6 190 -124 6 81 -125 6 181 -126 6 82 -127 6 182 -128 6 83 -129 6 183 -130 6 84 -131 6 184 -132 6 85 -133 6 185 -134 6 86 -135 6 186 -136 7 43 -137 7 53 -138 7 78 -139 7 189 -140 7 44 -141 7 56 -142 7 79 -143 7 45 -144 7 70 -145 7 82 -146 7 46 -147 7 71 -148 7 88 -149 7 47 -150 7 72 -151 7 89 -152 7 48 -153 7 73 -154 7 90 -155 7 49 -156 7 74 -157 7 91 -158 7 50 -159 7 75 -160 7 92 -161 7 51 -162 7 76 -163 7 93 -164 7 52 -165 7 77 -166 7 94 -167 8 56 -168 8 69 -169 8 100 -170 8 57 -171 8 70 -172 8 61 -173 8 74 -174 8 62 -175 8 91 -176 8 63 -177 8 94 -178 8 64 -179 8 95 -180 8 65 -181 8 96 -182 8 66 -183 8 97 -184 8 67 -185 8 98 -186 8 68 -187 8 99 -188 9 101 -189 9 110 -190 9 102 -191 9 111 -192 9 191 -193 9 112 -194 9 103 -195 9 113 -196 9 104 -197 9 116 -198 9 105 -199 9 106 -200 9 107 -201 9 108 -202 9 109 -203 10 109 -204 10 123 -205 10 114 -206 10 124 -207 10 115 -208 10 116 -209 10 117 -210 10 118 -211 10 119 -212 10 120 -213 10 121 -214 10 122 -215 11 11 -216 11 128 -217 11 12 -218 11 129 -219 11 13 -220 11 14 -221 11 15 -222 11 16 -223 11 17 -224 11 125 -225 11 126 -226 11 127 -227 12 148 -228 12 158 -229 12 149 -230 12 159 -231 12 150 -232 12 160 -233 12 151 -234 12 161 -235 12 152 -236 12 171 -237 12 153 -238 12 173 -239 12 154 -240 12 155 -241 12 156 -242 12 157 -\. - - --- --- Data for Name: document; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.document (id, type, s3_key, original_name, mime_type, volunteer_id, created_at, updated_at) FROM stdin; -\. - - --- --- Data for Name: event_n4d; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.event_n4d (id, is_active, date, date_end, type, pic, location_link, rsvp_link, followup_link, address, host_name, language_id) FROM stdin; -\. - - --- --- Data for Name: event_translation; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.event_translation (id, title, subtitle, menu_title, time_str, location_comment, description, short_description, additional_title, additional_info, outro, followup_text, eventn4d_id, language_id) FROM stdin; -\. - - --- --- Data for Name: field_translation; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.field_translation (id, field_name, language_id, entity_type, entity_id, translation) FROM stdin; -1 title 1833 language 1540 German -2 title 1540 language 1540 Deutsch -3 title 1833 language 1833 English -4 title 1540 language 1833 Englisch -5 title 1833 language 345 Arabic -6 title 1540 language 345 Arabisch -7 title 1833 language 1910 Farsi/Dari -8 title 1540 language 1910 Farsi/Dari -9 title 1833 language 6644 Turkish -10 title 1540 language 6644 Türkisch -11 title 1833 language 5677 Russian -12 title 1540 language 5677 Russisch -13 title 1833 language 6769 Ukrainian -14 title 1540 language 6769 Ukrainisch -15 title 1833 language 1954 French -16 title 1540 language 1954 Französisch -17 title 1833 language 3151 Kurmanji -18 title 1540 language 3151 Kurmanci -19 title 1833 language 1200 Sorani -20 title 1540 language 1200 Sorani -21 title 1833 language 2521 Armenian -22 title 1540 language 2521 Armenisch -23 title 1833 language 618 Belarusian -24 title 1540 language 618 Weißrussisch -25 title 1833 language 1230 Chechen -26 title 1540 language 1230 Tschetschenisch -27 title 1833 language 7790 Chinese -28 title 1540 language 7790 Chinesisch -29 title 1833 language 1215 Czech -30 title 1540 language 1215 Tschechisch -31 title 1833 language 1482 Dari -32 title 1540 language 1482 Dari -33 title 1833 language 4698 Dutch -34 title 1540 language 4698 Niederländisch -35 title 1833 language 2854 Georgian -36 title 1540 language 2854 Georgisch -37 title 1833 language 1807 Greek -38 title 1540 language 1807 Griechisch -39 title 1833 language 2366 Hebrew -40 title 1540 language 2366 Hebräisch -41 title 1833 language 2388 Hindi -42 title 1540 language 2388 Hindi -43 title 1833 language 2665 Italian -44 title 1540 language 2665 Italienisch -45 title 1833 language 5445 Pashto -46 title 1540 language 5445 Paschtu -47 title 1833 language 5351 Polish -48 title 1540 language 5351 Polnisch -49 title 1833 language 5140 Punjabi -50 title 1540 language 5140 Punjabi -51 title 1833 language 5641 Romanes -52 title 1540 language 5641 Romanes -53 title 1833 language 5642 Romanian -54 title 1540 language 5642 Rumänisch -55 title 1833 language 6059 Serbian -56 title 1540 language 6059 Serbisch -57 title 1833 language 5998 Somali -58 title 1540 language 5998 Somali -59 title 1833 language 6011 Spanish -60 title 1540 language 6011 Spanisch -61 title 1833 language 6148 Swedish -62 title 1540 language 6148 Schwedisch -63 title 1833 language 6819 Urdu -64 title 1540 language 6819 Urdu -65 title 1833 language 6894 Vietnamese -66 title 1540 language 6894 Vietnamesisch -67 title 1833 language 7922 Other -68 title 1540 language 7922 Andere -69 title 1833 comment 1 German Language Support -70 title 1540 comment 1 Deutsche Unterstützung -71 description 1833 comment 1 Fluent in German? Support refugees by teaching german at language cafes and tutoring privately or in groups. -72 description 1540 comment 1 Sprichst du fließend Deutsch? Unterstütze Geflüchtete, indem du in Sprachcafés unterrichtest oder Nachhilfe gibst – privat oder in Gruppen. -73 title 1833 comment 2 Childcare -74 title 1540 comment 2 Kinderbetreuung -75 description 1833 comment 2 We are looking for volunteers to support children in refugee accommodation centers by assisting in daycare or helping with homework. Experience with children is a plus! -76 description 1540 comment 2 Hilf Kindern in Unterkünften – bei der Betreuung am Tag oder den Hausaufgaben. Erfahrung mit Kindern ist ein Plus! -77 title 1833 comment 3 Skills Based Volunteering -78 title 1540 comment 3 Ehrenamt mit Fachkenntnissen -79 description 1833 comment 3 Some opportunities may offer a chance to use your special expertise, such as bike repair, gardening, musical skills, or organizational savvy. -80 description 1540 comment 3 Nutze deine Fähigkeiten – z. B. Fahrradreparatur, Gartenarbeit oder Musik. -81 title 1833 comment 4 Events -82 title 1540 comment 4 Veranstaltungen -83 description 1833 comment 4 Occasionally events require unique support from volunteers. These might be festivals, dinners, outings, cultural activities, a day of setting up a clothes sorting station, gardening, or a workshop. -84 description 1540 comment 4 Manche Events brauchen extra Hilfe – Festivals, Ausflüge, Gartenarbeit oder Kleiderkammer einrichten. -85 title 1833 comment 5 Sport activities -86 title 1540 comment 5 Sportliche Aktivitäten -87 description 1833 comment 5 We are always looking for volunteers either for tandem, clothes sorting or to help organize sports activities for children, teenagers or adults in accommodation centers. -88 description 1540 comment 5 Hilf mit Kleiderkammer, Tandem oder Sportangebote für Kinder, Jugendliche oder Erwachsene in Unterkünften zu organisieren. -89 title 1833 comment 6 Accompany a Refugee -90 title 1540 comment 6 Flüchtlingen begleiten -91 description 1833 comment 6 Fluent in German and a second language? Support individuals in dealing with bureaucracy at appointments - going with them to the doctor, Job Centre or otherwise. -92 description 1540 comment 6 Sprichst du fließend Deutsch und eine weitere Sprache? Begleite Geflüchtete zu Ämtern, Ärzt:innen oder anderen Terminen. -93 title 1833 activity 1 Daycare -94 title 1540 activity 1 Kinderbetreuung -95 title 1833 activity 2 Sports -96 title 1540 activity 2 Sport -97 title 1833 activity 3 German language Cafe -98 title 1540 activity 3 Sprachcafé -99 title 1833 activity 4 Translation at Accommodation Centers -100 title 1540 activity 4 Sprachmittlung in Unterkünften -101 title 1833 activity 5 Fillout German forms -102 title 1540 activity 5 Ausfüllhilfe -103 title 1833 activity 6 Arts & Crafts -104 title 1540 activity 6 Basteln -105 title 1833 activity 7 Gardening -106 title 1540 activity 7 Gartenarbeit -107 title 1833 activity 8 One-day Volunteering (e.g. Festivals, Cleanups) -108 title 1540 activity 8 Eintägiges Engagement (z. B. Feier, Aufräumaktionen) -109 title 1833 activity 9 Playing board games -110 title 1540 activity 9 Brettspiele spielen -111 title 1833 activity 10 Reading books for children -112 title 1540 activity 10 Bücher vorlesen für Kinder -113 title 1833 activity 11 Activities for women -114 title 1540 activity 11 Aktivitäten für Frauen* -115 title 1833 activity 12 Activities for men -116 title 1540 activity 12 Aktivitäten für Männer* -117 title 1833 activity 13 Assist with homework -118 title 1540 activity 13 Nachhilfe -119 title 1833 activity 14 Sorting clothing -120 title 1540 activity 14 Kleiderkammer -121 title 1833 activity 15 Organizing excursions -122 title 1540 activity 15 Ausflüge organisieren -123 title 1833 activity 16 Miscellaneous -124 title 1540 activity 16 Sonstiges -125 title 1833 activity 17 Mentorship -126 title 1540 activity 17 Mentoren -127 title 1833 activity 18 Accompanying to government appointments -128 title 1540 activity 18 Begleitung: Termine bei Behörden* -129 title 1833 activity 19 Apartment viewing accompanying -130 title 1540 activity 19 Begleitung: Wohnungsbesichtigungen -131 title 1833 activity 20 Schools meetings accompanying -132 title 1540 activity 20 Begleitung: Termine in Schulen und Kitas -133 title 1833 activity 21 Accompanying -134 title 1540 activity 21 Wegbegleitung -135 title 1833 activity 22 Accompanying to doctors' -136 title 1540 activity 22 Begleitung: Arzttermine -137 title 1540 skill 1 Holzverarbeitung -138 title 1833 skill 1 Holzverarbeitung -139 title 1540 skill 2 Zeichnen -140 title 1833 skill 2 Zeichnen -141 title 1540 skill 3 Malen -142 title 1833 skill 3 Malen -143 title 1540 skill 4 Nähen -144 title 1833 skill 4 Nähen -145 title 1540 skill 5 Stricken -146 title 1833 skill 5 Stricken -147 title 1540 skill 6 Reparaturen -148 title 1833 skill 6 Reparaturen -149 title 1540 skill 7 Kochen -150 title 1833 skill 7 Kochen -151 title 1540 skill 8 Lehren -152 title 1833 skill 8 Lehren -153 title 1540 skill 9 Programmieren -154 title 1833 skill 9 Programmieren -155 title 1540 skill 10 Öffentliches Sprechen -156 title 1833 skill 10 Öffentliches Sprechen -157 title 1540 skill 11 Gartenarbeit -158 title 1833 skill 11 Gartenarbeit -159 title 1540 skill 12 Landschaftsgestaltung -160 title 1833 skill 12 Landschaftsgestaltung -161 title 1540 skill 13 Tischlerei -162 title 1833 skill 13 Tischlerei -163 title 1540 skill 14 Dekorieren -164 title 1833 skill 14 Dekorieren -165 title 1540 skill 15 Fahrradreparaturen -166 title 1833 skill 15 Fahrradreparaturen -167 title 1540 skill 16 Fotografie -168 title 1833 skill 16 Fotografie -169 title 1540 skill 17 Videografie -170 title 1833 skill 17 Videografie -171 title 1540 skill 18 Make-up -172 title 1833 skill 18 Make-up -173 title 1540 skill 19 Kreatives Schreiben -174 title 1833 skill 19 Kreatives Schreiben -175 title 1540 skill 20 Yoga -176 title 1833 skill 20 Yoga -177 title 1540 skill 21 Fitness -178 title 1833 skill 21 Fitness -179 title 1540 skill 22 Fußball -180 title 1833 skill 22 Fußball -181 title 1540 skill 23 Basketball -182 title 1833 skill 23 Basketball -183 title 1540 skill 24 Tanzen -184 title 1833 skill 24 Tanzen -185 title 1540 skill 25 Schach -186 title 1833 skill 25 Schach -187 title 1540 skill 26 Management -188 title 1833 skill 26 Management -189 title 1540 skill 27 Social-Media-Management (SMM) -190 title 1833 skill 27 Social-Media-Management (SMM) -191 title 1540 skill 28 Mediation -192 title 1833 skill 28 Mediation -193 title 1540 skill 29 Veranstaltungsplanung -194 title 1833 skill 29 Veranstaltungsplanung -195 title 1540 skill 30 Coaching -196 title 1833 skill 30 Coaching -197 title 1540 skill 31 Gitarre -198 title 1833 skill 31 Gitarre -199 title 1540 skill 32 Klavier -200 title 1833 skill 32 Klavier -201 title 1540 skill 33 Singen -202 title 1833 skill 33 Singen -203 title 1833 lead_from 1 Volunteering platform -204 title 1540 lead_from 1 Plattform für Freiwilligenarbeit -205 title 1833 lead_from 2 Social media -206 title 1540 lead_from 2 Soziale Medien -207 title 1833 lead_from 3 A newsletter -208 title 1540 lead_from 3 Ein Newsletter -209 title 1833 lead_from 4 Web search -210 title 1540 lead_from 4 Websuche -211 title 1833 lead_from 5 Friends -212 title 1540 lead_from 5 Freunde -213 title 1833 lead_from 6 Volunteer fair -214 title 1540 lead_from 6 Freiwilligenmesse -215 title 1833 lead_from 7 Flyer/Poster -216 title 1540 lead_from 7 Flyer/Plakat -\. - - --- --- Data for Name: language; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.language (id, iso_code, title) FROM stdin; -1 aaa Ghotuo -2 aab Alumu-Tesu -3 aac Ari -4 aad Amal -5 aae Arbëreshë Albanian -6 aaf Aranadan -7 aag Ambrak -8 aah Abu' Arapesh -9 aai Arifama-Miniafia -10 aak Ankave -11 aal Afade -12 aan Anambé -13 aao Algerian Saharan Arabic -14 aap Pará Arára -15 aaq Eastern Abnaki -16 aa Afar -17 aas Aasáx -18 aat Arvanitika Albanian -19 aau Abau -20 aaw Solong -21 aax Mandobo Atas -22 aaz Amarasi -23 aba Abé -24 abb Bankon -25 abc Ambala Ayta -26 abd Manide -27 abe Western Abnaki -28 abf Abai Sungai -29 abg Abaga -30 abh Tajiki Arabic -31 abi Abidji -32 abj Aka-Bea -33 ab Abkhazian -34 abl Lampung Nyo -35 abm Abanyom -36 abn Abua -37 abo Abon -38 abp Abellen Ayta -39 abq Abaza -40 abr Abron -41 abs Ambonese Malay -42 abt Ambulas -43 abu Abure -44 abv Baharna Arabic -45 abw Pal -46 abx Inabaknon -47 aby Aneme Wake -48 abz Abui -49 aca Achagua -50 acb Áncá -51 acd Gikyode -52 ace Achinese -53 acf Saint Lucian Creole French -54 ach Acoli -55 aci Aka-Cari -56 ack Aka-Kora -57 acl Akar-Bale -58 acm Mesopotamian Arabic -59 acn Achang -60 acp Eastern Acipa -61 acq Ta'izzi-Adeni Arabic -62 acr Achi -63 acs Acroá -64 act Achterhoeks -65 acu Achuar-Shiwiar -66 acv Achumawi -67 acw Hijazi Arabic -68 acx Omani Arabic -69 acy Cypriot Arabic -70 acz Acheron -71 ada Adangme -72 adb Atauran -73 add Lidzonka -74 ade Adele -75 adf Dhofari Arabic -76 adg Andegerebinha -77 adh Adhola -78 adi Adi -79 adj Adioukrou -80 adl Galo -81 adn Adang -82 ado Abu -83 adq Adangbe -84 adr Adonara -85 ads Adamorobe Sign Language -86 adt Adnyamathanha -87 adu Aduge -88 adw Amundava -89 adx Amdo Tibetan -90 ady Adyghe -91 adz Adzera -92 aea Areba -93 aeb Tunisian Arabic -94 aec Saidi Arabic -95 aed Argentine Sign Language -96 aee Northeast Pashai -97 aek Haeke -98 ael Ambele -99 aem Arem -100 aen Armenian Sign Language -101 aeq Aer -102 aer Eastern Arrernte -103 aes Alsea -104 aeu Akeu -105 aew Ambakich -106 aey Amele -107 aez Aeka -108 afb Gulf Arabic -109 afd Andai -110 afe Putukwam -111 afg Afghan Sign Language -112 afh Afrihili -113 afi Akrukay -114 afk Nanubae -115 afn Defaka -116 afo Eloyi -117 afp Tapei -118 af Afrikaans -119 afs Afro-Seminole Creole -120 aft Afitti -121 afu Awutu -122 afz Obokuitai -123 aga Aguano -124 agb Legbo -125 agc Agatu -126 agd Agarabi -127 age Angal -128 agf Arguni -129 agg Angor -130 agh Ngelima -131 agi Agariya -132 agj Argobba -133 agk Isarog Agta -134 agl Fembe -135 agm Angaataha -136 agn Agutaynen -137 ago Tainae -138 agq Aghem -139 agr Aguaruna -140 ags Esimbi -141 agt Central Cagayan Agta -142 agu Aguacateco -143 agv Remontado Dumagat -144 agw Kahua -145 agx Aghul -146 agy Southern Alta -147 agz Mt. Iriga Agta -148 aha Ahanta -149 ahb Axamb -150 ahg Qimant -151 ahh Aghu -152 ahi Tiagbamrin Aizi -153 ahk Akha -154 ahl Igo -155 ahm Mobumrin Aizi -156 ahn Àhà n -157 aho Ahom -158 ahp Aproumu Aizi -159 ahr Ahirani -160 ahs Ashe -161 aht Ahtena -162 aia Arosi -163 aib Ainu (China) -164 aic Ainbai -165 aid Alngith -166 aie Amara -167 aif Agi -336 aqd Ampari Dogon -168 aig Antigua and Barbuda Creole English -169 aih Ai-Cham -170 aii Assyrian Neo-Aramaic -171 aij Lishanid Noshan -172 aik Ake -173 ail Aimele -174 aim Aimol -175 ain Ainu (Japan) -176 aio Aiton -177 aip Burumakok -178 aiq Aimaq -179 air Airoran -180 ait Arikem -181 aiw Aari -182 aix Aighon -183 aiy Ali -184 aja Aja (South Sudan) -185 ajg Aja (Benin) -186 aji Ajië -187 ajn Andajin -188 ajs Algerian Jewish Sign Language -189 aju Judeo-Moroccan Arabic -190 ajw Ajawa -191 ajz Amri Karbi -192 ak Akan -193 akb Batak Angkola -194 akc Mpur -195 akd Ukpet-Ehom -196 ake Akawaio -197 akf Akpa -198 akg Anakalangu -199 akh Angal Heneng -200 aki Aiome -201 akj Aka-Jeru -202 akk Akkadian -203 akl Aklanon -204 akm Aka-Bo -205 ako Akurio -206 akp Siwu -207 akq Ak -208 akr Araki -209 aks Akaselem -210 akt Akolet -211 aku Akum -212 akv Akhvakh -213 akw Akwa -214 akx Aka-Kede -215 aky Aka-Kol -216 akz Alabama -217 ala Alago -218 alc Qawasqar -219 ald Alladian -220 ale Aleut -221 alf Alege -222 alh Alawa -223 ali Amaimon -224 alj Alangan -225 alk Alak -226 all Allar -227 alm Amblong -228 aln Gheg Albanian -229 alo Larike-Wakasihu -230 alp Alune -231 alq Algonquin -232 alr Alutor -233 als Tosk Albanian -234 alt Southern Altai -235 alu 'Are'are -236 alw Alaba-K’abeena -237 alx Amol -238 aly Alyawarr -239 alz Alur -240 ama Amanayé -241 amb Ambo -242 amc Amahuaca -243 ame Yanesha' -244 amf Hamer-Banna -245 amg Amurdak -246 am Amharic -247 ami Amis -248 amj Amdang -249 amk Ambai -250 aml War-Jaintia -251 amm Ama (Papua New Guinea) -252 amn Amanab -253 amo Amo -254 amp Alamblak -255 amq Amahai -256 amr Amarakaeri -257 ams Southern Amami-Oshima -258 amt Amto -259 amu Guerrero Amuzgo -260 amv Ambelau -261 amw Western Neo-Aramaic -262 amx Anmatyerre -263 amy Ami -264 amz Atampaya -265 ana Andaqui -266 anb Andoa -267 anc Ngas -268 and Ansus -269 ane Xârâcùù -270 anf Animere -271 ang Old English (ca. 450-1100) -272 anh Nend -273 ani Andi -274 anj Anor -275 ank Goemai -276 anl Anu-Hkongso Chin -277 anm Anal -278 ann Obolo -279 ano Andoque -280 anp Angika -281 anq Jarawa (India) -282 anr Andh -283 ans Anserma -284 ant Antakarinya -285 anu Anuak -286 anv Denya -287 anw Anaang -288 anx Andra-Hus -289 any Anyin -290 anz Anem -291 aoa Angolar -292 aob Abom -293 aoc Pemon -294 aod Andarum -295 aoe Angal Enen -296 aof Bragat -297 aog Angoram -298 aoi Anindilyakwa -299 aoj Mufian -300 aok Arhö -301 aol Alor -302 aom Ömie -303 aon Bumbita Arapesh -304 aor Aore -305 aos Taikat -306 aot Atong (India) -307 aou A'ou -308 aox Atorada -309 aoz Uab Meto -310 apb Sa'a -311 apc Levantine Arabic -312 apd Sudanese Arabic -313 ape Bukiyip -314 apf Pahanan Agta -315 apg Ampanang -316 aph Athpariya -317 api Apiaká -318 apj Jicarilla Apache -319 apk Kiowa Apache -320 apl Lipan Apache -321 apm Mescalero-Chiricahua Apache -322 apn Apinayé -323 apo Ambul -324 app Apma -325 apq A-Pucikwar -326 apr Arop-Lokep -327 aps Arop-Sissano -328 apt Apatani -329 apu Apurinã -330 apv Alapmunte -331 apw Western Apache -332 apx Aputai -333 apy Apalaí -334 apz Safeyoka -335 aqc Archi -337 aqg Arigidi -338 aqk Aninka -339 aqm Atohwaim -340 aqn Northern Alta -341 aqp Atakapa -342 aqr Arhâ -343 aqt Angaité -344 aqz Akuntsu -345 ar Arabic -346 arb Standard Arabic -347 arc Official Aramaic (700-300 BCE) -348 ard Arabana -349 are Western Arrarnta -350 an Aragonese -351 arh Arhuaco -352 ari Arikara -353 arj Arapaso -354 ark Arikapú -355 arl Arabela -356 arn Mapudungun -357 aro Araona -358 arp Arapaho -359 arq Algerian Arabic -360 arr Karo (Brazil) -361 ars Najdi Arabic -362 aru Aruá (Amazonas State) -363 arv Arbore -364 arw Arawak -365 arx Aruá (Rodonia State) -366 ary Moroccan Arabic -367 arz Egyptian Arabic -368 asa Asu (Tanzania) -369 asb Assiniboine -370 asc Casuarina Coast Asmat -371 ase American Sign Language -372 asf Auslan -373 asg Cishingini -374 ash Abishira -375 asi Buruwai -376 asj Sari -377 ask Ashkun -378 asl Asilulu -379 as Assamese -380 asn Xingú Asuriní -381 aso Dano -382 asp Algerian Sign Language -383 asq Austrian Sign Language -384 asr Asuri -385 ass Ipulo -386 ast Asturian -387 asu Tocantins Asurini -388 asv Asoa -389 asw Australian Aborigines Sign Language -390 asx Muratayak -391 asy Yaosakor Asmat -392 asz As -393 ata Pele-Ata -394 atb Zaiwa -395 atc Atsahuaca -396 atd Ata Manobo -397 ate Atemble -398 atg Ivbie North-Okpela-Arhe -399 ati Attié -400 atj Atikamekw -401 atk Ati -402 atl Mt. Iraya Agta -403 atm Ata -404 atn Ashtiani -405 ato Atong (Cameroon) -406 atp Pudtol Atta -407 atq Aralle-Tabulahan -408 atr Waimiri-Atroari -409 ats Gros Ventre -410 att Pamplona Atta -411 atu Reel -412 atv Northern Altai -413 atw Atsugewi -414 atx Arutani -415 aty Aneityum -416 atz Arta -417 aua Asumboa -418 aub Alugu -419 auc Waorani -420 aud Anuta -421 aug Aguna -422 auh Aushi -423 aui Anuki -424 auj Awjilah -425 auk Heyo -426 aul Aulua -427 aum Asu (Nigeria) -428 aun Molmo One -429 auo Auyokawa -430 aup Makayam -431 auq Anus -432 aur Aruek -433 aut Austral -434 auu Auye -435 auw Awyi -436 aux Aurá -437 auy Awiyaana -438 auz Uzbeki Arabic -439 av Avaric -440 avb Avau -441 avd Alviri-Vidari -442 ae Avestan -443 avi Avikam -444 avk Kotava -445 avl Eastern Egyptian Bedawi Arabic -446 avm Angkamuthi -447 avn Avatime -448 avo Agavotaguerra -449 avs Aushiri -450 avt Au -451 avu Avokaya -452 avv Avá-Canoeiro -453 awa Awadhi -454 awb Awa (Papua New Guinea) -455 awc Cicipu -456 awe Awetí -457 awg Anguthimri -458 awh Awbono -459 awi Aekyom -460 awk Awabakal -461 awm Arawum -462 awn Awngi -463 awo Awak -464 awr Awera -465 aws South Awyu -466 awt Araweté -467 awu Central Awyu -468 awv Jair Awyu -469 aww Awun -470 awx Awara -471 awy Edera Awyu -472 axb Abipon -473 axe Ayerrerenge -474 axg Mato Grosso Arára -475 axk Yaka (Central African Republic) -476 axl Lower Southern Aranda -477 axm Middle Armenian -478 axx Xârâgurè -479 aya Awar -480 ayb Ayizo Gbe -481 ayc Southern Aymara -482 ayd Ayabadhu -483 aye Ayere -484 ayg Ginyanga -485 ayh Hadrami Arabic -486 ayi Leyigha -487 ayk Akuku -488 ayl Libyan Arabic -489 ay Aymara -490 ayn Sanaani Arabic -491 ayo Ayoreo -492 ayp North Mesopotamian Arabic -493 ayq Ayi (Papua New Guinea) -494 ayr Central Aymara -495 ays Sorsogon Ayta -496 ayt Magbukun Ayta -497 ayu Ayu -498 ayz Mai Brat -499 aza Azha -500 azb South Azerbaijani -501 azd Eastern Durango Nahuatl -502 az Azerbaijani -503 azg San Pedro Amuzgos Amuzgo -504 azj North Azerbaijani -505 azm Ipalapa Amuzgo -506 azn Western Durango Nahuatl -507 azo Awing -508 azt Faire Atta -509 azz Highland Puebla Nahuatl -510 baa Babatana -511 bab Bainouk-Gunyuño -512 bac Badui -513 bae Baré -514 baf Nubaca -515 bag Tuki -516 bah Bahamas Creole English -517 baj Barakai -518 ba Bashkir -519 bal Baluchi -520 bm Bambara -521 ban Balinese -522 bao Waimaha -523 bap Bantawa -524 bar Bavarian -525 bas Basa (Cameroon) -526 bau Bada (Nigeria) -527 bav Vengo -528 baw Bambili-Bambui -529 bax Bamun -530 bay Batuley -531 bba Baatonum -532 bbb Barai -533 bbc Batak Toba -534 bbd Bau -535 bbe Bangba -536 bbf Baibai -537 bbg Barama -538 bbh Bugan -539 bbi Barombi -540 bbj Ghomálá' -541 bbk Babanki -542 bbl Bats -543 bbm Babango -544 bbn Uneapa -545 bbo Northern Bobo Madaré -546 bbp West Central Banda -547 bbq Bamali -548 bbr Girawa -549 bbs Bakpinka -550 bbt Mburku -551 bbu Kulung (Nigeria) -552 bbv Karnai -553 bbw Baba -554 bbx Bubia -555 bby Befang -556 bca Central Bai -557 bcb Bainouk-Samik -558 bcc Southern Balochi -559 bcd North Babar -560 bce Bamenyam -561 bcf Bamu -562 bcg Baga Pokur -563 bch Bariai -564 bci Baoulé -565 bcj Bardi -566 bck Bunuba -567 bcl Central Bikol -568 bcm Bannoni -569 bcn Bali (Nigeria) -570 bco Kaluli -571 bcp Bali (Democratic Republic of Congo) -572 bcq Bench -573 bcr Babine -574 bcs Kohumono -575 bct Bendi -576 bcu Awad Bing -577 bcv Shoo-Minda-Nye -578 bcw Bana -579 bcy Bacama -580 bcz Bainouk-Gunyaamolo -581 bda Bayot -582 bdb Basap -583 bdc Emberá-Baudó -584 bdd Bunama -585 bde Bade -586 bdf Biage -587 bdg Bonggi -588 bdh Baka (South Sudan) -589 bdi Burun -590 bdj Bai (South Sudan) -591 bdk Budukh -592 bdl Indonesian Bajau -593 bdm Buduma -594 bdn Baldemu -595 bdo Morom -596 bdp Bende -597 bdq Bahnar -598 bdr West Coast Bajau -599 bds Burunge -600 bdt Bokoto -601 bdu Oroko -602 bdv Bodo Parja -603 bdw Baham -604 bdx Budong-Budong -605 bdy Bandjalang -606 bdz Badeshi -607 bea Beaver -608 beb Bebele -609 bec Iceve-Maci -610 bed Bedoanas -611 bee Byangsi -612 bef Benabena -613 beg Belait -614 beh Biali -615 bei Bekati' -616 bej Beja -617 bek Bebeli -618 be Belarusian -619 bem Bemba (Zambia) -620 bn Bengali -621 beo Beami -622 bep Besoa -623 beq Beembe -624 bes Besme -625 bet Guiberoua Béte -626 beu Blagar -627 bev Daloa Bété -628 bew Betawi -629 bex Jur Modo -630 bey Beli (Papua New Guinea) -631 bez Bena (Tanzania) -632 bfa Bari -633 bfb Pauri Bareli -634 bfc Panyi Bai -635 bfd Bafut -636 bfe Betaf -637 bff Bofi -638 bfg Busang Kayan -639 bfh Blafe -640 bfi British Sign Language -641 bfj Bafanji -642 bfk Ban Khor Sign Language -643 bfl Banda-Ndélé -644 bfm Mmen -645 bfn Bunak -646 bfo Malba Birifor -647 bfp Beba -648 bfq Badaga -649 bfr Bazigar -650 bfs Southern Bai -651 bft Balti -652 bfu Gahri -653 bfw Bondo -654 bfx Bantayanon -655 bfy Bagheli -656 bfz Mahasu Pahari -657 bga Gwamhi-Wuri -658 bgb Bobongko -659 bgc Haryanvi -660 bgd Rathwi Bareli -661 bge Bauria -662 bgf Bangandu -663 bgg Bugun -664 bgi Giangan -665 bgj Bangolan -666 bgk Bit -667 bgl Bo (Laos) -668 bgn Western Balochi -669 bgo Baga Koga -670 bgp Eastern Balochi -671 bgq Bagri -672 bgr Bawm Chin -673 bgs Tagabawa -674 bgt Bughotu -675 bgu Mbongno -676 bgv Warkay-Bipim -677 bgw Bhatri -678 bgx Balkan Gagauz Turkish -679 bgy Benggoi -680 bgz Banggai -681 bha Bharia -682 bhb Bhili -683 bhc Biga -684 bhd Bhadrawahi -685 bhe Bhaya -686 bhf Odiai -687 bhg Binandere -688 bhh Bukharic -689 bhi Bhilali -690 bhj Bahing -691 bhl Bimin -692 bhm Bathari -693 bhn Bohtan Neo-Aramaic -694 bho Bhojpuri -695 bhp Bima -696 bhq Tukang Besi South -697 bhr Bara Malagasy -698 bhs Buwal -699 bht Bhattiyali -700 bhu Bhunjia -701 bhv Bahau -702 bhw Biak -703 bhx Bhalay -704 bhy Bhele -705 bhz Bada (Indonesia) -706 bia Badimaya -707 bib Bissa -708 bid Bidiyo -709 bie Bepour -710 bif Biafada -711 big Biangai -712 bik Bikol -713 bil Bile -714 bim Bimoba -715 bin Bini -716 bio Nai -717 bip Bila -718 biq Bipi -719 bir Bisorio -720 bi Bislama -721 bit Berinomo -722 biu Biete -723 biv Southern Birifor -724 biw Kol (Cameroon) -725 bix Bijori -726 biy Birhor -727 biz Baloi -728 bja Budza -729 bjb Banggarla -730 bjc Bariji -731 bje Biao-Jiao Mien -732 bjf Barzani Jewish Neo-Aramaic -733 bjg Bidyogo -734 bjh Bahinemo -735 bji Burji -736 bjj Kanauji -737 bjk Barok -738 bjl Bulu (Papua New Guinea) -739 bjm Bajelani -740 bjn Banjar -741 bjo Mid-Southern Banda -742 bjp Fanamaket -743 bjr Binumarien -744 bjs Bajan -745 bjt Balanta-Ganja -746 bju Busuu -747 bjv Bedjond -748 bjw Bakwé -749 bjx Banao Itneg -750 bjy Bayali -751 bjz Baruga -752 bka Kyak -753 bkc Baka (Cameroon) -754 bkd Binukid -755 bkf Beeke -756 bkg Buraka -757 bkh Bakoko -758 bki Baki -759 bkj Pande -760 bkk Brokskat -761 bkl Berik -762 bkm Kom (Cameroon) -763 bkn Bukitan -764 bko Kwa' -765 bkp Boko (Democratic Republic of Congo) -766 bkq Bakairí -767 bkr Bakumpai -768 bks Northern Sorsoganon -769 bkt Boloki -770 bku Buhid -771 bkv Bekwarra -772 bkw Bekwel -773 bkx Baikeno -774 bky Bokyi -775 bkz Bungku -776 bla Siksika -777 blb Bilua -778 blc Bella Coola -779 bld Bolango -780 ble Balanta-Kentohe -781 blf Buol -782 blh Kuwaa -783 bli Bolia -784 blj Bolongan -785 blk Pa'o Karen -786 bll Biloxi -787 blm Beli (South Sudan) -788 bln Southern Catanduanes Bikol -789 blo Anii -790 blp Blablanga -791 blq Baluan-Pam -792 blr Blang -793 bls Balaesang -794 blt Tai Dam -795 blv Kibala -796 blw Balangao -797 blx Mag-Indi Ayta -798 bly Notre -799 blz Balantak -800 bma Lame -801 bmb Bembe -802 bmc Biem -803 bmd Baga Manduri -804 bme Limassa -805 bmf Bom-Kim -806 bmg Bamwe -807 bmh Kein -808 bmi Bagirmi -809 bmj Bote-Majhi -810 bmk Ghayavi -811 bml Bomboli -812 bmm Northern Betsimisaraka Malagasy -813 bmn Bina (Papua New Guinea) -814 bmo Bambalang -815 bmp Bulgebi -816 bmq Bomu -817 bmr Muinane -818 bms Bilma Kanuri -819 bmt Biao Mon -820 bmu Somba-Siawari -821 bmv Bum -822 bmw Bomwali -823 bmx Baimak -824 bmz Baramu -825 bna Bonerate -826 bnb Bookan -827 bnc Bontok -828 bnd Banda (Indonesia) -829 bne Bintauna -830 bnf Masiwang -831 bng Benga -832 bni Bangi -833 bnj Eastern Tawbuid -834 bnk Bierebo -835 bnl Boon -836 bnm Batanga -837 bnn Bunun -838 bno Bantoanon -839 bnp Bola -840 bnq Bantik -841 bnr Butmas-Tur -842 bns Bundeli -843 bnu Bentong -844 bnv Bonerif -845 bnw Bisis -846 bnx Bangubangu -847 bny Bintulu -848 bnz Beezen -849 boa Bora -850 bob Aweer -851 bo Tibetan -852 boe Mundabli -853 bof Bolon -854 bog Bamako Sign Language -855 boh Boma -856 boi Barbareño -857 boj Anjam -858 bok Bonjo -859 bol Bole -860 bom Berom -861 bon Bine -862 boo Tiemacèwè Bozo -863 bop Bonkiman -864 boq Bogaya -865 bor Borôro -866 bs Bosnian -867 bot Bongo -868 bou Bondei -869 bov Tuwuli -870 bow Rema -871 box Buamu -872 boy Bodo (Central African Republic) -873 boz Tiéyaxo Bozo -874 bpa Daakaka -875 bpc Mbuk -876 bpd Banda-Banda -877 bpe Bauni -878 bpg Bonggo -879 bph Botlikh -880 bpi Bagupi -881 bpj Binji -882 bpk Orowe -883 bpl Broome Pearling Lugger Pidgin -884 bpm Biyom -885 bpn Dzao Min -886 bpo Anasi -887 bpp Kaure -888 bpq Banda Malay -889 bpr Koronadal Blaan -890 bps Sarangani Blaan -891 bpt Barrow Point -892 bpu Bongu -893 bpv Bian Marind -894 bpw Bo (Papua New Guinea) -895 bpx Palya Bareli -896 bpy Bishnupriya -897 bpz Bilba -898 bqa Tchumbuli -899 bqb Bagusa -900 bqc Boko (Benin) -901 bqd Bung -902 bqf Baga Kaloum -903 bqg Bago-Kusuntu -904 bqh Baima -905 bqi Bakhtiari -906 bqj Bandial -907 bqk Banda-Mbrès -908 bql Bilakura -909 bqm Wumboko -910 bqn Bulgarian Sign Language -911 bqo Balo -912 bqp Busa -913 bqq Biritai -914 bqr Burusu -915 bqs Bosngun -916 bqt Bamukumbit -917 bqu Boguru -918 bqv Koro Wachi -919 bqw Buru (Nigeria) -920 bqx Baangi -921 bqy Bengkala Sign Language -922 bqz Bakaka -923 bra Braj -924 brb Brao -925 brc Berbice Creole Dutch -926 brd Baraamu -927 br Breton -928 brf Bira -929 brg Baure -930 brh Brahui -931 bri Mokpwe -932 brj Bieria -933 brk Birked -934 brl Birwa -935 brm Barambu -936 brn Boruca -937 bro Brokkat -938 brp Barapasi -939 brq Breri -940 brr Birao -941 brs Baras -942 brt Bitare -943 bru Eastern Bru -944 brv Western Bru -945 brw Bellari -946 brx Bodo (India) -947 bry Burui -948 brz Bilbil -949 bsa Abinomn -950 bsb Brunei Bisaya -951 bsc Bassari -952 bse Wushi -953 bsf Bauchi -954 bsg Bashkardi -955 bsh Kati -956 bsi Bassossi -957 bsj Bangwinji -958 bsk Burushaski -959 bsl Basa-Gumna -960 bsm Busami -961 bsn Barasana-Eduria -962 bso Buso -963 bsp Baga Sitemu -964 bsq Bassa -965 bsr Bassa-Kontagora -966 bss Akoose -967 bst Basketo -968 bsu Bahonsuai -969 bsv Baga Sobané -970 bsw Baiso -971 bsx Yangkam -972 bsy Sabah Bisaya -973 bta Bata -974 btc Bati (Cameroon) -975 btd Batak Dairi -976 bte Gamo-Ningi -977 btf Birgit -978 btg Gagnoa Bété -979 bth Biatah Bidayuh -980 bti Burate -981 btj Bacanese Malay -982 btm Batak Mandailing -983 btn Ratagnon -984 bto Rinconada Bikol -985 btp Budibud -986 btq Batek -987 btr Baetora -988 bts Batak Simalungun -989 btt Bete-Bendi -990 btu Batu -991 btv Bateri -992 btw Butuanon -993 btx Batak Karo -994 bty Bobot -995 btz Batak Alas-Kluet -996 bua Buriat -997 bub Bua -998 buc Bushi -999 bud Ntcham -1000 bue Beothuk -1001 buf Bushoong -1002 bug Buginese -1003 buh Younuo Bunu -1004 bui Bongili -1005 buj Basa-Gurmana -1006 buk Bugawac -1007 bg Bulgarian -1008 bum Bulu (Cameroon) -1009 bun Sherbro -1010 buo Terei -1011 bup Busoa -1012 buq Brem -1013 bus Bokobaru -1014 but Bungain -1015 buu Budu -1016 buv Bun -1017 buw Bubi -1018 bux Boghom -1019 buy Bullom So -1020 buz Bukwen -1021 bva Barein -1022 bvb Bube -1023 bvc Baelelea -1024 bvd Baeggu -1025 bve Berau Malay -1026 bvf Boor -1027 bvg Bonkeng -1028 bvh Bure -1029 bvi Belanda Viri -1030 bvj Baan -1031 bvk Bukat -1032 bvl Bolivian Sign Language -1033 bvm Bamunka -1034 bvn Buna -1035 bvo Bolgo -1036 bvp Bumang -1037 bvq Birri -1038 bvr Burarra -1039 bvt Bati (Indonesia) -1040 bvu Bukit Malay -1041 bvv Baniva -1042 bvw Boga -1043 bvx Dibole -1044 bvy Baybayanon -1045 bvz Bauzi -1046 bwa Bwatoo -1047 bwb Namosi-Naitasiri-Serua -1048 bwc Bwile -1049 bwd Bwaidoka -1050 bwe Bwe Karen -1051 bwf Boselewa -1052 bwg Barwe -1053 bwh Bishuo -1054 bwi Baniwa -1055 bwj Láá Láá Bwamu -1056 bwk Bauwaki -1057 bwl Bwela -1058 bwm Biwat -1059 bwn Wunai Bunu -1060 bwo Boro (Ethiopia) -1061 bwp Mandobo Bawah -1062 bwq Southern Bobo Madaré -1063 bwr Bura-Pabir -1064 bws Bomboma -1065 bwt Bafaw-Balong -1066 bwu Buli (Ghana) -1067 bww Bwa -1068 bwx Bu-Nao Bunu -1069 bwy Cwi Bwamu -1070 bwz Bwisi -1071 bxa Tairaha -1072 bxb Belanda Bor -1073 bxc Molengue -1074 bxd Pela -1075 bxe Birale -1076 bxf Bilur -1077 bxg Bangala -1078 bxh Buhutu -1079 bxi Pirlatapa -1080 bxj Bayungu -1081 bxk Bukusu -1082 bxl Jalkunan -1083 bxm Mongolia Buriat -1084 bxn Burduna -1085 bxo Barikanchi -1086 bxp Bebil -1087 bxq Beele -1088 bxr Russia Buriat -1089 bxs Busam -1090 bxu China Buriat -1091 bxv Berakou -1092 bxw Bankagooma -1093 bxz Binahari -1094 bya Batak -1095 byb Bikya -1096 byc Ubaghara -1097 byd Benyadu' -1098 bye Pouye -1099 byf Bete -1100 byg Baygo -1101 byh Bhujel -1102 byi Buyu -1103 byj Bina (Nigeria) -1104 byk Biao -1105 byl Bayono -1106 bym Bidjara -1107 byn Bilin -1108 byo Biyo -1109 byp Bumaji -1110 byq Basay -1111 byr Baruya -1112 bys Burak -1113 byt Berti -1114 byv Medumba -1115 byw Belhariya -1116 byx Qaqet -1117 byz Banaro -1118 bza Bandi -1119 bzb Andio -1120 bzc Southern Betsimisaraka Malagasy -1121 bzd Bribri -1122 bze Jenaama Bozo -1123 bzf Boikin -1124 bzg Babuza -1125 bzh Mapos Buang -1126 bzi Bisu -1127 bzj Belize Kriol English -1128 bzk Nicaragua Creole English -1129 bzl Boano (Sulawesi) -1130 bzm Bolondo -1131 bzn Boano (Maluku) -1132 bzo Bozaba -1133 bzp Kemberano -1134 bzq Buli (Indonesia) -1135 bzr Biri -1136 bzs Brazilian Sign Language -1137 bzt Brithenig -1138 bzu Burmeso -1139 bzv Naami -1140 bzw Basa (Nigeria) -1141 bzx KÉ›lÉ›ngaxo Bozo -1142 bzy Obanliku -1143 bzz Evant -1144 caa Chortí -1145 cab Garifuna -1146 cac Chuj -1147 cad Caddo -1148 cae Lehar -1149 caf Southern Carrier -1150 cag Nivaclé -1151 cah Cahuarano -1152 caj Chané -1153 cak Kaqchikel -1154 cal Carolinian -1155 cam Cemuhî -1156 can Chambri -1157 cao Chácobo -1158 cap Chipaya -1159 caq Car Nicobarese -1160 car Galibi Carib -1161 cas Tsimané -1162 ca Catalan -1163 cav Cavineña -1164 caw Callawalla -1165 cax Chiquitano -1166 cay Cayuga -1167 caz Canichana -1168 cbb Cabiyarí -1169 cbc Carapana -1170 cbd Carijona -1171 cbg Chimila -1172 cbi Chachi -1173 cbj Ede Cabe -1174 cbk Chavacano -1175 cbl Bualkhaw Chin -1176 cbn Nyahkur -1177 cbo Izora -1178 cbq Tsucuba -1179 cbr Cashibo-Cacataibo -1180 cbs Cashinahua -1181 cbt Chayahuita -1182 cbu Candoshi-Shapra -1183 cbv Cacua -1184 cbw Kinabalian -1185 cby Carabayo -1186 ccc Chamicuro -1187 ccd Cafundo Creole -1188 cce Chopi -1189 ccg Samba Daka -1190 cch Atsam -1191 ccj Kasanga -1192 ccl Cutchi-Swahili -1193 ccm Malaccan Creole Malay -1194 cco Comaltepec Chinantec -1195 ccp Chakma -1196 ccr Cacaopera -1197 cda Choni -1198 cde Chenchu -1199 cdf Chiru -1200 cdh Chambeali -1201 cdi Chodri -1202 cdj Churahi -1203 cdm Chepang -1204 cdn Chaudangsi -1205 cdo Min Dong Chinese -1206 cdr Cinda-Regi-Tiyal -1207 cds Chadian Sign Language -1208 cdy Chadong -1209 cdz Koda -1210 cea Lower Chehalis -1211 ceb Cebuano -1212 ceg Chamacoco -1213 cek Eastern Khumi Chin -1214 cen Cen -1215 cs Czech -1216 cet Centúúm -1217 cey Ekai Chin -1218 cfa Dijim-Bwilim -1219 cfd Cara -1220 cfg Como Karim -1221 cfm Falam Chin -1222 cga Changriwa -1223 cgc Kagayanen -1224 cgg Chiga -1225 cgk Chocangacakha -1226 ch Chamorro -1227 chb Chibcha -1228 chc Catawba -1229 chd Highland Oaxaca Chontal -1230 ce Chechen -1231 chf Tabasco Chontal -1232 chg Chagatai -1233 chh Chinook -1234 chj Ojitlán Chinantec -1235 chk Chuukese -1236 chl Cahuilla -1237 chm Mari (Russia) -1238 chn Chinook jargon -1239 cho Choctaw -1240 chp Chipewyan -1241 chq Quiotepec Chinantec -1242 chr Cherokee -1243 cht Cholón -1244 cu Church Slavic -1245 cv Chuvash -1246 chw Chuwabu -1247 chx Chantyal -1248 chy Cheyenne -1249 chz Ozumacín Chinantec -1250 cia Cia-Cia -1251 cib Ci Gbe -1252 cic Chickasaw -1253 cid Chimariko -1254 cie Cineni -1255 cih Chinali -1256 cik Chitkuli Kinnauri -1257 cim Cimbrian -1258 cin Cinta Larga -1259 cip Chiapanec -1260 cir Tiri -1261 ciw Chippewa -1262 ciy Chaima -1263 cja Western Cham -1264 cje Chru -1265 cjh Upper Chehalis -1266 cji Chamalal -1267 cjk Chokwe -1268 cjm Eastern Cham -1269 cjn Chenapian -1270 cjo Ashéninka Pajonal -1271 cjp Cabécar -1272 cjs Shor -1273 cjv Chuave -1274 cjy Jinyu Chinese -1275 ckb Central Kurdish -1276 ckh Chak -1277 ckl Cibak -1278 ckm Chakavian -1279 ckn Kaang Chin -1280 cko Anufo -1281 ckq Kajakse -1282 ckr Kairak -1283 cks Tayo -1284 ckt Chukot -1285 cku Koasati -1286 ckv Kavalan -1287 ckx Caka -1288 cky Cakfem-Mushere -1289 ckz Cakchiquel-Quiché Mixed Language -1290 cla Ron -1291 clc Chilcotin -1292 cld Chaldean Neo-Aramaic -1293 cle Lealao Chinantec -1294 clh Chilisso -1295 cli Chakali -1296 clj Laitu Chin -1297 clk Idu-Mishmi -1298 cll Chala -1299 clm Clallam -1300 clo Lowland Oaxaca Chontal -1301 cls Classical Sanskrit -1302 clt Lautu Chin -1303 clu Caluyanun -1304 clw Chulym -1305 cly Eastern Highland Chatino -1306 cma Maa -1307 cme Cerma -1308 cmg Classical Mongolian -1309 cmi Emberá-Chamí -1310 cml Campalagian -1311 cmm Michigamea -1312 cmn Mandarin Chinese -1313 cmo Central Mnong -1314 cmr Mro-Khimi Chin -1315 cms Messapic -1316 cmt Camtho -1317 cna Changthang -1318 cnb Chinbon Chin -1319 cnc Côông -1320 cng Northern Qiang -1321 cnh Hakha Chin -1322 cni Asháninka -1323 cnk Khumi Chin -1324 cnl Lalana Chinantec -1325 cno Con -1326 cnp Northern Ping Chinese -1327 cnq Chung -1328 cnr Montenegrin -1329 cns Central Asmat -1330 cnt Tepetotutla Chinantec -1331 cnu Chenoua -1332 cnw Ngawn Chin -1333 cnx Middle Cornish -1334 coa Cocos Islands Malay -1335 cob Chicomuceltec -1336 coc Cocopa -1337 cod Cocama-Cocamilla -1338 coe Koreguaje -1339 cof Colorado -1340 cog Chong -1341 coh Chonyi-Dzihana-Kauma -1342 coj Cochimi -1343 cok Santa Teresa Cora -1344 col Columbia-Wenatchi -1345 com Comanche -1346 con Cofán -1347 coo Comox -1348 cop Coptic -1349 coq Coquille -1350 kw Cornish -1351 co Corsican -1352 cot Caquinte -1353 cou Wamey -1354 cov Cao Miao -1355 cow Cowlitz -1356 cox Nanti -1357 coz Chochotec -1358 cpa Palantla Chinantec -1359 cpb Ucayali-Yurúa Ashéninka -1360 cpc Ajyíninka Apurucayali -1361 cpg Cappadocian Greek -1362 cpi Chinese Pidgin English -1363 cpn Cherepon -1364 cpo Kpeego -1365 cps Capiznon -1366 cpu Pichis Ashéninka -1367 cpx Pu-Xian Chinese -1368 cpy South Ucayali Ashéninka -1369 cqd Chuanqiandian Cluster Miao -1370 cra Chara -1371 crb Island Carib -1372 crc Lonwolwol -1373 crd Coeur d'Alene -1374 cr Cree -1375 crf Caramanta -1376 crg Michif -1377 crh Crimean Tatar -1378 cri Sãotomense -1379 crj Southern East Cree -1380 crk Plains Cree -1381 crl Northern East Cree -1382 crm Moose Cree -1383 crn El Nayar Cora -1384 cro Crow -1385 crq Iyo'wujwa Chorote -1386 crr Carolina Algonquian -1387 crs Seselwa Creole French -1388 crt Iyojwa'ja Chorote -1389 crv Chaura -1390 crw Chrau -1391 crx Carrier -1392 cry Cori -1393 crz Cruzeño -1394 csa Chiltepec Chinantec -1395 csb Kashubian -1396 csc Catalan Sign Language -1397 csd Chiangmai Sign Language -1398 cse Czech Sign Language -1399 csf Cuba Sign Language -1400 csg Chilean Sign Language -1401 csh Asho Chin -1402 csi Coast Miwok -1403 csj Songlai Chin -1404 csk Jola-Kasa -1405 csl Chinese Sign Language -1406 csm Central Sierra Miwok -1407 csn Colombian Sign Language -1408 cso Sochiapam Chinantec -1409 csp Southern Ping Chinese -1410 csq Croatia Sign Language -1411 csr Costa Rican Sign Language -1412 css Southern Ohlone -1413 cst Northern Ohlone -1414 csv Sumtu Chin -1415 csw Swampy Cree -1416 csx Cambodian Sign Language -1417 csy Siyin Chin -1418 csz Coos -1419 cta Tataltepec Chatino -1420 ctc Chetco -1421 ctd Tedim Chin -1422 cte Tepinapa Chinantec -1423 ctg Chittagonian -1424 cth Thaiphum Chin -1425 ctl Tlacoatzintepec Chinantec -1426 ctm Chitimacha -1427 ctn Chhintange -1428 cto Emberá-Catío -1429 ctp Western Highland Chatino -1430 cts Northern Catanduanes Bikol -1431 ctt Wayanad Chetti -1432 ctu Chol -1433 cty Moundadan Chetty -1434 ctz Zacatepec Chatino -1435 cua Cua -1436 cub Cubeo -1437 cuc Usila Chinantec -1438 cuh Chuka -1439 cui Cuiba -1440 cuj Mashco Piro -1441 cuk San Blas Kuna -1442 cul Culina -1443 cuo Cumanagoto -1444 cup Cupeño -1445 cuq Cun -1446 cur Chhulung -1447 cut Teutila Cuicatec -1448 cuu Tai Ya -1449 cuv Cuvok -1450 cuw Chukwa -1451 cux Tepeuxila Cuicatec -1452 cuy Cuitlatec -1453 cvg Chug -1454 cvn Valle Nacional Chinantec -1455 cwa Kabwa -1456 cwb Maindo -1457 cwd Woods Cree -1458 cwe Kwere -1459 cwg Chewong -1460 cwt Kuwaataay -1461 cxh Cha'ari -1462 cya Nopala Chatino -1463 cyb Cayubaba -1464 cy Welsh -1465 cyo Cuyonon -1466 czh Huizhou Chinese -1467 czk Knaanic -1468 czn Zenzontepec Chatino -1469 czo Min Zhong Chinese -1470 czt Zotung Chin -1471 daa Dangaléat -1472 dac Dambi -1473 dad Marik -1474 dae Duupa -1475 dag Dagbani -1476 dah Gwahatike -1477 dai Day -1478 daj Dar Fur Daju -1479 dak Dakota -1480 dal Dahalo -1481 dam Damakawa -1482 da Danish -1483 dao Daai Chin -1484 daq Dandami Maria -1485 dar Dargwa -1486 das Daho-Doo -1487 dau Dar Sila Daju -1488 dav Taita -1489 daw Davawenyo -1490 dax Dayi -1491 daz Dao -1492 dba Bangime -1493 dbb Deno -1494 dbd Dadiya -1495 dbe Dabe -1496 dbf Edopi -1497 dbg Dogul Dom Dogon -1498 dbi Doka -1499 dbj Ida'an -1500 dbl Dyirbal -1501 dbm Duguri -1502 dbn Duriankere -1503 dbo Dulbu -1504 dbp Duwai -1505 dbq Daba -1506 dbr Dabarre -1507 dbt Ben Tey Dogon -1508 dbu Bondum Dom Dogon -1509 dbv Dungu -1510 dbw Bankan Tey Dogon -1511 dby Dibiyaso -1512 dcc Deccan -1513 dcr Negerhollands -1514 dda Dadi Dadi -1515 ddd Dongotono -1516 dde Doondo -1517 ddg Fataluku -1518 ddi West Goodenough -1519 ddj Jaru -1520 ddn Dendi (Benin) -1521 ddo Dido -1522 ddr Dhudhuroa -1523 dds Donno So Dogon -1524 ddw Dawera-Daweloor -1525 dec Dagik -1526 ded Dedua -1527 dee Dewoin -1528 def Dezfuli -1529 deg Degema -1530 deh Dehwari -1531 dei Demisa -1532 dek Dek -1533 del Delaware -1534 dem Dem -1535 den Slave (Athapascan) -1536 dep Pidgin Delaware -1537 deq Dendi (Central African Republic) -1538 der Deori -1539 des Desano -1540 de German -1541 dev Domung -1542 dez Dengese -1543 dga Southern Dagaare -1544 dgb Bunoge Dogon -1545 dgc Casiguran Dumagat Agta -1546 dgd Dagaari Dioula -1547 dge Degenan -1548 dgg Doga -1549 dgh Dghwede -1550 dgi Northern Dagara -1551 dgk Dagba -1552 dgl Andaandi -1553 dgn Dagoman -1554 dgo Dogri (individual language) -1555 dgr Tlicho -1556 dgs Dogoso -1557 dgt Ndra'ngith -1558 dgw Daungwurrung -1559 dgx Doghoro -1560 dgz Daga -1561 dhd Dhundari -1562 dhg Dhangu-Djangu -1563 dhi Dhimal -1564 dhl Dhalandji -1565 dhm Zemba -1566 dhn Dhanki -1567 dho Dhodia -1568 dhr Dhargari -1569 dhs Dhaiso -1570 dhu Dhurga -1571 dhv Dehu -1572 dhw Dhanwar (Nepal) -1573 dhx Dhungaloo -1574 dia Dia -1575 dib South Central Dinka -1576 dic Lakota Dida -1577 did Didinga -1578 dif Dieri -1579 dig Digo -1580 dih Kumiai -1581 dii Dimbong -1582 dij Dai -1583 dik Southwestern Dinka -1584 dil Dilling -1585 dim Dime -1586 din Dinka -1587 dio Dibo -1588 dip Northeastern Dinka -1589 diq Dimli (individual language) -1590 dir Dirim -1591 dis Dimasa -1592 diu Diriku -1593 dv Dhivehi -1594 diw Northwestern Dinka -1595 dix Dixon Reef -1596 diy Diuwe -1597 diz Ding -1598 dja Djadjawurrung -1599 djb Djinba -1600 djc Dar Daju Daju -1601 djd Djamindjung -1602 dje Zarma -1603 djf Djangun -1604 dji Djinang -1605 djj Djeebbana -1606 djk Eastern Maroon Creole -1607 djm Jamsay Dogon -1608 djn Jawoyn -1609 djo Jangkang -1610 djr Djambarrpuyngu -1611 dju Kapriman -1612 djw Djawi -1613 dka Dakpakha -1614 dkg Kadung -1615 dkk Dakka -1616 dkr Kuijau -1617 dks Southeastern Dinka -1618 dkx Mazagway -1619 dlg Dolgan -1620 dlk Dahalik -1621 dlm Dalmatian -1622 dln Darlong -1623 dma Duma -1624 dmb Mombo Dogon -1625 dmc Gavak -1626 dmd Madhi Madhi -1627 dme Dugwor -1628 dmf Medefaidrin -1629 dmg Upper Kinabatangan -1630 dmk Domaaki -1631 dml Dameli -1632 dmm Dama -1633 dmo Kemedzung -1634 dmr East Damar -1635 dms Dampelas -1636 dmu Dubu -1637 dmv Dumpas -1638 dmw Mudburra -1639 dmx Dema -1640 dmy Demta -1641 dna Upper Grand Valley Dani -1642 dnd Daonda -1643 dne Ndendeule -1644 dng Dungan -1645 dni Lower Grand Valley Dani -1646 dnj Dan -1647 dnk Dengka -1648 dnn Dzùùngoo -1649 dno Ndrulo -1650 dnr Danaru -1651 dnt Mid Grand Valley Dani -1652 dnu Danau -1653 dnv Danu -1654 dnw Western Dani -1655 dny Dení -1656 doa Dom -1657 dob Dobu -1658 doc Northern Dong -1659 doe Doe -1660 dof Domu -1661 doh Dong -1662 doi Dogri (macrolanguage) -1663 dok Dondo -1664 dol Doso -1665 don Toura (Papua New Guinea) -1666 doo Dongo -1667 dop Lukpa -1668 doq Dominican Sign Language -1669 dor Dori'o -1670 dos Dogosé -1671 dot Dass -1672 dov Dombe -1673 dow Doyayo -1674 dox Bussa -1675 doy Dompo -1676 doz Dorze -1677 dpp Papar -1678 drb Dair -1679 drc Minderico -1680 drd Darmiya -1681 dre Dolpo -1682 drg Rungus -1683 dri C'Lela -1684 drl Paakantyi -1685 drn West Damar -1686 dro Daro-Matu Melanau -1687 drq Dura -1688 drs Gedeo -1689 drt Drents -1690 dru Rukai -1691 dry Darai -1692 dsb Lower Sorbian -1693 dse Dutch Sign Language -1694 dsh Daasanach -1695 dsi Disa -1696 dsk Dokshi -1697 dsl Danish Sign Language -1698 dsn Dusner -1699 dso Desiya -1700 dsq Tadaksahak -1701 dsz Mardin Sign Language -1702 dta Daur -1703 dtb Labuk-Kinabatangan Kadazan -1704 dtd Ditidaht -1705 dth Adithinngithigh -1706 dti Ana Tinga Dogon -1707 dtk Tene Kan Dogon -1708 dtm Tomo Kan Dogon -1709 dtn Daatsʼíin -1710 dto Tommo So Dogon -1711 dtp Kadazan Dusun -1712 dtr Lotud -1713 dts Toro So Dogon -1714 dtt Toro Tegu Dogon -1715 dtu Tebul Ure Dogon -1716 dty Dotyali -1717 dua Duala -1718 dub Dubli -1719 duc Duna -1720 due Umiray Dumaget Agta -1721 duf Dumbea -1722 dug Duruma -1723 duh Dungra Bhil -1724 dui Dumun -1725 duk Uyajitaya -1726 dul Alabat Island Agta -1727 dum Middle Dutch (ca. 1050-1350) -1728 dun Dusun Deyah -1729 duo Dupaninan Agta -1730 dup Duano -1731 duq Dusun Malang -1732 dur Dii -1733 dus Dumi -1734 duu Drung -1735 duv Duvle -1736 duw Dusun Witu -1737 dux Duungooma -1738 duy Dicamay Agta -1739 duz Duli-Gey -1740 dva Duau -1741 dwa Diri -1742 dwk Dawik Kui -1743 dwr Dawro -1744 dws Dutton World Speedwords -1745 dwu Dhuwal -1746 dww Dawawa -1747 dwy Dhuwaya -1748 dwz Dewas Rai -1749 dya Dyan -1750 dyb Dyaberdyaber -1751 dyd Dyugun -1752 dyg Villa Viciosa Agta -1753 dyi Djimini Senoufo -1754 dym Yanda Dom Dogon -1755 dyn Dyangadi -1756 dyo Jola-Fonyi -1757 dyr Dyarim -1758 dyu Dyula -1759 dyy Djabugay -1760 dza Tunzu -1761 dzd Daza -1762 dze Djiwarli -1763 dzg Dazaga -1764 dzl Dzalakha -1765 dzn Dzando -1766 dz Dzongkha -1767 eaa Karenggapa -1768 ebc Beginci -1769 ebg Ebughu -1770 ebk Eastern Bontok -1771 ebo Teke-Ebo -1772 ebr Ebrié -1773 ebu Embu -1774 ecr Eteocretan -1775 ecs Ecuadorian Sign Language -1776 ecy Eteocypriot -1777 eee E -1778 efa Efai -1779 efe Efe -1780 efi Efik -1781 ega Ega -1782 egl Emilian -1783 egm Benamanga -1784 ego Eggon -1785 egy Egyptian (Ancient) -1786 ehs Miyakubo Sign Language -1787 ehu Ehueun -1788 eip Eipomek -1789 eit Eitiep -1790 eiv Askopan -1791 eja Ejamat -1792 eka Ekajuk -1793 eke Ekit -1794 ekg Ekari -1795 eki Eki -1796 ekk Standard Estonian -1797 ekl Kol (Bangladesh) -1798 ekm Elip -1799 eko Koti -1800 ekp Ekpeye -1801 ekr Yace -1802 eky Eastern Kayah -1803 ele Elepi -1804 elh El Hugeirat -1805 eli Nding -1806 elk Elkei -1807 el Modern Greek (1453-) -1808 elm Eleme -1809 elo El Molo -1810 elu Elu -1811 elx Elamite -1812 ema Emai-Iuleha-Ora -1813 emb Embaloh -1814 eme Emerillon -1815 emg Eastern Meohang -1816 emi Mussau-Emira -1817 emk Eastern Maninkakan -1818 emm Mamulique -1819 emn Eman -1820 emp Northern Emberá -1821 emq Eastern Minyag -1822 ems Pacific Gulf Yupik -1823 emu Eastern Muria -1824 emw Emplawas -1825 emx Erromintxela -1826 emy Epigraphic Mayan -1827 emz Mbessa -1828 ena Apali -1829 enb Markweeta -1830 enc En -1831 end Ende -1832 enf Forest Enets -1833 en English -1834 enh Tundra Enets -1835 enl Enlhet -1836 enm Middle English (1100-1500) -1837 enn Engenni -1838 eno Enggano -1839 enq Enga -1840 enr Emumu -1841 enu Enu -1842 env Enwan (Edo State) -1843 enw Enwan (Akwa Ibom State) -1844 enx Enxet -1845 eot Beti (Côte d'Ivoire) -1846 epi Epie -1847 eo Esperanto -1848 era Eravallan -1849 erg Sie -1850 erh Eruwa -1851 eri Ogea -1852 erk South Efate -1853 ero Horpa -1854 err Erre -1855 ers Ersu -1856 ert Eritai -1857 erw Erokwanas -1858 ese Ese Ejja -1859 esg Aheri Gondi -1860 esh Eshtehardi -1861 esi North Alaskan Inupiatun -1862 esk Northwest Alaska Inupiatun -1863 esl Egypt Sign Language -1864 esm Esuma -1865 esn Salvadoran Sign Language -1866 eso Estonian Sign Language -1867 esq Esselen -1868 ess Central Siberian Yupik -1869 et Estonian -1870 esu Central Yupik -1871 esy Eskayan -1872 etb Etebi -1873 etc Etchemin -1874 eth Ethiopian Sign Language -1875 etn Eton (Vanuatu) -1876 eto Eton (Cameroon) -1877 etr Edolo -1878 ets Yekhee -1879 ett Etruscan -1880 etu Ejagham -1881 etx Eten -1882 etz Semimi -1883 eud Eudeve -1884 eu Basque -1885 eve Even -1886 evh Uvbie -1887 evn Evenki -1888 ee Ewe -1889 ewo Ewondo -1890 ext Extremaduran -1891 eya Eyak -1892 eyo Keiyo -1893 eza Ezaa -1894 eze Uzekwe -1895 faa Fasu -1896 fab Fa d'Ambu -1897 fad Wagi -1898 faf Fagani -1899 fag Finongan -1900 fah Baissa Fali -1901 fai Faiwol -1902 faj Faita -1903 fak Fang (Cameroon) -1904 fal South Fali -1905 fam Fam -1906 fan Fang (Equatorial Guinea) -1907 fo Faroese -1908 fap Paloor -1909 far Fataleka -1910 fa Persian -1911 fat Fanti -1912 fau Fayu -1913 fax Fala -1914 fay Southwestern Fars -1915 faz Northwestern Fars -1916 fbl West Albay Bikol -1917 fcs Quebec Sign Language -1918 fer Feroge -1919 ffi Foia Foia -1920 ffm Maasina Fulfulde -1921 fgr Fongoro -1922 fia Nobiin -1923 fie Fyer -1924 fif Faifi -1925 fj Fijian -1926 fil Filipino -1927 fi Finnish -1928 fip Fipa -1929 fir Firan -1930 fit Tornedalen Finnish -1931 fiw Fiwaga -1932 fkk Kirya-KonzÉ™l -1933 fkv Kven Finnish -1934 fla Kalispel-Pend d'Oreille -1935 flh Foau -1936 fli Fali -1937 fll North Fali -1938 fln Flinders Island -1939 flr Fuliiru -1940 fly Flaaitaal -1941 fmp Fe'fe' -1942 fmu Far Western Muria -1943 fnb Fanbak -1944 fng Fanagalo -1945 fni Fania -1946 fod Foodo -1947 foi Foi -1948 fom Foma -1949 fon Fon -1950 for Fore -1951 fos Siraya -1952 fpe Fernando Po Creole English -1953 fqs Fas -1954 fr French -1955 frc Cajun French -1956 frd Fordata -1957 frk Frankish -1958 frm Middle French (ca. 1400-1600) -1959 fro Old French (842-ca. 1400) -1960 frp Arpitan -1961 frq Forak -1962 frr Northern Frisian -1963 frs Eastern Frisian -1964 frt Fortsenal -1965 fy Western Frisian -1966 fse Finnish Sign Language -1967 fsl French Sign Language -1968 fss Finland-Swedish Sign Language -1969 fub Adamawa Fulfulde -1970 fuc Pulaar -1971 fud East Futuna -1972 fue Borgu Fulfulde -1973 fuf Pular -1974 fuh Western Niger Fulfulde -1975 fui Bagirmi Fulfulde -1976 fuj Ko -1977 ff Fulah -1978 fum Fum -1979 fun Fulniô -1980 fuq Central-Eastern Niger Fulfulde -1981 fur Friulian -1982 fut Futuna-Aniwa -1983 fuu Furu -1984 fuv Nigerian Fulfulde -1985 fuy Fuyug -1986 fvr Fur -1987 fwa Fwâi -1988 fwe Fwe -1989 gaa Ga -1990 gab Gabri -1991 gac Mixed Great Andamanese -1992 gad Gaddang -1993 gae Guarequena -1994 gaf Gende -1995 gag Gagauz -1996 gah Alekano -1997 gai Borei -1998 gaj Gadsup -1999 gak Gamkonora -2000 gal Galolen -2001 gam Kandawo -2002 gan Gan Chinese -2003 gao Gants -2004 gap Gal -2005 gaq Gata' -2006 gar Galeya -2007 gas Adiwasi Garasia -2008 gat Kenati -2009 gau Mudhili Gadaba -2010 gaw Nobonob -2011 gax Borana-Arsi-Guji Oromo -2012 gay Gayo -2013 gaz West Central Oromo -2014 gba Gbaya (Central African Republic) -2015 gbb Kaytetye -2016 gbd Karajarri -2017 gbe Niksek -2018 gbf Gaikundi -2019 gbg Gbanziri -2020 gbh Defi Gbe -2021 gbi Galela -2022 gbj Bodo Gadaba -2023 gbk Gaddi -2024 gbl Gamit -2025 gbm Garhwali -2026 gbn Mo'da -2027 gbo Northern Grebo -2028 gbp Gbaya-Bossangoa -2029 gbq Gbaya-Bozoum -2030 gbr Gbagyi -2031 gbs Gbesi Gbe -2032 gbu Gagadu -2033 gbv Gbanu -2034 gbw Gabi-Gabi -2035 gbx Eastern Xwla Gbe -2036 gby Gbari -2037 gbz Zoroastrian Dari -2038 gcc Mali -2039 gcd Ganggalida -2040 gce Galice -2041 gcf Guadeloupean Creole French -2042 gcl Grenadian Creole English -2043 gcn Gaina -2044 gcr Guianese Creole French -2045 gct Colonia Tovar German -2046 gda Gade Lohar -2047 gdb Pottangi Ollar Gadaba -2048 gdc Gugu Badhun -2049 gdd Gedaged -2050 gde Gude -2051 gdf Guduf-Gava -2052 gdg Ga'dang -2053 gdh Gadjerawang -2054 gdi Gundi -2055 gdj Gurdjar -2056 gdk Gadang -2057 gdl Dirasha -2058 gdm Laal -2059 gdn Umanakaina -2060 gdo Ghodoberi -2061 gdq Mehri -2062 gdr Wipi -2063 gds Ghandruk Sign Language -2064 gdt Kungardutyi -2065 gdu Gudu -2066 gdx Godwari -2067 gea Geruma -2068 geb Kire -2069 gec Gboloo Grebo -2070 ged Gade -2071 gef Gerai -2072 geg Gengle -2073 geh Hutterite German -2074 gei Gebe -2075 gej Gen -2076 gek Ywom -2077 gel ut-Ma'in -2078 geq Geme -2079 ges Geser-Gorom -2080 gev Eviya -2081 gew Gera -2082 gex Garre -2083 gey Enya -2084 gez Geez -2085 gfk Patpatar -2086 gft Gafat -2087 gga Gao -2088 ggb Gbii -2089 ggd Gugadj -2090 gge Gurr-goni -2091 ggg Gurgula -2092 ggk Kungarakany -2093 ggl Ganglau -2094 ggt Gitua -2095 ggu Gagu -2096 ggw Gogodala -2097 gha Ghadamès -2098 ghc Hiberno-Scottish Gaelic -2099 ghe Southern Ghale -2100 ghh Northern Ghale -2101 ghk Geko Karen -2102 ghl Ghulfan -2103 ghn Ghanongga -2104 gho Ghomara -2105 ghr Ghera -2106 ghs Guhu-Samane -2107 ght Kuke -2108 gia Kija -2109 gib Gibanawa -2110 gic Gail -2111 gid Gidar -2112 gie GaÉ“ogbo -2113 gig Goaria -2114 gih Githabul -2115 gii Girirra -2116 gil Gilbertese -2117 gim Gimi (Eastern Highlands) -2118 gin Hinukh -2119 gip Gimi (West New Britain) -2120 giq Green Gelao -2121 gir Red Gelao -2122 gis North Giziga -2123 git Gitxsan -2124 giu Mulao -2125 giw White Gelao -2126 gix Gilima -2127 giy Giyug -2128 giz South Giziga -2129 gjk Kachi Koli -2130 gjm Gunditjmara -2131 gjn Gonja -2132 gjr Gurindji Kriol -2133 gju Gujari -2134 gka Guya -2135 gkd Magɨ (Madang Province) -2136 gke Ndai -2137 gkn Gokana -2138 gko Kok-Nar -2139 gkp Guinea Kpelle -2140 gku Ç‚Ungkue -2141 gd Scottish Gaelic -2142 glb Belning -2143 glc Bon Gula -2144 gld Nanai -2145 ga Irish -2146 gl Galician -2147 glh Northwest Pashai -2148 glj Gula Iro -2149 glk Gilaki -2150 gll Garlali -2151 glo Galambu -2152 glr Glaro-Twabo -2153 glu Gula (Chad) -2154 gv Manx -2155 glw Glavda -2156 gly Gule -2157 gma Gambera -2158 gmb Gula'alaa -2159 gmd Mághdì -2160 gmg Magɨyi -2161 gmh Middle High German (ca. 1050-1500) -2162 gml Middle Low German -2163 gmm Gbaya-Mbodomo -2164 gmn Gimnime -2165 gmr Mirning -2166 gmu Gumalu -2167 gmv Gamo -2168 gmx Magoma -2169 gmy Mycenaean Greek -2170 gmz Mgbolizhia -2171 gna Kaansa -2172 gnb Gangte -2173 gnc Guanche -2174 gnd Zulgo-Gemzek -2175 gne Ganang -2176 gng Ngangam -2177 gnh Lere -2178 gni Gooniyandi -2179 gnj Ngen -2180 gnk ǁGana -2181 gnl Gangulu -2182 gnm Ginuman -2183 gnn Gumatj -2184 gno Northern Gondi -2185 gnq Gana -2186 gnr Gureng Gureng -2187 gnt Guntai -2188 gnu Gnau -2189 gnw Western Bolivian Guaraní -2190 gnz Ganzi -2191 goa Guro -2192 gob Playero -2193 goc Gorakor -2194 god Godié -2195 goe Gongduk -2196 gof Gofa -2197 gog Gogo -2198 goh Old High German (ca. 750-1050) -2199 goi Gobasi -2200 goj Gowlan -2201 gok Gowli -2202 gol Gola -2203 gom Goan Konkani -2204 gon Gondi -2205 goo Gone Dau -2206 gop Yeretuar -2207 goq Gorap -2208 gor Gorontalo -2209 gos Gronings -2210 got Gothic -2211 gou Gavar -2212 gov Goo -2213 gow Gorowa -2214 gox Gobu -2215 goy Goundo -2216 goz Gozarkhani -2217 gpa Gupa-Abawa -2218 gpe Ghanaian Pidgin English -2219 gpn Taiap -2220 gqa Ga'anda -2221 gqi Guiqiong -2222 gqn Guana (Brazil) -2223 gqr Gor -2224 gqu Qau -2225 gra Rajput Garasia -2226 grb Grebo -2227 grc Ancient Greek (to 1453) -2228 grd Guruntum-Mbaaru -2229 grg Madi -2230 grh Gbiri-Niragu -2231 gri Ghari -2232 grj Southern Grebo -2233 grm Kota Marudu Talantang -2234 gn Guarani -2235 gro Groma -2236 grq Gorovu -2237 grr Taznatit -2238 grs Gresi -2239 grt Garo -2240 gru Kistane -2241 grv Central Grebo -2242 grw Gweda -2243 grx Guriaso -2244 gry Barclayville Grebo -2245 grz Guramalum -2246 gse Ghanaian Sign Language -2247 gsg German Sign Language -2248 gsl Gusilay -2249 gsm Guatemalan Sign Language -2250 gsn Nema -2251 gso Southwest Gbaya -2252 gsp Wasembo -2253 gss Greek Sign Language -2254 gsw Swiss German -2255 gta Guató -2256 gtu Aghu-Tharnggala -2257 gua Shiki -2258 gub Guajajára -2259 guc Wayuu -2260 gud Yocoboué Dida -2261 gue Gurindji -2262 guf Gupapuyngu -2263 gug Paraguayan Guaraní -2264 guh Guahibo -2265 gui Eastern Bolivian Guaraní -2266 gu Gujarati -2267 guk Gumuz -2268 gul Sea Island Creole English -2269 gum Guambiano -2270 gun Mbyá Guaraní -2271 guo Guayabero -2272 gup Gunwinggu -2273 guq Aché -2274 gur Farefare -2275 gus Guinean Sign Language -2276 gut Maléku Jaíka -2277 guu Yanomamö -2278 guw Gun -2279 gux Gourmanchéma -2280 guz Gusii -2281 gva Guana (Paraguay) -2282 gvc Guanano -2283 gve Duwet -2284 gvf Golin -2285 gvj Guajá -2286 gvl Gulay -2287 gvm Gurmana -2288 gvn Kuku-Yalanji -2289 gvo Gavião Do Jiparaná -2290 gvp Pará Gavião -2291 gvr Gurung -2292 gvs Gumawana -2293 gvy Guyani -2294 gwa Mbato -2295 gwb Gwa -2296 gwc Gawri -2297 gwd Gawwada -2298 gwe Gweno -2299 gwf Gowro -2300 gwg Moo -2301 gwi Gwichʼin -2302 gwj Ç€Gwi -2303 gwm Awngthim -2304 gwn Gwandara -2305 gwr Gwere -2306 gwt Gawar-Bati -2307 gwu Guwamu -2308 gww Kwini -2309 gwx Gua -2310 gxx Wè Southern -2311 gya Northwest Gbaya -2312 gyb Garus -2313 gyd Kayardild -2314 gye Gyem -2315 gyf Gungabula -2316 gyg Gbayi -2317 gyi Gyele -2318 gyl Gayil -2319 gym Ngäbere -2320 gyn Guyanese Creole English -2321 gyo Gyalsumdo -2322 gyr Guarayu -2323 gyy Gunya -2324 gyz Geji -2325 gza Ganza -2326 gzi Gazi -2327 gzn Gane -2328 haa Han -2329 hab Hanoi Sign Language -2330 hac Gurani -2331 had Hatam -2332 hae Eastern Oromo -2333 haf Haiphong Sign Language -2334 hag Hanga -2335 hah Hahon -2336 hai Haida -2337 haj Hajong -2338 hak Hakka Chinese -2339 hal Halang -2340 ham Hewa -2341 han Hangaza -2342 hao Hakö -2343 hap Hupla -2344 haq Ha -2345 har Harari -2346 has Haisla -2347 ht Haitian -2348 ha Hausa -2349 hav Havu -2350 haw Hawaiian -2351 hax Southern Haida -2352 hay Haya -2353 haz Hazaragi -2354 hba Hamba -2355 hbb Huba -2356 hbn Heiban -2357 hbo Ancient Hebrew -2358 sh Serbo-Croatian -2359 hbu Habu -2360 hca Andaman Creole Hindi -2361 hch Huichol -2362 hdn Northern Haida -2363 hds Honduras Sign Language -2364 hdy Hadiyya -2365 hea Northern Qiandong Miao -2366 he Hebrew -2367 hed Herdé -2368 heg Helong -2369 heh Hehe -2370 hei Heiltsuk -2371 hem Hemba -2372 hz Herero -2373 hgm Haiǁom -2374 hgw Haigwai -2375 hhi Hoia Hoia -2376 hhr Kerak -2377 hhy Hoyahoya -2378 hia Lamang -2379 hib Hibito -2380 hid Hidatsa -2381 hif Fiji Hindi -2382 hig Kamwe -2383 hih Pamosu -2384 hii Hinduri -2385 hij Hijuk -2386 hik Seit-Kaitetu -2387 hil Hiligaynon -2388 hi Hindi -2389 hio Tsoa -2390 hir Himarimã -2391 hit Hittite -2392 hiw Hiw -2393 hix Hixkaryána -2394 hji Haji -2395 hka Kahe -2396 hke Hunde -2397 hkh Khah -2398 hkk Hunjara-Kaina Ke -2399 hkn Mel-Khaonh -2400 hks Hong Kong Sign Language -2401 hla Halia -2402 hlb Halbi -2403 hld Halang Doan -2404 hle Hlersu -2405 hlt Matu Chin -2406 hlu Hieroglyphic Luwian -2407 hma Southern Mashan Hmong -2408 hmb Humburi Senni Songhay -2409 hmc Central Huishui Hmong -2410 hmd Large Flowery Miao -2411 hme Eastern Huishui Hmong -2412 hmf Hmong Don -2413 hmg Southwestern Guiyang Hmong -2414 hmh Southwestern Huishui Hmong -2415 hmi Northern Huishui Hmong -2416 hmj Ge -2417 hmk Maek -2418 hml Luopohe Hmong -2419 hmm Central Mashan Hmong -2420 hmn Hmong -2421 ho Hiri Motu -2422 hmp Northern Mashan Hmong -2423 hmq Eastern Qiandong Miao -2424 hmr Hmar -2425 hms Southern Qiandong Miao -2426 hmt Hamtai -2427 hmu Hamap -2428 hmv Hmong Dô -2429 hmw Western Mashan Hmong -2430 hmy Southern Guiyang Hmong -2431 hmz Hmong Shua -2432 hna Mina (Cameroon) -2433 hnd Southern Hindko -2434 hne Chhattisgarhi -2435 hng Hungu -2436 hnh ǁAni -2437 hni Hani -2438 hnj Hmong Njua -2439 hnn Hanunoo -2440 hno Northern Hindko -2441 hns Caribbean Hindustani -2442 hnu Hung -2443 hoa Hoava -2444 hob Mari (Madang Province) -2445 hoc Ho -2446 hod Holma -2447 hoe Horom -2448 hoh Hobyót -2449 hoi Holikachuk -2450 hoj Hadothi -2451 hol Holu -2452 hom Homa -2453 hoo Holoholo -2454 hop Hopi -2455 hor Horo -2456 hos Ho Chi Minh City Sign Language -2457 hot Hote -2458 hov Hovongan -2459 how Honi -2460 hoy Holiya -2461 hoz Hozo -2462 hpo Hpon -2463 hps Hawai'i Sign Language (HSL) -2464 hra Hrangkhol -2465 hrc Niwer Mil -2466 hre Hre -2467 hrk Haruku -2468 hrm Horned Miao -2469 hro Haroi -2470 hrp Nhirrpi -2471 hrt Hértevin -2472 hru Hruso -2473 hr Croatian -2474 hrw Warwar Feni -2475 hrx Hunsrik -2476 hrz Harzani -2477 hsb Upper Sorbian -2478 hsh Hungarian Sign Language -2479 hsl Hausa Sign Language -2480 hsn Xiang Chinese -2481 hss Harsusi -2482 hti Hoti -2483 hto Minica Huitoto -2484 hts Hadza -2485 htu Hitu -2486 htx Middle Hittite -2487 hub Huambisa -2488 huc Ç‚Hua -2489 hud Huaulu -2490 hue San Francisco Del Mar Huave -2491 huf Humene -2492 hug Huachipaeri -2493 huh Huilliche -2494 hui Huli -2495 huj Northern Guiyang Hmong -2496 huk Hulung -2497 hul Hula -2498 hum Hungana -2499 hu Hungarian -2500 huo Hu -2501 hup Hupa -2502 huq Tsat -2503 hur Halkomelem -2504 hus Huastec -2505 hut Humla -2506 huu Murui Huitoto -2507 huv San Mateo Del Mar Huave -2508 huw Hukumina -2509 hux Nüpode Huitoto -2510 huy Hulaulá -2511 huz Hunzib -2512 hvc Haitian Vodoun Culture Language -2513 hve San Dionisio Del Mar Huave -2514 hvk Haveke -2515 hvn Sabu -2516 hvv Santa María Del Mar Huave -2517 hwa Wané -2518 hwc Hawai'i Creole English -2519 hwo Hwana -2520 hya Hya -2521 hy Armenian -2522 hyw Western Armenian -2523 iai Iaai -2524 ian Iatmul -2525 iar Purari -2526 iba Iban -2527 ibb Ibibio -2528 ibd Iwaidja -2529 ibe Akpes -2530 ibg Ibanag -2531 ibh Bih -2532 ibl Ibaloi -2533 ibm Agoi -2534 ibn Ibino -2535 ig Igbo -2536 ibr Ibuoro -2537 ibu Ibu -2538 iby Ibani -2539 ica Ede Ica -2540 ich Etkywan -2541 icl Icelandic Sign Language -2542 icr Islander Creole English -2543 ida Idakho-Isukha-Tiriki -2544 idb Indo-Portuguese -2545 idc Idon -2546 idd Ede Idaca -2547 ide Idere -2548 idi Idi -2549 io Ido -2550 idr Indri -2551 ids Idesa -2552 idt Idaté -2553 idu Idoma -2554 ifa Amganad Ifugao -2555 ifb Batad Ifugao -2556 ife Ifè -2557 iff Ifo -2558 ifk Tuwali Ifugao -2559 ifm Teke-Fuumu -2560 ifu Mayoyao Ifugao -2561 ify Keley-I Kallahan -2562 igb Ebira -2563 ige Igede -2564 igg Igana -2565 igl Igala -2566 igm Kanggape -2567 ign Ignaciano -2568 igo Isebe -2569 igs Interglossa -2570 igw Igwe -2571 ihb Iha Based Pidgin -2572 ihi Ihievbe -2573 ihp Iha -2574 ihw Bidhawal -2575 ii Sichuan Yi -2576 iin Thiin -2577 ijc Izon -2578 ije Biseni -2579 ijj Ede Ije -2580 ijn Kalabari -2581 ijs Southeast Ijo -2582 ike Eastern Canadian Inuktitut -2583 ikh Ikhin-Arokho -2584 iki Iko -2585 ikk Ika -2586 ikl Ikulu -2587 iko Olulumo-Ikom -2588 ikp Ikpeshi -2589 ikr Ikaranggal -2590 iks Inuit Sign Language -2591 ikt Inuinnaqtun -2592 iu Inuktitut -2593 ikv Iku-Gora-Ankwa -2594 ikw Ikwere -2595 ikx Ik -2596 ikz Ikizu -2597 ila Ile Ape -2598 ilb Ila -2599 ie Interlingue -2600 ilg Garig-Ilgar -2601 ili Ili Turki -2602 ilk Ilongot -2603 ilm Iranun (Malaysia) -2604 ilo Iloko -2605 ilp Iranun (Philippines) -2606 ils International Sign -2607 ilu Ili'uun -2608 ilv Ilue -2609 ima Mala Malasar -2610 imi Anamgura -2611 iml Miluk -2612 imn Imonda -2613 imo Imbongu -2614 imr Imroing -2615 ims Marsian -2616 imt Imotong -2617 imy Milyan -2618 ia Interlingua (International Auxiliary Language Association) -2619 inb Inga -2620 id Indonesian -2621 ing Degexit'an -2622 inh Ingush -2623 inj Jungle Inga -2624 inl Indonesian Sign Language -2625 inm Minaean -2626 inn Isinai -2627 ino Inoke-Yate -2628 inp Iñapari -2629 ins Indian Sign Language -2630 int Intha -2631 inz Ineseño -2632 ior Inor -2633 iou Tuma-Irumu -2634 iow Iowa-Oto -2635 ipi Ipili -2636 ik Inupiaq -2637 ipo Ipiko -2638 iqu Iquito -2639 iqw Ikwo -2640 ire Iresim -2641 irh Irarutu -2642 iri Rigwe -2643 irk Iraqw -2644 irn Irántxe -2645 irr Ir -2646 iru Irula -2647 irx Kamberau -2648 iry Iraya -2649 isa Isabi -2650 isc Isconahua -2651 isd Isnag -2652 ise Italian Sign Language -2653 isg Irish Sign Language -2654 ish Esan -2655 isi Nkem-Nkum -2656 isk Ishkashimi -2657 is Icelandic -2658 ism Masimasi -2659 isn Isanzu -2660 iso Isoko -2661 isr Israeli Sign Language -2662 ist Istriot -2663 isu Isu (Menchum Division) -2664 isv Interslavic -2665 it Italian -2666 itb Binongan Itneg -2667 itd Southern Tidung -2668 ite Itene -2669 iti Inlaod Itneg -2670 itk Judeo-Italian -2671 itl Itelmen -2672 itm Itu Mbon Uzo -2673 ito Itonama -2674 itr Iteri -2675 its Isekiri -2676 itt Maeng Itneg -2677 itv Itawit -2678 itw Ito -2679 itx Itik -2680 ity Moyadan Itneg -2681 itz Itzá -2682 ium Iu Mien -2683 ivb Ibatan -2684 ivv Ivatan -2685 iwk I-Wak -2686 iwm Iwam -2687 iwo Iwur -2688 iws Sepik Iwam -2689 ixc Ixcatec -2690 ixl Ixil -2691 iya Iyayu -2692 iyo Mesaka -2693 iyx Yaka (Congo) -2694 izh Ingrian -2695 izm Kizamani -2696 izr Izere -2697 izz Izii -2698 jaa Jamamadí -2699 jab Hyam -2700 jac Popti' -2701 jad Jahanka -2702 jae Yabem -2703 jaf Jara -2704 jah Jah Hut -2705 jaj Zazao -2706 jak Jakun -2707 jal Yalahatan -2708 jam Jamaican Creole English -2709 jan Jandai -2710 jao Yanyuwa -2711 jaq Yaqay -2712 jas New Caledonian Javanese -2713 jat Jakati -2714 jau Yaur -2715 jv Javanese -2716 jax Jambi Malay -2717 jay Yan-nhangu -2718 jaz Jawe -2719 jbe Judeo-Berber -2720 jbi Badjiri -2721 jbj Arandai -2722 jbk Barikewa -2723 jbm Bijim -2724 jbn Nafusi -2725 jbo Lojban -2726 jbr Jofotek-Bromnya -2727 jbt Jabutí -2728 jbu Jukun Takum -2729 jbw Yawijibaya -2730 jcs Jamaican Country Sign Language -2731 jct Krymchak -2732 jda Jad -2733 jdg Jadgali -2734 jdt Judeo-Tat -2735 jeb Jebero -2736 jee Jerung -2737 jeh Jeh -2738 jei Yei -2739 jek Jeri Kuo -2740 jel Yelmek -2741 jen Dza -2742 jer Jere -2743 jet Manem -2744 jeu Jonkor Bourmataguil -2745 jgb Ngbee -2746 jge Judeo-Georgian -2747 jgk Gwak -2748 jgo Ngomba -2749 jhi Jehai -2750 jhs Jhankot Sign Language -2751 jia Jina -2752 jib Jibu -2753 jic Tol -2754 jid Bu (Kaduna State) -2755 jie Jilbe -2756 jig Jingulu -2757 jih sTodsde -2758 jii Jiiddu -2759 jil Jilim -2760 jim Jimi (Cameroon) -2761 jio Jiamao -2762 jiq Guanyinqiao -2763 jit Jita -2764 jiu Youle Jinuo -2765 jiv Shuar -2766 jiy Buyuan Jinuo -2767 jje Jejueo -2768 jjr Bankal -2769 jka Kaera -2770 jkm Mobwa Karen -2771 jko Kubo -2772 jkp Paku Karen -2773 jkr Koro (India) -2774 jks Amami Koniya Sign Language -2775 jku Labir -2776 jle Ngile -2777 jls Jamaican Sign Language -2778 jma Dima -2779 jmb Zumbun -2780 jmc Machame -2781 jmd Yamdena -2782 jmi Jimi (Nigeria) -2783 jml Jumli -2784 jmn Makuri Naga -2785 jmr Kamara -2786 jms Mashi (Nigeria) -2787 jmw Mouwase -2788 jmx Western Juxtlahuaca Mixtec -2789 jna Jangshung -2790 jnd Jandavra -2791 jng Yangman -2792 jni Janji -2793 jnj Yemsa -2794 jnl Rawat -2795 jns Jaunsari -2796 job Joba -2797 jod Wojenaka -2798 jog Jogi -2799 jor Jorá -2800 jos Jordanian Sign Language -2801 jow Jowulu -2802 jpa Jewish Palestinian Aramaic -2803 ja Japanese -2804 jpr Judeo-Persian -2805 jqr Jaqaru -2806 jra Jarai -2807 jrb Judeo-Arabic -2808 jrr Jiru -2809 jrt Jakattoe -2810 jru Japrería -2811 jsl Japanese Sign Language -2812 jua Júma -2813 jub Wannu -2814 juc Jurchen -2815 jud Worodougou -2816 juh Hõne -2817 jui Ngadjuri -2818 juk Wapan -2819 jul Jirel -2820 jum Jumjum -2821 jun Juang -2822 juo Jiba -2823 jup Hupdë -2824 jur Jurúna -2825 jus Jumla Sign Language -2826 jut Jutish -2827 juu Ju -2828 juw Wãpha -2829 juy Juray -2830 jvd Javindo -2831 jvn Caribbean Javanese -2832 jwi Jwira-Pepesa -2833 jya Jiarong -2834 jye Judeo-Yemeni Arabic -2835 jyy Jaya -2836 kaa Kara-Kalpak -2837 kab Kabyle -2838 kac Kachin -2839 kad Adara -2840 kae Ketangalan -2841 kaf Katso -2842 kag Kajaman -2843 kah Kara (Central African Republic) -2844 kai Karekare -2845 kaj Jju -2846 kak Kalanguya -2847 kl Kalaallisut -2848 kam Kamba (Kenya) -2849 kn Kannada -2850 kao Xaasongaxango -2851 kap Bezhta -2852 kaq Capanahua -2853 ks Kashmiri -2854 ka Georgian -2855 kr Kanuri -2856 kav Katukína -2857 kaw Kawi -2858 kax Kao -2859 kay Kamayurá -2860 kk Kazakh -2861 kba Kalarko -2862 kbb Kaxuiâna -2863 kbc Kadiwéu -2864 kbd Kabardian -2865 kbe Kanju -2866 kbg Khamba -2867 kbh Camsá -2868 kbi Kaptiau -2869 kbj Kari -2870 kbk Grass Koiari -2871 kbl Kanembu -2872 kbm Iwal -2873 kbn Kare (Central African Republic) -2874 kbo Keliko -2875 kbp Kabiyè -2876 kbq Kamano -2877 kbr Kafa -2878 kbs Kande -2879 kbt Abadi -2880 kbu Kabutra -2881 kbv Dera (Indonesia) -2882 kbw Kaiep -2883 kbx Ap Ma -2884 kby Manga Kanuri -2885 kbz Duhwa -2886 kca Khanty -2887 kcb Kawacha -2888 kcc Lubila -2889 kcd Ngkâlmpw Kanum -2890 kce Kaivi -2891 kcf Ukaan -2892 kcg Tyap -2893 kch Vono -2894 kci Kamantan -2895 kcj Kobiana -2896 kck Kalanga -2897 kcl Kela (Papua New Guinea) -2898 kcm Gula (Central African Republic) -2899 kcn Nubi -2900 kco Kinalakna -2901 kcp Kanga -2902 kcq Kamo -2903 kcr Katla -2904 kcs Koenoem -2905 kct Kaian -2906 kcu Kami (Tanzania) -2907 kcv Kete -2908 kcw Kabwari -2909 kcx Kachama-Ganjule -2910 kcy Korandje -2911 kcz Konongo -2912 kda Worimi -2913 kdc Kutu -2914 kdd Yankunytjatjara -2915 kde Makonde -2916 kdf Mamusi -2917 kdg Seba -2918 kdh Tem -2919 kdi Kumam -2920 kdj Karamojong -2921 kdk Numèè -2922 kdl Tsikimba -2923 kdm Kagoma -2924 kdn Kunda -2925 kdp Kaningdon-Nindem -2926 kdq Koch -2927 kdr Karaim -2928 kdt Kuy -2929 kdu Kadaru -2930 kdw Koneraw -2931 kdx Kam -2932 kdy Keder -2933 kdz Kwaja -2934 kea Kabuverdianu -2935 keb Kélé -2936 kec Keiga -2937 ked Kerewe -2938 kee Eastern Keres -2939 kef Kpessi -2940 keg Tese -2941 keh Keak -2942 kei Kei -2943 kej Kadar -2944 kek Kekchí -2945 kel Kela (Democratic Republic of Congo) -2946 kem Kemak -2947 ken Kenyang -2948 keo Kakwa -2949 kep Kaikadi -2950 keq Kamar -2951 ker Kera -2952 kes Kugbo -2953 ket Ket -2954 keu Akebu -2955 kev Kanikkaran -2956 kew West Kewa -2957 kex Kukna -2958 key Kupia -2959 kez Kukele -2960 kfa Kodava -2961 kfb Northwestern Kolami -2962 kfc Konda-Dora -2963 kfd Korra Koraga -2964 kfe Kota (India) -2965 kff Koya -2966 kfg Kudiya -2967 kfh Kurichiya -2968 kfi Kannada Kurumba -2969 kfj Kemiehua -2970 kfk Kinnauri -2971 kfl Kung -2972 kfm Khunsari -2973 kfn Kuk -2974 kfo Koro (Côte d'Ivoire) -2975 kfp Korwa -2976 kfq Korku -2977 kfr Kachhi -2978 kfs Bilaspuri -2979 kft Kanjari -2980 kfu Katkari -2981 kfv Kurmukar -2982 kfw Kharam Naga -2983 kfx Kullu Pahari -2984 kfy Kumaoni -2985 kfz Koromfé -2986 kga Koyaga -2987 kgb Kawe -2988 kge Komering -2989 kgf Kube -2990 kgg Kusunda -2991 kgi Selangor Sign Language -2992 kgj Gamale Kham -2993 kgk Kaiwá -2994 kgl Kunggari -2995 kgn Karingani -2996 kgo Krongo -2997 kgp Kaingang -2998 kgq Kamoro -2999 kgr Abun -3000 kgs Kumbainggar -3001 kgt Somyev -3002 kgu Kobol -3003 kgv Karas -3004 kgw Karon Dori -3005 kgx Kamaru -3006 kgy Kyerung -3007 kha Khasi -3008 khb Lü -3009 khc Tukang Besi North -3010 khd Bädi Kanum -3011 khe Korowai -3012 khf Khuen -3013 khg Khams Tibetan -3014 khh Kehu -3015 khj Kuturmi -3016 khk Halh Mongolian -3017 khl Lusi -3018 km Khmer -3019 khn Khandesi -3020 kho Khotanese -3021 khp Kapori -3022 khq Koyra Chiini Songhay -3023 khr Kharia -3024 khs Kasua -3025 kht Khamti -3026 khu Nkhumbi -3027 khv Khvarshi -3028 khw Khowar -3029 khx Kanu -3030 khy Kele (Democratic Republic of Congo) -3031 khz Keapara -3032 kia Kim -3033 kib Koalib -3034 kic Kickapoo -3035 kid Koshin -3036 kie Kibet -3037 kif Eastern Parbate Kham -3038 kig Kimaama -3039 kih Kilmeri -3040 kii Kitsai -3041 kij Kilivila -3042 ki Kikuyu -3043 kil Kariya -3044 kim Karagas -3045 rw Kinyarwanda -3046 kio Kiowa -3047 kip Sheshi Kham -3048 kiq Kosadle -3049 ky Kirghiz -3050 kis Kis -3051 kit Agob -3052 kiu Kirmanjki (individual language) -3053 kiv Kimbu -3054 kiw Northeast Kiwai -3055 kix Khiamniungan Naga -3056 kiy Kirikiri -3057 kiz Kisi -3058 kja Mlap -3059 kjb Q'anjob'al -3060 kjc Coastal Konjo -3061 kjd Southern Kiwai -3062 kje Kisar -3063 kjg Khmu -3064 kjh Khakas -3065 kji Zabana -3066 kjj Khinalugh -3067 kjk Highland Konjo -3068 kjl Western Parbate Kham -3069 kjm Kháng -3070 kjn Kunjen -3071 kjo Harijan Kinnauri -3072 kjp Pwo Eastern Karen -3073 kjq Western Keres -3074 kjr Kurudu -3075 kjs East Kewa -3076 kjt Phrae Pwo Karen -3077 kju Kashaya -3078 kjv Kaikavian Literary Language -3079 kjx Ramopa -3080 kjy Erave -3081 kjz Bumthangkha -3082 kka Kakanda -3083 kkb Kwerisa -3084 kkc Odoodee -3085 kkd Kinuku -3086 kke Kakabe -3087 kkf Kalaktang Monpa -3088 kkg Mabaka Valley Kalinga -3089 kkh Khün -3090 kki Kagulu -3091 kkj Kako -3092 kkk Kokota -3093 kkl Kosarek Yale -3094 kkm Kiong -3095 kkn Kon Keu -3096 kko Karko -3097 kkp Gugubera -3098 kkq Kaeku -3099 kkr Kir-Balar -3100 kks Giiwo -3101 kkt Koi -3102 kku Tumi -3103 kkv Kangean -3104 kkw Teke-Kukuya -3105 kkx Kohin -3106 kky Guugu Yimidhirr -3107 kkz Kaska -3108 kla Klamath-Modoc -3109 klb Kiliwa -3110 klc Kolbila -3111 kld Gamilaraay -3112 kle Kulung (Nepal) -3113 klf Kendeje -3114 klg Tagakaulo -3115 klh Weliki -3116 kli Kalumpang -3117 klj Khalaj -3118 klk Kono (Nigeria) -3119 kll Kagan Kalagan -3120 klm Migum -3121 kln Kalenjin -3122 klo Kapya -3123 klp Kamasa -3124 klq Rumu -3125 klr Khaling -3126 kls Kalasha -3127 klt Nukna -3128 klu Klao -3129 klv Maskelynes -3130 klw Tado -3131 klx Koluwawa -3132 kly Kalao -3133 klz Kabola -3134 kma Konni -3135 kmb Kimbundu -3136 kmc Southern Dong -3137 kmd Majukayang Kalinga -3138 kme Bakole -3139 kmf Kare (Papua New Guinea) -3140 kmg Kâte -3141 kmh Kalam -3142 kmi Kami (Nigeria) -3143 kmj Kumarbhag Paharia -3144 kmk Limos Kalinga -3145 kml Tanudan Kalinga -3146 kmm Kom (India) -3147 kmn Awtuw -3148 kmo Kwoma -3149 kmp Gimme -3150 kmq Kwama -3151 kmr Northern Kurdish -3152 kms Kamasau -3153 kmt Kemtuik -3154 kmu Kanite -3155 kmv Karipúna Creole French -3156 kmw Komo (Democratic Republic of Congo) -3157 kmx Waboda -3158 kmy Koma -3159 kmz Khorasani Turkish -3160 kna Dera (Nigeria) -3161 knb Lubuagan Kalinga -3162 knc Central Kanuri -3163 knd Konda -3164 kne Kankanaey -3165 knf Mankanya -3166 kng Koongo -3167 kni Kanufi -3168 knj Western Kanjobal -3169 knk Kuranko -3170 knl Keninjal -3171 knm Kanamarí -3172 knn Konkani (individual language) -3173 kno Kono (Sierra Leone) -3174 knp Kwanja -3175 knq Kintaq -3176 knr Kaningra -3177 kns Kensiu -3178 knt Panoan Katukína -3179 knu Kono (Guinea) -3180 knv Tabo -3181 knw Kung-Ekoka -3182 knx Kendayan -3183 kny Kanyok -3184 knz Kalamsé -3185 koa Konomala -3186 koc Kpati -3187 kod Kodi -3188 koe Kacipo-Bale Suri -3189 kof Kubi -3190 kog Cogui -3191 koh Koyo -3192 koi Komi-Permyak -3193 kok Konkani (macrolanguage) -3194 kol Kol (Papua New Guinea) -3195 kv Komi -3196 kg Kongo -3197 koo Konzo -3198 kop Waube -3199 koq Kota (Gabon) -3200 ko Korean -3201 kos Kosraean -3202 kot Lagwan -3203 kou Koke -3204 kov Kudu-Camo -3205 kow Kugama -3206 koy Koyukon -3207 koz Korak -3208 kpa Kutto -3209 kpb Mullu Kurumba -3210 kpc Curripaco -3211 kpd Koba -3212 kpe Kpelle -3213 kpf Komba -3214 kpg Kapingamarangi -3215 kph Kplang -3216 kpi Kofei -3217 kpj Karajá -3218 kpk Kpan -3219 kpl Kpala -3220 kpm Koho -3221 kpn Kepkiriwát -3222 kpo Ikposo -3223 kpq Korupun-Sela -3224 kpr Korafe-Yegha -3225 kps Tehit -3226 kpt Karata -3227 kpu Kafoa -3228 kpv Komi-Zyrian -3229 kpw Kobon -3230 kpx Mountain Koiali -3231 kpy Koryak -3232 kpz Kupsabiny -3233 kqa Mum -3234 kqb Kovai -3235 kqc Doromu-Koki -3236 kqd Koy Sanjaq Surat -3237 kqe Kalagan -3238 kqf Kakabai -3239 kqg Khe -3240 kqh Kisankasa -3241 kqi Koitabu -3242 kqj Koromira -3243 kqk Kotafon Gbe -3244 kql Kyenele -3245 kqm Khisa -3246 kqn Kaonde -3247 kqo Eastern Krahn -3248 kqp Kimré -3249 kqq Krenak -3250 kqr Kimaragang -3251 kqs Northern Kissi -3252 kqt Klias River Kadazan -3253 kqu Seroa -3254 kqv Okolod -3255 kqw Kandas -3256 kqx Mser -3257 kqy Koorete -3258 kqz Korana -3259 kra Kumhali -3260 krb Karkin -3261 krc Karachay-Balkar -3262 krd Kairui-Midiki -3263 kre Panará -3264 krf Koro (Vanuatu) -3265 krh Kurama -3266 kri Krio -3267 krj Kinaray-A -3268 krk Kerek -3269 krl Karelian -3270 krn Sapo -3271 krp Durop -3272 krr Krung -3273 krs Gbaya (Sudan) -3274 krt Tumari Kanuri -3275 kru Kurukh -3276 krv Kavet -3277 krw Western Krahn -3278 krx Karon -3279 kry Kryts -3280 krz Sota Kanum -3281 ksb Shambala -3282 ksc Southern Kalinga -3283 ksd Kuanua -3284 kse Kuni -3285 ksf Bafia -3286 ksg Kusaghe -3287 ksh Kölsch -3288 ksi Krisa -3289 ksj Uare -3290 ksk Kansa -3291 ksl Kumalu -3292 ksm Kumba -3293 ksn Kasiguranin -3294 kso Kofa -3295 ksp Kaba -3296 ksq Kwaami -3297 ksr Borong -3298 kss Southern Kisi -3299 kst Winyé -3300 ksu Khamyang -3301 ksv Kusu -3302 ksw S'gaw Karen -3303 ksx Kedang -3304 ksy Kharia Thar -3305 ksz Kodaku -3306 kta Katua -3307 ktb Kambaata -3308 ktc Kholok -3309 ktd Kokata -3310 kte Nubri -3311 ktf Kwami -3312 ktg Kalkutung -3313 kth Karanga -3314 kti North Muyu -3315 ktj Plapo Krumen -3316 ktk Kaniet -3317 ktl Koroshi -3318 ktm Kurti -3319 ktn Karitiâna -3320 kto Kuot -3321 ktp Kaduo -3322 ktq Katabaga -3323 kts South Muyu -3324 ktt Ketum -3325 ktu Kituba (Democratic Republic of Congo) -3326 ktv Eastern Katu -3327 ktw Kato -3328 ktx Kaxararí -3329 kty Kango (Bas-Uélé District) -3330 ktz Juǀʼhoan -3331 kj Kuanyama -3332 kub Kutep -3333 kuc Kwinsu -3334 kud 'Auhelawa -3335 kue Kuman (Papua New Guinea) -3336 kuf Western Katu -3337 kug Kupa -3338 kuh Kushi -3339 kui Kuikúro-Kalapálo -3340 kuj Kuria -3341 kuk Kepo' -3342 kul Kulere -3343 kum Kumyk -3344 kun Kunama -3345 kuo Kumukio -3346 kup Kunimaipa -3347 kuq Karipuna -3348 ku Kurdish -3349 kus Kusaal -3350 kut Kutenai -3351 kuu Upper Kuskokwim -3352 kuv Kur -3353 kuw Kpagua -3354 kux Kukatja -3355 kuy Kuuku-Ya'u -3356 kuz Kunza -3357 kva Bagvalal -3358 kvb Kubu -3359 kvc Kove -3360 kvd Kui (Indonesia) -3361 kve Kalabakan -3362 kvf Kabalai -3363 kvg Kuni-Boazi -3364 kvh Komodo -3365 kvi Kwang -3366 kvj Psikye -3367 kvk Korean Sign Language -3368 kvl Kayaw -3369 kvm Kendem -3370 kvn Border Kuna -3371 kvo Dobel -3372 kvp Kompane -3373 kvq Geba Karen -3374 kvr Kerinci -3375 kvt Lahta Karen -3376 kvu Yinbaw Karen -3377 kvv Kola -3378 kvw Wersing -3379 kvx Parkari Koli -3380 kvy Yintale Karen -3381 kvz Tsakwambo -3382 kwa Dâw -3383 kwb Kwa -3384 kwc Likwala -3385 kwd Kwaio -3386 kwe Kwerba -3387 kwf Kwara'ae -3388 kwg Sara Kaba Deme -3389 kwh Kowiai -3390 kwi Awa-Cuaiquer -3391 kwj Kwanga -3392 kwk Kwakiutl -3393 kwl Kofyar -3394 kwm Kwambi -3395 kwn Kwangali -3396 kwo Kwomtari -3397 kwp Kodia -3398 kwr Kwer -3399 kws Kwese -3400 kwt Kwesten -3401 kwu Kwakum -3402 kwv Sara Kaba Náà -3403 kww Kwinti -3404 kwx Khirwar -3405 kwy San Salvador Kongo -3406 kwz Kwadi -3407 kxa Kairiru -3408 kxb Krobu -3409 kxc Konso -3410 kxd Brunei -3411 kxf Manumanaw Karen -3412 kxh Karo (Ethiopia) -3413 kxi Keningau Murut -3414 kxj Kulfa -3415 kxk Zayein Karen -3416 kxm Northern Khmer -3417 kxn Kanowit-Tanjong Melanau -3418 kxo Kanoé -3419 kxp Wadiyara Koli -3420 kxq Smärky Kanum -3421 kxr Koro (Papua New Guinea) -3422 kxs Kangjia -3423 kxt Koiwat -3424 kxv Kuvi -3425 kxw Konai -3426 kxx Likuba -3427 kxy Kayong -3428 kxz Kerewo -3429 kya Kwaya -3430 kyb Butbut Kalinga -3431 kyc Kyaka -3432 kyd Karey -3433 kye Krache -3434 kyf Kouya -3435 kyg Keyagana -3436 kyh Karok -3437 kyi Kiput -3438 kyj Karao -3439 kyk Kamayo -3440 kyl Kalapuya -3441 kym Kpatili -3442 kyn Northern Binukidnon -3443 kyo Kelon -3444 kyp Kang -3445 kyq Kenga -3446 kyr Kuruáya -3447 kys Baram Kayan -3448 kyt Kayagar -3449 kyu Western Kayah -3450 kyv Kayort -3451 kyw Kudmali -3452 kyx Rapoisi -3453 kyy Kambaira -3454 kyz Kayabí -3455 kza Western Karaboro -3456 kzb Kaibobo -3457 kzc Bondoukou Kulango -3458 kzd Kadai -3459 kze Kosena -3460 kzf Da'a Kaili -3461 kzg Kikai -3462 kzi Kelabit -3463 kzk Kazukuru -3464 kzl Kayeli -3465 kzm Kais -3466 kzn Kokola -3467 kzo Kaningi -3468 kzp Kaidipang -3469 kzq Kaike -3470 kzr Karang -3471 kzs Sugut Dusun -3472 kzu Kayupulau -3473 kzv Komyandaret -3474 kzw Karirí-Xocó -3475 kzx Kamarian -3476 kzy Kango (Tshopo District) -3477 kzz Kalabra -3478 laa Southern Subanen -3479 lab Linear A -3480 lac Lacandon -3481 lad Ladino -3482 lae Pattani -3483 laf Lafofa -3484 lag Rangi -3485 lah Lahnda -3486 lai Lambya -3487 laj Lango (Uganda) -3488 lal Lalia -3489 lam Lamba -3490 lan Laru -3491 lo Lao -3492 lap Laka (Chad) -3493 laq Qabiao -3494 lar Larteh -3495 las Lama (Togo) -3496 la Latin -3497 lau Laba -3498 lv Latvian -3499 law Lauje -3500 lax Tiwa -3501 lay Lama Bai -3502 laz Aribwatsa -3503 lbb Label -3504 lbc Lakkia -3505 lbe Lak -3506 lbf Tinani -3507 lbg Laopang -3508 lbi La'bi -3509 lbj Ladakhi -3510 lbk Central Bontok -3511 lbl Libon Bikol -3512 lbm Lodhi -3513 lbn Rmeet -3514 lbo Laven -3515 lbq Wampar -3516 lbr Lohorung -3517 lbs Libyan Sign Language -3518 lbt Lachi -3519 lbu Labu -3520 lbv Lavatbura-Lamusong -3521 lbw Tolaki -3522 lbx Lawangan -3523 lby Lamalama -3524 lbz Lardil -3525 lcc Legenyem -3526 lcd Lola -3527 lce Loncong -3528 lcf Lubu -3529 lch Luchazi -3530 lcl Lisela -3531 lcm Tungag -3532 lcp Western Lawa -3533 lcq Luhu -3534 lcs Lisabata-Nuniali -3535 lda Kla-Dan -3536 ldb Dũya -3537 ldd Luri -3538 ldg Lenyima -3539 ldh Lamja-Dengsa-Tola -3540 ldi Laari -3541 ldj Lemoro -3542 ldk Leelau -3543 ldl Kaan -3544 ldm Landoma -3545 ldn Láadan -3546 ldo Loo -3547 ldp Tso -3548 ldq Lufu -3549 lea Lega-Shabunda -3550 leb Lala-Bisa -3551 lec Leco -3552 led Lendu -3553 lee Lyélé -3554 lef Lelemi -3555 leh Lenje -3556 lei Lemio -3557 lej Lengola -3558 lek Leipon -3559 lel Lele (Democratic Republic of Congo) -3560 lem Nomaande -3561 len Lenca -3562 leo Leti (Cameroon) -3563 lep Lepcha -3564 leq Lembena -3565 ler Lenkau -3566 les Lese -3567 let Lesing-Gelimi -3568 leu Kara (Papua New Guinea) -3569 lev Lamma -3570 lew Ledo Kaili -3571 lex Luang -3572 ley Lemolang -3573 lez Lezghian -3574 lfa Lefa -3575 lfn Lingua Franca Nova -3576 lga Lungga -3577 lgb Laghu -3578 lgg Lugbara -3579 lgh Laghuu -3580 lgi Lengilu -3581 lgk Lingarak -3582 lgl Wala -3583 lgm Lega-Mwenga -3584 lgn T'apo -3585 lgo Lango (South Sudan) -3586 lgq Logba -3587 lgr Lengo -3588 lgs Guinea-Bissau Sign Language -3589 lgt Pahi -3590 lgu Longgu -3591 lgz Ligenza -3592 lha Laha (Viet Nam) -3593 lhh Laha (Indonesia) -3594 lhi Lahu Shi -3595 lhl Lahul Lohar -3596 lhm Lhomi -3597 lhn Lahanan -3598 lhp Lhokpu -3599 lhs Mlahsö -3600 lht Lo-Toga -3601 lhu Lahu -3602 lia West-Central Limba -3603 lib Likum -3604 lic Hlai -3605 lid Nyindrou -3606 lie Likila -3607 lif Limbu -3608 lig Ligbi -3609 lih Lihir -3610 lij Ligurian -3611 lik Lika -3612 lil Lillooet -3613 li Limburgan -3614 ln Lingala -3615 lio Liki -3616 lip Sekpele -3617 liq Libido -3618 lir Liberian English -3619 lis Lisu -3620 lt Lithuanian -3621 liu Logorik -3622 liv Liv -3623 liw Col -3624 lix Liabuku -3625 liy Banda-Bambari -3626 liz Libinza -3627 lja Golpa -3628 lje Rampi -3629 lji Laiyolo -3630 ljl Li'o -3631 ljp Lampung Api -3632 ljw Yirandali -3633 ljx Yuru -3634 lka Lakalei -3635 lkb Kabras -3636 lkc Kucong -3637 lkd Lakondê -3638 lke Kenyi -3639 lkh Lakha -3640 lki Laki -3641 lkj Remun -3642 lkl Laeko-Libuat -3643 lkm Kalaamaya -3644 lkn Lakon -3645 lko Khayo -3646 lkr Päri -3647 lks Kisa -3648 lkt Lakota -3649 lku Kungkari -3650 lky Lokoya -3651 lla Lala-Roba -3652 llb Lolo -3653 llc Lele (Guinea) -3654 lld Ladin -3655 lle Lele (Papua New Guinea) -3656 llf Hermit -3657 llg Lole -3658 llh Lamu -3659 lli Teke-Laali -3660 llj Ladji Ladji -3661 llk Lelak -3662 lll Lilau -3663 llm Lasalimu -3664 lln Lele (Chad) -3665 llp North Efate -3666 llq Lolak -3667 lls Lithuanian Sign Language -3668 llu Lau -3669 llx Lauan -3670 lma East Limba -3671 lmb Merei -3672 lmc Limilngan -3673 lmd Lumun -3674 lme Pévé -3675 lmf South Lembata -3676 lmg Lamogai -3677 lmh Lambichhong -3678 lmi Lombi -3679 lmj West Lembata -3680 lmk Lamkang -3681 lml Hano -3682 lmn Lambadi -3683 lmo Lombard -3684 lmp Limbum -3685 lmq Lamatuka -3686 lmr Lamalera -3687 lmu Lamenu -3688 lmv Lomaiviti -3689 lmw Lake Miwok -3690 lmx Laimbue -3691 lmy Lamboya -3692 lna Langbashe -3693 lnb Mbalanhu -3694 lnd Lundayeh -3695 lng Langobardic -3696 lnh Lanoh -3697 lni Daantanai' -3698 lnj Leningitij -3699 lnl South Central Banda -3700 lnm Langam -3701 lnn Lorediakarkar -3702 lns Lamnso' -3703 lnu Longuda -3704 lnw Lanima -3705 lnz Lonzo -3706 loa Loloda -3707 lob Lobi -3708 loc Inonhan -3709 loe Saluan -3710 lof Logol -3711 log Logo -3712 loh Laarim -3713 loi Loma (Côte d'Ivoire) -3714 loj Lou -3715 lok Loko -3716 lol Mongo -3717 lom Loma (Liberia) -3718 lon Malawi Lomwe -3719 loo Lombo -3720 lop Lopa -3721 loq Lobala -3722 lor Téén -3723 los Loniu -3724 lot Otuho -3725 lou Louisiana Creole -3726 lov Lopi -3727 low Tampias Lobu -3728 lox Loun -3729 loy Loke -3730 loz Lozi -3731 lpa Lelepa -3732 lpe Lepki -3733 lpn Long Phuri Naga -3734 lpo Lipo -3735 lpx Lopit -3736 lqr Logir -3737 lra Rara Bakati' -3738 lrc Northern Luri -3739 lre Laurentian -3740 lrg Laragia -3741 lri Marachi -3742 lrk Loarki -3743 lrl Lari -3744 lrm Marama -3745 lrn Lorang -3746 lro Laro -3747 lrr Southern Yamphu -3748 lrt Larantuka Malay -3749 lrv Larevat -3750 lrz Lemerig -3751 lsa Lasgerdi -3752 lsb Burundian Sign Language -3753 lsc Albarradas Sign Language -3754 lsd Lishana Deni -3755 lse Lusengo -3756 lsh Lish -3757 lsi Lashi -3758 lsl Latvian Sign Language -3759 lsm Saamia -3760 lsn Tibetan Sign Language -3761 lso Laos Sign Language -3762 lsp Panamanian Sign Language -3763 lsr Aruop -3764 lss Lasi -3765 lst Trinidad and Tobago Sign Language -3766 lsv Sivia Sign Language -3767 lsw Seychelles Sign Language -3768 lsy Mauritian Sign Language -3769 ltc Late Middle Chinese -3770 ltg Latgalian -3771 lth Thur -3772 lti Leti (Indonesia) -3773 ltn Latundê -3774 lto Tsotso -3775 lts Tachoni -3776 ltu Latu -3777 lb Luxembourgish -3778 lua Luba-Lulua -3779 lu Luba-Katanga -3780 luc Aringa -3781 lud Ludian -3782 lue Luvale -3783 luf Laua -3784 lg Ganda -3785 lui Luiseno -3786 luj Luna -3787 luk Lunanakha -3788 lul Olu'bo -3789 lum Luimbi -3790 lun Lunda -3791 luo Luo (Kenya and Tanzania) -3792 lup Lumbu -3793 luq Lucumi -3794 lur Laura -3795 lus Lushai -3796 lut Lushootseed -3797 luu Lumba-Yakkha -3798 luv Luwati -3799 luw Luo (Cameroon) -3800 luy Luyia -3801 luz Southern Luri -3802 lva Maku'a -3803 lvi Lavi -3804 lvk Lavukaleve -3805 lvl Lwel -3806 lvs Standard Latvian -3807 lvu Levuka -3808 lwa Lwalu -3809 lwe Lewo Eleng -3810 lwg Wanga -3811 lwh White Lachi -3812 lwl Eastern Lawa -3813 lwm Laomian -3814 lwo Luwo -3815 lws Malawian Sign Language -3816 lwt Lewotobi -3817 lwu Lawu -3818 lww Lewo -3819 lxm Lakurumau -3820 lya Layakha -3821 lyg Lyngngam -3822 lyn Luyana -3823 lzh Literary Chinese -3824 lzl Litzlitz -3825 lzn Leinong Naga -3826 lzz Laz -3827 maa San Jerónimo Tecóatl Mazatec -3828 mab Yutanduchi Mixtec -3829 mad Madurese -3830 mae Bo-Rukul -3831 maf Mafa -3832 mag Magahi -3833 mh Marshallese -3834 mai Maithili -3835 maj Jalapa De Díaz Mazatec -3836 mak Makasar -3837 ml Malayalam -3838 mam Mam -3839 man Mandingo -3840 maq Chiquihuitlán Mazatec -3841 mr Marathi -3842 mas Masai -3843 mat San Francisco Matlatzinca -3844 mau Huautla Mazatec -3845 mav Sateré-Mawé -3846 maw Mampruli -3847 max North Moluccan Malay -3848 maz Central Mazahua -3849 mba Higaonon -3850 mbb Western Bukidnon Manobo -3851 mbc Macushi -3852 mbd Dibabawon Manobo -3853 mbe Molale -3854 mbf Baba Malay -3855 mbh Mangseng -3856 mbi Ilianen Manobo -3857 mbj Nadëb -3858 mbk Malol -3859 mbl Maxakalí -3860 mbm Ombamba -3861 mbn Macaguán -3862 mbo Mbo (Cameroon) -3863 mbp Malayo -3864 mbq Maisin -3865 mbr Nukak Makú -3866 mbs Sarangani Manobo -3867 mbt Matigsalug Manobo -3868 mbu Mbula-Bwazza -3869 mbv Mbulungish -3870 mbw Maring -3871 mbx Mari (East Sepik Province) -3872 mby Memoni -3873 mbz Amoltepec Mixtec -3874 mca Maca -3875 mcb Machiguenga -3876 mcc Bitur -3877 mcd Sharanahua -3878 mce Itundujia Mixtec -3879 mcf Matsés -3880 mcg Mapoyo -3881 mch Maquiritari -3882 mci Mese -3883 mcj Mvanip -3884 mck Mbunda -3885 mcl Macaguaje -3886 mcm Malaccan Creole Portuguese -3887 mcn Masana -3888 mco Coatlán Mixe -3889 mcp Makaa -3890 mcq Ese -3891 mcr Menya -3892 mcs Mambai -3893 mct Mengisa -3894 mcu Cameroon Mambila -3895 mcv Minanibai -3896 mcw Mawa (Chad) -3897 mcx Mpiemo -3898 mcy South Watut -3899 mcz Mawan -3900 mda Mada (Nigeria) -3901 mdb Morigi -3902 mdc Male (Papua New Guinea) -3903 mdd Mbum -3904 mde Maba (Chad) -3905 mdf Moksha -3906 mdg Massalat -3907 mdh Maguindanaon -3908 mdi Mamvu -3909 mdj Mangbetu -3910 mdk Mangbutu -3911 mdl Maltese Sign Language -3912 mdm Mayogo -3913 mdn Mbati -3914 mdp Mbala -3915 mdq Mbole -3916 mdr Mandar -3917 mds Maria (Papua New Guinea) -3918 mdt Mbere -3919 mdu Mboko -3920 mdv Santa Lucía Monteverde Mixtec -3921 mdw Mbosi -3922 mdx Dizin -3923 mdy Male (Ethiopia) -3924 mdz Suruí Do Pará -3925 mea Menka -3926 meb Ikobi -3927 mec Marra -3928 med Melpa -3929 mee Mengen -3930 mef Megam -3931 meh Southwestern Tlaxiaco Mixtec -3932 mei Midob -3933 mej Meyah -3934 mek Mekeo -3935 mel Central Melanau -3936 mem Mangala -3937 men Mende (Sierra Leone) -3938 meo Kedah Malay -3939 mep Miriwoong -3940 meq Merey -3941 mer Meru -3942 mes Masmaje -3943 met Mato -3944 meu Motu -3945 mev Mano -3946 mew Maaka -3947 mey Hassaniyya -3948 mez Menominee -3949 mfa Pattani Malay -3950 mfb Bangka -3951 mfc Mba -3952 mfd Mendankwe-Nkwen -3953 mfe Morisyen -3954 mff Naki -3955 mfg Mogofin -3956 mfh Matal -3957 mfi Wandala -3958 mfj Mefele -3959 mfk North Mofu -3960 mfl Putai -3961 mfm Marghi South -3962 mfn Cross River Mbembe -3963 mfo Mbe -3964 mfp Makassar Malay -3965 mfq Moba -3966 mfr Marrithiyel -3967 mfs Mexican Sign Language -3968 mft Mokerang -3969 mfu Mbwela -3970 mfv Mandjak -3971 mfw Mulaha -3972 mfx Melo -3973 mfy Mayo -3974 mfz Mabaan -3975 mga Middle Irish (900-1200) -3976 mgb Mararit -3977 mgc Morokodo -3978 mgd Moru -3979 mge Mango -3980 mgf Maklew -3981 mgg Mpumpong -3982 mgh Makhuwa-Meetto -3983 mgi Lijili -3984 mgj Abureni -3985 mgk Mawes -3986 mgl Maleu-Kilenge -3987 mgm Mambae -3988 mgn Mbangi -3989 mgo Meta' -3990 mgp Eastern Magar -3991 mgq Malila -3992 mgr Mambwe-Lungu -3993 mgs Manda (Tanzania) -3994 mgt Mongol -3995 mgu Mailu -3996 mgv Matengo -3997 mgw Matumbi -3998 mgy Mbunga -3999 mgz Mbugwe -4000 mha Manda (India) -4001 mhb Mahongwe -4002 mhc Mocho -4003 mhd Mbugu -4004 mhe Besisi -4005 mhf Mamaa -4006 mhg Margu -4007 mhi Ma'di -4008 mhj Mogholi -4009 mhk Mungaka -4010 mhl Mauwake -4011 mhm Makhuwa-Moniga -4012 mhn Mócheno -4013 mho Mashi (Zambia) -4014 mhp Balinese Malay -4015 mhq Mandan -4016 mhr Eastern Mari -4017 mhs Buru (Indonesia) -4018 mht Mandahuaca -4019 mhu Digaro-Mishmi -4020 mhw Mbukushu -4021 mhx Maru -4022 mhy Ma'anyan -4023 mhz Mor (Mor Islands) -4024 mia Miami -4025 mib Atatláhuca Mixtec -4026 mic Mi'kmaq -4027 mid Mandaic -4028 mie Ocotepec Mixtec -4029 mif Mofu-Gudur -4030 mig San Miguel El Grande Mixtec -4031 mih Chayuco Mixtec -4032 mii Chigmecatitlán Mixtec -4033 mij Abar -4034 mik Mikasuki -4035 mil Peñoles Mixtec -4036 mim Alacatlatzala Mixtec -4037 min Minangkabau -4038 mio Pinotepa Nacional Mixtec -4039 mip Apasco-Apoala Mixtec -4040 miq Mískito -4041 mir Isthmus Mixe -4042 mis Uncoded languages -4043 mit Southern Puebla Mixtec -4044 miu Cacaloxtepec Mixtec -4045 miw Akoye -4046 mix Mixtepec Mixtec -4047 miy Ayutla Mixtec -4048 miz Coatzospan Mixtec -4049 mjb Makalero -4050 mjc San Juan Colorado Mixtec -4051 mjd Northwest Maidu -4052 mje Muskum -4053 mjg Tu -4054 mjh Mwera (Nyasa) -4055 mji Kim Mun -4056 mjj Mawak -4057 mjk Matukar -4058 mjl Mandeali -4059 mjm Medebur -4060 mjn Ma (Papua New Guinea) -4061 mjo Malankuravan -4062 mjp Malapandaram -4063 mjq Malaryan -4064 mjr Malavedan -4065 mjs Miship -4066 mjt Sauria Paharia -4067 mju Manna-Dora -4068 mjv Mannan -4069 mjw Karbi -4070 mjx Mahali -4071 mjy Mahican -4072 mjz Majhi -4073 mka Mbre -4074 mkb Mal Paharia -4075 mkc Siliput -4076 mk Macedonian -4077 mke Mawchi -4078 mkf Miya -4079 mkg Mak (China) -4080 mki Dhatki -4081 mkj Mokilese -4082 mkk Byep -4083 mkl Mokole -4084 mkm Moklen -4085 mkn Kupang Malay -4086 mko Mingang Doso -4087 mkp Moikodi -4088 mkq Bay Miwok -4089 mkr Malas -4090 mks Silacayoapan Mixtec -4091 mkt Vamale -4092 mku Konyanka Maninka -4093 mkv Mafea -4094 mkw Kituba (Congo) -4095 mkx Kinamiging Manobo -4096 mky East Makian -4097 mkz Makasae -4098 mla Malo -4099 mlb Mbule -4100 mlc Cao Lan -4101 mle Manambu -4102 mlf Mal -4103 mg Malagasy -4104 mlh Mape -4105 mli Malimpung -4106 mlj Miltu -4107 mlk Ilwana -4108 mll Malua Bay -4109 mlm Mulam -4110 mln Malango -4111 mlo Mlomp -4112 mlp Bargam -4113 mlq Western Maninkakan -4114 mlr Vame -4115 mls Masalit -4116 mt Maltese -4117 mlu To'abaita -4118 mlv Motlav -4119 mlw Moloko -4120 mlx Malfaxal -4121 mlz Malaynon -4122 mma Mama -4123 mmb Momina -4124 mmc Michoacán Mazahua -4125 mmd Maonan -4126 mme Mae -4127 mmf Mundat -4128 mmg North Ambrym -4129 mmh Mehináku -4130 mmi Musar -4131 mmj Majhwar -4132 mmk Mukha-Dora -4133 mml Man Met -4134 mmm Maii -4135 mmn Mamanwa -4136 mmo Mangga Buang -4137 mmp Siawi -4138 mmq Musak -4139 mmr Western Xiangxi Miao -4140 mmt Malalamai -4141 mmu Mmaala -4142 mmv Miriti -4143 mmw Emae -4144 mmx Madak -4145 mmy Migaama -4146 mmz Mabaale -4147 mna Mbula -4148 mnb Muna -4149 mnc Manchu -4150 mnd Mondé -4151 mne Naba -4152 mnf Mundani -4153 mng Eastern Mnong -4154 mnh Mono (Democratic Republic of Congo) -4155 mni Manipuri -4156 mnj Munji -4157 mnk Mandinka -4158 mnl Tiale -4159 mnm Mapena -4160 mnn Southern Mnong -4161 mnp Min Bei Chinese -4162 mnq Minriq -4163 mnr Mono (USA) -4164 mns Mansi -4165 mnu Mer -4166 mnv Rennell-Bellona -4167 mnw Mon -4168 mnx Manikion -4169 mny Manyawa -4170 mnz Moni -4171 moa Mwan -4172 moc Mocoví -4173 mod Mobilian -4174 moe Innu -4175 mog Mongondow -4176 moh Mohawk -4177 moi Mboi -4178 moj Monzombo -4179 mok Morori -4180 mom Mangue -4181 mn Mongolian -4182 moo Monom -4183 mop Mopán Maya -4184 moq Mor (Bomberai Peninsula) -4185 mor Moro -4186 mos Mossi -4187 mot Barí -4188 mou Mogum -4189 mov Mohave -4190 mow Moi (Congo) -4191 mox Molima -4192 moy Shekkacho -4193 moz Mukulu -4194 mpa Mpoto -4195 mpb Malak Malak -4196 mpc Mangarrayi -4197 mpd Machinere -4198 mpe Majang -4199 mpg Marba -4200 mph Maung -4201 mpi Mpade -4202 mpj Martu Wangka -4203 mpk Mbara (Chad) -4204 mpl Middle Watut -4205 mpm Yosondúa Mixtec -4206 mpn Mindiri -4207 mpo Miu -4208 mpp Migabac -4209 mpq Matís -4210 mpr Vangunu -4211 mps Dadibi -4212 mpt Mian -4213 mpu Makuráp -4214 mpv Mungkip -4215 mpw Mapidian -4216 mpx Misima-Panaeati -4217 mpy Mapia -4218 mpz Mpi -4219 mqa Maba (Indonesia) -4220 mqb Mbuko -4221 mqc Mangole -4222 mqe Matepi -4223 mqf Momuna -4224 mqg Kota Bangun Kutai Malay -4225 mqh Tlazoyaltepec Mixtec -4226 mqi Mariri -4227 mqj Mamasa -4228 mqk Rajah Kabunsuwan Manobo -4229 mql Mbelime -4230 mqm South Marquesan -4231 mqn Moronene -4232 mqo Modole -4233 mqp Manipa -4234 mqq Minokok -4235 mqr Mander -4236 mqs West Makian -4237 mqt Mok -4238 mqu Mandari -4239 mqv Mosimo -4240 mqw Murupi -4241 mqx Mamuju -4242 mqy Manggarai -4243 mqz Pano -4244 mra Mlabri -4245 mrb Marino -4246 mrc Maricopa -4247 mrd Western Magar -4248 mre Martha's Vineyard Sign Language -4249 mrf Elseng -4250 mrg Mising -4251 mrh Mara Chin -4252 mi Maori -4253 mrj Western Mari -4254 mrk Hmwaveke -4255 mrl Mortlockese -4256 mrm Merlav -4257 mrn Cheke Holo -4258 mro Mru -4259 mrp Morouas -4260 mrq North Marquesan -4261 mrr Maria (India) -4262 mrs Maragus -4263 mrt Marghi Central -4264 mru Mono (Cameroon) -4265 mrv Mangareva -4266 mrw Maranao -4267 mrx Maremgi -4268 mry Mandaya -4269 mrz Marind -4270 ms Malay (macrolanguage) -4271 msb Masbatenyo -4272 msc Sankaran Maninka -4273 msd Yucatec Maya Sign Language -4274 mse Musey -4275 msf Mekwei -4276 msg Moraid -4277 msh Masikoro Malagasy -4278 msi Sabah Malay -4279 msj Ma (Democratic Republic of Congo) -4280 msk Mansaka -4281 msl Molof -4282 msm Agusan Manobo -4283 msn Vurës -4284 mso Mombum -4285 msp Maritsauá -4286 msq Caac -4287 msr Mongolian Sign Language -4288 mss West Masela -4289 msu Musom -4290 msv Maslam -4291 msw Mansoanka -4292 msx Moresada -4293 msy Aruamu -4294 msz Momare -4295 mta Cotabato Manobo -4296 mtb Anyin Morofo -4297 mtc Munit -4298 mtd Mualang -4299 mte Mono (Solomon Islands) -4300 mtf Murik (Papua New Guinea) -4301 mtg Una -4302 mth Munggui -4303 mti Maiwa (Papua New Guinea) -4304 mtj Moskona -4305 mtk Mbe' -4306 mtl Montol -4307 mtm Mator -4308 mtn Matagalpa -4309 mto Totontepec Mixe -4310 mtp Wichí Lhamtés Nocten -4311 mtq Muong -4312 mtr Mewari -4313 mts Yora -4314 mtt Mota -4315 mtu Tututepec Mixtec -4316 mtv Asaro'o -4317 mtw Southern Binukidnon -4318 mtx Tidaá Mixtec -4319 mty Nabi -4320 mua Mundang -4321 mub Mubi -4322 muc Ajumbu -4323 mud Mednyj Aleut -4324 mue Media Lengua -4325 mug Musgu -4326 muh Mündü -4327 mui Musi -4328 muj Mabire -4329 muk Mugom -4330 mul Multiple languages -4331 mum Maiwala -4332 muo Nyong -4333 mup Malvi -4334 muq Eastern Xiangxi Miao -4335 mur Murle -4336 mus Creek -4337 mut Western Muria -4338 muu Yaaku -4339 muv Muthuvan -4340 mux Bo-Ung -4341 muy Muyang -4342 muz Mursi -4343 mva Manam -4344 mvb Mattole -4345 mvd Mamboru -4346 mve Marwari (Pakistan) -4347 mvf Peripheral Mongolian -4348 mvg Yucuañe Mixtec -4349 mvh Mulgi -4350 mvi Miyako -4351 mvk Mekmek -4352 mvl Mbara (Australia) -4353 mvn Minaveha -4354 mvo Marovo -4355 mvp Duri -4356 mvq Moere -4357 mvr Marau -4358 mvs Massep -4359 mvt Mpotovoro -4360 mvu Marfa -4361 mvv Tagal Murut -4362 mvw Machinga -4363 mvx Meoswar -4364 mvy Indus Kohistani -4365 mvz Mesqan -4366 mwa Mwatebu -4367 mwb Juwal -4368 mwc Are -4369 mwe Mwera (Chimwera) -4370 mwf Murrinh-Patha -4371 mwg Aiklep -4372 mwh Mouk-Aria -4373 mwi Labo -4374 mwk Kita Maninkakan -4375 mwl Mirandese -4376 mwm Sar -4377 mwn Nyamwanga -4378 mwo Central Maewo -4379 mwp Kala Lagaw Ya -4380 mwq Mün Chin -4381 mwr Marwari -4382 mws Mwimbi-Muthambi -4383 mwt Moken -4384 mwu Mittu -4385 mwv Mentawai -4386 mww Hmong Daw -4387 mwz Moingi -4388 mxa Northwest Oaxaca Mixtec -4389 mxb Tezoatlán Mixtec -4390 mxc Manyika -4391 mxd Modang -4392 mxe Mele-Fila -4393 mxf Malgbe -4394 mxg Mbangala -4395 mxh Mvuba -4396 mxi Mozarabic -4397 mxj Miju-Mishmi -4398 mxk Monumbo -4399 mxl Maxi Gbe -4400 mxm Meramera -4401 mxn Moi (Indonesia) -4402 mxo Mbowe -4403 mxp Tlahuitoltepec Mixe -4404 mxq Juquila Mixe -4405 mxr Murik (Malaysia) -4406 mxs Huitepec Mixtec -4407 mxt Jamiltepec Mixtec -4408 mxu Mada (Cameroon) -4409 mxv Metlatónoc Mixtec -4410 mxw Namo -4411 mxx Mahou -4412 mxy Southeastern Nochixtlán Mixtec -4413 mxz Central Masela -4414 my Burmese -4415 myb Mbay -4416 myc Mayeka -4417 mye Myene -4418 myf Bambassi -4419 myg Manta -4420 myh Makah -4421 myj Mangayat -4422 myk Mamara Senoufo -4423 myl Moma -4424 mym Me'en -4425 myo Anfillo -4426 myp Pirahã -4427 myr Muniche -4428 mys Mesmes -4429 myu Mundurukú -4430 myv Erzya -4431 myw Muyuw -4432 myx Masaaba -4433 myy Macuna -4434 myz Classical Mandaic -4435 mza Santa María Zacatepec Mixtec -4436 mzb Tumzabt -4437 mzc Madagascar Sign Language -4438 mzd Malimba -4439 mze Morawa -4440 mzg Monastic Sign Language -4441 mzh Wichí Lhamtés Güisnay -4442 mzi Ixcatlán Mazatec -4443 mzj Manya -4444 mzk Nigeria Mambila -4445 mzl Mazatlán Mixe -4446 mzm Mumuye -4447 mzn Mazanderani -4448 mzo Matipuhy -4449 mzp Movima -4450 mzq Mori Atas -4451 mzr Marúbo -4452 mzs Macanese -4453 mzt Mintil -4454 mzu Inapang -4455 mzv Manza -4456 mzw Deg -4457 mzx Mawayana -4458 mzy Mozambican Sign Language -4459 mzz Maiadomu -4460 naa Namla -4461 nab Southern Nambikuára -4462 nac Narak -4463 nae Naka'ela -4464 naf Nabak -4465 nag Naga Pidgin -4466 naj Nalu -4467 nak Nakanai -4468 nal Nalik -4469 nam Ngan'gityemerri -4470 nan Min Nan Chinese -4471 nao Naaba -4472 nap Neapolitan -4473 naq Khoekhoe -4474 nar Iguta -4475 nas Naasioi -4476 nat Ca̱hungwa̱rya̱ -4477 na Nauru -4478 nv Navajo -4479 naw Nawuri -4480 nax Nakwi -4481 nay Ngarrindjeri -4482 naz Coatepec Nahuatl -4483 nba Nyemba -4484 nbb Ndoe -4485 nbc Chang Naga -4486 nbd Ngbinda -4487 nbe Konyak Naga -4488 nbg Nagarchal -4489 nbh Ngamo -4490 nbi Mao Naga -4491 nbj Ngarinyman -4492 nbk Nake -4493 nr South Ndebele -4494 nbm Ngbaka Ma'bo -4495 nbn Kuri -4496 nbo Nkukoli -4497 nbp Nnam -4498 nbq Nggem -4499 nbr Numana -4500 nbs Namibian Sign Language -4501 nbt Na -4502 nbu Rongmei Naga -4503 nbv Ngamambo -4504 nbw Southern Ngbandi -4505 nby Ningera -4506 nca Iyo -4507 ncb Central Nicobarese -4508 ncc Ponam -4509 ncd Nachering -4510 nce Yale -4511 ncf Notsi -4512 ncg Nisga'a -4513 nch Central Huasteca Nahuatl -4514 nci Classical Nahuatl -4515 ncj Northern Puebla Nahuatl -4516 nck Na-kara -4517 ncl Michoacán Nahuatl -4518 ncm Nambo -4519 ncn Nauna -4520 nco Sibe -4521 ncq Northern Katang -4522 ncr Ncane -4523 ncs Nicaraguan Sign Language -4524 nct Chothe Naga -4525 ncu Chumburung -4526 ncx Central Puebla Nahuatl -4527 ncz Natchez -4528 nda Ndasa -4529 ndb Kenswei Nsei -4530 ndc Ndau -4531 ndd Nde-Nsele-Nta -4532 nd North Ndebele -4533 ndf Nadruvian -4534 ndg Ndengereko -4535 ndh Ndali -4536 ndi Samba Leko -4537 ndj Ndamba -4538 ndk Ndaka -4539 ndl Ndolo -4540 ndm Ndam -4541 ndn Ngundi -4542 ng Ndonga -4543 ndp Ndo -4544 ndq Ndombe -4545 ndr Ndoola -4546 nds Low German -4547 ndt Ndunga -4548 ndu Dugun -4549 ndv Ndut -4550 ndw Ndobo -4551 ndx Nduga -4552 ndy Lutos -4553 ndz Ndogo -4554 nea Eastern Ngad'a -4555 neb Toura (Côte d'Ivoire) -4556 nec Nedebang -4557 ned Nde-Gbite -4558 nee Nêlêmwa-Nixumwak -4559 nef Nefamese -4560 neg Negidal -4561 neh Nyenkha -4562 nei Neo-Hittite -4563 nej Neko -4564 nek Neku -4565 nem Nemi -4566 nen Nengone -4567 neo Ná-Meo -4568 ne Nepali (macrolanguage) -4569 neq North Central Mixe -4570 ner Yahadian -4571 nes Bhoti Kinnauri -4572 net Nete -4573 neu Neo -4574 nev Nyaheun -4575 new Newari -4576 nex Neme -4577 ney Neyo -4578 nez Nez Perce -4579 nfa Dhao -4580 nfd Ahwai -4581 nfl Ayiwo -4582 nfr Nafaanra -4583 nfu Mfumte -4584 nga Ngbaka -4585 ngb Northern Ngbandi -4586 ngc Ngombe (Democratic Republic of Congo) -4587 ngd Ngando (Central African Republic) -4588 nge Ngemba -4589 ngg Ngbaka Manza -4590 ngh Nǁng -4591 ngi Ngizim -4592 ngj Ngie -4593 ngk Dalabon -4594 ngl Lomwe -4595 ngm Ngatik Men's Creole -4596 ngn Ngwo -4597 ngp Ngulu -4598 ngq Ngurimi -4599 ngr Engdewu -4600 ngs Gvoko -4601 ngt Kriang -4602 ngu Guerrero Nahuatl -4603 ngv Nagumi -4604 ngw Ngwaba -4605 ngx Nggwahyi -4606 ngy Tibea -4607 ngz Ngungwel -4608 nha Nhanda -4609 nhb Beng -4610 nhc Tabasco Nahuatl -4611 nhd Chiripá -4612 nhe Eastern Huasteca Nahuatl -4613 nhf Nhuwala -4614 nhg Tetelcingo Nahuatl -4615 nhh Nahari -4616 nhi Zacatlán-Ahuacatlán-Tepetzintla Nahuatl -4617 nhk Isthmus-Cosoleacaque Nahuatl -4618 nhm Morelos Nahuatl -4619 nhn Central Nahuatl -4620 nho Takuu -4621 nhp Isthmus-Pajapan Nahuatl -4622 nhq Huaxcaleca Nahuatl -4623 nhr Naro -4624 nht Ometepec Nahuatl -4625 nhu Noone -4626 nhv Temascaltepec Nahuatl -4627 nhw Western Huasteca Nahuatl -4628 nhx Isthmus-Mecayapan Nahuatl -4629 nhy Northern Oaxaca Nahuatl -4630 nhz Santa María La Alta Nahuatl -4631 nia Nias -4632 nib Nakame -4633 nid Ngandi -4634 nie Niellim -4635 nif Nek -4636 nig Ngalakgan -4637 nih Nyiha (Tanzania) -4638 nii Nii -4639 nij Ngaju -4640 nik Southern Nicobarese -4641 nil Nila -4642 nim Nilamba -4643 nin Ninzo -4644 nio Nganasan -4645 niq Nandi -4646 nir Nimboran -4647 nis Nimi -4648 nit Southeastern Kolami -4649 niu Niuean -4650 niv Gilyak -4651 niw Nimo -4652 nix Hema -4653 niy Ngiti -4654 niz Ningil -4655 nja Nzanyi -4656 njb Nocte Naga -4657 njd Ndonde Hamba -4658 njh Lotha Naga -4659 nji Gudanji -4660 njj Njen -4661 njl Njalgulgule -4662 njm Angami Naga -4663 njn Liangmai Naga -4664 njo Ao Naga -4665 njr Njerep -4666 njs Nisa -4667 njt Ndyuka-Trio Pidgin -4668 nju Ngadjunmaya -4669 njx Kunyi -4670 njy Njyem -4671 njz Nyishi -4672 nka Nkoya -4673 nkb Khoibu Naga -4674 nkc Nkongho -4675 nkd Koireng -4676 nke Duke -4677 nkf Inpui Naga -4678 nkg Nekgini -4679 nkh Khezha Naga -4680 nki Thangal Naga -4681 nkj Nakai -4682 nkk Nokuku -4683 nkm Namat -4684 nkn Nkangala -4685 nko Nkonya -4686 nkp Niuatoputapu -4687 nkq Nkami -4688 nkr Nukuoro -4689 nks North Asmat -4690 nkt Nyika (Tanzania) -4691 nku Bouna Kulango -4692 nkv Nyika (Malawi and Zambia) -4693 nkw Nkutu -4694 nkx Nkoroo -4695 nkz Nkari -4696 nla Ngombale -4697 nlc Nalca -4698 nl Dutch -4699 nle East Nyala -4700 nlg Gela -4701 nli Grangali -4702 nlj Nyali -4703 nlk Ninia Yali -4704 nll Nihali -4705 nlm Mankiyali -4706 nlo Ngul -4707 nlq Lao Naga -4708 nlu Nchumbulu -4709 nlv Orizaba Nahuatl -4710 nlw Walangama -4711 nlx Nahali -4712 nly Nyamal -4713 nlz Nalögo -4714 nma Maram Naga -4715 nmb Big Nambas -4716 nmc Ngam -4717 nmd Ndumu -4718 nme Mzieme Naga -4719 nmf Tangkhul Naga (India) -4720 nmg Kwasio -4721 nmh Monsang Naga -4722 nmi Nyam -4723 nmj Ngombe (Central African Republic) -4724 nmk Namakura -4725 nml Ndemli -4726 nmm Manangba -4727 nmn ǃXóõ -4728 nmo Moyon Naga -4729 nmp Nimanbur -4730 nmq Nambya -4731 nmr Nimbari -4732 nms Letemboi -4733 nmt Namonuito -4734 nmu Northeast Maidu -4735 nmv Ngamini -4736 nmw Nimoa -4737 nmx Nama (Papua New Guinea) -4738 nmy Namuyi -4739 nmz Nawdm -4740 nna Nyangumarta -4741 nnb Nande -4742 nnc Nancere -4743 nnd West Ambae -4744 nne Ngandyera -4745 nnf Ngaing -4746 nng Maring Naga -4747 nnh Ngiemboon -4748 nni North Nuaulu -4749 nnj Nyangatom -4750 nnk Nankina -4751 nnl Northern Rengma Naga -4752 nnm Namia -4753 nnn Ngete -4754 nn Norwegian Nynorsk -4755 nnp Wancho Naga -4756 nnq Ngindo -4757 nnr Narungga -4758 nnt Nanticoke -4759 nnu Dwang -4760 nnv Nugunu (Australia) -4761 nnw Southern Nuni -4762 nny Nyangga -4763 nnz Nda'nda' -4764 noa Woun Meu -4765 nb Norwegian BokmÃ¥l -4766 noc Nuk -4767 nod Northern Thai -4768 noe Nimadi -4769 nof Nomane -4770 nog Nogai -4771 noh Nomu -4772 noi Noiri -4773 noj Nonuya -4774 nok Nooksack -4775 nol Nomlaki -4776 non Old Norse -4777 nop Numanggang -4778 noq Ngongo -4779 no Norwegian -4780 nos Eastern Nisu -4781 not Nomatsiguenga -4782 nou Ewage-Notu -4783 nov Novial -4784 now Nyambo -4785 noy Noy -4786 noz Nayi -4787 npa Nar Phu -4788 npb Nupbikha -4789 npg Ponyo-Gongwang Naga -4790 nph Phom Naga -4791 npi Nepali (individual language) -4792 npl Southeastern Puebla Nahuatl -4793 npn Mondropolon -4794 npo Pochuri Naga -4795 nps Nipsan -4796 npu Puimei Naga -4797 npx Noipx -4798 npy Napu -4799 nqg Southern Nago -4800 nqk Kura Ede Nago -4801 nql Ngendelengo -4802 nqm Ndom -4803 nqn Nen -4804 nqo N'Ko -4805 nqq Kyan-Karyaw Naga -4806 nqt Nteng -4807 nqy Akyaung Ari Naga -4808 nra Ngom -4809 nrb Nara -4810 nrc Noric -4811 nre Southern Rengma Naga -4812 nrf Jèrriais -4813 nrg Narango -4814 nri Chokri Naga -4815 nrk Ngarla -4816 nrl Ngarluma -4817 nrm Narom -4818 nrn Norn -4819 nrp North Picene -4820 nrr Norra -4821 nrt Northern Kalapuya -4822 nru Narua -4823 nrx Ngurmbur -4824 nrz Lala -4825 nsa Sangtam Naga -4826 nsb Lower Nossob -4827 nsc Nshi -4828 nsd Southern Nisu -4829 nse Nsenga -4830 nsf Northwestern Nisu -4831 nsg Ngasa -4832 nsh Ngoshie -4833 nsi Nigerian Sign Language -4834 nsk Naskapi -4835 nsl Norwegian Sign Language -4836 nsm Sumi Naga -4837 nsn Nehan -4838 nso Pedi -4839 nsp Nepalese Sign Language -4840 nsq Northern Sierra Miwok -4841 nsr Maritime Sign Language -4842 nss Nali -4843 nst Tase Naga -4844 nsu Sierra Negra Nahuatl -4845 nsv Southwestern Nisu -4846 nsw Navut -4847 nsx Nsongo -4848 nsy Nasal -4849 nsz Nisenan -4850 ntd Northern Tidung -4851 nte Nathembo -4852 ntg Ngantangarra -4853 nti Natioro -4854 ntj Ngaanyatjarra -4855 ntk Ikoma-Nata-Isenye -4856 ntm Nateni -4857 nto Ntomba -4858 ntp Northern Tepehuan -4859 ntr Delo -4860 ntu Natügu -4861 ntw Nottoway -4862 ntx Tangkhul Naga (Myanmar) -4863 nty Mantsi -4864 ntz Natanzi -4865 nua Yuanga -4866 nuc Nukuini -4867 nud Ngala -4868 nue Ngundu -4869 nuf Nusu -4870 nug Nungali -4871 nuh Ndunda -4872 nui Ngumbi -4873 nuj Nyole -4874 nuk Nuu-chah-nulth -4875 nul Nusa Laut -4876 num Niuafo'ou -4877 nun Anong -4878 nuo Nguôn -4879 nup Nupe-Nupe-Tako -4880 nuq Nukumanu -4881 nur Nukuria -4882 nus Nuer -4883 nut Nung (Viet Nam) -4884 nuu Ngbundu -4885 nuv Northern Nuni -4886 nuw Nguluwan -4887 nux Mehek -4888 nuy Nunggubuyu -4889 nuz Tlamacazapa Nahuatl -4890 nvh Nasarian -4891 nvm Namiae -4892 nvo Nyokon -4893 nwa Nawathinehena -4894 nwb Nyabwa -4895 nwc Classical Newari -4896 nwe Ngwe -4897 nwg Ngayawung -4898 nwi Southwest Tanna -4899 nwm Nyamusa-Molo -4900 nwo Nauo -4901 nwr Nawaru -4902 nww Ndwewe -4903 nwx Middle Newar -4904 nwy Nottoway-Meherrin -4905 nxa Nauete -4906 nxd Ngando (Democratic Republic of Congo) -4907 nxe Nage -4908 nxg Ngad'a -4909 nxi Nindi -4910 nxk Koki Naga -4911 nxl South Nuaulu -4912 nxm Numidian -4913 nxn Ngawun -4914 nxo Ndambomo -4915 nxq Naxi -4916 nxr Ninggerum -4917 nxx Nafri -4918 ny Nyanja -4919 nyb Nyangbo -4920 nyc Nyanga-li -4921 nyd Nyore -4922 nye Nyengo -4923 nyf Giryama -4924 nyg Nyindu -4925 nyh Nyikina -4926 nyi Ama (Sudan) -4927 nyj Nyanga -4928 nyk Nyaneka -4929 nyl Nyeu -4930 nym Nyamwezi -4931 nyn Nyankole -4932 nyo Nyoro -4933 nyp Nyang'i -4934 nyq Nayini -4935 nyr Nyiha (Malawi) -4936 nys Nyungar -4937 nyt Nyawaygi -4938 nyu Nyungwe -4939 nyv Nyulnyul -4940 nyw Nyaw -4941 nyx Nganyaywana -4942 nyy Nyakyusa-Ngonde -4943 nza Tigon Mbembe -4944 nzb Njebi -4945 nzd Nzadi -4946 nzi Nzima -4947 nzk Nzakara -4948 nzm Zeme Naga -4949 nzr Dir-Nyamzak-Mbarimi -4950 nzs New Zealand Sign Language -4951 nzu Teke-Nzikou -4952 nzy Nzakambay -4953 nzz Nanga Dama Dogon -4954 oaa Orok -4955 oac Oroch -4956 oar Old Aramaic (up to 700 BCE) -4957 oav Old Avar -4958 obi Obispeño -4959 obk Southern Bontok -4960 obl Oblo -4961 obm Moabite -4962 obo Obo Manobo -4963 obr Old Burmese -4964 obt Old Breton -4965 obu Obulom -4966 oca Ocaina -4967 och Old Chinese -4968 oc Occitan (post 1500) -4969 ocm Old Cham -4970 oco Old Cornish -4971 ocu Atzingo Matlatzinca -4972 oda Odut -4973 odk Od -4974 odt Old Dutch -4975 odu Odual -4976 ofo Ofo -4977 ofs Old Frisian -4978 ofu Efutop -4979 ogb Ogbia -4980 ogc Ogbah -4981 oge Old Georgian -4982 ogg Ogbogolo -4983 ogo Khana -4984 ogu Ogbronuagum -4985 oht Old Hittite -4986 ohu Old Hungarian -4987 oia Oirata -4988 oie Okolie -4989 oin Inebu One -4990 ojb Northwestern Ojibwa -4991 ojc Central Ojibwa -4992 ojg Eastern Ojibwa -4993 oj Ojibwa -4994 ojp Old Japanese -4995 ojs Severn Ojibwa -4996 ojv Ontong Java -4997 ojw Western Ojibwa -4998 oka Okanagan -4999 okb Okobo -5000 okc Kobo -5001 okd Okodia -5002 oke Okpe (Southwestern Edo) -5003 okg Koko Babangk -5004 okh Koresh-e Rostam -5005 oki Okiek -5006 okj Oko-Juwoi -5007 okk Kwamtim One -5008 okl Old Kentish Sign Language -5009 okm Middle Korean (10th-16th cent.) -5010 okn Oki-No-Erabu -5011 oko Old Korean (3rd-9th cent.) -5012 okr Kirike -5013 oks Oko-Eni-Osayen -5014 oku Oku -5015 okv Orokaiva -5016 okx Okpe (Northwestern Edo) -5017 okz Old Khmer -5018 ola Walungge -5019 old Mochi -5020 ole Olekha -5021 olk Olkol -5022 olm Oloma -5023 olo Livvi -5024 olr Olrat -5025 olt Old Lithuanian -5026 olu Kuvale -5027 oma Omaha-Ponca -5028 omb East Ambae -5029 omc Mochica -5030 omg Omagua -5031 omi Omi -5032 omk Omok -5033 oml Ombo -5034 omn Minoan -5035 omo Utarmbung -5036 omp Old Manipuri -5037 omr Old Marathi -5038 omt Omotik -5039 omu Omurano -5040 omw South Tairora -5041 omx Old Mon -5042 omy Old Malay -5043 ona Ona -5044 onb Lingao -5045 one Oneida -5046 ong Olo -5047 oni Onin -5048 onj Onjob -5049 onk Kabore One -5050 onn Onobasulu -5051 ono Onondaga -5052 onp Sartang -5053 onr Northern One -5054 ons Ono -5055 ont Ontenu -5056 onu Unua -5057 onw Old Nubian -5058 onx Onin Based Pidgin -5059 ood Tohono O'odham -5060 oog Ong -5061 oon Önge -5062 oor Oorlams -5063 oos Old Ossetic -5064 opa Okpamheri -5065 opk Kopkaka -5066 opm Oksapmin -5067 opo Opao -5068 opt Opata -5069 opy Ofayé -5070 ora Oroha -5071 orc Orma -5072 ore Orejón -5073 org Oring -5074 orh Oroqen -5075 or Oriya (macrolanguage) -5076 om Oromo -5077 orn Orang Kanaq -5078 oro Orokolo -5079 orr Oruma -5080 ors Orang Seletar -5081 ort Adivasi Oriya -5082 oru Ormuri -5083 orv Old Russian -5084 orw Oro Win -5085 orx Oro -5086 ory Odia -5087 orz Ormu -5088 osa Osage -5089 osc Oscan -5090 osi Osing -5091 osn Old Sundanese -5092 oso Ososo -5093 osp Old Spanish -5094 os Ossetian -5095 ost Osatu -5096 osu Southern One -5097 osx Old Saxon -5098 ota Ottoman Turkish (1500-1928) -5099 otb Old Tibetan -5100 otd Ot Danum -5101 ote Mezquital Otomi -5102 oti Oti -5103 otk Old Turkish -5104 otl Tilapa Otomi -5105 otm Eastern Highland Otomi -5106 otn Tenango Otomi -5107 otq Querétaro Otomi -5108 otr Otoro -5109 ots Estado de México Otomi -5110 ott Temoaya Otomi -5111 otu Otuke -5112 otw Ottawa -5113 otx Texcatepec Otomi -5114 oty Old Tamil -5115 otz Ixtenco Otomi -5116 oua Tagargrent -5117 oub Glio-Oubi -5118 oue Oune -5119 oui Old Uighur -5120 oum Ouma -5121 ovd Elfdalian -5122 owi Owiniga -5123 owl Old Welsh -5124 oyb Oy -5125 oyd Oyda -5126 oym Wayampi -5127 oyy Oya'oya -5128 ozm Koonzime -5129 pab Parecís -5130 pac Pacoh -5131 pad Paumarí -5132 pae Pagibete -5133 paf Paranawát -5134 pag Pangasinan -5135 pah Tenharim -5136 pai Pe -5137 pak Parakanã -5138 pal Pahlavi -5139 pam Pampanga -5140 pa Panjabi -5141 pao Northern Paiute -5142 pap Papiamento -5143 paq Parya -5144 par Panamint -5145 pas Papasena -5146 pau Palauan -5147 pav Pakaásnovos -5148 paw Pawnee -5149 pax Pankararé -5150 pay Pech -5151 paz Pankararú -5152 pbb Páez -5153 pbc Patamona -5154 pbe Mezontla Popoloca -5155 pbf Coyotepec Popoloca -5156 pbg Paraujano -5157 pbh E'ñapa Woromaipu -5158 pbi Parkwa -5159 pbl Mak (Nigeria) -5160 pbm Puebla Mazatec -5161 pbn Kpasam -5162 pbo Papel -5163 pbp Badyara -5164 pbr Pangwa -5165 pbs Central Pame -5166 pbt Southern Pashto -5167 pbu Northern Pashto -5168 pbv Pnar -5169 pby Pyu (Papua New Guinea) -5170 pca Santa Inés Ahuatempan Popoloca -5171 pcb Pear -5172 pcc Bouyei -5173 pcd Picard -5174 pce Ruching Palaung -5175 pcf Paliyan -5176 pcg Paniya -5177 pch Pardhan -5178 pci Duruwa -5179 pcj Parenga -5180 pck Paite Chin -5181 pcl Pardhi -5182 pcm Nigerian Pidgin -5183 pcn Piti -5184 pcp Pacahuara -5185 pcw Pyapun -5186 pda Anam -5187 pdc Pennsylvania German -5188 pdi Pa Di -5189 pdn Podena -5190 pdo Padoe -5191 pdt Plautdietsch -5192 pdu Kayan -5193 pea Peranakan Indonesian -5194 peb Eastern Pomo -5195 ped Mala (Papua New Guinea) -5196 pee Taje -5197 pef Northeastern Pomo -5198 peg Pengo -5199 peh Bonan -5200 pei Chichimeca-Jonaz -5201 pej Northern Pomo -5202 pek Penchal -5203 pel Pekal -5204 pem Phende -5205 peo Old Persian (ca. 600-400 B.C.) -5206 pep Kunja -5207 peq Southern Pomo -5208 pes Iranian Persian -5209 pev Pémono -5210 pex Petats -5211 pey Petjo -5212 pez Eastern Penan -5213 pfa Pááfang -5214 pfe Pere -5215 pfl Pfaelzisch -5216 pga Sudanese Creole Arabic -5217 pgd GāndhārÄ« -5218 pgg Pangwali -5219 pgi Pagi -5220 pgk Rerep -5221 pgl Primitive Irish -5222 pgn Paelignian -5223 pgs Pangseng -5224 pgu Pagu -5225 pgz Papua New Guinean Sign Language -5226 pha Pa-Hng -5227 phd Phudagi -5228 phg Phuong -5229 phh Phukha -5230 phj Pahari -5231 phk Phake -5232 phl Phalura -5233 phm Phimbi -5234 phn Phoenician -5235 pho Phunoi -5236 phq Phana' -5237 phr Pahari-Potwari -5238 pht Phu Thai -5239 phu Phuan -5240 phv Pahlavani -5241 phw Phangduwali -5242 pia Pima Bajo -5243 pib Yine -5244 pic Pinji -5245 pid Piaroa -5246 pie Piro -5247 pif Pingelapese -5248 pig Pisabo -5249 pih Pitcairn-Norfolk -5250 pij Pijao -5251 pil Yom -5252 pim Powhatan -5253 pin Piame -5254 pio Piapoco -5255 pip Pero -5256 pir Piratapuyo -5257 pis Pijin -5258 pit Pitta Pitta -5259 piu Pintupi-Luritja -5260 piv Pileni -5261 piw Pimbwe -5262 pix Piu -5263 piy Piya-Kwonci -5264 piz Pije -5265 pjt Pitjantjatjara -5266 pka ArdhamāgadhÄ« Prākrit -5267 pkb Pokomo -5268 pkc Paekche -5269 pkg Pak-Tong -5270 pkh Pankhu -5271 pkn Pakanha -5272 pko Pökoot -5273 pkp Pukapuka -5274 pkr Attapady Kurumba -5275 pks Pakistan Sign Language -5276 pkt Maleng -5277 pku Paku -5278 pla Miani -5279 plb Polonombauk -5280 plc Central Palawano -5281 pld Polari -5282 ple Palu'e -5283 plg Pilagá -5284 plh Paulohi -5285 pi Pali -5286 plk Kohistani Shina -5287 pll Shwe Palaung -5288 pln Palenquero -5289 plo Oluta Popoluca -5290 plq Palaic -5291 plr Palaka Senoufo -5292 pls San Marcos Tlacoyalco Popoloca -5293 plt Plateau Malagasy -5294 plu Palikúr -5295 plv Southwest Palawano -5296 plw Brooke's Point Palawano -5297 ply Bolyu -5298 plz Paluan -5299 pma Paama -5300 pmb Pambia -5301 pmd Pallanganmiddang -5302 pme Pwaamei -5303 pmf Pamona -5304 pmh Māhārāṣṭri Prākrit -5305 pmi Northern Pumi -5306 pmj Southern Pumi -5307 pml Lingua Franca -5308 pmm Pomo -5309 pmn Pam -5310 pmo Pom -5311 pmq Northern Pame -5312 pmr Paynamar -5313 pms Piemontese -5314 pmt Tuamotuan -5315 pmw Plains Miwok -5316 pmx Poumei Naga -5317 pmy Papuan Malay -5318 pmz Southern Pame -5319 pna Punan Bah-Biau -5320 pnb Western Panjabi -5321 pnc Pannei -5322 pnd Mpinda -5323 pne Western Penan -5324 png Pangu -5325 pnh Penrhyn -5326 pni Aoheng -5327 pnj Pinjarup -5328 pnk Paunaka -5329 pnl Paleni -5330 pnm Punan Batu 1 -5331 pnn Pinai-Hagahai -5332 pno Panobo -5333 pnp Pancana -5334 pnq Pana (Burkina Faso) -5335 pnr Panim -5336 pns Ponosakan -5337 pnt Pontic -5338 pnu Jiongnai Bunu -5339 pnv Pinigura -5340 pnw Banyjima -5341 pnx Phong-Kniang -5342 pny Pinyin -5343 pnz Pana (Central African Republic) -5344 poc Poqomam -5345 poe San Juan Atzingo Popoloca -5346 pof Poke -5347 pog Potiguára -5348 poh Poqomchi' -5349 poi Highland Popoluca -5350 pok Pokangá -5351 pl Polish -5352 pom Southeastern Pomo -5353 pon Pohnpeian -5354 poo Central Pomo -5355 pop Pwapwâ -5356 poq Texistepec Popoluca -5357 pt Portuguese -5358 pos Sayula Popoluca -5359 pot Potawatomi -5360 pov Upper Guinea Crioulo -5361 pow San Felipe Otlaltepec Popoloca -5362 pox Polabian -5363 poy Pogolo -5364 ppe Papi -5365 ppi Paipai -5366 ppk Uma -5367 ppl Pipil -5368 ppm Papuma -5369 ppn Papapana -5370 ppo Folopa -5371 ppp Pelende -5372 ppq Pei -5373 pps San Luís Temalacayuca Popoloca -5374 ppt Pare -5375 ppu Papora -5376 pqa Pa'a -5377 pqm Malecite-Passamaquoddy -5378 prc Parachi -5379 prd Parsi-Dari -5380 pre Principense -5381 prf Paranan -5382 prg Prussian -5383 prh Porohanon -5384 pri Paicî -5385 prk Parauk -5386 prl Peruvian Sign Language -5387 prm Kibiri -5388 prn Prasuni -5389 pro Old Provençal (to 1500) -5390 prq Ashéninka Perené -5391 prr Puri -5392 prs Dari -5393 prt Phai -5394 pru Puragi -5395 prw Parawen -5396 prx Purik -5397 prz Providencia Sign Language -5398 psa Asue Awyu -5399 psc Iranian Sign Language -5400 psd Plains Indian Sign Language -5401 pse Central Malay -5402 psg Penang Sign Language -5403 psh Southwest Pashai -5404 psi Southeast Pashai -5405 psl Puerto Rican Sign Language -5406 psm Pauserna -5407 psn Panasuan -5408 pso Polish Sign Language -5409 psp Philippine Sign Language -5410 psq Pasi -5411 psr Portuguese Sign Language -5412 pss Kaulong -5413 pst Central Pashto -5414 psu Sauraseni Prākrit -5415 psw Port Sandwich -5416 psy Piscataway -5417 pta Pai Tavytera -5418 pth Pataxó Hã-Ha-Hãe -5419 pti Pindiini -5420 ptn Patani -5421 pto Zo'é -5422 ptp Patep -5423 ptq Pattapu -5424 ptr Piamatsina -5425 ptt Enrekang -5426 ptu Bambam -5427 ptv Port Vato -5428 ptw Pentlatch -5429 pty Pathiya -5430 pua Western Highland Purepecha -5431 pub Purum -5432 puc Punan Merap -5433 pud Punan Aput -5434 pue Puelche -5435 puf Punan Merah -5436 pug Phuie -5437 pui Puinave -5438 puj Punan Tubu -5439 pum Puma -5440 puo Puoc -5441 pup Pulabu -5442 puq Puquina -5443 pur Puruborá -5444 pus Pashto -5445 ps Pushto -5446 put Putoh -5447 puu Punu -5448 puw Puluwatese -5449 pux Puare -5450 puy Purisimeño -5451 pwa Pawaia -5452 pwb Panawa -5453 pwg Gapapaiwa -5454 pwi Patwin -5455 pwm Molbog -5456 pwn Paiwan -5457 pwo Pwo Western Karen -5458 pwr Powari -5459 pww Pwo Northern Karen -5460 pxm Quetzaltepec Mixe -5461 pye Pye Krumen -5462 pym Fyam -5463 pyn Poyanáwa -5464 pys Paraguayan Sign Language -5465 pyu Puyuma -5466 pyx Pyu (Myanmar) -5467 pyy Pyen -5468 pze Pesse -5469 pzh Pazeh -5470 pzn Jejara Naga -5471 qua Quapaw -5472 qub Huallaga Huánuco Quechua -5473 quc K'iche' -5474 qud Calderón Highland Quichua -5475 qu Quechua -5476 quf Lambayeque Quechua -5477 qug Chimborazo Highland Quichua -5478 quh South Bolivian Quechua -5479 qui Quileute -5480 quk Chachapoyas Quechua -5481 qul North Bolivian Quechua -5482 qum Sipacapense -5483 qun Quinault -5484 qup Southern Pastaza Quechua -5485 quq Quinqui -5486 qur Yanahuanca Pasco Quechua -5487 qus Santiago del Estero Quichua -5488 quv Sacapulteco -5489 quw Tena Lowland Quichua -5490 qux Yauyos Quechua -5491 quy Ayacucho Quechua -5492 quz Cusco Quechua -5493 qva Ambo-Pasco Quechua -5494 qvc Cajamarca Quechua -5495 qve Eastern Apurímac Quechua -5496 qvh Huamalíes-Dos de Mayo Huánuco Quechua -5497 qvi Imbabura Highland Quichua -5498 qvj Loja Highland Quichua -5499 qvl Cajatambo North Lima Quechua -5500 qvm Margos-Yarowilca-Lauricocha Quechua -5501 qvn North Junín Quechua -5502 qvo Napo Lowland Quechua -5503 qvp Pacaraos Quechua -5504 qvs San Martín Quechua -5505 qvw Huaylla Wanca Quechua -5506 qvy Queyu -5507 qvz Northern Pastaza Quichua -5508 qwa Corongo Ancash Quechua -5509 qwc Classical Quechua -5510 qwh Huaylas Ancash Quechua -5511 qwm Kuman (Russia) -5512 qws Sihuas Ancash Quechua -5513 qwt Kwalhioqua-Tlatskanai -5514 qxa Chiquián Ancash Quechua -5515 qxc Chincha Quechua -5516 qxh Panao Huánuco Quechua -5517 qxl Salasaca Highland Quichua -5518 qxn Northern Conchucos Ancash Quechua -5519 qxo Southern Conchucos Ancash Quechua -5520 qxp Puno Quechua -5521 qxq Qashqa'i -5522 qxr Cañar Highland Quichua -5523 qxs Southern Qiang -5524 qxt Santa Ana de Tusi Pasco Quechua -5525 qxu Arequipa-La Unión Quechua -5526 qxw Jauja Wanca Quechua -5527 qya Quenya -5528 qyp Quiripi -5529 raa Dungmali -5530 rab Camling -5531 rac Rasawa -5532 rad Rade -5533 raf Western Meohang -5534 rag Logooli -5535 rah Rabha -5536 rai Ramoaaina -5537 raj Rajasthani -5538 rak Tulu-Bohuai -5539 ral Ralte -5540 ram Canela -5541 ran Riantana -5542 rao Rao -5543 rap Rapanui -5544 raq Saam -5545 rar Rarotongan -5546 ras Tegali -5547 rat Razajerdi -5548 rau Raute -5549 rav Sampang -5550 raw Rawang -5551 rax Rang -5552 ray Rapa -5553 raz Rahambuu -5554 rbb Rumai Palaung -5555 rbk Northern Bontok -5556 rbl Miraya Bikol -5557 rbp Barababaraba -5558 rcf Réunion Creole French -5559 rdb Rudbari -5560 rea Rerau -5561 reb Rembong -5562 ree Rejang Kayan -5563 reg Kara (Tanzania) -5564 rei Reli -5565 rej Rejang -5566 rel Rendille -5567 rem Remo -5568 ren Rengao -5569 rer Rer Bare -5570 res Reshe -5571 ret Retta -5572 rey Reyesano -5573 rga Roria -5574 rge Romano-Greek -5575 rgk Rangkas -5576 rgn Romagnol -5577 rgr Resígaro -5578 rgs Southern Roglai -5579 rgu Ringgou -5580 rhg Rohingya -5581 rhp Yahang -5582 ria Riang (India) -5583 rib Bribri Sign Language -5584 rif Tarifit -5585 ril Riang Lang -5586 rim Nyaturu -5587 rin Nungu -5588 rir Ribun -5589 rit Ritharrngu -5590 riu Riung -5591 rjg Rajong -5592 rji Raji -5593 rjs Rajbanshi -5594 rka Kraol -5595 rkb Rikbaktsa -5596 rkh Rakahanga-Manihiki -5597 rki Rakhine -5598 rkm Marka -5599 rkt Rangpuri -5600 rkw Arakwal -5601 rma Rama -5602 rmb Rembarrnga -5603 rmc Carpathian Romani -5604 rmd Traveller Danish -5605 rme Angloromani -5606 rmf Kalo Finnish Romani -5607 rmg Traveller Norwegian -5608 rmh Murkim -5609 rmi Lomavren -5610 rmk Romkun -5611 rml Baltic Romani -5612 rmm Roma -5613 rmn Balkan Romani -5614 rmo Sinte Romani -5615 rmp Rempi -5616 rmq Caló -5617 rms Romanian Sign Language -5618 rmt Domari -5619 rmu Tavringer Romani -5620 rmv Romanova -5621 rmw Welsh Romani -5622 rmx Romam -5623 rmy Vlax Romani -5624 rmz Marma -5625 rnb Brunca Sign Language -5626 rnd Ruund -5627 rng Ronga -5628 rnl Ranglong -5629 rnn Roon -5630 rnp Rongpo -5631 rnr Nari Nari -5632 rnw Rungwa -5633 rob Tae' -5634 roc Cacgia Roglai -5635 rod Rogo -5636 roe Ronji -5637 rof Rombo -5638 rog Northern Roglai -5639 rm Romansh -5640 rol Romblomanon -5641 rom Romany -5642 ro Romanian -5643 roo Rotokas -5644 rop Kriol -5645 ror Rongga -5646 rou Runga -5647 row Dela-Oenale -5648 rpn Repanbitip -5649 rpt Rapting -5650 rri Ririo -5651 rrm Moriori -5652 rro Waima -5653 rrt Arritinngithigh -5654 rsb Romano-Serbian -5655 rsk Ruthenian -5656 rsl Russian Sign Language -5657 rsm Miriwoong Sign Language -5658 rsn Rwandan Sign Language -5659 rsw Rishiwa -5660 rtc Rungtu Chin -5661 rth Ratahan -5662 rtm Rotuman -5663 rts Yurats -5664 rtw Rathawi -5665 rub Gungu -5666 ruc Ruuli -5667 rue Rusyn -5668 ruf Luguru -5669 rug Roviana -5670 ruh Ruga -5671 rui Rufiji -5672 ruk Che -5673 rn Rundi -5674 ruo Istro Romanian -5675 rup Macedo-Romanian -5676 ruq Megleno Romanian -5677 ru Russian -5678 rut Rutul -5679 ruu Lanas Lobu -5680 ruy Mala (Nigeria) -5681 ruz Ruma -5682 rwa Rawo -5683 rwk Rwa -5684 rwl Ruwila -5685 rwm Amba (Uganda) -5686 rwo Rawa -5687 rwr Marwari (India) -5688 rxd Ngardi -5689 rxw Karuwali -5690 ryn Northern Amami-Oshima -5691 rys Yaeyama -5692 ryu Central Okinawan -5693 rzh Rāziḥī -5694 saa Saba -5695 sab Buglere -5696 sac Meskwaki -5697 sad Sandawe -5698 sae Sabanê -5699 saf Safaliba -5700 sg Sango -5701 sah Yakut -5702 saj Sahu -5703 sak Sake -5704 sam Samaritan Aramaic -5705 sa Sanskrit -5706 sao Sause -5707 saq Samburu -5708 sar Saraveca -5709 sas Sasak -5710 sat Santali -5711 sau Saleman -5712 sav Saafi-Saafi -5713 saw Sawi -5714 sax Sa -5715 say Saya -5716 saz Saurashtra -5717 sba Ngambay -5718 sbb Simbo -5719 sbc Kele (Papua New Guinea) -5720 sbd Southern Samo -5721 sbe Saliba -5722 sbf Chabu -5723 sbg Seget -5724 sbh Sori-Harengan -5725 sbi Seti -5726 sbj Surbakhal -5727 sbk Safwa -5728 sbl Botolan Sambal -5729 sbm Sagala -5730 sbn Sindhi Bhil -5731 sbo Sabüm -5732 sbp Sangu (Tanzania) -5733 sbq Sileibi -5734 sbr Sembakung Murut -5735 sbs Subiya -5736 sbt Kimki -5737 sbu Stod Bhoti -5738 sbv Sabine -5739 sbw Simba -5740 sbx Seberuang -5741 sby Soli -5742 sbz Sara Kaba -5743 scb Chut -5744 sce Dongxiang -5745 scf San Miguel Creole French -5746 scg Sanggau -5747 sch Sakachep -5748 sci Sri Lankan Creole Malay -5749 sck Sadri -5750 scl Shina -5751 scn Sicilian -5752 sco Scots -5753 scp Hyolmo -5754 scq Sa'och -5755 scs North Slavey -5756 sct Southern Katang -5757 scu Shumcho -5758 scv Sheni -5759 scw Sha -5760 scx Sicel -5761 sda Toraja-Sa'dan -5762 sdb Shabak -5763 sdc Sassarese Sardinian -5764 sde Surubu -5765 sdf Sarli -5766 sdg Savi -5767 sdh Southern Kurdish -5768 sdj Suundi -5769 sdk Sos Kundi -5770 sdl Saudi Arabian Sign Language -5771 sdn Gallurese Sardinian -5772 sdo Bukar-Sadung Bidayuh -5773 sdp Sherdukpen -5774 sdq Semandang -5775 sdr Oraon Sadri -5776 sds Sened -5777 sdt Shuadit -5778 sdu Sarudu -5779 sdx Sibu Melanau -5780 sdz Sallands -5781 sea Semai -5782 seb Shempire Senoufo -5783 sec Sechelt -5784 sed Sedang -5785 see Seneca -5786 sef Cebaara Senoufo -5787 seg Segeju -5788 seh Sena -5789 sei Seri -5790 sej Sene -5791 sek Sekani -5792 sel Selkup -5793 sen Nanerigé Sénoufo -5794 seo Suarmin -5795 sep Sìcìté Sénoufo -5796 seq Senara Sénoufo -5797 ser Serrano -5798 ses Koyraboro Senni Songhai -5799 set Sentani -5800 seu Serui-Laut -5801 sev Nyarafolo Senoufo -5802 sew Sewa Bay -5803 sey Secoya -5804 sez Senthang Chin -5805 sfb Langue des signes de Belgique Francophone -5806 sfe Eastern Subanen -5807 sfm Small Flowery Miao -5808 sfs South African Sign Language -5809 sfw Sehwi -5810 sga Old Irish (to 900) -5811 sgb Mag-antsi Ayta -5812 sgc Kipsigis -5813 sgd Surigaonon -5814 sge Segai -5815 sgg Swiss-German Sign Language -5816 sgh Shughni -5817 sgi Suga -5818 sgj Surgujia -5819 sgk Sangkong -5820 sgm Singa -5821 sgp Singpho -5822 sgr Sangisari -5823 sgs Samogitian -5824 sgt Brokpake -5825 sgu Salas -5826 sgw Sebat Bet Gurage -5827 sgx Sierra Leone Sign Language -5828 sgy Sanglechi -5829 sgz Sursurunga -5830 sha Shall-Zwall -5831 shb Ninam -5832 shc Sonde -5833 shd Kundal Shahi -5834 she Sheko -5835 shg Shua -5836 shh Shoshoni -5837 shi Tachelhit -5838 shj Shatt -5839 shk Shilluk -5840 shl Shendu -5841 shm Shahrudi -5842 shn Shan -5843 sho Shanga -5844 shp Shipibo-Conibo -5845 shq Sala -5846 shr Shi -5847 shs Shuswap -5848 sht Shasta -5849 shu Chadian Arabic -5850 shv Shehri -5851 shw Shwai -5852 shx She -5853 shy Tachawit -5854 shz Syenara Senoufo -5855 sia Akkala Sami -5856 sib Sebop -5857 sid Sidamo -5858 sie Simaa -5859 sif Siamou -5860 sig Paasaal -5861 sih Zire -5862 sii Shom Peng -5863 sij Numbami -5864 sik Sikiana -5865 sil Tumulung Sisaala -5866 sim Mende (Papua New Guinea) -5867 si Sinhala -5868 sip Sikkimese -5869 siq Sonia -5870 sir Siri -5871 sis Siuslaw -5872 siu Sinagen -5873 siv Sumariup -5874 siw Siwai -5875 six Sumau -5876 siy Sivandi -5877 siz Siwi -5878 sja Epena -5879 sjb Sajau Basap -5880 sjd Kildin Sami -5881 sje Pite Sami -5882 sjg Assangori -5883 sjk Kemi Sami -5884 sjl Sajalong -5885 sjm Mapun -5886 sjn Sindarin -5887 sjo Xibe -5888 sjp Surjapuri -5889 sjr Siar-Lak -5890 sjs Senhaja De Srair -5891 sjt Ter Sami -5892 sju Ume Sami -5893 sjw Shawnee -5894 ska Skagit -5895 skb Saek -5896 skc Ma Manda -5897 skd Southern Sierra Miwok -5898 ske Seke (Vanuatu) -5899 skf Sakirabiá -5900 skg Sakalava Malagasy -5901 skh Sikule -5902 ski Sika -5903 skj Seke (Nepal) -5904 skm Kutong -5905 skn Kolibugan Subanon -5906 sko Seko Tengah -5907 skp Sekapan -5908 skq Sininkere -5909 skr Saraiki -5910 sks Maia -5911 skt Sakata -5912 sku Sakao -5913 skv Skou -5914 skw Skepi Creole Dutch -5915 skx Seko Padang -5916 sky Sikaiana -5917 skz Sekar -5918 slc Sáliba -5919 sld Sissala -5920 sle Sholaga -5921 slf Swiss-Italian Sign Language -5922 slg Selungai Murut -5923 slh Southern Puget Sound Salish -5924 sli Lower Silesian -5925 slj Salumá -5926 sk Slovak -5927 sll Salt-Yui -5928 slm Pangutaran Sama -5929 sln Salinan -5930 slp Lamaholot -5931 slr Salar -5932 sls Singapore Sign Language -5933 slt Sila -5934 slu Selaru -5935 sl Slovenian -5936 slw Sialum -5937 slx Salampasu -5938 sly Selayar -5939 slz Ma'ya -5940 sma Southern Sami -5941 smb Simbari -5942 smc Som -5943 se Northern Sami -5944 smf Auwe -5945 smg Simbali -5946 smh Samei -5947 smj Lule Sami -5948 smk Bolinao -5949 sml Central Sama -5950 smm Musasa -5951 smn Inari Sami -5952 sm Samoan -5953 smp Samaritan -5954 smq Samo -5955 smr Simeulue -5956 sms Skolt Sami -5957 smt Simte -5958 smu Somray -5959 smv Samvedi -5960 smw Sumbawa -5961 smx Samba -5962 smy Semnani -5963 smz Simeku -5964 sn Shona -5965 snc Sinaugoro -5966 sd Sindhi -5967 sne Bau Bidayuh -5968 snf Noon -5969 sng Sanga (Democratic Republic of Congo) -5970 sni Sensi -5971 snj Riverain Sango -5972 snk Soninke -5973 snl Sangil -5974 snm Southern Ma'di -5975 snn Siona -5976 sno Snohomish -5977 snp Siane -5978 snq Sangu (Gabon) -5979 snr Sihan -5980 sns South West Bay -5981 snu Senggi -5982 snv Sa'ban -5983 snw Selee -5984 snx Sam -5985 sny Saniyo-Hiyewe -5986 snz Kou -5987 soa Thai Song -5988 sob Sobei -5989 soc So (Democratic Republic of Congo) -5990 sod Songoora -5991 soe Songomeno -5992 sog Sogdian -5993 soh Aka -5994 soi Sonha -5995 soj Soi -5996 sok Sokoro -5997 sol Solos -5998 so Somali -5999 soo Songo -6000 sop Songe -6001 soq Kanasi -6002 sor Somrai -6003 sos Seeku -6004 st Southern Sotho -6005 sou Southern Thai -6006 sov Sonsorol -6007 sow Sowanda -6008 sox Swo -6009 soy Miyobe -6010 soz Temi -6011 es Spanish -6012 spb Sepa (Indonesia) -6013 spc Sapé -6014 spd Saep -6015 spe Sepa (Papua New Guinea) -6016 spg Sian -6017 spi Saponi -6018 spk Sengo -6019 spl Selepet -6020 spm Akukem -6021 spn Sanapaná -6022 spo Spokane -6023 spp Supyire Senoufo -6024 spq Loreto-Ucayali Spanish -6025 spr Saparua -6026 sps Saposa -6027 spt Spiti Bhoti -6028 spu Sapuan -6029 spv Sambalpuri -6030 spx South Picene -6031 spy Sabaot -6032 sqa Shama-Sambuga -6033 sqh Shau -6034 sq Albanian -6035 sqk Albanian Sign Language -6036 sqm Suma -6037 sqn Susquehannock -6038 sqo Sorkhei -6039 sqq Sou -6040 sqr Siculo Arabic -6041 sqs Sri Lankan Sign Language -6042 sqt Soqotri -6043 squ Squamish -6044 sqx Kufr Qassem Sign Language (KQSL) -6045 sra Saruga -6046 srb Sora -6047 src Logudorese Sardinian -6048 sc Sardinian -6049 sre Sara -6050 srf Nafi -6051 srg Sulod -6052 srh Sarikoli -6053 sri Siriano -6054 srk Serudung Murut -6055 srl Isirawa -6056 srm Saramaccan -6057 srn Sranan Tongo -6058 sro Campidanese Sardinian -6059 sr Serbian -6060 srq Sirionó -6061 srr Serer -6062 srs Sarsi -6063 srt Sauri -6064 sru Suruí -6065 srv Southern Sorsoganon -6066 srw Serua -6067 srx Sirmauri -6068 sry Sera -6069 srz Shahmirzadi -6070 ssb Southern Sama -6071 ssc Suba-Simbiti -6072 ssd Siroi -6073 sse Balangingi -6074 ssf Thao -6075 ssg Seimat -6076 ssh Shihhi Arabic -6077 ssi Sansi -6078 ssj Sausi -6079 ssk Sunam -6080 ssl Western Sisaala -6081 ssm Semnam -6082 ssn Waata -6083 sso Sissano -6084 ssp Spanish Sign Language -6085 ssq So'a -6086 ssr Swiss-French Sign Language -6087 sss Sô -6088 sst Sinasina -6089 ssu Susuami -6090 ssv Shark Bay -6091 ss Swati -6092 ssx Samberigi -6093 ssy Saho -6094 ssz Sengseng -6095 sta Settla -6096 stb Northern Subanen -6097 std Sentinel -6098 ste Liana-Seti -6099 stf Seta -6100 stg Trieng -6101 sth Shelta -6102 sti Bulo Stieng -6103 stj Matya Samo -6104 stk Arammba -6105 stl Stellingwerfs -6106 stm Setaman -6107 stn Owa -6108 sto Stoney -6109 stp Southeastern Tepehuan -6110 stq Saterfriesisch -6111 str Straits Salish -6112 sts Shumashti -6113 stt Budeh Stieng -6114 stu Samtao -6115 stv Silt'e -6116 stw Satawalese -6117 sty Siberian Tatar -6118 sua Sulka -6119 sub Suku -6120 suc Western Subanon -6121 sue Suena -6122 sug Suganga -6123 sui Suki -6124 suj Shubi -6125 suk Sukuma -6126 su Sundanese -6127 suo Bouni -6128 suq Tirmaga-Chai Suri -6129 sur Mwaghavul -6130 sus Susu -6131 sut Subtiaba -6132 suv Puroik -6133 suw Sumbwa -6134 sux Sumerian -6135 suy Suyá -6136 suz Sunwar -6137 sva Svan -6138 svb Ulau-Suain -6139 svc Vincentian Creole English -6140 sve Serili -6141 svk Slovakian Sign Language -6142 svm Slavomolisano -6143 svs Savosavo -6144 svx Skalvian -6145 sw Swahili (macrolanguage) -6146 swb Maore Comorian -6147 swc Congo Swahili -6148 sv Swedish -6149 swf Sere -6150 swg Swabian -6151 swh Swahili (individual language) -6152 swi Sui -6153 swj Sira -6154 swk Malawi Sena -6155 swl Swedish Sign Language -6156 swm Samosa -6157 swn Sawknah -6158 swo Shanenawa -6159 swp Suau -6160 swq Sharwa -6161 swr Saweru -6162 sws Seluwasan -6163 swt Sawila -6164 swu Suwawa -6165 swv Shekhawati -6166 sww Sowa -6167 swx Suruahá -6168 swy Sarua -6169 sxb Suba -6170 sxc Sicanian -6171 sxe Sighu -6172 sxg Shuhi -6173 sxk Southern Kalapuya -6174 sxl Selian -6175 sxm Samre -6176 sxn Sangir -6177 sxo Sorothaptic -6178 sxr Saaroa -6179 sxs Sasaru -6180 sxu Upper Saxon -6181 sxw Saxwe Gbe -6182 sya Siang -6183 syb Central Subanen -6184 syc Classical Syriac -6185 syi Seki -6186 syk Sukur -6187 syl Sylheti -6188 sym Maya Samo -6189 syn Senaya -6190 syo Suoy -6191 syr Syriac -6192 sys Sinyar -6193 syw Kagate -6194 syx Samay -6195 syy Al-Sayyid Bedouin Sign Language -6196 sza Semelai -6197 szb Ngalum -6198 szc Semaq Beri -6199 sze Seze -6200 szg Sengele -6201 szl Silesian -6202 szn Sula -6203 szp Suabo -6204 szs Solomon Islands Sign Language -6205 szv Isu (Fako Division) -6206 szw Sawai -6207 szy Sakizaya -6208 taa Lower Tanana -6209 tab Tabassaran -6210 tac Lowland Tarahumara -6211 tad Tause -6212 tae Tariana -6213 taf Tapirapé -6214 tag Tagoi -6215 ty Tahitian -6216 taj Eastern Tamang -6217 tak Tala -6218 tal Tal -6219 ta Tamil -6220 tan Tangale -6221 tao Yami -6222 tap Taabwa -6223 taq Tamasheq -6224 tar Central Tarahumara -6225 tas Tay Boi -6226 tt Tatar -6227 tau Upper Tanana -6228 tav Tatuyo -6229 taw Tai -6230 tax Tamki -6231 tay Atayal -6232 taz Tocho -6233 tba Aikanã -6234 tbc Takia -6235 tbd Kaki Ae -6236 tbe Tanimbili -6237 tbf Mandara -6238 tbg North Tairora -6239 tbh Dharawal -6240 tbi Gaam -6241 tbj Tiang -6242 tbk Calamian Tagbanwa -6243 tbl Tboli -6244 tbm Tagbu -6245 tbn Barro Negro Tunebo -6246 tbo Tawala -6247 tbp Taworta -6248 tbr Tumtum -6249 tbs Tanguat -6250 tbt Tembo (Kitembo) -6251 tbu Tubar -6252 tbv Tobo -6253 tbw Tagbanwa -6254 tbx Kapin -6255 tby Tabaru -6256 tbz Ditammari -6257 tca Ticuna -6258 tcb Tanacross -6259 tcc Datooga -6260 tcd Tafi -6261 tce Southern Tutchone -6262 tcf Malinaltepec Me'phaa -6263 tcg Tamagario -6264 tch Turks And Caicos Creole English -6265 tci Wára -6266 tck Tchitchege -6267 tcl Taman (Myanmar) -6268 tcm Tanahmerah -6269 tcn Tichurong -6270 tco Taungyo -6271 tcp Tawr Chin -6272 tcq Kaiy -6273 tcs Torres Strait Creole -6274 tct T'en -6275 tcu Southeastern Tarahumara -6276 tcw Tecpatlán Totonac -6277 tcx Toda -6278 tcy Tulu -6279 tcz Thado Chin -6280 tda Tagdal -6281 tdb Panchpargania -6282 tdc Emberá-Tadó -6283 tdd Tai Nüa -6284 tde Tiranige Diga Dogon -6285 tdf Talieng -6286 tdg Western Tamang -6287 tdh Thulung -6288 tdi Tomadino -6289 tdj Tajio -6290 tdk Tambas -6291 tdl Sur -6292 tdm Taruma -6293 tdn Tondano -6294 tdo Teme -6295 tdq Tita -6296 tdr Todrah -6297 tds Doutai -6298 tdt Tetun Dili -6299 tdv Toro -6300 tdx Tandroy-Mahafaly Malagasy -6301 tdy Tadyawan -6302 tea Temiar -6303 teb Tetete -6304 tec Terik -6305 ted Tepo Krumen -6306 tee Huehuetla Tepehua -6307 tef Teressa -6308 teg Teke-Tege -6309 teh Tehuelche -6310 tei Torricelli -6311 tek Ibali Teke -6312 te Telugu -6313 tem Timne -6314 ten Tama (Colombia) -6315 teo Teso -6316 tep Tepecano -6317 teq Temein -6318 ter Tereno -6319 tes Tengger -6320 tet Tetum -6321 teu Soo -6322 tev Teor -6323 tew Tewa (USA) -6324 tex Tennet -6325 tey Tulishi -6326 tez Tetserret -6327 tfi Tofin Gbe -6328 tfn Tanaina -6329 tfo Tefaro -6330 tfr Teribe -6331 tft Ternate -6332 tga Sagalla -6333 tgb Tobilung -6334 tgc Tigak -6335 tgd Ciwogai -6336 tge Eastern Gorkha Tamang -6337 tgf Chalikha -6338 tgh Tobagonian Creole English -6339 tgi Lawunuia -6340 tgj Tagin -6341 tg Tajik -6342 tl Tagalog -6343 tgn Tandaganon -6344 tgo Sudest -6345 tgp Tangoa -6346 tgq Tring -6347 tgr Tareng -6348 tgs Nume -6349 tgt Central Tagbanwa -6350 tgu Tanggu -6351 tgv Tingui-Boto -6352 tgw Tagwana Senoufo -6353 tgx Tagish -6354 tgy Togoyo -6355 tgz Tagalaka -6356 th Thai -6357 thd Kuuk Thaayorre -6358 the Chitwania Tharu -6359 thf Thangmi -6360 thh Northern Tarahumara -6361 thi Tai Long -6362 thk Tharaka -6363 thl Dangaura Tharu -6364 thm Aheu -6365 thn Thachanadan -6366 thp Thompson -6367 thq Kochila Tharu -6368 thr Rana Tharu -6369 ths Thakali -6370 tht Tahltan -6371 thu Thuri -6372 thv Tahaggart Tamahaq -6373 thy Tha -6374 thz Tayart Tamajeq -6375 tia Tidikelt Tamazight -6376 tic Tira -6377 tif Tifal -6378 tig Tigre -6379 tih Timugon Murut -6380 tii Tiene -6381 tij Tilung -6382 tik Tikar -6383 til Tillamook -6384 tim Timbe -6385 tin Tindi -6386 tio Teop -6387 tip Trimuris -6388 tiq Tiéfo -6389 ti Tigrinya -6390 tis Masadiit Itneg -6391 tit Tinigua -6392 tiu Adasen -6393 tiv Tiv -6394 tiw Tiwi -6395 tix Southern Tiwa -6396 tiy Tiruray -6397 tiz Tai Hongjin -6398 tja Tajuasohn -6399 tjg Tunjung -6400 tji Northern Tujia -6401 tjj Tjungundji -6402 tjl Tai Laing -6403 tjm Timucua -6404 tjn Tonjon -6405 tjo Temacine Tamazight -6406 tjp Tjupany -6407 tjs Southern Tujia -6408 tju Tjurruru -6409 tjw Djabwurrung -6410 tka Truká -6411 tkb Buksa -6412 tkd Tukudede -6413 tke Takwane -6414 tkf Tukumanféd -6415 tkg Tesaka Malagasy -6416 tkl Tokelau -6417 tkm Takelma -6418 tkn Toku-No-Shima -6419 tkp Tikopia -6420 tkq Tee -6421 tkr Tsakhur -6422 tks Takestani -6423 tkt Kathoriya Tharu -6424 tku Upper Necaxa Totonac -6425 tkv Mur Pano -6426 tkw Teanu -6427 tkx Tangko -6428 tkz Takua -6429 tla Southwestern Tepehuan -6430 tlb Tobelo -6431 tlc Yecuatla Totonac -6432 tld Talaud -6433 tlf Telefol -6434 tlg Tofanma -6435 tlh Klingon -6436 tli Tlingit -6437 tlj Talinga-Bwisi -6438 tlk Taloki -6439 tll Tetela -6440 tlm Tolomako -6441 tln Talondo' -6442 tlo Talodi -6443 tlp Filomena Mata-Coahuitlán Totonac -6444 tlq Tai Loi -6445 tlr Talise -6446 tls Tambotalo -6447 tlt Sou Nama -6448 tlu Tulehu -6449 tlv Taliabu -6450 tlx Khehek -6451 tly Talysh -6452 tma Tama (Chad) -6453 tmb Katbol -6454 tmc Tumak -6455 tmd Haruai -6456 tme Tremembé -6457 tmf Toba-Maskoy -6458 tmg Ternateño -6459 tmh Tamashek -6460 tmi Tutuba -6461 tmj Samarokena -6462 tml Tamnim Citak -6463 tmm Tai Thanh -6464 tmn Taman (Indonesia) -6465 tmo Temoq -6466 tmq Tumleo -6467 tmr Jewish Babylonian Aramaic (ca. 200-1200 CE) -6468 tms Tima -6469 tmt Tasmate -6470 tmu Iau -6471 tmv Tembo (Motembo) -6472 tmw Temuan -6473 tmy Tami -6474 tmz Tamanaku -6475 tna Tacana -6476 tnb Western Tunebo -6477 tnc Tanimuca-Retuarã -6478 tnd Angosturas Tunebo -6479 tng Tobanga -6480 tnh Maiani -6481 tni Tandia -6482 tnk Kwamera -6483 tnl Lenakel -6484 tnm Tabla -6485 tnn North Tanna -6486 tno Toromono -6487 tnp Whitesands -6488 tnq Taino -6489 tnr Ménik -6490 tns Tenis -6491 tnt Tontemboan -6492 tnu Tay Khang -6493 tnv Tangchangya -6494 tnw Tonsawang -6495 tnx Tanema -6496 tny Tongwe -6497 tnz Ten'edn -6498 tob Toba -6499 toc Coyutla Totonac -6500 tod Toma -6501 tof Gizrra -6502 tog Tonga (Nyasa) -6503 toh Gitonga -6504 toi Tonga (Zambia) -6505 toj Tojolabal -6506 tok Toki Pona -6507 tol Tolowa -6508 tom Tombulu -6509 to Tonga (Tonga Islands) -6510 too Xicotepec De Juárez Totonac -6511 top Papantla Totonac -6512 toq Toposa -6513 tor Togbo-Vara Banda -6514 tos Highland Totonac -6515 tou Tho -6516 tov Upper Taromi -6517 tow Jemez -6518 tox Tobian -6519 toy Topoiyo -6520 toz To -6521 tpa Taupota -6522 tpc Azoyú Me'phaa -6523 tpe Tippera -6524 tpf Tarpia -6525 tpg Kula -6526 tpi Tok Pisin -6527 tpj Tapieté -6528 tpk Tupinikin -6529 tpl Tlacoapa Me'phaa -6530 tpm Tampulma -6531 tpn Tupinambá -6532 tpo Tai Pao -6533 tpp Pisaflores Tepehua -6534 tpq Tukpa -6535 tpr Tuparí -6536 tpt Tlachichilco Tepehua -6537 tpu Tampuan -6538 tpv Tanapag -6539 tpx Acatepec Me'phaa -6540 tpy Trumai -6541 tpz Tinputz -6542 tqb Tembé -6543 tql Lehali -6544 tqm Turumsa -6545 tqn Tenino -6546 tqo Toaripi -6547 tqp Tomoip -6548 tqq Tunni -6549 tqr Torona -6550 tqt Western Totonac -6551 tqu Touo -6552 tqw Tonkawa -6553 tra Tirahi -6554 trb Terebu -6555 trc Copala Triqui -6556 trd Turi -6557 tre East Tarangan -6558 trf Trinidadian Creole English -6559 trg Lishán Didán -6560 trh Turaka -6561 tri Trió -6562 trj Toram -6563 trl Traveller Scottish -6564 trm Tregami -6565 trn Trinitario -6566 tro Tarao Naga -6567 trp Kok Borok -6568 trq San Martín Itunyoso Triqui -6569 trr Taushiro -6570 trs Chicahuaxtla Triqui -6571 trt Tunggare -6572 tru Turoyo -6573 trv Sediq -6574 trw Torwali -6575 trx Tringgus-Sembaan Bidayuh -6576 try Turung -6577 trz Torá -6578 tsa Tsaangi -6579 tsb Tsamai -6580 tsc Tswa -6581 tsd Tsakonian -6582 tse Tunisian Sign Language -6583 tsg Tausug -6584 tsh Tsuvan -6585 tsi Tsimshian -6586 tsj Tshangla -6587 tsk Tseku -6588 tsl Ts'ün-Lao -6589 tsm Turkish Sign Language -6590 tn Tswana -6591 ts Tsonga -6592 tsp Northern Toussian -6593 tsq Thai Sign Language -6594 tsr Akei -6595 tss Taiwan Sign Language -6596 tst Tondi Songway Kiini -6597 tsu Tsou -6598 tsv Tsogo -6599 tsw Tsishingini -6600 tsx Mubami -6601 tsy Tebul Sign Language -6602 tsz Purepecha -6603 tta Tutelo -6604 ttb Gaa -6605 ttc Tektiteko -6606 ttd Tauade -6607 tte Bwanabwana -6608 ttf Tuotomb -6609 ttg Tutong -6610 tth Upper Ta'oih -6611 tti Tobati -6612 ttj Tooro -6613 ttk Totoro -6614 ttl Totela -6615 ttm Northern Tutchone -6616 ttn Towei -6617 tto Lower Ta'oih -6618 ttp Tombelala -6619 ttq Tawallammat Tamajaq -6620 ttr Tera -6621 tts Northeastern Thai -6622 ttt Muslim Tat -6623 ttu Torau -6624 ttv Titan -6625 ttw Long Wat -6626 tty Sikaritai -6627 ttz Tsum -6628 tua Wiarumus -6629 tub Tübatulabal -6630 tuc Mutu -6631 tud Tuxá -6632 tue Tuyuca -6633 tuf Central Tunebo -6634 tug Tunia -6635 tuh Taulil -6636 tui Tupuri -6637 tuj Tugutil -6638 tk Turkmen -6639 tul Tula -6640 tum Tumbuka -6641 tun Tunica -6642 tuo Tucano -6643 tuq Tedaga -6644 tr Turkish -6645 tus Tuscarora -6646 tuu Tututni -6647 tuv Turkana -6648 tux Tuxináwa -6649 tuy Tugen -6650 tuz Turka -6651 tva Vaghua -6652 tvd Tsuvadi -6653 tve Te'un -6654 tvi Tulai -6655 tvk Southeast Ambrym -6656 tvl Tuvalu -6657 tvm Tela-Masbuar -6658 tvn Tavoyan -6659 tvo Tidore -6660 tvs Taveta -6661 tvt Tutsa Naga -6662 tvu Tunen -6663 tvw Sedoa -6664 tvx Taivoan -6665 tvy Timor Pidgin -6666 twa Twana -6667 twb Western Tawbuid -6668 twc Teshenawa -6669 twd Twents -6670 twe Tewa (Indonesia) -6671 twf Northern Tiwa -6672 twg Tereweng -6673 twh Tai Dón -6674 tw Twi -6675 twl Tawara -6676 twm Tawang Monpa -6677 twn Twendi -6678 two Tswapong -6679 twp Ere -6680 twq Tasawaq -6681 twr Southwestern Tarahumara -6682 twt Turiwára -6683 twu Termanu -6684 tww Tuwari -6685 twx Tewe -6686 twy Tawoyan -6687 txa Tombonuo -6688 txb Tokharian B -6689 txc Tsetsaut -6690 txe Totoli -6691 txg Tangut -6692 txh Thracian -6693 txi Ikpeng -6694 txj Tarjumo -6695 txm Tomini -6696 txn West Tarangan -6697 txo Toto -6698 txq Tii -6699 txr Tartessian -6700 txs Tonsea -6701 txt Citak -6702 txu Kayapó -6703 txx Tatana -6704 txy Tanosy Malagasy -6705 tya Tauya -6706 tye Kyanga -6707 tyh O'du -6708 tyi Teke-Tsaayi -6709 tyj Tai Do -6710 tyl Thu Lao -6711 tyn Kombai -6712 typ Thaypan -6713 tyr Tai Daeng -6714 tys Tà y Sa Pa -6715 tyt Tà y Tac -6716 tyu Kua -6717 tyv Tuvinian -6718 tyx Teke-Tyee -6719 tyy Tiyaa -6720 tyz Tà y -6721 tza Tanzanian Sign Language -6722 tzh Tzeltal -6723 tzj Tz'utujil -6724 tzl Talossan -6725 tzm Central Atlas Tamazight -6726 tzn Tugun -6727 tzo Tzotzil -6728 tzx Tabriak -6729 uam Uamué -6730 uan Kuan -6731 uar Tairuma -6732 uba Ubang -6733 ubi Ubi -6734 ubl Buhi'non Bikol -6735 ubr Ubir -6736 ubu Umbu-Ungu -6737 uby Ubykh -6738 uda Uda -6739 ude Udihe -6740 udg Muduga -6741 udi Udi -6742 udj Ujir -6743 udl Wuzlam -6744 udm Udmurt -6745 udu Uduk -6746 ues Kioko -6747 ufi Ufim -6748 uga Ugaritic -6749 ugb Kuku-Ugbanh -6750 uge Ughele -6751 ugh Kubachi -6752 ugn Ugandan Sign Language -6753 ugo Ugong -6754 ugy Uruguayan Sign Language -6755 uha Uhami -6756 uhn Damal -6757 ug Uighur -6758 uis Uisai -6759 uiv Iyive -6760 uji Tanjijili -6761 uka Kaburi -6762 ukg Ukuriguma -6763 ukh Ukhwejo -6764 uki Kui (India) -6765 ukk Muak Sa-aak -6766 ukl Ukrainian Sign Language -6767 ukp Ukpe-Bayobiri -6768 ukq Ukwa -6769 uk Ukrainian -6770 uks Urubú-Kaapor Sign Language -6771 uku Ukue -6772 ukv Kuku -6773 ukw Ukwuani-Aboh-Ndoni -6774 uky Kuuk-Yak -6775 ula Fungwa -6776 ulb Ulukwumi -6777 ulc Ulch -6778 ule Lule -6779 ulf Usku -6780 uli Ulithian -6781 ulk Meriam Mir -6782 ull Ullatan -6783 ulm Ulumanda' -6784 uln Unserdeutsch -6785 ulu Uma' Lung -6786 ulw Ulwa -6787 uly Buli -6788 uma Umatilla -6789 umb Umbundu -6790 umc Marrucinian -6791 umd Umbindhamu -6792 umg Morrobalama -6793 umi Ukit -6794 umm Umon -6795 umn Makyan Naga -6796 umo Umotína -6797 ump Umpila -6798 umr Umbugarla -6799 ums Pendau -6800 umu Munsee -6801 una North Watut -6802 und Undetermined -6803 une Uneme -6804 ung Ngarinyin -6805 uni Uni -6806 unk Enawené-Nawé -6807 unm Unami -6808 unn Kurnai -6809 unr Mundari -6810 unu Unubahe -6811 unx Munda -6812 unz Unde Kaili -6813 uon Kulon -6814 upi Umeda -6815 upv Uripiv-Wala-Rano-Atchin -6816 ura Urarina -6817 urb Urubú-Kaapor -6818 urc Urningangg -6819 ur Urdu -6820 ure Uru -6821 urf Uradhi -6822 urg Urigina -6823 urh Urhobo -6824 uri Urim -6825 urk Urak Lawoi' -6826 url Urali -6827 urm Urapmin -6828 urn Uruangnirin -6829 uro Ura (Papua New Guinea) -6830 urp Uru-Pa-In -6831 urr Lehalurup -6832 urt Urat -6833 uru Urumi -6834 urv Uruava -6835 urw Sop -6836 urx Urimo -6837 ury Orya -6838 urz Uru-Eu-Wau-Wau -6839 usa Usarufa -6840 ush Ushojo -6841 usi Usui -6842 usk Usaghade -6843 usp Uspanteco -6844 uss us-Saare -6845 usu Uya -6846 uta Otank -6847 ute Ute-Southern Paiute -6848 uth ut-Hun -6849 utp Amba (Solomon Islands) -6850 utr Etulo -6851 utu Utu -6852 uum Urum -6853 uur Ura (Vanuatu) -6854 uuu U -6855 uve West Uvean -6856 uvh Uri -6857 uvl Lote -6858 uwa Kuku-Uwanh -6859 uya Doko-Uyanga -6860 uz Uzbek -6861 uzn Northern Uzbek -6862 uzs Southern Uzbek -6863 vaa Vaagri Booli -6864 vae Vale -6865 vaf Vafsi -6866 vag Vagla -6867 vah Varhadi-Nagpuri -6868 vai Vai -6869 vaj Sekele -6870 val Vehes -6871 vam Vanimo -6872 van Valman -6873 vao Vao -6874 vap Vaiphei -6875 var Huarijio -6876 vas Vasavi -6877 vau Vanuma -6878 vav Varli -6879 vay Wayu -6880 vbb Southeast Babar -6881 vbk Southwestern Bontok -6882 vec Venetian -6883 ved Veddah -6884 vel Veluws -6885 vem Vemgo-Mabas -6886 ve Venda -6887 veo Ventureño -6888 vep Veps -6889 ver Mom Jango -6890 vgr Vaghri -6891 vgt Vlaamse Gebarentaal -6892 vic Virgin Islands Creole English -6893 vid Vidunda -6894 vi Vietnamese -6895 vif Vili -6896 vig Viemo -6897 vil Vilela -6898 vin Vinza -6899 vis Vishavan -6900 vit Viti -6901 viv Iduna -6902 vjk Bajjika -6903 vka Kariyarra -6904 vkj Kujarge -6905 vkk Kaur -6906 vkl Kulisusu -6907 vkm Kamakan -6908 vkn Koro Nulu -6909 vko Kodeoha -6910 vkp Korlai Creole Portuguese -6911 vkt Tenggarong Kutai Malay -6912 vku Kurrama -6913 vkz Koro Zuba -6914 vlp Valpei -6915 vls Vlaams -6916 vma Martuyhunira -6917 vmb Barbaram -6918 vmc Juxtlahuaca Mixtec -6919 vmd Mudu Koraga -6920 vme East Masela -6921 vmf Mainfränkisch -6922 vmg Lungalunga -6923 vmh Maraghei -6924 vmi Miwa -6925 vmj Ixtayutla Mixtec -6926 vmk Makhuwa-Shirima -6927 vml Malgana -6928 vmm Mitlatongo Mixtec -6929 vmp Soyaltepec Mazatec -6930 vmq Soyaltepec Mixtec -6931 vmr Marenje -6932 vms Moksela -6933 vmu Muluridyi -6934 vmv Valley Maidu -6935 vmw Makhuwa -6936 vmx Tamazola Mixtec -6937 vmy Ayautla Mazatec -6938 vmz Mazatlán Mazatec -6939 vnk Vano -6940 vnm Vinmavis -6941 vnp Vunapu -6942 vo Volapük -6943 vor Voro -6944 vot Votic -6945 vra Vera'a -6946 vro Võro -6947 vrs Varisi -6948 vrt Burmbar -6949 vsi Moldova Sign Language -6950 vsl Venezuelan Sign Language -6951 vsn Vedic Sanskrit -6952 vsv Valencian Sign Language -6953 vto Vitou -6954 vum Vumbu -6955 vun Vunjo -6956 vut Vute -6957 vwa Awa (China) -6958 waa Walla Walla -6959 wab Wab -6960 wac Wasco-Wishram -6961 wad Wamesa -6962 wae Walser -6963 waf Wakoná -6964 wag Wa'ema -6965 wah Watubela -6966 wai Wares -6967 waj Waffa -6968 wal Wolaytta -6969 wam Wampanoag -6970 wan Wan -6971 wao Wappo -6972 wap Wapishana -6973 waq Wagiman -6974 war Waray (Philippines) -6975 was Washo -6976 wat Kaninuwa -6977 wau Waurá -6978 wav Waka -6979 waw Waiwai -6980 wax Watam -6981 way Wayana -6982 waz Wampur -6983 wba Warao -6984 wbb Wabo -6985 wbe Waritai -6986 wbf Wara -6987 wbh Wanda -6988 wbi Vwanji -6989 wbj Alagwa -6990 wbk Waigali -6991 wbl Wakhi -6992 wbm Wa -6993 wbp Warlpiri -6994 wbq Waddar -6995 wbr Wagdi -6996 wbs West Bengal Sign Language -6997 wbt Warnman -6998 wbv Wajarri -6999 wbw Woi -7000 wca Yanomámi -7001 wci Waci Gbe -7002 wdd Wandji -7003 wdg Wadaginam -7004 wdj Wadjiginy -7005 wdk Wadikali -7006 wdt Wendat -7007 wdu Wadjigu -7008 wdy Wadjabangayi -7009 wea Wewaw -7010 wec Wè Western -7011 wed Wedau -7012 weg Wergaia -7013 weh Weh -7014 wei Kiunum -7015 wem Weme Gbe -7016 weo Wemale -7017 wep Westphalien -7018 wer Weri -7019 wes Cameroon Pidgin -7020 wet Perai -7021 weu Rawngtu Chin -7022 wew Wejewa -7023 wfg Yafi -7024 wga Wagaya -7025 wgb Wagawaga -7026 wgg Wangkangurru -7027 wgi Wahgi -7028 wgo Waigeo -7029 wgu Wirangu -7030 wgy Warrgamay -7031 wha Sou Upaa -7032 whg North Wahgi -7033 whk Wahau Kenyah -7034 whu Wahau Kayan -7035 wib Southern Toussian -7036 wic Wichita -7037 wie Wik-Epa -7038 wif Wik-Keyangan -7039 wig Wik Ngathan -7040 wih Wik-Me'anha -7041 wii Minidien -7042 wij Wik-Iiyanh -7043 wik Wikalkan -7044 wil Wilawila -7045 wim Wik-Mungkan -7046 win Ho-Chunk -7047 wir Wiraféd -7048 wiu Wiru -7049 wiv Vitu -7050 wiy Wiyot -7051 wja Waja -7052 wji Warji -7053 wka Kw'adza -7054 wkb Kumbaran -7055 wkd Wakde -7056 wkl Kalanadi -7057 wkr Keerray-Woorroong -7058 wku Kunduvadi -7059 wkw Wakawaka -7060 wky Wangkayutyuru -7061 wla Walio -7062 wlc Mwali Comorian -7063 wle Wolane -7064 wlg Kunbarlang -7065 wlh Welaun -7066 wli Waioli -7067 wlk Wailaki -7068 wll Wali (Sudan) -7069 wlm Middle Welsh -7070 wa Walloon -7071 wlo Wolio -7072 wlr Wailapa -7073 wls Wallisian -7074 wlu Wuliwuli -7075 wlv Wichí Lhamtés Vejoz -7076 wlw Walak -7077 wlx Wali (Ghana) -7078 wly Waling -7079 wma Mawa (Nigeria) -7080 wmb Wambaya -7081 wmc Wamas -7082 wmd Mamaindé -7083 wme Wambule -7084 wmg Western Minyag -7085 wmh Waima'a -7086 wmi Wamin -7087 wmm Maiwa (Indonesia) -7088 wmn Waamwang -7089 wmo Wom (Papua New Guinea) -7090 wms Wambon -7091 wmt Walmajarri -7092 wmw Mwani -7093 wmx Womo -7094 wnb Mokati -7095 wnc Wantoat -7096 wnd Wandarang -7097 wne Waneci -7098 wng Wanggom -7099 wni Ndzwani Comorian -7100 wnk Wanukaka -7101 wnm Wanggamala -7102 wnn Wunumara -7103 wno Wano -7104 wnp Wanap -7105 wnu Usan -7106 wnw Wintu -7107 wny Wanyi -7108 woa Kuwema -7109 wob Wè Northern -7110 woc Wogeo -7111 wod Wolani -7112 woe Woleaian -7113 wof Gambian Wolof -7114 wog Wogamusin -7115 woi Kamang -7116 wok Longto -7117 wo Wolof -7118 wom Wom (Nigeria) -7119 won Wongo -7120 woo Manombai -7121 wor Woria -7122 wos Hanga Hundi -7123 wow Wawonii -7124 woy Weyto -7125 wpc Maco -7126 wrb Waluwarra -7127 wrg Warungu -7128 wrh Wiradjuri -7129 wri Wariyangga -7130 wrk Garrwa -7131 wrl Warlmanpa -7132 wrm Warumungu -7133 wrn Warnang -7134 wro Worrorra -7135 wrp Waropen -7136 wrr Wardaman -7137 wrs Waris -7138 wru Waru -7139 wrv Waruna -7140 wrw Gugu Warra -7141 wrx Wae Rana -7142 wry Merwari -7143 wrz Waray (Australia) -7144 wsa Warembori -7145 wsg Adilabad Gondi -7146 wsi Wusi -7147 wsk Waskia -7148 wsr Owenia -7149 wss Wasa -7150 wsu Wasu -7151 wsv Wotapuri-Katarqalai -7152 wtb Matambwe -7153 wtf Watiwa -7154 wth Wathawurrung -7155 wti Berta -7156 wtk Watakataui -7157 wtm Mewati -7158 wtw Wotu -7159 wua Wikngenchera -7160 wub Wunambal -7161 wud Wudu -7162 wuh Wutunhua -7163 wul Silimo -7164 wum Wumbvu -7165 wun Bungu -7166 wur Wurrugu -7167 wut Wutung -7168 wuu Wu Chinese -7169 wuv Wuvulu-Aua -7170 wux Wulna -7171 wuy Wauyai -7172 wwa Waama -7173 wwb Wakabunga -7174 wwo Wetamut -7175 wwr Warrwa -7176 www Wawa -7177 wxa Waxianghua -7178 wxw Wardandi -7179 wyb Wangaaybuwan-Ngiyambaa -7180 wyi Woiwurrung -7181 wym Wymysorys -7182 wyn Wyandot -7183 wyr Wayoró -7184 wyy Western Fijian -7185 xaa Andalusian Arabic -7186 xab Sambe -7187 xac Kachari -7188 xad Adai -7189 xae Aequian -7190 xag Aghwan -7191 xai Kaimbé -7192 xaj Ararandewára -7193 xak Máku -7194 xal Kalmyk -7195 xam Ç€Xam -7196 xan Xamtanga -7197 xao Khao -7198 xap Apalachee -7199 xaq Aquitanian -7200 xar Karami -7201 xas Kamas -7202 xat Katawixi -7203 xau Kauwera -7204 xav Xavánte -7205 xaw Kawaiisu -7206 xay Kayan Mahakam -7207 xbb Lower Burdekin -7208 xbc Bactrian -7209 xbd Bindal -7210 xbe Bigambal -7211 xbg Bunganditj -7212 xbi Kombio -7213 xbj Birrpayi -7214 xbm Middle Breton -7215 xbn Kenaboi -7216 xbo Bolgarian -7217 xbp Bibbulman -7218 xbr Kambera -7219 xbw Kambiwá -7220 xby Batjala -7221 xcb Cumbric -7222 xcc Camunic -7223 xce Celtiberian -7224 xcg Cisalpine Gaulish -7225 xch Chemakum -7226 xcl Classical Armenian -7227 xcm Comecrudo -7228 xcn Cotoname -7229 xco Chorasmian -7230 xcr Carian -7231 xct Classical Tibetan -7232 xcu Curonian -7233 xcv Chuvantsy -7234 xcw Coahuilteco -7235 xcy Cayuse -7236 xda Darkinyung -7237 xdc Dacian -7238 xdk Dharuk -7239 xdm Edomite -7240 xdo Kwandu -7241 xdq Kaitag -7242 xdy Malayic Dayak -7243 xeb Eblan -7244 xed Hdi -7245 xeg ǁXegwi -7246 xel Kelo -7247 xem Kembayan -7248 xep Epi-Olmec -7249 xer Xerénte -7250 xes Kesawai -7251 xet Xetá -7252 xeu Keoru-Ahia -7253 xfa Faliscan -7254 xga Galatian -7255 xgb Gbin -7256 xgd Gudang -7257 xgf Gabrielino-Fernandeño -7258 xgg Goreng -7259 xgi Garingbal -7260 xgl Galindan -7261 xgm Dharumbal -7262 xgr Garza -7263 xgu Unggumi -7264 xgw Guwa -7265 xha Harami -7266 xhc Hunnic -7267 xhd Hadrami -7268 xhe Khetrani -7269 xhm Middle Khmer (1400 to 1850 CE) -7270 xh Xhosa -7271 xhr Hernican -7272 xht Hattic -7273 xhu Hurrian -7274 xhv Khua -7275 xib Iberian -7276 xii Xiri -7277 xil Illyrian -7278 xin Xinca -7279 xir Xiriâna -7280 xis Kisan -7281 xiv Indus Valley Language -7282 xiy Xipaya -7283 xjb Minjungbal -7284 xjt Jaitmatang -7285 xka Kalkoti -7286 xkb Northern Nago -7287 xkc Kho'ini -7288 xkd Mendalam Kayan -7289 xke Kereho -7290 xkf Khengkha -7291 xkg Kagoro -7292 xki Kenyan Sign Language -7293 xkj Kajali -7294 xkk Kachok -7295 xkl Mainstream Kenyah -7296 xkn Kayan River Kayan -7297 xko Kiorr -7298 xkp Kabatei -7299 xkq Koroni -7300 xkr Xakriabá -7301 xks Kumbewaha -7302 xkt Kantosi -7303 xku Kaamba -7304 xkv Kgalagadi -7305 xkw Kembra -7306 xkx Karore -7307 xky Uma' Lasan -7308 xkz Kurtokha -7309 xla Kamula -7310 xlb Loup B -7311 xlc Lycian -7312 xld Lydian -7313 xle Lemnian -7314 xlg Ligurian (Ancient) -7315 xli Liburnian -7316 xln Alanic -7317 xlo Loup A -7318 xlp Lepontic -7319 xls Lusitanian -7320 xlu Cuneiform Luwian -7321 xly Elymian -7322 xma Mushungulu -7323 xmb Mbonga -7324 xmc Makhuwa-Marrevone -7325 xmd Mbudum -7326 xme Median -7327 xmf Mingrelian -7328 xmg Mengaka -7329 xmh Kugu-Muminh -7330 xmj Majera -7331 xmk Ancient Macedonian -7332 xml Malaysian Sign Language -7333 xmm Manado Malay -7334 xmn Manichaean Middle Persian -7335 xmo Morerebi -7336 xmp Kuku-Mu'inh -7337 xmq Kuku-Mangk -7338 xmr Meroitic -7339 xms Moroccan Sign Language -7340 xmt Matbat -7341 xmu Kamu -7342 xmv Antankarana Malagasy -7343 xmw Tsimihety Malagasy -7344 xmx Salawati -7345 xmy Mayaguduna -7346 xmz Mori Bawah -7347 xna Ancient North Arabian -7348 xnb Kanakanabu -7349 xng Middle Mongolian -7350 xnh Kuanhua -7351 xni Ngarigu -7352 xnj Ngoni (Tanzania) -7353 xnk Nganakarti -7354 xnm Ngumbarl -7355 xnn Northern Kankanay -7356 xno Anglo-Norman -7357 xnq Ngoni (Mozambique) -7358 xnr Kangri -7359 xns Kanashi -7360 xnt Narragansett -7361 xnu Nukunul -7362 xny Nyiyaparli -7363 xnz Kenzi -7364 xoc O'chi'chi' -7365 xod Kokoda -7366 xog Soga -7367 xoi Kominimung -7368 xok Xokleng -7369 xom Komo (Sudan) -7370 xon Konkomba -7371 xoo Xukurú -7372 xop Kopar -7373 xor Korubo -7374 xow Kowaki -7375 xpa Pirriya -7376 xpb Northeastern Tasmanian -7377 xpc Pecheneg -7378 xpd Oyster Bay Tasmanian -7379 xpe Liberia Kpelle -7380 xpf Southeast Tasmanian -7381 xpg Phrygian -7382 xph North Midlands Tasmanian -7383 xpi Pictish -7384 xpj Mpalitjanh -7385 xpk Kulina Pano -7386 xpl Port Sorell Tasmanian -7387 xpm Pumpokol -7388 xpn Kapinawá -7389 xpo Pochutec -7390 xpp Puyo-Paekche -7391 xpq Mohegan-Pequot -7392 xpr Parthian -7393 xps Pisidian -7394 xpt Punthamara -7395 xpu Punic -7396 xpv Northern Tasmanian -7397 xpw Northwestern Tasmanian -7398 xpx Southwestern Tasmanian -7399 xpy Puyo -7400 xpz Bruny Island Tasmanian -7401 xqa Karakhanid -7402 xqt Qatabanian -7403 xra Krahô -7404 xrb Eastern Karaboro -7405 xrd Gundungurra -7406 xre Kreye -7407 xrg Minang -7408 xri Krikati-Timbira -7409 xrm Armazic -7410 xrn Arin -7411 xrr Raetic -7412 xrt Aranama-Tamique -7413 xru Marriammu -7414 xrw Karawa -7415 xsa Sabaean -7416 xsb Sambal -7417 xsc Scythian -7418 xsd Sidetic -7419 xse Sempan -7420 xsh Shamang -7421 xsi Sio -7422 xsj Subi -7423 xsl South Slavey -7424 xsm Kasem -7425 xsn Sanga (Nigeria) -7426 xso Solano -7427 xsp Silopi -7428 xsq Makhuwa-Saka -7429 xsr Sherpa -7430 xsu Sanumá -7431 xsv Sudovian -7432 xsy Saisiyat -7433 xta Alcozauca Mixtec -7434 xtb Chazumba Mixtec -7435 xtc Katcha-Kadugli-Miri -7436 xtd Diuxi-Tilantongo Mixtec -7437 xte Ketengban -7438 xtg Transalpine Gaulish -7439 xth Yitha Yitha -7440 xti Sinicahua Mixtec -7441 xtj San Juan Teita Mixtec -7442 xtl Tijaltepec Mixtec -7443 xtm Magdalena Peñasco Mixtec -7444 xtn Northern Tlaxiaco Mixtec -7445 xto Tokharian A -7446 xtp San Miguel Piedras Mixtec -7447 xtq Tumshuqese -7448 xtr Early Tripuri -7449 xts Sindihui Mixtec -7450 xtt Tacahua Mixtec -7451 xtu Cuyamecalco Mixtec -7452 xtv Thawa -7453 xtw Tawandê -7454 xty Yoloxochitl Mixtec -7455 xua Alu Kurumba -7456 xub Betta Kurumba -7457 xud Umiida -7458 xug Kunigami -7459 xuj Jennu Kurumba -7460 xul Ngunawal -7461 xum Umbrian -7462 xun Unggaranggu -7463 xuo Kuo -7464 xup Upper Umpqua -7465 xur Urartian -7466 xut Kuthant -7467 xuu Kxoe -7468 xve Venetic -7469 xvi Kamviri -7470 xvn Vandalic -7471 xvo Volscian -7472 xvs Vestinian -7473 xwa Kwaza -7474 xwc Woccon -7475 xwd Wadi Wadi -7476 xwe Xwela Gbe -7477 xwg Kwegu -7478 xwj Wajuk -7479 xwk Wangkumara -7480 xwl Western Xwla Gbe -7481 xwo Written Oirat -7482 xwr Kwerba Mamberamo -7483 xwt Wotjobaluk -7484 xww Wemba Wemba -7485 xxb Boro (Ghana) -7486 xxk Ke'o -7487 xxm Minkin -7488 xxr Koropó -7489 xxt Tambora -7490 xya Yaygir -7491 xyb Yandjibara -7492 xyj Mayi-Yapi -7493 xyk Mayi-Kulan -7494 xyl Yalakalore -7495 xyt Mayi-Thakurti -7496 xyy Yorta Yorta -7497 xzh Zhang-Zhung -7498 xzm Zemgalian -7499 xzp Ancient Zapotec -7500 yaa Yaminahua -7501 yab Yuhup -7502 yac Pass Valley Yali -7503 yad Yagua -7504 yae Pumé -7505 yaf Yaka (Democratic Republic of Congo) -7506 yag Yámana -7507 yah Yazgulyam -7508 yai Yagnobi -7509 yaj Banda-Yangere -7510 yak Yakama -7511 yal Yalunka -7512 yam Yamba -7513 yan Mayangna -7514 yao Yao -7515 yap Yapese -7516 yaq Yaqui -7517 yar Yabarana -7518 yas Nugunu (Cameroon) -7519 yat Yambeta -7520 yau Yuwana -7521 yav Yangben -7522 yaw Yawalapití -7523 yax Yauma -7524 yay Agwagwune -7525 yaz Lokaa -7526 yba Yala -7527 ybb Yemba -7528 ybe West Yugur -7529 ybh Yakha -7530 ybi Yamphu -7531 ybj Hasha -7532 ybk Bokha -7533 ybl Yukuben -7534 ybm Yaben -7535 ybn Yabaâna -7536 ybo Yabong -7537 ybx Yawiyo -7538 yby Yaweyuha -7539 ych Chesu -7540 ycl Lolopo -7541 ycn Yucuna -7542 ycp Chepya -7543 ycr Yilan Creole -7544 yda Yanda -7545 ydd Eastern Yiddish -7546 yde Yangum Dey -7547 ydg Yidgha -7548 ydk Yoidik -7549 yea Ravula -7550 yec Yeniche -7551 yee Yimas -7552 yei Yeni -7553 yej Yevanic -7554 yel Yela -7555 yer Tarok -7556 yes Nyankpa -7557 yet Yetfa -7558 yeu Yerukula -7559 yev Yapunda -7560 yey Yeyi -7561 yga Malyangapa -7562 ygi Yiningayi -7563 ygl Yangum Gel -7564 ygm Yagomi -7565 ygp Gepo -7566 ygr Yagaria -7567 ygs YolÅ‹u Sign Language -7568 ygu Yugul -7569 ygw Yagwoia -7570 yha Baha Buyang -7571 yhd Judeo-Iraqi Arabic -7572 yhl Hlepho Phowa -7573 yhs Yan-nhaÅ‹u Sign Language -7574 yia Yinggarda -7575 yi Yiddish -7576 yif Ache -7577 yig Wusa Nasu -7578 yih Western Yiddish -7579 yii Yidiny -7580 yij Yindjibarndi -7581 yik Dongshanba Lalo -7582 yil Yindjilandji -7583 yim Yimchungru Naga -7584 yin Riang Lai -7585 yip Pholo -7586 yiq Miqie -7587 yir North Awyu -7588 yis Yis -7589 yit Eastern Lalu -7590 yiu Awu -7591 yiv Northern Nisu -7592 yix Axi Yi -7593 yiz Azhe -7594 yka Yakan -7595 ykg Northern Yukaghir -7596 ykh Khamnigan Mongol -7597 yki Yoke -7598 ykk Yakaikeke -7599 ykl Khlula -7600 ykm Kap -7601 ykn Kua-nsi -7602 yko Yasa -7603 ykr Yekora -7604 ykt Kathu -7605 yku Kuamasi -7606 yky Yakoma -7607 yla Yaul -7608 ylb Yaleba -7609 yle Yele -7610 ylg Yelogu -7611 yli Angguruk Yali -7612 yll Yil -7613 ylm Limi -7614 yln Langnian Buyang -7615 ylo Naluo Yi -7616 ylr Yalarnnga -7617 ylu Aribwaung -7618 yly Nyâlayu -7619 ymb Yambes -7620 ymc Southern Muji -7621 ymd Muda -7622 yme Yameo -7623 ymg Yamongeri -7624 ymh Mili -7625 ymi Moji -7626 ymk Makwe -7627 yml Iamalele -7628 ymm Maay -7629 ymn Yamna -7630 ymo Yangum Mon -7631 ymp Yamap -7632 ymq Qila Muji -7633 ymr Malasar -7634 yms Mysian -7635 ymx Northern Muji -7636 ymz Muzi -7637 yna Aluo -7638 ynd Yandruwandha -7639 yne Lang'e -7640 yng Yango -7641 ynk Naukan Yupik -7642 ynl Yangulam -7643 ynn Yana -7644 yno Yong -7645 ynq Yendang -7646 yns Yansi -7647 ynu Yahuna -7648 yob Yoba -7649 yog Yogad -7650 yoi Yonaguni -7651 yok Yokuts -7652 yol Yola -7653 yom Yombe -7654 yon Yongkom -7655 yo Yoruba -7656 yot Yotti -7657 yox Yoron -7658 yoy Yoy -7659 ypa Phala -7660 ypb Labo Phowa -7661 ypg Phola -7662 yph Phupha -7663 ypm Phuma -7664 ypn Ani Phowa -7665 ypo Alo Phola -7666 ypp Phupa -7667 ypz Phuza -7668 yra Yerakai -7669 yrb Yareba -7670 yre Yaouré -7671 yrk Nenets -7672 yrl Nhengatu -7673 yrm Yirrk-Mel -7674 yrn Yerong -7675 yro Yaroamë -7676 yrs Yarsun -7677 yrw Yarawata -7678 yry Yarluyandi -7679 ysc Yassic -7680 ysd Samatao -7681 ysg Sonaga -7682 ysl Yugoslavian Sign Language -7683 ysm Myanmar Sign Language -7684 ysn Sani -7685 yso Nisi (China) -7686 ysp Southern Lolopo -7687 ysr Sirenik Yupik -7688 yss Yessan-Mayo -7689 ysy Sanie -7690 yta Talu -7691 ytl Tanglang -7692 ytp Thopho -7693 ytw Yout Wam -7694 yty Yatay -7695 yua Yucateco -7696 yub Yugambal -7697 yuc Yuchi -7698 yud Judeo-Tripolitanian Arabic -7699 yue Yue Chinese -7700 yuf Havasupai-Walapai-Yavapai -7701 yug Yug -7702 yui Yurutí -7703 yuj Karkar-Yuri -7704 yuk Yuki -7705 yul Yulu -7706 yum Quechan -7707 yun Bena (Nigeria) -7708 yup Yukpa -7709 yuq Yuqui -7710 yur Yurok -7711 yut Yopno -7712 yuw Yau (Morobe Province) -7713 yux Southern Yukaghir -7714 yuy East Yugur -7715 yuz Yuracare -7716 yva Yawa -7717 yvt Yavitero -7718 ywa Kalou -7719 ywg Yinhawangka -7720 ywl Western Lalu -7721 ywn Yawanawa -7722 ywq Wuding-Luquan Yi -7723 ywr Yawuru -7724 ywt Xishanba Lalo -7725 ywu Wumeng Nasu -7726 yww Yawarawarga -7727 yxa Mayawali -7728 yxg Yagara -7729 yxl Yardliyawarra -7730 yxm Yinwum -7731 yxu Yuyu -7732 yxy Yabula Yabula -7733 yyr Yir Yoront -7734 yyu Yau (Sandaun Province) -7735 yyz Ayizi -7736 yzg E'ma Buyang -7737 yzk Zokhuo -7738 zaa Sierra de Juárez Zapotec -7739 zab Western Tlacolula Valley Zapotec -7740 zac Ocotlán Zapotec -7741 zad Cajonos Zapotec -7742 zae Yareni Zapotec -7743 zaf Ayoquesco Zapotec -7744 zag Zaghawa -7745 zah Zangwal -7746 zai Isthmus Zapotec -7747 zaj Zaramo -7748 zak Zanaki -7749 zal Zauzou -7750 zam Miahuatlán Zapotec -7751 zao Ozolotepec Zapotec -7752 zap Zapotec -7753 zaq Aloápam Zapotec -7754 zar Rincón Zapotec -7755 zas Santo Domingo Albarradas Zapotec -7756 zat Tabaa Zapotec -7757 zau Zangskari -7758 zav Yatzachi Zapotec -7759 zaw Mitla Zapotec -7760 zax Xadani Zapotec -7761 zay Zayse-Zergulla -7762 zaz Zari -7763 zba Balaibalan -7764 zbc Central Berawan -7765 zbe East Berawan -7766 zbl Blissymbols -7767 zbt Batui -7768 zbu Bu (Bauchi State) -7769 zbw West Berawan -7770 zca Coatecas Altas Zapotec -7771 zcd Las Delicias Zapotec -7772 zch Central Hongshuihe Zhuang -7773 zdj Ngazidja Comorian -7774 zea Zeeuws -7775 zeg Zenag -7776 zeh Eastern Hongshuihe Zhuang -7777 zem Zeem -7778 zen Zenaga -7779 zga Kinga -7780 zgb Guibei Zhuang -7781 zgh Standard Moroccan Tamazight -7782 zgm Minz Zhuang -7783 zgn Guibian Zhuang -7784 zgr Magori -7785 za Zhuang -7786 zhb Zhaba -7787 zhd Dai Zhuang -7788 zhi Zhire -7789 zhn Nong Zhuang -7790 zh Chinese -7791 zhw Zhoa -7792 zia Zia -7793 zib Zimbabwe Sign Language -7794 zik Zimakani -7795 zil Zialo -7796 zim Mesme -7797 zin Zinza -7798 ziw Zigula -7799 ziz Zizilivakan -7800 zka Kaimbulawa -7801 zkd Kadu -7802 zkg Koguryo -7803 zkh Khorezmian -7804 zkk Karankawa -7805 zkn Kanan -7806 zko Kott -7807 zkp São Paulo Kaingáng -7808 zkr Zakhring -7809 zkt Kitan -7810 zku Kaurna -7811 zkv Krevinian -7812 zkz Khazar -7813 zla Zula -7814 zlj Liujiang Zhuang -7815 zlm Malay (individual language) -7816 zln Lianshan Zhuang -7817 zlq Liuqian Zhuang -7818 zlu Zul -7819 zma Manda (Australia) -7820 zmb Zimba -7821 zmc Margany -7822 zmd Maridan -7823 zme Mangerr -7824 zmf Mfinu -7825 zmg Marti Ke -7826 zmh Makolkol -7827 zmi Negeri Sembilan Malay -7828 zmj Maridjabin -7829 zmk Mandandanyi -7830 zml Matngala -7831 zmm Marimanindji -7832 zmn Mbangwe -7833 zmo Molo -7834 zmp Mpuono -7835 zmq Mituku -7836 zmr Maranunggu -7837 zms Mbesa -7838 zmt Maringarr -7839 zmu Muruwari -7840 zmv Mbariman-Gudhinma -7841 zmw Mbo (Democratic Republic of Congo) -7842 zmx Bomitaba -7843 zmy Mariyedi -7844 zmz Mbandja -7845 zna Zan Gula -7846 zne Zande (individual language) -7847 zng Mang -7848 znk Manangkari -7849 zns Mangas -7850 zoc Copainalá Zoque -7851 zoh Chimalapa Zoque -7852 zom Zou -7853 zoo Asunción Mixtepec Zapotec -7854 zoq Tabasco Zoque -7855 zor Rayón Zoque -7856 zos Francisco León Zoque -7857 zpa Lachiguiri Zapotec -7858 zpb Yautepec Zapotec -7859 zpc Choapan Zapotec -7860 zpd Southeastern Ixtlán Zapotec -7861 zpe Petapa Zapotec -7862 zpf San Pedro Quiatoni Zapotec -7863 zpg Guevea De Humboldt Zapotec -7864 zph Totomachapan Zapotec -7865 zpi Santa María Quiegolani Zapotec -7866 zpj Quiavicuzas Zapotec -7867 zpk Tlacolulita Zapotec -7868 zpl Lachixío Zapotec -7869 zpm Mixtepec Zapotec -7870 zpn Santa Inés Yatzechi Zapotec -7871 zpo Amatlán Zapotec -7872 zpp El Alto Zapotec -7873 zpq Zoogocho Zapotec -7874 zpr Santiago Xanica Zapotec -7875 zps Coatlán Zapotec -7876 zpt San Vicente Coatlán Zapotec -7877 zpu Yalálag Zapotec -7878 zpv Chichicapan Zapotec -7879 zpw Zaniza Zapotec -7880 zpx San Baltazar Loxicha Zapotec -7881 zpy Mazaltepec Zapotec -7882 zpz Texmelucan Zapotec -7883 zqe Qiubei Zhuang -7884 zra Kara (Korea) -7885 zrg Mirgan -7886 zrn Zerenkel -7887 zro Záparo -7888 zrp Zarphatic -7889 zrs Mairasi -7890 zsa Sarasira -7891 zsk Kaskean -7892 zsl Zambian Sign Language -7893 zsm Standard Malay -7894 zsr Southern Rincon Zapotec -7895 zsu Sukurum -7896 zte Elotepec Zapotec -7897 ztg Xanaguía Zapotec -7898 ztl Lapaguía-Guivini Zapotec -7899 ztm San Agustín Mixtepec Zapotec -7900 ztn Santa Catarina Albarradas Zapotec -7901 ztp Loxicha Zapotec -7902 ztq Quioquitani-Quierí Zapotec -7903 zts Tilquiapan Zapotec -7904 ztt Tejalapan Zapotec -7905 ztu Güilá Zapotec -7906 ztx Zaachila Zapotec -7907 zty Yatee Zapotec -7908 zuh Tokano -7909 zu Zulu -7910 zum Kumzari -7911 zun Zuni -7912 zuy Zumaya -7913 zwa Zay -7914 zxx No linguistic content -7915 zyb Yongbei Zhuang -7916 zyg Yang Zhuang -7917 zyj Youjiang Zhuang -7918 zyn Yongnan Zhuang -7919 zyp Zyphe Chin -7920 zza Zaza -7921 zzj Zuojiang Zhuang -7922 zzz Other -\. - - --- --- Data for Name: lead_from; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.lead_from (id, count, title) FROM stdin; -3 0 newsletter -6 0 fair -1 2 platform -4 1 search -5 4 Friends -2 4 media -7 3 Flyer -\. - - --- --- Data for Name: location; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.location (id, type, info) FROM stdin; -1 district \N -2 district \N -3 district \N -4 district \N -5 district \N -6 district \N -7 district \N -8 district \N -9 district \N -10 district \N -11 district \N -12 district \N -13 district \N -14 district \N -15 district \N -16 district \N -17 district \N -18 district \N -19 district \N -20 district \N -21 district \N -22 district \N -23 district \N -24 district \N -25 district \N -26 district \N -27 district \N -28 district \N -29 district \N -30 district \N -31 district \N -32 district \N -33 district \N -34 district \N -35 district \N -36 district \N -37 district \N -38 district \N -39 district \N -40 district \N -41 district \N -42 district \N -43 district \N -44 district \N -45 district \N -46 district \N -47 district \N -48 district \N -49 district \N -50 district \N -51 district \N -52 district \N -53 district \N -54 district \N -55 district \N -56 district \N -57 district \N -58 district \N -59 district \N -60 district \N -61 district \N -62 district \N -63 district \N -64 district \N -65 district \N -66 district \N -67 district \N -68 district \N -69 district \N -70 district \N -71 district \N -72 district \N -73 district \N -74 district \N -75 district \N -76 district \N -77 district \N -78 district \N -79 district \N -80 district \N -81 district \N -82 district \N -83 district \N -84 district \N -85 district \N -86 district \N -87 district \N -88 district \N -89 district \N -90 district \N -91 district \N -92 district \N -93 district \N -94 district \N -95 district \N -96 district \N -97 district \N -98 district \N -99 district \N -100 district \N -101 district \N -102 district \N -103 district \N -104 district \N -105 district \N -106 district \N -107 district \N -108 district \N -109 district \N -110 district \N -111 district \N -112 district \N -113 district \N -114 district \N -115 district \N -116 district \N -117 district \N -118 district \N -119 district \N -120 district \N -121 district \N -122 district \N -123 district \N -124 district \N -125 district \N -126 district \N -127 district \N -128 district \N -129 district \N -130 district \N -131 district \N -132 district \N -133 district \N -134 district \N -135 district \N -136 district \N -137 district \N -138 district \N -139 district \N -140 district \N -141 district \N -142 district \N -143 district \N -144 district \N -145 district \N -146 district \N -147 district \N -148 district \N -149 district \N -150 district \N -151 district \N -152 district \N -153 district \N -154 district \N -155 district \N -156 district \N -157 district \N -158 district \N -159 district \N -160 district \N -161 district \N -162 district \N -163 district \N -164 district \N -165 district \N -166 district \N -167 district \N -168 district \N -169 district \N -170 district \N -171 district \N -172 district \N -173 district \N -174 district \N -175 district \N -176 district \N -177 district \N -178 district \N -179 district \N -180 district \N -181 district \N -182 district \N -183 district \N -184 district \N -185 district \N -186 district \N -187 district \N -188 district \N -189 district \N -190 district \N -191 district \N -192 district \N -193 district \N -194 district \N -195 district \N -196 district \N -197 district \N -198 district \N -199 district \N -200 district \N -201 district \N -202 district \N -203 district \N -204 district \N -205 district \N -206 district \N -207 district \N -208 district \N -209 district \N -210 district \N -211 district \N -212 district \N -213 district \N -214 district \N -215 district \N -216 district \N -217 district \N -218 district \N -219 district \N -220 district \N -221 district \N -222 district \N -223 district \N -224 district \N -225 district \N -226 district \N -227 district \N -228 district \N -229 district \N -230 district \N -231 district \N -232 district \N -233 district \N -234 district \N -235 district \N -236 district \N -237 district \N -238 district \N -239 district \N -240 district \N -241 district \N -242 district \N -243 district \N -244 district \N -245 district \N -246 district \N -247 district \N -248 district \N -249 district \N -250 district \N -251 district \N -252 district \N -253 district \N -254 district \N -255 district \N -256 district \N -257 district \N -258 district \N -259 district \N -260 district \N -261 district \N -262 district \N -263 district \N -264 district \N -265 district \N -266 district \N -267 district \N -268 district \N -269 district \N -270 district \N -271 district \N -272 district \N -273 district \N -274 district \N -275 district \N -276 district \N -277 district \N -278 district \N -279 district \N -280 district \N -281 district \N -282 district \N -283 district \N -284 district \N -285 district \N -286 district \N -287 district \N -288 district \N -289 district \N -290 district \N -291 district \N -292 district \N -293 district \N -294 district \N -295 district \N -296 district \N -297 district \N -298 district \N -299 district \N -300 district \N -301 district \N -302 district \N -303 district \N -304 district \N -305 district \N -306 district \N -307 district \N -308 district \N -309 district \N -310 district \N -311 district \N -312 district \N -313 district \N -314 district \N -315 district \N -316 district \N -317 district \N -318 district \N -319 district \N -320 district \N -321 district \N -322 district \N -323 district \N -324 district \N -325 district \N -326 district \N -327 district \N -328 district \N -329 district \N -330 district \N -331 district \N -332 district \N -333 district \N -334 district \N -335 district \N -336 district \N -337 district \N -338 district \N -339 district \N -340 district \N -341 district \N -342 district \N -343 district \N -344 district \N -345 district \N -346 district \N -347 district \N -348 district \N -349 district \N -350 district \N -351 district \N -352 district \N -353 district \N -354 district \N -355 district \N -356 district \N -357 district \N -358 district \N -359 district \N -360 district \N -361 district \N -362 district \N -363 district \N -364 district \N -365 district \N -366 district \N -367 district \N -368 district \N -369 district \N -370 district \N -371 district \N -372 district \N -373 district \N -374 district \N -375 district \N -376 district \N -377 district \N -378 district \N -379 district \N -380 district \N -381 district \N -382 district \N -383 district \N -384 district \N -385 district \N -386 district \N -387 district \N -388 district \N -389 district \N -390 district \N -391 district \N -392 district \N -393 district \N -394 district \N -395 district \N -396 district \N -397 district \N -398 district \N -399 district \N -400 district \N -401 district \N -402 district \N -403 district \N -404 district \N -405 district \N -406 district \N -407 district \N -408 district \N -409 district \N -410 district \N -411 district \N -412 district \N -413 district \N -414 district \N -415 district \N -416 district \N -417 district \N -418 district \N -419 district \N -420 district \N -421 district \N -422 district \N -423 district \N -424 district \N -425 district \N -426 district \N -427 district \N -428 district \N -429 district \N -430 district \N -431 district \N -432 district \N -433 district \N -434 district \N -435 district \N -436 district \N -437 district \N -438 district \N -439 district \N -440 district \N -441 district \N -442 district \N -443 district \N -444 district \N -445 district \N -446 district \N -447 district \N -448 district \N -449 district \N -450 district \N -451 district \N -452 district \N -453 district \N -454 district \N -455 district \N -456 district \N -457 district \N -458 district \N -459 district \N -460 district \N -461 district \N -462 district \N -463 district \N -464 district \N -465 district \N -466 district \N -467 district \N -468 district \N -469 district \N -470 district \N -471 district \N -472 district \N -473 district \N -474 district \N -475 district \N -476 district \N -477 district \N -478 district \N -479 district \N -480 district \N -481 district \N -482 district \N -483 district \N -484 district \N -485 district \N -486 district \N -487 district \N -488 district \N -489 district \N -490 district \N -491 district \N -492 district \N -493 district \N -494 district \N -495 district \N -496 district \N -497 district \N -498 district \N -499 district \N -500 district \N -501 district \N -502 district \N -503 district \N -504 district \N -505 district \N -506 district \N -507 district \N -508 district \N -509 district \N -510 district \N -511 district \N -512 district \N -513 district \N -514 district \N -515 district \N -516 district \N -517 district \N -518 district \N -519 district \N -520 district \N -521 district \N -522 district \N -523 district \N -524 district \N -525 district \N -526 district \N -527 district \N -528 district \N -529 district \N -530 district \N -531 district \N -532 district \N -533 district \N -534 district \N -535 district \N -536 district \N -537 district \N -538 district \N -539 district \N -540 district \N -541 district \N -542 district \N -543 district \N -544 district \N -545 district \N -546 district \N -547 district \N -548 district \N -549 district \N -550 district \N -551 district \N -552 district \N -553 district \N -554 district \N -555 district \N -556 district \N -557 district \N -558 district \N -559 district \N -560 district \N -561 district \N -562 district \N -563 district \N -564 district \N -565 district \N -566 district \N -567 district \N -568 district \N -569 district \N -570 district \N -571 district \N -572 district \N -573 district \N -574 district \N -575 district \N -576 district \N -577 district \N -578 district \N -579 district \N -580 district \N -581 district \N -582 district \N -583 district \N -584 district \N -585 district \N -586 district \N -587 district \N -588 district \N -589 district \N -590 district \N -591 district \N -592 district \N -593 district \N -594 district \N -595 district \N -596 district \N -597 district \N -598 district \N -599 district \N -600 district \N -601 district \N -602 district \N -603 district \N -604 district \N -605 district \N -606 district \N -607 district \N -608 district \N -609 district \N -610 district \N -611 district \N -612 district \N -613 district \N -614 district \N -615 district \N -616 district \N -617 district \N -618 district \N -619 district \N -620 district \N -621 district \N -622 district \N -623 district \N -624 district \N -625 district \N -626 district \N -627 district \N -628 district \N -629 district \N -630 district \N -631 district \N -632 district \N -633 district \N -634 district \N -635 district \N -636 district \N -637 district \N -638 district \N -639 district \N -640 district \N -641 district \N -642 district \N -643 district \N -644 district \N -645 district \N -646 district \N -647 district \N -648 district \N -649 district \N -650 district \N -651 district \N -652 district \N -653 district \N -654 district \N -655 district \N -656 district \N -657 district \N -658 district \N -659 district \N -660 district \N -661 district \N -662 district \N -663 district \N -664 district \N -665 district \N -666 district \N -667 district \N -668 district \N -669 district \N -670 district \N -671 district \N -672 district \N -673 district \N -674 district \N -675 district \N -676 district \N -677 district \N -678 district \N -679 district \N -680 district \N -681 district \N -682 district \N -683 district \N -684 district \N -685 district \N -686 district \N -687 district \N -688 district \N -689 district \N -690 district \N -691 district \N -692 district \N -693 district \N -694 district \N -695 district \N -696 district \N -697 district \N -698 district \N -699 district \N -700 district \N -701 district \N -702 district \N -703 district \N -704 district \N -705 district \N -706 district \N -707 district \N -708 district \N -709 district \N -710 district \N -711 district \N -712 district \N -713 district \N -714 district \N -715 district \N -716 district \N -717 district \N -718 district \N -719 district \N -720 district \N -721 district \N -722 district \N -723 district \N -724 district \N -725 district \N -726 district \N -727 district \N -728 district \N -729 district \N -730 district \N -731 district \N -732 district \N -733 district \N -734 district \N -735 district \N -736 district \N -737 district \N -738 district \N -739 district \N -740 district \N -741 district \N -742 district \N -743 district \N -744 district \N -745 district \N -746 district \N -747 district \N -748 district \N -749 district \N -750 district \N -751 district \N -752 district \N -753 district \N -754 district \N -755 district \N -756 district \N -757 district \N -758 district \N -759 district \N -760 district \N -761 district \N -762 district \N -763 district \N -764 district \N -765 district \N -766 district \N -767 district \N -768 district \N -769 district \N -770 district \N -771 district \N -772 district \N -773 district \N -774 district \N -775 district \N -776 district \N -777 district \N -778 district \N -779 district \N -780 district \N -781 district \N -782 district \N -783 district \N -784 district \N -785 district \N -786 district \N -787 district \N -788 district \N -789 district \N -790 district \N -791 district \N -792 district \N -793 district \N -794 district \N -795 district \N -796 district \N -797 district \N -798 district \N -799 district \N -800 district \N -801 district \N -802 district \N -803 district \N -804 district \N -805 district \N -806 district \N -807 district \N -808 district \N -809 district \N -810 district \N -811 district \N -812 district \N -813 district \N -814 district \N -815 district \N -816 district \N -817 district \N -818 district \N -819 district \N -820 district \N -821 district \N -822 district \N -823 district \N -824 district \N -825 district \N -826 district \N -827 district \N -828 district \N -829 district \N -830 district \N -831 district \N -832 district \N -833 district \N -834 district \N -835 district \N -836 district \N -837 district \N -838 district \N -839 district \N -840 district \N -841 district \N -842 district \N -843 district \N -844 district \N -845 district \N -846 district \N -847 district \N -848 district \N -849 district \N -850 district \N -851 district \N -852 district \N -853 district \N -854 district \N -855 district \N -856 district \N -857 district \N -858 district \N -859 district \N -860 district \N -861 district \N -862 district \N -863 district \N -864 district \N -865 district \N -866 district \N -867 district \N -868 district \N -869 district \N -870 district \N -871 district \N -872 district \N -873 district \N -874 district \N -875 district \N -876 district \N -877 district \N -878 district \N -879 district \N -880 district \N -881 district \N -882 district \N -883 district \N -884 district \N -885 district \N -886 district \N -887 district \N -888 district \N -889 district \N -890 district \N -891 district \N -892 district \N -893 district \N -894 district \N -895 district \N -896 district \N -897 district \N -898 district \N -899 district \N -900 district \N -901 district \N -902 district \N -903 district \N -904 district \N -905 district \N -906 district \N -907 district \N -908 district \N -909 district \N -910 district \N -911 district \N -912 district \N -913 district \N -914 district \N -915 district \N -916 district \N -917 district \N -918 district \N -919 district \N -920 district \N -921 district \N -922 district \N -923 district \N -924 district \N -925 district \N -926 district \N -927 district \N -928 district \N -929 district \N -930 district \N -931 district \N -932 district \N -933 district \N -934 district \N -935 district \N -936 district \N -937 district \N -938 district \N -939 district \N -940 district \N -941 district \N -942 district \N -943 district \N -944 district \N -945 district \N -946 district \N -947 district \N -948 district \N -949 district \N -950 district \N -951 district \N -952 district \N -953 district \N -954 district \N -955 district \N -956 district \N -957 district \N -958 district \N -959 district \N -960 district \N -961 district \N -962 district \N -963 district \N -964 district \N -965 district \N -966 district \N -967 district \N -968 district \N -969 district \N -970 district \N -971 district \N -972 district \N -973 district \N -974 district \N -975 district \N -976 district \N -977 district \N -978 district \N -979 district \N -980 district \N -981 district \N -982 district \N -983 district \N -984 district \N -985 district \N -986 district \N -987 district \N -988 district \N -989 district \N -990 district \N -991 district \N -992 district \N -993 district \N -994 district \N -995 district \N -996 district \N -997 district \N -998 district \N -999 district \N -1000 district \N -1001 district \N -1002 district \N -1003 district \N -1004 district \N -1005 district \N -1006 district \N -1007 district \N -1008 district \N -1009 district \N -1010 district \N -1011 district \N -1012 district \N -1013 district \N -1014 district \N -1015 district \N -1016 district \N -1017 district \N -1018 district \N -1019 district \N -1020 district \N -1021 district \N -1022 district \N -1023 district \N -1024 district \N -1025 district \N -1026 district \N -1027 district \N -1028 district \N -1029 district \N -1030 district \N -1031 district \N -1032 district \N -1033 district \N -1034 district \N -1035 district \N -1036 district \N -1037 district \N -1038 district \N -1039 district \N -1040 district \N -1041 district \N -1042 district \N -1043 district \N -1044 district \N -1045 district \N -1046 district \N -1047 district \N -1048 district \N -1049 district \N -1050 district \N -1051 district \N -1052 district \N -1053 district \N -1054 district \N -1055 district \N -1056 district \N -1057 district \N -1058 district \N -1059 district \N -1060 district \N -1061 district \N -1062 district \N -1063 district \N -1064 district \N -1065 district \N -1066 district \N -1067 district \N -1068 district \N -1069 district \N -1070 district \N -1071 district \N -1072 district \N -1073 district \N -1074 district \N -1075 district \N -1076 district \N -1077 district \N -1078 district \N -1079 district \N -1080 district \N -1081 district \N -1082 district \N -1083 district \N -1084 district \N -1085 district \N -1086 district \N -1087 district \N -1088 district \N -1089 district \N -1090 district \N -1091 district \N -1092 district \N -1093 district \N -1094 district \N -1095 district \N -1096 district \N -1097 district \N -1098 district \N -1099 district \N -1100 district \N -1101 district \N -1102 district \N -1103 district \N -1104 district \N -1105 district \N -1106 district \N -1107 district \N -1108 district \N -1109 district \N -1110 district \N -1111 district \N -1112 district \N -1113 district \N -1114 district \N -1115 district \N -1116 district \N -1117 district \N -1118 district \N -1119 district \N -1120 district \N -1121 district \N -1122 district \N -1123 district \N -1124 district \N -1125 district \N -1126 district \N -1127 district \N -1128 district \N -1129 district \N -1130 district \N -1131 district \N -1132 district \N -1133 district \N -1134 district \N -1135 district \N -1136 district \N -1137 district \N -1138 district \N -1139 district \N -1140 district \N -1141 district \N -1142 district \N -1143 district \N -1144 district \N -1145 district \N -1146 district \N -1147 district \N -1148 district \N -1149 district \N -1150 district \N -1151 district \N -1152 district \N -1153 district \N -1154 district \N -1155 district \N -1156 district \N -1157 district \N -1158 district \N -1159 district \N -1160 district \N -1161 district \N -1162 district \N -1163 district \N -1164 district \N -1165 district \N -1166 district \N -1167 district \N -1168 district \N -1169 district \N -1170 district \N -1171 district \N -1172 district \N -1173 district \N -1174 district \N -1175 district \N -1176 district \N -1177 district \N -1178 district \N -1179 district \N -1180 district \N -1181 district \N -1182 district \N -1183 district \N -1184 district \N -1185 district \N -1186 district \N -1187 district \N -1188 district \N -1189 district \N -1190 district \N -1191 district \N -1192 district \N -1193 district \N -1194 district \N -1195 district \N -1196 district \N -1197 district \N -1198 district \N -1199 district \N -1200 district \N -1201 district \N -1202 district \N -1203 district \N -1204 district \N -1205 district \N -1206 district \N -1207 district \N -1208 district \N -1209 district \N -1210 district \N -1211 district \N -1212 district \N -1213 district \N -1214 district \N -1215 district \N -1216 district \N -1217 district \N -1218 district \N -1219 district \N -1220 district \N -1221 district \N -1222 district \N -1223 district \N -1224 district \N -1225 district \N -1226 district \N -1227 district \N -1228 district \N -1229 district \N -1230 district \N -1231 district \N -1232 district \N -1233 district \N -1234 district \N -1235 district \N -1236 district \N -1237 district \N -1238 district \N -1239 district \N -1240 district \N -1241 district \N -1242 district \N -1243 district \N -1244 district \N -1245 district \N -1246 district \N -1247 district \N -1248 district \N -1249 district \N -1250 district \N -1251 district \N -1252 district \N -1253 district \N -1254 district \N -1255 district \N -1256 district \N -1257 district \N -1258 district \N -1259 district \N -1260 district \N -1261 district \N -1262 district \N -1263 district \N -1264 district \N -1265 district \N -1266 district \N -1267 district \N -1268 district \N -1269 district \N -1270 district \N -1271 district \N -1272 district \N -1273 district \N -1274 district \N -1275 district \N -1276 district \N -1277 district \N -1278 district \N -1279 district \N -1280 district \N -1281 district \N -1282 district \N -1283 district \N -1284 district \N -1285 district \N -1286 district \N -1287 district \N -1288 district \N -1289 district \N -1290 district \N -1291 district \N -1292 district \N -1293 district \N -1294 district \N -1295 district \N -1296 district \N -1297 district \N -1298 district \N -1299 district \N -1300 district \N -1301 district \N -1302 district \N -1303 district \N -1304 district \N -1305 district \N -1306 district \N -1307 district \N -1308 district \N -1309 district \N -1310 district \N -1311 district \N -1312 district \N -1313 district \N -1314 district \N -1315 district \N -1316 district \N -1317 district \N -1318 district \N -1319 district \N -1320 district \N -1321 district \N -1322 district \N -1323 district \N -1324 district \N -1325 district \N -1326 district \N -1327 district \N -1328 district \N -1329 district \N -1330 district \N -1331 district \N -1332 district \N -1333 district \N -1334 district \N -1335 district \N -1336 district \N -1337 district \N -1338 district \N -1339 district \N -1340 district \N -1341 district \N -1342 district \N -1343 district \N -1344 district \N -1345 district \N -1346 district \N -1347 district \N -1348 district \N -1349 district \N -1350 district \N -1351 district \N -1352 district \N -1353 district \N -1354 district \N -1355 district \N -1356 district \N -1357 district \N -1358 district \N -1359 district \N -1360 district \N -1361 district \N -1362 district \N -1363 district \N -1364 district \N -1365 district \N -1366 district \N -1367 district \N -1368 district \N -1369 district \N -1370 district \N -1371 district \N -1372 district \N -1373 district \N -1374 district \N -1375 district \N -1376 district \N -1377 district \N -1378 district \N -1379 district \N -1380 district \N -1381 district \N -1382 district \N -1383 district \N -1384 district \N -1385 district \N -1386 district \N -1387 district \N -1388 district \N -1389 district \N -1390 district \N -1391 district \N -1392 district \N -1393 district \N -1394 district \N -1395 district \N -1396 district \N -1397 district \N -1398 district \N -1399 district \N -1400 district \N -1401 district \N -1402 district \N -1403 district \N -1404 district \N -1405 district \N -1406 district \N -1407 district \N -1408 district \N -1409 district \N -1410 district \N -1411 district \N -1412 district \N -1413 district \N -1414 district \N -1415 district \N -1416 district \N -1417 district \N -1418 district \N -1419 district \N -1420 district \N -1421 district \N -1422 district \N -1423 district \N -1424 district \N -1425 district \N -1426 district \N -1427 district \N -1428 district \N -1429 district \N -1430 district \N -1431 district \N -1432 district \N -1433 district \N -1434 district \N -1435 district \N -1436 district \N -1437 district \N -1438 district \N -1439 district \N -1440 district \N -1441 district \N -1442 district \N -1443 district \N -1444 district \N -1445 district \N -1446 district \N -1447 district \N -1448 district \N -1449 district \N -1450 district \N -1451 district \N -1452 district \N -1453 district \N -1454 district \N -1455 district \N -1456 district \N -1457 district \N -1458 district \N -1459 district \N -1460 district \N -1461 district \N -1462 district \N -1463 district \N -1464 district \N -1465 district \N -1466 district \N -1467 district \N -1468 district \N -1469 district \N -1470 district \N -1471 district \N -1472 district \N -1473 district \N -1474 district \N -1475 district \N -1476 district \N -1477 district \N -1478 district \N -1479 district \N -1480 district \N -1481 district \N -1482 district \N -1483 district \N -1484 district \N -1485 district \N -1486 district \N -1487 district \N -1488 district \N -1489 district \N -1490 district \N -1491 district \N -1492 district \N -1493 district \N -1494 district \N -1495 district \N -1496 district \N -1497 district \N -1498 district \N -1499 district \N -1500 district \N -1501 district \N -1502 district \N -1503 district \N -1504 district \N -1505 district \N -1506 district \N -1507 district \N -1508 district \N -1509 district \N -1510 district \N -1511 district \N -1512 district \N -1513 district \N -1514 district \N -1515 district \N -1516 district \N -1517 district \N -1518 district \N -1519 district \N -1520 district \N -1521 district \N -1522 district \N -1523 district \N -1524 district \N -1525 district \N -1526 district \N -1527 district \N -1528 district \N -1529 district \N -1530 district \N -1531 district \N -1532 district \N -1533 district \N -1534 district \N -1535 district \N -1536 district \N -1537 district \N -1538 district \N -1539 district \N -1540 district \N -1541 district \N -1542 district \N -1543 district \N -1544 district \N -1545 district \N -1546 district \N -1547 district \N -1548 district \N -1549 district \N -1550 district \N -1551 district \N -1552 district \N -1553 district \N -1554 district \N -1555 district \N -1556 district \N -1557 district \N -1558 district \N -1559 district \N -1560 district \N -1561 district \N -1562 district \N -1563 district \N -1564 district \N -1565 district \N -1566 district \N -1567 district \N -1568 district \N -1569 district \N -1570 district \N -1571 district \N -1572 district \N -1573 district \N -1574 district \N -1575 district \N -1576 district \N -1577 district \N -1578 district \N -1579 district \N -1580 district \N -1581 district \N -1582 district \N -1583 district \N -1584 district \N -1585 district \N -1586 district \N -1587 district \N -1588 district \N -1589 district \N -1590 district \N -1591 district \N -1592 district \N -1593 district \N -1594 district \N -1595 district \N -1596 district \N -1597 district \N -1598 district \N -1599 district \N -1600 district \N -1601 district \N -1602 district \N -1603 district \N -1604 district \N -1605 district \N -1606 district \N -1607 district \N -1608 district \N -1609 district \N -1610 district \N -1611 district \N -1612 district \N -1613 district \N -1614 district \N -1615 district \N -1616 district \N -1617 district \N -1618 district \N -1619 district \N -1620 district \N -1621 district \N -1622 district \N -1623 district \N -1624 district \N -1625 district \N -1626 district \N -1627 district \N -1628 district \N -1629 district \N -\. - - --- --- Data for Name: location_address; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.location_address (id, location_id, address_id) FROM stdin; -\. - - --- --- Data for Name: location_district; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.location_district (id, location_id, district_id) FROM stdin; -1 1 11 -2 2 11 -3 3 12 -4 4 13 -5 5 13 -6 6 13 -7 7 13 -8 8 14 -9 9 15 -10 10 13 -11 11 1 -12 12 1 -13 13 8 -14 14 8 -15 15 8 -16 16 3 -17 17 3 -18 18 3 -19 19 3 -20 20 16 -21 20 17 -22 21 11 -23 22 17 -24 23 3 -25 24 14 -26 25 3 -27 26 15 -28 27 11 -29 28 18 -30 29 18 -31 30 13 -32 30 14 -33 31 11 -34 32 13 -35 33 13 -36 33 11 -37 34 11 -38 35 11 -39 36 13 -40 37 13 -41 38 16 -42 39 12 -43 40 13 -44 41 13 -45 42 17 -46 43 17 -47 44 13 -48 45 15 -49 46 8 -50 47 8 -51 48 19 -52 48 17 -53 49 8 -54 50 17 -55 51 17 -56 52 17 -57 53 1 -58 54 20 -59 55 8 -60 56 11 -61 57 3 -62 58 15 -63 59 8 -64 60 12 -65 61 1 -66 62 3 -67 63 16 -68 64 1 -69 65 1 -70 66 3 -71 67 11 -72 68 11 -73 69 1 -74 70 16 -75 71 8 -76 72 21 -77 73 22 -78 74 11 -79 75 11 -80 76 11 -81 77 23 -82 78 15 -83 79 13 -84 80 8 -85 81 3 -86 82 3 -87 84 18 -88 85 11 -89 86 1 -90 87 5 -91 88 8 -92 89 8 -93 90 8 -94 91 14 -95 92 23 -96 93 13 -97 94 24 -98 95 24 -99 96 24 -100 97 25 -101 98 18 -102 99 11 -103 100 11 -104 101 26 -105 102 11 -106 103 8 -107 104 26 -108 105 26 -109 106 26 -110 107 26 -111 108 3 -112 109 3 -113 110 25 -114 111 13 -115 112 27 -116 113 27 -117 114 27 -118 115 27 -119 116 27 -120 117 25 -121 118 27 -122 119 11 -123 120 11 -124 121 8 -125 122 8 -126 123 14 -127 124 8 -128 125 14 -129 126 3 -130 126 28 -131 127 11 -132 128 15 -133 129 11 -134 130 5 -135 131 15 -136 132 15 -137 133 11 -138 134 26 -139 135 3 -140 136 3 -141 137 17 -142 138 3 -143 139 15 -144 140 15 -145 141 21 -146 142 11 -147 143 16 -148 144 23 -149 144 14 -150 145 23 -151 145 14 -152 146 23 -153 146 14 -154 147 14 -155 148 17 -156 149 1 -157 150 1 -158 151 25 -159 152 11 -160 153 29 -161 154 21 -162 155 16 -163 156 1 -164 157 1 -165 158 1 -166 159 1 -167 160 21 -168 161 13 -169 162 1 -170 163 1 -171 164 16 -172 165 23 -173 166 1 -174 167 8 -175 168 1 -176 169 1 -177 170 1 -178 171 8 -179 172 11 -180 173 13 -181 174 30 -182 175 3 -183 176 12 -184 177 1 -185 178 1 -186 179 1 -187 180 17 -188 181 15 -189 182 16 -190 183 26 -191 184 27 -192 185 21 -193 186 11 -194 187 11 -195 188 11 -196 189 27 -197 190 1 -198 191 17 -199 192 17 -200 193 11 -201 194 17 -202 195 31 -203 196 31 -204 197 32 -205 198 14 -206 199 14 -207 200 14 -208 201 3 -209 201 25 -210 202 11 -211 203 8 -212 204 14 -213 205 14 -214 206 1 -215 207 17 -216 208 33 -217 209 14 -218 210 13 -219 211 12 -220 212 11 -221 213 11 -222 214 15 -223 215 19 -224 216 12 -225 217 8 -226 218 8 -227 219 8 -228 220 8 -229 221 8 -230 222 11 -231 223 19 -232 224 11 -233 225 14 -234 226 5 -235 227 3 -236 227 25 -237 228 3 -238 228 25 -239 229 26 -240 230 26 -241 231 26 -242 232 26 -243 233 31 -244 234 8 -245 235 11 -246 236 8 -247 237 17 -248 238 12 -249 239 17 -250 240 8 -251 241 17 -252 242 30 -253 243 30 -254 244 30 -255 245 11 -256 246 23 -257 246 14 -258 247 26 -259 248 19 -260 249 1 -261 250 31 -262 250 26 -263 251 12 -264 252 12 -265 253 12 -266 254 8 -267 255 5 -268 256 26 -269 257 26 -270 258 34 -271 259 17 -272 260 17 -273 261 30 -274 262 11 -275 263 12 -276 264 14 -277 265 30 -278 266 11 -279 268 13 -280 268 15 -281 269 15 -282 269 22 -283 270 11 -284 271 11 -285 272 30 -286 272 16 -287 272 17 -288 273 21 -289 273 27 -290 274 8 -291 275 23 -292 276 11 -293 277 11 -294 278 25 -295 279 8 -296 280 15 -297 281 15 -298 282 8 -299 283 30 -300 284 30 -301 285 31 -302 286 3 -303 287 1 -304 288 15 -305 289 23 -306 289 14 -307 292 11 -308 293 17 -309 294 26 -310 296 30 -311 298 14 -312 301 8 -313 304 19 -314 305 16 -315 306 19 -316 307 21 -317 307 27 -318 308 12 -319 309 15 -320 310 8 -321 311 13 -322 312 31 -323 313 8 -324 314 5 -325 315 5 -326 316 22 -327 317 25 -328 318 11 -329 319 16 -330 319 17 -331 320 13 -332 321 15 -333 322 11 -334 323 1 -335 324 26 -336 325 14 -337 326 32 -338 327 25 -339 328 11 -340 329 11 -341 330 11 -342 331 11 -343 332 17 -344 333 19 -345 334 14 -346 336 1 -347 337 17 -348 338 23 -349 339 15 -350 340 17 -351 341 17 -352 342 19 -353 343 12 -354 344 1 -355 346 15 -356 347 17 -357 348 32 -358 349 21 -359 350 16 -360 351 12 -361 352 15 -362 353 15 -363 354 16 -364 355 15 -365 356 8 -366 357 19 -367 358 25 -368 359 25 -369 360 1 -370 360 8 -371 360 25 -372 360 16 -373 360 17 -374 361 32 -375 362 1 -376 363 11 -377 364 1 -378 366 11 -379 367 3 -380 369 16 -381 371 23 -382 371 14 -383 372 11 -384 373 23 -385 373 14 -386 374 1 -387 377 32 -388 379 1 -389 380 3 -390 381 3 -391 382 12 -392 383 21 -393 384 23 -394 385 23 -395 386 13 -396 387 26 -397 388 1 -398 389 11 -399 390 31 -400 391 31 -401 392 21 -402 393 11 -403 394 16 -404 395 1 -405 396 3 -406 397 21 -407 398 1 -408 399 5 -409 400 23 -410 401 31 -411 401 26 -412 402 1 -413 403 11 -414 404 14 -415 405 11 -416 406 30 -417 407 15 -418 408 19 -419 409 30 -420 410 14 -421 411 1 -422 412 12 -423 412 22 -424 413 21 -425 413 27 -426 414 21 -427 414 27 -428 415 21 -429 416 3 -430 417 3 -431 418 14 -432 419 30 -433 420 11 -434 421 30 -435 422 30 -436 423 14 -437 424 11 -438 425 30 -439 426 1 -440 427 15 -441 428 12 -442 428 22 -443 429 25 -444 430 25 -445 431 14 -446 432 3 -447 433 11 -448 434 14 -449 435 3 -450 436 16 -451 437 15 -452 438 1 -453 439 25 -454 440 27 -455 441 25 -456 442 18 -457 443 11 -458 444 21 -459 445 12 -460 446 17 -461 447 24 -462 448 31 -463 449 27 -464 450 27 -465 451 5 -466 452 11 -467 453 11 -468 454 27 -469 455 14 -470 456 26 -471 457 26 -472 458 5 -473 459 30 -474 460 16 -475 461 5 -476 462 14 -477 463 1 -478 464 30 -479 465 14 -480 466 21 -481 467 21 -482 468 1 -483 469 33 -484 470 26 -485 471 26 -486 472 19 -487 473 1 -488 474 21 -489 475 1 -490 476 11 -491 477 21 -492 478 8 -493 479 17 -494 480 17 -495 481 17 -496 482 3 -497 483 14 -498 484 33 -499 485 1 -500 486 21 -501 487 13 -502 488 11 -503 489 13 -504 490 13 -505 491 11 -506 492 3 -507 493 27 -508 494 15 -509 495 3 -510 496 21 -511 497 23 -512 498 11 -513 499 5 -514 500 1 -515 501 14 -516 502 3 -517 503 5 -518 504 33 -519 505 3 -520 506 17 -521 507 17 -522 508 3 -523 510 27 -524 511 11 -525 512 13 -526 513 30 -527 514 30 -528 515 15 -529 516 23 -530 516 14 -531 517 23 -532 517 14 -533 518 17 -534 519 16 -535 519 17 -536 520 11 -537 521 11 -538 522 17 -539 523 21 -540 524 8 -541 525 33 -542 526 11 -543 527 33 -544 528 23 -545 528 14 -546 529 11 -547 530 11 -548 531 15 -549 532 23 -550 533 33 -551 534 5 -552 535 8 -553 536 21 -554 537 25 -555 538 3 -556 538 25 -557 539 32 -558 540 5 -559 541 27 -560 542 26 -561 543 11 -562 544 1 -563 545 27 -564 546 8 -565 549 14 -566 550 8 -567 551 1 -568 552 18 -569 553 3 -570 554 3 -571 555 35 -572 556 5 -573 557 21 -574 558 21 -575 559 21 -576 560 21 -577 561 23 -578 561 14 -579 562 14 -580 563 16 -581 564 12 -582 565 1 -583 566 11 -584 567 12 -585 569 11 -586 570 15 -587 571 30 -588 572 30 -589 573 8 -590 574 33 -591 575 26 -592 576 21 -593 576 27 -594 577 8 -595 578 5 -596 579 8 -597 580 1 -598 581 30 -599 582 8 -600 583 11 -601 584 26 -602 585 8 -603 586 31 -604 587 14 -605 588 1 -606 589 17 -607 590 26 -608 591 11 -609 592 15 -610 593 11 -611 594 11 -612 595 5 -613 596 24 -614 597 17 -615 598 5 -616 599 3 -617 600 3 -618 601 17 -619 602 3 -620 603 21 -621 604 16 -622 605 5 -623 606 5 -624 607 1 -625 608 30 -626 609 3 -627 609 32 -628 610 3 -629 610 32 -630 611 14 -631 612 21 -632 613 26 -633 614 17 -634 615 21 -635 616 11 -636 617 21 -637 618 11 -638 619 11 -639 620 15 -640 621 1 -641 622 1 -642 623 3 -643 624 15 -644 625 14 -645 626 14 -646 627 14 -647 628 11 -648 629 15 -649 630 19 -650 631 11 -651 632 21 -652 633 14 -653 634 8 -654 635 23 -655 635 14 -656 636 30 -657 637 14 -658 638 14 -659 639 30 -660 640 16 -661 641 1 -662 642 21 -663 643 1 -664 644 11 -665 645 30 -666 646 1 -667 647 31 -668 648 1 -669 649 19 -670 650 3 -671 651 25 -672 652 25 -673 653 3 -674 654 27 -675 655 8 -676 656 8 -677 656 14 -678 657 8 -679 657 14 -680 658 5 -681 659 16 -682 660 21 -683 661 14 -684 662 1 -685 663 1 -686 664 1 -687 665 1 -688 666 16 -689 667 13 -690 668 21 -691 668 5 -692 669 12 -693 670 8 -694 671 16 -695 672 14 -696 673 15 -697 674 21 -698 675 30 -699 676 1 -700 677 16 -701 678 21 -702 678 5 -703 679 21 -704 680 21 -705 681 19 -706 682 8 -707 683 14 -708 684 11 -709 685 30 -710 686 33 -711 687 14 -712 688 15 -713 690 8 -714 691 16 -715 691 17 -716 692 16 -717 692 17 -718 693 17 -719 694 5 -720 695 8 -721 696 8 -722 697 8 -723 698 1 -724 699 15 -725 700 24 -726 702 30 -727 702 24 -728 702 3 -729 702 25 -730 702 33 -731 703 30 -732 704 17 -733 705 21 -734 706 1 -735 707 12 -736 708 8 -737 709 11 -738 710 31 -739 711 27 -740 712 27 -741 713 11 -742 714 19 -743 715 33 -744 716 8 -745 717 3 -746 718 14 -747 719 21 -748 720 21 -749 721 21 -750 722 17 -751 723 3 -752 724 3 -753 725 21 -754 726 12 -755 727 3 -756 728 21 -757 729 21 -758 730 21 -759 731 3 -760 731 25 -761 732 3 -762 733 3 -763 733 25 -764 734 15 -765 735 15 -766 736 1 -767 737 1 -768 738 8 -769 739 17 -770 740 12 -771 741 26 -772 742 26 -773 743 26 -774 744 31 -775 745 25 -776 747 1 -777 748 5 -778 749 25 -779 750 23 -780 752 1 -781 754 26 -782 755 8 -783 756 3 -784 757 3 -785 758 22 -786 759 21 -787 759 36 -788 760 21 -789 761 22 -790 762 22 -791 763 16 -792 763 17 -793 764 21 -794 765 8 -795 766 21 -796 766 27 -797 767 13 -798 767 15 -799 768 15 -800 769 13 -801 770 16 -802 771 19 -803 772 11 -804 773 11 -805 774 21 -806 774 27 -807 775 21 -808 776 11 -809 777 13 -810 777 15 -811 778 11 -812 779 13 -813 779 15 -814 780 11 -815 781 31 -816 781 26 -817 782 1 -818 783 1 -819 784 17 -820 785 13 -821 786 31 -822 787 30 -823 787 24 -824 787 8 -825 788 11 -826 790 30 -827 791 13 -828 791 15 -829 792 16 -830 793 3 -831 794 8 -832 797 21 -833 797 19 -834 797 30 -835 797 23 -836 797 11 -837 797 1 -838 797 24 -839 797 8 -840 797 3 -841 797 25 -842 797 16 -843 797 17 -844 797 14 -845 797 33 -846 797 32 -847 797 27 -848 798 8 -849 799 1 -850 799 16 -851 800 8 -852 801 1 -853 801 24 -854 801 33 -855 802 21 -856 802 19 -857 802 30 -858 802 1 -859 802 8 -860 802 25 -861 802 16 -862 802 5 -863 802 17 -864 802 27 -865 803 16 -866 803 17 -867 804 30 -868 804 1 -869 804 3 -870 804 25 -871 805 19 -872 805 1 -873 805 3 -874 805 25 -875 805 33 -876 806 21 -877 806 19 -878 806 13 -879 806 30 -880 806 23 -881 806 11 -882 806 15 -883 806 1 -884 806 24 -885 806 8 -886 806 3 -887 806 25 -888 806 12 -889 806 34 -890 806 16 -891 806 5 -892 806 31 -893 806 22 -894 806 17 -895 806 14 -896 806 33 -897 806 32 -898 806 27 -899 806 26 -900 807 19 -901 807 30 -902 807 1 -903 807 33 -904 808 30 -905 808 8 -906 808 16 -907 809 21 -908 809 19 -909 809 30 -910 809 11 -911 809 1 -912 809 24 -913 809 8 -914 809 3 -915 809 25 -916 809 16 -917 809 17 -918 809 14 -919 809 33 -920 809 32 -921 809 27 -922 810 19 -923 810 30 -924 810 1 -925 810 8 -926 810 14 -927 811 21 -928 811 19 -929 811 30 -930 811 1 -931 811 24 -932 811 25 -933 811 31 -934 811 33 -935 811 27 -936 811 26 -937 812 19 -938 812 30 -939 812 11 -940 812 1 -941 812 8 -942 813 23 -943 813 11 -944 813 1 -945 813 8 -946 813 3 -947 813 14 -948 813 33 -949 813 32 -950 814 19 -951 814 11 -952 814 1 -953 815 19 -954 815 30 -955 815 1 -956 815 24 -957 815 3 -958 815 25 -959 815 33 -960 815 32 -961 816 8 -962 816 14 -963 817 19 -964 817 30 -965 817 23 -966 817 11 -967 817 1 -968 817 8 -969 817 25 -970 817 17 -971 817 14 -972 818 19 -973 818 30 -974 818 1 -975 818 16 -976 818 17 -977 819 21 -978 819 19 -979 819 30 -980 819 1 -981 819 24 -982 819 8 -983 819 16 -984 819 5 -985 819 31 -986 819 17 -987 819 33 -988 819 27 -989 820 19 -990 820 30 -991 820 1 -992 820 8 -993 820 25 -994 821 19 -995 821 30 -996 821 1 -997 821 25 -998 822 30 -999 822 8 -1000 822 17 -1001 823 19 -1002 823 30 -1003 823 1 -1004 823 8 -1005 823 16 -1006 823 17 -1007 823 14 -1008 824 19 -1009 824 30 -1010 824 1 -1011 824 25 -1012 825 1 -1013 825 3 -1014 825 25 -1015 826 21 -1016 826 30 -1017 826 1 -1018 826 8 -1019 826 16 -1020 826 31 -1021 826 17 -1022 826 26 -1023 827 21 -1024 827 19 -1025 827 13 -1026 827 30 -1027 827 23 -1028 827 11 -1029 827 15 -1030 827 1 -1031 827 24 -1032 827 8 -1033 827 3 -1034 827 25 -1035 827 12 -1036 827 34 -1037 827 16 -1038 827 5 -1039 827 31 -1040 827 22 -1041 827 17 -1042 827 14 -1043 827 33 -1044 827 32 -1045 827 27 -1046 827 26 -1047 828 21 -1048 828 19 -1049 828 13 -1050 828 30 -1051 828 11 -1052 828 15 -1053 828 1 -1054 828 25 -1055 828 16 -1056 828 32 -1057 829 21 -1058 829 15 -1059 829 1 -1060 829 3 -1061 829 5 -1062 829 33 -1063 830 19 -1064 830 11 -1065 830 8 -1066 830 34 -1067 830 17 -1068 830 14 -1069 831 1 -1070 831 8 -1071 832 19 -1072 832 1 -1073 832 3 -1074 832 25 -1075 832 32 -1076 833 19 -1077 833 30 -1078 834 19 -1079 834 30 -1080 834 1 -1081 834 24 -1082 834 3 -1083 834 25 -1084 835 13 -1085 835 11 -1086 835 15 -1087 836 30 -1088 836 8 -1089 836 17 -1090 837 21 -1091 837 19 -1092 837 30 -1093 837 1 -1094 837 24 -1095 837 3 -1096 837 25 -1097 837 33 -1098 837 32 -1099 837 27 -1100 838 19 -1101 838 30 -1102 838 11 -1103 838 1 -1104 838 25 -1105 839 1 -1106 839 3 -1107 839 25 -1108 839 32 -1109 840 19 -1110 840 30 -1111 840 8 -1112 840 16 -1113 841 21 -1114 841 19 -1115 841 30 -1116 841 11 -1117 841 1 -1118 841 24 -1119 841 8 -1120 841 3 -1121 841 25 -1122 841 12 -1123 841 16 -1124 841 5 -1125 841 31 -1126 841 17 -1127 841 33 -1128 841 32 -1129 841 27 -1130 841 26 -1131 842 19 -1132 842 30 -1133 842 11 -1134 842 8 -1135 842 25 -1136 842 33 -1137 843 21 -1138 843 19 -1139 843 30 -1140 843 1 -1141 843 24 -1142 843 3 -1143 843 25 -1144 843 12 -1145 843 5 -1146 843 31 -1147 843 22 -1148 843 33 -1149 843 32 -1150 843 27 -1151 844 21 -1152 844 19 -1153 844 13 -1154 844 30 -1155 844 23 -1156 844 11 -1157 844 15 -1158 844 1 -1159 844 24 -1160 844 8 -1161 844 3 -1162 844 25 -1163 844 12 -1164 844 34 -1165 844 16 -1166 844 5 -1167 844 31 -1168 844 22 -1169 844 17 -1170 844 14 -1171 844 33 -1172 844 32 -1173 844 27 -1174 844 26 -1175 845 19 -1176 845 30 -1177 845 8 -1178 845 25 -1179 845 17 -1180 845 14 -1181 846 19 -1182 846 30 -1183 846 1 -1184 846 8 -1185 846 3 -1186 846 25 -1187 846 16 -1188 846 17 -1189 847 1 -1190 847 3 -1191 847 25 -1192 847 33 -1193 848 19 -1194 848 30 -1195 848 1 -1196 848 24 -1197 848 8 -1198 848 3 -1199 848 25 -1200 848 33 -1201 848 32 -1202 849 30 -1203 849 1 -1204 850 21 -1205 850 19 -1206 850 13 -1207 850 30 -1208 850 23 -1209 850 11 -1210 850 15 -1211 850 1 -1212 850 24 -1213 850 8 -1214 850 3 -1215 850 25 -1216 850 12 -1217 850 34 -1218 850 16 -1219 850 5 -1220 850 31 -1221 850 22 -1222 850 17 -1223 850 14 -1224 850 33 -1225 850 32 -1226 850 27 -1227 850 26 -1228 851 19 -1229 851 1 -1230 851 24 -1231 851 5 -1232 851 31 -1233 851 22 -1234 851 17 -1235 851 33 -1236 851 26 -1237 852 19 -1238 852 30 -1239 852 8 -1240 852 3 -1241 852 17 -1242 852 33 -1243 852 27 -1244 853 21 -1245 853 13 -1246 853 11 -1247 853 1 -1248 853 24 -1249 853 3 -1250 853 25 -1251 853 16 -1252 853 33 -1253 854 21 -1254 854 19 -1255 854 30 -1256 854 8 -1257 854 3 -1258 854 25 -1259 854 16 -1260 854 17 -1261 854 14 -1262 854 33 -1263 854 32 -1264 855 1 -1265 855 24 -1266 855 12 -1267 855 33 -1268 856 30 -1269 856 1 -1270 856 8 -1271 857 1 -1272 857 3 -1273 857 25 -1274 857 33 -1275 858 1 -1276 859 21 -1277 859 30 -1278 859 24 -1279 859 16 -1280 860 21 -1281 860 19 -1282 860 30 -1283 860 1 -1284 860 24 -1285 860 17 -1286 861 14 -1287 862 21 -1288 862 19 -1289 862 13 -1290 862 30 -1291 862 23 -1292 862 11 -1293 862 15 -1294 862 1 -1295 862 24 -1296 862 8 -1297 862 3 -1298 862 25 -1299 862 12 -1300 862 34 -1301 862 16 -1302 862 5 -1303 862 31 -1304 862 22 -1305 862 17 -1306 862 14 -1307 862 33 -1308 862 32 -1309 862 27 -1310 862 26 -1311 863 21 -1312 863 1 -1313 863 24 -1314 863 16 -1315 863 31 -1316 863 17 -1317 863 33 -1318 863 27 -1319 864 21 -1320 864 19 -1321 864 13 -1322 864 30 -1323 864 23 -1324 864 11 -1325 864 15 -1326 864 1 -1327 864 24 -1328 864 8 -1329 864 3 -1330 864 25 -1331 864 12 -1332 864 34 -1333 864 16 -1334 864 5 -1335 864 31 -1336 864 22 -1337 864 17 -1338 864 14 -1339 864 33 -1340 864 32 -1341 864 27 -1342 864 26 -1343 865 1 -1344 865 3 -1345 865 25 -1346 865 33 -1347 865 32 -1348 866 8 -1349 866 16 -1350 866 17 -1351 867 21 -1352 867 12 -1353 867 5 -1354 867 31 -1355 867 22 -1356 868 14 -1357 869 11 -1358 869 15 -1359 869 3 -1360 869 25 -1361 870 19 -1362 870 1 -1363 870 16 -1364 870 17 -1365 871 21 -1366 871 19 -1367 871 30 -1368 871 1 -1369 871 24 -1370 871 25 -1371 871 16 -1372 871 33 -1373 871 27 -1374 872 21 -1375 872 19 -1376 872 13 -1377 872 30 -1378 872 23 -1379 872 11 -1380 872 15 -1381 872 1 -1382 872 24 -1383 872 8 -1384 872 3 -1385 872 25 -1386 872 12 -1387 872 34 -1388 872 16 -1389 872 5 -1390 872 31 -1391 872 22 -1392 872 17 -1393 872 14 -1394 872 33 -1395 872 32 -1396 872 27 -1397 872 26 -1398 873 21 -1399 873 30 -1400 873 15 -1401 873 1 -1402 873 3 -1403 873 16 -1404 873 32 -1405 874 19 -1406 874 30 -1407 874 1 -1408 874 3 -1409 874 25 -1410 874 33 -1411 874 32 -1412 875 30 -1413 875 1 -1414 875 16 -1415 875 33 -1416 876 21 -1417 876 19 -1418 876 30 -1419 876 1 -1420 876 24 -1421 876 8 -1422 876 16 -1423 876 5 -1424 876 31 -1425 876 17 -1426 876 33 -1427 876 27 -1428 876 26 -1429 877 30 -1430 877 8 -1431 878 19 -1432 878 30 -1433 878 1 -1434 878 24 -1435 878 12 -1436 878 22 -1437 878 33 -1438 879 19 -1439 879 30 -1440 879 11 -1441 879 1 -1442 879 8 -1443 879 17 -1444 880 19 -1445 880 30 -1446 880 11 -1447 880 1 -1448 880 25 -1449 880 14 -1450 881 19 -1451 881 30 -1452 881 1 -1453 881 25 -1454 881 16 -1455 882 8 -1456 882 16 -1457 882 31 -1458 882 17 -1459 883 21 -1460 883 19 -1461 883 13 -1462 883 30 -1463 883 23 -1464 883 11 -1465 883 15 -1466 883 1 -1467 883 24 -1468 883 8 -1469 883 3 -1470 883 25 -1471 883 12 -1472 883 34 -1473 883 16 -1474 883 5 -1475 883 31 -1476 883 22 -1477 883 17 -1478 883 14 -1479 883 33 -1480 883 32 -1481 883 27 -1482 883 26 -1483 886 1 -1484 887 30 -1485 887 1 -1486 887 24 -1487 887 25 -1488 887 33 -1489 888 19 -1490 888 1 -1491 888 25 -1492 889 11 -1493 889 3 -1494 889 25 -1495 889 32 -1496 890 3 -1497 890 25 -1498 891 30 -1499 891 1 -1500 891 8 -1501 891 16 -1502 891 17 -1503 892 19 -1504 892 30 -1505 892 14 -1506 893 21 -1507 893 19 -1508 893 30 -1509 893 1 -1510 893 16 -1511 893 17 -1512 893 27 -1513 894 21 -1514 894 19 -1515 894 13 -1516 894 30 -1517 894 23 -1518 894 11 -1519 894 15 -1520 894 1 -1521 894 24 -1522 894 8 -1523 894 3 -1524 894 25 -1525 894 16 -1526 894 5 -1527 894 31 -1528 894 17 -1529 894 14 -1530 894 33 -1531 894 32 -1532 894 27 -1533 894 26 -1534 895 21 -1535 895 19 -1536 895 13 -1537 895 30 -1538 895 23 -1539 895 11 -1540 895 15 -1541 895 1 -1542 895 24 -1543 895 8 -1544 895 3 -1545 895 25 -1546 895 12 -1547 895 34 -1548 895 16 -1549 895 5 -1550 895 31 -1551 895 22 -1552 895 17 -1553 895 14 -1554 895 33 -1555 895 32 -1556 895 27 -1557 895 26 -1558 896 1 -1559 896 24 -1560 896 3 -1561 896 25 -1562 896 31 -1563 896 33 -1564 896 32 -1565 897 8 -1566 897 17 -1567 898 30 -1568 898 1 -1569 898 24 -1570 898 3 -1571 898 25 -1572 898 33 -1573 899 30 -1574 899 8 -1575 900 37 -1576 901 17 -1577 902 1 -1578 902 8 -1579 903 21 -1580 903 19 -1581 903 30 -1582 903 1 -1583 903 24 -1584 903 8 -1585 903 25 -1586 903 34 -1587 903 16 -1588 903 5 -1589 903 17 -1590 903 33 -1591 904 30 -1592 904 8 -1593 904 14 -1594 905 21 -1595 905 19 -1596 905 13 -1597 905 30 -1598 905 23 -1599 905 11 -1600 905 15 -1601 905 8 -1602 905 3 -1603 905 25 -1604 905 12 -1605 905 34 -1606 905 16 -1607 905 5 -1608 905 31 -1609 905 22 -1610 905 17 -1611 905 14 -1612 905 33 -1613 905 32 -1614 905 27 -1615 905 26 -1616 906 1 -1617 906 16 -1618 906 31 -1619 906 26 -1620 907 38 -1621 908 19 -1622 908 30 -1623 908 11 -1624 908 1 -1625 908 8 -1626 908 3 -1627 908 25 -1628 909 21 -1629 909 1 -1630 909 38 -1631 909 16 -1632 909 5 -1633 909 22 -1634 909 33 -1635 909 27 -1636 910 30 -1637 910 1 -1638 910 8 -1639 911 19 -1640 911 30 -1641 911 1 -1642 911 8 -1643 911 25 -1644 911 16 -1645 911 17 -1646 912 25 -1647 913 34 -1648 913 14 -1649 914 19 -1650 914 30 -1651 914 11 -1652 914 1 -1653 914 14 -1654 915 19 -1655 915 30 -1656 915 1 -1657 915 25 -1658 916 16 -1659 917 19 -1660 917 11 -1661 917 1 -1662 917 25 -1663 918 15 -1664 919 30 -1665 919 8 -1666 919 38 -1667 919 16 -1668 919 17 -1669 920 21 -1670 920 19 -1671 920 30 -1672 920 1 -1673 920 24 -1674 920 8 -1675 920 3 -1676 920 25 -1677 920 12 -1678 920 33 -1679 920 32 -1680 921 11 -1681 921 17 -1682 922 30 -1683 923 30 -1684 923 1 -1685 923 36 -1686 923 16 -1687 923 17 -1688 924 21 -1689 925 36 -1690 926 19 -1691 926 1 -1692 926 24 -1693 926 3 -1694 926 25 -1695 926 36 -1696 926 33 -1697 926 32 -1698 927 11 -1699 928 17 -1700 929 30 -1701 929 1 -1702 929 8 -1703 929 16 -1704 930 19 -1705 930 30 -1706 930 1 -1707 930 25 -1708 930 36 -1709 930 33 -1710 931 30 -1711 931 1 -1712 931 16 -1713 931 31 -1714 931 17 -1715 931 26 -1716 932 21 -1717 932 17 -1718 932 27 -1719 933 19 -1720 933 13 -1721 933 30 -1722 933 11 -1723 933 1 -1724 933 8 -1725 933 25 -1726 933 33 -1727 933 32 -1728 934 23 -1729 934 8 -1730 934 34 -1731 934 14 -1732 935 36 -1733 936 19 -1734 936 30 -1735 936 1 -1736 936 8 -1737 936 14 -1738 937 21 -1739 937 30 -1740 937 1 -1741 937 12 -1742 937 5 -1743 938 19 -1744 939 19 -1745 939 30 -1746 939 1 -1747 939 8 -1748 939 25 -1749 939 36 -1750 939 16 -1751 939 14 -1752 940 19 -1753 940 11 -1754 940 3 -1755 940 25 -1756 940 36 -1757 940 33 -1758 940 32 -1759 941 1 -1760 941 24 -1761 941 8 -1762 941 36 -1763 941 33 -1764 942 30 -1765 942 8 -1766 942 36 -1767 942 16 -1768 942 31 -1769 942 26 -1770 943 16 -1771 943 31 -1772 943 17 -1773 943 27 -1774 943 26 -1775 944 30 -1776 944 36 -1777 944 16 -1778 945 21 -1779 945 36 -1780 945 16 -1781 945 27 -1782 946 19 -1783 946 30 -1784 946 1 -1785 946 8 -1786 946 33 -1787 947 21 -1788 947 1 -1789 947 8 -1790 947 16 -1791 947 31 -1792 947 17 -1793 948 21 -1794 948 19 -1795 948 30 -1796 948 1 -1797 948 8 -1798 948 25 -1799 948 16 -1800 948 17 -1801 949 21 -1802 949 16 -1803 949 27 -1804 950 8 -1805 950 14 -1806 951 8 -1807 951 36 -1808 951 16 -1809 951 17 -1810 952 19 -1811 952 30 -1812 952 1 -1813 952 8 -1814 952 36 -1815 953 5 -1816 954 21 -1817 954 19 -1818 954 30 -1819 954 23 -1820 954 11 -1821 954 1 -1822 954 24 -1823 954 8 -1824 954 25 -1825 954 12 -1826 955 30 -1827 955 1 -1828 955 8 -1829 955 25 -1830 955 33 -1831 956 36 -1832 956 31 -1833 957 21 -1834 957 19 -1835 957 1 -1836 957 16 -1837 957 31 -1838 957 22 -1839 957 27 -1840 957 26 -1841 958 21 -1842 958 1 -1843 958 36 -1844 958 16 -1845 958 31 -1846 958 27 -1847 958 26 -1848 959 8 -1849 960 21 -1850 960 1 -1851 960 24 -1852 960 36 -1853 960 31 -1854 960 33 -1855 960 27 -1856 961 1 -1857 961 3 -1858 961 25 -1859 961 33 -1860 962 19 -1861 962 13 -1862 962 30 -1863 962 23 -1864 962 11 -1865 962 15 -1866 962 1 -1867 962 24 -1868 962 8 -1869 962 3 -1870 962 25 -1871 962 16 -1872 962 17 -1873 962 14 -1874 962 33 -1875 963 21 -1876 963 19 -1877 963 30 -1878 963 23 -1879 963 11 -1880 963 10 -1881 963 1 -1882 963 24 -1883 963 8 -1884 963 3 -1885 963 25 -1886 963 16 -1887 963 5 -1888 963 31 -1889 963 22 -1890 963 39 -1891 963 17 -1892 963 14 -1893 963 33 -1894 963 27 -1895 963 26 -1896 964 21 -1897 964 19 -1898 964 30 -1899 964 23 -1900 964 11 -1901 964 10 -1902 964 24 -1903 964 8 -1904 964 3 -1905 964 25 -1906 964 12 -1907 964 34 -1908 964 16 -1909 964 5 -1910 964 31 -1911 964 22 -1912 964 39 -1913 964 17 -1914 964 14 -1915 964 33 -1916 964 32 -1917 964 27 -1918 964 26 -1919 965 1 -1920 965 3 -1921 965 25 -1922 966 36 -1923 967 23 -1924 967 36 -1925 967 34 -1926 967 14 -1927 968 30 -1928 968 8 -1929 968 17 -1930 969 36 -1931 970 21 -1932 970 19 -1933 970 13 -1934 970 30 -1935 970 23 -1936 970 11 -1937 970 15 -1938 970 1 -1939 970 24 -1940 970 8 -1941 970 3 -1942 970 25 -1943 970 12 -1944 970 34 -1945 970 16 -1946 970 5 -1947 970 31 -1948 970 22 -1949 970 17 -1950 970 14 -1951 970 33 -1952 970 32 -1953 970 27 -1954 970 26 -1955 971 21 -1956 971 19 -1957 971 30 -1958 971 11 -1959 971 1 -1960 971 24 -1961 971 8 -1962 971 3 -1963 971 25 -1964 971 12 -1965 971 16 -1966 971 31 -1967 971 22 -1968 971 17 -1969 971 33 -1970 971 27 -1971 972 19 -1972 972 30 -1973 972 1 -1974 972 8 -1975 972 16 -1976 973 1 -1977 973 24 -1978 973 3 -1979 973 25 -1980 974 8 -1981 975 21 -1982 975 30 -1983 975 1 -1984 975 8 -1985 975 25 -1986 975 16 -1987 975 17 -1988 976 21 -1989 976 30 -1990 976 1 -1991 976 25 -1992 976 33 -1993 980 23 -1994 980 34 -1995 980 16 -1996 980 17 -1997 980 14 -1998 980 27 -1999 981 30 -2000 981 1 -2001 981 8 -2002 981 36 -2003 982 26 -2004 983 19 -2005 983 30 -2006 983 1 -2007 983 8 -2008 983 16 -2009 983 17 -2010 984 19 -2011 984 30 -2012 984 10 -2013 984 1 -2014 984 24 -2015 984 34 -2016 985 21 -2017 985 16 -2018 985 31 -2019 985 17 -2020 985 27 -2021 985 26 -2022 986 30 -2023 986 1 -2024 986 8 -2025 986 25 -2026 987 31 -2027 987 17 -2028 987 26 -2029 988 21 -2030 988 19 -2031 988 30 -2032 988 1 -2033 988 24 -2034 988 8 -2035 988 3 -2036 988 25 -2037 988 16 -2038 988 17 -2039 988 33 -2040 989 21 -2041 989 19 -2042 989 13 -2043 989 30 -2044 989 23 -2045 989 11 -2046 989 15 -2047 989 1 -2048 989 24 -2049 989 8 -2050 989 3 -2051 989 25 -2052 989 12 -2053 989 36 -2054 989 34 -2055 989 16 -2056 989 5 -2057 989 31 -2058 989 22 -2059 989 17 -2060 989 14 -2061 989 33 -2062 989 32 -2063 989 27 -2064 989 26 -2065 990 21 -2066 990 19 -2067 990 30 -2068 990 8 -2069 990 34 -2070 990 16 -2071 990 31 -2072 990 17 -2073 990 14 -2074 990 27 -2075 991 21 -2076 991 19 -2077 991 13 -2078 991 30 -2079 991 23 -2080 991 11 -2081 991 15 -2082 991 1 -2083 991 24 -2084 991 8 -2085 991 3 -2086 991 25 -2087 991 12 -2088 991 36 -2089 991 34 -2090 991 16 -2091 991 5 -2092 991 31 -2093 991 22 -2094 991 17 -2095 991 14 -2096 991 33 -2097 991 32 -2098 991 27 -2099 991 26 -2100 992 19 -2101 992 11 -2102 992 1 -2103 992 3 -2104 992 25 -2105 992 36 -2106 993 8 -2107 994 21 -2108 994 16 -2109 994 31 -2110 994 17 -2111 994 27 -2112 994 26 -2113 995 1 -2114 995 31 -2115 995 17 -2116 996 8 -2117 996 14 -2118 997 21 -2119 997 30 -2120 997 5 -2121 997 31 -2122 997 17 -2123 997 27 -2124 997 26 -2125 998 19 -2126 998 30 -2127 998 25 -2128 998 16 -2129 998 5 -2130 998 17 -2131 999 21 -2132 999 19 -2133 999 30 -2134 999 24 -2135 999 3 -2136 999 32 -2137 1000 21 -2138 1000 27 -2139 1001 19 -2140 1001 30 -2141 1001 11 -2142 1001 15 -2143 1001 8 -2144 1001 14 -2145 1002 1 -2146 1002 24 -2147 1002 16 -2148 1002 33 -2149 1003 30 -2150 1003 8 -2151 1003 36 -2152 1004 36 -2153 1004 5 -2154 1005 19 -2155 1005 30 -2156 1005 1 -2157 1005 8 -2158 1005 16 -2159 1005 17 -2160 1006 19 -2161 1006 30 -2162 1006 11 -2163 1006 1 -2164 1006 8 -2165 1006 3 -2166 1006 25 -2167 1006 36 -2168 1006 33 -2169 1006 32 -2170 1007 19 -2171 1007 30 -2172 1007 11 -2173 1007 1 -2174 1007 36 -2175 1008 19 -2176 1008 30 -2177 1008 8 -2178 1008 25 -2179 1008 17 -2180 1008 14 -2181 1008 33 -2182 1009 21 -2183 1009 30 -2184 1009 1 -2185 1009 8 -2186 1009 3 -2187 1009 34 -2188 1009 16 -2189 1009 5 -2190 1009 17 -2191 1009 14 -2192 1009 33 -2193 1009 26 -2194 1010 21 -2195 1010 19 -2196 1010 30 -2197 1010 1 -2198 1010 24 -2199 1010 8 -2200 1010 3 -2201 1010 25 -2202 1010 12 -2203 1010 36 -2204 1010 16 -2205 1010 5 -2206 1010 22 -2207 1010 33 -2208 1010 32 -2209 1010 27 -2210 1011 1 -2211 1012 21 -2212 1012 19 -2213 1012 30 -2214 1012 24 -2215 1012 25 -2216 1012 36 -2217 1012 16 -2218 1012 5 -2219 1012 31 -2220 1012 32 -2221 1012 27 -2222 1012 26 -2223 1013 27 -2224 1014 30 -2225 1014 1 -2226 1014 8 -2227 1015 19 -2228 1015 30 -2229 1016 19 -2230 1016 1 -2231 1016 25 -2232 1017 19 -2233 1017 30 -2234 1017 1 -2235 1017 8 -2236 1017 25 -2237 1018 19 -2238 1018 30 -2239 1018 23 -2240 1018 8 -2241 1018 14 -2242 1019 19 -2243 1019 11 -2244 1019 1 -2245 1019 8 -2246 1019 3 -2247 1019 25 -2248 1019 33 -2249 1019 32 -2250 1020 1 -2251 1020 24 -2252 1020 3 -2253 1020 25 -2254 1020 12 -2255 1020 36 -2256 1020 22 -2257 1020 33 -2258 1020 32 -2259 1021 23 -2260 1021 1 -2261 1021 14 -2262 1022 19 -2263 1022 30 -2264 1022 1 -2265 1022 36 -2266 1023 21 -2267 1023 19 -2268 1023 30 -2269 1023 23 -2270 1023 11 -2271 1023 10 -2272 1023 1 -2273 1023 24 -2274 1023 8 -2275 1023 3 -2276 1023 25 -2277 1023 12 -2278 1023 34 -2279 1023 16 -2280 1023 5 -2281 1023 31 -2282 1023 22 -2283 1023 17 -2284 1023 14 -2285 1023 33 -2286 1023 32 -2287 1023 27 -2288 1023 26 -2289 1024 16 -2290 1025 21 -2291 1025 19 -2292 1025 13 -2293 1025 30 -2294 1025 23 -2295 1025 11 -2296 1025 15 -2297 1025 1 -2298 1025 24 -2299 1025 8 -2300 1025 3 -2301 1025 25 -2302 1025 12 -2303 1025 34 -2304 1025 16 -2305 1025 5 -2306 1025 31 -2307 1025 22 -2308 1025 17 -2309 1025 14 -2310 1025 33 -2311 1025 32 -2312 1025 27 -2313 1025 26 -2314 1026 30 -2315 1026 8 -2316 1026 16 -2317 1026 17 -2318 1027 11 -2319 1028 21 -2320 1028 1 -2321 1028 36 -2322 1028 16 -2323 1028 33 -2324 1028 27 -2325 1029 21 -2326 1029 30 -2327 1029 8 -2328 1029 36 -2329 1029 34 -2330 1029 17 -2331 1030 21 -2332 1030 30 -2333 1030 16 -2334 1030 31 -2335 1030 39 -2336 1030 17 -2337 1030 27 -2338 1030 26 -2339 1031 21 -2340 1031 19 -2341 1031 13 -2342 1031 30 -2343 1031 23 -2344 1031 11 -2345 1031 15 -2346 1031 24 -2347 1031 8 -2348 1031 3 -2349 1031 25 -2350 1031 12 -2351 1031 34 -2352 1031 16 -2353 1031 5 -2354 1031 31 -2355 1031 22 -2356 1031 17 -2357 1031 14 -2358 1031 33 -2359 1031 32 -2360 1031 27 -2361 1031 26 -2362 1032 21 -2363 1032 19 -2364 1032 13 -2365 1032 30 -2366 1032 23 -2367 1032 11 -2368 1032 15 -2369 1032 1 -2370 1032 24 -2371 1032 8 -2372 1032 3 -2373 1032 25 -2374 1032 12 -2375 1032 36 -2376 1032 34 -2377 1032 16 -2378 1032 5 -2379 1032 31 -2380 1032 22 -2381 1032 17 -2382 1032 14 -2383 1032 33 -2384 1032 32 -2385 1032 27 -2386 1032 26 -2387 1033 21 -2388 1033 24 -2389 1033 12 -2390 1033 5 -2391 1033 22 -2392 1033 33 -2393 1033 27 -2394 1034 19 -2395 1034 30 -2396 1034 11 -2397 1034 1 -2398 1034 8 -2399 1034 25 -2400 1035 1 -2401 1035 24 -2402 1035 33 -2403 1036 30 -2404 1036 1 -2405 1036 8 -2406 1036 16 -2407 1036 31 -2408 1036 17 -2409 1037 30 -2410 1037 8 -2411 1037 16 -2412 1037 17 -2413 1038 1 -2414 1038 3 -2415 1038 25 -2416 1039 1 -2417 1039 3 -2418 1039 25 -2419 1039 33 -2420 1039 32 -2421 1040 31 -2422 1041 5 -2423 1042 30 -2424 1042 1 -2425 1042 25 -2426 1043 16 -2427 1043 31 -2428 1043 26 -2429 1044 30 -2430 1044 1 -2431 1044 16 -2432 1044 31 -2433 1044 17 -2434 1044 26 -2435 1045 19 -2436 1045 30 -2437 1045 11 -2438 1045 1 -2439 1045 8 -2440 1045 17 -2441 1045 14 -2442 1046 21 -2443 1046 19 -2444 1046 30 -2445 1046 1 -2446 1046 24 -2447 1046 8 -2448 1046 3 -2449 1046 25 -2450 1046 16 -2451 1046 5 -2452 1046 31 -2453 1046 17 -2454 1046 33 -2455 1046 32 -2456 1046 27 -2457 1046 26 -2458 1047 19 -2459 1047 30 -2460 1047 23 -2461 1047 1 -2462 1047 8 -2463 1047 25 -2464 1047 17 -2465 1047 14 -2466 1048 1 -2467 1048 24 -2468 1048 3 -2469 1048 33 -2470 1049 19 -2471 1049 11 -2472 1049 15 -2473 1049 8 -2474 1049 36 -2475 1049 14 -2476 1050 19 -2477 1050 11 -2478 1050 15 -2479 1050 8 -2480 1050 14 -2481 1051 21 -2482 1051 24 -2483 1051 16 -2484 1052 37 -2485 1052 30 -2486 1052 1 -2487 1052 25 -2488 1053 1 -2489 1053 24 -2490 1053 3 -2491 1053 12 -2492 1053 33 -2493 1054 19 -2494 1054 30 -2495 1054 11 -2496 1054 8 -2497 1054 25 -2498 1055 19 -2499 1055 30 -2500 1055 11 -2501 1055 8 -2502 1055 25 -2503 1055 36 -2504 1055 17 -2505 1056 23 -2506 1056 11 -2507 1056 14 -2508 1057 23 -2509 1057 11 -2510 1057 14 -2511 1058 21 -2512 1058 19 -2513 1058 30 -2514 1058 1 -2515 1058 24 -2516 1058 8 -2517 1058 25 -2518 1058 17 -2519 1058 14 -2520 1058 33 -2521 1059 19 -2522 1059 30 -2523 1059 1 -2524 1059 24 -2525 1059 8 -2526 1059 36 -2527 1060 19 -2528 1060 30 -2529 1060 23 -2530 1060 11 -2531 1060 8 -2532 1060 34 -2533 1060 17 -2534 1060 14 -2535 1061 19 -2536 1061 13 -2537 1061 11 -2538 1061 15 -2539 1061 1 -2540 1061 36 -2541 1062 16 -2542 1062 31 -2543 1062 26 -2544 1063 21 -2545 1063 1 -2546 1063 3 -2547 1063 25 -2548 1063 27 -2549 1064 21 -2550 1064 30 -2551 1064 23 -2552 1064 11 -2553 1064 1 -2554 1064 24 -2555 1064 8 -2556 1064 25 -2557 1064 12 -2558 1064 34 -2559 1064 16 -2560 1064 5 -2561 1064 31 -2562 1064 22 -2563 1064 39 -2564 1064 17 -2565 1064 14 -2566 1064 33 -2567 1064 32 -2568 1064 27 -2569 1065 30 -2570 1066 19 -2571 1066 30 -2572 1066 23 -2573 1066 1 -2574 1066 8 -2575 1066 3 -2576 1066 25 -2577 1066 16 -2578 1066 17 -2579 1066 14 -2580 1067 1 -2581 1067 3 -2582 1067 25 -2583 1068 30 -2584 1068 8 -2585 1068 17 -2586 1069 19 -2587 1069 30 -2588 1069 1 -2589 1069 24 -2590 1069 8 -2591 1069 25 -2592 1069 16 -2593 1069 31 -2594 1069 17 -2595 1069 33 -2596 1069 32 -2597 1069 27 -2598 1070 21 -2599 1070 19 -2600 1070 30 -2601 1070 23 -2602 1070 1 -2603 1070 24 -2604 1070 8 -2605 1070 36 -2606 1070 17 -2607 1070 14 -2608 1071 19 -2609 1071 30 -2610 1071 11 -2611 1071 15 -2612 1071 1 -2613 1071 24 -2614 1071 8 -2615 1071 3 -2616 1071 25 -2617 1071 12 -2618 1071 17 -2619 1071 14 -2620 1071 33 -2621 1071 32 -2622 1072 8 -2623 1072 34 -2624 1072 17 -2625 1073 19 -2626 1073 30 -2627 1073 1 -2628 1073 8 -2629 1073 36 -2630 1074 19 -2631 1074 30 -2632 1074 11 -2633 1074 10 -2634 1074 1 -2635 1074 24 -2636 1074 8 -2637 1074 3 -2638 1074 25 -2639 1074 16 -2640 1074 17 -2641 1074 14 -2642 1074 33 -2643 1074 32 -2644 1075 21 -2645 1075 19 -2646 1075 30 -2647 1075 23 -2648 1075 1 -2649 1075 24 -2650 1075 8 -2651 1075 3 -2652 1075 25 -2653 1075 16 -2654 1075 31 -2655 1075 17 -2656 1075 14 -2657 1075 33 -2658 1075 32 -2659 1075 27 -2660 1075 26 -2661 1076 19 -2662 1076 30 -2663 1076 23 -2664 1076 11 -2665 1076 1 -2666 1076 8 -2667 1076 3 -2668 1076 25 -2669 1076 14 -2670 1077 11 -2671 1078 1 -2672 1078 24 -2673 1078 3 -2674 1078 12 -2675 1078 33 -2676 1078 32 -2677 1079 19 -2678 1079 30 -2679 1079 23 -2680 1079 1 -2681 1079 8 -2682 1079 36 -2683 1079 14 -2684 1080 19 -2685 1080 30 -2686 1080 1 -2687 1080 8 -2688 1080 36 -2689 1081 21 -2690 1081 19 -2691 1081 30 -2692 1081 11 -2693 1081 1 -2694 1081 24 -2695 1081 8 -2696 1081 36 -2697 1081 16 -2698 1081 31 -2699 1081 17 -2700 1081 14 -2701 1081 33 -2702 1081 32 -2703 1082 21 -2704 1082 19 -2705 1082 30 -2706 1082 1 -2707 1082 8 -2708 1082 3 -2709 1082 25 -2710 1082 27 -2711 1083 19 -2712 1083 11 -2713 1083 8 -2714 1083 36 -2715 1084 30 -2716 1084 8 -2717 1084 36 -2718 1085 30 -2719 1085 1 -2720 1085 8 -2721 1085 16 -2722 1085 17 -2723 1086 19 -2724 1086 30 -2725 1086 23 -2726 1086 11 -2727 1086 17 -2728 1086 14 -2729 1087 21 -2730 1087 1 -2731 1087 24 -2732 1087 16 -2733 1087 31 -2734 1087 17 -2735 1087 33 -2736 1087 27 -2737 1087 26 -2738 1088 37 -2739 1089 12 -2740 1089 33 -2741 1090 19 -2742 1090 30 -2743 1090 1 -2744 1090 3 -2745 1090 25 -2746 1091 19 -2747 1091 30 -2748 1091 11 -2749 1091 8 -2750 1091 14 -2751 1092 19 -2752 1092 30 -2753 1092 1 -2754 1092 8 -2755 1092 17 -2756 1093 19 -2757 1093 30 -2758 1093 1 -2759 1093 24 -2760 1093 8 -2761 1093 25 -2762 1093 16 -2763 1093 5 -2764 1093 17 -2765 1093 14 -2766 1093 33 -2767 1093 32 -2768 1094 19 -2769 1094 30 -2770 1094 11 -2771 1094 1 -2772 1094 24 -2773 1094 8 -2774 1094 3 -2775 1094 25 -2776 1094 14 -2777 1094 33 -2778 1094 32 -2779 1095 21 -2780 1095 1 -2781 1095 24 -2782 1095 5 -2783 1096 1 -2784 1096 12 -2785 1097 30 -2786 1097 8 -2787 1098 8 -2788 1098 34 -2789 1099 1 -2790 1099 24 -2791 1099 16 -2792 1099 33 -2793 1100 19 -2794 1100 13 -2795 1100 11 -2796 1100 15 -2797 1100 1 -2798 1100 24 -2799 1100 3 -2800 1100 25 -2801 1100 36 -2802 1100 33 -2803 1100 32 -2804 1101 1 -2805 1101 24 -2806 1102 23 -2807 1103 1 -2808 1103 24 -2809 1103 3 -2810 1103 25 -2811 1103 33 -2812 1104 30 -2813 1104 8 -2814 1104 17 -2815 1105 30 -2816 1105 1 -2817 1105 8 -2818 1106 31 -2819 1106 39 -2820 1106 26 -2821 1107 19 -2822 1107 11 -2823 1107 15 -2824 1107 36 -2825 1108 13 -2826 1108 11 -2827 1108 15 -2828 1108 36 -2829 1108 32 -2830 1109 19 -2831 1109 30 -2832 1109 11 -2833 1109 1 -2834 1109 8 -2835 1109 25 -2836 1109 32 -2837 1110 30 -2838 1110 1 -2839 1110 8 -2840 1110 25 -2841 1110 33 -2842 1111 21 -2843 1111 30 -2844 1111 1 -2845 1111 24 -2846 1111 8 -2847 1111 16 -2848 1111 31 -2849 1111 17 -2850 1111 33 -2851 1111 27 -2852 1112 21 -2853 1112 19 -2854 1112 13 -2855 1112 30 -2856 1112 23 -2857 1112 11 -2858 1112 15 -2859 1112 1 -2860 1112 24 -2861 1112 25 -2862 1112 12 -2863 1112 22 -2864 1112 17 -2865 1112 14 -2866 1112 33 -2867 1113 11 -2868 1113 14 -2869 1114 19 -2870 1114 30 -2871 1114 1 -2872 1114 25 -2873 1115 21 -2874 1115 1 -2875 1115 27 -2876 1116 19 -2877 1116 30 -2878 1116 1 -2879 1116 8 -2880 1116 3 -2881 1116 25 -2882 1116 33 -2883 1117 19 -2884 1117 30 -2885 1117 1 -2886 1117 8 -2887 1117 25 -2888 1117 36 -2889 1117 16 -2890 1117 17 -2891 1118 21 -2892 1118 13 -2893 1118 30 -2894 1118 11 -2895 1118 15 -2896 1118 1 -2897 1118 8 -2898 1118 25 -2899 1118 33 -2900 1118 32 -2901 1119 19 -2902 1119 13 -2903 1119 23 -2904 1119 11 -2905 1119 15 -2906 1120 1 -2907 1120 31 -2908 1121 30 -2909 1121 11 -2910 1121 8 -2911 1121 16 -2912 1121 22 -2913 1121 17 -2914 1122 13 -2915 1122 11 -2916 1122 15 -2917 1123 19 -2918 1123 3 -2919 1123 25 -2920 1123 14 -2921 1124 1 -2922 1124 24 -2923 1124 3 -2924 1124 25 -2925 1124 33 -2926 1125 36 -2927 1125 27 -2928 1126 19 -2929 1126 30 -2930 1126 1 -2931 1126 8 -2932 1126 25 -2933 1126 16 -2934 1126 14 -2935 1127 21 -2936 1127 1 -2937 1127 24 -2938 1127 25 -2939 1127 16 -2940 1127 33 -2941 1128 21 -2942 1128 19 -2943 1128 13 -2944 1128 30 -2945 1128 23 -2946 1128 11 -2947 1128 1 -2948 1128 24 -2949 1128 8 -2950 1128 25 -2951 1128 12 -2952 1128 36 -2953 1128 34 -2954 1128 16 -2955 1128 31 -2956 1128 22 -2957 1128 17 -2958 1128 14 -2959 1128 33 -2960 1128 27 -2961 1128 26 -2962 1129 1 -2963 1129 24 -2964 1129 25 -2965 1129 33 -2966 1130 1 -2967 1130 3 -2968 1130 25 -2969 1130 33 -2970 1130 32 -2971 1131 21 -2972 1131 19 -2973 1131 30 -2974 1131 1 -2975 1131 8 -2976 1131 33 -2977 1132 1 -2978 1132 8 -2979 1132 16 -2980 1133 19 -2981 1133 30 -2982 1133 1 -2983 1134 30 -2984 1134 8 -2985 1134 14 -2986 1135 3 -2987 1136 30 -2988 1136 1 -2989 1136 25 -2990 1136 33 -2991 1137 21 -2992 1137 30 -2993 1137 1 -2994 1137 24 -2995 1137 31 -2996 1137 33 -2997 1138 1 -2998 1139 21 -2999 1139 3 -3000 1139 16 -3001 1139 31 -3002 1139 17 -3003 1139 27 -3004 1140 19 -3005 1140 30 -3006 1140 8 -3007 1141 30 -3008 1141 8 -3009 1141 14 -3010 1142 19 -3011 1142 30 -3012 1142 11 -3013 1142 1 -3014 1142 8 -3015 1143 21 -3016 1143 19 -3017 1143 13 -3018 1143 30 -3019 1143 23 -3020 1143 11 -3021 1143 15 -3022 1143 1 -3023 1143 24 -3024 1143 8 -3025 1143 3 -3026 1143 25 -3027 1143 12 -3028 1143 36 -3029 1143 34 -3030 1143 16 -3031 1143 5 -3032 1143 31 -3033 1143 22 -3034 1143 17 -3035 1143 14 -3036 1143 33 -3037 1143 32 -3038 1143 27 -3039 1143 26 -3040 1144 19 -3041 1144 30 -3042 1144 23 -3043 1144 11 -3044 1144 1 -3045 1144 8 -3046 1144 25 -3047 1144 22 -3048 1144 17 -3049 1144 14 -3050 1145 19 -3051 1145 30 -3052 1145 1 -3053 1145 24 -3054 1145 3 -3055 1145 25 -3056 1145 33 -3057 1145 32 -3058 1146 30 -3059 1146 8 -3060 1147 24 -3061 1147 33 -3062 1148 31 -3063 1148 26 -3064 1149 21 -3065 1149 19 -3066 1149 13 -3067 1149 30 -3068 1149 23 -3069 1149 11 -3070 1149 15 -3071 1149 1 -3072 1149 24 -3073 1149 8 -3074 1149 3 -3075 1149 25 -3076 1149 36 -3077 1149 16 -3078 1149 17 -3079 1149 14 -3080 1149 33 -3081 1149 32 -3082 1150 23 -3083 1150 17 -3084 1150 14 -3085 1151 1 -3086 1151 24 -3087 1151 3 -3088 1151 25 -3089 1151 36 -3090 1151 14 -3091 1151 33 -3092 1152 19 -3093 1152 30 -3094 1152 1 -3095 1152 8 -3096 1152 36 -3097 1153 21 -3098 1153 1 -3099 1153 24 -3100 1153 8 -3101 1153 16 -3102 1153 17 -3103 1154 30 -3104 1154 1 -3105 1155 17 -3106 1156 19 -3107 1156 30 -3108 1156 1 -3109 1156 3 -3110 1156 25 -3111 1157 8 -3112 1157 36 -3113 1157 17 -3114 1157 14 -3115 1158 21 -3116 1158 19 -3117 1158 30 -3118 1158 11 -3119 1158 1 -3120 1158 16 -3121 1158 33 -3122 1158 27 -3123 1159 21 -3124 1159 19 -3125 1159 13 -3126 1159 30 -3127 1159 23 -3128 1159 11 -3129 1159 15 -3130 1159 1 -3131 1159 24 -3132 1159 8 -3133 1159 3 -3134 1159 25 -3135 1159 12 -3136 1159 36 -3137 1159 34 -3138 1159 16 -3139 1159 5 -3140 1159 31 -3141 1159 22 -3142 1159 17 -3143 1159 14 -3144 1159 33 -3145 1159 32 -3146 1159 27 -3147 1159 26 -3148 1160 1 -3149 1160 24 -3150 1160 33 -3151 1161 1 -3152 1161 3 -3153 1161 16 -3154 1161 5 -3155 1161 33 -3156 1162 21 -3157 1162 1 -3158 1162 27 -3159 1163 21 -3160 1163 19 -3161 1163 30 -3162 1163 1 -3163 1163 24 -3164 1163 8 -3165 1163 25 -3166 1163 16 -3167 1163 33 -3168 1164 1 -3169 1165 19 -3170 1165 1 -3171 1165 8 -3172 1165 36 -3173 1165 17 -3174 1165 14 -3175 1166 19 -3176 1166 11 -3177 1166 1 -3178 1166 25 -3179 1166 36 -3180 1166 17 -3181 1166 14 -3182 1167 30 -3183 1167 8 -3184 1167 17 -3185 1168 19 -3186 1168 11 -3187 1168 1 -3188 1168 3 -3189 1168 14 -3190 1169 19 -3191 1169 30 -3192 1169 1 -3193 1169 25 -3194 1169 33 -3195 1170 19 -3196 1170 30 -3197 1170 15 -3198 1170 1 -3199 1170 3 -3200 1170 14 -3201 1171 11 -3202 1171 25 -3203 1171 32 -3204 1172 30 -3205 1173 19 -3206 1173 30 -3207 1173 8 -3208 1173 3 -3209 1173 14 -3210 1173 27 -3211 1174 21 -3212 1174 19 -3213 1174 30 -3214 1174 11 -3215 1174 15 -3216 1174 1 -3217 1174 24 -3218 1174 8 -3219 1174 3 -3220 1174 25 -3221 1174 36 -3222 1174 16 -3223 1174 17 -3224 1174 33 -3225 1174 32 -3226 1175 21 -3227 1175 19 -3228 1175 30 -3229 1175 1 -3230 1175 24 -3231 1175 8 -3232 1175 25 -3233 1175 16 -3234 1175 31 -3235 1175 17 -3236 1175 33 -3237 1175 27 -3238 1175 26 -3239 1176 19 -3240 1176 30 -3241 1176 23 -3242 1176 11 -3243 1176 1 -3244 1176 8 -3245 1176 16 -3246 1176 33 -3247 1177 14 -3248 1178 19 -3249 1178 30 -3250 1178 1 -3251 1179 30 -3252 1180 3 -3253 1180 32 -3254 1182 19 -3255 1182 30 -3256 1182 1 -3257 1182 24 -3258 1182 8 -3259 1182 25 -3260 1182 36 -3261 1182 16 -3262 1182 17 -3263 1182 14 -3264 1183 17 -3265 1184 1 -3266 1184 24 -3267 1184 14 -3268 1184 33 -3269 1185 21 -3270 1185 30 -3271 1185 16 -3272 1185 31 -3273 1185 17 -3274 1186 21 -3275 1186 5 -3276 1186 27 -3277 1186 26 -3278 1187 21 -3279 1187 19 -3280 1187 30 -3281 1187 23 -3282 1187 11 -3283 1187 15 -3284 1187 1 -3285 1187 24 -3286 1187 8 -3287 1187 3 -3288 1187 25 -3289 1187 12 -3290 1187 16 -3291 1187 17 -3292 1187 14 -3293 1187 33 -3294 1188 21 -3295 1188 30 -3296 1188 1 -3297 1188 24 -3298 1188 8 -3299 1188 16 -3300 1188 31 -3301 1188 17 -3302 1188 33 -3303 1188 27 -3304 1188 26 -3305 1189 21 -3306 1189 30 -3307 1189 8 -3308 1189 16 -3309 1189 17 -3310 1190 23 -3311 1190 36 -3312 1190 14 -3313 1191 21 -3314 1191 19 -3315 1191 30 -3316 1191 8 -3317 1191 16 -3318 1191 31 -3319 1191 17 -3320 1191 27 -3321 1191 26 -3322 1192 19 -3323 1192 30 -3324 1192 1 -3325 1192 8 -3326 1193 16 -3327 1193 31 -3328 1193 17 -3329 1193 26 -3330 1194 8 -3331 1194 25 -3332 1195 30 -3333 1195 8 -3334 1195 16 -3335 1196 30 -3336 1196 1 -3337 1197 21 -3338 1197 30 -3339 1197 24 -3340 1197 8 -3341 1197 16 -3342 1197 17 -3343 1197 27 -3344 1198 30 -3345 1198 8 -3346 1198 16 -3347 1198 31 -3348 1199 30 -3349 1199 1 -3350 1199 8 -3351 1199 36 -3352 1199 14 -3353 1200 19 -3354 1200 1 -3355 1200 25 -3356 1201 13 -3357 1202 1 -3358 1202 24 -3359 1202 33 -3360 1203 21 -3361 1203 30 -3362 1203 1 -3363 1203 24 -3364 1203 8 -3365 1203 3 -3366 1203 25 -3367 1203 34 -3368 1203 16 -3369 1203 5 -3370 1203 17 -3371 1203 27 -3372 1204 30 -3373 1204 8 -3374 1204 14 -3375 1205 12 -3376 1206 30 -3377 1206 8 -3378 1207 19 -3379 1207 30 -3380 1207 23 -3381 1207 1 -3382 1207 8 -3383 1207 25 -3384 1207 16 -3385 1207 5 -3386 1207 31 -3387 1207 17 -3388 1207 14 -3389 1207 33 -3390 1207 27 -3391 1208 19 -3392 1208 30 -3393 1208 24 -3394 1208 8 -3395 1208 36 -3396 1208 16 -3397 1208 31 -3398 1208 17 -3399 1208 14 -3400 1209 30 -3401 1209 11 -3402 1209 15 -3403 1209 1 -3404 1210 21 -3405 1211 8 -3406 1211 36 -3407 1211 16 -3408 1211 31 -3409 1211 27 -3410 1211 26 -3411 1212 33 -3412 1213 1 -3413 1213 3 -3414 1213 25 -3415 1213 33 -3416 1214 21 -3417 1214 36 -3418 1214 16 -3419 1214 31 -3420 1215 23 -3421 1215 14 -3422 1216 19 -3423 1216 11 -3424 1216 25 -3425 1217 11 -3426 1217 3 -3427 1217 25 -3428 1217 16 -3429 1217 22 -3430 1217 17 -3431 1217 14 -3432 1217 32 -3433 1218 19 -3434 1218 30 -3435 1218 1 -3436 1218 24 -3437 1218 33 -3438 1219 19 -3439 1219 11 -3440 1219 25 -3441 1219 32 -3442 1220 30 -3443 1220 1 -3444 1220 8 -3445 1220 25 -3446 1220 36 -3447 1220 34 -3448 1220 16 -3449 1220 17 -3450 1221 19 -3451 1221 1 -3452 1221 3 -3453 1221 25 -3454 1221 17 -3455 1222 19 -3456 1222 30 -3457 1222 23 -3458 1222 11 -3459 1222 8 -3460 1222 17 -3461 1222 14 -3462 1223 21 -3463 1223 19 -3464 1223 30 -3465 1223 23 -3466 1223 1 -3467 1223 8 -3468 1223 16 -3469 1223 17 -3470 1223 14 -3471 1224 3 -3472 1224 25 -3473 1224 32 -3474 1225 21 -3475 1225 19 -3476 1225 30 -3477 1225 1 -3478 1225 25 -3479 1225 16 -3480 1225 17 -3481 1226 21 -3482 1226 19 -3483 1226 13 -3484 1226 30 -3485 1226 23 -3486 1226 11 -3487 1226 15 -3488 1226 1 -3489 1226 24 -3490 1226 8 -3491 1226 3 -3492 1226 25 -3493 1226 12 -3494 1226 36 -3495 1226 34 -3496 1226 16 -3497 1226 5 -3498 1226 31 -3499 1226 22 -3500 1226 17 -3501 1226 14 -3502 1226 33 -3503 1226 32 -3504 1226 27 -3505 1226 26 -3506 1227 19 -3507 1227 30 -3508 1227 8 -3509 1227 14 -3510 1228 21 -3511 1228 1 -3512 1228 24 -3513 1228 25 -3514 1228 27 -3515 1229 21 -3516 1229 30 -3517 1229 1 -3518 1229 8 -3519 1229 16 -3520 1229 17 -3521 1229 14 -3522 1230 19 -3523 1230 30 -3524 1230 14 -3525 1231 19 -3526 1231 30 -3527 1231 1 -3528 1231 8 -3529 1231 25 -3530 1231 17 -3531 1231 14 -3532 1232 30 -3533 1232 1 -3534 1232 8 -3535 1232 17 -3536 1233 21 -3537 1233 30 -3538 1233 1 -3539 1233 25 -3540 1233 36 -3541 1234 21 -3542 1234 19 -3543 1234 30 -3544 1234 1 -3545 1234 24 -3546 1234 3 -3547 1234 25 -3548 1234 16 -3549 1234 31 -3550 1234 17 -3551 1234 27 -3552 1235 19 -3553 1235 30 -3554 1235 11 -3555 1235 1 -3556 1235 3 -3557 1236 19 -3558 1236 30 -3559 1236 8 -3560 1237 30 -3561 1237 8 -3562 1238 21 -3563 1238 19 -3564 1238 30 -3565 1238 1 -3566 1238 24 -3567 1238 8 -3568 1238 25 -3569 1238 16 -3570 1238 17 -3571 1238 33 -3572 1239 1 -3573 1239 24 -3574 1239 3 -3575 1239 25 -3576 1239 33 -3577 1239 32 -3578 1240 30 -3579 1240 8 -3580 1240 16 -3581 1240 33 -3582 1241 24 -3583 1241 3 -3584 1241 33 -3585 1242 19 -3586 1242 30 -3587 1243 19 -3588 1243 30 -3589 1243 1 -3590 1244 19 -3591 1244 30 -3592 1244 11 -3593 1244 8 -3594 1244 16 -3595 1245 19 -3596 1245 30 -3597 1246 19 -3598 1246 30 -3599 1246 1 -3600 1247 21 -3601 1247 1 -3602 1247 8 -3603 1247 16 -3604 1247 31 -3605 1247 17 -3606 1247 33 -3607 1247 26 -3608 1248 30 -3609 1249 30 -3610 1250 30 -3611 1250 1 -3612 1250 8 -3613 1251 21 -3614 1251 19 -3615 1251 30 -3616 1251 1 -3617 1251 24 -3618 1251 8 -3619 1251 3 -3620 1251 25 -3621 1251 12 -3622 1251 16 -3623 1251 33 -3624 1251 27 -3625 1252 19 -3626 1252 30 -3627 1252 1 -3628 1252 8 -3629 1253 21 -3630 1253 30 -3631 1253 25 -3632 1253 16 -3633 1253 33 -3634 1253 27 -3635 1254 1 -3636 1254 24 -3637 1254 25 -3638 1254 27 -3639 1255 19 -3640 1255 30 -3641 1255 1 -3642 1255 25 -3643 1256 17 -3644 1257 3 -3645 1257 16 -3646 1257 17 -3647 1258 34 -3648 1259 11 -3649 1259 14 -3650 1260 8 -3651 1261 19 -3652 1261 30 -3653 1261 1 -3654 1261 25 -3655 1262 36 -3656 1263 19 -3657 1263 11 -3658 1263 15 -3659 1263 3 -3660 1263 25 -3661 1263 32 -3662 1264 21 -3663 1264 19 -3664 1264 30 -3665 1264 1 -3666 1264 8 -3667 1264 25 -3668 1264 16 -3669 1264 17 -3670 1264 27 -3671 1265 1 -3672 1265 3 -3673 1265 12 -3674 1265 33 -3675 1266 19 -3676 1266 1 -3677 1266 3 -3678 1266 25 -3679 1266 33 -3680 1266 32 -3681 1267 21 -3682 1267 30 -3683 1267 1 -3684 1267 24 -3685 1267 36 -3686 1267 33 -3687 1268 21 -3688 1268 19 -3689 1268 30 -3690 1268 1 -3691 1268 8 -3692 1268 16 -3693 1268 17 -3694 1268 14 -3695 1268 27 -3696 1269 21 -3697 1269 1 -3698 1269 24 -3699 1269 16 -3700 1269 5 -3701 1269 27 -3702 1270 1 -3703 1270 3 -3704 1270 25 -3705 1270 33 -3706 1271 30 -3707 1271 1 -3708 1271 8 -3709 1271 36 -3710 1271 16 -3711 1271 17 -3712 1272 30 -3713 1272 1 -3714 1272 33 -3715 1273 19 -3716 1273 30 -3717 1273 1 -3718 1273 8 -3719 1273 16 -3720 1273 14 -3721 1274 1 -3722 1274 3 -3723 1274 25 -3724 1274 33 -3725 1275 21 -3726 1275 36 -3727 1275 16 -3728 1275 27 -3729 1276 30 -3730 1276 1 -3731 1276 25 -3732 1276 12 -3733 1276 33 -3734 1277 21 -3735 1277 19 -3736 1277 30 -3737 1277 11 -3738 1277 1 -3739 1277 8 -3740 1277 25 -3741 1277 12 -3742 1277 36 -3743 1277 34 -3744 1277 16 -3745 1277 5 -3746 1277 31 -3747 1277 17 -3748 1277 33 -3749 1277 27 -3750 1278 1 -3751 1278 24 -3752 1278 36 -3753 1278 33 -3754 1279 16 -3755 1279 31 -3756 1279 32 -3757 1279 27 -3758 1279 26 -3759 1280 19 -3760 1280 30 -3761 1280 11 -3762 1280 1 -3763 1280 8 -3764 1280 3 -3765 1280 25 -3766 1280 36 -3767 1281 21 -3768 1281 16 -3769 1281 31 -3770 1281 17 -3771 1281 27 -3772 1282 21 -3773 1282 30 -3774 1282 1 -3775 1282 24 -3776 1282 8 -3777 1282 16 -3778 1282 5 -3779 1282 31 -3780 1282 22 -3781 1282 17 -3782 1282 33 -3783 1282 27 -3784 1283 19 -3785 1283 30 -3786 1283 1 -3787 1283 25 -3788 1284 8 -3789 1284 3 -3790 1284 25 -3791 1284 12 -3792 1284 33 -3793 1285 1 -3794 1285 24 -3795 1285 3 -3796 1285 25 -3797 1285 33 -3798 1286 23 -3799 1286 11 -3800 1287 16 -3801 1288 25 -3802 1289 21 -3803 1290 19 -3804 1290 33 -3805 1291 13 -3806 1291 23 -3807 1291 15 -3808 1291 36 -3809 1292 1 -3810 1292 24 -3811 1292 25 -3812 1292 12 -3813 1292 33 -3814 1293 21 -3815 1293 5 -3816 1293 27 -3817 1294 23 -3818 1295 21 -3819 1295 1 -3820 1295 24 -3821 1295 3 -3822 1295 25 -3823 1295 12 -3824 1295 16 -3825 1295 5 -3826 1295 22 -3827 1295 27 -3828 1296 1 -3829 1296 24 -3830 1296 33 -3831 1297 13 -3832 1297 11 -3833 1297 15 -3834 1297 8 -3835 1298 1 -3836 1298 3 -3837 1298 25 -3838 1298 33 -3839 1299 21 -3840 1299 19 -3841 1299 13 -3842 1299 30 -3843 1299 23 -3844 1299 1 -3845 1299 24 -3846 1299 8 -3847 1299 3 -3848 1299 25 -3849 1299 17 -3850 1299 33 -3851 1300 21 -3852 1300 1 -3853 1300 16 -3854 1300 31 -3855 1300 17 -3856 1300 33 -3857 1300 27 -3858 1300 26 -3859 1301 21 -3860 1301 30 -3861 1301 1 -3862 1301 8 -3863 1301 36 -3864 1301 17 -3865 1301 14 -3866 1302 19 -3867 1302 30 -3868 1302 11 -3869 1302 15 -3870 1302 1 -3871 1302 24 -3872 1302 8 -3873 1302 25 -3874 1302 16 -3875 1302 31 -3876 1302 17 -3877 1302 14 -3878 1303 1 -3879 1303 25 -3880 1303 12 -3881 1303 16 -3882 1303 5 -3883 1303 31 -3884 1303 22 -3885 1303 17 -3886 1303 26 -3887 1304 19 -3888 1304 30 -3889 1304 1 -3890 1304 8 -3891 1304 25 -3892 1305 21 -3893 1305 1 -3894 1305 24 -3895 1305 33 -3896 1306 19 -3897 1306 30 -3898 1306 11 -3899 1306 1 -3900 1306 8 -3901 1306 17 -3902 1306 14 -3903 1307 21 -3904 1307 19 -3905 1307 30 -3906 1307 11 -3907 1307 1 -3908 1307 8 -3909 1307 17 -3910 1307 27 -3911 1308 30 -3912 1308 8 -3913 1308 16 -3914 1308 17 -3915 1309 30 -3916 1309 8 -3917 1310 21 -3918 1310 19 -3919 1310 1 -3920 1310 24 -3921 1310 25 -3922 1310 36 -3923 1310 16 -3924 1310 33 -3925 1310 27 -3926 1311 19 -3927 1311 30 -3928 1311 1 -3929 1311 3 -3930 1311 25 -3931 1312 1 -3932 1312 25 -3933 1312 33 -3934 1313 23 -3935 1314 36 -3936 1314 16 -3937 1314 31 -3938 1314 17 -3939 1314 26 -3940 1315 23 -3941 1315 14 -3942 1316 21 -3943 1316 19 -3944 1316 23 -3945 1316 1 -3946 1316 24 -3947 1316 8 -3948 1316 36 -3949 1316 16 -3950 1316 14 -3951 1317 19 -3952 1317 30 -3953 1317 23 -3954 1317 11 -3955 1317 15 -3956 1317 8 -3957 1317 25 -3958 1317 36 -3959 1317 17 -3960 1317 14 -3961 1318 19 -3962 1318 1 -3963 1318 24 -3964 1318 25 -3965 1318 16 -3966 1318 33 -3967 1319 19 -3968 1319 15 -3969 1319 1 -3970 1319 24 -3971 1319 3 -3972 1319 33 -3973 1319 32 -3974 1320 3 -3975 1320 25 -3976 1320 32 -3977 1321 21 -3978 1322 1 -3979 1322 3 -3980 1322 25 -3981 1322 33 -3982 1323 25 -3983 1324 21 -3984 1324 30 -3985 1324 8 -3986 1324 16 -3987 1324 31 -3988 1324 17 -3989 1324 27 -3990 1325 19 -3991 1325 30 -3992 1325 11 -3993 1325 8 -3994 1325 14 -3995 1326 1 -3996 1326 25 -3997 1326 36 -3998 1327 21 -3999 1327 27 -4000 1328 21 -4001 1328 30 -4002 1328 1 -4003 1328 24 -4004 1328 8 -4005 1328 36 -4006 1328 16 -4007 1328 5 -4008 1328 31 -4009 1328 17 -4010 1328 33 -4011 1328 27 -4012 1328 26 -4013 1329 19 -4014 1329 30 -4015 1329 23 -4016 1329 11 -4017 1329 1 -4018 1329 8 -4019 1329 16 -4020 1329 17 -4021 1329 14 -4022 1330 1 -4023 1330 12 -4024 1330 36 -4025 1330 5 -4026 1330 22 -4027 1330 33 -4028 1331 1 -4029 1332 19 -4030 1332 30 -4031 1332 1 -4032 1332 24 -4033 1332 8 -4034 1332 25 -4035 1332 34 -4036 1332 16 -4037 1332 5 -4038 1332 31 -4039 1332 22 -4040 1332 17 -4041 1332 14 -4042 1332 33 -4043 1332 27 -4044 1333 30 -4045 1333 8 -4046 1334 1 -4047 1334 24 -4048 1334 3 -4049 1334 25 -4050 1334 12 -4051 1334 33 -4052 1335 30 -4053 1335 1 -4054 1335 24 -4055 1335 25 -4056 1335 33 -4057 1336 33 -4058 1337 19 -4059 1337 30 -4060 1337 1 -4061 1337 24 -4062 1337 33 -4063 1338 21 -4064 1338 1 -4065 1338 24 -4066 1338 36 -4067 1338 33 -4068 1338 27 -4069 1339 16 -4070 1339 17 -4071 1340 19 -4072 1340 30 -4073 1340 23 -4074 1340 11 -4075 1340 1 -4076 1340 8 -4077 1340 36 -4078 1340 14 -4079 1341 21 -4080 1341 19 -4081 1341 30 -4082 1341 23 -4083 1341 11 -4084 1341 1 -4085 1341 8 -4086 1341 3 -4087 1341 25 -4088 1341 16 -4089 1341 31 -4090 1341 17 -4091 1341 14 -4092 1341 33 -4093 1341 27 -4094 1342 19 -4095 1342 30 -4096 1342 11 -4097 1342 1 -4098 1342 24 -4099 1342 3 -4100 1342 25 -4101 1342 33 -4102 1342 32 -4103 1343 1 -4104 1343 3 -4105 1343 25 -4106 1343 33 -4107 1344 21 -4108 1344 1 -4109 1344 24 -4110 1344 27 -4111 1345 21 -4112 1345 19 -4113 1345 30 -4114 1345 11 -4115 1345 1 -4116 1345 8 -4117 1345 25 -4118 1345 16 -4119 1345 31 -4120 1345 17 -4121 1345 33 -4122 1345 27 -4123 1345 26 -4124 1346 19 -4125 1346 1 -4126 1346 25 -4127 1346 36 -4128 1346 32 -4129 1347 21 -4130 1347 1 -4131 1347 12 -4132 1347 5 -4133 1347 22 -4134 1348 19 -4135 1348 30 -4136 1348 8 -4137 1349 19 -4138 1349 30 -4139 1349 23 -4140 1349 11 -4141 1349 1 -4142 1349 8 -4143 1349 25 -4144 1349 16 -4145 1349 17 -4146 1349 14 -4147 1350 21 -4148 1350 1 -4149 1350 24 -4150 1350 3 -4151 1350 25 -4152 1350 12 -4153 1350 16 -4154 1350 5 -4155 1350 31 -4156 1350 22 -4157 1350 27 -4158 1350 26 -4159 1351 30 -4160 1351 1 -4161 1351 8 -4162 1351 3 -4163 1351 25 -4164 1351 32 -4165 1352 8 -4166 1353 8 -4167 1353 17 -4168 1354 21 -4169 1354 5 -4170 1354 31 -4171 1354 27 -4172 1355 21 -4173 1355 19 -4174 1355 13 -4175 1355 30 -4176 1355 23 -4177 1355 11 -4178 1355 15 -4179 1355 1 -4180 1355 24 -4181 1355 8 -4182 1355 3 -4183 1355 25 -4184 1355 12 -4185 1355 36 -4186 1355 34 -4187 1355 16 -4188 1355 5 -4189 1355 31 -4190 1355 22 -4191 1355 17 -4192 1355 14 -4193 1355 33 -4194 1355 32 -4195 1355 27 -4196 1355 26 -4197 1356 8 -4198 1357 21 -4199 1357 19 -4200 1357 30 -4201 1357 11 -4202 1357 8 -4203 1358 21 -4204 1358 19 -4205 1358 13 -4206 1358 30 -4207 1358 23 -4208 1358 11 -4209 1358 15 -4210 1358 1 -4211 1358 24 -4212 1358 8 -4213 1358 3 -4214 1358 25 -4215 1358 12 -4216 1358 34 -4217 1358 16 -4218 1358 5 -4219 1358 31 -4220 1358 22 -4221 1358 17 -4222 1358 14 -4223 1358 33 -4224 1358 32 -4225 1358 27 -4226 1358 26 -4227 1359 21 -4228 1359 16 -4229 1359 5 -4230 1360 30 -4231 1360 1 -4232 1360 36 -4233 1361 24 -4234 1362 5 -4235 1363 21 -4236 1363 19 -4237 1363 13 -4238 1363 30 -4239 1363 23 -4240 1363 11 -4241 1363 15 -4242 1363 1 -4243 1363 24 -4244 1363 8 -4245 1363 3 -4246 1363 25 -4247 1363 12 -4248 1363 36 -4249 1363 34 -4250 1363 16 -4251 1363 5 -4252 1363 31 -4253 1363 22 -4254 1363 17 -4255 1363 14 -4256 1363 33 -4257 1363 32 -4258 1363 27 -4259 1363 26 -4260 1364 19 -4261 1364 30 -4262 1364 23 -4263 1364 11 -4264 1364 8 -4265 1364 16 -4266 1364 5 -4267 1364 32 -4268 1364 26 -4269 1365 19 -4270 1365 13 -4271 1365 23 -4272 1365 11 -4273 1365 15 -4274 1365 8 -4275 1365 34 -4276 1365 14 -4277 1366 1 -4278 1366 25 -4279 1366 33 -4280 1367 1 -4281 1367 24 -4282 1368 21 -4283 1368 19 -4284 1368 30 -4285 1368 1 -4286 1368 24 -4287 1368 8 -4288 1368 3 -4289 1368 25 -4290 1368 16 -4291 1368 17 -4292 1368 33 -4293 1369 19 -4294 1369 30 -4295 1369 8 -4296 1369 25 -4297 1370 21 -4298 1370 19 -4299 1370 13 -4300 1370 23 -4301 1370 11 -4302 1370 15 -4303 1370 1 -4304 1370 24 -4305 1370 3 -4306 1370 25 -4307 1370 12 -4308 1370 36 -4309 1370 16 -4310 1370 17 -4311 1370 14 -4312 1370 33 -4313 1370 32 -4314 1370 27 -4315 1370 26 -4316 1371 21 -4317 1371 19 -4318 1371 30 -4319 1371 11 -4320 1371 1 -4321 1371 8 -4322 1371 3 -4323 1371 25 -4324 1371 16 -4325 1371 17 -4326 1371 33 -4327 1372 21 -4328 1372 30 -4329 1372 11 -4330 1372 8 -4331 1372 36 -4332 1372 16 -4333 1372 17 -4334 1372 33 -4335 1372 27 -4336 1372 26 -4337 1373 19 -4338 1373 11 -4339 1374 30 -4340 1375 21 -4341 1375 19 -4342 1375 30 -4343 1375 1 -4344 1375 25 -4345 1376 8 -4346 1377 21 -4347 1377 19 -4348 1377 30 -4349 1377 1 -4350 1377 24 -4351 1377 8 -4352 1377 3 -4353 1377 25 -4354 1377 12 -4355 1377 16 -4356 1377 5 -4357 1377 31 -4358 1377 22 -4359 1377 17 -4360 1377 33 -4361 1377 32 -4362 1377 27 -4363 1377 26 -4364 1378 21 -4365 1378 16 -4366 1378 27 -4367 1379 19 -4368 1379 30 -4369 1379 11 -4370 1379 1 -4371 1379 8 -4372 1379 3 -4373 1379 25 -4374 1379 36 -4375 1379 16 -4376 1379 33 -4377 1380 30 -4378 1381 21 -4379 1381 30 -4380 1381 16 -4381 1381 17 -4382 1381 27 -4383 1382 1 -4384 1383 19 -4385 1383 11 -4386 1383 1 -4387 1383 8 -4388 1383 14 -4389 1384 21 -4390 1384 30 -4391 1384 1 -4392 1384 24 -4393 1384 8 -4394 1384 16 -4395 1384 31 -4396 1384 17 -4397 1384 33 -4398 1384 27 -4399 1384 26 -4400 1385 19 -4401 1385 30 -4402 1385 8 -4403 1385 17 -4404 1385 14 -4405 1386 21 -4406 1386 36 -4407 1386 16 -4408 1386 31 -4409 1386 27 -4410 1387 30 -4411 1387 8 -4412 1388 21 -4413 1388 19 -4414 1388 30 -4415 1388 1 -4416 1388 16 -4417 1388 31 -4418 1388 17 -4419 1388 27 -4420 1389 21 -4421 1389 16 -4422 1389 27 -4423 1390 1 -4424 1390 8 -4425 1390 16 -4426 1390 17 -4427 1391 19 -4428 1392 16 -4429 1393 30 -4430 1393 1 -4431 1393 8 -4432 1393 16 -4433 1393 17 -4434 1393 14 -4435 1393 33 -4436 1394 30 -4437 1394 8 -4438 1395 23 -4439 1395 11 -4440 1395 36 -4441 1395 14 -4442 1396 19 -4443 1396 30 -4444 1396 1 -4445 1396 24 -4446 1396 3 -4447 1396 25 -4448 1396 33 -4449 1396 32 -4450 1397 30 -4451 1398 24 -4452 1399 30 -4453 1400 19 -4454 1400 11 -4455 1401 19 -4456 1402 1 -4457 1402 3 -4458 1402 25 -4459 1402 33 -4460 1402 32 -4461 1403 31 -4462 1404 21 -4463 1404 1 -4464 1404 16 -4465 1404 17 -4466 1404 27 -4467 1405 21 -4468 1405 19 -4469 1405 30 -4470 1405 1 -4471 1405 24 -4472 1405 3 -4473 1405 25 -4474 1405 5 -4475 1405 33 -4476 1405 32 -4477 1406 24 -4478 1407 21 -4479 1407 5 -4480 1407 31 -4481 1407 27 -4482 1407 26 -4483 1408 21 -4484 1408 19 -4485 1408 30 -4486 1408 12 -4487 1408 16 -4488 1408 5 -4489 1408 22 -4490 1408 27 -4491 1409 21 -4492 1409 1 -4493 1409 5 -4494 1409 31 -4495 1409 22 -4496 1409 17 -4497 1409 33 -4498 1409 27 -4499 1409 26 -4500 1410 19 -4501 1410 30 -4502 1410 23 -4503 1410 11 -4504 1410 1 -4505 1410 8 -4506 1410 36 -4507 1410 14 -4508 1411 21 -4509 1411 1 -4510 1411 24 -4511 1411 33 -4512 1411 27 -4513 1412 12 -4514 1413 21 -4515 1413 30 -4516 1413 8 -4517 1413 16 -4518 1413 17 -4519 1413 27 -4520 1414 1 -4521 1414 24 -4522 1414 3 -4523 1414 12 -4524 1414 33 -4525 1415 8 -4526 1415 17 -4527 1415 14 -4528 1416 19 -4529 1416 1 -4530 1416 25 -4531 1416 33 -4532 1417 1 -4533 1418 21 -4534 1418 16 -4535 1418 31 -4536 1419 23 -4537 1419 11 -4538 1419 14 -4539 1420 30 -4540 1420 1 -4541 1420 24 -4542 1420 8 -4543 1420 17 -4544 1420 33 -4545 1421 21 -4546 1421 19 -4547 1421 30 -4548 1421 1 -4549 1421 24 -4550 1421 8 -4551 1421 16 -4552 1421 17 -4553 1421 27 -4554 1422 19 -4555 1422 13 -4556 1422 11 -4557 1422 15 -4558 1422 1 -4559 1422 36 -4560 1423 30 -4561 1423 8 -4562 1423 16 -4563 1423 17 -4564 1424 21 -4565 1424 31 -4566 1424 26 -4567 1425 21 -4568 1425 30 -4569 1425 1 -4570 1425 24 -4571 1425 8 -4572 1425 16 -4573 1425 31 -4574 1425 17 -4575 1425 33 -4576 1425 27 -4577 1425 26 -4578 1426 21 -4579 1426 30 -4580 1426 1 -4581 1426 24 -4582 1426 16 -4583 1426 31 -4584 1426 17 -4585 1426 33 -4586 1426 27 -4587 1427 13 -4588 1427 11 -4589 1427 15 -4590 1428 1 -4591 1429 1 -4592 1429 24 -4593 1429 3 -4594 1429 25 -4595 1429 12 -4596 1429 33 -4597 1430 1 -4598 1431 30 -4599 1431 8 -4600 1432 19 -4601 1433 30 -4602 1433 1 -4603 1433 24 -4604 1433 25 -4605 1433 31 -4606 1433 33 -4607 1434 3 -4608 1434 5 -4609 1434 31 -4610 1434 27 -4611 1435 19 -4612 1435 1 -4613 1435 25 -4614 1435 33 -4615 1436 21 -4616 1436 1 -4617 1436 24 -4618 1436 8 -4619 1436 25 -4620 1436 16 -4621 1436 17 -4622 1436 33 -4623 1436 27 -4624 1437 30 -4625 1437 8 -4626 1437 17 -4627 1437 14 -4628 1438 21 -4629 1438 1 -4630 1438 24 -4631 1438 5 -4632 1438 31 -4633 1438 17 -4634 1438 27 -4635 1439 21 -4636 1439 19 -4637 1439 13 -4638 1439 30 -4639 1439 23 -4640 1439 11 -4641 1439 15 -4642 1439 1 -4643 1439 24 -4644 1439 8 -4645 1439 3 -4646 1439 25 -4647 1439 36 -4648 1439 34 -4649 1439 16 -4650 1439 5 -4651 1439 31 -4652 1439 17 -4653 1439 14 -4654 1439 33 -4655 1439 32 -4656 1439 27 -4657 1439 26 -4658 1440 21 -4659 1440 1 -4660 1440 5 -4661 1440 27 -4662 1441 13 -4663 1441 23 -4664 1441 11 -4665 1441 15 -4666 1441 1 -4667 1441 14 -4668 1442 19 -4669 1442 1 -4670 1442 3 -4671 1442 25 -4672 1442 33 -4673 1443 1 -4674 1443 3 -4675 1443 25 -4676 1443 32 -4677 1444 30 -4678 1444 8 -4679 1445 19 -4680 1445 30 -4681 1445 11 -4682 1445 8 -4683 1445 12 -4684 1445 34 -4685 1445 33 -4686 1446 25 -4687 1446 12 -4688 1446 33 -4689 1447 16 -4690 1447 31 -4691 1447 17 -4692 1447 27 -4693 1447 26 -4694 1448 1 -4695 1448 25 -4696 1449 21 -4697 1449 1 -4698 1449 27 -4699 1450 19 -4700 1450 30 -4701 1450 1 -4702 1450 24 -4703 1450 3 -4704 1450 25 -4705 1450 12 -4706 1450 22 -4707 1450 33 -4708 1451 19 -4709 1451 30 -4710 1451 1 -4711 1451 8 -4712 1451 3 -4713 1451 25 -4714 1451 16 -4715 1451 32 -4716 1452 19 -4717 1452 30 -4718 1453 19 -4719 1453 30 -4720 1453 1 -4721 1453 24 -4722 1453 3 -4723 1453 25 -4724 1453 33 -4725 1453 32 -4726 1454 21 -4727 1454 30 -4728 1454 1 -4729 1454 24 -4730 1454 8 -4731 1454 16 -4732 1454 33 -4733 1454 27 -4734 1455 21 -4735 1455 19 -4736 1455 1 -4737 1455 24 -4738 1455 3 -4739 1455 25 -4740 1455 12 -4741 1455 16 -4742 1455 33 -4743 1455 32 -4744 1455 27 -4745 1456 21 -4746 1456 30 -4747 1456 16 -4748 1456 17 -4749 1456 27 -4750 1457 21 -4751 1457 30 -4752 1457 17 -4753 1457 27 -4754 1458 23 -4755 1458 11 -4756 1458 14 -4757 1459 30 -4758 1459 1 -4759 1459 8 -4760 1459 34 -4761 1459 16 -4762 1459 31 -4763 1459 17 -4764 1459 26 -4765 1460 19 -4766 1460 30 -4767 1460 11 -4768 1460 24 -4769 1460 3 -4770 1460 25 -4771 1460 33 -4772 1460 32 -4773 1461 19 -4774 1461 1 -4775 1461 25 -4776 1461 33 -4777 1462 30 -4778 1462 1 -4779 1462 3 -4780 1462 25 -4781 1462 33 -4782 1463 21 -4783 1463 19 -4784 1463 30 -4785 1463 1 -4786 1463 3 -4787 1463 25 -4788 1463 12 -4789 1463 36 -4790 1463 33 -4791 1464 19 -4792 1464 30 -4793 1464 11 -4794 1464 15 -4795 1464 1 -4796 1464 8 -4797 1464 3 -4798 1464 25 -4799 1464 16 -4800 1464 17 -4801 1464 33 -4802 1464 27 -4803 1465 1 -4804 1465 3 -4805 1465 25 -4806 1465 33 -4807 1466 19 -4808 1466 30 -4809 1466 23 -4810 1466 11 -4811 1466 1 -4812 1466 25 -4813 1466 32 -4814 1467 21 -4815 1467 11 -4816 1467 1 -4817 1467 36 -4818 1467 5 -4819 1467 33 -4820 1468 11 -4821 1468 15 -4822 1468 3 -4823 1469 21 -4824 1469 19 -4825 1469 30 -4826 1469 24 -4827 1469 8 -4828 1469 16 -4829 1469 17 -4830 1469 14 -4831 1469 33 -4832 1469 27 -4833 1470 8 -4834 1471 21 -4835 1471 19 -4836 1471 30 -4837 1471 11 -4838 1471 1 -4839 1471 24 -4840 1471 8 -4841 1471 16 -4842 1471 33 -4843 1472 19 -4844 1472 1 -4845 1472 8 -4846 1472 25 -4847 1473 8 -4848 1474 1 -4849 1474 24 -4850 1475 19 -4851 1475 30 -4852 1475 11 -4853 1475 1 -4854 1475 8 -4855 1476 21 -4856 1476 1 -4857 1476 8 -4858 1476 16 -4859 1476 17 -4860 1476 14 -4861 1477 11 -4862 1477 15 -4863 1477 1 -4864 1477 8 -4865 1477 36 -4866 1477 34 -4867 1477 14 -4868 1477 33 -4869 1478 30 -4870 1478 36 -4871 1478 16 -4872 1478 31 -4873 1478 17 -4874 1479 21 -4875 1479 11 -4876 1479 1 -4877 1479 3 -4878 1479 25 -4879 1479 32 -4880 1479 27 -4881 1480 21 -4882 1480 19 -4883 1480 13 -4884 1480 30 -4885 1480 15 -4886 1480 1 -4887 1480 24 -4888 1480 8 -4889 1480 25 -4890 1480 16 -4891 1480 22 -4892 1480 17 -4893 1480 14 -4894 1480 33 -4895 1480 26 -4896 1481 30 -4897 1481 8 -4898 1481 16 -4899 1482 1 -4900 1482 3 -4901 1482 25 -4902 1482 33 -4903 1483 3 -4904 1484 21 -4905 1484 1 -4906 1484 24 -4907 1484 5 -4908 1484 33 -4909 1484 27 -4910 1485 21 -4911 1485 19 -4912 1485 13 -4913 1485 30 -4914 1485 23 -4915 1485 11 -4916 1485 15 -4917 1485 1 -4918 1485 24 -4919 1485 8 -4920 1485 3 -4921 1485 25 -4922 1485 12 -4923 1485 36 -4924 1485 34 -4925 1485 16 -4926 1485 5 -4927 1485 31 -4928 1485 22 -4929 1485 17 -4930 1485 14 -4931 1485 33 -4932 1485 32 -4933 1485 27 -4934 1485 26 -4935 1486 30 -4936 1486 8 -4937 1486 14 -4938 1487 19 -4939 1487 1 -4940 1487 25 -4941 1487 32 -4942 1488 19 -4943 1488 30 -4944 1488 11 -4945 1488 1 -4946 1488 8 -4947 1488 3 -4948 1488 25 -4949 1488 36 -4950 1488 33 -4951 1488 32 -4952 1489 21 -4953 1489 19 -4954 1489 13 -4955 1489 30 -4956 1489 23 -4957 1489 11 -4958 1489 15 -4959 1489 1 -4960 1489 24 -4961 1489 8 -4962 1489 3 -4963 1489 25 -4964 1489 12 -4965 1489 36 -4966 1489 34 -4967 1489 16 -4968 1489 5 -4969 1489 31 -4970 1489 22 -4971 1489 17 -4972 1489 14 -4973 1489 33 -4974 1489 32 -4975 1489 27 -4976 1489 26 -4977 1490 11 -4978 1491 21 -4979 1491 1 -4980 1491 31 -4981 1491 27 -4982 1491 26 -4983 1492 8 -4984 1493 21 -4985 1493 19 -4986 1493 13 -4987 1493 30 -4988 1493 23 -4989 1493 11 -4990 1493 15 -4991 1493 1 -4992 1493 24 -4993 1493 8 -4994 1493 25 -4995 1493 12 -4996 1493 36 -4997 1493 34 -4998 1493 16 -4999 1493 31 -5000 1493 22 -5001 1493 17 -5002 1493 14 -5003 1493 33 -5004 1493 32 -5005 1493 27 -5006 1493 26 -5007 1494 21 -5008 1494 19 -5009 1494 13 -5010 1494 30 -5011 1494 11 -5012 1494 15 -5013 1494 1 -5014 1494 24 -5015 1494 8 -5016 1494 3 -5017 1494 25 -5018 1494 12 -5019 1494 16 -5020 1494 5 -5021 1494 31 -5022 1494 17 -5023 1494 33 -5024 1494 32 -5025 1494 27 -5026 1494 26 -5027 1495 30 -5028 1495 11 -5029 1495 8 -5030 1495 16 -5031 1495 31 -5032 1495 14 -5033 1495 26 -5034 1496 21 -5035 1496 19 -5036 1496 30 -5037 1496 8 -5038 1496 36 -5039 1496 16 -5040 1496 17 -5041 1496 14 -5042 1497 21 -5043 1497 30 -5044 1497 1 -5045 1497 8 -5046 1497 16 -5047 1497 31 -5048 1497 17 -5049 1497 27 -5050 1498 19 -5051 1498 30 -5052 1498 8 -5053 1498 16 -5054 1498 17 -5055 1498 14 -5056 1499 21 -5057 1499 11 -5058 1499 3 -5059 1499 12 -5060 1499 5 -5061 1499 22 -5062 1499 32 -5063 1500 30 -5064 1500 1 -5065 1500 8 -5066 1500 34 -5067 1500 16 -5068 1500 31 -5069 1500 17 -5070 1500 26 -5071 1501 21 -5072 1501 16 -5073 1501 5 -5074 1501 27 -5075 1502 31 -5076 1502 26 -5077 1503 21 -5078 1503 19 -5079 1503 30 -5080 1503 23 -5081 1503 11 -5082 1503 1 -5083 1503 24 -5084 1503 8 -5085 1503 25 -5086 1503 16 -5087 1503 31 -5088 1503 17 -5089 1503 14 -5090 1503 33 -5091 1503 27 -5092 1504 16 -5093 1504 31 -5094 1504 26 -5095 1505 19 -5096 1505 30 -5097 1505 1 -5098 1505 25 -5099 1506 19 -5100 1506 30 -5101 1506 1 -5102 1507 31 -5103 1508 23 -5104 1508 36 -5105 1508 31 -5106 1508 14 -5107 1508 26 -5108 1509 19 -5109 1509 30 -5110 1509 8 -5111 1510 1 -5112 1510 25 -5113 1511 21 -5114 1511 19 -5115 1511 30 -5116 1511 11 -5117 1511 1 -5118 1511 24 -5119 1511 8 -5120 1511 17 -5121 1511 33 -5122 1511 27 -5123 1512 21 -5124 1512 19 -5125 1512 13 -5126 1512 30 -5127 1512 23 -5128 1512 11 -5129 1512 15 -5130 1512 1 -5131 1512 24 -5132 1512 8 -5133 1512 3 -5134 1512 25 -5135 1512 12 -5136 1512 36 -5137 1512 34 -5138 1512 16 -5139 1512 5 -5140 1512 31 -5141 1512 22 -5142 1512 17 -5143 1512 14 -5144 1512 33 -5145 1512 32 -5146 1512 27 -5147 1512 26 -5148 1513 19 -5149 1513 30 -5150 1513 1 -5151 1513 8 -5152 1513 25 -5153 1513 36 -5154 1513 33 -5155 1514 30 -5156 1514 8 -5157 1514 33 -5158 1515 19 -5159 1515 30 -5160 1515 23 -5161 1515 25 -5162 1515 14 -5163 1516 21 -5164 1516 1 -5165 1516 12 -5166 1516 36 -5167 1516 22 -5168 1516 33 -5169 1517 21 -5170 1517 30 -5171 1517 11 -5172 1517 1 -5173 1517 12 -5174 1517 16 -5175 1517 31 -5176 1517 22 -5177 1517 17 -5178 1517 27 -5179 1517 26 -5180 1518 30 -5181 1518 1 -5182 1518 25 -5183 1520 30 -5184 1520 1 -5185 1520 8 -5186 1521 21 -5187 1521 19 -5188 1522 19 -5189 1522 30 -5190 1522 23 -5191 1522 11 -5192 1522 15 -5193 1522 1 -5194 1522 3 -5195 1522 25 -5196 1522 14 -5197 1523 19 -5198 1523 30 -5199 1523 11 -5200 1524 21 -5201 1524 1 -5202 1525 8 -5203 1526 21 -5204 1526 16 -5205 1526 31 -5206 1526 26 -5207 1527 19 -5208 1527 30 -5209 1527 1 -5210 1527 24 -5211 1527 3 -5212 1527 25 -5213 1527 33 -5214 1528 1 -5215 1528 33 -5216 1529 13 -5217 1529 11 -5218 1529 15 -5219 1530 19 -5220 1531 30 -5221 1531 8 -5222 1531 16 -5223 1531 17 -5224 1532 19 -5225 1532 13 -5226 1532 11 -5227 1532 15 -5228 1532 3 -5229 1532 25 -5230 1532 32 -5231 1533 30 -5232 1533 11 -5233 1533 1 -5234 1533 8 -5235 1533 25 -5236 1533 16 -5237 1533 17 -5238 1533 14 -5239 1533 33 -5240 1534 21 -5241 1534 12 -5242 1534 5 -5243 1534 22 -5244 1534 33 -5245 1535 1 -5246 1535 3 -5247 1535 25 -5248 1536 21 -5249 1536 1 -5250 1536 24 -5251 1536 25 -5252 1536 33 -5253 1537 3 -5254 1537 25 -5255 1538 19 -5256 1538 30 -5257 1538 11 -5258 1538 1 -5259 1538 24 -5260 1538 8 -5261 1538 3 -5262 1538 25 -5263 1538 16 -5264 1538 33 -5265 1538 32 -5266 1539 3 -5267 1539 25 -5268 1539 33 -5269 1539 32 -5270 1540 30 -5271 1540 8 -5272 1540 34 -5273 1540 16 -5274 1541 23 -5275 1541 8 -5276 1541 34 -5277 1541 14 -5278 1542 19 -5279 1542 30 -5280 1542 8 -5281 1543 19 -5282 1543 30 -5283 1543 1 -5284 1543 16 -5285 1543 17 -5286 1544 1 -5287 1544 3 -5288 1544 25 -5289 1544 33 -5290 1545 19 -5291 1545 1 -5292 1545 8 -5293 1546 30 -5294 1546 8 -5295 1546 16 -5296 1546 17 -5297 1547 30 -5298 1547 1 -5299 1548 11 -5300 1548 36 -5301 1549 30 -5302 1549 8 -5303 1549 14 -5304 1550 21 -5305 1550 19 -5306 1550 13 -5307 1550 30 -5308 1550 23 -5309 1550 11 -5310 1550 15 -5311 1550 1 -5312 1550 24 -5313 1550 8 -5314 1550 3 -5315 1550 25 -5316 1550 12 -5317 1550 36 -5318 1550 34 -5319 1550 16 -5320 1550 5 -5321 1550 31 -5322 1550 22 -5323 1550 17 -5324 1550 14 -5325 1550 33 -5326 1550 32 -5327 1550 27 -5328 1550 26 -5329 1551 16 -5330 1551 17 -5331 1552 21 -5332 1552 30 -5333 1552 1 -5334 1552 24 -5335 1552 16 -5336 1552 31 -5337 1552 17 -5338 1552 33 -5339 1552 27 -5340 1552 26 -5341 1553 21 -5342 1553 19 -5343 1553 30 -5344 1553 1 -5345 1553 24 -5346 1553 8 -5347 1553 3 -5348 1553 25 -5349 1553 12 -5350 1553 16 -5351 1553 31 -5352 1553 22 -5353 1553 17 -5354 1553 33 -5355 1553 27 -5356 1554 19 -5357 1554 30 -5358 1555 21 -5359 1555 30 -5360 1555 1 -5361 1555 3 -5362 1555 36 -5363 1555 16 -5364 1555 5 -5365 1555 31 -5366 1555 27 -5367 1555 26 -5368 1556 21 -5369 1556 31 -5370 1556 17 -5371 1556 27 -5372 1556 26 -5373 1557 21 -5374 1557 30 -5375 1557 1 -5376 1557 8 -5377 1557 3 -5378 1557 25 -5379 1557 32 -5380 1557 27 -5381 1558 21 -5382 1558 30 -5383 1558 11 -5384 1558 1 -5385 1558 8 -5386 1558 36 -5387 1558 34 -5388 1558 16 -5389 1558 5 -5390 1558 17 -5391 1558 26 -5392 1559 21 -5393 1559 16 -5394 1559 31 -5395 1559 27 -5396 1560 19 -5397 1560 30 -5398 1560 8 -5399 1561 21 -5400 1561 16 -5401 1561 27 -5402 1562 30 -5403 1562 8 -5404 1563 19 -5405 1563 24 -5406 1563 33 -5407 1564 8 -5408 1565 5 -5409 1566 30 -5410 1566 1 -5411 1567 21 -5412 1567 19 -5413 1567 30 -5414 1567 11 -5415 1567 1 -5416 1567 24 -5417 1567 25 -5418 1567 16 -5419 1567 33 -5420 1567 27 -5421 1568 30 -5422 1568 8 -5423 1569 19 -5424 1569 30 -5425 1569 1 -5426 1569 24 -5427 1569 3 -5428 1569 25 -5429 1569 33 -5430 1570 8 -5431 1571 1 -5432 1571 24 -5433 1571 25 -5434 1571 33 -5435 1572 16 -5436 1572 26 -5437 1573 1 -5438 1573 24 -5439 1573 33 -5440 1574 21 -5441 1574 30 -5442 1574 1 -5443 1574 24 -5444 1574 12 -5445 1574 33 -5446 1575 21 -5447 1575 19 -5448 1575 13 -5449 1575 30 -5450 1575 23 -5451 1575 11 -5452 1575 15 -5453 1575 1 -5454 1575 24 -5455 1575 8 -5456 1575 3 -5457 1575 25 -5458 1575 12 -5459 1575 36 -5460 1575 34 -5461 1575 16 -5462 1575 5 -5463 1575 31 -5464 1575 22 -5465 1575 17 -5466 1575 14 -5467 1575 33 -5468 1575 32 -5469 1575 27 -5470 1575 26 -5471 1576 1 -5472 1576 25 -5473 1577 21 -5474 1577 1 -5475 1577 24 -5476 1577 16 -5477 1577 27 -5478 1578 3 -5479 1578 25 -5480 1579 30 -5481 1579 1 -5482 1579 24 -5483 1579 33 -5484 1580 1 -5485 1580 24 -5486 1580 16 -5487 1580 33 -5488 1581 19 -5489 1581 30 -5490 1581 11 -5491 1581 8 -5492 1581 36 -5493 1581 14 -5494 1582 19 -5495 1582 13 -5496 1582 30 -5497 1582 23 -5498 1582 11 -5499 1582 15 -5500 1582 8 -5501 1582 3 -5502 1582 25 -5503 1582 36 -5504 1582 16 -5505 1582 17 -5506 1582 32 -5507 1583 19 -5508 1583 30 -5509 1583 1 -5510 1583 8 -5511 1583 36 -5512 1583 17 -5513 1583 14 -5514 1584 19 -5515 1584 30 -5516 1584 11 -5517 1584 1 -5518 1584 8 -5519 1584 25 -5520 1584 16 -5521 1584 31 -5522 1584 17 -5523 1584 14 -5524 1585 8 -5525 1585 36 -5526 1585 17 -5527 1586 19 -5528 1586 1 -5529 1586 3 -5530 1586 25 -5531 1586 32 -5532 1587 21 -5533 1587 30 -5534 1587 1 -5535 1587 8 -5536 1587 31 -5537 1587 33 -5538 1587 27 -5539 1587 26 -5540 1590 21 -5541 1593 27 -5542 1595 27 -5543 1598 1 -5544 1598 24 -5545 1598 33 -5546 1598 19 -5547 1598 30 -5548 1598 3 -5549 1598 25 -5550 1598 32 -5551 1598 21 -5552 1598 27 -5553 1598 5 -5554 1598 31 -5555 1598 26 -5556 1598 17 -5557 1598 16 -5558 1598 8 -5559 1598 14 -5560 1598 23 -5561 1598 15 -5562 1598 13 -5563 1598 11 -5564 1598 12 -5565 1598 22 -5566 1598 34 -5572 1603 1 -5573 1604 1 -5574 1604 30 -5575 1604 17 -5576 1604 16 -5577 1604 8 -5578 1605 1 -5579 1605 24 -5580 1605 33 -5581 1605 30 -5582 1605 27 -5583 1605 17 -5584 1605 16 -5585 1605 8 -5588 1607 31 -5589 1607 26 -5590 1607 17 -5591 1608 19 -5592 1608 30 -5593 1608 25 -5594 1608 8 -5595 1608 36 -5596 1609 1 -5597 1609 24 -5598 1609 33 -5599 1609 19 -5600 1609 3 -5601 1609 25 -5602 1609 32 -5603 1609 11 -5611 1611 13 -5612 1611 11 -5613 1613 1 -5614 1610 21 -5615 1610 27 -5616 1610 31 -5617 1610 16 -5618 1610 8 -5619 1610 34 -5620 1610 36 -5621 1599 1 -5622 1599 30 -5623 1599 17 -5624 1599 16 -5625 1599 8 -5626 1614 19 -5627 1614 30 -5628 1614 25 -5629 1614 8 -5630 1614 11 -5631 1616 21 -5638 1621 21 -5639 1619 1 -5640 1619 33 -5641 1619 3 -5642 1619 25 -5643 1619 32 -5644 1619 36 -5645 1623 26 -5646 1606 30 -5647 1625 12 -5648 1626 21 -5649 1626 27 -5650 1627 1 -5651 1627 33 -\. - - --- --- Data for Name: location_postcode; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.location_postcode (id, location_id, postcode_id) FROM stdin; -\. - - --- --- Data for Name: notion_relation; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.notion_relation (id, payroll, host_nid, host_type, host_id, tenant_nid, tenant_type, tenant_id) FROM stdin; -1 \N 6 agent 3 VOL-146 opportunity \N -2 \N 6 agent 3 VOL-240 opportunity \N -3 \N 6 agent 3 VOL-297 opportunity \N -4 \N 6 agent 3 VOL-324 opportunity \N -5 \N 6 agent 3 VOL-639 opportunity \N -6 \N 7 agent 4 VOL-76 opportunity \N -7 \N 7 agent 4 VOL-77 opportunity \N -8 \N 7 agent 4 VOL-86 opportunity \N -9 \N 7 agent 4 VOL-116 opportunity \N -10 \N 7 agent 4 VOL-136 opportunity \N -11 \N 7 agent 4 VOL-138 opportunity \N -12 \N 7 agent 4 VOL-149 opportunity \N -13 \N 7 agent 4 VOL-161 opportunity \N -14 \N 7 agent 4 VOL-172 opportunity \N -15 \N 7 agent 4 VOL-270 opportunity \N -16 \N 7 agent 4 VOL-272 opportunity \N -17 \N 7 agent 4 VOL-330 opportunity \N -18 \N 7 agent 4 VOL-331 opportunity \N -19 \N 7 agent 4 VOL-388 opportunity \N -20 \N 7 agent 4 VOL-479 opportunity \N -21 \N 7 agent 4 VOL-526 opportunity \N -22 \N 7 agent 4 VOL-547 opportunity \N -23 \N 7 agent 4 VOL-549 opportunity \N -24 \N 7 agent 4 VOL-662 opportunity \N -25 \N 7 agent 4 VOL-728 opportunity \N -26 \N 7 agent 4 VOL-886 opportunity \N -27 \N 8 agent 5 VOL-328 opportunity \N -28 \N 8 agent 5 VOL-353 opportunity \N -29 \N 8 agent 5 VOL-391 opportunity \N -30 \N 8 agent 5 VOL-472 opportunity \N -31 \N 8 agent 5 VOL-497 opportunity \N -32 \N 8 agent 5 VOL-516 opportunity \N -33 \N 8 agent 5 VOL-545 opportunity \N -34 \N 8 agent 5 VOL-534 opportunity \N -35 \N 8 agent 5 VOL-533 opportunity \N -36 \N 8 agent 5 VOL-546 opportunity \N -37 \N 8 agent 5 VOL-554 opportunity \N -38 \N 8 agent 5 VOL-570 opportunity \N -39 \N 8 agent 5 VOL-590 opportunity \N -40 \N 8 agent 5 VOL-608 opportunity \N -41 \N 8 agent 5 VOL-647 opportunity \N -42 \N 8 agent 5 VOL-677 opportunity \N -43 \N 8 agent 5 VOL-464 opportunity \N -44 \N 8 agent 5 VOL-360 opportunity \N -45 \N 8 agent 5 VOL-342 opportunity \N -46 \N 8 agent 5 VOL-704 opportunity \N -47 \N 8 agent 5 VOL-720 opportunity \N -48 \N 8 agent 5 VOL-725 opportunity \N -49 \N 8 agent 5 VOL-733 opportunity \N -50 \N 8 agent 5 VOL-752 opportunity \N -51 \N 8 agent 5 VOL-767 opportunity \N -52 \N 8 agent 5 VOL-778 opportunity \N -53 \N 8 agent 5 VOL-796 opportunity \N -54 \N 8 agent 5 VOL-811 opportunity \N -55 \N 8 agent 5 VOL-863 opportunity \N -56 \N 8 agent 5 VOL-867 opportunity \N -57 \N 8 agent 5 VOL-866 opportunity \N -58 \N 8 agent 5 VOL-892 opportunity \N -59 \N 9 agent 6 VOL-7 opportunity \N -60 \N 9 agent 6 VOL-8 opportunity \N -61 \N 9 agent 6 VOL-10 opportunity \N -62 \N 9 agent 6 VOL-11 opportunity \N -63 \N 9 agent 6 VOL-31 opportunity \N -64 \N 9 agent 6 VOL-35 opportunity \N -65 \N 9 agent 6 VOL-43 opportunity \N -66 \N 9 agent 6 VOL-47 opportunity \N -67 \N 9 agent 6 VOL-147 opportunity \N -68 \N 9 agent 6 VOL-152 opportunity \N -69 \N 9 agent 6 VOL-159 opportunity \N -70 \N 9 agent 6 VOL-181 opportunity \N -71 \N 9 agent 6 VOL-197 opportunity \N -72 \N 9 agent 6 VOL-205 opportunity \N -73 \N 9 agent 6 VOL-215 opportunity \N -74 \N 9 agent 6 VOL-261 opportunity \N -75 \N 9 agent 6 VOL-341 opportunity \N -76 \N 9 agent 6 VOL-367 opportunity \N -77 \N 9 agent 6 VOL-427 opportunity \N -78 \N 9 agent 6 VOL-440 opportunity \N -79 \N 9 agent 6 VOL-467 opportunity \N -80 \N 9 agent 6 VOL-476 opportunity \N -81 \N 9 agent 6 VOL-483 opportunity \N -82 \N 9 agent 6 VOL-492 opportunity \N -83 \N 9 agent 6 VOL-509 opportunity \N -84 \N 9 agent 6 VOL-531 opportunity \N -85 \N 9 agent 6 VOL-539 opportunity \N -86 \N 9 agent 6 VOL-532 opportunity \N -87 \N 9 agent 6 VOL-556 opportunity \N -88 \N 9 agent 6 VOL-569 opportunity \N -89 \N 9 agent 6 VOL-572 opportunity \N -90 \N 9 agent 6 VOL-607 opportunity \N -91 \N 9 agent 6 VOL-611 opportunity \N -92 \N 9 agent 6 VOL-627 opportunity \N -93 \N 9 agent 6 VOL-623 opportunity \N -94 \N 9 agent 6 VOL-625 opportunity \N -95 \N 9 agent 6 VOL-626 opportunity \N -96 \N 9 agent 6 VOL-670 opportunity \N -97 \N 9 agent 6 VOL-682 opportunity \N -98 \N 9 agent 6 VOL-751 opportunity \N -99 \N 9 agent 6 VOL-845 opportunity \N -100 \N 11 agent 7 VOL-12 opportunity \N -101 \N 11 agent 7 VOL-68 opportunity \N -102 \N 11 agent 7 VOL-69 opportunity \N -103 \N 11 agent 7 VOL-74 opportunity \N -104 \N 11 agent 7 VOL-78 opportunity \N -105 \N 11 agent 7 VOL-80 opportunity \N -106 \N 11 agent 7 VOL-93 opportunity \N -107 \N 11 agent 7 VOL-187 opportunity \N -108 \N 11 agent 7 VOL-188 opportunity \N -109 \N 11 agent 7 VOL-189 opportunity \N -110 \N 11 agent 7 VOL-190 opportunity \N -111 \N 11 agent 7 VOL-199 opportunity \N -112 \N 11 agent 7 VOL-200 opportunity \N -113 \N 11 agent 7 VOL-211 opportunity \N -114 \N 11 agent 7 VOL-212 opportunity \N -115 \N 11 agent 7 VOL-448 opportunity \N -116 \N 11 agent 7 VOL-452 opportunity \N -117 \N 11 agent 7 VOL-462 opportunity \N -118 \N 11 agent 7 VOL-596 opportunity \N -119 \N 11 agent 7 VOL-717 opportunity \N -120 \N 11 agent 7 VOL-718 opportunity \N -121 \N 11 agent 7 VOL-779 opportunity \N -122 \N 12 agent 8 VOL-15 opportunity \N -123 \N 12 agent 8 VOL-16 opportunity \N -124 \N 12 agent 8 VOL-17 opportunity \N -125 \N 12 agent 8 VOL-66 opportunity \N -126 \N 12 agent 8 VOL-97 opportunity \N -127 \N 12 agent 8 VOL-98 opportunity \N -128 \N 12 agent 8 VOL-185 opportunity \N -129 \N 12 agent 8 VOL-194 opportunity \N -130 \N 12 agent 8 VOL-198 opportunity \N -131 \N 12 agent 8 VOL-232 opportunity \N -132 \N 12 agent 8 VOL-233 opportunity \N -133 \N 12 agent 8 VOL-271 opportunity \N -134 \N 12 agent 8 VOL-334 opportunity \N -135 \N 12 agent 8 VOL-339 opportunity \N -136 \N 12 agent 8 VOL-488 opportunity \N -137 \N 12 agent 8 VOL-365 opportunity \N -138 \N 13 agent 9 VOL-19 opportunity \N -139 \N 13 agent 9 VOL-20 opportunity \N -140 \N 13 agent 9 VOL-30 opportunity \N -141 \N 13 agent 9 VOL-92 opportunity \N -142 \N 13 agent 9 VOL-122 opportunity \N -143 \N 13 agent 9 VOL-123 opportunity \N -144 \N 13 agent 9 VOL-145 opportunity \N -145 \N 13 agent 9 VOL-183 opportunity \N -146 \N 13 agent 9 VOL-221 opportunity \N -147 \N 13 agent 9 VOL-251 opportunity \N -148 \N 14 agent 10 VOL-21 opportunity \N -149 \N 14 agent 10 VOL-164 opportunity \N -150 \N 14 agent 10 VOL-165 opportunity \N -151 \N 14 agent 10 VOL-821 opportunity \N -152 \N 14 agent 10 VOL-820 opportunity \N -153 \N 16 agent 11 VOL-588 opportunity \N -154 \N 17 agent 12 VOL-823 opportunity \N -155 \N 17 agent 12 VOL-887 opportunity \N -156 \N 18 agent 13 VOL-4 opportunity \N -157 \N 18 agent 13 VOL-44 opportunity \N -158 \N 18 agent 13 VOL-67 opportunity \N -159 \N 18 agent 13 VOL-72 opportunity \N -160 \N 18 agent 13 VOL-83 opportunity \N -161 \N 18 agent 13 VOL-209 opportunity \N -162 \N 18 agent 13 VOL-263 opportunity \N -163 \N 18 agent 13 VOL-290 opportunity \N -164 \N 18 agent 13 VOL-292 opportunity \N -165 \N 18 agent 13 VOL-308 opportunity \N -166 \N 18 agent 13 VOL-310 opportunity \N -167 \N 18 agent 13 VOL-315 opportunity \N -168 \N 18 agent 13 VOL-321 opportunity \N -169 \N 18 agent 13 VOL-368 opportunity \N -170 \N 18 agent 13 VOL-372 opportunity \N -171 \N 18 agent 13 VOL-376 opportunity \N -172 \N 18 agent 13 VOL-435 opportunity \N -173 \N 18 agent 13 VOL-436 opportunity \N -174 \N 18 agent 13 VOL-504 opportunity \N -175 \N 18 agent 13 VOL-520 opportunity \N -176 \N 18 agent 13 VOL-364 opportunity \N -177 \N 18 agent 13 VOL-703 opportunity \N -178 \N 18 agent 13 VOL-766 opportunity \N -179 \N 18 agent 13 VOL-833 opportunity \N -180 \N 18 agent 13 VOL-846 opportunity \N -181 \N 21 agent 16 VOL-55 opportunity \N -182 \N 21 agent 16 VOL-57 opportunity \N -183 \N 21 agent 16 VOL-58 opportunity \N -184 \N 21 agent 16 VOL-59 opportunity \N -185 \N 21 agent 16 VOL-166 opportunity \N -186 \N 21 agent 16 VOL-291 opportunity \N -187 \N 21 agent 16 VOL-332 opportunity \N -188 \N 21 agent 16 VOL-575 opportunity \N -189 \N 21 agent 16 VOL-577 opportunity \N -190 \N 21 agent 16 VOL-576 opportunity \N -191 \N 21 agent 16 VOL-685 opportunity \N -192 \N 21 agent 16 VOL-643 opportunity \N -193 \N 21 agent 16 VOL-790 opportunity \N -194 \N 21 agent 16 VOL-789 opportunity \N -195 \N 21 agent 16 VOL-788 opportunity \N -196 \N 21 agent 16 VOL-882 opportunity \N -197 \N 22 agent 17 VOL-142 opportunity \N -198 \N 22 agent 17 VOL-144 opportunity \N -199 \N 22 agent 17 VOL-177 opportunity \N -200 \N 22 agent 17 VOL-273 opportunity \N -201 \N 22 agent 17 VOL-322 opportunity \N -202 \N 22 agent 17 VOL-466 opportunity \N -203 \N 22 agent 17 VOL-551 opportunity \N -204 \N 22 agent 17 VOL-579 opportunity \N -205 \N 22 agent 17 VOL-624 opportunity \N -206 \N 22 agent 17 VOL-815 opportunity \N -207 \N 22 agent 17 VOL-848 opportunity \N -208 \N 23 agent 18 VOL-28 opportunity \N -209 \N 23 agent 18 VOL-29 opportunity \N -210 \N 23 agent 18 VOL-243 opportunity \N -211 \N 23 agent 18 VOL-363 opportunity \N -212 \N 23 agent 18 VOL-395 opportunity \N -213 \N 23 agent 18 VOL-753 opportunity \N -214 \N 23 agent 18 VOL-754 opportunity \N -215 \N 23 agent 18 VOL-761 opportunity \N -216 \N 24 agent 19 VOL-9 opportunity \N -217 \N 24 agent 19 VOL-33 opportunity \N -218 \N 24 agent 19 VOL-34 opportunity \N -219 \N 24 agent 19 VOL-35 opportunity \N -220 \N 24 agent 19 VOL-196 opportunity \N -221 \N 25 agent 20 VOL-132 opportunity \N -222 \N 25 agent 20 VOL-171 opportunity \N -223 \N 25 agent 20 VOL-226 opportunity \N -224 \N 25 agent 20 VOL-857 opportunity \N -225 \N 25 agent 20 VOL-873 opportunity \N -226 \N 26 agent 21 VOL-134 opportunity \N -227 \N 26 agent 21 VOL-219 opportunity \N -228 \N 26 agent 21 VOL-299 opportunity \N -229 \N 27 agent 22 VOL-128 opportunity \N -230 \N 27 agent 22 VOL-129 opportunity \N -231 \N 27 agent 22 VOL-130 opportunity \N -232 \N 27 agent 22 VOL-131 opportunity \N -233 \N 31 agent 26 VOL-55 opportunity \N -234 \N 31 agent 26 VOL-124 opportunity \N -235 \N 31 agent 26 VOL-318 opportunity \N -236 \N 31 agent 26 VOL-361 opportunity \N -237 \N 31 agent 26 VOL-496 opportunity \N -238 \N 31 agent 26 VOL-511 opportunity \N -239 \N 31 agent 26 VOL-517 opportunity \N -240 \N 31 agent 26 VOL-555 opportunity \N -241 \N 31 agent 26 VOL-610 opportunity \N -242 \N 31 agent 26 VOL-667 opportunity \N -243 \N 31 agent 26 VOL-668 opportunity \N -244 \N 31 agent 26 VOL-726 opportunity \N -245 \N 31 agent 26 VOL-736 opportunity \N -246 \N 31 agent 26 VOL-742 opportunity \N -247 \N 32 agent 27 VOL-392 opportunity \N -248 \N 32 agent 27 VOL-410 opportunity \N -249 \N 32 agent 27 VOL-411 opportunity \N -250 \N 32 agent 27 VOL-412 opportunity \N -251 \N 32 agent 27 VOL-413 opportunity \N -252 \N 32 agent 27 VOL-594 opportunity \N -253 \N 32 agent 27 VOL-687 opportunity \N -254 \N 32 agent 27 VOL-806 opportunity \N -255 \N 33 agent 28 VOL-3 opportunity \N -256 \N 33 agent 28 VOL-2 opportunity \N -257 \N 33 agent 28 VOL-260 opportunity \N -258 \N 33 agent 28 VOL-319 opportunity \N -259 \N 33 agent 28 VOL-537 opportunity \N -260 \N 34 agent 29 VOL-451 opportunity \N -261 \N 34 agent 29 VOL-460 opportunity \N -262 \N 34 agent 29 VOL-616 opportunity \N -263 \N 34 agent 29 VOL-679 opportunity \N -264 \N 35 agent 30 VOL-415 opportunity \N -265 \N 35 agent 30 VOL-454 opportunity \N -266 \N 35 agent 30 VOL-508 opportunity \N -267 \N 37 agent 32 VOL-112 opportunity \N -268 \N 37 agent 32 VOL-113 opportunity \N -269 \N 37 agent 32 VOL-258 opportunity \N -270 \N 37 agent 32 VOL-336 opportunity \N -271 \N 37 agent 32 VOL-337 opportunity \N -272 \N 37 agent 32 VOL-469 opportunity \N -273 \N 37 agent 32 VOL-493 opportunity \N -274 \N 37 agent 32 VOL-495 opportunity \N -275 \N 37 agent 32 VOL-512 opportunity \N -276 \N 38 agent 33 VOL-32 opportunity \N -277 \N 38 agent 33 VOL-33 opportunity \N -278 \N 38 agent 33 VOL-34 opportunity \N -279 \N 38 agent 33 VOL-36 opportunity \N -280 \N 38 agent 33 VOL-24 opportunity \N -281 \N 38 agent 33 VOL-38 opportunity \N -282 \N 38 agent 33 VOL-39 opportunity \N -283 \N 38 agent 33 VOL-96 opportunity \N -284 \N 38 agent 33 VOL-870 opportunity \N -285 \N 38 agent 33 VOL-874 opportunity \N -286 \N 38 agent 33 VOL-876 opportunity \N -287 \N 38 agent 33 VOL-878 opportunity \N -288 \N 41 agent 36 VOL-33 opportunity \N -289 \N 41 agent 36 VOL-34 opportunity \N -290 \N 41 agent 36 VOL-40 opportunity \N -291 \N 41 agent 36 VOL-84 opportunity \N -292 \N 41 agent 36 VOL-85 opportunity \N -293 \N 41 agent 36 VOL-204 opportunity \N -294 \N 41 agent 36 VOL-369 opportunity \N -295 \N 41 agent 36 VOL-357 opportunity \N -296 \N 41 agent 36 VOL-428 opportunity \N -297 \N 41 agent 36 VOL-487 opportunity \N -298 \N 41 agent 36 VOL-486 opportunity \N -299 \N 41 agent 36 VOL-550 opportunity \N -300 \N 41 agent 36 VOL-600 opportunity \N -301 \N 41 agent 36 VOL-622 opportunity \N -302 \N 41 agent 36 VOL-621 opportunity \N -303 \N 41 agent 36 VOL-665 opportunity \N -304 \N 41 agent 36 VOL-688 opportunity \N -305 \N 41 agent 36 VOL-690 opportunity \N -306 \N 41 agent 36 VOL-762 opportunity \N -307 \N 41 agent 36 VOL-785 opportunity \N -308 \N 41 agent 36 VOL-851 opportunity \N -309 \N 41 agent 36 VOL-871 opportunity \N -310 \N 42 agent 37 VOL-33 opportunity \N -311 \N 42 agent 37 VOL-34 opportunity \N -312 \N 42 agent 37 VOL-37 opportunity \N -313 \N 42 agent 37 VOL-38 opportunity \N -314 \N 42 agent 37 VOL-46 opportunity \N -315 \N 42 agent 37 VOL-65 opportunity \N -316 \N 42 agent 37 VOL-88 opportunity \N -317 \N 42 agent 37 VOL-192 opportunity \N -318 \N 42 agent 37 VOL-781 opportunity \N -319 \N 43 agent 38 VOL-6 opportunity \N -320 \N 43 agent 38 VOL-764 opportunity \N -321 \N 43 agent 38 VOL-782 opportunity \N -322 \N 45 agent 40 VOL-127 opportunity \N -323 \N 45 agent 40 VOL-519 opportunity \N -324 \N 45 agent 40 VOL-770 opportunity \N -325 \N 45 agent 40 VOL-853 opportunity \N -326 \N 45 agent 40 VOL-880 opportunity \N -327 \N 46 agent 41 VOL-89 opportunity \N -328 \N 46 agent 41 VOL-329 opportunity \N -329 \N 46 agent 41 VOL-347 opportunity \N -330 \N 46 agent 41 VOL-666 opportunity \N -331 \N 46 agent 41 VOL-716 opportunity \N -332 \N 46 agent 41 VOL-741 opportunity \N -333 \N 46 agent 41 VOL-763 opportunity \N -334 \N 46 agent 41 VOL-831 opportunity \N -335 \N 46 agent 41 VOL-832 opportunity \N -336 \N 47 agent 42 VOL-5 opportunity \N -337 \N 47 agent 42 VOL-41 opportunity \N -338 \N 47 agent 42 VOL-42 opportunity \N -339 \N 47 agent 42 VOL-63 opportunity \N -340 \N 47 agent 42 VOL-75 opportunity \N -341 \N 49 agent 44 VOL-105 opportunity \N -342 \N 49 agent 44 VOL-127 opportunity \N -343 \N 49 agent 44 VOL-169 opportunity \N -344 \N 49 agent 44 VOL-170 opportunity \N -345 \N 49 agent 44 VOL-253 opportunity \N -346 \N 49 agent 44 VOL-380 opportunity \N -347 \N 49 agent 44 VOL-438 opportunity \N -348 \N 49 agent 44 VOL-437 opportunity \N -349 \N 49 agent 44 VOL-519 opportunity \N -350 \N 50 agent 45 VOL-349 opportunity \N -351 \N 50 agent 45 VOL-527 opportunity \N -352 \N 52 agent 47 VOL-13 opportunity \N -353 \N 52 agent 47 VOL-33 opportunity \N -354 \N 52 agent 47 VOL-34 opportunity \N -355 \N 52 agent 47 VOL-485 opportunity \N -356 \N 52 agent 47 VOL-503 opportunity \N -357 \N 52 agent 47 VOL-564 opportunity \N -358 \N 52 agent 47 VOL-803 opportunity \N -359 \N 54 agent 49 VOL-107 opportunity \N -360 \N 54 agent 49 VOL-108 opportunity \N -361 \N 54 agent 49 VOL-109 opportunity \N -362 \N 54 agent 49 VOL-201 opportunity \N -363 \N 54 agent 49 VOL-541 opportunity \N -364 \N 54 agent 49 VOL-692 opportunity \N -365 \N 54 agent 49 VOL-797 opportunity \N -366 \N 55 agent 50 VOL-62 opportunity \N -367 \N 55 agent 50 VOL-54 opportunity \N -368 \N 55 agent 50 VOL-139 opportunity \N -369 \N 55 agent 50 VOL-140 opportunity \N -370 \N 55 agent 50 VOL-267 opportunity \N -371 \N 55 agent 50 VOL-669 opportunity \N -372 \N 55 agent 50 VOL-673 opportunity \N -373 \N 55 agent 50 VOL-793 opportunity \N -374 \N 55 agent 50 VOL-794 opportunity \N -375 \N 55 agent 50 VOL-792 opportunity \N -376 \N 56 agent 51 VOL-26 opportunity \N -377 \N 56 agent 51 VOL-244 opportunity \N -378 \N 56 agent 51 VOL-252 opportunity \N -379 \N 56 agent 51 VOL-282 opportunity \N -380 \N 56 agent 51 VOL-383 opportunity \N -381 \N 56 agent 51 VOL-658 opportunity \N -382 \N 56 agent 51 VOL-675 opportunity \N -383 \N 56 agent 51 VOL-678 opportunity \N -384 \N 57 agent 52 VOL-52 opportunity \N -385 \N 57 agent 52 VOL-56 opportunity \N -386 \N 57 agent 52 VOL-266 opportunity \N -387 \N 57 agent 52 VOL-269 opportunity \N -388 \N 57 agent 52 VOL-268 opportunity \N -389 \N 57 agent 52 VOL-287 opportunity \N -390 \N 57 agent 52 VOL-631 opportunity \N -391 \N 57 agent 52 VOL-143 opportunity \N -392 \N 57 agent 52 VOL-779 opportunity \N -393 \N 58 agent 53 VOL-99 opportunity \N -394 \N 58 agent 53 VOL-100 opportunity \N -395 \N 58 agent 53 VOL-101 opportunity \N -396 \N 58 agent 53 VOL-117 opportunity \N -397 \N 58 agent 53 VOL-265 opportunity \N -398 \N 58 agent 53 VOL-681 opportunity \N -399 \N 58 agent 53 VOL-861 opportunity \N -400 \N 60 agent 55 VOL-27 opportunity \N -401 \N 60 agent 55 VOL-64 opportunity \N -402 \N 60 agent 55 VOL-22 opportunity \N -403 \N 60 agent 55 VOL-91 opportunity \N -404 \N 60 agent 55 VOL-126 opportunity \N -405 \N 60 agent 55 VOL-167 opportunity \N -406 \N 60 agent 55 VOL-191 opportunity \N -407 \N 60 agent 55 VOL-195 opportunity \N -408 \N 60 agent 55 VOL-227 opportunity \N -409 \N 60 agent 55 VOL-239 opportunity \N -410 \N 60 agent 55 VOL-371 opportunity \N -411 \N 60 agent 55 VOL-378 opportunity \N -412 \N 60 agent 55 VOL-430 opportunity \N -413 \N 60 agent 55 VOL-484 opportunity \N -414 \N 60 agent 55 VOL-456 opportunity \N -415 \N 60 agent 55 VOL-396 opportunity \N -416 \N 60 agent 55 VOL-747 opportunity \N -417 \N 60 agent 55 VOL-748 opportunity \N -418 \N 60 agent 55 VOL-749 opportunity \N -419 \N 62 agent 57 VOL-110 opportunity \N -420 \N 62 agent 57 VOL-133 opportunity \N -421 \N 62 agent 57 VOL-249 opportunity \N -422 \N 62 agent 57 VOL-343 opportunity \N -423 \N 62 agent 57 VOL-346 opportunity \N -424 \N 62 agent 57 VOL-366 opportunity \N -425 \N 62 agent 57 VOL-379 opportunity \N -426 \N 62 agent 57 VOL-393 opportunity \N -427 \N 62 agent 57 VOL-443 opportunity \N -428 \N 62 agent 57 VOL-444 opportunity \N -429 \N 62 agent 57 VOL-601 opportunity \N -430 \N 62 agent 57 VOL-604 opportunity \N -431 \N 62 agent 57 VOL-609 opportunity \N -432 \N 62 agent 57 VOL-843 opportunity \N -433 \N 63 agent 58 VOL-18 opportunity \N -434 \N 63 agent 58 VOL-432 opportunity \N -435 \N 63 agent 58 VOL-465 opportunity \N -436 \N 63 agent 58 VOL-705 opportunity \N -437 \N 63 agent 58 VOL-706 opportunity \N -438 \N 71 agent 65 VOL-663 opportunity \N -439 \N 72 agent 66 VOL-309 opportunity \N -440 \N 76 agent 70 VOL-150 opportunity \N -441 \N 76 agent 70 VOL-274 opportunity \N -442 \N 77 agent 71 VOL-630 opportunity \N -443 \N 77 agent 71 VOL-691 opportunity \N -444 \N 77 agent 71 VOL-855 opportunity \N -445 \N 79 agent 73 VOL-312 opportunity \N -446 \N 79 agent 73 VOL-370 opportunity \N -447 \N 79 agent 73 VOL-384 opportunity \N -448 \N 79 agent 73 VOL-385 opportunity \N -449 \N 79 agent 73 VOL-426 opportunity \N -450 \N 79 agent 73 VOL-498 opportunity \N -451 \N 79 agent 73 VOL-557 opportunity \N -452 \N 79 agent 73 VOL-595 opportunity \N -453 \N 79 agent 73 VOL-652 opportunity \N -454 \N 79 agent 73 VOL-463 opportunity \N -455 \N 79 agent 73 VOL-453 opportunity \N -456 \N 79 agent 73 VOL-694 opportunity \N -457 \N 79 agent 73 VOL-702 opportunity \N -458 \N 79 agent 73 VOL-700 opportunity \N -459 \N 79 agent 73 VOL-701 opportunity \N -460 \N 79 agent 73 VOL-755 opportunity \N -461 \N 81 agent 75 VOL-114 opportunity \N -462 \N 81 agent 75 VOL-118 opportunity \N -463 \N 81 agent 75 VOL-119 opportunity \N -464 \N 81 agent 75 VOL-120 opportunity \N -465 \N 81 agent 75 VOL-121 opportunity \N -466 \N 81 agent 75 VOL-162 opportunity \N -467 \N 81 agent 75 VOL-218 opportunity \N -468 \N 81 agent 75 VOL-278 opportunity \N -469 \N 81 agent 75 VOL-359 opportunity \N -470 \N 81 agent 75 VOL-566 opportunity \N -471 \N 81 agent 75 VOL-567 opportunity \N -472 \N 81 agent 75 VOL-638 opportunity \N -473 \N 81 agent 75 VOL-680 opportunity \N -474 \N 81 agent 75 VOL-709 opportunity \N -475 \N 81 agent 75 VOL-839 opportunity \N -476 \N 81 agent 75 VOL-840 opportunity \N -477 \N 81 agent 75 VOL-841 opportunity \N -478 \N 81 agent 75 VOL-879 opportunity \N -479 \N 86 agent 79 VOL-323 opportunity \N -480 \N 86 agent 79 VOL-513 opportunity \N -481 \N 86 agent 79 VOL-582 opportunity \N -482 \N 86 agent 79 VOL-791 opportunity \N -483 \N 87 agent 80 VOL-277 opportunity \N -484 \N 87 agent 80 VOL-279 opportunity \N -485 \N 87 agent 80 VOL-280 opportunity \N -486 \N 87 agent 80 VOL-304 opportunity \N -487 \N 87 agent 80 VOL-313 opportunity \N -488 \N 87 agent 80 VOL-314 opportunity \N -489 \N 87 agent 80 VOL-394 opportunity \N -490 \N 87 agent 80 VOL-477 opportunity \N -491 \N 87 agent 80 VOL-491 opportunity \N -492 \N 88 agent 81 VOL-61 opportunity \N -493 \N 88 agent 81 VOL-316 opportunity \N -494 \N 88 agent 81 VOL-317 opportunity \N -495 \N 88 agent 81 VOL-389 opportunity \N -496 \N 88 agent 81 VOL-615 opportunity \N -497 \N 89 agent 82 VOL-419 opportunity \N -498 \N 89 agent 82 VOL-602 opportunity \N -499 \N 89 agent 82 VOL-603 opportunity \N -500 \N 89 agent 82 VOL-819 opportunity \N -501 \N 91 agent 84 VOL-48 opportunity \N -502 \N 91 agent 84 VOL-49 opportunity \N -503 \N 91 agent 84 VOL-81 opportunity \N -504 \N 91 agent 84 VOL-179 opportunity \N -505 \N 91 agent 84 VOL-213 opportunity \N -506 \N 91 agent 84 VOL-228 opportunity \N -507 \N 91 agent 84 VOL-229 opportunity \N -508 \N 91 agent 84 VOL-257 opportunity \N -509 \N 91 agent 84 VOL-358 opportunity \N -510 \N 91 agent 84 VOL-414 opportunity \N -511 \N 91 agent 84 VOL-614 opportunity \N -512 \N 91 agent 84 VOL-618 opportunity \N -513 \N 91 agent 84 VOL-801 opportunity \N -514 \N 93 agent 86 VOL-530 opportunity \N -515 \N 93 agent 86 VOL-538 opportunity \N -516 \N 93 agent 86 VOL-457 opportunity \N -517 \N 95 agent 88 VOL-25 opportunity \N -518 \N 95 agent 88 VOL-45 opportunity \N -519 \N 95 agent 88 VOL-71 opportunity \N -520 \N 95 agent 88 VOL-79 opportunity \N -521 \N 95 agent 88 VOL-90 opportunity \N -522 \N 95 agent 88 VOL-214 opportunity \N -523 \N 95 agent 88 VOL-231 opportunity \N -524 \N 95 agent 88 VOL-250 opportunity \N -525 \N 95 agent 88 VOL-289 opportunity \N -526 \N 95 agent 88 VOL-302 opportunity \N -527 \N 95 agent 88 VOL-424 opportunity \N -528 \N 95 agent 88 VOL-425 opportunity \N -529 \N 95 agent 88 VOL-499 opportunity \N -530 \N 95 agent 88 VOL-514 opportunity \N -531 \N 95 agent 88 VOL-540 opportunity \N -532 \N 96 agent 89 VOL-102 opportunity \N -533 \N 96 agent 89 VOL-103 opportunity \N -534 \N 96 agent 89 VOL-104 opportunity \N -535 \N 96 agent 89 VOL-193 opportunity \N -536 \N 96 agent 89 VOL-416 opportunity \N -537 \N 96 agent 89 VOL-422 opportunity \N -538 \N 97 agent 90 VOL-180 opportunity \N -539 \N 97 agent 90 VOL-184 opportunity \N -540 \N 97 agent 90 VOL-186 opportunity \N -541 \N 97 agent 90 VOL-216 opportunity \N -542 \N 97 agent 90 VOL-298 opportunity \N -543 \N 97 agent 90 VOL-606 opportunity \N -544 \N 97 agent 90 VOL-356 opportunity \N -545 \N 97 agent 90 VOL-355 opportunity \N -546 \N 98 agent 91 VOL-235 opportunity \N -547 \N 98 agent 91 VOL-515 opportunity \N -548 \N 98 agent 91 VOL-722 opportunity \N -549 \N 98 agent 91 VOL-721 opportunity \N -550 \N 98 agent 91 VOL-734 opportunity \N -551 \N 98 agent 91 VOL-780 opportunity \N -552 \N 98 agent 91 VOL-732 opportunity \N -553 \N 100 agent 93 VOL-494 opportunity \N -554 \N 100 agent 93 VOL-510 opportunity \N -555 \N 100 agent 93 VOL-528 opportunity \N -556 \N 100 agent 93 VOL-597 opportunity \N -557 \N 100 agent 93 VOL-612 opportunity \N -558 \N 100 agent 93 VOL-613 opportunity \N -559 \N 101 agent 94 VOL-729 opportunity \N -560 \N 101 agent 94 VOL-730 opportunity \N -561 \N 101 agent 94 VOL-743 opportunity \N -562 \N 101 agent 94 VOL-744 opportunity \N -563 \N 101 agent 94 VOL-784 opportunity \N -564 \N 102 agent 95 VOL-335 opportunity \N -565 \N 102 agent 95 VOL-474 opportunity \N -566 \N 102 agent 95 VOL-475 opportunity \N -567 \N 104 agent 97 VOL-236 opportunity \N -568 \N 104 agent 97 VOL-237 opportunity \N -569 \N 104 agent 97 VOL-459 opportunity \N -570 \N 104 agent 97 VOL-461 opportunity \N -571 \N 104 agent 97 VOL-524 opportunity \N -572 \N 104 agent 97 VOL-458 opportunity \N -573 \N 104 agent 97 VOL-723 opportunity \N -574 \N 636 agent 106 VOL-644 opportunity \N -575 \N 606 agent 162 VOL-202 opportunity \N -576 \N 604 agent 164 VOL-445 opportunity \N -577 \N 604 agent 164 VOL-431 opportunity \N -578 \N 600 agent 168 VOL-883 opportunity \N -579 \N 587 agent 185 VOL-642 opportunity \N -580 \N 790 agent 224 VOL-648 opportunity \N -581 \N 773 agent 241 VOL-489 opportunity \N -582 \N 851 agent 250 VOL-809 opportunity \N -583 \N 851 agent 250 VOL-808 opportunity \N -584 \N 857 agent 256 VOL-586 opportunity \N -585 \N 857 agent 256 VOL-583 opportunity \N -586 \N 5 agent 320 VOL-87 opportunity \N -587 \N 5 agent 320 VOL-174 opportunity \N -588 \N 5 agent 320 VOL-175 opportunity \N -589 \N 5 agent 320 VOL-176 opportunity \N -590 \N 17 agent 354 VOL-382 opportunity \N -591 \N 17 agent 354 VOL-560 opportunity \N -592 \N 17 agent 354 VOL-635 opportunity \N -593 \N 24 agent 355 VOL-206 opportunity \N -594 \N 24 agent 355 VOL-241 opportunity \N -595 \N 24 agent 355 VOL-262 opportunity \N -596 \N 24 agent 355 VOL-281 opportunity \N -597 \N 24 agent 355 VOL-293 opportunity \N -598 \N 24 agent 355 VOL-294 opportunity \N -599 \N 24 agent 355 VOL-295 opportunity \N -600 \N 24 agent 355 VOL-296 opportunity \N -601 \N 24 agent 355 VOL-301 opportunity \N -602 \N 24 agent 355 VOL-311 opportunity \N -603 \N 24 agent 355 VOL-326 opportunity \N -604 \N 25 agent 356 VOL-207 opportunity \N -605 \N 25 agent 356 VOL-276 opportunity \N -606 \N 25 agent 356 VOL-275 opportunity \N -607 \N 25 agent 356 VOL-283 opportunity \N -608 \N 25 agent 356 VOL-338 opportunity \N -609 \N 25 agent 356 VOL-397 opportunity \N -610 \N 25 agent 356 VOL-439 opportunity \N -611 \N 25 agent 356 VOL-522 opportunity \N -612 \N 25 agent 356 VOL-523 opportunity \N -613 \N 25 agent 356 VOL-535 opportunity \N -614 \N 25 agent 356 VOL-542 opportunity \N -615 \N 25 agent 356 VOL-633 opportunity \N -616 \N 25 agent 356 VOL-634 opportunity \N -617 \N 25 agent 356 VOL-847 opportunity \N -618 \N 26 agent 357 VOL-222 opportunity \N -619 \N 26 agent 357 VOL-223 opportunity \N -620 \N 26 agent 357 VOL-224 opportunity \N -621 \N 26 agent 357 VOL-230 opportunity \N -622 \N 26 agent 357 VOL-390 opportunity \N -623 \N 26 agent 357 VOL-587 opportunity \N -624 \N 26 agent 357 VOL-584 opportunity \N -625 \N 26 agent 357 VOL-617 opportunity \N -626 \N 26 agent 357 VOL-632 opportunity \N -627 \N 26 agent 357 VOL-689 opportunity \N -628 \N 26 agent 357 VOL-712 opportunity \N -629 \N 26 agent 357 VOL-714 opportunity \N -630 \N 26 agent 357 VOL-715 opportunity \N -631 \N 26 agent 357 VOL-810 opportunity \N -632 \N 28 agent 358 VOL-558 opportunity \N -633 \N 28 agent 358 VOL-628 opportunity \N -634 \N 28 agent 358 VOL-683 opportunity \N -635 \N 32 agent 360 VOL-387 opportunity \N -636 \N 32 agent 360 VOL-386 opportunity \N -637 \N 32 agent 360 VOL-417 opportunity \N -638 \N 32 agent 360 VOL-423 opportunity \N -639 \N 32 agent 360 VOL-429 opportunity \N -640 \N 32 agent 360 VOL-442 opportunity \N -641 \N 32 agent 360 VOL-446 opportunity \N -642 \N 32 agent 360 VOL-573 opportunity \N -643 \N 32 agent 360 VOL-605 opportunity \N -644 \N 38 agent 366 VOL-653 opportunity \N -645 \N 38 agent 366 VOL-655 opportunity \N -646 \N 38 agent 366 VOL-656 opportunity \N -647 \N 38 agent 366 VOL-765 opportunity \N -648 \N 38 agent 366 VOL-775 opportunity \N -649 \N 39 agent 367 VOL-672 opportunity \N -650 \N 39 agent 367 VOL-713 opportunity \N -651 \N 41 agent 369 VOL-651 opportunity \N -652 \N 42 agent 370 VOL-345 opportunity \N -653 \N 42 agent 370 VOL-636 opportunity \N -654 \N 42 agent 370 VOL-362 opportunity \N -655 \N 43 agent 371 VOL-813 opportunity \N -656 \N 49 agent 377 VOL-650 opportunity \N -657 \N 49 agent 377 VOL-649 opportunity \N -658 \N 49 agent 377 VOL-695 opportunity \N -659 \N 49 agent 377 VOL-698 opportunity \N -660 \N 49 agent 377 VOL-783 opportunity \N -661 \N 49 agent 377 VOL-828 opportunity \N -662 \N 49 agent 377 VOL-830 opportunity \N -663 \N 49 agent 377 VOL-696 opportunity \N -664 \N 50 agent 378 VOL-333 opportunity \N -665 \N 50 agent 378 VOL-374 opportunity \N -666 \N 50 agent 378 VOL-418 opportunity \N -667 \N 50 agent 378 VOL-434 opportunity \N -668 \N 50 agent 378 VOL-473 opportunity \N -669 \N 50 agent 378 VOL-478 opportunity \N -670 \N 50 agent 378 VOL-481 opportunity \N -671 \N 50 agent 378 VOL-480 opportunity \N -672 \N 50 agent 378 VOL-482 opportunity \N -673 \N 50 agent 378 VOL-505 opportunity \N -674 \N 50 agent 378 VOL-506 opportunity \N -675 \N 50 agent 378 VOL-518 opportunity \N -676 \N 50 agent 378 VOL-525 opportunity \N -677 \N 50 agent 378 VOL-529 opportunity \N -678 \N 50 agent 378 VOL-544 opportunity \N -679 \N 50 agent 378 VOL-552 opportunity \N -680 \N 50 agent 378 VOL-559 opportunity \N -681 \N 50 agent 378 VOL-571 opportunity \N -682 \N 50 agent 378 VOL-580 opportunity \N -683 \N 50 agent 378 VOL-589 opportunity \N -684 \N 50 agent 378 VOL-591 opportunity \N -685 \N 50 agent 378 VOL-599 opportunity \N -686 \N 50 agent 378 VOL-620 opportunity \N -687 \N 50 agent 378 VOL-619 opportunity \N -688 \N 50 agent 378 VOL-629 opportunity \N -689 \N 50 agent 378 VOL-637 opportunity \N -690 \N 50 agent 378 VOL-661 opportunity \N -691 \N 50 agent 378 VOL-664 opportunity \N -692 \N 50 agent 378 VOL-654 opportunity \N -693 \N 50 agent 378 VOL-674 opportunity \N -694 \N 50 agent 378 VOL-684 opportunity \N -695 \N 50 agent 378 VOL-686 opportunity \N -696 \N 50 agent 378 VOL-693 opportunity \N -697 \N 50 agent 378 VOL-641 opportunity \N -698 \N 50 agent 378 VOL-697 opportunity \N -699 \N 50 agent 378 VOL-699 opportunity \N -700 \N 50 agent 378 VOL-711 opportunity \N -701 \N 50 agent 378 VOL-710 opportunity \N -702 \N 50 agent 378 VOL-724 opportunity \N -703 \N 50 agent 378 VOL-739 opportunity \N -704 \N 50 agent 378 VOL-737 opportunity \N -705 \N 50 agent 378 VOL-738 opportunity \N -706 \N 50 agent 378 VOL-735 opportunity \N -707 \N 50 agent 378 VOL-740 opportunity \N -708 \N 50 agent 378 VOL-745 opportunity \N -709 \N 50 agent 378 VOL-750 opportunity \N -710 \N 50 agent 378 VOL-757 opportunity \N -711 \N 50 agent 378 VOL-756 opportunity \N -712 \N 50 agent 378 VOL-758 opportunity \N -713 \N 50 agent 378 VOL-759 opportunity \N -714 \N 50 agent 378 VOL-760 opportunity \N -715 \N 50 agent 378 VOL-773 opportunity \N -716 \N 50 agent 378 VOL-774 opportunity \N -717 \N 50 agent 378 VOL-772 opportunity \N -718 \N 50 agent 378 VOL-776 opportunity \N -719 \N 50 agent 378 VOL-777 opportunity \N -720 \N 50 agent 378 VOL-768 opportunity \N -721 \N 50 agent 378 VOL-805 opportunity \N -722 \N 50 agent 378 VOL-812 opportunity \N -723 \N 50 agent 378 VOL-807 opportunity \N -724 \N 50 agent 378 VOL-804 opportunity \N -725 \N 50 agent 378 VOL-822 opportunity \N -726 \N 50 agent 378 VOL-834 opportunity \N -727 \N 50 agent 378 VOL-835 opportunity \N -728 \N 50 agent 378 VOL-837 opportunity \N -729 \N 50 agent 378 VOL-842 opportunity \N -730 \N 50 agent 378 VOL-838 opportunity \N -731 \N 50 agent 378 VOL-852 opportunity \N -732 \N 50 agent 378 VOL-850 opportunity \N -733 \N 50 agent 378 VOL-786 opportunity \N -734 \N 50 agent 378 VOL-865 opportunity \N -735 \N 50 agent 378 VOL-868 opportunity \N -736 \N 50 agent 378 VOL-881 opportunity \N -737 \N 50 agent 378 VOL-875 opportunity \N -738 \N 50 agent 378 VOL-877 opportunity \N -739 \N 50 agent 378 VOL-884 opportunity \N -740 \N 50 agent 378 VOL-888 opportunity \N -741 \N 54 agent 379 VOL-598 opportunity \N -742 \N 54 agent 379 VOL-640 opportunity \N -743 \N 54 agent 379 VOL-676 opportunity \N -744 \N 54 agent 379 VOL-795 opportunity \N -745 \N 54 agent 379 VOL-814 opportunity \N -746 \N 54 agent 379 VOL-829 opportunity \N -747 \N 54 agent 379 VOL-869 opportunity \N -748 \N 720 agent 388 VOL-568 opportunity \N -749 \N 720 agent 388 VOL-354 opportunity \N -750 \N 707 agent 401 VOL-827 opportunity \N -751 \N 707 agent 401 VOL-826 opportunity \N -752 \N 707 agent 401 VOL-825 opportunity \N -753 \N 707 agent 401 VOL-507 opportunity \N -754 \N 707 agent 401 VOL-592 opportunity \N -755 \N 707 agent 401 VOL-563 opportunity \N -756 \N 707 agent 401 VOL-562 opportunity \N -757 \N 707 agent 401 VOL-818 opportunity \N -758 \N 707 agent 401 VOL-817 opportunity \N -759 \N 707 agent 401 VOL-816 opportunity \N -760 \N 707 agent 401 VOL-585 opportunity \N -761 \N 707 agent 401 VOL-862 opportunity \N -762 \N 59 agent 414 VOL-574 opportunity \N -763 \N 59 agent 414 VOL-731 opportunity \N -764 \N 59 agent 414 VOL-787 opportunity \N -765 \N 60 agent 415 VOL-671 opportunity \N -766 \N 61 agent 416 VOL-659 opportunity \N -767 \N 61 agent 416 VOL-660 opportunity \N -768 \N 61 agent 416 VOL-849 opportunity \N -769 \N 61 agent 416 VOL-856 opportunity \N -770 \N 61 agent 416 VOL-859 opportunity \N -771 \N 61 agent 416 VOL-860 opportunity \N -772 \N 61 agent 416 VOL-854 opportunity \N -773 \N 61 agent 416 VOL-889 opportunity \N -774 \N 61 agent 416 VOL-890 opportunity \N -775 \N 62 agent 417 VOL-708 opportunity \N -776 \N 62 agent 417 VOL-771 opportunity \N -777 \N 62 agent 417 VOL-864 opportunity \N -778 \N 673 agent 447 VOL-581 opportunity \N -779 \N 658 agent 462 VOL-23 opportunity \N -780 \N 922 agent 479 VOL-802 opportunity \N -781 \N 922 agent 479 VOL-858 opportunity \N -782 \N 923 agent 480 VOL-824 opportunity \N -783 \N 923 agent 480 VOL-844 opportunity \N -784 \N 924 agent 481 VOL-769 opportunity \N -785 \N 924 agent 481 VOL-746 opportunity \N -786 \N 924 agent 481 VOL-707 opportunity \N -787 \N 924 agent 481 VOL-645 opportunity \N -788 \N 925 agent 482 VOL-657 opportunity \N -789 \N 925 agent 482 VOL-455 opportunity \N -790 \N 926 agent 483 VOL-719 opportunity \N -791 \N 927 agent 484 VOL-470 opportunity \N -792 \N 928 agent 485 VOL-348 opportunity \N -793 \N 929 agent 486 VOL-182 opportunity \N -794 \N 929 agent 486 VOL-173 opportunity \N -795 \N 929 agent 486 VOL-60 opportunity \N -796 \N 929 agent 486 VOL-111 opportunity \N -797 \N 929 agent 486 VOL-51 opportunity \N -798 \N 929 agent 486 VOL-50 opportunity \N -799 \N 929 agent 486 VOL-799 opportunity \N -800 \N 929 agent 486 VOL-94 opportunity \N -801 \N 929 agent 486 VOL-95 opportunity \N -802 \N 929 agent 486 VOL-800 opportunity \N -803 \N 929 agent 486 VOL-798 opportunity \N -804 \N 929 agent 486 VOL-646 opportunity \N -805 \N 929 agent 486 VOL-593 opportunity \N -806 \N 929 agent 486 VOL-578 opportunity \N -807 \N 929 agent 486 VOL-565 opportunity \N -808 \N 929 agent 486 VOL-561 opportunity \N -809 \N 929 agent 486 VOL-441 opportunity \N -810 \N 929 agent 486 VOL-490 opportunity \N -811 \N 929 agent 486 VOL-500 opportunity \N -812 \N 929 agent 486 VOL-536 opportunity \N -813 \N 929 agent 486 VOL-553 opportunity \N -814 \N 929 agent 486 VOL-234 opportunity \N -815 \N 929 agent 486 VOL-891 opportunity \N -816 \N 931 agent 487 VOL-872 opportunity \N -817 opp-pending VOL-4 opportunity 3 VOLVO-702 volunteer \N -818 opp-pending VOL-4 opportunity 3 VOLVO-659 volunteer \N -819 opp-pending VOL-4 opportunity 3 VOLVO-43 volunteer \N -820 opp-pending VOL-4 opportunity 3 VOLVO-58 volunteer \N -821 opp-pending VOL-4 opportunity 3 VOLVO-351 volunteer \N -1411 opp-pending VOL-319 opportunity 262 VOLVO-105 volunteer \N -824 opp-pending VOL-5 opportunity 4 VOLVO-589 volunteer \N -825 opp-pending VOL-5 opportunity 4 VOLVO-571 volunteer \N -826 opp-pending VOL-12 opportunity 11 VOLVO-548 volunteer \N -827 opp-matched VOL-12 opportunity 11 VOLVO-301 volunteer \N -828 opp-pending VOL-13 opportunity 12 VOLVO-565 volunteer \N -829 opp-pending VOL-13 opportunity 12 VOLVO-594 volunteer \N -830 opp-pending VOL-13 opportunity 12 VOLVO-661 volunteer \N -831 opp-pending VOL-13 opportunity 12 VOLVO-727 volunteer \N -832 opp-pending VOL-13 opportunity 12 VOLVO-561 volunteer \N -833 opp-pending VOL-13 opportunity 12 VOLVO-742 volunteer \N -834 opp-pending VOL-13 opportunity 12 VOLVO-694 volunteer \N -835 opp-pending VOL-13 opportunity 12 VOLVO-521 volunteer \N -836 opp-pending VOL-13 opportunity 12 VOLVO-540 volunteer \N -837 opp-pending VOL-13 opportunity 12 VOLVO-475 volunteer \N -838 opp-pending VOL-13 opportunity 12 VOLVO-156 volunteer \N -839 opp-pending VOL-13 opportunity 12 VOLVO-174 volunteer \N -1413 opp-pending VOL-321 opportunity 263 VOLVO-612 volunteer \N -841 opp-pending VOL-16 opportunity 14 VOLVO-699 volunteer \N -842 opp-pending VOL-16 opportunity 14 VOLVO-697 volunteer \N -843 opp-pending VOL-16 opportunity 14 VOLVO-592 volunteer \N -844 opp-pending VOL-16 opportunity 14 VOLVO-756 volunteer \N -845 opp-pending VOL-16 opportunity 14 VOLVO-132 volunteer \N -846 opp-pending VOL-16 opportunity 14 VOLVO-152 volunteer \N -847 opp-pending VOL-16 opportunity 14 VOLVO-205 volunteer \N -848 opp-pending VOL-16 opportunity 14 VOLVO-107 volunteer \N -849 opp-pending VOL-16 opportunity 14 VOLVO-391 volunteer \N -850 opp-pending VOL-16 opportunity 14 VOLVO-400 volunteer \N -851 opp-pending VOL-16 opportunity 14 VOLVO-449 volunteer \N -852 opp-pending VOL-16 opportunity 14 VOLVO-455 volunteer \N -853 opp-pending VOL-16 opportunity 14 VOLVO-805 volunteer \N -1414 opp-pending VOL-321 opportunity 263 VOLVO-647 volunteer \N -1415 opp-pending VOL-321 opportunity 263 VOLVO-781 volunteer \N -1416 opp-pending VOL-322 opportunity 264 VOLVO-77 volunteer \N -857 opp-pending VOL-20 opportunity 18 VOLVO-778 volunteer \N -858 opp-pending VOL-20 opportunity 18 VOLVO-492 volunteer \N -859 opp-pending VOL-23 opportunity 20 VOLVO-550 volunteer \N -860 opp-pending VOL-23 opportunity 20 VOLVO-453 volunteer \N -861 opp-matched VOL-24 opportunity 21 VOLVO-712 volunteer \N -862 opp-pending VOL-25 opportunity 22 VOLVO-619 volunteer \N -864 opp-pending VOL-30 opportunity 25 VOLVO-551 volunteer \N -865 opp-pending VOL-30 opportunity 25 VOLVO-591 volunteer \N -866 opp-pending VOL-30 opportunity 25 VOLVO-722 volunteer \N -867 opp-active VOL-30 opportunity 25 VOLVO-590 volunteer \N -868 opp-pending VOL-37 opportunity 32 VOLVO-726 volunteer \N -869 opp-pending VOL-37 opportunity 32 VOLVO-744 volunteer \N -870 opp-pending VOL-37 opportunity 32 VOLVO-616 volunteer \N -871 opp-matched VOL-37 opportunity 32 VOLVO-595 volunteer \N -872 opp-pending VOL-48 opportunity 42 VOLVO-648 volunteer \N -873 opp-pending VOL-48 opportunity 42 VOLVO-705 volunteer \N -874 opp-pending VOL-48 opportunity 42 VOLVO-604 volunteer \N -875 opp-pending VOL-52 opportunity 46 VOLVO-673 volunteer \N -876 opp-pending VOL-52 opportunity 46 VOLVO-90 volunteer \N -877 opp-pending VOL-54 opportunity 47 VOLVO-495 volunteer \N -878 opp-pending VOL-54 opportunity 47 VOLVO-496 volunteer \N -879 opp-pending VOL-56 opportunity 49 VOLVO-763 volunteer \N -880 opp-pending VOL-57 opportunity 50 VOLVO-624 volunteer \N -881 opp-pending VOL-57 opportunity 50 VOLVO-579 volunteer \N -882 opp-pending VOL-57 opportunity 50 VOLVO-628 volunteer \N -883 opp-pending VOL-57 opportunity 50 VOLVO-480 volunteer \N -884 opp-pending VOL-57 opportunity 50 VOLVO-777 volunteer \N -885 opp-pending VOL-57 opportunity 50 VOLVO-710 volunteer \N -886 opp-pending VOL-57 opportunity 50 VOLVO-586 volunteer \N -887 opp-pending VOL-57 opportunity 50 VOLVO-717 volunteer \N -888 opp-pending VOL-58 opportunity 51 VOLVO-499 volunteer \N -889 opp-pending VOL-58 opportunity 51 VOLVO-36 volunteer \N -890 opp-pending VOL-58 opportunity 51 VOLVO-154 volunteer \N -891 opp-pending VOL-58 opportunity 51 VOLVO-207 volunteer \N -892 opp-pending VOL-59 opportunity 52 VOLVO-42 volunteer \N -893 opp-pending VOL-59 opportunity 52 VOLVO-54 volunteer \N -894 opp-pending VOL-61 opportunity 54 VOLVO-646 volunteer \N -895 opp-pending VOL-61 opportunity 54 VOLVO-19 volunteer \N -896 opp-pending VOL-62 opportunity 55 VOLVO-670 volunteer \N -897 opp-pending VOL-62 opportunity 55 VOLVO-15 volunteer \N -898 opp-pending VOL-63 opportunity 56 VOLVO-615 volunteer \N -899 opp-pending VOL-64 opportunity 57 VOLVO-478 volunteer \N -1418 opp-pending VOL-323 opportunity 265 VOLVO-527 volunteer \N -901 opp-active VOL-68 opportunity 61 VOLVO-675 volunteer \N -902 opp-active VOL-69 opportunity 62 VOLVO-615 volunteer \N -903 opp-pending VOL-71 opportunity 63 VOLVO-766 volunteer \N -1419 opp-pending VOL-323 opportunity 265 VOLVO-54 volunteer \N -905 opp-pending VOL-72 opportunity 64 VOLVO-603 volunteer \N -906 opp-pending VOL-76 opportunity 67 VOLVO-724 volunteer \N -907 opp-pending VOL-80 opportunity 71 VOLVO-681 volunteer \N -908 opp-active VOL-81 opportunity 72 VOLVO-633 volunteer \N -909 opp-pending VOL-83 opportunity 73 VOLVO-579 volunteer \N -910 opp-pending VOL-86 opportunity 76 VOLVO-698 volunteer \N -911 opp-pending VOL-86 opportunity 76 VOLVO-647 volunteer \N -912 opp-pending VOL-86 opportunity 76 VOLVO-487 volunteer \N -913 opp-pending VOL-86 opportunity 76 VOLVO-17 volunteer \N -914 opp-pending VOL-87 opportunity 77 VOLVO-725 volunteer \N -915 opp-pending VOL-87 opportunity 77 VOLVO-604 volunteer \N -916 opp-pending VOL-88 opportunity 78 VOLVO-568 volunteer \N -917 opp-pending VOL-88 opportunity 78 VOLVO-563 volunteer \N -918 opp-pending VOL-88 opportunity 78 VOLVO-675 volunteer \N -919 opp-pending VOL-88 opportunity 78 VOLVO-637 volunteer \N -1420 opp-pending VOL-323 opportunity 265 VOLVO-41 volunteer \N -921 opp-pending VOL-89 opportunity 79 VOLVO-675 volunteer \N -922 opp-pending VOL-90 opportunity 80 VOLVO-762 volunteer \N -1421 opp-pending VOL-323 opportunity 265 VOLVO-29 volunteer \N -924 opp-pending VOL-92 opportunity 82 VOLVO-773 volunteer \N -925 opp-pending VOL-92 opportunity 82 VOLVO-767 volunteer \N -926 opp-pending VOL-92 opportunity 82 VOLVO-752 volunteer \N -1422 opp-pending VOL-323 opportunity 265 VOLVO-721 volunteer \N -928 opp-pending VOL-96 opportunity 85 VOLVO-574 volunteer \N -929 opp-pending VOL-96 opportunity 85 VOLVO-700 volunteer \N -930 opp-pending VOL-96 opportunity 85 VOLVO-487 volunteer \N -1423 opp-pending VOL-323 opportunity 265 VOLVO-606 volunteer \N -932 opp-pending VOL-98 opportunity 87 VOLVO-487 volunteer \N -933 opp-pending VOL-98 opportunity 87 VOLVO-615 volunteer \N -1424 opp-pending VOL-323 opportunity 265 VOLVO-507 volunteer \N -935 opp-pending VOL-99 opportunity 88 VOLVO-693 volunteer \N -936 opp-pending VOL-99 opportunity 88 VOLVO-699 volunteer \N -937 opp-pending VOL-99 opportunity 88 VOLVO-756 volunteer \N -938 opp-pending VOL-99 opportunity 88 VOLVO-726 volunteer \N -939 opp-pending VOL-99 opportunity 88 VOLVO-507 volunteer \N -940 opp-active VOL-100 opportunity 89 VOLVO-733 volunteer \N -941 opp-pending VOL-101 opportunity 90 VOLVO-728 volunteer \N -942 opp-pending VOL-105 opportunity 93 VOLVO-723 volunteer \N -943 opp-pending VOL-109 opportunity 96 VOLVO-612 volunteer \N -944 opp-pending VOL-112 opportunity 99 VOLVO-723 volunteer \N -945 opp-pending VOL-112 opportunity 99 VOLVO-651 volunteer \N -946 opp-pending VOL-112 opportunity 99 VOLVO-722 volunteer \N -947 opp-pending VOL-113 opportunity 100 VOLVO-487 volunteer \N -948 opp-pending VOL-113 opportunity 100 VOLVO-695 volunteer \N -949 opp-pending VOL-114 opportunity 101 VOLVO-733 volunteer \N -950 opp-pending VOL-114 opportunity 101 VOLVO-775 volunteer \N -951 opp-pending VOL-114 opportunity 101 VOLVO-627 volunteer \N -952 opp-pending VOL-114 opportunity 101 VOLVO-489 volunteer \N -953 opp-pending VOL-114 opportunity 101 VOLVO-626 volunteer \N -954 opp-pending VOL-114 opportunity 101 VOLVO-669 volunteer \N -955 opp-pending VOL-116 opportunity 102 VOLVO-754 volunteer \N -956 opp-pending VOL-116 opportunity 102 VOLVO-421 volunteer \N -1425 opp-matched VOL-323 opportunity 265 VOLVO-7 volunteer \N -958 opp-pending VOL-117 opportunity 103 VOLVO-520 volunteer \N -959 opp-pending VOL-117 opportunity 103 VOLVO-543 volunteer \N -960 opp-pending VOL-118 opportunity 104 VOLVO-669 volunteer \N -961 opp-pending VOL-118 opportunity 104 VOLVO-626 volunteer \N -962 opp-pending VOL-118 opportunity 104 VOLVO-440 volunteer \N -963 opp-pending VOL-118 opportunity 104 VOLVO-462 volunteer \N -964 opp-pending VOL-119 opportunity 105 VOLVO-643 volunteer \N -965 opp-pending VOL-119 opportunity 105 VOLVO-634 volunteer \N -966 opp-pending VOL-119 opportunity 105 VOLVO-576 volunteer \N -967 opp-pending VOL-119 opportunity 105 VOLVO-462 volunteer \N -968 opp-pending VOL-119 opportunity 105 VOLVO-459 volunteer \N -969 opp-pending VOL-120 opportunity 106 VOLVO-781 volunteer \N -970 opp-pending VOL-120 opportunity 106 VOLVO-617 volunteer \N -971 opp-pending VOL-120 opportunity 106 VOLVO-462 volunteer \N -972 opp-pending VOL-121 opportunity 107 VOLVO-701 volunteer \N -973 opp-active VOL-121 opportunity 107 VOLVO-649 volunteer \N -974 opp-pending VOL-122 opportunity 108 VOLVO-722 volunteer \N -975 opp-pending VOL-126 opportunity 110 VOLVO-671 volunteer \N -976 opp-pending VOL-126 opportunity 110 VOLVO-576 volunteer \N -977 opp-pending VOL-127 opportunity 111 VOLVO-557 volunteer \N -978 opp-pending VOL-127 opportunity 111 VOLVO-715 volunteer \N -979 opp-pending VOL-127 opportunity 111 VOLVO-607 volunteer \N -980 opp-pending VOL-128 opportunity 112 VOLVO-557 volunteer \N -981 opp-pending VOL-128 opportunity 112 VOLVO-487 volunteer \N -982 opp-pending VOL-128 opportunity 112 VOLVO-715 volunteer \N -983 opp-pending VOL-128 opportunity 112 VOLVO-607 volunteer \N -1427 opp-matched VOL-329 opportunity 269 VOLVO-735 volunteer \N -1428 opp-pending VOL-331 opportunity 271 VOLVO-293 volunteer \N -987 opp-pending VOL-131 opportunity 115 VOLVO-726 volunteer \N -988 opp-pending VOL-132 opportunity 116 VOLVO-626 volunteer \N -989 opp-pending VOL-132 opportunity 116 VOLVO-560 volunteer \N -990 opp-pending VOL-132 opportunity 116 VOLVO-726 volunteer \N -991 opp-pending VOL-134 opportunity 118 VOLVO-13 volunteer \N -992 opp-pending VOL-138 opportunity 120 VOLVO-780 volunteer \N -993 opp-pending VOL-140 opportunity 122 VOLVO-473 volunteer \N -1429 opp-pending VOL-331 opportunity 271 VOLVO-373 volunteer \N -995 opp-matched VOL-142 opportunity 123 VOLVO-122 volunteer \N -996 opp-pending VOL-143 opportunity 124 VOLVO-609 volunteer \N -997 opp-pending VOL-143 opportunity 124 VOLVO-15 volunteer \N -1000 opp-pending VOL-145 opportunity 126 VOLVO-547 volunteer \N -1001 opp-pending VOL-145 opportunity 126 VOLVO-478 volunteer \N -1002 opp-pending VOL-146 opportunity 127 VOLVO-493 volunteer \N -1003 opp-pending VOL-146 opportunity 127 VOLVO-125 volunteer \N -1004 opp-matched VOL-146 opportunity 127 VOLVO-662 volunteer \N -1432 opp-pending VOL-332 opportunity 272 VOLVO-673 volunteer \N -1006 opp-pending VOL-149 opportunity 129 VOLVO-479 volunteer \N -1007 opp-pending VOL-150 opportunity 130 VOLVO-676 volunteer \N -1433 opp-pending VOL-332 opportunity 272 VOLVO-90 volunteer \N -1009 opp-pending VOL-152 opportunity 131 VOLVO-501 volunteer \N -1010 opp-pending VOL-159 opportunity 132 VOLVO-577 volunteer \N -1011 opp-pending VOL-165 opportunity 136 VOLVO-519 volunteer \N -1012 opp-pending VOL-166 opportunity 137 VOLVO-135 volunteer \N -1013 opp-pending VOL-166 opportunity 137 VOLVO-109 volunteer \N -1434 opp-pending VOL-333 opportunity 273 VOLVO-113 volunteer \N -1015 opp-pending VOL-167 opportunity 138 VOLVO-522 volunteer \N -1017 opp-pending VOL-172 opportunity 142 VOLVO-542 volunteer \N -1018 opp-pending VOL-173 opportunity 143 VOLVO-588 volunteer \N -1019 opp-matched VOL-176 opportunity 146 VOLVO-609 volunteer \N -1020 opp-pending VOL-180 opportunity 149 VOLVO-620 volunteer \N -1021 opp-pending VOL-180 opportunity 149 VOLVO-563 volunteer \N -1022 opp-pending VOL-180 opportunity 149 VOLVO-568 volunteer \N -1023 opp-pending VOL-180 opportunity 149 VOLVO-706 volunteer \N -1024 opp-pending VOL-180 opportunity 149 VOLVO-741 volunteer \N -1025 opp-pending VOL-181 opportunity 150 VOLVO-615 volunteer \N -1436 opp-pending VOL-334 opportunity 274 VOLVO-65 volunteer \N -1027 opp-pending VOL-182 opportunity 151 VOLVO-612 volunteer \N -1028 opp-pending VOL-182 opportunity 151 VOLVO-678 volunteer \N -1029 opp-pending VOL-182 opportunity 151 VOLVO-760 volunteer \N -1030 opp-pending VOL-182 opportunity 151 VOLVO-773 volunteer \N -1031 opp-pending VOL-182 opportunity 151 VOLVO-756 volunteer \N -1032 opp-pending VOL-182 opportunity 151 VOLVO-562 volunteer \N -1033 opp-pending VOL-182 opportunity 151 VOLVO-659 volunteer \N -1034 opp-pending VOL-183 opportunity 152 VOLVO-478 volunteer \N -1035 opp-pending VOL-183 opportunity 152 VOLVO-592 volunteer \N -1036 opp-pending VOL-183 opportunity 152 VOLVO-626 volunteer \N -1037 opp-pending VOL-183 opportunity 152 VOLVO-561 volunteer \N -1038 opp-pending VOL-183 opportunity 152 VOLVO-763 volunteer \N -1039 opp-pending VOL-184 opportunity 153 VOLVO-761 volunteer \N -1040 opp-pending VOL-184 opportunity 153 VOLVO-622 volunteer \N -1041 opp-pending VOL-184 opportunity 153 VOLVO-494 volunteer \N -1042 opp-pending VOL-184 opportunity 153 VOLVO-681 volunteer \N -1043 opp-pending VOL-184 opportunity 153 VOLVO-574 volunteer \N -1044 opp-pending VOL-184 opportunity 153 VOLVO-505 volunteer \N -1045 opp-pending VOL-184 opportunity 153 VOLVO-631 volunteer \N -1046 opp-pending VOL-184 opportunity 153 VOLVO-762 volunteer \N -1047 opp-pending VOL-184 opportunity 153 VOLVO-598 volunteer \N -1048 opp-pending VOL-185 opportunity 154 VOLVO-615 volunteer \N -1437 opp-pending VOL-334 opportunity 274 VOLVO-474 volunteer \N -1050 opp-pending VOL-186 opportunity 155 VOLVO-681 volunteer \N -1051 opp-pending VOL-186 opportunity 155 VOLVO-574 volunteer \N -1052 opp-pending VOL-186 opportunity 155 VOLVO-598 volunteer \N -1053 opp-pending VOL-186 opportunity 155 VOLVO-505 volunteer \N -1054 opp-pending VOL-186 opportunity 155 VOLVO-494 volunteer \N -1055 opp-pending VOL-186 opportunity 155 VOLVO-622 volunteer \N -1056 opp-pending VOL-186 opportunity 155 VOLVO-631 volunteer \N -1057 opp-pending VOL-186 opportunity 155 VOLVO-762 volunteer \N -1058 opp-pending VOL-186 opportunity 155 VOLVO-472 volunteer \N -1438 opp-pending VOL-334 opportunity 274 VOLVO-533 volunteer \N -1060 opp-pending VOL-188 opportunity 157 VOLVO-681 volunteer \N -1061 opp-pending VOL-188 opportunity 157 VOLVO-762 volunteer \N -1062 opp-pending VOL-188 opportunity 157 VOLVO-505 volunteer \N -1063 opp-pending VOL-188 opportunity 157 VOLVO-494 volunteer \N -1064 opp-pending VOL-188 opportunity 157 VOLVO-622 volunteer \N -1065 opp-pending VOL-188 opportunity 157 VOLVO-631 volunteer \N -1066 opp-pending VOL-188 opportunity 157 VOLVO-598 volunteer \N -1067 opp-pending VOL-188 opportunity 157 VOLVO-574 volunteer \N -1068 opp-pending VOL-189 opportunity 158 VOLVO-681 volunteer \N -1069 opp-pending VOL-189 opportunity 158 VOLVO-505 volunteer \N -1070 opp-pending VOL-189 opportunity 158 VOLVO-494 volunteer \N -1071 opp-pending VOL-189 opportunity 158 VOLVO-622 volunteer \N -1072 opp-pending VOL-189 opportunity 158 VOLVO-631 volunteer \N -1073 opp-pending VOL-189 opportunity 158 VOLVO-598 volunteer \N -1074 opp-pending VOL-189 opportunity 158 VOLVO-574 volunteer \N -1075 opp-pending VOL-189 opportunity 158 VOLVO-762 volunteer \N -1076 opp-pending VOL-190 opportunity 159 VOLVO-474 volunteer \N -1439 opp-pending VOL-334 opportunity 274 VOLVO-496 volunteer \N -1078 opp-pending VOL-191 opportunity 160 VOLVO-681 volunteer \N -1079 opp-pending VOL-191 opportunity 160 VOLVO-622 volunteer \N -1080 opp-pending VOL-191 opportunity 160 VOLVO-574 volunteer \N -1081 opp-pending VOL-191 opportunity 160 VOLVO-598 volunteer \N -1082 opp-pending VOL-191 opportunity 160 VOLVO-762 volunteer \N -1083 opp-pending VOL-191 opportunity 160 VOLVO-631 volunteer \N -1084 opp-pending VOL-191 opportunity 160 VOLVO-494 volunteer \N -1085 opp-pending VOL-191 opportunity 160 VOLVO-505 volunteer \N -1086 opp-pending VOL-192 opportunity 161 VOLVO-718 volunteer \N -1440 opp-pending VOL-334 opportunity 274 VOLVO-622 volunteer \N -1088 opp-matched VOL-192 opportunity 161 VOLVO-741 volunteer \N -1441 opp-pending VOL-334 opportunity 274 VOLVO-631 volunteer \N -1090 opp-pending VOL-193 opportunity 162 VOLVO-741 volunteer \N -1442 opp-pending VOL-334 opportunity 274 VOLVO-761 volunteer \N -1443 opp-pending VOL-334 opportunity 274 VOLVO-667 volunteer \N -1093 opp-pending VOL-194 opportunity 163 VOLVO-697 volunteer \N -1094 opp-pending VOL-195 opportunity 164 VOLVO-762 volunteer \N -1095 opp-pending VOL-195 opportunity 164 VOLVO-494 volunteer \N -1096 opp-matched VOL-195 opportunity 164 VOLVO-615 volunteer \N -1097 opp-pending VOL-196 opportunity 165 VOLVO-609 volunteer \N -1098 opp-pending VOL-196 opportunity 165 VOLVO-530 volunteer \N -1099 opp-pending VOL-196 opportunity 165 VOLVO-520 volunteer \N -1100 opp-pending VOL-196 opportunity 165 VOLVO-503 volunteer \N -1101 opp-pending VOL-196 opportunity 165 VOLVO-712 volunteer \N -1102 opp-pending VOL-196 opportunity 165 VOLVO-735 volunteer \N -1444 opp-pending VOL-334 opportunity 274 VOLVO-717 volunteer \N -1104 opp-matched VOL-197 opportunity 166 VOLVO-615 volunteer \N -1105 opp-pending VOL-198 opportunity 167 VOLVO-527 volunteer \N -1106 opp-pending VOL-198 opportunity 167 VOLVO-606 volunteer \N -1107 opp-pending VOL-198 opportunity 167 VOLVO-658 volunteer \N -1108 opp-pending VOL-198 opportunity 167 VOLVO-674 volunteer \N -1109 opp-pending VOL-198 opportunity 167 VOLVO-751 volunteer \N -1110 opp-pending VOL-198 opportunity 167 VOLVO-694 volunteer \N -1111 opp-pending VOL-200 opportunity 169 VOLVO-762 volunteer \N -1112 opp-pending VOL-200 opportunity 169 VOLVO-778 volunteer \N -1113 opp-pending VOL-200 opportunity 169 VOLVO-758 volunteer \N -1114 opp-pending VOL-200 opportunity 169 VOLVO-669 volunteer \N -1115 opp-pending VOL-200 opportunity 169 VOLVO-681 volunteer \N -1116 opp-pending VOL-200 opportunity 169 VOLVO-494 volunteer \N -1117 opp-pending VOL-200 opportunity 169 VOLVO-679 volunteer \N -1118 opp-pending VOL-200 opportunity 169 VOLVO-615 volunteer \N -1445 opp-pending VOL-334 opportunity 274 VOLVO-719 volunteer \N -1120 opp-pending VOL-201 opportunity 170 VOLVO-526 volunteer \N -1121 opp-pending VOL-201 opportunity 170 VOLVO-748 volunteer \N -1122 opp-pending VOL-201 opportunity 170 VOLVO-515 volunteer \N -1123 opp-pending VOL-201 opportunity 170 VOLVO-499 volunteer \N -1124 opp-pending VOL-201 opportunity 170 VOLVO-678 volunteer \N -1446 opp-pending VOL-334 opportunity 274 VOLVO-668 volunteer \N -1126 opp-pending VOL-202 opportunity 171 VOLVO-751 volunteer \N -1447 opp-pending VOL-334 opportunity 274 VOLVO-766 volunteer \N -1128 opp-pending VOL-204 opportunity 172 VOLVO-546 volunteer \N -1129 opp-pending VOL-205 opportunity 173 VOLVO-527 volunteer \N -1130 opp-pending VOL-205 opportunity 173 VOLVO-674 volunteer \N -1131 opp-pending VOL-205 opportunity 173 VOLVO-580 volunteer \N -1132 opp-pending VOL-206 opportunity 174 VOLVO-584 volunteer \N -1133 opp-pending VOL-206 opportunity 174 VOLVO-563 volunteer \N -1134 opp-pending VOL-206 opportunity 174 VOLVO-613 volunteer \N -1135 opp-pending VOL-206 opportunity 174 VOLVO-620 volunteer \N -1448 opp-pending VOL-334 opportunity 274 VOLVO-721 volunteer \N -1449 opp-pending VOL-337 opportunity 277 VOLVO-74 volunteer \N -1138 opp-pending VOL-207 opportunity 175 VOLVO-558 volunteer \N -1139 opp-pending VOL-207 opportunity 175 VOLVO-493 volunteer \N -1140 opp-pending VOL-207 opportunity 175 VOLVO-366 volunteer \N -1141 opp-matched VOL-207 opportunity 175 VOLVO-662 volunteer \N -1450 opp-pending VOL-337 opportunity 277 VOLVO-333 volunteer \N -1452 opp-pending VOL-338 opportunity 278 VOLVO-78 volunteer \N -1145 opp-pending VOL-209 opportunity 176 VOLVO-658 volunteer \N -1146 opp-pending VOL-209 opportunity 176 VOLVO-674 volunteer \N -1147 opp-pending VOL-209 opportunity 176 VOLVO-606 volunteer \N -1148 opp-pending VOL-209 opportunity 176 VOLVO-603 volunteer \N -1149 opp-pending VOL-209 opportunity 176 VOLVO-580 volunteer \N -1150 opp-pending VOL-211 opportunity 177 VOLVO-651 volunteer \N -1151 opp-pending VOL-211 opportunity 177 VOLVO-574 volunteer \N -1152 opp-pending VOL-211 opportunity 177 VOLVO-487 volunteer \N -1153 opp-pending VOL-211 opportunity 177 VOLVO-762 volunteer \N -1154 opp-pending VOL-211 opportunity 177 VOLVO-766 volunteer \N -1155 opp-pending VOL-211 opportunity 177 VOLVO-774 volunteer \N -1156 opp-pending VOL-212 opportunity 178 VOLVO-651 volunteer \N -1157 opp-pending VOL-212 opportunity 178 VOLVO-681 volunteer \N -1158 opp-pending VOL-212 opportunity 178 VOLVO-667 volunteer \N -1159 opp-pending VOL-212 opportunity 178 VOLVO-761 volunteer \N -1160 opp-pending VOL-212 opportunity 178 VOLVO-533 volunteer \N -1161 opp-pending VOL-212 opportunity 178 VOLVO-487 volunteer \N -1162 opp-pending VOL-212 opportunity 178 VOLVO-574 volunteer \N -1163 opp-pending VOL-212 opportunity 178 VOLVO-766 volunteer \N -1164 opp-pending VOL-212 opportunity 178 VOLVO-762 volunteer \N -1165 opp-pending VOL-212 opportunity 178 VOLVO-774 volunteer \N -1166 opp-pending VOL-214 opportunity 180 VOLVO-494 volunteer \N -1167 opp-pending VOL-214 opportunity 180 VOLVO-717 volunteer \N -1168 opp-pending VOL-214 opportunity 180 VOLVO-667 volunteer \N -1169 opp-pending VOL-214 opportunity 180 VOLVO-615 volunteer \N -1453 opp-pending VOL-338 opportunity 278 VOLVO-678 volunteer \N -1171 opp-pending VOL-216 opportunity 182 VOLVO-494 volunteer \N -1172 opp-pending VOL-216 opportunity 182 VOLVO-631 volunteer \N -1454 opp-pending VOL-338 opportunity 278 VOLVO-85 volunteer \N -1174 opp-pending VOL-218 opportunity 183 VOLVO-538 volunteer \N -1175 opp-pending VOL-218 opportunity 183 VOLVO-506 volunteer \N -1176 opp-pending VOL-218 opportunity 183 VOLVO-616 volunteer \N -1177 opp-pending VOL-218 opportunity 183 VOLVO-678 volunteer \N -1178 opp-pending VOL-218 opportunity 183 VOLVO-499 volunteer \N -1179 opp-pending VOL-218 opportunity 183 VOLVO-532 volunteer \N -1455 opp-pending VOL-338 opportunity 278 VOLVO-40 volunteer \N -1456 opp-pending VOL-338 opportunity 278 VOLVO-272 volunteer \N -1182 opp-pending VOL-219 opportunity 184 VOLVO-645 volunteer \N -1183 opp-pending VOL-219 opportunity 184 VOLVO-775 volunteer \N -1184 opp-pending VOL-221 opportunity 185 VOLVO-546 volunteer \N -1185 opp-pending VOL-221 opportunity 185 VOLVO-712 volunteer \N -1186 opp-pending VOL-221 opportunity 185 VOLVO-735 volunteer \N -1187 opp-pending VOL-221 opportunity 185 VOLVO-752 volunteer \N -1188 opp-pending VOL-221 opportunity 185 VOLVO-596 volunteer \N -1189 opp-pending VOL-221 opportunity 185 VOLVO-478 volunteer \N -1190 opp-pending VOL-221 opportunity 185 VOLVO-763 volunteer \N -1191 opp-pending VOL-222 opportunity 186 VOLVO-546 volunteer \N -1192 opp-pending VOL-223 opportunity 187 VOLVO-140 volunteer \N -1193 opp-pending VOL-227 opportunity 190 VOLVO-651 volunteer \N -1194 opp-pending VOL-227 opportunity 190 VOLVO-774 volunteer \N -1195 opp-pending VOL-227 opportunity 190 VOLVO-762 volunteer \N -1196 opp-pending VOL-227 opportunity 190 VOLVO-766 volunteer \N -1197 opp-pending VOL-227 opportunity 190 VOLVO-574 volunteer \N -1198 opp-pending VOL-227 opportunity 190 VOLVO-487 volunteer \N -1199 opp-pending VOL-230 opportunity 193 VOLVO-585 volunteer \N -1200 opp-pending VOL-230 opportunity 193 VOLVO-105 volunteer \N -1201 opp-pending VOL-230 opportunity 193 VOLVO-130 volunteer \N -1202 opp-pending VOL-231 opportunity 194 VOLVO-651 volunteer \N -1203 opp-pending VOL-231 opportunity 194 VOLVO-667 volunteer \N -1204 opp-pending VOL-231 opportunity 194 VOLVO-681 volunteer \N -1205 opp-pending VOL-231 opportunity 194 VOLVO-487 volunteer \N -1206 opp-pending VOL-231 opportunity 194 VOLVO-774 volunteer \N -1207 opp-pending VOL-231 opportunity 194 VOLVO-762 volunteer \N -1208 opp-pending VOL-231 opportunity 194 VOLVO-766 volunteer \N -1209 opp-pending VOL-231 opportunity 194 VOLVO-574 volunteer \N -1210 opp-pending VOL-232 opportunity 195 VOLVO-651 volunteer \N -1211 opp-pending VOL-232 opportunity 195 VOLVO-533 volunteer \N -1212 opp-pending VOL-232 opportunity 195 VOLVO-774 volunteer \N -1213 opp-pending VOL-232 opportunity 195 VOLVO-762 volunteer \N -1214 opp-pending VOL-232 opportunity 195 VOLVO-766 volunteer \N -1215 opp-pending VOL-232 opportunity 195 VOLVO-574 volunteer \N -1216 opp-pending VOL-232 opportunity 195 VOLVO-487 volunteer \N -1217 opp-pending VOL-233 opportunity 196 VOLVO-651 volunteer \N -1218 opp-pending VOL-233 opportunity 196 VOLVO-474 volunteer \N -1219 opp-pending VOL-233 opportunity 196 VOLVO-667 volunteer \N -1220 opp-pending VOL-233 opportunity 196 VOLVO-487 volunteer \N -1221 opp-pending VOL-233 opportunity 196 VOLVO-766 volunteer \N -1222 opp-pending VOL-233 opportunity 196 VOLVO-574 volunteer \N -1223 opp-pending VOL-233 opportunity 196 VOLVO-762 volunteer \N -1224 opp-pending VOL-233 opportunity 196 VOLVO-774 volunteer \N -1225 opp-active VOL-233 opportunity 196 VOLVO-555 volunteer \N -1226 opp-pending VOL-234 opportunity 197 VOLVO-706 volunteer \N -1227 opp-pending VOL-234 opportunity 197 VOLVO-623 volunteer \N -1228 opp-pending VOL-234 opportunity 197 VOLVO-620 volunteer \N -1229 opp-pending VOL-234 opportunity 197 VOLVO-16 volunteer \N -1230 opp-pending VOL-235 opportunity 198 VOLVO-23 volunteer \N -1231 opp-pending VOL-235 opportunity 198 VOLVO-51 volunteer \N -1232 opp-pending VOL-235 opportunity 198 VOLVO-97 volunteer \N -1233 opp-pending VOL-235 opportunity 198 VOLVO-291 volunteer \N -1234 opp-pending VOL-235 opportunity 198 VOLVO-284 volunteer \N -1458 opp-pending VOL-339 opportunity 279 VOLVO-97 volunteer \N -1237 opp-pending VOL-239 opportunity 201 VOLVO-106 volunteer \N -1238 opp-pending VOL-239 opportunity 201 VOLVO-138 volunteer \N -1239 opp-matched VOL-239 opportunity 201 VOLVO-476 volunteer \N -1240 opp-pending VOL-240 opportunity 202 VOLVO-546 volunteer \N -1241 opp-pending VOL-241 opportunity 203 VOLVO-538 volunteer \N -1242 opp-pending VOL-241 opportunity 203 VOLVO-617 volunteer \N -1243 opp-pending VOL-241 opportunity 203 VOLVO-492 volunteer \N -1244 opp-pending VOL-241 opportunity 203 VOLVO-755 volunteer \N -1245 opp-pending VOL-241 opportunity 203 VOLVO-568 volunteer \N -1246 opp-pending VOL-241 opportunity 203 VOLVO-506 volunteer \N -1247 opp-pending VOL-243 opportunity 204 VOLVO-42 volunteer \N -1248 opp-pending VOL-244 opportunity 205 VOLVO-136 volunteer \N -1459 opp-pending VOL-339 opportunity 279 VOLVO-119 volunteer \N -1250 opp-pending VOL-250 opportunity 207 VOLVO-494 volunteer \N -1251 opp-pending VOL-250 opportunity 207 VOLVO-762 volunteer \N -1252 opp-pending VOL-250 opportunity 207 VOLVO-622 volunteer \N -1253 opp-pending VOL-250 opportunity 207 VOLVO-631 volunteer \N -1254 opp-pending VOL-250 opportunity 207 VOLVO-474 volunteer \N -1255 opp-pending VOL-250 opportunity 207 VOLVO-25 volunteer \N -1460 opp-pending VOL-339 opportunity 279 VOLVO-110 volunteer \N -1257 opp-pending VOL-251 opportunity 208 VOLVO-515 volunteer \N -1258 opp-pending VOL-251 opportunity 208 VOLVO-708 volunteer \N -1259 opp-pending VOL-251 opportunity 208 VOLVO-760 volunteer \N -1260 opp-pending VOL-251 opportunity 208 VOLVO-752 volunteer \N -1261 opp-pending VOL-251 opportunity 208 VOLVO-600 volunteer \N -1262 opp-pending VOL-251 opportunity 208 VOLVO-593 volunteer \N -1263 opp-pending VOL-253 opportunity 210 VOLVO-708 volunteer \N -1264 opp-pending VOL-253 opportunity 210 VOLVO-566 volunteer \N -1265 opp-pending VOL-253 opportunity 210 VOLVO-612 volunteer \N -1266 opp-pending VOL-253 opportunity 210 VOLVO-562 volunteer \N -1267 opp-pending VOL-253 opportunity 210 VOLVO-659 volunteer \N -1461 opp-pending VOL-339 opportunity 279 VOLVO-65 volunteer \N -1269 opp-pending VOL-257 opportunity 211 VOLVO-19 volunteer \N -1270 opp-pending VOL-257 opportunity 211 VOLVO-763 volunteer \N -1271 opp-pending VOL-257 opportunity 211 VOLVO-478 volunteer \N -1272 opp-pending VOL-257 opportunity 211 VOLVO-546 volunteer \N -1273 opp-pending VOL-257 opportunity 211 VOLVO-24 volunteer \N -1462 opp-pending VOL-339 opportunity 279 VOLVO-533 volunteer \N -1276 opp-pending VOL-260 opportunity 213 VOLVO-128 volunteer \N -1277 opp-pending VOL-260 opportunity 213 VOLVO-345 volunteer \N -1278 opp-pending VOL-260 opportunity 213 VOLVO-447 volunteer \N -1279 opp-pending VOL-260 opportunity 213 VOLVO-456 volunteer \N -1465 opp-pending VOL-341 opportunity 280 VOLVO-741 volunteer \N -1282 opp-pending VOL-262 opportunity 215 VOLVO-527 volunteer \N -1283 opp-pending VOL-262 opportunity 215 VOLVO-41 volunteer \N -1284 opp-pending VOL-262 opportunity 215 VOLVO-580 volunteer \N -1285 opp-pending VOL-262 opportunity 215 VOLVO-674 volunteer \N -1286 opp-pending VOL-265 opportunity 217 VOLVO-116 volunteer \N -1287 opp-pending VOL-265 opportunity 217 VOLVO-162 volunteer \N -1288 opp-pending VOL-265 opportunity 217 VOLVO-448 volunteer \N -1289 opp-pending VOL-265 opportunity 217 VOLVO-819 volunteer \N -1466 opp-pending VOL-341 opportunity 280 VOLVO-69 volunteer \N -1291 opp-pending VOL-266 opportunity 218 VOLVO-55 volunteer \N -1292 opp-pending VOL-266 opportunity 218 VOLVO-107 volunteer \N -1467 opp-pending VOL-341 opportunity 280 VOLVO-613 volunteer \N -1294 opp-pending VOL-267 opportunity 219 VOLVO-335 volunteer \N -1295 opp-pending VOL-267 opportunity 219 VOLVO-395 volunteer \N -1296 opp-pending VOL-267 opportunity 219 VOLVO-428 volunteer \N -1468 opp-pending VOL-341 opportunity 280 VOLVO-675 volunteer \N -1469 opp-pending VOL-341 opportunity 280 VOLVO-16 volunteer \N -1470 opp-pending VOL-341 opportunity 280 VOLVO-631 volunteer \N -1300 opp-pending VOL-270 opportunity 222 VOLVO-487 volunteer \N -1301 opp-pending VOL-270 opportunity 222 VOLVO-327 volunteer \N -1302 opp-pending VOL-270 opportunity 222 VOLVO-309 volunteer \N -1303 opp-pending VOL-270 opportunity 222 VOLVO-214 volunteer \N -1304 opp-pending VOL-270 opportunity 222 VOLVO-437 volunteer \N -1305 opp-pending VOL-270 opportunity 222 VOLVO-421 volunteer \N -1471 opp-pending VOL-341 opportunity 280 VOLVO-706 volunteer \N -1472 opp-pending VOL-341 opportunity 280 VOLVO-620 volunteer \N -1308 opp-active VOL-270 opportunity 222 VOLVO-302 volunteer \N -1309 opp-matched VOL-271 opportunity 223 VOLVO-697 volunteer \N -1473 opp-pending VOL-341 opportunity 280 VOLVO-563 volunteer \N -1311 opp-pending VOL-272 opportunity 224 VOLVO-213 volunteer \N -1312 opp-pending VOL-276 opportunity 228 VOLVO-662 volunteer \N -1313 opp-pending VOL-276 opportunity 228 VOLVO-37 volunteer \N -1315 opp-pending VOL-277 opportunity 229 VOLVO-60 volunteer \N -1475 opp-pending VOL-342 opportunity 281 VOLVO-721 volunteer \N -1317 opp-pending VOL-278 opportunity 230 VOLVO-60 volunteer \N -1318 opp-pending VOL-278 opportunity 230 VOLVO-305 volunteer \N -1476 opp-pending VOL-342 opportunity 281 VOLVO-658 volunteer \N -1320 opp-pending VOL-281 opportunity 233 VOLVO-622 volunteer \N -1321 opp-pending VOL-281 opportunity 233 VOLVO-631 volunteer \N -1322 opp-pending VOL-281 opportunity 233 VOLVO-574 volunteer \N -1323 opp-pending VOL-281 opportunity 233 VOLVO-615 volunteer \N -1325 opp-pending VOL-282 opportunity 234 VOLVO-673 volunteer \N -1326 opp-pending VOL-282 opportunity 234 VOLVO-90 volunteer \N -1327 opp-pending VOL-282 opportunity 234 VOLVO-626 volunteer \N -1328 opp-pending VOL-283 opportunity 235 VOLVO-41 volunteer \N -1478 opp-pending VOL-343 opportunity 282 VOLVO-69 volunteer \N -1330 opp-pending VOL-287 opportunity 236 VOLVO-49 volunteer \N -1331 opp-pending VOL-287 opportunity 236 VOLVO-65 volunteer \N -1333 opp-pending VOL-289 opportunity 237 VOLVO-25 volunteer \N -1334 opp-pending VOL-289 opportunity 237 VOLVO-719 volunteer \N -1480 opp-pending VOL-345 opportunity 283 VOLVO-773 volunteer \N -1336 opp-pending VOL-290 opportunity 238 VOLVO-659 volunteer \N -1337 opp-pending VOL-290 opportunity 238 VOLVO-760 volunteer \N -1338 opp-pending VOL-290 opportunity 238 VOLVO-752 volunteer \N -1339 opp-pending VOL-290 opportunity 238 VOLVO-773 volunteer \N -1340 opp-pending VOL-290 opportunity 238 VOLVO-60 volunteer \N -1341 opp-pending VOL-290 opportunity 238 VOLVO-562 volunteer \N -1342 opp-pending VOL-290 opportunity 238 VOLVO-612 volunteer \N -1343 opp-pending VOL-290 opportunity 238 VOLVO-566 volunteer \N -1344 opp-pending VOL-290 opportunity 238 VOLVO-756 volunteer \N -1345 opp-pending VOL-290 opportunity 238 VOLVO-678 volunteer \N -1346 opp-pending VOL-290 opportunity 238 VOLVO-37 volunteer \N -1481 opp-pending VOL-345 opportunity 283 VOLVO-612 volunteer \N -1348 opp-pending VOL-291 opportunity 239 VOLVO-101 volunteer \N -1349 opp-pending VOL-291 opportunity 239 VOLVO-119 volunteer \N -1350 opp-pending VOL-291 opportunity 239 VOLVO-205 volunteer \N -1482 opp-pending VOL-345 opportunity 283 VOLVO-566 volunteer \N -1352 opp-active VOL-291 opportunity 239 VOLVO-109 volunteer \N -1353 opp-pending VOL-292 opportunity 240 VOLVO-478 volunteer \N -1354 opp-pending VOL-292 opportunity 240 VOLVO-763 volunteer \N -1355 opp-pending VOL-292 opportunity 240 VOLVO-19 volunteer \N -1483 opp-pending VOL-345 opportunity 283 VOLVO-85 volunteer \N -1357 opp-pending VOL-293 opportunity 241 VOLVO-69 volunteer \N -1484 opp-pending VOL-345 opportunity 283 VOLVO-678 volunteer \N -1359 opp-pending VOL-294 opportunity 242 VOLVO-54 volunteer \N -1360 opp-active VOL-294 opportunity 242 VOLVO-751 volunteer \N -1361 opp-pending VOL-295 opportunity 243 VOLVO-751 volunteer \N -1362 opp-pending VOL-295 opportunity 243 VOLVO-527 volunteer \N -1363 opp-pending VOL-295 opportunity 243 VOLVO-54 volunteer \N -1485 opp-pending VOL-345 opportunity 283 VOLVO-19 volunteer \N -1486 opp-pending VOL-346 opportunity 284 VOLVO-41 volunteer \N -1366 opp-pending VOL-296 opportunity 244 VOLVO-751 volunteer \N -1367 opp-pending VOL-296 opportunity 244 VOLVO-527 volunteer \N -1368 opp-pending VOL-296 opportunity 244 VOLVO-54 volunteer \N -1487 opp-pending VOL-346 opportunity 284 VOLVO-580 volunteer \N -1488 opp-pending VOL-346 opportunity 284 VOLVO-688 volunteer \N -1371 opp-pending VOL-297 opportunity 245 VOLVO-735 volunteer \N -1372 opp-pending VOL-297 opportunity 245 VOLVO-107 volunteer \N -1373 opp-pending VOL-301 opportunity 248 VOLVO-741 volunteer \N -1489 opp-pending VOL-346 opportunity 284 VOLVO-745 volunteer \N -1490 opp-pending VOL-346 opportunity 284 VOLVO-616 volunteer \N -1376 opp-pending VOL-302 opportunity 249 VOLVO-717 volunteer \N -1377 opp-pending VOL-302 opportunity 249 VOLVO-668 volunteer \N -1378 opp-pending VOL-302 opportunity 249 VOLVO-491 volunteer \N -1379 opp-pending VOL-302 opportunity 249 VOLVO-608 volunteer \N -1380 opp-pending VOL-302 opportunity 249 VOLVO-25 volunteer \N -1491 opp-pending VOL-346 opportunity 284 VOLVO-606 volunteer \N -1492 opp-pending VOL-346 opportunity 284 VOLVO-507 volunteer \N -1383 opp-pending VOL-308 opportunity 251 VOLVO-741 volunteer \N -1384 opp-pending VOL-308 opportunity 251 VOLVO-69 volunteer \N -1386 opp-pending VOL-309 opportunity 252 VOLVO-140 volunteer \N -1387 opp-pending VOL-310 opportunity 253 VOLVO-741 volunteer \N -1388 opp-pending VOL-310 opportunity 253 VOLVO-69 volunteer \N -1494 opp-pending VOL-347 opportunity 285 VOLVO-69 volunteer \N -1390 opp-pending VOL-311 opportunity 254 VOLVO-41 volunteer \N -1391 opp-pending VOL-311 opportunity 254 VOLVO-25 volunteer \N -1392 opp-pending VOL-311 opportunity 254 VOLVO-538 volunteer \N -1393 opp-pending VOL-311 opportunity 254 VOLVO-507 volunteer \N -1394 opp-pending VOL-311 opportunity 254 VOLVO-745 volunteer \N -1395 opp-pending VOL-312 opportunity 255 VOLVO-615 volunteer \N -1396 opp-pending VOL-312 opportunity 255 VOLVO-25 volunteer \N -1397 opp-pending VOL-312 opportunity 255 VOLVO-608 volunteer \N -1398 opp-pending VOL-312 opportunity 255 VOLVO-761 volunteer \N -1399 opp-pending VOL-312 opportunity 255 VOLVO-65 volunteer \N -1400 opp-pending VOL-312 opportunity 255 VOLVO-766 volunteer \N -1401 opp-pending VOL-312 opportunity 255 VOLVO-533 volunteer \N -1402 opp-pending VOL-312 opportunity 255 VOLVO-496 volunteer \N -1403 opp-pending VOL-312 opportunity 255 VOLVO-622 volunteer \N -1404 opp-pending VOL-313 opportunity 256 VOLVO-161 volunteer \N -1405 opp-pending VOL-313 opportunity 256 VOLVO-361 volunteer \N -1495 opp-pending VOL-347 opportunity 285 VOLVO-568 volunteer \N -1407 opp-pending VOL-315 opportunity 258 VOLVO-741 volunteer \N -1408 opp-pending VOL-315 opportunity 258 VOLVO-538 volunteer \N -1496 opp-pending VOL-347 opportunity 285 VOLVO-706 volunteer \N -1410 opp-active VOL-317 opportunity 260 VOLVO-101 volunteer \N -1497 opp-pending VOL-347 opportunity 285 VOLVO-492 volunteer \N -1498 opp-pending VOL-347 opportunity 285 VOLVO-563 volunteer \N -1499 opp-pending VOL-347 opportunity 285 VOLVO-631 volunteer \N -1500 opp-pending VOL-347 opportunity 285 VOLVO-620 volunteer \N -1501 opp-pending VOL-348 opportunity 286 VOLVO-25 volunteer \N -1502 opp-pending VOL-348 opportunity 286 VOLVO-615 volunteer \N -1503 opp-pending VOL-348 opportunity 286 VOLVO-697 volunteer \N -1504 opp-pending VOL-348 opportunity 286 VOLVO-65 volunteer \N -1506 opp-pending VOL-349 opportunity 287 VOLVO-25 volunteer \N -1507 opp-pending VOL-349 opportunity 287 VOLVO-615 volunteer \N -1508 opp-pending VOL-349 opportunity 287 VOLVO-65 volunteer \N -1509 opp-pending VOL-349 opportunity 287 VOLVO-697 volunteer \N -1510 opp-pending VOL-349 opportunity 287 VOLVO-651 volunteer \N -1512 opp-pending VOL-353 opportunity 288 VOLVO-741 volunteer \N -1513 opp-pending VOL-353 opportunity 288 VOLVO-620 volunteer \N -1514 opp-pending VOL-353 opportunity 288 VOLVO-631 volunteer \N -1515 opp-pending VOL-353 opportunity 288 VOLVO-613 volunteer \N -1516 opp-pending VOL-353 opportunity 288 VOLVO-690 volunteer \N -1517 opp-pending VOL-355 opportunity 290 VOLVO-606 volunteer \N -1518 opp-pending VOL-355 opportunity 290 VOLVO-603 volunteer \N -1519 opp-pending VOL-355 opportunity 290 VOLVO-674 volunteer \N -1520 opp-pending VOL-355 opportunity 290 VOLVO-15 volunteer \N -1521 opp-pending VOL-355 opportunity 290 VOLVO-54 volunteer \N -1522 opp-pending VOL-355 opportunity 290 VOLVO-580 volunteer \N -1523 opp-pending VOL-355 opportunity 290 VOLVO-658 volunteer \N -1524 opp-pending VOL-356 opportunity 291 VOLVO-603 volunteer \N -1525 opp-pending VOL-356 opportunity 291 VOLVO-658 volunteer \N -1526 opp-pending VOL-356 opportunity 291 VOLVO-580 volunteer \N -1527 opp-pending VOL-356 opportunity 291 VOLVO-54 volunteer \N -1528 opp-pending VOL-356 opportunity 291 VOLVO-674 volunteer \N -1529 opp-pending VOL-356 opportunity 291 VOLVO-15 volunteer \N -1530 opp-pending VOL-356 opportunity 291 VOLVO-606 volunteer \N -1532 opp-pending VOL-361 opportunity 296 VOLVO-81 volunteer \N -1534 opp-pending VOL-363 opportunity 298 VOLVO-148 volunteer \N -1535 opp-pending VOL-365 opportunity 300 VOLVO-533 volunteer \N -1536 opp-pending VOL-365 opportunity 300 VOLVO-608 volunteer \N -1537 opp-pending VOL-365 opportunity 300 VOLVO-762 volunteer \N -1538 opp-pending VOL-365 opportunity 300 VOLVO-668 volunteer \N -1539 opp-pending VOL-365 opportunity 300 VOLVO-615 volunteer \N -1540 opp-pending VOL-365 opportunity 300 VOLVO-14 volunteer \N -1541 opp-pending VOL-365 opportunity 300 VOLVO-697 volunteer \N -1542 opp-pending VOL-365 opportunity 300 VOLVO-700 volunteer \N -1543 opp-pending VOL-365 opportunity 300 VOLVO-7 volunteer \N -1544 opp-pending VOL-365 opportunity 300 VOLVO-487 volunteer \N -1545 opp-pending VOL-365 opportunity 300 VOLVO-719 volunteer \N -1546 opp-pending VOL-365 opportunity 300 VOLVO-574 volunteer \N -1547 opp-pending VOL-365 opportunity 300 VOLVO-681 volunteer \N -1548 opp-pending VOL-365 opportunity 300 VOLVO-717 volunteer \N -1549 opp-pending VOL-365 opportunity 300 VOLVO-633 volunteer \N -1550 opp-pending VOL-365 opportunity 300 VOLVO-667 volunteer \N -1551 opp-pending VOL-365 opportunity 300 VOLVO-714 volunteer \N -1552 opp-pending VOL-365 opportunity 300 VOLVO-494 volunteer \N -1553 opp-pending VOL-365 opportunity 300 VOLVO-496 volunteer \N -1554 opp-pending VOL-367 opportunity 302 VOLVO-681 volunteer \N -1555 opp-pending VOL-367 opportunity 302 VOLVO-474 volunteer \N -1556 opp-pending VOL-367 opportunity 302 VOLVO-574 volunteer \N -1557 opp-pending VOL-367 opportunity 302 VOLVO-487 volunteer \N -1558 opp-pending VOL-368 opportunity 303 VOLVO-741 volunteer \N -1559 opp-pending VOL-368 opportunity 303 VOLVO-69 volunteer \N -1560 opp-pending VOL-368 opportunity 303 VOLVO-16 volunteer \N -1561 opp-pending VOL-368 opportunity 303 VOLVO-620 volunteer \N -1562 opp-pending VOL-368 opportunity 303 VOLVO-706 volunteer \N -1563 opp-pending VOL-368 opportunity 303 VOLVO-631 volunteer \N -1564 opp-pending VOL-368 opportunity 303 VOLVO-563 volunteer \N -1566 opp-pending VOL-370 opportunity 304 VOLVO-681 volunteer \N -1567 opp-pending VOL-370 opportunity 304 VOLVO-487 volunteer \N -1568 opp-pending VOL-370 opportunity 304 VOLVO-697 volunteer \N -1569 opp-pending VOL-370 opportunity 304 VOLVO-533 volunteer \N -1570 opp-pending VOL-370 opportunity 304 VOLVO-761 volunteer \N -1571 opp-pending VOL-370 opportunity 304 VOLVO-667 volunteer \N -1572 opp-pending VOL-370 opportunity 304 VOLVO-762 volunteer \N -1573 opp-pending VOL-370 opportunity 304 VOLVO-474 volunteer \N -1574 opp-pending VOL-370 opportunity 304 VOLVO-717 volunteer \N -1575 opp-pending VOL-370 opportunity 304 VOLVO-622 volunteer \N -1576 opp-pending VOL-370 opportunity 304 VOLVO-631 volunteer \N -1577 opp-pending VOL-370 opportunity 304 VOLVO-25 volunteer \N -1578 opp-pending VOL-370 opportunity 304 VOLVO-523 volunteer \N -1579 opp-pending VOL-370 opportunity 304 VOLVO-574 volunteer \N -1582 opp-pending VOL-371 opportunity 305 VOLVO-631 volunteer \N -1583 opp-pending VOL-371 opportunity 305 VOLVO-667 volunteer \N -1584 opp-pending VOL-371 opportunity 305 VOLVO-474 volunteer \N -1585 opp-pending VOL-371 opportunity 305 VOLVO-523 volunteer \N -1586 opp-pending VOL-371 opportunity 305 VOLVO-533 volunteer \N -1587 opp-pending VOL-371 opportunity 305 VOLVO-761 volunteer \N -1588 opp-pending VOL-371 opportunity 305 VOLVO-681 volunteer \N -1589 opp-pending VOL-371 opportunity 305 VOLVO-574 volunteer \N -1590 opp-pending VOL-372 opportunity 306 VOLVO-741 volunteer \N -1591 opp-pending VOL-372 opportunity 306 VOLVO-620 volunteer \N -1592 opp-pending VOL-372 opportunity 306 VOLVO-631 volunteer \N -1593 opp-pending VOL-372 opportunity 306 VOLVO-706 volunteer \N -1594 opp-pending VOL-372 opportunity 306 VOLVO-690 volunteer \N -1595 opp-pending VOL-372 opportunity 306 VOLVO-613 volunteer \N -1596 opp-pending VOL-374 opportunity 307 VOLVO-91 volunteer \N -1597 opp-pending VOL-374 opportunity 307 VOLVO-159 volunteer \N -1598 opp-pending VOL-374 opportunity 307 VOLVO-217 volunteer \N -1599 opp-pending VOL-374 opportunity 307 VOLVO-340 volunteer \N -1600 opp-pending VOL-374 opportunity 307 VOLVO-206 volunteer \N -1601 opp-pending VOL-374 opportunity 307 VOLVO-362 volunteer \N -1603 opp-pending VOL-376 opportunity 308 VOLVO-741 volunteer \N -1604 opp-pending VOL-376 opportunity 308 VOLVO-620 volunteer \N -1605 opp-pending VOL-376 opportunity 308 VOLVO-631 volunteer \N -1606 opp-pending VOL-376 opportunity 308 VOLVO-706 volunteer \N -1607 opp-pending VOL-376 opportunity 308 VOLVO-690 volunteer \N -1608 opp-pending VOL-376 opportunity 308 VOLVO-613 volunteer \N -1609 opp-pending VOL-378 opportunity 309 VOLVO-761 volunteer \N -1610 opp-pending VOL-378 opportunity 309 VOLVO-717 volunteer \N -1611 opp-pending VOL-378 opportunity 309 VOLVO-667 volunteer \N -1612 opp-pending VOL-378 opportunity 309 VOLVO-719 volunteer \N -1613 opp-pending VOL-378 opportunity 309 VOLVO-598 volunteer \N -1614 opp-pending VOL-378 opportunity 309 VOLVO-681 volunteer \N -1616 opp-pending VOL-379 opportunity 310 VOLVO-741 volunteer \N -1617 opp-pending VOL-379 opportunity 310 VOLVO-620 volunteer \N -1618 opp-pending VOL-379 opportunity 310 VOLVO-631 volunteer \N -1619 opp-pending VOL-379 opportunity 310 VOLVO-706 volunteer \N -1620 opp-pending VOL-379 opportunity 310 VOLVO-690 volunteer \N -1621 opp-pending VOL-380 opportunity 311 VOLVO-25 volunteer \N -1622 opp-pending VOL-380 opportunity 311 VOLVO-714 volunteer \N -1623 opp-pending VOL-380 opportunity 311 VOLVO-496 volunteer \N -1624 opp-pending VOL-380 opportunity 311 VOLVO-668 volunteer \N -1625 opp-pending VOL-380 opportunity 311 VOLVO-65 volunteer \N -1626 opp-pending VOL-382 opportunity 312 VOLVO-761 volunteer \N -1627 opp-pending VOL-382 opportunity 312 VOLVO-631 volunteer \N -1628 opp-pending VOL-382 opportunity 312 VOLVO-717 volunteer \N -1629 opp-pending VOL-382 opportunity 312 VOLVO-719 volunteer \N -1630 opp-pending VOL-382 opportunity 312 VOLVO-598 volunteer \N -1631 opp-pending VOL-383 opportunity 313 VOLVO-102 volunteer \N -1632 opp-pending VOL-383 opportunity 313 VOLVO-86 volunteer \N -1634 opp-pending VOL-384 opportunity 314 VOLVO-266 volunteer \N -1636 opp-matched VOL-386 opportunity 316 VOLVO-110 volunteer \N -1637 opp-pending VOL-387 opportunity 317 VOLVO-77 volunteer \N -1638 opp-pending VOL-387 opportunity 317 VOLVO-59 volunteer \N -1639 opp-pending VOL-387 opportunity 317 VOLVO-90 volunteer \N -1640 opp-pending VOL-387 opportunity 317 VOLVO-43 volunteer \N -1642 opp-pending VOL-388 opportunity 318 VOLVO-215 volunteer \N -1643 opp-pending VOL-388 opportunity 318 VOLVO-456 volunteer \N -1644 opp-pending VOL-389 opportunity 319 VOLVO-101 volunteer \N -1645 opp-pending VOL-389 opportunity 319 VOLVO-104 volunteer \N -1646 opp-pending VOL-389 opportunity 319 VOLVO-428 volunteer \N -1648 opp-pending VOL-390 opportunity 320 VOLVO-25 volunteer \N -1649 opp-pending VOL-392 opportunity 322 VOLVO-74 volunteer \N -1651 opp-pending VOL-393 opportunity 323 VOLVO-708 volunteer \N -1652 opp-pending VOL-393 opportunity 323 VOLVO-773 volunteer \N -1653 opp-pending VOL-393 opportunity 323 VOLVO-85 volunteer \N -1654 opp-pending VOL-394 opportunity 324 VOLVO-116 volunteer \N -1655 opp-pending VOL-394 opportunity 324 VOLVO-741 volunteer \N -1656 opp-pending VOL-394 opportunity 324 VOLVO-631 volunteer \N -1657 opp-pending VOL-394 opportunity 324 VOLVO-68 volunteer \N -1659 opp-pending VOL-395 opportunity 325 VOLVO-149 volunteer \N -1662 opp-pending VOL-410 opportunity 328 VOLVO-210 volunteer \N -1664 opp-matched VOL-425 opportunity 341 VOLVO-94 volunteer \N -1665 opp-pending VOL-426 opportunity 342 VOLVO-533 volunteer \N -1666 opp-pending VOL-426 opportunity 342 VOLVO-97 volunteer \N -1667 opp-pending VOL-426 opportunity 342 VOLVO-95 volunteer \N -1668 opp-pending VOL-426 opportunity 342 VOLVO-474 volunteer \N -1669 opp-active VOL-426 opportunity 342 VOLVO-523 volunteer \N -1670 opp-pending VOL-427 opportunity 343 VOLVO-116 volunteer \N -1671 opp-pending VOL-427 opportunity 343 VOLVO-16 volunteer \N -1672 opp-pending VOL-427 opportunity 343 VOLVO-69 volunteer \N -1673 opp-pending VOL-427 opportunity 343 VOLVO-620 volunteer \N -1674 opp-pending VOL-427 opportunity 343 VOLVO-706 volunteer \N -1675 opp-pending VOL-427 opportunity 343 VOLVO-613 volunteer \N -1678 opp-pending VOL-428 opportunity 344 VOLVO-555 volunteer \N -1679 opp-pending VOL-429 opportunity 345 VOLVO-65 volunteer \N -1680 opp-pending VOL-429 opportunity 345 VOLVO-37 volunteer \N -1681 opp-pending VOL-429 opportunity 345 VOLVO-546 volunteer \N -1682 opp-pending VOL-429 opportunity 345 VOLVO-24 volunteer \N -1683 opp-pending VOL-429 opportunity 345 VOLVO-124 volunteer \N -1685 opp-pending VOL-430 opportunity 346 VOLVO-697 volunteer \N -1686 opp-pending VOL-430 opportunity 346 VOLVO-574 volunteer \N -1687 opp-pending VOL-430 opportunity 346 VOLVO-681 volunteer \N -1688 opp-pending VOL-430 opportunity 346 VOLVO-761 volunteer \N -1689 opp-pending VOL-430 opportunity 346 VOLVO-533 volunteer \N -1690 opp-pending VOL-430 opportunity 346 VOLVO-622 volunteer \N -1691 opp-pending VOL-431 opportunity 347 VOLVO-185 volunteer \N -1692 opp-pending VOL-435 opportunity 350 VOLVO-717 volunteer \N -1693 opp-pending VOL-435 opportunity 350 VOLVO-700 volunteer \N -1694 opp-pending VOL-435 opportunity 350 VOLVO-487 volunteer \N -1695 opp-pending VOL-435 opportunity 350 VOLVO-124 volunteer \N -1696 opp-pending VOL-435 opportunity 350 VOLVO-538 volunteer \N -1698 opp-pending VOL-436 opportunity 351 VOLVO-613 volunteer \N -1700 opp-pending VOL-439 opportunity 354 VOLVO-527 volunteer \N -1701 opp-pending VOL-439 opportunity 354 VOLVO-751 volunteer \N -1704 opp-pending VOL-440 opportunity 355 VOLVO-478 volunteer \N -1705 opp-pending VOL-440 opportunity 355 VOLVO-19 volunteer \N -1706 opp-pending VOL-440 opportunity 355 VOLVO-37 volunteer \N -1708 opp-pending VOL-441 opportunity 356 VOLVO-40 volunteer \N -1709 opp-pending VOL-441 opportunity 356 VOLVO-141 volunteer \N -1710 opp-pending VOL-441 opportunity 356 VOLVO-297 volunteer \N -1713 opp-pending VOL-442 opportunity 357 VOLVO-478 volunteer \N -1714 opp-pending VOL-442 opportunity 357 VOLVO-19 volunteer \N -1715 opp-pending VOL-442 opportunity 357 VOLVO-37 volunteer \N -1716 opp-pending VOL-442 opportunity 357 VOLVO-72 volunteer \N -1717 opp-pending VOL-442 opportunity 357 VOLVO-144 volunteer \N -1718 opp-pending VOL-442 opportunity 357 VOLVO-142 volunteer \N -1720 opp-pending VOL-445 opportunity 360 VOLVO-628 volunteer \N -1721 opp-pending VOL-445 opportunity 360 VOLVO-337 volunteer \N -1722 opp-matched VOL-445 opportunity 360 VOLVO-763 volunteer \N -1723 opp-matched VOL-445 opportunity 360 VOLVO-549 volunteer \N -1726 opp-pending VOL-446 opportunity 361 VOLVO-608 volunteer \N -1727 opp-pending VOL-446 opportunity 361 VOLVO-697 volunteer \N -1728 opp-pending VOL-446 opportunity 361 VOLVO-574 volunteer \N -1729 opp-pending VOL-446 opportunity 361 VOLVO-533 volunteer \N -1730 opp-pending VOL-446 opportunity 361 VOLVO-761 volunteer \N -1731 opp-pending VOL-446 opportunity 361 VOLVO-622 volunteer \N -1733 opp-pending VOL-448 opportunity 362 VOLVO-150 volunteer \N -1734 opp-pending VOL-448 opportunity 362 VOLVO-182 volunteer \N -1735 opp-pending VOL-448 opportunity 362 VOLVO-396 volunteer \N -1736 opp-pending VOL-448 opportunity 362 VOLVO-819 volunteer \N -1737 opp-pending VOL-448 opportunity 362 VOLVO-821 volunteer \N -1738 opp-pending VOL-448 opportunity 362 VOLVO-451 volunteer \N -1739 opp-matched VOL-448 opportunity 362 VOLVO-21 volunteer \N -1740 opp-matched VOL-448 opportunity 362 VOLVO-718 volunteer \N -1741 opp-pending VOL-451 opportunity 363 VOLVO-151 volunteer \N -1744 opp-pending VOL-452 opportunity 364 VOLVO-428 volunteer \N -1745 opp-pending VOL-452 opportunity 364 VOLVO-431 volunteer \N -1746 opp-pending VOL-453 opportunity 365 VOLVO-538 volunteer \N -1747 opp-pending VOL-453 opportunity 365 VOLVO-565 volunteer \N -1748 opp-pending VOL-453 opportunity 365 VOLVO-598 volunteer \N -1749 opp-pending VOL-461 opportunity 373 VOLVO-207 volunteer \N -1750 opp-pending VOL-462 opportunity 374 VOLVO-191 volunteer \N -1751 opp-pending VOL-462 opportunity 374 VOLVO-174 volunteer \N -1753 opp-pending VOL-463 opportunity 375 VOLVO-598 volunteer \N -1754 opp-pending VOL-463 opportunity 375 VOLVO-565 volunteer \N -1755 opp-pending VOL-463 opportunity 375 VOLVO-538 volunteer \N -1756 opp-pending VOL-464 opportunity 376 VOLVO-25 volunteer \N -1757 opp-pending VOL-464 opportunity 376 VOLVO-65 volunteer \N -1758 opp-pending VOL-464 opportunity 376 VOLVO-533 volunteer \N -1759 opp-pending VOL-464 opportunity 376 VOLVO-761 volunteer \N -1760 opp-pending VOL-464 opportunity 376 VOLVO-719 volunteer \N -1761 opp-pending VOL-464 opportunity 376 VOLVO-608 volunteer \N -1762 opp-pending VOL-464 opportunity 376 VOLVO-697 volunteer \N -1764 opp-pending VOL-465 opportunity 377 VOLVO-171 volunteer \N -1765 opp-pending VOL-465 opportunity 377 VOLVO-173 volunteer \N -1766 opp-matched VOL-465 opportunity 377 VOLVO-163 volunteer \N -1772 opp-pending VOL-472 opportunity 382 VOLVO-134 volunteer \N -1773 opp-pending VOL-472 opportunity 382 VOLVO-65 volunteer \N -1774 opp-pending VOL-472 opportunity 382 VOLVO-25 volunteer \N -1775 opp-pending VOL-473 opportunity 383 VOLVO-159 volunteer \N -1776 opp-pending VOL-473 opportunity 383 VOLVO-629 volunteer \N -1777 opp-pending VOL-473 opportunity 383 VOLVO-36 volunteer \N -1779 opp-pending VOL-474 opportunity 384 VOLVO-742 volunteer \N -1780 opp-pending VOL-476 opportunity 386 VOLVO-25 volunteer \N -1781 opp-pending VOL-476 opportunity 386 VOLVO-697 volunteer \N -1782 opp-pending VOL-476 opportunity 386 VOLVO-681 volunteer \N -1784 opp-pending VOL-477 opportunity 387 VOLVO-706 volunteer \N -1785 opp-pending VOL-477 opportunity 387 VOLVO-69 volunteer \N -1786 opp-pending VOL-477 opportunity 387 VOLVO-506 volunteer \N -1787 opp-pending VOL-477 opportunity 387 VOLVO-620 volunteer \N -1788 opp-pending VOL-477 opportunity 387 VOLVO-675 volunteer \N -1790 opp-pending VOL-478 opportunity 388 VOLVO-666 volunteer \N -1791 opp-pending VOL-478 opportunity 388 VOLVO-174 volunteer \N -1792 opp-pending VOL-478 opportunity 388 VOLVO-171 volunteer \N -1793 opp-pending VOL-478 opportunity 388 VOLVO-41 volunteer \N -1794 opp-pending VOL-478 opportunity 388 VOLVO-551 volunteer \N -1796 opp-pending VOL-479 opportunity 389 VOLVO-67 volunteer \N -1797 opp-pending VOL-479 opportunity 389 VOLVO-163 volunteer \N -1798 opp-pending VOL-479 opportunity 389 VOLVO-178 volunteer \N -1799 opp-pending VOL-479 opportunity 389 VOLVO-515 volunteer \N -1806 opp-pending VOL-480 opportunity 390 VOLVO-523 volunteer \N -1808 opp-pending VOL-481 opportunity 391 VOLVO-135 volunteer \N -1809 opp-pending VOL-481 opportunity 391 VOLVO-80 volunteer \N -1810 opp-pending VOL-481 opportunity 391 VOLVO-85 volunteer \N -1811 opp-pending VOL-481 opportunity 391 VOLVO-164 volunteer \N -1812 opp-pending VOL-482 opportunity 392 VOLVO-181 volunteer \N -1813 opp-pending VOL-485 opportunity 395 VOLVO-588 volunteer \N -1816 opp-pending VOL-486 opportunity 396 VOLVO-533 volunteer \N -1818 opp-pending VOL-491 opportunity 401 VOLVO-191 volunteer \N -1819 opp-pending VOL-491 opportunity 401 VOLVO-161 volunteer \N -1821 opp-pending VOL-492 opportunity 402 VOLVO-574 volunteer \N -1822 opp-pending VOL-492 opportunity 402 VOLVO-762 volunteer \N -1823 opp-pending VOL-492 opportunity 402 VOLVO-598 volunteer \N -1824 opp-pending VOL-492 opportunity 402 VOLVO-65 volunteer \N -1826 opp-pending VOL-496 opportunity 406 VOLVO-191 volunteer \N -1827 opp-pending VOL-496 opportunity 406 VOLVO-186 volunteer \N -1829 opp-matched VOL-496 opportunity 406 VOLVO-238 volunteer \N -1832 opp-pending VOL-497 opportunity 407 VOLVO-195 volunteer \N -1833 opp-pending VOL-497 opportunity 407 VOLVO-686 volunteer \N -1835 opp-pending VOL-498 opportunity 408 VOLVO-766 volunteer \N -1836 opp-pending VOL-498 opportunity 408 VOLVO-555 volunteer \N -1837 opp-pending VOL-498 opportunity 408 VOLVO-65 volunteer \N -1838 opp-pending VOL-498 opportunity 408 VOLVO-598 volunteer \N -1839 opp-pending VOL-503 opportunity 411 VOLVO-174 volunteer \N -1841 opp-pending VOL-505 opportunity 413 VOLVO-248 volunteer \N -1842 opp-pending VOL-505 opportunity 413 VOLVO-274 volunteer \N -1843 opp-pending VOL-505 opportunity 413 VOLVO-285 volunteer \N -1845 opp-pending VOL-506 opportunity 414 VOLVO-308 volunteer \N -1847 opp-active VOL-506 opportunity 414 VOLVO-234 volunteer \N -1848 opp-pending VOL-507 opportunity 415 VOLVO-234 volunteer \N -1849 opp-pending VOL-507 opportunity 415 VOLVO-294 volunteer \N -1851 opp-pending VOL-508 opportunity 416 VOLVO-206 volunteer \N -1852 opp-pending VOL-508 opportunity 416 VOLVO-185 volunteer \N -1853 opp-pending VOL-508 opportunity 416 VOLVO-199 volunteer \N -1854 opp-pending VOL-508 opportunity 416 VOLVO-175 volunteer \N -1855 opp-pending VOL-508 opportunity 416 VOLVO-165 volunteer \N -1857 opp-pending VOL-509 opportunity 417 VOLVO-195 volunteer \N -1858 opp-pending VOL-509 opportunity 417 VOLVO-177 volunteer \N -1859 opp-pending VOL-509 opportunity 417 VOLVO-163 volunteer \N -1860 opp-pending VOL-509 opportunity 417 VOLVO-183 volunteer \N -1861 opp-pending VOL-510 opportunity 418 VOLVO-199 volunteer \N -1862 opp-pending VOL-510 opportunity 418 VOLVO-185 volunteer \N -1863 opp-pending VOL-510 opportunity 418 VOLVO-175 volunteer \N -1864 opp-pending VOL-510 opportunity 418 VOLVO-165 volunteer \N -1866 opp-pending VOL-512 opportunity 420 VOLVO-201 volunteer \N -1867 opp-pending VOL-512 opportunity 420 VOLVO-90 volunteer \N -1868 opp-pending VOL-512 opportunity 420 VOLVO-673 volunteer \N -1869 opp-pending VOL-512 opportunity 420 VOLVO-195 volunteer \N -1870 opp-pending VOL-513 opportunity 421 VOLVO-69 volunteer \N -1871 opp-pending VOL-513 opportunity 421 VOLVO-620 volunteer \N -1872 opp-pending VOL-513 opportunity 421 VOLVO-623 volunteer \N -1874 opp-pending VOL-514 opportunity 422 VOLVO-58 volunteer \N -1875 opp-pending VOL-514 opportunity 422 VOLVO-487 volunteer \N -1876 opp-pending VOL-514 opportunity 422 VOLVO-719 volunteer \N -1877 opp-pending VOL-515 opportunity 423 VOLVO-201 volunteer \N -1878 opp-pending VOL-515 opportunity 423 VOLVO-90 volunteer \N -1879 opp-pending VOL-515 opportunity 423 VOLVO-673 volunteer \N -1880 opp-pending VOL-515 opportunity 423 VOLVO-195 volunteer \N -1881 opp-pending VOL-515 opportunity 423 VOLVO-178 volunteer \N -1882 opp-matched VOL-515 opportunity 423 VOLVO-205 volunteer \N -1883 opp-matched VOL-515 opportunity 423 VOLVO-164 volunteer \N -1885 opp-pending VOL-516 opportunity 424 VOLVO-193 volunteer \N -1886 opp-pending VOL-516 opportunity 424 VOLVO-183 volunteer \N -1887 opp-pending VOL-516 opportunity 424 VOLVO-177 volunteer \N -1888 opp-pending VOL-516 opportunity 424 VOLVO-163 volunteer \N -1889 opp-pending VOL-517 opportunity 425 VOLVO-440 volunteer \N -1890 opp-pending VOL-518 opportunity 426 VOLVO-551 volunteer \N -1891 opp-pending VOL-518 opportunity 426 VOLVO-115 volunteer \N -1892 opp-pending VOL-519 opportunity 427 VOLVO-201 volunteer \N -1893 opp-pending VOL-519 opportunity 427 VOLVO-90 volunteer \N -1894 opp-pending VOL-519 opportunity 427 VOLVO-673 volunteer \N -1895 opp-pending VOL-519 opportunity 427 VOLVO-195 volunteer \N -1896 opp-pending VOL-519 opportunity 427 VOLVO-163 volunteer \N -1897 opp-pending VOL-519 opportunity 427 VOLVO-208 volunteer \N -1898 opp-pending VOL-520 opportunity 428 VOLVO-198 volunteer \N -1899 opp-pending VOL-520 opportunity 428 VOLVO-293 volunteer \N -1900 opp-pending VOL-520 opportunity 428 VOLVO-295 volunteer \N -1902 opp-pending VOL-523 opportunity 430 VOLVO-167 volunteer \N -1903 opp-pending VOL-523 opportunity 430 VOLVO-194 volunteer \N -1904 opp-pending VOL-523 opportunity 430 VOLVO-809 volunteer \N -1905 opp-matched VOL-523 opportunity 430 VOLVO-99 volunteer \N -1908 opp-pending VOL-524 opportunity 431 VOLVO-195 volunteer \N -1909 opp-pending VOL-524 opportunity 431 VOLVO-207 volunteer \N -1910 opp-pending VOL-525 opportunity 432 VOLVO-181 volunteer \N -1911 opp-pending VOL-528 opportunity 434 VOLVO-551 volunteer \N -1912 opp-pending VOL-530 opportunity 436 VOLVO-735 volunteer \N -1914 opp-pending VOL-531 opportunity 437 VOLVO-227 volunteer \N -1915 opp-pending VOL-531 opportunity 437 VOLVO-208 volunteer \N -1916 opp-pending VOL-532 opportunity 438 VOLVO-533 volunteer \N -1917 opp-pending VOL-532 opportunity 438 VOLVO-631 volunteer \N -1918 opp-pending VOL-532 opportunity 438 VOLVO-220 volunteer \N -1919 opp-pending VOL-532 opportunity 438 VOLVO-622 volunteer \N -1920 opp-pending VOL-533 opportunity 439 VOLVO-195 volunteer \N -1921 opp-pending VOL-533 opportunity 439 VOLVO-177 volunteer \N -1922 opp-pending VOL-533 opportunity 439 VOLVO-134 volunteer \N -1923 opp-pending VOL-533 opportunity 439 VOLVO-110 volunteer \N -1924 opp-pending VOL-533 opportunity 439 VOLVO-65 volunteer \N -1925 opp-pending VOL-535 opportunity 441 VOLVO-171 volunteer \N -1926 opp-pending VOL-535 opportunity 441 VOLVO-41 volunteer \N -1927 opp-pending VOL-535 opportunity 441 VOLVO-158 volunteer \N -1928 opp-pending VOL-536 opportunity 442 VOLVO-217 volunteer \N -1930 opp-pending VOL-538 opportunity 444 VOLVO-622 volunteer \N -1931 opp-pending VOL-538 opportunity 444 VOLVO-496 volunteer \N -1932 opp-pending VOL-538 opportunity 444 VOLVO-474 volunteer \N -1933 opp-pending VOL-538 opportunity 444 VOLVO-25 volunteer \N -1934 opp-pending VOL-538 opportunity 444 VOLVO-65 volunteer \N -1935 opp-pending VOL-538 opportunity 444 VOLVO-97 volunteer \N -1936 opp-pending VOL-538 opportunity 444 VOLVO-134 volunteer \N -1937 opp-pending VOL-538 opportunity 444 VOLVO-163 volunteer \N -1938 opp-pending VOL-538 opportunity 444 VOLVO-195 volunteer \N -1939 opp-pending VOL-538 opportunity 444 VOLVO-223 volunteer \N -1940 opp-pending VOL-539 opportunity 445 VOLVO-761 volunteer \N -1942 opp-pending VOL-541 opportunity 447 VOLVO-209 volunteer \N -1944 opp-pending VOL-542 opportunity 448 VOLVO-41 volunteer \N -1945 opp-pending VOL-542 opportunity 448 VOLVO-54 volunteer \N -1946 opp-pending VOL-542 opportunity 448 VOLVO-158 volunteer \N -1947 opp-pending VOL-542 opportunity 448 VOLVO-171 volunteer \N -1948 opp-pending VOL-542 opportunity 448 VOLVO-174 volunteer \N -1949 opp-pending VOL-544 opportunity 449 VOLVO-761 volunteer \N -1950 opp-pending VOL-544 opportunity 449 VOLVO-667 volunteer \N -1951 opp-pending VOL-544 opportunity 449 VOLVO-717 volunteer \N -1952 opp-pending VOL-544 opportunity 449 VOLVO-719 volunteer \N -1953 opp-pending VOL-544 opportunity 449 VOLVO-608 volunteer \N -1954 opp-pending VOL-544 opportunity 449 VOLVO-766 volunteer \N -1956 opp-active VOL-545 opportunity 450 VOLVO-719 volunteer \N -1957 opp-pending VOL-547 opportunity 452 VOLVO-217 volunteer \N -1958 opp-pending VOL-547 opportunity 452 VOLVO-37 volunteer \N -1959 opp-pending VOL-547 opportunity 452 VOLVO-146 volunteer \N -1960 opp-pending VOL-547 opportunity 452 VOLVO-230 volunteer \N -1961 opp-pending VOL-547 opportunity 452 VOLVO-186 volunteer \N -1962 opp-active VOL-547 opportunity 452 VOLVO-236 volunteer \N -1963 opp-pending VOL-549 opportunity 453 VOLVO-236 volunteer \N -1964 opp-pending VOL-549 opportunity 453 VOLVO-217 volunteer \N -1965 opp-pending VOL-549 opportunity 453 VOLVO-238 volunteer \N -1966 opp-active VOL-551 opportunity 455 VOLVO-195 volunteer \N -1967 opp-pending VOL-552 opportunity 456 VOLVO-85 volunteer \N -1968 opp-pending VOL-552 opportunity 456 VOLVO-37 volunteer \N -1969 opp-pending VOL-552 opportunity 456 VOLVO-612 volunteer \N -1970 opp-pending VOL-555 opportunity 459 VOLVO-171 volunteer \N -1971 opp-pending VOL-555 opportunity 459 VOLVO-41 volunteer \N -1972 opp-pending VOL-555 opportunity 459 VOLVO-158 volunteer \N -1974 opp-pending VOL-556 opportunity 460 VOLVO-69 volunteer \N -1976 opp-pending VOL-557 opportunity 461 VOLVO-195 volunteer \N -1977 opp-pending VOL-557 opportunity 461 VOLVO-177 volunteer \N -1978 opp-pending VOL-557 opportunity 461 VOLVO-134 volunteer \N -1979 opp-pending VOL-557 opportunity 461 VOLVO-110 volunteer \N -1980 opp-pending VOL-557 opportunity 461 VOLVO-65 volunteer \N -1981 opp-pending VOL-558 opportunity 462 VOLVO-668 volunteer \N -1983 opp-pending VOL-560 opportunity 464 VOLVO-65 volunteer \N -1984 opp-pending VOL-560 opportunity 464 VOLVO-110 volunteer \N -1985 opp-pending VOL-560 opportunity 464 VOLVO-134 volunteer \N -1986 opp-pending VOL-560 opportunity 464 VOLVO-177 volunteer \N -1987 opp-pending VOL-560 opportunity 464 VOLVO-195 volunteer \N -1988 opp-pending VOL-560 opportunity 464 VOLVO-163 volunteer \N -1989 opp-pending VOL-560 opportunity 464 VOLVO-763 volunteer \N -1990 opp-pending VOL-560 opportunity 464 VOLVO-761 volunteer \N -1991 opp-pending VOL-560 opportunity 464 VOLVO-178 volunteer \N -1992 opp-pending VOL-560 opportunity 464 VOLVO-697 volunteer \N -1995 opp-pending VOL-562 opportunity 466 VOLVO-255 volunteer \N -1997 opp-pending VOL-563 opportunity 467 VOLVO-255 volunteer \N -1999 opp-pending VOL-565 opportunity 469 VOLVO-235 volunteer \N -2000 opp-pending VOL-565 opportunity 469 VOLVO-386 volunteer \N -2002 opp-pending VOL-567 opportunity 471 VOLVO-284 volunteer \N -2003 opp-pending VOL-567 opportunity 471 VOLVO-305 volunteer \N -2004 opp-pending VOL-568 opportunity 472 VOLVO-262 volunteer \N -2005 opp-pending VOL-568 opportunity 472 VOLVO-260 volunteer \N -2007 opp-pending VOL-569 opportunity 473 VOLVO-761 volunteer \N -2008 opp-pending VOL-569 opportunity 473 VOLVO-25 volunteer \N -2010 opp-pending VOL-570 opportunity 474 VOLVO-533 volunteer \N -2011 opp-pending VOL-570 opportunity 474 VOLVO-761 volunteer \N -2012 opp-pending VOL-570 opportunity 474 VOLVO-25 volunteer \N -2013 opp-active VOL-570 opportunity 474 VOLVO-555 volunteer \N -2014 opp-pending VOL-571 opportunity 475 VOLVO-206 volunteer \N -2015 opp-pending VOL-571 opportunity 475 VOLVO-108 volunteer \N -2016 opp-pending VOL-571 opportunity 475 VOLVO-85 volunteer \N -2017 opp-pending VOL-571 opportunity 475 VOLVO-37 volunteer \N -2019 opp-pending VOL-572 opportunity 476 VOLVO-171 volunteer \N -2020 opp-pending VOL-572 opportunity 476 VOLVO-174 volunteer \N -2021 opp-pending VOL-572 opportunity 476 VOLVO-260 volunteer \N -2022 opp-pending VOL-572 opportunity 476 VOLVO-262 volunteer \N -2023 opp-pending VOL-572 opportunity 476 VOLVO-158 volunteer \N -2025 opp-pending VOL-574 opportunity 478 VOLVO-259 volunteer \N -2026 opp-pending VOL-574 opportunity 478 VOLVO-251 volunteer \N -2027 opp-pending VOL-574 opportunity 478 VOLVO-703 volunteer \N -2028 opp-pending VOL-574 opportunity 478 VOLVO-299 volunteer \N -2029 opp-pending VOL-574 opportunity 478 VOLVO-290 volunteer \N -2030 opp-pending VOL-574 opportunity 478 VOLVO-282 volunteer \N -2031 opp-pending VOL-574 opportunity 478 VOLVO-448 volunteer \N -2032 opp-pending VOL-574 opportunity 478 VOLVO-262 volunteer \N -2033 opp-pending VOL-574 opportunity 478 VOLVO-464 volunteer \N -2034 opp-pending VOL-574 opportunity 478 VOLVO-460 volunteer \N -2039 opp-pending VOL-576 opportunity 480 VOLVO-277 volunteer \N -2041 opp-pending VOL-577 opportunity 481 VOLVO-257 volunteer \N -2042 opp-pending VOL-577 opportunity 481 VOLVO-628 volunteer \N -2044 opp-pending VOL-578 opportunity 482 VOLVO-256 volunteer \N -2045 opp-pending VOL-578 opportunity 482 VOLVO-254 volunteer \N -2046 opp-pending VOL-578 opportunity 482 VOLVO-247 volunteer \N -2047 opp-pending VOL-578 opportunity 482 VOLVO-241 volunteer \N -2048 opp-pending VOL-578 opportunity 482 VOLVO-242 volunteer \N -2049 opp-pending VOL-578 opportunity 482 VOLVO-240 volunteer \N -2050 opp-pending VOL-578 opportunity 482 VOLVO-163 volunteer \N -2051 opp-pending VOL-578 opportunity 482 VOLVO-134 volunteer \N -2052 opp-pending VOL-578 opportunity 482 VOLVO-97 volunteer \N -2054 opp-pending VOL-582 opportunity 486 VOLVO-533 volunteer \N -2055 opp-pending VOL-582 opportunity 486 VOLVO-256 volunteer \N -2056 opp-pending VOL-582 opportunity 486 VOLVO-254 volunteer \N -2057 opp-pending VOL-582 opportunity 486 VOLVO-246 volunteer \N -2058 opp-pending VOL-582 opportunity 486 VOLVO-241 volunteer \N -2059 opp-pending VOL-582 opportunity 486 VOLVO-240 volunteer \N -2060 opp-pending VOL-582 opportunity 486 VOLVO-242 volunteer \N -2061 opp-pending VOL-582 opportunity 486 VOLVO-220 volunteer \N -2062 opp-pending VOL-582 opportunity 486 VOLVO-195 volunteer \N -2063 opp-pending VOL-582 opportunity 486 VOLVO-183 volunteer \N -2064 opp-pending VOL-583 opportunity 487 VOLVO-269 volunteer \N -2065 opp-active VOL-583 opportunity 487 VOLVO-673 volunteer \N -2066 opp-active VOL-583 opportunity 487 VOLVO-163 volunteer \N -2067 opp-pending VOL-584 opportunity 488 VOLVO-241 volunteer \N -2068 opp-pending VOL-584 opportunity 488 VOLVO-247 volunteer \N -2069 opp-pending VOL-584 opportunity 488 VOLVO-242 volunteer \N -2070 opp-pending VOL-584 opportunity 488 VOLVO-183 volunteer \N -2071 opp-pending VOL-584 opportunity 488 VOLVO-220 volunteer \N -2072 opp-pending VOL-585 opportunity 489 VOLVO-267 volunteer \N -2073 opp-pending VOL-586 opportunity 490 VOLVO-385 volunteer \N -2075 opp-pending VOL-587 opportunity 491 VOLVO-256 volunteer \N -2076 opp-pending VOL-587 opportunity 491 VOLVO-266 volunteer \N -2077 opp-pending VOL-587 opportunity 491 VOLVO-247 volunteer \N -2078 opp-pending VOL-587 opportunity 491 VOLVO-241 volunteer \N -2079 opp-pending VOL-587 opportunity 491 VOLVO-134 volunteer \N -2080 opp-pending VOL-588 opportunity 492 VOLVO-683 volunteer \N -2081 opp-pending VOL-588 opportunity 492 VOLVO-293 volunteer \N -2083 opp-pending VOL-590 opportunity 494 VOLVO-242 volunteer \N -2084 opp-pending VOL-590 opportunity 494 VOLVO-223 volunteer \N -2085 opp-pending VOL-590 opportunity 494 VOLVO-124 volunteer \N -2086 opp-pending VOL-590 opportunity 494 VOLVO-717 volunteer \N -2087 opp-pending VOL-590 opportunity 494 VOLVO-719 volunteer \N -2088 opp-pending VOL-591 opportunity 495 VOLVO-69 volunteer \N -2089 opp-pending VOL-591 opportunity 495 VOLVO-620 volunteer \N -2090 opp-pending VOL-591 opportunity 495 VOLVO-675 volunteer \N -2092 opp-pending VOL-592 opportunity 496 VOLVO-67 volunteer \N -2094 opp-active VOL-592 opportunity 496 VOLVO-163 volunteer \N -2095 opp-active VOL-592 opportunity 496 VOLVO-673 volunteer \N -2096 opp-pending VOL-593 opportunity 497 VOLVO-766 volunteer \N -2097 opp-pending VOL-593 opportunity 497 VOLVO-195 volunteer \N -2098 opp-pending VOL-594 opportunity 498 VOLVO-367 volunteer \N -2099 opp-pending VOL-595 opportunity 499 VOLVO-808 volunteer \N -2100 opp-pending VOL-596 opportunity 500 VOLVO-294 volunteer \N -2101 opp-pending VOL-596 opportunity 500 VOLVO-335 volunteer \N -2102 opp-pending VOL-596 opportunity 500 VOLVO-389 volunteer \N -2103 opp-pending VOL-597 opportunity 501 VOLVO-144 volunteer \N -2104 opp-pending VOL-597 opportunity 501 VOLVO-763 volunteer \N -2105 opp-pending VOL-597 opportunity 501 VOLVO-37 volunteer \N -2106 opp-pending VOL-597 opportunity 501 VOLVO-19 volunteer \N -2107 opp-pending VOL-597 opportunity 501 VOLVO-204 volunteer \N -2108 opp-pending VOL-597 opportunity 501 VOLVO-18 volunteer \N -2109 opp-pending VOL-598 opportunity 502 VOLVO-608 volunteer \N -2110 opp-pending VOL-598 opportunity 502 VOLVO-697 volunteer \N -2111 opp-pending VOL-598 opportunity 502 VOLVO-287 volunteer \N -2112 opp-pending VOL-598 opportunity 502 VOLVO-183 volunteer \N -2114 opp-pending VOL-599 opportunity 503 VOLVO-25 volunteer \N -2115 opp-pending VOL-599 opportunity 503 VOLVO-183 volunteer \N -2116 opp-pending VOL-599 opportunity 503 VOLVO-241 volunteer \N -2117 opp-pending VOL-599 opportunity 503 VOLVO-556 volunteer \N -2119 opp-pending VOL-600 opportunity 504 VOLVO-25 volunteer \N -2120 opp-pending VOL-600 opportunity 504 VOLVO-181 volunteer \N -2121 opp-pending VOL-600 opportunity 504 VOLVO-275 volunteer \N -2123 opp-pending VOL-601 opportunity 505 VOLVO-443 volunteer \N -2125 opp-pending VOL-602 opportunity 506 VOLVO-293 volunteer \N -2126 opp-pending VOL-606 opportunity 510 VOLVO-247 volunteer \N -2127 opp-pending VOL-606 opportunity 510 VOLVO-65 volunteer \N -2128 opp-pending VOL-606 opportunity 510 VOLVO-242 volunteer \N -2129 opp-pending VOL-606 opportunity 510 VOLVO-533 volunteer \N -2131 opp-pending VOL-607 opportunity 511 VOLVO-262 volunteer \N -2132 opp-pending VOL-607 opportunity 511 VOLVO-527 volunteer \N -2133 opp-pending VOL-607 opportunity 511 VOLVO-580 volunteer \N -2134 opp-pending VOL-607 opportunity 511 VOLVO-174 volunteer \N -2135 opp-pending VOL-607 opportunity 511 VOLVO-158 volunteer \N -2136 opp-pending VOL-607 opportunity 511 VOLVO-41 volunteer \N -2137 opp-pending VOL-607 opportunity 511 VOLVO-751 volunteer \N -2139 opp-pending VOL-608 opportunity 512 VOLVO-555 volunteer \N -2141 opp-pending VOL-609 opportunity 513 VOLVO-697 volunteer \N -2143 opp-pending VOL-610 opportunity 514 VOLVO-16 volunteer \N -2144 opp-pending VOL-610 opportunity 514 VOLVO-741 volunteer \N -2145 opp-pending VOL-610 opportunity 514 VOLVO-69 volunteer \N -2146 opp-pending VOL-610 opportunity 514 VOLVO-568 volunteer \N -2147 opp-pending VOL-611 opportunity 515 VOLVO-348 volunteer \N -2149 opp-pending VOL-612 opportunity 516 VOLVO-380 volunteer \N -2150 opp-pending VOL-612 opportunity 516 VOLVO-424 volunteer \N -2152 opp-pending VOL-613 opportunity 517 VOLVO-378 volunteer \N -2155 opp-pending VOL-615 opportunity 519 VOLVO-350 volunteer \N -2157 opp-pending VOL-616 opportunity 520 VOLVO-248 volunteer \N -2158 opp-matched VOL-616 opportunity 520 VOLVO-735 volunteer \N -2159 opp-pending VOL-617 opportunity 521 VOLVO-681 volunteer \N -2160 opp-pending VOL-617 opportunity 521 VOLVO-183 volunteer \N -2161 opp-pending VOL-617 opportunity 521 VOLVO-254 volunteer \N -2162 opp-pending VOL-618 opportunity 522 VOLVO-455 volunteer \N -2164 opp-matched VOL-618 opportunity 522 VOLVO-409 volunteer \N -2165 opp-pending VOL-619 opportunity 523 VOLVO-199 volunteer \N -2167 opp-pending VOL-620 opportunity 524 VOLVO-761 volunteer \N -2168 opp-pending VOL-620 opportunity 524 VOLVO-316 volunteer \N -2169 opp-pending VOL-620 opportunity 524 VOLVO-315 volunteer \N -2170 opp-pending VOL-620 opportunity 524 VOLVO-762 volunteer \N -2171 opp-pending VOL-620 opportunity 524 VOLVO-254 volunteer \N -2172 opp-pending VOL-620 opportunity 524 VOLVO-322 volunteer \N -2174 opp-pending VOL-621 opportunity 525 VOLVO-312 volunteer \N -2175 opp-pending VOL-621 opportunity 525 VOLVO-313 volunteer \N -2176 opp-pending VOL-621 opportunity 525 VOLVO-241 volunteer \N -2177 opp-pending VOL-621 opportunity 525 VOLVO-254 volunteer \N -2179 opp-pending VOL-622 opportunity 526 VOLVO-38 volunteer \N -2180 opp-pending VOL-622 opportunity 526 VOLVO-755 volunteer \N -2181 opp-pending VOL-622 opportunity 526 VOLVO-506 volunteer \N -2182 opp-pending VOL-622 opportunity 526 VOLVO-675 volunteer \N -2183 opp-pending VOL-623 opportunity 527 VOLVO-312 volunteer \N -2184 opp-pending VOL-623 opportunity 527 VOLVO-313 volunteer \N -2185 opp-pending VOL-623 opportunity 527 VOLVO-241 volunteer \N -2187 opp-pending VOL-624 opportunity 528 VOLVO-415 volunteer \N -2188 opp-pending VOL-625 opportunity 529 VOLVO-667 volunteer \N -2189 opp-pending VOL-625 opportunity 529 VOLVO-25 volunteer \N -2190 opp-pending VOL-626 opportunity 530 VOLVO-25 volunteer \N -2191 opp-pending VOL-626 opportunity 530 VOLVO-183 volunteer \N -2192 opp-pending VOL-627 opportunity 531 VOLVO-329 volunteer \N -2193 opp-pending VOL-627 opportunity 531 VOLVO-328 volunteer \N -2194 opp-pending VOL-627 opportunity 531 VOLVO-303 volunteer \N -2195 opp-pending VOL-627 opportunity 531 VOLVO-289 volunteer \N -2196 opp-pending VOL-627 opportunity 531 VOLVO-285 volunteer \N -2197 opp-pending VOL-627 opportunity 531 VOLVO-281 volunteer \N -2198 opp-pending VOL-627 opportunity 531 VOLVO-278 volunteer \N -2199 opp-pending VOL-627 opportunity 531 VOLVO-243 volunteer \N -2200 opp-pending VOL-627 opportunity 531 VOLVO-242 volunteer \N -2201 opp-pending VOL-627 opportunity 531 VOLVO-223 volunteer \N -2202 opp-pending VOL-627 opportunity 531 VOLVO-220 volunteer \N -2203 opp-pending VOL-627 opportunity 531 VOLVO-142 volunteer \N -2204 opp-pending VOL-627 opportunity 531 VOLVO-133 volunteer \N -2205 opp-pending VOL-627 opportunity 531 VOLVO-108 volunteer \N -2206 opp-pending VOL-627 opportunity 531 VOLVO-93 volunteer \N -2207 opp-pending VOL-627 opportunity 531 VOLVO-67 volunteer \N -2208 opp-pending VOL-627 opportunity 531 VOLVO-63 volunteer \N -2209 opp-pending VOL-627 opportunity 531 VOLVO-64 volunteer \N -2210 opp-pending VOL-627 opportunity 531 VOLVO-56 volunteer \N -2211 opp-pending VOL-627 opportunity 531 VOLVO-18 volunteer \N -2212 opp-pending VOL-631 opportunity 535 VOLVO-67 volunteer \N -2214 opp-pending VOL-632 opportunity 536 VOLVO-735 volunteer \N -2215 opp-pending VOL-632 opportunity 536 VOLVO-267 volunteer \N -2216 opp-pending VOL-632 opportunity 536 VOLVO-255 volunteer \N -2217 opp-pending VOL-632 opportunity 536 VOLVO-243 volunteer \N -2219 opp-pending VOL-634 opportunity 538 VOLVO-341 volunteer \N -2220 opp-pending VOL-634 opportunity 538 VOLVO-360 volunteer \N -2221 opp-pending VOL-634 opportunity 538 VOLVO-443 volunteer \N -2222 opp-pending VOL-634 opportunity 538 VOLVO-806 volunteer \N -2224 opp-pending VOL-635 opportunity 539 VOLVO-309 volunteer \N -2225 opp-pending VOL-635 opportunity 539 VOLVO-273 volunteer \N -2226 opp-pending VOL-635 opportunity 539 VOLVO-201 volunteer \N -2227 opp-pending VOL-635 opportunity 539 VOLVO-146 volunteer \N -2228 opp-pending VOL-635 opportunity 539 VOLVO-314 volunteer \N -2229 opp-pending VOL-635 opportunity 539 VOLVO-283 volunteer \N -2230 opp-pending VOL-635 opportunity 539 VOLVO-37 volunteer \N -2232 opp-pending VOL-636 opportunity 540 VOLVO-612 volunteer \N -2233 opp-pending VOL-636 opportunity 540 VOLVO-85 volunteer \N -2234 opp-pending VOL-636 opportunity 540 VOLVO-773 volunteer \N -2235 opp-pending VOL-637 opportunity 541 VOLVO-308 volunteer \N -2236 opp-pending VOL-637 opportunity 541 VOLVO-316 volunteer \N -2237 opp-pending VOL-637 opportunity 541 VOLVO-241 volunteer \N -2239 opp-pending VOL-639 opportunity 543 VOLVO-389 volunteer \N -2241 opp-pending VOL-640 opportunity 544 VOLVO-316 volunteer \N -2243 opp-pending VOL-642 opportunity 546 VOLVO-135 volunteer \N -2244 opp-pending VOL-642 opportunity 546 VOLVO-37 volunteer \N -2246 opp-pending VOL-647 opportunity 551 VOLVO-308 volunteer \N -2247 opp-pending VOL-647 opportunity 551 VOLVO-719 volunteer \N -2248 opp-pending VOL-647 opportunity 551 VOLVO-318 volunteer \N -2249 opp-pending VOL-649 opportunity 553 VOLVO-254 volunteer \N -2250 opp-pending VOL-649 opportunity 553 VOLVO-242 volunteer \N -2252 opp-pending VOL-650 opportunity 554 VOLVO-719 volunteer \N -2253 opp-pending VOL-650 opportunity 554 VOLVO-287 volunteer \N -2255 opp-pending VOL-652 opportunity 556 VOLVO-178 volunteer \N -2257 opp-pending VOL-653 opportunity 557 VOLVO-363 volunteer \N -2258 opp-pending VOL-653 opportunity 557 VOLVO-420 volunteer \N -2259 opp-pending VOL-653 opportunity 557 VOLVO-460 volunteer \N -2260 opp-pending VOL-653 opportunity 557 VOLVO-461 volunteer \N -2261 opp-pending VOL-654 opportunity 558 VOLVO-340 volunteer \N -2263 opp-pending VOL-655 opportunity 559 VOLVO-420 volunteer \N -2264 opp-pending VOL-656 opportunity 560 VOLVO-420 volunteer \N -2265 opp-pending VOL-656 opportunity 560 VOLVO-438 volunteer \N -2267 opp-matched VOL-656 opportunity 560 VOLVO-426 volunteer \N -2268 opp-pending VOL-658 opportunity 562 VOLVO-142 volunteer \N -2269 opp-active VOL-658 opportunity 562 VOLVO-515 volunteer \N -2270 opp-pending VOL-659 opportunity 563 VOLVO-697 volunteer \N -2271 opp-matched VOL-660 opportunity 564 VOLVO-65 volunteer \N -2272 opp-active VOL-660 opportunity 564 VOLVO-318 volunteer \N -2273 opp-active VOL-660 opportunity 564 VOLVO-241 volunteer \N -2275 opp-pending VOL-663 opportunity 567 VOLVO-434 volunteer \N -2276 opp-pending VOL-663 opportunity 567 VOLVO-440 volunteer \N -2277 opp-pending VOL-665 opportunity 569 VOLVO-675 volunteer \N -2279 opp-pending VOL-666 opportunity 570 VOLVO-211 volunteer \N -2280 opp-pending VOL-666 opportunity 570 VOLVO-85 volunteer \N -2281 opp-pending VOL-666 opportunity 570 VOLVO-37 volunteer \N -2282 opp-pending VOL-666 opportunity 570 VOLVO-135 volunteer \N -2284 opp-pending VOL-667 opportunity 571 VOLVO-129 volunteer \N -2286 opp-pending VOL-668 opportunity 572 VOLVO-262 volunteer \N -2287 opp-pending VOL-668 opportunity 572 VOLVO-448 volunteer \N -2288 opp-pending VOL-668 opportunity 572 VOLVO-809 volunteer \N -2289 opp-pending VOL-669 opportunity 573 VOLVO-82 volunteer \N -2290 opp-pending VOL-669 opportunity 573 VOLVO-142 volunteer \N -2291 opp-pending VOL-669 opportunity 573 VOLVO-329 volunteer \N -2292 opp-pending VOL-669 opportunity 573 VOLVO-626 volunteer \N -2294 opp-pending VOL-670 opportunity 574 VOLVO-318 volunteer \N -2295 opp-pending VOL-670 opportunity 574 VOLVO-241 volunteer \N -2296 opp-pending VOL-670 opportunity 574 VOLVO-65 volunteer \N -2297 opp-pending VOL-670 opportunity 574 VOLVO-761 volunteer \N -2298 opp-active VOL-670 opportunity 574 VOLVO-348 volunteer \N -2299 opp-pending VOL-671 opportunity 575 VOLVO-763 volunteer \N -2300 opp-pending VOL-671 opportunity 575 VOLVO-144 volunteer \N -2301 opp-pending VOL-671 opportunity 575 VOLVO-546 volunteer \N -2302 opp-pending VOL-671 opportunity 575 VOLVO-303 volunteer \N -2303 opp-pending VOL-671 opportunity 575 VOLVO-284 volunteer \N -2304 opp-pending VOL-671 opportunity 575 VOLVO-279 volunteer \N -2306 opp-pending VOL-672 opportunity 576 VOLVO-285 volunteer \N -2307 opp-pending VOL-672 opportunity 576 VOLVO-354 volunteer \N -2309 opp-pending VOL-673 opportunity 577 VOLVO-236 volunteer \N -2310 opp-pending VOL-673 opportunity 577 VOLVO-376 volunteer \N -2311 opp-pending VOL-673 opportunity 577 VOLVO-401 volunteer \N -2312 opp-pending VOL-673 opportunity 577 VOLVO-417 volunteer \N -2316 opp-pending VOL-674 opportunity 578 VOLVO-320 volunteer \N -2317 opp-pending VOL-675 opportunity 579 VOLVO-357 volunteer \N -2320 opp-active VOL-676 opportunity 580 VOLVO-348 volunteer \N -2321 opp-pending VOL-677 opportunity 581 VOLVO-697 volunteer \N -2322 opp-pending VOL-677 opportunity 581 VOLVO-183 volunteer \N -2323 opp-pending VOL-677 opportunity 581 VOLVO-533 volunteer \N -2325 opp-pending VOL-680 opportunity 584 VOLVO-462 volunteer \N -2327 opp-pending VOL-681 opportunity 585 VOLVO-449 volunteer \N -2328 opp-pending VOL-681 opportunity 585 VOLVO-455 volunteer \N -2329 opp-pending VOL-681 opportunity 585 VOLVO-805 volunteer \N -2330 opp-pending VOL-682 opportunity 586 VOLVO-348 volunteer \N -2332 opp-active VOL-683 opportunity 587 VOLVO-195 volunteer \N -2333 opp-pending VOL-684 opportunity 588 VOLVO-322 volunteer \N -2334 opp-pending VOL-684 opportunity 588 VOLVO-316 volunteer \N -2335 opp-pending VOL-684 opportunity 588 VOLVO-314 volunteer \N -2337 opp-pending VOL-685 opportunity 589 VOLVO-418 volunteer \N -2338 opp-pending VOL-685 opportunity 589 VOLVO-214 volunteer \N -2339 opp-pending VOL-685 opportunity 589 VOLVO-437 volunteer \N -2343 opp-pending VOL-688 opportunity 592 VOLVO-348 volunteer \N -2344 opp-pending VOL-688 opportunity 592 VOLVO-183 volunteer \N -2345 opp-pending VOL-688 opportunity 592 VOLVO-681 volunteer \N -2346 opp-pending VOL-689 opportunity 593 VOLVO-243 volunteer \N -2347 opp-pending VOL-689 opportunity 593 VOLVO-18 volunteer \N -2348 opp-pending VOL-689 opportunity 593 VOLVO-273 volunteer \N -2349 opp-pending VOL-689 opportunity 593 VOLVO-236 volunteer \N -2350 opp-pending VOL-690 opportunity 594 VOLVO-327 volunteer \N -2351 opp-pending VOL-690 opportunity 594 VOLVO-411 volunteer \N -2352 opp-pending VOL-690 opportunity 594 VOLVO-521 volunteer \N -2353 opp-pending VOL-690 opportunity 594 VOLVO-425 volunteer \N -2354 opp-pending VOL-690 opportunity 594 VOLVO-396 volunteer \N -2357 opp-pending VOL-691 opportunity 595 VOLVO-738 volunteer \N -2358 opp-pending VOL-691 opportunity 595 VOLVO-808 volunteer \N -2361 opp-pending VOL-692 opportunity 596 VOLVO-369 volunteer \N -2363 opp-pending VOL-693 opportunity 597 VOLVO-363 volunteer \N -2364 opp-pending VOL-693 opportunity 597 VOLVO-719 volunteer \N -2365 opp-pending VOL-693 opportunity 597 VOLVO-65 volunteer \N -2366 opp-pending VOL-693 opportunity 597 VOLVO-348 volunteer \N -2368 opp-pending VOL-694 opportunity 598 VOLVO-348 volunteer \N -2370 opp-pending VOL-697 opportunity 601 VOLVO-308 volunteer \N -2371 opp-pending VOL-697 opportunity 601 VOLVO-256 volunteer \N -2372 opp-pending VOL-697 opportunity 601 VOLVO-65 volunteer \N -2374 opp-pending VOL-698 opportunity 602 VOLVO-442 volunteer \N -2375 opp-pending VOL-698 opportunity 602 VOLVO-443 volunteer \N -2377 opp-pending VOL-699 opportunity 603 VOLVO-183 volunteer \N -2379 opp-pending VOL-700 opportunity 604 VOLVO-348 volunteer \N -2381 opp-pending VOL-701 opportunity 605 VOLVO-256 volunteer \N -2382 opp-pending VOL-702 opportunity 606 VOLVO-313 volunteer \N -2383 opp-pending VOL-702 opportunity 606 VOLVO-314 volunteer \N -2385 opp-pending VOL-703 opportunity 607 VOLVO-348 volunteer \N -2387 opp-pending VOL-704 opportunity 608 VOLVO-348 volunteer \N -2389 opp-pending VOL-705 opportunity 609 VOLVO-443 volunteer \N -2390 opp-pending VOL-706 opportunity 610 VOLVO-343 volunteer \N -2391 opp-pending VOL-706 opportunity 610 VOLVO-285 volunteer \N -2392 opp-pending VOL-706 opportunity 610 VOLVO-437 volunteer \N -2393 opp-pending VOL-706 opportunity 610 VOLVO-443 volunteer \N -2395 opp-pending VOL-707 opportunity 611 VOLVO-766 volunteer \N -2396 opp-pending VOL-707 opportunity 611 VOLVO-668 volunteer \N -2397 opp-active VOL-707 opportunity 611 VOLVO-348 volunteer \N -2398 opp-pending VOL-708 opportunity 612 VOLVO-679 volunteer \N -2399 opp-pending VOL-708 opportunity 612 VOLVO-556 volunteer \N -2400 opp-pending VOL-708 opportunity 612 VOLVO-308 volunteer \N -2402 opp-pending VOL-709 opportunity 613 VOLVO-283 volunteer \N -2404 opp-pending VOL-710 opportunity 614 VOLVO-348 volunteer \N -2405 opp-pending VOL-710 opportunity 614 VOLVO-667 volunteer \N -2406 opp-pending VOL-710 opportunity 614 VOLVO-420 volunteer \N -2407 opp-pending VOL-711 opportunity 615 VOLVO-65 volunteer \N -2409 opp-pending VOL-712 opportunity 616 VOLVO-447 volunteer \N -2410 opp-pending VOL-712 opportunity 616 VOLVO-452 volunteer \N -2412 opp-pending VOL-713 opportunity 617 VOLVO-135 volunteer \N -2413 opp-pending VOL-713 opportunity 617 VOLVO-37 volunteer \N -2414 opp-pending VOL-713 opportunity 617 VOLVO-612 volunteer \N -2415 opp-pending VOL-713 opportunity 617 VOLVO-320 volunteer \N -2416 opp-pending VOL-713 opportunity 617 VOLVO-678 volunteer \N -2417 opp-pending VOL-713 opportunity 617 VOLVO-647 volunteer \N -2419 opp-pending VOL-714 opportunity 618 VOLVO-387 volunteer \N -2421 opp-active VOL-714 opportunity 618 VOLVO-350 volunteer \N -2422 opp-pending VOL-715 opportunity 619 VOLVO-379 volunteer \N -2423 opp-pending VOL-715 opportunity 619 VOLVO-350 volunteer \N -2426 opp-pending VOL-717 opportunity 621 VOLVO-387 volunteer \N -2427 opp-pending VOL-717 opportunity 621 VOLVO-182 volunteer \N -2428 opp-pending VOL-717 opportunity 621 VOLVO-429 volunteer \N -2430 opp-pending VOL-718 opportunity 622 VOLVO-113 volunteer \N -2431 opp-pending VOL-718 opportunity 622 VOLVO-818 volunteer \N -2432 opp-pending VOL-718 opportunity 622 VOLVO-821 volunteer \N -2433 opp-pending VOL-719 opportunity 623 VOLVO-320 volunteer \N -2434 opp-pending VOL-719 opportunity 623 VOLVO-37 volunteer \N -2435 opp-pending VOL-719 opportunity 623 VOLVO-211 volunteer \N -2437 opp-pending VOL-720 opportunity 624 VOLVO-379 volunteer \N -2438 opp-pending VOL-720 opportunity 624 VOLVO-302 volunteer \N -2439 opp-pending VOL-720 opportunity 624 VOLVO-333 volunteer \N -2444 opp-pending VOL-721 opportunity 625 VOLVO-135 volunteer \N -2445 opp-pending VOL-721 opportunity 625 VOLVO-391 volunteer \N -2446 opp-pending VOL-721 opportunity 625 VOLVO-566 volunteer \N -2447 opp-pending VOL-724 opportunity 628 VOLVO-364 volunteer \N -2448 opp-pending VOL-724 opportunity 628 VOLVO-18 volunteer \N -2449 opp-pending VOL-724 opportunity 628 VOLVO-519 volunteer \N -2450 opp-pending VOL-724 opportunity 628 VOLVO-698 volunteer \N -2451 opp-pending VOL-725 opportunity 629 VOLVO-158 volunteer \N -2452 opp-pending VOL-726 opportunity 630 VOLVO-391 volunteer \N -2453 opp-pending VOL-726 opportunity 630 VOLVO-85 volunteer \N -2454 opp-pending VOL-728 opportunity 631 VOLVO-302 volunteer \N -2455 opp-pending VOL-728 opportunity 631 VOLVO-370 volunteer \N -2456 opp-pending VOL-728 opportunity 631 VOLVO-58 volunteer \N -2460 opp-pending VOL-729 opportunity 632 VOLVO-348 volunteer \N -2461 opp-pending VOL-729 opportunity 632 VOLVO-363 volunteer \N -2462 opp-pending VOL-729 opportunity 632 VOLVO-313 volunteer \N -2463 opp-pending VOL-731 opportunity 634 VOLVO-246 volunteer \N -2464 opp-pending VOL-731 opportunity 634 VOLVO-405 volunteer \N -2466 opp-matched VOL-733 opportunity 636 VOLVO-348 volunteer \N -2468 opp-active VOL-735 opportunity 638 VOLVO-195 volunteer \N -2469 opp-pending VOL-736 opportunity 639 VOLVO-394 volunteer \N -2470 opp-pending VOL-736 opportunity 639 VOLVO-401 volunteer \N -2471 opp-pending VOL-736 opportunity 639 VOLVO-435 volunteer \N -2474 opp-pending VOL-737 opportunity 640 VOLVO-308 volunteer \N -2475 opp-pending VOL-737 opportunity 640 VOLVO-322 volunteer \N -2476 opp-pending VOL-737 opportunity 640 VOLVO-177 volunteer \N -2477 opp-pending VOL-737 opportunity 640 VOLVO-348 volunteer \N -2478 opp-pending VOL-738 opportunity 641 VOLVO-322 volunteer \N -2479 opp-pending VOL-738 opportunity 641 VOLVO-348 volunteer \N -2481 opp-pending VOL-739 opportunity 642 VOLVO-308 volunteer \N -2482 opp-pending VOL-739 opportunity 642 VOLVO-313 volunteer \N -2483 opp-pending VOL-739 opportunity 642 VOLVO-177 volunteer \N -2484 opp-pending VOL-739 opportunity 642 VOLVO-348 volunteer \N -2485 opp-pending VOL-739 opportunity 642 VOLVO-556 volunteer \N -2486 opp-pending VOL-739 opportunity 642 VOLVO-697 volunteer \N -2487 opp-pending VOL-740 opportunity 643 VOLVO-348 volunteer \N -2488 opp-pending VOL-740 opportunity 643 VOLVO-761 volunteer \N -2489 opp-active VOL-740 opportunity 643 VOLVO-25 volunteer \N -2490 opp-pending VOL-741 opportunity 644 VOLVO-316 volunteer \N -2491 opp-pending VOL-741 opportunity 644 VOLVO-533 volunteer \N -2493 opp-pending VOL-742 opportunity 645 VOLVO-527 volunteer \N -2494 opp-pending VOL-742 opportunity 645 VOLVO-41 volunteer \N -2495 opp-pending VOL-742 opportunity 645 VOLVO-260 volunteer \N -2496 opp-pending VOL-742 opportunity 645 VOLVO-580 volunteer \N -2497 opp-pending VOL-742 opportunity 645 VOLVO-262 volunteer \N -2499 opp-pending VOL-743 opportunity 646 VOLVO-608 volunteer \N -2500 opp-pending VOL-743 opportunity 646 VOLVO-761 volunteer \N -2501 opp-pending VOL-743 opportunity 646 VOLVO-574 volunteer \N -2502 opp-pending VOL-743 opportunity 646 VOLVO-322 volunteer \N -2503 opp-pending VOL-744 opportunity 647 VOLVO-405 volunteer \N -2504 opp-pending VOL-744 opportunity 647 VOLVO-183 volunteer \N -2505 opp-pending VOL-744 opportunity 647 VOLVO-313 volunteer \N -2506 opp-pending VOL-745 opportunity 648 VOLVO-316 volunteer \N -2508 opp-pending VOL-746 opportunity 649 VOLVO-762 volunteer \N -2509 opp-pending VOL-746 opportunity 649 VOLVO-667 volunteer \N -2511 opp-pending VOL-747 opportunity 650 VOLVO-819 volunteer \N -2512 opp-pending VOL-747 opportunity 650 VOLVO-818 volunteer \N -2513 opp-pending VOL-748 opportunity 651 VOLVO-423 volunteer \N -2514 opp-pending VOL-748 opportunity 651 VOLVO-440 volunteer \N -2516 opp-matched VOL-748 opportunity 651 VOLVO-434 volunteer \N -2518 opp-pending VOL-749 opportunity 652 VOLVO-414 volunteer \N -2520 opp-pending VOL-750 opportunity 653 VOLVO-242 volunteer \N -2521 opp-pending VOL-750 opportunity 653 VOLVO-247 volunteer \N -2522 opp-pending VOL-750 opportunity 653 VOLVO-254 volunteer \N -2523 opp-pending VOL-750 opportunity 653 VOLVO-405 volunteer \N -2525 opp-pending VOL-751 opportunity 654 VOLVO-2 volunteer \N -2526 opp-pending VOL-751 opportunity 654 VOLVO-220 volunteer \N -2527 opp-pending VOL-752 opportunity 655 VOLVO-348 volunteer \N -2528 opp-pending VOL-752 opportunity 655 VOLVO-761 volunteer \N -2530 opp-pending VOL-753 opportunity 656 VOLVO-400 volunteer \N -2532 opp-pending VOL-754 opportunity 657 VOLVO-107 volunteer \N -2533 opp-pending VOL-754 opportunity 657 VOLVO-33 volunteer \N -2536 opp-pending VOL-755 opportunity 658 VOLVO-408 volunteer \N -2537 opp-pending VOL-755 opportunity 658 VOLVO-256 volunteer \N -2539 opp-pending VOL-756 opportunity 659 VOLVO-416 volunteer \N -2541 opp-pending VOL-757 opportunity 660 VOLVO-697 volunteer \N -2543 opp-pending VOL-761 opportunity 664 VOLVO-515 volunteer \N -2545 opp-pending VOL-762 opportunity 665 VOLVO-533 volunteer \N -2546 opp-pending VOL-762 opportunity 665 VOLVO-322 volunteer \N -2547 opp-pending VOL-763 opportunity 666 VOLVO-420 volunteer \N -2549 opp-pending VOL-764 opportunity 667 VOLVO-364 volunteer \N -2551 opp-pending VOL-765 opportunity 668 VOLVO-430 volunteer \N -2552 opp-pending VOL-765 opportunity 668 VOLVO-377 volunteer \N -2553 opp-pending VOL-765 opportunity 668 VOLVO-438 volunteer \N -2554 opp-pending VOL-765 opportunity 668 VOLVO-808 volunteer \N -2555 opp-pending VOL-765 opportunity 668 VOLVO-458 volunteer \N -2557 opp-pending VOL-767 opportunity 670 VOLVO-761 volunteer \N -2558 opp-pending VOL-767 opportunity 670 VOLVO-364 volunteer \N -2559 opp-active VOL-769 opportunity 672 VOLVO-195 volunteer \N -2560 opp-pending VOL-770 opportunity 673 VOLVO-364 volunteer \N -2561 opp-pending VOL-771 opportunity 674 VOLVO-556 volunteer \N -2562 opp-pending VOL-771 opportunity 674 VOLVO-65 volunteer \N -2563 opp-pending VOL-771 opportunity 674 VOLVO-491 volunteer \N -2565 opp-pending VOL-772 opportunity 675 VOLVO-283 volunteer \N -2566 opp-pending VOL-772 opportunity 675 VOLVO-416 volunteer \N -2567 opp-pending VOL-772 opportunity 675 VOLVO-761 volunteer \N -2568 opp-pending VOL-772 opportunity 675 VOLVO-183 volunteer \N -2569 opp-pending VOL-772 opportunity 675 VOLVO-719 volunteer \N -2571 opp-pending VOL-773 opportunity 676 VOLVO-761 volunteer \N -2572 opp-pending VOL-773 opportunity 676 VOLVO-316 volunteer \N -2574 opp-pending VOL-774 opportunity 677 VOLVO-405 volunteer \N -2575 opp-pending VOL-774 opportunity 677 VOLVO-283 volunteer \N -2576 opp-pending VOL-775 opportunity 678 VOLVO-377 volunteer \N -2577 opp-pending VOL-776 opportunity 679 VOLVO-283 volunteer \N -2578 opp-pending VOL-776 opportunity 679 VOLVO-556 volunteer \N -2579 opp-pending VOL-776 opportunity 679 VOLVO-697 volunteer \N -2580 opp-pending VOL-777 opportunity 680 VOLVO-405 volunteer \N -2581 opp-pending VOL-777 opportunity 680 VOLVO-408 volunteer \N -2582 opp-pending VOL-777 opportunity 680 VOLVO-183 volunteer \N -2583 opp-pending VOL-778 opportunity 681 VOLVO-232 volunteer \N -2585 opp-pending VOL-779 opportunity 682 VOLVO-449 volunteer \N -2586 opp-pending VOL-779 opportunity 682 VOLVO-455 volunteer \N -2587 opp-pending VOL-779 opportunity 682 VOLVO-805 volunteer \N -2590 opp-pending VOL-781 opportunity 684 VOLVO-675 volunteer \N -2592 opp-pending VOL-783 opportunity 686 VOLVO-322 volunteer \N -2593 opp-pending VOL-783 opportunity 686 VOLVO-533 volunteer \N -2594 opp-pending VOL-784 opportunity 687 VOLVO-739 volunteer \N -2595 opp-pending VOL-784 opportunity 687 VOLVO-735 volunteer \N -2596 opp-pending VOL-784 opportunity 687 VOLVO-698 volunteer \N -2597 opp-pending VOL-784 opportunity 687 VOLVO-243 volunteer \N -2598 opp-pending VOL-784 opportunity 687 VOLVO-373 volunteer \N -2599 opp-active VOL-784 opportunity 687 VOLVO-579 volunteer \N -2600 opp-pending VOL-785 opportunity 688 VOLVO-364 volunteer \N -2601 opp-pending VOL-785 opportunity 688 VOLVO-421 volunteer \N -2602 opp-pending VOL-787 opportunity 690 VOLVO-291 volunteer \N -2603 opp-pending VOL-787 opportunity 690 VOLVO-673 volunteer \N -2604 opp-pending VOL-787 opportunity 690 VOLVO-455 volunteer \N -2607 opp-pending VOL-788 opportunity 691 VOLVO-424 volunteer \N -2608 opp-pending VOL-788 opportunity 691 VOLVO-450 volunteer \N -2609 opp-pending VOL-790 opportunity 693 VOLVO-444 volunteer \N -2610 opp-pending VOL-790 opportunity 693 VOLVO-448 volunteer \N -2611 opp-pending VOL-790 opportunity 693 VOLVO-453 volunteer \N -2612 opp-pending VOL-791 opportunity 694 VOLVO-199 volunteer \N -2614 opp-pending VOL-795 opportunity 698 VOLVO-427 volunteer \N -2615 opp-pending VOL-795 opportunity 698 VOLVO-322 volunteer \N -2616 opp-pending VOL-795 opportunity 698 VOLVO-242 volunteer \N -2618 opp-pending VOL-796 opportunity 699 VOLVO-364 volunteer \N -2620 opp-pending VOL-797 opportunity 700 VOLVO-454 volunteer \N -2621 opp-pending VOL-797 opportunity 700 VOLVO-356 volunteer \N -2622 opp-pending VOL-797 opportunity 700 VOLVO-180 volunteer \N -2624 opp-pending VOL-802 opportunity 705 VOLVO-440 volunteer \N -2625 opp-pending VOL-802 opportunity 705 VOLVO-454 volunteer \N -2626 opp-pending VOL-802 opportunity 705 VOLVO-457 volunteer \N -2627 opp-pending VOL-803 opportunity 706 VOLVO-325 volunteer \N -2628 opp-pending VOL-803 opportunity 706 VOLVO-819 volunteer \N -2630 opp-pending VOL-804 opportunity 707 VOLVO-242 volunteer \N -2631 opp-pending VOL-804 opportunity 707 VOLVO-256 volunteer \N -2632 opp-pending VOL-805 opportunity 708 VOLVO-421 volunteer \N -2634 opp-pending VOL-806 opportunity 709 VOLVO-425 volunteer \N -2635 opp-pending VOL-806 opportunity 709 VOLVO-165 volunteer \N -2636 opp-pending VOL-806 opportunity 709 VOLVO-809 volunteer \N -2637 opp-pending VOL-807 opportunity 710 VOLVO-556 volunteer \N -2638 opp-pending VOL-807 opportunity 710 VOLVO-183 volunteer \N -2639 opp-pending VOL-807 opportunity 710 VOLVO-719 volunteer \N -2640 opp-pending VOL-807 opportunity 710 VOLVO-220 volunteer \N -2641 opp-pending VOL-808 opportunity 711 VOLVO-817 volunteer \N -2643 opp-pending VOL-809 opportunity 712 VOLVO-325 volunteer \N -2645 opp-pending VOL-811 opportunity 714 VOLVO-421 volunteer \N -2646 opp-pending VOL-812 opportunity 715 VOLVO-241 volunteer \N -2647 opp-pending VOL-812 opportunity 715 VOLVO-416 volunteer \N -2648 opp-pending VOL-812 opportunity 715 VOLVO-322 volunteer \N -2649 opp-pending VOL-812 opportunity 715 VOLVO-608 volunteer \N -2650 opp-pending VOL-812 opportunity 715 VOLVO-761 volunteer \N -2651 opp-pending VOL-813 opportunity 716 VOLVO-448 volunteer \N -2652 opp-pending VOL-814 opportunity 717 VOLVO-533 volunteer \N -2653 opp-pending VOL-814 opportunity 717 VOLVO-322 volunteer \N -2654 opp-pending VOL-814 opportunity 717 VOLVO-608 volunteer \N -2655 opp-pending VOL-814 opportunity 717 VOLVO-316 volunteer \N -2657 opp-pending VOL-820 opportunity 723 VOLVO-443 volunteer \N -2658 opp-pending VOL-820 opportunity 723 VOLVO-819 volunteer \N -2659 opp-pending VOL-821 opportunity 724 VOLVO-440 volunteer \N -2660 opp-pending VOL-821 opportunity 724 VOLVO-443 volunteer \N -2661 opp-pending VOL-823 opportunity 726 VOLVO-320 volunteer \N -2662 opp-pending VOL-823 opportunity 726 VOLVO-85 volunteer \N -2663 opp-pending VOL-823 opportunity 726 VOLVO-612 volunteer \N -2664 opp-pending VOL-824 opportunity 727 VOLVO-511 volunteer \N -2665 opp-pending VOL-824 opportunity 727 VOLVO-384 volunteer \N -2666 opp-pending VOL-825 opportunity 728 VOLVO-271 volunteer \N -2667 opp-pending VOL-825 opportunity 728 VOLVO-430 volunteer \N -2670 opp-pending VOL-826 opportunity 729 VOLVO-325 volunteer \N -2671 opp-pending VOL-826 opportunity 729 VOLVO-375 volunteer \N -2672 opp-pending VOL-826 opportunity 729 VOLVO-804 volunteer \N -2675 opp-pending VOL-827 opportunity 730 VOLVO-453 volunteer \N -2676 opp-pending VOL-827 opportunity 730 VOLVO-435 volunteer \N -2677 opp-pending VOL-827 opportunity 730 VOLVO-325 volunteer \N -2678 opp-pending VOL-828 opportunity 731 VOLVO-447 volunteer \N -2679 opp-pending VOL-828 opportunity 731 VOLVO-443 volunteer \N -2681 opp-pending VOL-829 opportunity 732 VOLVO-364 volunteer \N -2682 opp-pending VOL-829 opportunity 732 VOLVO-427 volunteer \N -2683 opp-matched VOL-831 opportunity 734 VOLVO-114 volunteer \N -2684 opp-pending VOL-833 opportunity 736 VOLVO-533 volunteer \N -2685 opp-pending VOL-833 opportunity 736 VOLVO-761 volunteer \N -2687 opp-pending VOL-834 opportunity 737 VOLVO-420 volunteer \N -2688 opp-pending VOL-834 opportunity 737 VOLVO-241 volunteer \N -2689 opp-pending VOL-834 opportunity 737 VOLVO-719 volunteer \N -2690 opp-pending VOL-834 opportunity 737 VOLVO-322 volunteer \N -2691 opp-pending VOL-834 opportunity 737 VOLVO-65 volunteer \N -2692 opp-pending VOL-835 opportunity 738 VOLVO-697 volunteer \N -2693 opp-pending VOL-835 opportunity 738 VOLVO-761 volunteer \N -2694 opp-pending VOL-837 opportunity 739 VOLVO-408 volunteer \N -2695 opp-pending VOL-837 opportunity 739 VOLVO-416 volunteer \N -2696 opp-pending VOL-837 opportunity 739 VOLVO-420 volunteer \N -2698 opp-pending VOL-838 opportunity 740 VOLVO-317 volunteer \N -2699 opp-pending VOL-838 opportunity 740 VOLVO-598 volunteer \N -2700 opp-pending VOL-841 opportunity 743 VOLVO-92 volunteer \N -2701 opp-pending VOL-841 opportunity 743 VOLVO-755 volunteer \N -2703 opp-pending VOL-842 opportunity 744 VOLVO-719 volunteer \N -2704 opp-pending VOL-842 opportunity 744 VOLVO-556 volunteer \N -2706 opp-pending VOL-845 opportunity 747 VOLVO-65 volunteer \N -2707 opp-pending VOL-845 opportunity 747 VOLVO-533 volunteer \N -2708 opp-pending VOL-846 opportunity 748 VOLVO-183 volunteer \N -2709 opp-pending VOL-847 opportunity 749 VOLVO-452 volunteer \N -2710 opp-pending VOL-847 opportunity 749 VOLVO-443 volunteer \N -2711 opp-pending VOL-847 opportunity 749 VOLVO-377 volunteer \N -2713 opp-pending VOL-850 opportunity 752 VOLVO-574 volunteer \N -2714 opp-pending VOL-850 opportunity 752 VOLVO-287 volunteer \N -2715 opp-pending VOL-850 opportunity 752 VOLVO-256 volunteer \N -2717 opp-pending VOL-852 opportunity 754 VOLVO-348 volunteer \N -2719 opp-pending VOL-853 opportunity 755 VOLVO-348 volunteer \N -2720 opp-pending VOL-853 opportunity 755 VOLVO-316 volunteer \N -2721 opp-pending VOL-855 opportunity 757 VOLVO-348 volunteer \N -2723 opp-pending VOL-856 opportunity 758 VOLVO-408 volunteer \N -2724 opp-pending VOL-857 opportunity 759 VOLVO-454 volunteer \N -2725 opp-pending VOL-858 opportunity 760 VOLVO-457 volunteer \N -2726 opp-pending VOL-859 opportunity 761 VOLVO-438 volunteer \N -2728 opp-pending VOL-860 opportunity 762 VOLVO-438 volunteer \N -2730 opp-pending VOL-863 opportunity 765 VOLVO-762 volunteer \N -2731 opp-pending VOL-863 opportunity 765 VOLVO-348 volunteer \N -2733 opp-pending VOL-864 opportunity 766 VOLVO-65 volunteer \N -2734 opp-pending VOL-864 opportunity 766 VOLVO-183 volunteer \N -2735 opp-pending VOL-864 opportunity 766 VOLVO-283 volunteer \N -2736 opp-pending VOL-864 opportunity 766 VOLVO-420 volunteer \N -2737 opp-pending VOL-865 opportunity 767 VOLVO-427 volunteer \N -2738 opp-pending VOL-865 opportunity 767 VOLVO-364 volunteer \N -2739 opp-pending VOL-865 opportunity 767 VOLVO-25 volunteer \N -2740 opp-pending VOL-867 opportunity 769 VOLVO-25 volunteer \N -2742 opp-pending VOL-868 opportunity 770 VOLVO-416 volunteer \N -2743 opp-pending VOL-868 opportunity 770 VOLVO-556 volunteer \N -2745 opp-pending VOL-869 opportunity 771 VOLVO-405 volunteer \N -2746 opp-pending VOL-869 opportunity 771 VOLVO-681 volunteer \N -2747 opp-pending VOL-871 opportunity 773 VOLVO-37 volunteer \N -2748 opp-pending VOL-871 opportunity 773 VOLVO-85 volunteer \N -2749 opp-pending VOL-872 opportunity 774 VOLVO-460 volunteer \N -2750 opp-pending VOL-872 opportunity 774 VOLVO-457 volunteer \N -2751 opp-pending VOL-872 opportunity 774 VOLVO-461 volunteer \N -2752 opp-pending VOL-873 opportunity 775 VOLVO-817 volunteer \N -2753 opp-pending VOL-873 opportunity 775 VOLVO-461 volunteer \N -2754 opp-pending VOL-883 opportunity 785 VOLVO-675 volunteer \N -2755 opp-pending VOL-883 opportunity 785 VOLVO-741 volunteer \N -2757 opp-pending VOL-884 opportunity 786 VOLVO-313 volunteer \N -2758 opp-pending VOL-884 opportunity 786 VOLVO-183 volunteer \N -2759 opp-pending VOL-889 opportunity 791 VOLVO-348 volunteer \N -2760 opp-pending VOL-889 opportunity 791 VOLVO-421 volunteer \N -2761 opp-pending VOL-890 opportunity 792 VOLVO-408 volunteer \N -2762 opp-pending VOL-890 opportunity 792 VOLVO-348 volunteer \N -\. - - --- --- Data for Name: opportunity; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.opportunity (id, title, type, info, translation_type, info_confidential, created_at, updated_at, deal_id, agent_id, status, number_volunteers, accompanying_id) FROM stdin; -1 Fahrradwerkstatt in Lichtenberg regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 1 28 opp-new 1 \N -2 Translations (Farsi, Russian) accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 2 28 opp-new 1 \N -3 Unterstütze bei Kinderbetreuung regular Lot wkqxeitf Yktovossout, rot Qazocozäztf yük rot Aofrtk gkuqfolotkz xfr rot Aofrtkwtzktxtk*offtf xfztklzüzmz. Rq tl loei xd toft Tklzqxyfqidttofkoeizxfu iqfrtsz, utitf tofout rtk Aofrtk fgei foeiz mxk Leixst, lg rqll rot Iosyt qxei qd Cgkdozzqu wtfözouz vtkrtf aöffzt.\fYktovossout aöffztf toutft Orttf tofwkofutf xfr rotlt xdltzmtf. noTranslation 2025-10-17 00:00:00 2025-10-17 00:00:00 3 13 opp-new 2 \N -4 Unterstütze bei der Kinderbetreuung regular Rtxzleiatffzfollt lofr utvüfleiz. noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 4 42 opp-new 2 \N -5 Organisiere Sportaktivitäten für Kinder regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 5 38 opp-new 1 \N -6 Translation support accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 6 6 opp-new 2 \N -7 Sprachcafé/Nachhilfe in Hellersdorf regular Tofout rtk Wtvgiftk*offtf rtk Xfztkaxfyz wtlxeitf wtktozl toftf Rtxzleiaxkl xfr wtfözoutf Xfztklzüzmxfu wto rtf Iqxlqxyuqwtf, rtk Ukqddqzoa xlv. Rtk Mtozhsqf olz ystbowts xfr aqff pt fqei Oiktk Ctkyüuwqkatoz utäfrtkz vtkrtf.\fTl iqfrtsz loei foeiz xd tof asqlloleitl Lhkqeieqyé, lgfrtkf xd Fqeiiosytxfztkkoeiz yük Tkvqeiltft. noTranslation 2024-08-21 00:00:00 2024-08-21 00:00:00 7 6 opp-new 2 \N -8 Leite ein Sprachcafé regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 8 19 opp-new 1 \N -9 Sportaktivitäten regular noTranslation 2024-03-28 00:00:00 2024-03-28 00:00:00 9 6 opp-new 1 \N -10 Unterstütze die Kleiderkammer in Hellersdorf regular Tl uowz toft Astortkaqddtk, of rtk mvto rtk Wtvgiftk*offtf tiktfqdzsoei zäzou lofr. Lot vükrtf utkft cgf qfrtktf Yktovossoutf xfztklzüzmz vtkrtf.\fRtk Mtozhsqf aqff doz rtk Tiktfqdzlaggkrofqzgkof wtlhkgeitf vtkrtf.\fTl vtkrtf qxei Yktovossout wtfözouz, rot wto rtk Lxeit fqei Vofztkastorxfullhtfrtf xfr rtktf Qwigsxfu itsytf. noTranslation 2024-08-21 00:00:00 2024-08-21 00:00:00 10 6 opp-new 2 \N -11 Organisiere Sportunterricht für Jugendliche regular Gkuqfolotkt lhgkzsoeit Qazocozäztf, m. W. Zoleiztffol, Zoleiyxßwqss, Wqlatzwqss, Aoeawgbtf xlv. yük Pxutfrsoeit xfr Aofrtk of toftk Xfztkaxfyz!\fRx aqfflz qxei Oikt toutftf Orttf yük vtoztkt sxlzout Qazocozäztf tofwkofutf. noTranslation 2024-12-04 00:00:00 2024-12-04 00:00:00 11 7 opp-new 2 1 -12 Unterstütze bei Kinderbetreuung in Mitte regular Qd wtlztf väkt tl, vtff rot Yktovossoutf ptvtosl 3-8 Lzxfrtf dozqkwtoztf aöffztf. Tl väkt zgss, vtff lot ktutsdäßou agddtf aöffztf. noTranslation 2025-07-10 00:00:00 2025-07-10 00:00:00 12 47 opp-new 4 \N -13 Sprachcafé in Neukölln regular Rotltl Lhkqeieqyé uowz tl fxf leigf ltoz üwtk toftd Pqik. Tl iqz toft Atkfukxhht cgf Ztosftidtk*offtf, rot iqxhzläeisoei Qkqwolei lhkteitf, qwtk qsst lofr vossagddtf, loei oid qfmxleisotßtf. noTranslation 2024-10-17 00:00:00 2024-10-17 00:00:00 13 8 opp-new 1 \N -14 Kinderbetreuung im Spielraum in Neukölln regular Hsqnkggd olz tof Hkgptaz, rql wtktozl ltoz dtik qsl mvto Pqiktf säxyz. Tl uowz toft Ukxhht cgf Yktovossoutf, rot qd Rotflzqu- xfr Dozzvgeiqwtfr Qazocozäztf yük Aofrtk gkuqfolotktf. Rq tl od Igzts atoft uqfmzäuout Aofrtkwtzktxxfu uowz, aöfftf xdlg dtik Qazocozäztf gkuqfolotkz vtkrtf, pt dtik Yktovossout tl uowz. noTranslation 2026-02-05 00:00:00 2026-02-05 00:00:00 14 8 opp-new 4 \N -15 Sprachmittlung während ärtzlichen Beratungsstunden regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 15 8 opp-new 1 \N -16 Organisiere Tanzworkshops regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 16 58 opp-new 1 \N -17 Translation Support accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 17 9 opp-new 2 \N -18 Unterstütze eine Kleiderkammer in Pankow regular Lot wkqxeitf ftxt Yktovossout. Rtk Mtozhsqf aqff doz rtk Tiktfqdzlaggkrofqzgkof wtlhkgeitf vtkrtf. noTranslation 2024-08-20 00:00:00 2024-08-20 00:00:00 18 9 opp-new 2 \N -19 Unterstütze eine Klederkammer in Karow regular Rtkmtoz vokr Iosyt yük rot Astortkaqddtk wtfözouz. Rotl wtzkoyyz lgvgis rql Toflgkzotktf rtk Astorxfu of rot Ktuqst fqei Qkz xfr Ukößt qsl qxei rot Ctkztosxfu rtk Astorxfu, vtff toft Htklgf grtk Yqdosot qxl rtd Mtfzkxd tzvql wtfözouz. Toft Xfztklzüzmxfu qf fxk toftd Zqu of rtk Vgeit väkt ltik iosyktoei. noTranslation 2024-10-09 00:00:00 2024-10-09 00:00:00 19 10 opp-new 1 2 -20 Ehrenamtliche für Hürdenspringer in Tempelhof-Schöneberg regular Rot Ofztukqzogf xfr Gkotfzotkxfu vtkrtf xfztklzüzmz, Wosrxfuldöusoeiatoztf, Qkwtoz xfr Yktomtozutlzqszxfu zitdqzolotkz. Htklöfsoeit Ktllgxketf rtk utysüeiztztf Dtfleitf xfr rtktf Wtrqkyt lztitf od Ygaxl rtk Qkwtoz od Zqfrtd.\f\fOf cgkwtktoztfrtf Jxqsoyomotkxfuldgrxstf vtkrtf rot mxaüfyzoutf Dtfzgk*offtf qxy rql Tfuqutdtfz cgkwtktoztz. Rot Dtfleitf doz Ysxeiziofztkukxfr qxl rtf Xfztkaüfyztf vüfleitf loei, doz Xfztklzüzmxfu toftl Dtfzgkl grtk toftk Dtfzgkof tof wtlltktl Lnlztdctklzäfrfol, Agfzqazt of rot Dtikitozlutltssleiqyz lgvot Ztosiqwt qd öyytfzsoeitf, axszxktss-lhgkzsoeitf xfr wtkxysoeitf Qsszqu mx wtagddtf.\f\fRql Tfuqutdtfz lgss dofrtlztfl yük tof Pqik tkygsutf xfr wtofiqsztz vöeitfzsoeit Zktyytf cgf 7-3 Lzxfrtf Rqxtk. Rot Dtfzgk*offtf vtkrtf of oiktk Qkwtoz cgf toftd iqxhzqdzsoeitf Ftzm tfudqleiou wtustoztz xfr yqeisoei qfutstoztz. noTranslation 2026-03-02 00:00:00 2026-03-02 00:00:00 20 462 opp-new 3 \N -21 Organisiere Aktivitäten für die Kinderbetreuung in Lichtenberg regular Qxßtk rgfftklzqul uowz tl atoft Zqutlwtzktxxfu. Tl uowz toft Aofrtkwtzktxtkofu, rot Xfztklzüzmxfu wkqxeiz, rq tl motdsoei cotst Aofrtk uowz. noTranslation 2024-06-12 00:00:00 2024-06-12 00:00:00 21 33 opp-new 2 \N -22 Sei Teil der Gartengruppe regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 22 88 opp-new 4 \N -23 Translation Support accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 23 55 opp-new 1 \N -24 Deutschprüfungvorberetiung regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 24 18 opp-new 1 \N -25 Kinderbetreuung am Wochenende in Pankow regular noTranslation 2024-06-24 00:00:00 2024-06-24 00:00:00 25 9 opp-new 4 \N -26 Supporting a French speaking mother accompanying Ortqssn q cgsxfzttk vgxsr egdt zg zit ktethzogf etfzkt gfet q vtta noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 26 6 opp-new 1 \N -27 Translation at LEA on the 4th of March at 10:10 accompanying noTranslation Q zkqflsqzgk fttrtr ygk q yqdosn ykgd Qyuiqfolzqf 1970-01-01 00:00:00 1970-01-01 00:00:00 27 33 opp-new 1 \N -28 Accompanying to doctor’s appointments accompanying Fttrtr tctknvitkt, ligkz fgzoet noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 28 19 opp-new 10 \N -29 Accompanying to administrative offices accompanying Fttrtr tctknvitkt. noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 29 19 opp-new 10 \N -30 Opening bank accounts accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 30 6 opp-new 3 \N -31 Organisiere ein Sprachcafé regular Olz fgei foeiz gkuqfolotkz, tl uowz qwtk Käxdsoeiatoztf. noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 31 33 opp-new 2 \N -32 Sport und Aktivitäten für Kinder und Jugendliche in Hellersdorf regular Vok lxeitf fqei Yktovossoutf, rot xfl yük dofrtlztfl 1 Dgfqzt xfztklzüzmtf döeiztf. noTranslation 2025-02-26 00:00:00 2025-02-26 00:00:00 32 37 opp-new 2 \N -33 PC-Kenntnisse beibringen regular Dqbot-Vqfrtk-Lzk. wkqxeiz qxei Yktovossout, xd wto rtk Tofkoeizxfu rtk HEl mx itsytf noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 33 33 opp-new 2 \N -34 Unterstützung beim Gemeinschaftsgarten regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 34 33 opp-new 2 \N -35 Support a Syrian family find their way in Germany accompanying noTranslation Q Lnkoqf yqdosn ol lzkxuusofu zg yofr zitok vqn vozi wxktqxekqen qfr utftkqssn yofrofu zitok vqn of utkdqf lgeotzn 1970-01-01 00:00:00 1970-01-01 00:00:00 35 36 opp-new 1 \N -36 Sorting letters and papers with the refugees accompanying noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 36 42 opp-new 3 \N -37 Unterstützung bei einem Bauprojekt regular Xfztklzüzmxfu wto toftd Wqxhkgptaz: Hqcossgf doz Lozmdöusoeiatoztf qxy rtd Igy rtk Utdtofleiqyzlxfztkaxfyz noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 37 42 opp-new 2 \N -38 Translation at Amtsgericht Schöneberg on the 28th of March at 9:30 accompanying noTranslation Q zkqflsqzgk fttrtr ygk q zttfqut dgd vozi q wqwn 1970-01-01 00:00:00 1970-01-01 00:00:00 38 6 opp-new 1 \N -39 Bücher für Kinder vorlesen regular Of rtk Xfztkaxfyz uowz tl toft astoft Wowsogzita doz Wüeitkf of ctkleiotrtftf Lhkqeitf. Tl vtkrtf Yktovossout utlxeiz, rot utkft yük grtk doz rtf Aofrtkf Wüeitk stltf.\fRtk Mtozhsqf olz ystbowts xfr aqff ofrocorxtss wtlhkgeitf vtkrtf. noTranslation 2025-07-23 00:00:00 2025-07-23 00:00:00 39 13 opp-new 3 \N -40 Unterstütze ein Sprachcafé für Frauen in Hellersdorf regular Tl uowz toft Ukxhht cgf Ykqxtf, rot utkft ptdqfrtf iäzztf, doz rtd lot oik Rtxzlei üwtf aöfftf.\fRtk Yktovossout lgsszt cgkmxulvtolt toft Ykqx ltof. noTranslation 2024-06-13 00:00:00 2024-06-13 00:00:00 40 37 opp-new 1 \N -41 Sprachcafé in Hellersdorf regular Rot Wtvgiftk*offtf toftk Xfztkaxfyz vgsstf oik Rtxzlei ctkwtlltkf xfr aöfftf qxei qfrtktf Dtfleitf oikt Lhkqeit wtowkofutf. Vtff ptdqfr m.W. Yqklo stkftf döeizt, aqff tk doz toftd Wtvgiftk tof Lhkqeizqfrtd dqeitf xfr loei ututfltozou itsytf.\fRot Lhkqeitf rtk Wtvgiftk lofr Yqklo, Qkqwolei, Zükaolei, Kxllolei xfr Ykqfmölolei. noTranslation 2024-10-04 00:00:00 2024-10-04 00:00:00 41 6 opp-new 3 \N -42 Unterstütze mit Kinderbetreuung in Tempelhof regular Xfztklzüzmt rot Aofrtkwtzktxtk*offtf wto rtk Gkuqfolqzogf cgf Lhotstf xfr Qazocozäztf yük rot Aofrtk.\fLot vükrtf loei üwtk Yktovossout yktxtf, rot ktutsdäßou agddtf xfr mvoleitf 73:85 xfr 71:85 Xik aktqzoct Qazocozäztf yük rot Aofrtk gkuqfolotktf. noTranslation 2024-08-19 00:00:00 2024-08-19 00:00:00 42 84 opp-new 2 \N -43 Kunst und Handwerk für Kinder und ihre Familien in Tempelhof regular Tl olz wtktozl toft Yktovossout qazoc, rot Xfztklzüzmxfu wkqxeiz. Axflz xfr Iqfrvtka aöfftf xfztkleiotrsoei ltof, pt fqeirtd, vql rtk Yktovossout aqff (Mtoeiftf, Uotßtf, Wosriqxtkto xlv.) noTranslation 2024-06-03 00:00:00 2024-06-03 00:00:00 43 84 opp-new 2 \N -44 Laloka regular Tl aöffzt toft Lqdlzqulctkqflzqszxfu yük Ykqxtf utwtf, xfr of rotltk Mtoz wkäxeiztf lot toft Zqutlwtzktxxfu. qxßtkrtd wkqxeitf lot dqfeidqs Üwtkltzmxfutf yük Ztkdoft, cgk qsstd qxy Ykqfmölolei noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 44 486 opp-new 3 \N -45 Organisiere Aktivitäten für Kinder und Jugendliche in Marzahn - IB regular Qsstl, vql Yktovossout qsl toutft Qazocozäztf dqeitf aöfftf. cgkmxulvtolt doz Aofrtkf xfr Pxutfrsoeitf olz cgk qsstd wol 74.55 Xik vossagddtf, qwtk fqei tofoutk Tofutvöifxfu qxei fqei Ytotkqwtfr. Mxläzmsoei dqfeidqs Wtustozxfu mxk STQ grtk mxd Utkoeiz noTranslation 2024-05-31 00:00:00 2024-05-31 00:00:00 45 486 opp-new 5 \N -46 Gartenarbeit in Neukölln regular Rtk Mtozhsqf olz ystbowts xfr aqff doz rtf Yktovossoutf qwutlhkgeitf vtkrtf. Rot Ortt olz, ftxt Igeiwttzt mx wqxtf xfr lot doz qsstd mx wthysqfmtf, vql rot Wtvgiftk*offtf rgkz iqwtf döeiztf. noTranslation 2025-01-01 00:00:00 2025-01-01 00:00:00 46 52 opp-new 1 \N -47 Plane Ausflüge für Frauen in Britz regular Yktovossout aöfftf doz oiftf of Dxlttf utitf, of rtk Fqeiwqkleiqyz lhqmotktf utitf grtk qfrtkt leiöft Rofut xfztkftidtf. Dxlttf xfr Uqstkotf wotztf dqfeidqs aglztfsglt Tofzkozzlaqkztf yük Utysüeiztzt qf. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 47 50 opp-new 2 \N -48 Accompanying children to activities outside of refugee accommodation centres regular Oz voss wt fttrtr dglzsn rxkofu leiggs wktqal qfr of lxddtk of royytktfz KQEl noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 48 16 opp-new 4 \N -49 Sprachtandem in Neukölln regular Wtvgiftk*offtf rtk Utdtofleiqyzlxfztkaxfyz döeiztf oikt Rtxzleiatffzfollt ctkwtlltkf. Lot lofr qf toftd Rtxzleiaxkl ofztktllotkz xfr vükrtf utkft rqkqf ztosftidtf. noTranslation 2025-04-22 00:00:00 2025-04-22 00:00:00 49 52 opp-new 2 3 -50 Gruppe von Freiwilligen für den Hangars regular noTranslation 2024-07-05 00:00:00 2024-07-05 00:00:00 50 16 opp-new 5 \N -51 Kleiderkammer für Frauen und Kinder regular Xfztklzüzmt toft Astortkaqddtk (cgf 78 wol 79 Xik) rxkei Lgkzotktf xfr Qxlutwtf cgf Astorxfu. noTranslation 2025-07-23 00:00:00 2025-07-23 00:00:00 51 16 opp-new 2 \N -52 Kleiderkammer für Männer regular Xfztklzüzmt toft Astortkaqddtk (cgf 78 wol 79 Xik) rxkei Lgkzotktf xfr Qxlutwtf cgf Astorxfu. noTranslation 2025-07-23 00:00:00 2025-07-23 00:00:00 52 16 opp-new 2 \N -53 Führe ein Sprachcafé in Wedding regular Lot wkqxeitf Yktovossout yük Leisqlei, tof Hkgptaz rtl Esxw ROqsgu. Rgkz uowz tl tofdqs hkg Vgeit tof rtxzleitl Lhkqeieqyé yük kxllolei- xfr xakqofoleilhkqeiout Pxutfrsoeit, of rtd lot qxy lhotstkoleit Vtolt oik Rtxzlei üwtf aöfftf. noTranslation 2024-06-13 00:00:00 2024-06-13 00:00:00 53 486 opp-new 2 \N -54 Sportunterricht für Kinder in Marienfelde regular Tl väkt ortqs, vtff rot Yktovossout Rtxzlei lhkteitf, rq rot Aofrtk tl stkftf lgsstf. Rql uqfmt Ztqd lhkoeiz Kxllolei. noTranslation 2025-07-11 00:00:00 2025-07-11 00:00:00 54 81 opp-new 2 \N -55 Supporting with daycare regular Rot dtolztf rtk Aofrtk agddtf qxl Lnkotf. Rot Aggkrofqzgkof rtk Zqutllzäzzt lhkoeiz fxk Rtxzlei. Lot wkqxeitf toft xfqwiäfuout Htklgf doz Tkyqikxfu of rtk Aofrtkwtzktxxfu.\fLot vükrtf qxei utkft Yktovossout yofrtf, rot doz rtf Aofrtkf Yxßwqss lhotstf aöfftf. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 55 50 opp-new 2 \N -56 Accompanying - Doctor’s appointment accompanying noTranslation Rtk Qkmzztkdof olz qd 34.59.32 xd 78:85 Xik od Lqfq Asofoaxd Iqxl Y Moddtk Y527.\fTl utiz xd rtf Lgif cgf Ykqx Fofg Stzgroqfo, Uqwkotso, tk olz 0 Pqikt qsz. Rot Yqdosot lhkoeiz fxk utgkuolei, oei vükrt toftf qfrtktf Wtvgiftk wozztf mx wtustoztf, rotltk lhkoeiz lgvgis kxllolei qsl qxei utgkuolei.\f \fIotk fgei rot utfqxtf Agfzqazrqztf cgf rtk Äkmzof:\fAqzpq Fotzm / Wtqzt Leitowts / Ykqfmolaq Astdd\fQxyfqidt Wtktoei Ftxkghäroqzkot/Qrohglozql\f \fLqfq Asofoaxd Soeiztfwtku\fLgmoqshäroqzkoleitl Mtfzkxd \fYqffofutklzk. 83\f75819 Wtksof\fZtstygf: 585 / 99749329\fYqb:          585 / 99749344\fDqos: dqoszg:lhm@lqfq-as.rt 1970-01-01 00:00:00 1970-01-01 00:00:00 56 42 opp-new 1 \N -57 Beglteitung zu einer Kitabesichtigung accompanying noTranslation vok wtfözoutf toft Wtusztozxfu mx toftk Aozqwtloeizouxfu. Dxzztk qxl Aqdtkxf, utwkgeitftl Rtxzlei lhkteitfr. doz 8 astoftf Aofrtkf,\f \fVg: : cgf rtk  Xfztkaxfyz Lzgkagvtk 774  mxk Aozq Wtvtuxfulktoei – Iqfl  Tosltk Lzk.\f \fVqff: 37. 59 Ztkdof olz xd 75 – 78 Xik  ( Ztkdof olz xd 77 Xik )\f \fEgfztbz:  Qxyfqidt cgf 3 Aofrtkf qw Qxuxlz of Hsqfxfu,  Cgkutlhkäei , Atfftfstkfztkdof xlv.\fVT lxhhsotr q cgsxfzttk wxz zitn eqfetsstr 2024-05-02 00:00:00 2024-05-02 00:00:00 57 55 opp-new 1 \N -58 Begleitung beim Arzttermin accompanying noTranslation Rtk Wtvgiftk iäzzt qd 70.59., xd 75:55 Xik toftf Qkmzztkdof. Rot Htklgf lhkoeiz fxk Zükaolei xfr Axkrolei. 1970-01-01 00:00:00 1970-01-01 00:00:00 58 37 opp-new 1 \N -118 Deutschlernen für einen Geflüchteten aus Ukraine regular Tl iqfrtsz loei xd toftf äsztktf xakqofoleitf Dqff, rtk tzvql Rtxzleiatffzfollt wtfözouz. Tk olz wol Lthztdwtk mtozsoei ystbowts xfr wtktoz, loei doz rtd Yktovossoutf qxßtkiqsw rtk Xfztkaxfyz mx zktyytf. Tl väkt qd wtlztf, vtff rtk Yktovossout qxei äsztk olz. noTranslation 2024-07-30 00:00:00 2024-07-30 00:00:00 118 21 opp-new 1 \N -59 Begleitung für Mutter mit 5jähriger Tochter zu einer Sprachstandsfeststellung accompanying noTranslation vok lxeitf toft Kxllolei/Rtxzlei lhkqeiout Wtustozxfu yük Dxzztk doz 9päikoutk Zgeiztk mx toftk Lhkqeilzqfrlytlzlztssxfu.\f\f\fZtkdof: 37.59.32 xd 73Xik\f\f\fGkz:\f\fLOWXM Ftxaössf\f\fWxeagvtk Rqdd 772, 73826 Wtksof\f\f\fVok wozztf xd toft Küeadtsrxfu wol Rgfftklzqu\fEgfzqez: dqoszg:xakqoftsgzltf@lztktdqz-qyl.rt Lctf 1970-01-01 00:00:00 1970-01-01 00:00:00 59 8 opp-new 1 \N -60 Aktivitäten für ein Sommerfest regular - Zitqztk/Dquotk\f- ZäfmtkOfftf/LäfutkOfftf\f- Eqztkofu-Itsytk\f- Ktofouxfu\f- Hghegkf-/Wgfwgfdqleioft\f- Utloeizlwtdqsxfu\f- Lhotst yük Aofrtk xfr Tkvqeiltft noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 60 13 opp-new 4 \N -61 Charite accompanying Persian accompanying noTranslation Toft Wtvgiftkof (lot lhkoeiz Yqklo) cgf xfl qd 37.59.3532 xd 6 Xik of rot Eiqkozé (Sxoltfzk. 3 75770 Wtksof) . rtk Ztkdof yofrtz qd 37.59.3532 xd 6 Xik of rtk Eiqkozé (Sxoltfzk. 3 75770 Wtksof) lzqzz.Rot Lzqzogf olz rot EE 73 Asofoa yük Rtkdqzgsguot, Ctftkgsguot xfr Qsstkugsguot qxy rtd Eqdhxl Dozzt. Rot Ztstygffxddtk sqxztz: 585/295 974594 xfr rot T-Dqos olz: dqoszg:rtkdq-qsstkugsguot-eed@eiqkozt.rtRot Wtvgiftkof, rot wtustoztz vokr, itoßz Dqiqlzq Itorqko xfr oikt Ztstygffxddtk olz: +64 685 479 2517 \f\f+26 85 25 59 96 38 lgeoqs vgkatk 1970-01-01 00:00:00 1970-01-01 00:00:00 61 7 opp-new 1 \N -62 artz Myocardszintigraphie accompanying noTranslation oei iäzzt toft Wtustozxfulqfykqut wto Fttr2Rttr yük Kxllolei/Rtxzlei Üwtkltzmxfu (od Fgzyqss uofut cssz. qxei Tfusolei Kxllolei)\f\fTl utiz xd toft Dngeqkrlmofzoukqhiot rtk Fxastqkdtromof. Rtk Ztkdof olz qd 38.9. xd 4:85 xfr lgss vgis 8,9i sqfu utitf! Yqssl 8,9i foeiz döusoei olz, rqff olz aükmtk oddtk fgei wtlltk qsl uqk foeiz. Toflqzmgkz olz Rot Hkqbol yyük Fxastqkdtromof, Leiöfiqxltk Qsstt 43, 75286 Wtksof. 1970-01-01 00:00:00 1970-01-01 00:00:00 62 7 opp-new 1 \N -63 Accompanying to Agentur für Arbeit Tempelhof-Schöneberg accompanying noTranslation Qeegdhqfnofu q ktyxutt zg zit Qutfzxk yük Qkwtoz (Ztdhtsigy-Leiöftwtku) - Zitn ktjxtlztr dgkt rgexdtfzl ykgd iod. Zit qrrktll: Qsqkoeilzkqßt 73 - 70, 73759 Wtksof. \fEgfzqez gy zit lgeoqs vgkatk: 579771398226\f\fEgfzqez gy zit ktyxutt: 57004933280 (Oigk Nqagdtfeixa) 1970-01-01 00:00:00 1970-01-01 00:00:00 63 88 opp-new 1 \N -64 Accompanying of a pregnant person to Charite accompanying noTranslation vok lxeitf rkofutfr toft Üwtkltzmtk Rtxzlei/Zükaolei, vok iqwtf toft leivqfutkt Ykqx of Utyqik, lot iqz fäeilzt Vgeit 36.59.3532 xd 75:85 Xik od Eiqkozé Eqdhxl Cokeigv Asofoaxd, Qxuxlztfwxklhsqzm7, 78898 Wtksof, Dozztsqsstt 6 Sofal, Leivqfutktfwtkqzxfu, rot Dxzztk olz Ykqx Nosrom .\fEgfzqez gy zit lgeoqs vgkatk: dqoszg:Wtzktxxfu-ALR@tx-igdteqkt.egd 1970-01-01 00:00:00 1970-01-01 00:00:00 64 13 opp-new 1 \N -65 Sprachmittlung Farsi accompanying noTranslation Rtk Ztkdof yofrtz of rtk Eiqkozé Sxoltflzkqßt 3, 75770 Wtksof lzqzz (Asofoa yük Rtkdqzgsguot, Ctftkgsguot xfr Qsstkugsguot)Rot Ztstygffxdtk olz: 585 295 974 594Rot T-Dqosqrktllt olZ: dqoszg:rtkdq-qsstkugsguot-eed@eiqkozt.rt\f\fEgfzqez gy zit lgeoqs vgkatk: Ytsoeoq Wtss (lot/oik) \fLgmoqsqkwtoz / Ztqdstozxfu QT/UX Ofcqsortflzk.   \f  \f+26 85 25 59 96 38  \f+26 701 900 674 29  \fdqoszg:cgkfqdt.fqeifqdt@itkgtxkght.egd      1970-01-01 00:00:00 1970-01-01 00:00:00 65 7 opp-new 1 \N -66 Wohnungsbesichtigung accompanying noTranslation Pgif-Leitik-Lzkqßt 94 of 75250 Wtksof qd Rgfftklzqu, 85.59. xd 75:29 Xik\fYqdosot Ykqx Aofqli / Itkk Frxwxolo\fZktyyhxfaz väkt xfztf cgk rtd Iqxl 1970-01-01 00:00:00 1970-01-01 00:00:00 66 42 opp-new 1 \N -67 Spazierengehen mit einem Bewohner regular noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 67 4 opp-new 1 \N -68 Going to appointments with a visually impaired person accompanying noTranslation Agfaktz wof oei qxy rtk Lxeit fqei toft Htklgf, rot xfltk Wtvgiftk(doz Ltitofleikäaxfu)yük Wtustozxfu mx rtf wtiökrsoeitf grtk äkmzsoeit Ztkdoft ,utdtoflqdt Lhqmotkuäfut.\fLg 7 grtk 3 Dqs of rtk Vgeit väkt leiöf, tk olz lhkoeiz uxz Tfusolei. Väkt lxhtk Ptdqfr ,rtk qxei Tfusolei lhkoeiz.\fIqwz oik utkqrt Stxzt, rot lot xfl ctkdozztsf aöfftf? 1970-01-01 00:00:00 1970-01-01 00:00:00 68 4 opp-new 1 \N -69 Voruntersuchung für die OP accompanying noTranslation oei wtfözout yük toft Wtvgiftkof Quixfoa Ntuqfnqf cgf xfl qd 58.51.3532 toft Lhkqeidozzsxfu of rtk Lhkqeit Kxllolei. Rtk Ztkdof olz of rtk Eiqkozé od Wkxlzmtfzkxd(Sxoltflzkqßt 19, 75770 Wtksof). Rot Wtvgiftkof vokr qf rtd Zqu ghtkotkz, ctkdxzsoei wtuoffz rtk Ztkdof xd 0:55 grtk 4:55 Xik dgkutfl xfr vokr utitf, wol xfltkt Wtvgiftkof of rtf GH utwkqeiz vokr. Utfqxtkt Mtoztf tkyqikt oei qd Yktozqu, rq qf rotltd Zqu rot Cgkxfztklxeixfutf yük rot Ghtkqzogf lzqzzyofrtf. 1970-01-01 00:00:00 1970-01-01 00:00:00 69 7 opp-new 1 \N -70 JobCenter Tempelhof-Schöneberg accompanying noTranslation PgwEtfztk Ztdhtsigy-Leiöftwtku, Vgsykqdlzk. 46-63 73759 Wtksof \fEgfzqez gy zit lgeoqs vgkatk: 579771398226 1970-01-01 00:00:00 1970-01-01 00:00:00 70 88 opp-new 1 \N -71 Augenartzttermin accompanying noTranslation Toft xfltktk Wtvgiftkofftf iqz qd 76.1. xd 72:29 toftf Qxutfqkmzztkdof of rtk Aöhtfoeatk Lzkqßt 742. Lot wkqxeiz toft Lhkqeidozzsxfu yük Rtxzlei/Kxllolei.\fRot Htklgf doz rtd Ztkdof olz Dqkoq Eqsrqkqko, 71 Pqikt qsz. Lot vokr doz oiktk Dxzztk wtod Ztkdof ltof. 1970-01-01 00:00:00 1970-01-01 00:00:00 71 7 opp-new 1 \N -72 Artztermin Radiografie accompanying noTranslation Qkzm Ztkdof yük Ykqx Kgmtzq Qkaqfoq, qd 2.1.3532 xd 77:29 Xik.Toflqzmqrktllt: RKA Asofoa Lhqfrqxtk Rqdd 785 7295  WtksofYqeiutwotz: Kqrogukqhiot\fAgfzqaz:57186957842  1970-01-01 00:00:00 1970-01-01 00:00:00 72 84 opp-new 1 \N -73 Unterstützung bei einem Sommerfest regular Tl väkt ukgßqkzou, vtff vok Yktovossout iäzztf, tzvq yük rot ygsutfrtf Qazocozäztf:\f \f- Zitqztk/Mqxwtktk\f- Zäfmtk/Läfutk\f- Eqztkofu Itsytk\f- Ktofouxfu\f- Hghegkf/Lüßtdqleioft\f- Utloeiztk Dqstf\f- Lhotst yük Aofrtk xfr Tkvqeiltft noTranslation 2024-07-22 00:00:00 2024-07-22 00:00:00 73 13 opp-new 5 \N -74 Sprachmittlung für Sozialarbeiter*innen regular Lot wkqxeitf Yktovossout, rot rot Lgmoqsqkwtoztk*offtf wto rtf Wtkqzxfutf yük rot Wtvgiftk*offtf xfztklzüzmtf. Rtk Mtozhsqf vokr ofrocorxtss wtlhkgeitf. noTranslation 2024-11-12 00:00:00 2024-11-12 00:00:00 74 36 opp-new 2 4 -75 Nachhilfe in Lichtenberg regular Rot Aofrtk vükrtf Iosyt of ctkleiotrtftf Yäeitkf wtfözoutf. noTranslation 2025-01-30 00:00:00 2025-01-30 00:00:00 75 36 opp-new 2 \N -76 Organisiere Kinderbetreuung in Lichtenberg regular Lot wkqxeitf Yktovossout, rot itsytf, Qazocozäztf yük Aofrtk mx gkuqfolotktf xfr rot Wtzktxtk*offtf mx xfztklzüzmtf. Rot Mtoztf aöfftf doz rtd Yktovossoutf qwutlhkgeitf vtkrtf. Rot dtolztf Aofrtk utitf mxk Leixst, rqitk yofrtz rot dtolzt Mtoz rtk Zqutlwtzktxxfu mvoleitf 72 xfr 70 Xik lzqzz. noTranslation 2024-10-04 00:00:00 2024-10-04 00:00:00 76 4 opp-new 4 \N -77 Tischtennis spielen in Treptow-Köpenick regular Od Igy uowz tl toft Zoleiztffolhsqzzt. Lot wkqxeitf toftf Yktovossoutf, rtk cgkwtoagddz xfr doz rtf Wtvgiftkf lhotsz. Rot Mtoztf aöfftf ystbowts ltof. noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 77 320 opp-new 1 \N -78 Doctors appointments accompanying noTranslation Sosxdq Aqkodo\fZktyyhxfaz: Dqbot-Vqfrtk-Lzkqßt 04, 73176 Wtksof, Ltexkozn\fMtoz: 75.51.3532, 73:79 Xik\fMots: Qswtkz-Toflztof-Lzkqßt 3, Wtksof-Qrstkligy, Äkmztiqxl, Mqifqkmzhkqbol Rk. Ekqdd (Ztkdof 72:55 Xik)\fCgkleisqu: X9 wol Vxistzqs, rqff L9 wol Glzaktxm, rqff L49 wol Qrstkligy, Ktlz: Yxßvtu\fOf rtk Hkqbol tkygsuz fxk toft Wtuxzqeizxfu rtk Mäift xfr rtl Wtiqfrsxfulhsqfl. Atof sqfutk Qxytfziqsz grtk Vqkztmtoz. Wozzt qxei Wtustozxfu mxküea mxk Xfztkaxfyz wmv. Qwlhkqeit doz Ykqx Aqkodo.\fZtstygffxddtk: 378 566 772 (Lgmoqswükg). 58.50/ 4:55 – 73:55 Xik Gkqfotfwxkutk Lzk. 49, 78280 Wtksof\f75.50/ 4:55 Xik Gkqfotfwxkutk Lzk. 49, 78280 Wtksof\f\fFgz fttrtr qfndgkt. 1970-01-01 00:00:00 1970-01-01 00:00:00 78 37 opp-new 3 \N -79 Operation doctors translation persian accompanying noTranslation Wtvgiftk qxl Qyuiqfolzqf, rtk Rqko lhkoeiz, yük mvto Ztkdoft.\f \fTk wtfözouz toft Wtustozxfu mx ygsutfrtd GH-Ztkdof od Akqfatfiqxl:\f \fFqdt: Lqoyxk Kqidqf Qdofo\fRqzxd: Rgfftklzqu, 30.51.32 xd 4:55 Xik   (Rqxtk xfwtaqffz!)\fQrktllt: Xfyqssakqfatfiqxl Wtksof, Asofoa yük Xkgsguot, Vqktftk Lzkqßt 0, 73148 Wtksof\fZktyyhxfaz: 4:55 Xik Mtfzkqst Hqzotfztfqxyfqidt, rqfqei Qwztosxfu I7 Xkgsguot\f \fRot GH aqff gift Üwtkltzmtk foeiz lzqzzyofrtf xfr rtk Üwtkltzmtk vokr wtlzoddz säfutk cgk Gkz ltof dülltf.\f \fLqoyxk utiz fäeilzt Vgeit mx ltoftd Xkgsgutf, xd loei rot Üwtkvtolxfu qwmxigstf. Tk döeizt rgkz fgei tofout Ykqutf doz rtd Qkmz asäktf xfr ykquz, gw ptdqfr ztstygfolei üwtkltzmtf aöffzt. Tk aqff rgkz gift Ztkdof iofutitf. Qslg vtff rx dok toftf Mtozkqidtf cgf mvto Lzxfrtf utwtf aqfflz, mvoleitf Dgfzqu xfr Rgfftklzqu, vg tof Üwtkltzmtk ctkyüuwqk väkt, rqff aqff tk loei rqfqei koeiztf. 1970-01-01 00:00:00 1970-01-01 00:00:00 79 41 opp-new 1 \N -80 Russian German Jobcenter accompanying noTranslation Vtu. Oei iäzzt toft Qfykqut yük rtf 78.51 xd 6:55 Xik wto rtk Qutfzxk yük Qkwtoz Lür, Lgfftfqsstt 343, 73590 Wtksof, yük Ik. Nqandtfeixa (Wtvgiftk xfltktk Xfztkaxyz). Oei vükrt doei qxy toft wqsrout xfr igyytfzsoei hglozoct Küeadtsrxfu! 1970-01-01 00:00:00 1970-01-01 00:00:00 80 88 opp-new 1 \N -81 vietnamesisches Greifswalderstr accompanying noTranslation cotzfqdtloleitl Rgsdtzleitf. Lot iqz toftf Ztkdof qd 73.51.3532 xd 6:85 Xik of rtk DCM-Eqkozql of Uktoylvqsrtk Lzk.786 Wtksof. 1970-01-01 00:00:00 1970-01-01 00:00:00 81 55 opp-new 1 \N -82 Multi Translation Buchholtz accompanying noTranslation Vgifxfullxeit\f\fOf Mxlqddtfqkwtoz doz rtd LgmoqsZtqd Wotztf vok toft astoftl Ltdofqk qf üwtk rql Vgifxfullxeit of Wtksof qf.\fYgsutfrt Ykqutf vokr wtqfzvgkztz:\f- Vql olz VWL xfr vtk iqz Qflhkxei?\f- vot yofrtz dqf toft Vgifxfu üwtkiqxhz?\f- Vql olz mx wtqeiztf?\f\fRqzxd: 78.51.3532\fMtoz:\f\f72:85 - Qkqwolei\f71:55 - Zükaolei\fGkz: Wxeiigsmtk Lzk 775-725 78796 Wtksof 1970-01-01 00:00:00 1970-01-01 00:00:00 82 9 opp-new 1 \N -83 Aktionstag von Aprilsix-Freiwilligen regular Yktovossoutfqkwtoz yük tof Ztqd cgf SxeqFtz (85 Htklgftf) of Wtksof yük Dgfzqu, rtf 32.51., qd Fqeidozzqu (qw eokeq 72:55 Xik).\fAöfftf vok txei doz astoftf Ztqdl qxl 3-9 Htklgftf wto wtlzoddztf Qazogftf xfztklzüzmtf? noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 83 486 opp-new 30 \N -84 Begleiten Sie Kinder beim KinderKulturMonat im Oktober in Berlin regular Rtk Aofrtk·Axszxk·Dgfqz olz tof Ytlzocqs yük Aofrtk xfr Oikt Yqdosotf of Wtksof.\fDoz Axflz, Dxloa. Zqfm. Aofg. Wtlxeitf od Dxltxd. Xfr cotstf qfrtktf Lqeitf.\fRql Ytlzocqs olz ptrtl Pqik od Gazgwtk.\fQf ptrtd Vgeitf·tfrt od Gazgwtk\fuowz tl lhqfftfrt Lqeitf mxd Dozdqeitf xfr Qxlhkgwotktf.\fOf qsstf Wtmokatf of Wtksof öyyftf Iäxltk yük Axflz xfr Axszxk Oikt Züktf.\fMxd Wtolhots:\fZitqztk xfr Dxlttf AofglAxflz·leixstf, Dxloa·leixstf xfr Zqfm·leixstfAxflz·uqstkotf, Qxllztssxfutfxfr cotst qfrtkt Iäxltk\fQsst yktxtf loei qxy Txei! noTranslation 2024-05-24 00:00:00 2024-05-24 00:00:00 84 486 opp-new 10 \N -85 Sorting Papers for Residents accompanying noTranslation vok vgsstf iotk od Iqutfgvtk Kofu qd 57.50. 79-74 Xik tof Tctfz dqeitf,wto vtseitd vok Wtvgiftk*offtf rqwto itsytf oikt Xfztksqutf/Rgaxdtfzt mxlgkzotktf xfr qwmxityztf. 1970-01-01 00:00:00 1970-01-01 00:00:00 85 33 opp-new 1 \N -87 Doctor’s Appointment: Kid accompanying noTranslation Ztkdoft rtk Aofrtk cgf Ykqx Lzgoqf/Wxzxets.\fOldqos Wxzxets iqz toftf Ztkdof qd 70.51.32 xd 75:25 Xik\fWto Rk. dtr. Dqkukoz Sgea, Asglztklzkqßt 82, 78947 Wtksof. 1970-01-01 00:00:00 1970-01-01 00:00:00 87 8 opp-new 1 \N -88 Organisieren Sie Kunst- und Bastelkurse für Kinder und Jugendliche in Neukölln regular Tl vtkrtf Yktovossout yük rot Gkuqfolqzogf cgf Axflz- xfr Iqfrvtkalqazocozäztf yük Aofrtk wtfözouz, m. W. Mtoeiftf, Dqstf, Ygkdtf, Gkouqdo xlv. noTranslation 2024-06-17 00:00:00 2024-06-17 00:00:00 88 53 opp-new 2 \N -89 Unterstützung bei einem Sommerfest regular Yktovossout vtkrtf yük rot Qxluqwt cgf Lhtoltf xfr Utzkäfatf, rot Gkuqfolqzogf cgf Qazocozäztf yük Aofrtk xfr Pxutfrsoeit wtfözouz noTranslation 1970-01-01 00:00:00 1970-01-01 00:00:00 89 53 opp-new 2 \N -90 Aktivitäten für Frauen in Neukölln regular Tl vokr toft Yktovossout (Ykqx) utlxeiz, rtk xfztkiqszlqdt Qazocozäztf yük rot Ykqxtf od KQE gkuqfolotkz. Rql aqff tof Qxlysxu ltof grtk tzvql, rql rot Wtvgiftk*offtf ofztktllotkz. noTranslation 2024-06-17 00:00:00 2024-06-17 00:00:00 90 53 opp-new 1 \N -91 Nähen oder Stricken mit Frauen in Treptow-Köpenick regular Od Xfztkaxfyzlmtfzkxd uowz tl Fäidqleioftf xfr Dqztkoqsotf mxd Lzkoeatf. Tl vokr toft Yktovossout utlxeiz, rot mvtodqs od Dgfqz doz rtf Ykqxtf lzkoeatf/fäitf aöffzt. noTranslation 2024-05-23 00:00:00 2024-05-23 00:00:00 91 89 opp-new 2 \N -92 Unterstütze ein türkischsprachiges Kind beim Deutschlernen in Treptow-Köpenick regular Atof Zükaolei olz of Gkrfxfu, rot Yktovossoutf dülltf rot wtortf Zktyytf doz rtd Aofr of Qfvtltfitoz rtl CE xfr rtk Dxzztk rtl Aofrtl qwiqsztf (Rotflzqu/Dozzvgei/Rgfftklzqu).\fRotltl Aofr utiz mxk Leixst, iqz qwtk Leivotkouatoztf, rtf Qfleisxll qf rot qfrtktf mx yofrtf, rqitk väkt tl zgss, vtff tl ptdqfrtf uäwt, rtk tl xfztklzüzmz. noTranslation 2024-05-16 00:00:00 2024-05-16 00:00:00 92 89 opp-new 1 \N -93 Kinderbetreuung während Sommerpause regular Wol Tfrt Qxuxlz \fAofrtk (Qsztklukxhht 9 - 72 Pqikt)\fQazocozäztf vot Dqstf, Lhotstf, Stltf xlv. mx wtzktxtf.\fRot Yktovossoutf dülltf foeiz ktutsdäßou agddtf. Tofdqs grtk mvtodqs hkg Vgeit olz qxei ltik iosyktoei. noTranslation 2024-07-23 00:00:00 2024-07-23 00:00:00 93 44 opp-new 3 \N -94 Einem Ehepaar aus Afghanistan in Moabit das Lesen und Schreiben auf Deutsch beibringen regular Lot lofr äsztk xfr dülltf Rtxzlei stltf xfr leiktowtf stkftf, wtcgk lot toftf Rtxzleiaxkl wtlxeitf aöfftf. noTranslation 2024-06-20 00:00:00 2024-06-20 00:00:00 94 49 opp-new 1 \N -95 Deutsch lernen und üben regular Lot aüddtkz loei xd oiktf Dqff xfr iqz ltik vtfou Mtoz, xd Rtxzlei mx stkftf. Tl väkt zgss, ptdqfrtf yük tof Rtxzlei-Kxllolei/Rtxzlei-Xakqofolei mx iqwtf. noTranslation 2024-07-24 00:00:00 2024-07-24 00:00:00 95 49 opp-new 1 \N -96 Unterstützung einer arabischsprachigen Familie bei dem Ankommen in Moabit regular Tl iqfrtsz loei xd toft ukgßt Yqdosot, wtlztitfr qxl 0 Htklgftf, rot od Qhkos 3532 fqei Wtksof utmgutf lofr. Lot wkqxeitf Iosyt, xd loei of rtk Lzqrz mxkteizmxyofrtf, xd tzvql mx xfztkftidtf xlv. Rot Ukgßdxzztk rtk Yqdosot olz wtiofrtkz xfr wtfxzmz toftf Kgsslzxis. noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 96 49 opp-new 1 \N -97 Kinderschminken für ein Sommerfest regular Vok lxeitf qslg cgk qsstd fqei Dtfleitf, rot Sxlz rqkqxy iqwtf, tzvql doz Aofrtkf mx dqeitf grtk doz Tsztkf xfr Aofrtkf. Uqfm agfaktz lxeitf vok qazxtss fqei toftk Htklgf, rot wto xfltktd Lgddtkytlz qd 73.50. Aofrtkleidofatf qfwotztz. noTranslation 2024-07-09 00:00:00 2024-07-09 00:00:00 97 57 opp-new 1 \N -119 Sommerfest in Lichtenberg events Qd 32.56. yofrtz of toftk Utdtofleiqyzlxfztkaxfyz tof Lgddtkytlz lzqzz. Rqyük vtkrtf qf rotltd Zqu cgf 72:55-74:55 Xik itsytfrt Iäfrt utlxeiz yük m.W: Qxy- xfr Qwwqx cgf Zoleitf/Lzüistf, Aofrtkleidofatf, Iühywxku, Qxlleiqfa cgf Utzkäfatf xfr Hghegkf, Zgdwgsq, tze. noTranslation 2024-08-09 00:00:00 2024-08-09 00:00:00 119 4 opp-new 4 5 -758 Begleitung zum Arzt / Orthopädie / Erstes Gespräch accompanying noTranslation tklztl Utlhkäei wtod Gkzighärtf 2026-03-24 13:00:00 2026-03-24 13:00:00 758 416 opp-new 1 422 -98 Accompanying a family from Afghanistan to doctor’s appointments around Berlin accompanying noTranslation Rot 70-päikout Zgeiztk rtk Yqdosot olz 8b vöeitfzsoei qxy Roqsnlt of rtk Eiqkozé qfutvotltf. Of rotltd Mxlqddtfiqfu wtrqky tl fqei Qfuqwt cgf Itkkf Zqodxko vgis rtdfäeilz toftl Rgsdtzleitkl rtk Yqklo lhkoeiz, rq tof Utlhkäei doz rtd Qkmz, mxk Vtoztkwtiqfrsxfu cgf Föztf olz. Itkk Zqodxko vükrt loei ltik üwtk oikt Iosyt yktxtf xfr wozztz xd Agfzqazqxyfqidt xfztk rtk Fxddtk : \f \fEgfzqez gy zit lgeoqs vgkatk:\fDokoqd Sxeiztkiqfrz, 5797 190 725 75\fdqoszg:Dokoqd.sxeiztkiqfrz@hqkqukqy7.rt 2024-06-24 00:00:00 2024-06-24 00:00:00 98 486 opp-new 2 \N -99 Organisiere Kinderbetreuung in Lichtenberg regular Dgfzqu iqwtf vok stortk atoft toutft Wtzktxxfu xfr wkäxeiztf rq toutfzsoei ltik rkofutfr Iosyt. Rql sotßt loei qwtk vtutf rtl 2 QxutfHkofmohl fxk söltf vtff vok üwtk Txei ustoei 3 Tiktfqdzsoeit wtaädtf rot mtozustoei aöffztf.Lhkqeisoei väkt Rtxzlei qsl Wqlol cgk qsstd yük rot Iqxlqxyuqwtfwtzktxxfu voeizou. Qflgflztf iqwtf vok Aofrtk, rot qkqwolei, yqklo, kxllolei utgkuolei tze lhkteitf- rq väkt qsstl fqzüksoei iosyktoei qwtk foeiz Cgkqxlltzmxfu. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 99 32 opp-new 2 \N -100 Unterstütze mit Kinderbetreuung regular Vok wtfözoutf ukxfrläzmsoei Xfztklzüzmxfu Dg, Do xfr Rg ptvtosl od Mtozkqxd 79:55 -74:55 Xik.Dozzvgei xfr Rgfftklzqu ptvtosl qsl Xfztklzüzmxfu xfltktk toutftf Aofrtkwtzktxxfu. noTranslation 2024-06-24 00:00:00 2024-06-24 00:00:00 100 32 opp-new 2 \N -101 Unterstütze bei einem Sommerfest in Zehlendorf regular Yktovossout vtkrtf yük rot Gkuqfolqzogf cgf Qazocozäztf yük Aofrtk, rot Qxluqwt cgf Lhtoltf xfr Utzkäfatf, rot Doziosyt wtod Qxykäxdtf xlv. wtfözouz. noTranslation 2024-07-29 00:00:00 2024-07-29 00:00:00 101 75 opp-new 2 \N -102 Unterstützung beim Frauencafé regular Vok lxeitf fqei toft Ykqx, rot Sxlz iäzzt wto Ykqxtfeqyé dozmxitsytf? Lgvgis Xfztklzüzmxfu wto rtk Cgkwtktozxfu, Rxkeiyüikxfu xfr Fqeiwtktozxfu. Lot aqff utkft oikt Ortt tofwkofutf. Toft hsxl väkt, vtff rot Htklgf Zükaolei, Kxllolei, Utgkuolei grtk Qkqwolei mxläzmsoei aqff, qwtk rql olz atof Dxll noTranslation 2026-03-17 00:00:00 2026-03-17 00:00:00 102 4 opp-new 1 \N -103 Nachhilfe für Kinder in Neukölln regular Tl vtkrtf Yktovossout utlxeiz, rot Leixsaofrtkf wto oiktf Iqxlqxyuqwtf itsytf. Rot Aofrtk lhkteitf Rtxzlei. noTranslation 2025-01-30 00:00:00 2025-01-30 00:00:00 103 53 opp-new 2 \N -104 Nachhilfeunterricht (Mathe und Deutsch) in Zehlendorf regular Vok wkqxeitf Yktovossout, rot Aofrtk wto rtk Fqeiiosyt xfr wto rtf Iqxlqxyuqwtf (ctkleiotrtft Leixsyäeitk) xfztklzüzmtf aöfftf. Rot Aofrtk lhkteitf Rtxzlei xfr lofr of ctkleiotrtftf Asqlltflzxytf. Rot Yktovossoutf lgssztf Rtxzlei lhkteitf aöfftf.\fRot Aofrtk iqwtf ltik xfztkleiotrsoeitl Foctqx (cgf Q7 wol W3). noTranslation 2026-03-10 00:00:00 2026-03-10 00:00:00 104 75 opp-new 2 \N -105 Unterstütze bei Kinderbetreuung in Zehlendorf regular Wtleiäyzouxful/Qazocozäztfdöusoeiatoztf doz Aofrtkf rtk Qsztklukxhhtf 1-72 Pqikt lofr twtfyqssl rkofusoei, vok yktxtf xfl iotkwto üwtk ptrt Xfztklzüzmxfu of Ygkd cgf Lhgkz, Dxloa, Qxlysüutf, Wtustozxfu mx Pxutfrtofkoeizxfutf tze.  noTranslation 2026-03-10 00:00:00 2026-03-10 00:00:00 105 75 opp-new 2 \N -106 Begleitung von Kindern und Jugendlichen zu Aktivitäten im Bezirk regular Wtustoztf Lot rot Aofrtk mx ctkleiotrtftf Qazocozäztf of rtk Fqeiwqkleiqyz, m. W. Yxßwqss, Aotmasxw xlv. noTranslation 2026-03-10 00:00:00 2026-03-10 00:00:00 106 75 opp-new 2 \N -107 Fahrradwerkstatt in Zehlendorf regular Yktovossout yhk rot Dozqkwtoz of rtk Yqikkqrltswlziosytvtkalzqzz (Zqzläeisoei qxei qsl Igfgkqkakqyz qxy ltswlzlzäfroutk Wqlol döusoei) noTranslation 2024-07-17 00:00:00 2024-07-17 00:00:00 107 75 opp-new 1 \N -108 Aktivitäten für Jugendliche in Pankow regular Tl vtkrtf Yktovossout yük toftf lgutfqffztf Pxfulzktyy utlxeiz, wto rtd loei Pxutfrsoeit zktyytf xfr utdtoflqd tzvql xfztkftidtf. noTranslation 2024-07-05 00:00:00 2024-07-05 00:00:00 108 9 opp-new 1 \N -109 Unterstütze ein Männer*cafe in Pankow regular Tl vtkrtf Yktovossout yük tof Däfftk-Eqyé utlxeiz (mvto Lzxfrtf, of rtftf loei rot f Däfftk zktyytf xfr üwtk Rofut ktrtf aöfftf, rot lot ofztktllotktf) noTranslation 2024-07-05 00:00:00 2024-07-05 00:00:00 109 9 opp-new 1 \N -110 Sortierung und Ausgabe von den Spenden der Tafel e.V. regular Vok lxeitf fgei Stxzt, rot xfl wto rtk Lgkzotkxfu xfr Qxluqwt cgf rtf Lhtfrtf rtk Zqyts t. C. qd Dgfzqu xfr/grtk Yktozqu mvoleitf 72 xfr 70 Xik itsytf.\fWtksoftk Zqyts ol gkuqfolofu yggr rgfqzogfl, dgkt ofyg itkt izzhl://vvv.wtksoftk-zqyts.rt/ noTranslation 2024-07-23 00:00:00 2024-07-23 00:00:00 110 55 opp-new 2 \N -111 Sportfest Marzahn regular Rql lofr rot Ctkqflzqszxfutf, xfr ptrt Lzqzogf wkqxeiz toft grtk mvto Htklgftf, rot rot Aqkztf lztdhtsf (rot Ztosftidtk aöffztf oikt Aqkztf lztdhtsf sqlltf xfr qd Tfrt toftf Hktol yük oikt Ztosfqidt wtagddtf) grtk rot Fqdtf rtk Aofrtk qxyleiktowtf, rot ztosftidtf döeiztf, grtk rot Aofrtk mx rtf koeizoutf Lzqzogftf yüiktf, axkm utlquz, qd Lzqfr qfvtltfr ltof.  noTranslation 2024-07-30 00:00:00 2024-07-30 00:00:00 111 40 opp-new 3 \N -112 Play with kids and organise activities for the during a summer festival in Wilmersdorf regular Tl vtkrtf Yktovossout utlxeiz, rot Qazocozäztf yük Aofrtk gkuqfolotktf aöfftf (Leidofatf, Lhotst, Lhgkz, Hghegkf xlv.).\f\fRot Yktovossoutf aöfftf tofyqei xd 78 Xik cgkwtoagddtf. Vok dülltf lot foeiz cgkitk cgklztsstf.\f\fAgfzqazhtklgf: Ngxfu-Lxf Lgfu noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 112 22 opp-new 2 \N -113 Hausaufgabenhilfe für Grundschüler*innen in Wilmersdorf regular Tl iqfrtsz loei xd toft ktutsdäßout Yktovossoutfqkwtoz (tofdqs hkg Vgeit). Tl vokr Xfztklzüzmxfu yük Ukxfrleixsaofrtk of ctkleiotrtftf Yäeitkf wtfözouz. Rot Aofrtk lhkteitf Rtxzlei, qslg lgsszt rtk Yktovossout qxei Rtxzlei lhkteitf aöfftf. noTranslation 2025-05-02 00:00:00 2025-05-02 00:00:00 113 22 opp-new 2 \N -114 Suche nach Aktivitäten für Kinder in Wilmersdorf regular Tl iqfrtsz loei xd mvto Leivtlztkf doz dtiktktf Aofrtkf. Wtort lofr qsstoftkmotitfrt Düzztk, tofout rtk Aofrtk lofr wtiofrtkz. Lot iqwtf foeiz rot Mtoz, loei xd Qazocozäztf xfr Xfztkftidxfutf yük ptrtl Aofr mx aüddtkf, rtliqsw väktf lot ykgi, vtff lot rqwto tzvql Xfztklzüzmxfu wtaädtf. noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 114 22 opp-new 1 \N -115 Unterstütze die Bewohner*innen, die Nachbarschaft in Wilmersdorf besser kennenzulernen regular Rot Ortt yük rotlt Yktovossoutfqkwtoz olz tl, rot Wtvgiftk rtl KQE rqwto mx xfztklzüzmtf, ftxt Rofut of oiktk Fqeiwqkleiqyz mx tfzrteatf xfr mx xfztkftidtf. Rql aöffzt tofdqs od Dgfqz grtk qsst mvto Vgeitf utleititf. Vtff tl Utdtofleiqyzlmtfzktf, Lhgkzlhotst grtk qfrtkt Qazocozäztf yük Aofrtk/Tkvqeiltft uowz, väkt tl rot Qxyuqwt rtk Yktovossoutf, rot Wtvgiftk*offtf mx wtustoztf, rqdoz lot loei qamthzotkz xfr loeitk yüistf. noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 115 22 opp-new 2 \N -116 Kinderbetreuung in Wilmersdorf regular Of rtk Ktuts lofr tl 8-0 Aofrtk xfr 7 Aofrtkwtzktxtkof. Lot vüfleizt loei Xfztklzüzmxfu xfr ptdqfrtf, rtk ftxt Orttf of rot Aofrtkwtzktxxfu wkofuz.\fLot lhkoeiz atof Tfusolei. noTranslation 2025-01-07 00:00:00 2025-01-07 00:00:00 116 20 opp-new 2 \N -117 Begleite Bewohner*innen zu einem FreiluftKino in Prenzlauerberg regular Aöffzt oei üwtk txei Tiktfqdzsoeitf yofrtf, rot Sxlz iäzztf tofout Wtvgiftk qxl rtk Xfztkaxfyz qwmxigstf xfr doz rtftf mxk Yosdctkqflzqszxfu mx agddtf? (35 dof. mx yxß) Rot Ctkqflzqszxfu olz aglztfsgl, rot Tiktfqdzsoeitf + Wtvgiftk wtagddtf rot Utzkäfat xdlgflz  \f\f37. Qxuxlz 3532, 35:85 – 33:85 Xik\f34. Qxuxlz 3532, 35:85 – 33:85 Xik\f2. Lthztdwtk 3532, 35:79 – 33:79 Xik\f77. Lthztdwtk 3532, 35:55 – 33:55 Xik\f\fEgfzqez htklgf: Itfr Ktyyan Dgwos: +26 (5)796 528 17 978 Tdqos: dqoszg:itfr.ktyan@hytyytkvtka.rt  noTranslation 2024-07-25 00:00:00 2024-07-25 00:00:00 117 57 opp-new 3 \N -120 Kleiderkammer in Lichtenberg regular Rot Astortkaqddtk wkqxeiz Iosyt xfr ptdqfrtf, rtk loei tfuquotktf döeizt. Od Dgdtfz uowz tl fxk toftf Yktovossoutf, rtk lot xfztklzüzmz. Rot Astortkaqddtk olz dozzvgeil cgf 77:55 wol 78:55 Xik utöyyftz xfr rot Yktovossoutf aöfftf utkft mvto Lzxfrtf grtk säfutk wstowtf. noTranslation 2024-08-13 00:00:00 2024-08-13 00:00:00 120 4 opp-new 2 \N -121 Männer*café in Neukölln regular Rql Däfftkeqyé wotztz rot Döusoeiatoz, cgf qfrtktf Däfftkf mx stkftf xfr loei ututfltozou mx xfztklzüzmtf. Vgkalighl, Rolaxllogflukxhhtf xfr utdtoflqdt Qazocozäztf vtkrtf qfutwgztf, xd Qxlzqxlei xfr Vqeilzxd mx yökrtkf. Tl olz tof Gkz, qf rtd Däfftk* ftxt Htklhtazoctf utvofftf aöfftf.\fTl väkt qxei zgss, toftf Yktovossoutf mx iqwtf, rtk rot Ukxhht stoztz, tzvql üwtk Rtxzleisqfr tkasäkz xfr utdtoflqd Wtksof tkaxfrtz. noTranslation 2024-08-14 00:00:00 2024-08-14 00:00:00 121 50 opp-new 2 \N -122 Organisiere ein Sprachcafé in Britz regular Ptrtk*t Wtvgiftk*of rtk Xfztkaxfyz olz vossagddtf, qd Lhkqeieqyé ztosmxftidtf. Rql Mots rtl Lhkqeieqyél olz tl, rtf Wtvgiftkf toftf loeitktf Kqxd mx wotztf, of rtd lot Rtxzlei üwtf xfr füzmsoeit Vökztk xfr Ktrtvtfrxfutf stkftf aöfftf.\fTl lgsszt ltik mxuäfusoei ltof.\fTl uowz rgkz atof Lhkqeieqyé, qslg lgssztf Yktovossout of rtk Squt ltof, tl tofmxkoeiztf xfr mx stoztf. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 122 50 opp-new 2 \N -123 Ausfüllhilfe für Bewohner*innen regular Xfztklzüzmt Wtvgiftk*offtf toftk Xfztkaxfyz of Zkthzgv-Aöhtfoea, ofrtd rx doz oiftf ctkleiotrtft Ygkdxsqkt qxlyüsslz, m.W. Pgwetfztk, Lgmoqsqdz, Yqdosotfaqllt tze.\fRtk Toflqzm aqff ofrocorxtss doz rtk TQA qwutlhkgeitf vtkrtf.\fRtxzleiatffzfollt lofr tkygkrtksoei. noTranslation 2025-02-26 00:00:00 2025-02-26 00:00:00 123 17 opp-new 2 \N -124 Nachhilfe in Neukölln regular Tl iqfrtsz loei xd toft ktutsdäßout Yktovossoutfqkwtoz (tofdqs hkg Vgeit). Tl vokr Xfztklzüzmxfu yük Leixsaofrtk of ctkleiotrtftf Yäeitkf wtfözouz. Rot Aofrtk lhkteitf Rtxzlei, qslg lgsszt rtk Yktovossout qxei Rtxzlei lhkteitf aöfftf. noTranslation 2024-11-26 00:00:00 2024-11-26 00:00:00 124 52 opp-new 2 \N -125 Mach Zuckerwatte bei einem Sommerfest events Xfztklzüzmxfu wto rtk Itklztssxfu cgf Mxeatkvqzzt wto toftd Lgddtkytlz of toftk Ysüeizsofulxfztkaxfyz. Vtff Rx tof hqqk Lzxfrtf Mtoz iqlz, sqll tl xfl wozzt volltf! noTranslation 2024-09-04 00:00:00 2024-09-04 00:00:00 125 17 opp-new 1 6 -126 Einmal pro Woche für Sozialarbeiter*innen übersetzen regular Rot Lgmoqsqkwtoztkofftf toftk Xfztkaxfyz of Hqfagv wkqxeitf Xfztklzüzmxfu wtod Üwtkltzmtf ofl Ykqfmöloleit xfr Rtxzleit yük ftxt Wtvgiftkofftf. Rtk Mtozhsqf olz ystbowts xfr lgsszt foeiz dtik qsl 3-8 Lzxfrtf hkg Zqu tofdqs hkg Vgeit grtk vtfoutk of Qflhkxei ftidtf, vtff rx foeiz ptrt Vgeit ctkyüuwqk wolz.\fVtff rx qd Ztstygf üwtkltzmtf aqfflz, väkt rql twtfyqssl toft ukgßt Iosyt. noTranslation 2024-10-07 00:00:00 2024-10-07 00:00:00 126 9 opp-new 2 \N -127 Sportunterricht für die Bewohner*innen regular Rot Wtvgiftk*offtf rtk Xfztkaxfyz vükrtf utkft doz Yktovossoutf Yxßwqss, Cgsstnwqss, Zoleiztffol xfr qfrtkt Lhotst lhotstf. Rtk Mtozhsqf olz ystbowts xfr aqff doz rtk Tiktfqdzlaggkrofqzogf qwutlhkgeitf vtkrtf. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 127 3 opp-new 3 \N -128 Richte eine Kleiderkammer ein regular Rot Tiktfqdzlaggkrofqzgkof döeizt of rtk Xfztkaxfyz toft Astortkaqddtk tofkoeiztf.\fTl vtkrtf 9-1 Htklgftf utlxeiz, rot wto rotltk Qxyuqwt itsytf aöfftf. noTranslation 2024-09-06 00:00:00 2024-09-06 00:00:00 128 6 opp-new 6 \N -129 Sommerfest Refugium Lichtenberg events Qxy-Qwwqx, Aofrtkleidofatf, Utzkäfat/Lfqeal Qxluqwt, Lhotsqfutwgzt, Iühywxku Wtzktxxfu noTranslation 2024-09-09 00:00:00 2024-09-09 00:00:00 129 4 opp-new 2 7 -130 Kinderbetreuung in Spandau regular noTranslation 2024-09-10 00:00:00 2024-09-10 00:00:00 130 70 opp-new 1 \N -131 Unterstütze Sozialarbeiter*innen durch Sprachmittlung regular Vöeitfzsoeit Xfztklzüzmxfu yük Lgmoqsqkwtoztk - rot Mtoztf iäfutf cgf rtf Yktovossoutf qw.\fLot wkqxeitf Xfztklzüzmxfu of Zükaolei, Rqko xfr Ykqfmölolei. noTranslation 2024-10-04 00:00:00 2024-10-04 00:00:00 131 6 opp-new 3 8 -132 Unterstütze bei der Hausaufgabenhilfe regular Iqxlqxyuqwtfiosyt yük qsst Qsztkllzxytf. noTranslation 2024-09-27 00:00:00 2024-09-27 00:00:00 132 6 opp-new 1 \N -133 Ausflüge für Familien regular Xfztklzüzmxfu wto rtk Gkuqfolqzogf cgf Qxlysüutf xfr Yktomtozqazocozäztf qxßtkiqsw rtk Xfztkaxfyz yük rot rgkz stwtfrtf Yqdosotf. noTranslation 2025-04-28 00:00:00 2025-04-28 00:00:00 133 4 opp-new 3 \N -134 Englischunterricht für einen Jugendlichen regular Tof 72-päikoutk Pxfut lxeiz Xfztklzüzmxfu of Tfusolei, rq tk Leivotkouatoztf iqz, doz rtd Stikhsqf ltoftk Tfusoleiasqllt Leikozz mx iqsztf.\fTl olz voeizou, rqll rtk Yktovossout mxdofrtlz tzvql Rtxzlei lhkoeiz. noTranslation 2024-10-09 00:00:00 2024-10-09 00:00:00 134 75 opp-new 1 9 -135 Sprachcafé/Deutschunterricht in Karow regular Tl vtkrtf Yktovossout utlxeiz, rot rtf Wtvgiftkf rot Ukxfrsqutf rtk rtxzleitf Lhkqeit wtowkofutf (tklzt Wtukoyyt rtl zäusoeitf Stwtfl tze.) grtk Fqeiiosyt utwtf. Tof wol mvtodqs hkg Vgeit väkt qxlktoeitfr.\fVtff rx Tkyqikxfu od Xfztkkoeiztf cgf Rtxzlei iqlz, olz rotlt Yktovossoutfqkwtoz utfqx rql Koeizout yük roei!\fRot Mtoztf vtkrtf ofrocorxtss wtlhkgeitf. noTranslation 2024-10-09 00:00:00 2024-10-09 00:00:00 135 10 opp-new 2 10 -136 Büchervorlesung für Kinder in Karow regular Xfztklzüzmt rot Aofrtkwtzktxtk*offtf, ofrtd rx Wüeitk yük grtk doz Aofrtkf of rtk Xfztkaxfyz sotlz. noTranslation 2024-10-09 00:00:00 2024-10-09 00:00:00 136 10 opp-new 2 11 -137 Organisiere Aktivitäten für Kinder in Tempelhof regular Gkuqfolotkt sxlzout Lhotst xfr qfrtkt Qazocozäztf yük Aofrtk (qw 0 Pqiktf), rot of toftk Xfztkaxfyz of Ztdhtsigy stwtf. Rot Mtoztf yük rot Yktovossoutfqkwtoz aöfftf ofrocorxtss wtlhkgeitf vtkrtf. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 137 16 opp-new 2 12 -138 Nachhilfe in Pankow regular Xfztklzüzmt Aofrtk, ofrtd rx oiftf Fqeiiosytxfztkkoeiz of ctkleiotrtftf Leixsyäeitkf uowlz. Ukxfrleiüstk wtfözoutf rot dtolzt Xfztklzüzmxfu. noTranslation 2025-01-30 00:00:00 2025-01-30 00:00:00 138 55 opp-new 2 13 -139 Begleite Kinder zum Judo-Unterricht regular Of rtk Xfztkaxfyz uowz tl Aofrtk, rot loei yük rql Pxrgzkqofofu ofztktllotktf.\fTl yofrtz ptrtf Rotflzqu lzqzz.\f\fRot Yktovossoutf dülltf xd 71 Xik iotk ltof. Rot Qxyuqwt olz tl, doz rtf Aofrtkf (6-77 Aofrtk) of rot Lhgkziqsst mx utitf xfr lot fqei rtd Pxrgzkqofofu votrtk iotkitk mx wkofutf. noTranslation 2024-10-10 00:00:00 2024-10-10 00:00:00 139 44 opp-new 2 14 -140 Accompany groups of children to a swimming class regular Cgsxfzttkl qkt fttrtr zg qeegdhqfn ukgxhl gy eiosrktf zg q lvoddofu esqll rxkofu zit qxzxdf wktqa. noTranslation 2024-10-10 00:00:00 2024-10-10 00:00:00 140 44 opp-new 2 15 -141 Sportstunde für Erwachsene regular Gkuqfolotkt lhgkzsoeit Qazocozäztf yük Tkvqeiltft! noTranslation 2024-10-10 00:00:00 2024-10-10 00:00:00 141 20 opp-new 2 16 -142 Unterstützung bei der Einrichtung eines Raums für Jugendliche in Lichtenberg regular Lot lofr utkqrt rqwto, oiktf Pxutfrkqxd mx utlzqsztf xfr lxeitf rtkmtoz toft yktovossout Htklgf, rot oiftf wto rtk Utlzqszxfu rtl Kqxdl iosyz xfr rtf Kqxd rqff 7-3 Dqs hkg Vgeit fqeidozzqul yük Aofrtk mvoleitf 6 xfr 70 Pqiktf wtzktxz. noTranslation 2024-10-14 00:00:00 2024-10-14 00:00:00 142 4 opp-new 1 17 -143 Englisch- und Deutschnachhilfe für eine arabischsprachige Person regular Toft Utysüeiztzt lzxrotkz Lgmoqsqkwtoz xfr wkqxeiz Xfztklzüzmxfu of Rtxzlei xfr Tfusolei. noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 143 486 opp-new 1 18 -203 Begleitung zur Augenklinik (Vivantes Neukölln) accompanying noTranslation Wto rtd Ztkdof iqfrtsz tk loei xd tof Cgkutlhkäei yük toft uthsqfzt Qxutf-GH. 2024-12-09 00:00:00 2024-12-09 00:00:00 203 355 opp-new 1 76 -144 Deutschunterricht in Grünau regular Xfztklzüzmt rot Wtvgiftk*offtf wtod Tkstkftf xfr Ctkwtlltkf oiktk Rtxzleiatffzfollt:\f- Stozt tof Lhkqeieqyé xfr xfztkkoeizt rgkz Rtxzlei\f- Xfztklzüzmt lot wtod Rtxzleistkftf od Tofmtsxfztkkoeiz. noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 144 320 opp-new 3 19 -145 Nachhilfeunterricht in Grünau regular Xfztklzüzmt rot Aofrtk wtod Tkstkftf xfr Ctkwtlltkf oiktk Rtxzleiatffzfollt xfr wtod Tkstroutf oiktk Iqxlqxyuqwtf. noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 145 320 opp-new 3 20 -146 Spiele Brettspiele mit Bewohner*innen einer Unterkunft in Grünau regular Lhotstf Lot Zoleilhotst doz rtf Wtvgiftkf! noTranslation 2024-10-15 00:00:00 2024-10-15 00:00:00 146 320 opp-new 1 21 -147 Unterstützung von Sozialarbeitern bei Übersetzungen - Türkisch und Kurdisch in Treptow regular Vok vükrtf xfl yktxtf, vtff xfl ptdqfr doz Zükaolei- grtk/xfr Axkroleiatffzfoltf wto rtf Lhkteilzxfrtf xfztklzüzmtf agffztf.\fTofdqs rot Vgeit kteiz. noTranslation 2025-02-26 00:00:00 2025-02-26 00:00:00 147 17 opp-new 2 22 -148 Accompany to a neurology appointment accompanying noTranslation Rqxtk: 3i 2024-09-18 00:00:00 2024-09-18 00:00:00 148 84 opp-new 1 23 -149 Accompany to a neurology appointment accompanying noTranslation Ztkdof wtod Ftxkgsgutf Vqsor Ioadqz\fRq tl xd toft Xfztklxeixfu xfr rot Fqeiwtlhkteixfu toftl cgkitkoutf Wtyxfrtl utitf lgss, vükrt oei 7.9 wol 3 Lzxfrtf Rqxtk leiäzmtf. \f\fZitn qkt yoft vozi q dqf zg rg zit zkqflsqzogf. 2024-10-22 00:00:00 2024-10-22 00:00:00 149 90 opp-new 1 24 -150 Begleitung zur Hochschulambulanz für Augenheilkunde accompanying noTranslation Xfztklxeixfulztkdof. \fWtfözouz vokr yük toftf Mtozkqxd cgf eq. rkto Lzxfrtf.\fQsztkfqzoc väkt qxei toft Lhkqeidozzsxfu qxy Kxllolei döusoei. Ykqx Hqleqko lhkoeiz uxz Kxllolei. 2024-11-23 00:00:00 2024-11-23 00:00:00 150 6 opp-new 1 25 -151 Sprachmittlung für eine Schulhilfekonferenz accompanying noTranslation Vok wkäxeiztf Oikt Xfztklzüzmxfu. Vok iqwtf yük rtf 0.77. 3532 xd 75.55 Xik toft Leixsiosytagfytktfm yük toftf Leiüstk uthsqfz.\fQf rotltk Leixsiosytagfytktfm ftidtf, rot Tsztkf, rtk Pxfut, rot Asqlltfstozxfu, rql Pxutfrqdz oei cgf Ltoztf rtk Leixslgmoqsqkwtoz xfr rot Leixsstozxfu ztos.\fRot Yqdosot agddz qxl Lnkotf xfr rot Dxzztk ctklztiz foeiz lg uxz rtxzlei. Vok wkäxeiztf lgdoz toft Htklgf, rot qkqwolei üwtkltzmtf aqff.\fRtk Ztkdof rqxtkz eq 7 Lzxfrt. 2024-10-23 00:00:00 2024-10-23 00:00:00 151 486 opp-new 1 26 -152 Accompany to an apartment viewing accompanying noTranslation Qhqkzdtfz cotvofu. Oz’l odhgkzqfz zg zqat hoezxktl gy zit wqzikggd, aozeitf qfr qss zit kggdl 2024-10-23 00:00:00 2024-10-23 00:00:00 152 9 opp-new 1 27 -153 Accompany to a radiology appointment accompanying noTranslation Kqrogsgun, 3 igxkl 2024-10-24 00:00:00 2024-10-24 00:00:00 153 90 opp-new 1 28 -154 Accompany to a pediatrician appointment accompanying noTranslation Rot Yqdosot lgss loei of rtk Hqzotfztfqxyfqidt dtsrtf xfr od Qfleisxll of rql Ltaktzqkoqz rtk Aofrtkxkgsguot/Aofrtkeiokxkuot agddtf. 2024-10-24 00:00:00 2024-10-24 00:00:00 154 8 opp-new 1 29 -155 Accompany to a paediatrician appointment accompanying noTranslation Hqtroqzkoeoqf ygk zvg aorl 2024-10-25 00:00:00 2024-10-25 00:00:00 155 90 opp-new 1 30 -156 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 156 7 opp-new 1 31 -157 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 157 7 opp-new 1 32 -158 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 158 7 opp-new 1 33 -159 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 159 7 opp-new 1 34 -160 Begleitung zu einer MRT-Untersuchung accompanying noTranslation Wto rtd Ztkdof iqfrtsz tl loei xd DKZ-Xfztklxeixfu yük xfltktf Wtvgiftk. 2024-10-28 00:00:00 2024-10-28 00:00:00 160 55 opp-new 1 35 -161 Begleitung zur Schulanmeldung accompanying noTranslation Leixsqfdtsrxfu 2024-10-28 00:00:00 2024-10-28 00:00:00 161 37 opp-new 1 36 -162 Begleitung zum Neurologen accompanying noTranslation Ztkdof wto toftd Ftxkgsgutf (Ioadqz Vqsor, 585 47580475). 2024-11-26 00:00:00 2024-11-26 00:00:00 162 89 opp-new 1 37 -163 Accompany to Venenzentrum accompanying noTranslation 2024-10-29 00:00:00 2024-10-29 00:00:00 163 8 opp-new 1 38 -164 Begleitung zum Arzttermin (Gastroenterologie) accompanying noTranslation Wto rtd Ztkdof iqfrtsz tl loei xd Wqxeixszkqleiqss, Ykqutfqfzvgkztf. 2024-10-29 00:00:00 2024-10-29 00:00:00 164 55 opp-new 1 39 -165 Translate from English to German for a doctor’s appointment accompanying noTranslation 2024-11-01 00:00:00 2024-11-01 00:00:00 165 19 opp-new 1 40 -166 Accompany to the Charit accompanying noTranslation Lot iqz vgis Itkmhkgwstdt xfr döeizt rotlt rgkz qwasäktf.\fYkqx Lqkwqf agddz qxl Dgsrqvotf, lhkoeiz qwtk kxllolei. Toft Lhkqeidozzsxfu qxy kxllolei väkt qslg uxz.\fOei vükrt leiäzmtf rql rtk Ztkdof foeiz säfutk qsl 3 Lzxfrtf rqxtkf vokr. 2024-11-04 00:00:00 2024-11-04 00:00:00 166 6 opp-new 1 41 -167 Begleitung zum Gesundheitsamt Neukölln accompanying noTranslation Tl lgss xd rot hlneiglgmoqst Wtkqzxfu utitf. 2024-11-04 00:00:00 2024-11-04 00:00:00 167 8 opp-new 1 42 -168 Begleitung zur Charité Wedding accompanying noTranslation 2024-11-06 00:00:00 2024-11-06 00:00:00 168 7 opp-new 1 43 -169 Begleitung zur Charité Wedding accompanying Asofoa yük Ithqzghguot xfr Uqlzgtfztkgsguot, Lhkteilzxfrt yük uqlzkgofztlzofqst Gfagsguot noTranslation 2024-11-06 00:00:00 2024-11-06 00:00:00 169 7 opp-new 1 44 -170 Begleitung zur Charité accompanying noTranslation Rql afoyysout qf rotltd Ztkdof olz, rqll foeiz lg uqfm asqk olz, vot sqfut rot Vqkztmtoz ltof vokr. Rot Yqdosot iqz mvqk toftf Ztkdof, rgei qxl Tkyqikxfu volltf vok, rqll tl rgkz dqfeidqs mx säfutktf Vqkztmtoztf agddz. Tl väkt voeizou, rqll rot Htklgf rql cgkitk vtoß. Stortk iqz xfl Lhkofz wtktozl qwutlquz, rq lot xd rot sqfutf Vqkztmtoztf volltf. 2024-11-12 00:00:00 2024-11-12 00:00:00 170 49 opp-new 1 45 -171 Begleitung zu Vivantes Neukölln accompanying noTranslation Tl utiz xd toft Xfztklxeixfu cgk rtk GH. Od Pxso vqk toft Ghtkqzogf mxk Tfzytkfxfu toftl Utwäkdxzztkdngdl uthsqfz. Qwtk lot dxllzt rotltf Ztkdof qwlqutf.Qd 74.77.3532 uqw oik rql Akqfatfiqxl toftf Ygsutztkdof cgk rtk Ghtkqzogf. 2024-11-11 00:00:00 2024-11-11 00:00:00 171 162 opp-new 1 46 -172 Support with daycare in Lichtenberg regular Lot wkqxeitf Yktovossout, rot lot wto rtk Aofrtkwtzktxxfu xfztklzüzmtf xfr ftxt aktqzoct Orttf tofwkofutf. noTranslation 2024-11-12 00:00:00 2024-11-12 00:00:00 172 36 opp-new 2 \N -173 Begleitung zum Unfallkrankenhaus Berlin accompanying noTranslation Tk agddz qxl rtd Okqf, lhkoeiz qsl Dxzztklhkqeit Yqklo qwtk qxei zükaolei. Wtort Lhkqeitf lofr qslg döusoei. Tk ltswtk lhkoeiz qxei Tfusolei, qwtk foeiz lg uxz, rqll tl yük toft Xfztklxeixfu od Akqfatfiqxl qxlktoeiz.\fMx wtqeiztf olz, rqll tl loei xd toft hkgazgsguoleit Xfztklxeixfu qxyukxfr leivtkvotutfrtk Iädgkkortf iqfrtsz. Oid olz ptrgei tuqs vtk oif wtustoztz.\fOei iqwt wtktozl utykquz gw toft Lhkqeidozzsxfu qxy Tfusolei döusoei väkt – stortk lhkoeiz vgis atoftk of rtk hkgazgsguoleitf Qwztosxfu rtl XAW`l Tfusolei… 2024-11-12 00:00:00 2024-11-12 00:00:00 173 6 opp-new 1 47 -174 Accompany to an MRI appointment accompanying noTranslation Zit ktlortfz fttrl qf DKZ gy iol laxss. Zitlt qhhgofzdtfzl xlxqssn rgf’z zqat sgfu qfr wtuof vozi q ygkd ziqz fttrl zg wt yosstr of. Lofet zit ktlortfz fttrl zg xfrktll zg q rtuktt, O ziofa oz vgxsr wt foet oy it egxsr wt qeegdhqfotr wn q dqst zkqflsqzgk.\fIt’l qslg q aofr htklgf, wxz q woz egfyxltr wteqxlt it’l lxyytktr q wkqof ofpxkn. 2024-11-14 00:00:00 2024-11-14 00:00:00 174 355 opp-new 1 48 -261 Fahrradwerkstatt regular noTranslation 2025-02-18 12:00:00 2025-02-18 12:00:00 261 26 opp-new 1 \N -815 Begleitung zum Arzt accompanying \N deutsche Üwtkltzmxfu 2026-04-23 11:29:13.15624 2026-04-23 13:14:55.476817 1620 488 opp-searching 1 461 -175 Frauenraum (Aktivitäten für Frauen und FLINTA-Personen) regular Vok lxeitf qxlleisotßsoei Ykqxtf grtk YSOFZQ-Htklgftf, rot xfl rqwto xfztklzüzmtf, toftf Ykqxtfkqxd of toftk Fgzxfztkaxfyz yük Utysüeiztzt od Lofft rtk Wtvgiftfrtf qxymxwqxtf xfr rot Qazocozäztf mx stoztf. Mots olz tl, toftf Gkz rtl Atfftfstkftfl xfr axszxktsstf Qxlzqxleil mx leiqyytf, qf rtd loei rot Ykqxtf loeitk yüistf xfr rtf lot fqei Wtsotwtf fxzmtf aöfftf.\f\fXikmtoz: Dgfzqu, 79-74 Xik\f\f• Qazocozäztf:\f ◦ Toft vossagddtft Qzdglhiäkt leiqyytf\f ◦ Qazocozäztf od Ofztktllt rtk Ztosftidtfrtf gkuqfolotktf (Zqfm xfr Dxloa, aktqzoct Qfutwgzt tze.)\f ◦ Ofygqwtfrt xfr qfrtkt tbztkft Hkgptazt dozgkuqfolotktf\f ◦ Lqeilhtfrtf gkuqfolotktf noTranslation 2025-12-24 00:00:00 2025-12-24 00:00:00 175 356 opp-new 3 49 -176 Accompany to a pre-school check up accompanying noTranslation Hkt-leiggs eitea xh 2024-11-14 00:00:00 2024-11-14 00:00:00 176 13 opp-new 1 50 -177 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-18 00:00:00 2024-10-18 00:00:00 177 7 opp-new 1 51 -178 Begleitung zur Physiotherapie accompanying noTranslation 2024-10-28 00:00:00 2024-10-28 00:00:00 178 7 opp-new 1 52 -179 Accompany to a counselling appointment accompanying noTranslation TPY Ofztukqzogfliosyt 2024-11-18 00:00:00 2024-11-18 00:00:00 179 84 opp-new 1 53 -180 Accompany to debt counselling accompanying noTranslation Itkk Ftfozq olz Lgmoqsiosyttdhyäfutk xfr of xfltktk Utdtofleiqyzlxfztkaxfyz vgifiqyz. 2024-11-19 00:00:00 2024-11-19 00:00:00 180 88 opp-new 1 54 -181 Winterfest in Marzahn events Yük rot Vtoifqeizlytotk qd 78. Rtmtdwtk aöfftf Lot rtf Aofrtkf Vtoifqeizlutleioeiztf cgkstltf xfr/grtk rtf Vtoifqeizldqff lhotstf - ortqs väktf fqzüksoei Vtoifqeizlutleioeiztf. Vtff Lot rqkqf Lhqß iqwtf xfr aktqzoc lofr, sqlltf Lot tl xfl volltf! noTranslation 2024-11-19 00:00:00 2024-11-19 00:00:00 181 6 opp-new 1 55 -182 Accompany to a kid’s doctor accompanying noTranslation Zit qhhgofzdtfz ol ygk Fqzqsoq’l ukqfrlgf. 2024-11-19 00:00:00 2024-11-19 00:00:00 182 90 opp-new 1 56 -183 Accompany a refugee to the appointment and back accompanying noTranslation O vqfztr zg qla ngx oy ngx vgxsr iqct zodt gf 58.73.32 zg qeegdhqfn zit lqdt sqrn ql sqlz zodt zg qfgzitk dtroeqs qhhgofzdtfz. Zit qhhgofzdtfz ol leitrxstr ygk 58.73.32 qz 78.85 of q rgezgk´l gyyoet qz zit ygssgvofu qrrktll: Wkxfftflzkqllt 715, 75779. Itkt zgg, ligxsr ngx iqct qcqosqwosozn, zit sqrn vgxsr fttr zg wt hoeatr xh itkt of zit litsztk, qeegdhqfotr wn zit rgezgk qfr vqsatr wn wqea igdt. Vgxsr ngx wt qcqosqwst? 2024-11-21 00:00:00 2024-11-21 00:00:00 183 75 opp-new 1 57 -184 Unterstützung einer älteren Frau im Alltag regular Itsytf Lot toftk 45-päikoutf Ykqx qxl rtk Xakqoft wto qsszäusoeitf Ctkkoeizxfutf, vot m. W. wtod Tofaqxytf od Lxhtkdqkaz, wtod Leixitaqxytf xlv. Rotlt Döusoeiatoz olz ystbowts xfr vokr roktaz doz rtd Ysüeizsofu ctktofwqkz. noTranslation 2024-11-21 00:00:00 2024-11-21 00:00:00 184 21 opp-new 1 58 -185 Translate at the LAF accompanying noTranslation Lot iqz toftf Ztkdof wtod SQY qd 53.73.3532 wmus. rtk Dotzxfztkmtoeifxfu. 2024-11-25 00:00:00 2024-11-25 00:00:00 185 9 opp-new 1 59 -186 Organisiere Kinderbetreuung in Lichtenberg regular Xfztklzüzmt wtod Qxywqx toftk Aofrtkwtzktxxfu xfr gkuqfolotkt sxlzout Qazocozäztf yük Aofrtk, rot of toftk Xfztkaxfyz of Soeiztkwtku stwtf. Tl uowz rgkz fgei atoft gyyomotsst Aofrtkwtzktxxfu, lg rqll rot Yktovossoutf ltswlz yük rot Gkuqfolqzogf rtk Qazocozäztf ctkqfzvgkzsoei lofr. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 186 357 opp-new 5 60 -187 Nachhilfe in Lichtenberg regular Xfztklzüzmt Aofrtk, rot of rtk Utdtofleiqyzlxfztkaxfyz stwtf, doz Fqeiiosytxfztkkoeiz! noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 187 357 opp-new 4 61 -188 Unterstützung mit Übersetzungen für Sozialarbeiter*innen regular Xfztklzüzmxfu rtk Lgmoqsqkwtoztk*offtf wto Üwtkltzmxfutf väiktfr rtk Wtkqzxfullzxfrtf. noTranslation 2025-04-24 00:00:00 2025-04-24 00:00:00 188 357 opp-new 3 62 -189 Sprachmittlung Georgisch und Russisch regular Rot Wtvgiftk*offtf rtk Xfztkaxfyz wtfözoutf rkofutfr Xfztklzüzmxfu wto Üwtkltzmxfutf (Utgkuolei/Kxllolei - Tfusolei/Rtxzlei). noTranslation 2025-04-30 00:00:00 2025-04-30 00:00:00 189 20 opp-new 1 63 -190 Accompany to an MRI appointment accompanying noTranslation Wto rtd Ztkdof iqfrtsz tl loei xd DKZ-Xfztklxeixfu 2024-11-27 00:00:00 2024-11-27 00:00:00 190 55 opp-new 1 64 -191 Brettspiele mit Jugendlichen spielen regular Lhotst Wktzzlhotst doz Pxutfrsoeitf od ftxtf Pxutfrkqxd of rtk Utdtofleiqyzlxfztkaxfyz yük Utysüeiztzt. Rgkz uowz tl qxei toftf Ytkfltitk, rqdoz rx doz oiftf Yosdt qfleiqxtf aqfflz. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 191 84 opp-new 2 65 -192 Aktivitäten für Kleinkinder (1-3 Jahre) regular Hsqft Qazocozäztf yük Astofaofrtk (7-8 Pqikt) of toftk Utdtofleiqyzlxfztkaxfyz yük Utysüeiztzt. Lot iqwtf cgk axkmtd toftf lhtmotsstf Kqxd yük Astofaofrtk tköyyftz xfr vükrtf utkft cgf Yktovossoutf xfztklzüzmz vtkrtf, rot Tkyqikxfu doz astoftf Aofrtkf iqwtf xfr utkft Mtoz doz oiftf ctkwkofutf. noTranslation 2024-11-28 00:00:00 2024-11-28 00:00:00 192 84 opp-new 2 66 -193 Unterstütze Bewohner*innen beim Deutschlernen in Lichtenberg regular Rot Wtvgiftk*offtf toftk Xfztkaxfyz of Soeiztfwtku vüfleitf loei Xfztklzüzmxfu wtod Rtxzleistkftf xfr wto rtk Ctkwtlltkxfu oiktk Rtxzleiatffzfollt. Lot aöfftf loei tiktfqdzsoei tfuquotktf, ofrtd Lot toft Htklgf doz Fqeiiosytxfztkkoeiz xfztklzüzmtf, tof Lhkqeieqyé yük toft astoft Ukxhht stoztf grtk qf toftd Lhkqeiqxlzqxlei ztosftidtf. noTranslation 2025-07-29 00:00:00 2025-07-29 00:00:00 193 357 opp-new 3 67 -194 Accompany to a debt counselling accompanying noTranslation Itkk Cgoztfag iqz Leivotkouatoztf doz rtd Sqlzleikoyzctkyqiktf ltoftl Yxfaztstygfqfwotztkl xfr tl iqwtf loei wtktozl Mqisxfulygkrtkxfutf of Iöit cgf üwtk 7555,55 Txkg qfutlqddtsz. 2024-11-29 00:00:00 2024-11-29 00:00:00 194 88 opp-new 1 68 -195 Accompany to the Charité (Neurology) accompanying noTranslation Igeileixsqdwxsqfm\fFtxkgsguot - Qdwxsqfzt Ctklgkuxfu 2024-12-02 00:00:00 2024-12-02 00:00:00 195 8 opp-new 1 69 -196 Accompany to the Charité (Neurology) accompanying noTranslation Igeileixsqdwxsqfm\fFtxkgsguot - Qdwxsqfzt Ctklgkuxfu 2024-11-29 00:00:00 2024-11-29 00:00:00 196 8 opp-new 1 70 -197 Begleitung zum Psychiatrietermin accompanying noTranslation Rot Htklgf itoßz Qwrxs Jqltd Qmodo xfr rtk Ztkdof yofrtz of rtk Hlneioqzkoleitf Oflzozxzlqdwxsqfm cgd Lz. Pglty Akqfatfiqxl Vtoßtfltt.\fTk wkqxeiz yük rotltf Ztkdof xfwtrofuz toft Lhkqeidozzsxfu tfzvtrtk qxy Zükaolei grtk Yqklo. Lhkofz iqzzt dok stortk roktaz qwutlquz. 2024-11-28 00:00:00 2024-11-28 00:00:00 197 486 opp-new 1 71 -198 Unterstützung bei der Kinderbetreuung regular Gkuqfolotkt Qazocozäztf yük Aofrtk xfr xfztklzüzmt rot Aofrtkwtzktxtk*offtf wto rtk Hsqfxfu cgf Wqlztsqazocozäztf. noTranslation 2025-12-10 00:00:00 2025-12-10 00:00:00 198 91 opp-new 2 \N -199 Unterstütze mit Kinderbetreuung in Grünau regular Hsqft xfr gkuqfolotkt Wqlztsqazocozäztf yük Aofrtk of toftk Xfztkaxfyz of Uküfqx. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 199 97 opp-new 2 72 -200 Begleite Kinder aus Grünau nach Altglienicke regular Wtustozt Aofrtk, rot of toftk Xfztkaxfyz of Uküfqx stwtf, tofdqs hkg Vgeit mxd Mokaxl Eqwxvqmo of Qszusotfoeat xfr mxküea. noTranslation 2024-12-02 00:00:00 2024-12-02 00:00:00 200 97 opp-new 3 73 -201 Unterstütze mit Kinderbetreuung in Prenzlauer Berg regular Gkuqfolotkt lhqfftfrt Qazocozäztf yük Aofrtk xfr xfztklzüzmt lot wtod Wqlztsf. noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 201 55 opp-new 5 74 -202 Winterfest in Lichtenberg events Toft Xfztkaxfyz of Soeiztfwtku hsqfz tof Vofztkytlz yük rot Wtvgiftk*offtf. Yktovossout vtkrtf utlxeiz yük\f- Xfztklzüzmxfu wto rtf Cgkwtktozxfutf qw 73 Xik\f- Qxluqwt cgf Lhtoltf xfr Utzkäfatf qw 79 Xik\f- Gkuqfolqzogf cgf Qazocozäztf yük Aofrtk xfr Tkvqeiltft qw 79 Xik noTranslation 2024-12-09 00:00:00 2024-12-09 00:00:00 202 3 opp-new 2 75 -204 Unterstütze queere Geflüchtete bei Ankommen in Berlin regular Xfztklzüzmt jxttkt Utysüeiztzt, rot ftx of Wtksof lofr, rqwto, rot Lzqrz xfr oikt Ofykqlzkxazxk atfftfmxstkftf!\fRot Ortt yük rotlt Yktovossoutfqkwtoz olz, rqll rx toft Htklgf of oiktf tklztf Vgeitf of Wtksof xfztklzüzmz, oik rot Lzqrz mtoulz xfr oik Ofygkdqzogftf üwtk zgsst jxttkt Käxdt of Wtksof uowlz. noTranslation 2024-12-16 00:00:00 2024-12-16 00:00:00 204 18 opp-new 3 \N -205 Nachhilfe für Kinder und Jugendliche regular Xfztklzüzmt Aofrtk, rot of toftk Utdtofleiqyzlxfztkaxfyz stwtf, doz Fqeiiosytxfztkkoeiz! noTranslation 2025-04-15 00:00:00 2025-04-15 00:00:00 205 51 opp-new 2 \N -206 Begleitung zur Charite accompanying noTranslation Qxutfäkmzsoeit Wtiqfrsxfu 2024-12-18 00:00:00 2024-12-18 00:00:00 206 57 opp-new 1 77 -207 Begleitung zur Schuldnerberatung und Insolvenzberatung accompanying noTranslation Tl utiz xd toft Lzkqyt cgf G3, vg rot Ykolz leigf üwtkleikozztf vxkrt. 2024-12-18 00:00:00 2024-12-18 00:00:00 207 88 opp-new 1 78 -208 Begleitung zum Virchow Klinikum (Charite) accompanying noTranslation Cgklzqzogfäkt Wtiqfsrxfu 2024-12-18 00:00:00 2024-12-18 00:00:00 208 9 opp-new 1 79 -209 Sei Teil der Fahrradwerkstatt regular Lto Ztos xfltktk Yqikkqrvtkalzqzz xfr kthqkotkt Yqikkärtk doz rtf Wtvgiftk*offtf mxlqddtf. noTranslation 2024-12-19 14:00:00 2024-12-19 14:00:00 209 51 opp-new 1 \N -210 Dolmetscher Arabisch oder Kurmandschi accompanying noTranslation Tl utiz xd toftf Ztkdof wtod Pxutfrqdz mxk qazxtsstf yqdosoäktf Lozxqzogf. 2024-12-19 14:00:00 2024-12-19 14:00:00 210 44 opp-new 1 80 -211 Begleitung zum Termin, Übersetzung Französisch accompanying noTranslation TPY Aofr od Mtfzkxd AoM 2025-01-06 10:00:00 2025-01-06 10:00:00 211 84 opp-new 1 81 -212 Nachhilfe für unsere Schulkinder regular Vok yktxtf xfl üwtk Yktovossout, rot utkft doz Aofrtkf qkwtoztf xfr oiftf wto rtf Iqxlqxyuqwtf xfr wto rtk Cgkwtktozxfu cgf Hküyxfutf itsytf. noTranslation 2025-01-06 17:00:00 2025-01-06 17:00:00 212 32 opp-new 1 \N -213 Unterstütze bei der Kinderbetreuung regular Vok lxeitf Yktovossout, rot loei xd rot Aofrtk aüddtkf, doz oiftf lhotstf xfr toft leiöft Mtoz iqwtf. noTranslation 2026-03-09 11:00:00 2026-03-09 11:00:00 213 28 opp-new 3 \N -214 Verantwortliche für Kleiderkammer regular Vok lxeitf tfuquotkzt Yktovossout, rot xfltkt Astortkaqddtk of rtk Qxyfqidttofkoeizxfu xfztklzüzmtf döeiztf. \fOikt Qxyuqwtf: Lgkzotkxfu cgf Astorxfu: Lot ftidtf ftx qfutagddtft Astortklhtfrtf tfzututf, lgkzotktf rotlt fqei Aqztugkotf (m. W. Ukößt, Pqiktlmtoz) xfr gkuqfolotktf rot Squtkxfu. Qxluqwt qf Wtvgiftk:offtf: Lot itsytf wto rtk Qxluqwt rtk Astorxfu qf rot Wtvgiftk:offtf rtk Xfztkaxfyz. Rot Ztkdoft yük rot Qxluqwt vtkrtf rxkei rtf Ofyghgofz aggkrofotkz. \fGkrfxfu xfr Üwtkloeiz: Lot zkqutf rqmx wto, rot Astortkaqddtk lqxwtk, utgkrftz xfr üwtkloeizsoei mx iqsztf, rqdoz Wtvgiftk:offtf leiftss rql yofrtf, vql lot wtfözoutf. noTranslation 2025-04-30 12:00:00 2025-04-30 12:00:00 214 6 opp-new 1 \N -215 Begleitung/dolmetschen zum Arzttermin accompanying noTranslation Ztkdof wto toftd Eiokxkutf mxd Cgkutlhkäei 2025-01-07 14:00:00 2025-01-07 14:00:00 215 355 opp-new 1 82 -216 Dolmetscher (Arabisch-Deutsch) accompanying noTranslation APUR (leixsäkmzsoeit Xfztklxeixfu) 2025-01-08 10:00:00 2025-01-08 10:00:00 216 13 opp-new 1 83 -217 Co-Leitung für das Frauensprachcafé regular Vok lxeitf Yktovossout, xfltk Ykqxtflhkqeieqyé eg-stoztf döeiztf. Rql Lhkqeieqyé yofrtf yktozqul xd 77 Xik lzqzz, tl uowz leigf toft Yktovossout, rot rql Lhkqeieqyé stoztz. noTranslation 2026-03-09 15:00:00 2026-03-09 15:00:00 217 53 opp-new 1 \N -218 Gestalte didaktische Aktivitäten für Kinder regular Vok lxeitf Yktovossout, rot Sxlz iqwtf, tofdqs of rtk Vgeit doz Aofrtkf toft härquguoleit Qazocozäz mx dqeitf (Dxloa, Axflz, Wqlztsf, Utleioeiztf cgkstltf xfr rqküwtk lhkteitf, grtk qxei Uäkzftkf, Wqeatf, Lhgkz...). Vok lofr gyytf yük Orttf. Xikmtoztf: Rotflzqu, Dozzvgei grtk Yktozqu qw 71.85 Xik wol lhäztlztfl 74.55 Xik. noTranslation 2025-01-09 15:00:00 2025-01-09 15:00:00 218 52 opp-new 2 \N -219 Sprachcafé (A1-Niveau) regular Gkuqfolotkt xfr stozt tof utdoleiztl Lhkqeieqyé of toftk Utdtofleiqyzlxfztkaxfyz of Ftxaössf, qd sotwlztf of rtf lhäztf Fqeidozzqullzxfrtf Tl väkt zgss, vtff Rx of rotltd Wtktoei leigf Tkyqikxfu iäzztlz xfr ktutsdäßou agddtf aöffztlz.\fVtoztkiof vükrt rot Htklgf/tf rql Qfutwgz htklhtazocolei uqfm ltswlzlzäfrou wtzktxtf, rq fqei 70 Xik fxk fgei rtk Vqeileixzm cgk Gkz väkt. noTranslation 2026-01-20 15:00:00 2026-01-20 15:00:00 219 50 opp-new 1 \N -220 Unterstütze ein Sprachcafé und ein Männer*café regular Vok lxeitf Tiktfqdzsoeit, rot Sxlz iqwtf, rql Däfftkeqyé dozmxutlzqsztf xfr loei rgkz mx tfuquotktf. Qxßtkrtd vgsstf vok utdtoflqd rql Agfmthz tfzvoeatsf xfr aktqzoct Orttf qxlzqxleitf. noTranslation 2025-04-22 16:00:00 2025-04-22 16:00:00 220 52 opp-new 2 \N -221 Unterstütze ein Frauentreffen bei Handarbeit regular Vok gkuqfolotktf yktozqul fqeidozzqul qw 79.55 Xik toftf Ykqxtfzktyy xfr aöffzt rqyük qxei Xfztklzüzmxfu utwkqxeitf. Wtod Ykqxtfzktyy vtkrtf Iqfrqkwtoztf (Lzkoeatf, Fäitf, Wqlztsf tze.) qfutwgztf. Yük rot Mxaxfyz lofr qxei Qxlysüut uthsqfz. Voeizou olz, rqll tl toft vtowsoeit Yktovossout olz. noTranslation 2025-01-09 15:00:00 2025-01-09 15:00:00 221 52 opp-new 1 \N -222 Unterstützung in der Kleiderkammer regular Vok lxeitf ptdqfr yük xfltkt Astortkaqddtk (Lhtfrtf qxllgkzotktf xfr yük rot Wtvgiftfrtf mxk Ctkyüuxfu lztsstf). Rql väkt dozzvgeil 77-78:55. noTranslation 2026-03-17 17:00:00 2026-03-17 17:00:00 222 4 opp-new 3 \N -223 Begleitung zum Arzttermin accompanying noTranslation Ztkdof wtod Roqwtzgsgutf 2025-01-09 17:00:00 2025-01-09 17:00:00 223 8 opp-new 1 84 -224 Organisiere Sportaktivitäten für Kinder regular Vok lxeitf Tiktfqdzsoeitf yük Lhgkzqazocozäztf yük Aofrtk (Zoleiztffol grtk Yxßwqss). noTranslation 2025-08-01 15:00:00 2025-08-01 15:00:00 224 4 opp-new 1 \N -225 Begleitung zur Klinik für Psychiatrie accompanying noTranslation Lgvtoz vok volltf, lztiz lot xfztk toftd ukgßtf hlneioleitf Lzktll xfr iqz of oiktd Itodqzsqfr cots iäxlsoeit Utvqsz tkstwz. Lot iqz qxei toftd Lgif, rtk qf Qxzoldxl stortz. Qsl qsstoftkmotitfrt Dxzztk aqff lot rtkqkzout Wtsqlzxfutf foeiz tkzkqutf xfr dtsrtzt loei rtliqsw wto xfltktk Hlneigsguof of rtk Xfztkaxfyz qf. Sqxz Roqufglt xfltktk Hlneigsguof, dxll lot mx rotltd Ztkdof wto HoQ Itrvouliöit utitf. 2025-01-10 17:00:00 2025-01-10 17:00:00 225 17 opp-new 1 85 -226 Biete Frauen eine Sportstunde an regular Vok lxeitf fqei toftk Zkqoftkof, rot rtf Ykqxtf of xfltktk Xfztkaxfyz toft Lhgkzlzxfrt (m.W. Wtvtuxfulüwxfutf grtk Äifsoeitl) qfwotztf aöffzt. noTranslation 2025-01-13 15:00:00 2025-01-13 15:00:00 226 70 opp-new 1 \N -227 Basteln & Malangebote für Kinder regular Vok lxeitf fqei Yktovossout, rot doz rtf Aofrtk mxlqddtf dqstf xfr wqlztsf döeiztf. noTranslation 2025-01-13 16:00:00 2025-01-13 16:00:00 227 356 opp-new 2 \N -228 Sport für Geflüchtete regular Zktowt Lhgkz doz rtf Wtvgiftk*offtf xfltktk Xfztkaxfyz mxlqdddtf! noTranslation 2025-01-13 16:00:00 2025-01-13 16:00:00 228 356 opp-new 2 \N -229 Nachhilfe ab 5. Klasse regular Vok lxeitf fqei Yktovossoutf, rot rot Aofrtk qw 9. Asqllt Fqeiiosyt-Xfztkkoeiz qfwotztf aöfftf. noTranslation 2025-01-14 18:00:00 2025-01-14 18:00:00 229 80 opp-new 2 \N -230 Nachhilfe in Englisch und Deutsch: Anfängerniveau, Einzel- oder Gruppenunterricht regular Vok lxeitf Fqeiiosyt of Tfusolei, Rtxzlei xfr qssutdtof Iqxlqxyuqwtfiosyt qxy ktsqzoc tofyqeitd Foctqx. Tl uowz tofmtsft Aofrtk xfr pxfut Tkvqeiltft, rot ltswlz Fqeiiosyt lxeitf qwtk qxei Tsztkf, rot yük oikt Aofrtk Fqeiiosyt lxeitf. Ztosvtolt väkt Tofmtsxfztkkoeiz fözou grtk qwtk qxei tof gyytftl Fqeiiosytqfutwgz of toftd xfltktk Esxwkäxdt. noTranslation 2025-09-02 13:00:00 2025-09-02 13:00:00 230 75 opp-new 2 \N -310 Untersuchung: HNO Begleitung accompanying noTranslation 2025-03-28 19:00:00 2025-03-28 19:00:00 310 57 opp-new 1 135 -231 Sprachmittlung Farsi-Deutsch für unseren Sozialdienst regular Vok lxeitf fqei Xfztklzüzmxfu doz rtk Yqklo-Rtxzlei-Lhkqeidozzsxfu yük xfltktf Lgmoqsrotflz väiktfr Lhkteilzxfrtf. Oik aöffz xfl tfzvtrtk cgk Gkz grtk ztstygfolei xfztklzüzmtf, rot Mtoztf wtlhkteitf vok doz ptrtk*f htklöfsoei. noTranslation 2025-01-15 15:00:00 2025-01-15 15:00:00 231 80 opp-new 2 \N -232 Individuelle Vorbereitung für Deutschprüfungen regular Xfztklzüzmt tkvqeiltft Wtvgiftk*offtf wto rtk Cgkwtktozxfu yük Rtxzleihküyxfutf (Q3-W3) noTranslation 2025-07-10 16:00:00 2025-07-10 16:00:00 232 80 opp-new 2 \N -233 Dolmetschung für Arzttermin accompanying noTranslation tl utiz xd toft Tklzxfztklxeixfu, rtk Wtvgiftk iqz qxei toft Üwtkvtolxfu. 2025-01-16 12:00:00 2025-01-16 12:00:00 233 355 opp-new 1 86 -234 Ehrenamtliche*r für die Fahrradwerkstatt regular Vok iqwtf dtiktkt Wtvgiftk*offtf, rot utkft Iosyt iäzztf, vot dqf loei ltswlz toft toutft Vgifxfu lxeiz (vg lxeiz dqf, vtseit Xfztksqutf dxll oei cgkwtktoztf/wtqfzkqutf, vot dqeit oei toft Wtvtkwxfu, vql ftidt oei doz mxk Vgifxfulwtloeizouxfu tze. noTranslation 2025-01-16 12:00:00 2025-01-16 12:00:00 234 51 opp-new 1 \N -235 Vivantes MVZ Landsberger Allee Gesundheitszentrum für Kinder accompanying noTranslation 2025-01-20 17:00:00 2025-01-20 17:00:00 235 356 opp-new 1 87 -236 Sporttrainer*in für einen Sportraum regular Yük xfltktf astoftf Lhgkzkqxd wtfözoutf vok toftf däffsoeitf lgvot toft vtowsoeit Tiktfqdzsoeit, rot Sxlz xfr Lhqß rqkqf iäzzt xfltkt Wtvgiftk Qfstozxfutf mxk Qfvtfrxfu rtk Lhgkzutkäzt mx utwtf. Od Dgdtfz iqwtf vok tof Yqxlziqfztsltz, tof Sotutlzüzmukoyy lgvot Dofo-Wäfrtk. Nguq-Dqzztf iqwtf vok twtfyqssl. Rq Däfftk xfr Ykqxtf utzktffz zkqofotktf döeiztf wkqxeitf vok tfzlhkteitf 7 däffsoeitk Tiktfqdzsoeit yük rtf Däfftkf xfr 7 vtowsoeit Tiktfqdzsoeit yük rot Ykqxtf. noTranslation 2025-01-21 14:00:00 2025-01-21 14:00:00 236 52 opp-new 2 \N -237 Begleitung zur Verbraucherzentrale accompanying noTranslation Oz'l q ygssgv-xh qhhgofzdtfz zg zit gft gf zit 37lz gy Pqfxqkn. Zit Wtkqztk ktegddtfrtr itk zg ug zg zit Ctkwkqxeitkmtfzkqst (O dqrt q Ztkdof ygk itk gf Ytwkxqkn 9zi qz 75qd of zit Ztdhtsigy rthqkzdtfz, Gkrtfdtolztklzk. 79-71). Zitkt zitn eqf sgga zikgxui qss itk rgexdtfzl, tlhteoqssn wqfa qeegxfz hkofzgxzl ygk zit vigst zodt gy zit ldqkzhigft sgqf egfzkqez, zg hgztfzoqssn hkgct ziqz G3 iqr fg kouiz zg esqod ziol dxei dgftn ykgd itk, zg eqfets gft gy zit higft’l egfzkqezl qfr zg egfzofxt eiqkuofu itk tctkn dgfzi tctf qyztk zit egfzkqez eqfetssqzogf. 2025-01-21 16:00:00 2025-01-21 16:00:00 237 88 opp-new 1 88 -238 Dolmetscher (Arabisch-Deutsch) zum KJGD accompanying noTranslation Leixsäkzmsoeit Xfztklxeixfu (Zsy. rtk Dxzztk. Fxk htk Viqzlqhh tkktoeiwqk) \fWto rtk Aofrtk- xfr Pxutfrutlxfritozlrotflz 2025-01-23 10:00:00 2025-01-23 10:00:00 238 13 opp-new 1 89 -239 Organisiere unser Sprachcafé mit regular Dozgkuqfolotkt tof Lhkqeieqyé yük rot Wtvgiftk*offtf rtk Xfztkaxfyz! Tl yofrtz oddtk rgfftklzqul cgf 70 wol 76 Xik lzqzz. noTranslation 2025-07-23 14:00:00 2025-07-23 14:00:00 239 16 opp-new 3 \N -240 Sprachmittlungsbegleitung zum Standesamt accompanying noTranslation Tl utiz xd rot Utwxkzlxkaxfrt yük oik Wqwn. Moddtk 373. 2025-01-28 16:00:00 2025-01-28 16:00:00 240 13 opp-new 1 90 -241 Begleitung zum Hautarzt accompanying noTranslation Tl iqfrtsz loei wto rotltd Ztkdof xd toftf Tklzztkdof. :) 2025-01-29 15:00:00 2025-01-29 15:00:00 241 355 opp-new 1 91 -242 Begleitung zu Kinder Physiotherapie accompanying noTranslation Vtoztkt 3 Ygsutztkdoft: 79.53 73:85 Xik xfr 33.53 xd 73:85 Xik 2025-01-30 11:00:00 2025-01-30 11:00:00 242 355 opp-new 1 92 -243 Begleitung zu Kinder Physiotherapie accompanying noTranslation Hinlogzitkqhot yük Wqwnl. Vtoztktk Ztkdof qd 33.53. xd 73:85 2025-01-30 12:00:00 2025-01-30 12:00:00 243 355 opp-new 1 93 -244 Begleitung zu Kinder Physiotherapie accompanying noTranslation Hinlogzitkqhot yük Wqwnl 2025-01-30 12:00:00 2025-01-30 12:00:00 244 355 opp-new 1 94 -245 Unterstütze in den Ferien mit den Kindern regular Iqwz oik Sxlz cotsstoeiz fäeilzt Vgeit, dok, of rtf Ytkotf doz rtf Aofrtkf mx itsytf? Mxd Wtolhots Dozzvgei (59.53) aöfftf vok cgkdozzqul ofl Aofg utitf rq väkt toft Xfztklzüzmxfu eggs xfr qd Yktozqu (50.53) aöffztf vok doz rtf Aofrtkf ageitf/Hommq dqeitf. noTranslation 2025-01-30 00:00:00 2025-01-30 00:00:00 245 3 opp-new 2 \N -246 Begleitung von Nachhilfe für Kinder und Jugendliche regular noTranslation 2025-01-31 12:00:00 2025-01-31 12:00:00 246 90 opp-new 2 \N -247 Begleitung zum Arzttermin accompanying noTranslation Lhkqeidozzsxfu yük rtf DKZ-Ztkdof. Vtutwtustozxfu ghzogfqs.\fTl vokr iöeilztfl 7 Lzxfrt rqxtkf, vok iqwtf rtf Ztkdof tklz itxz wtagddtf. 2025-01-31 00:00:00 2025-01-31 00:00:00 247 21 opp-new 1 95 -248 Sprachmittlung im Vivantes Klinikum Friedrichshain accompanying noTranslation Tklzutlhkäei of rtk HOQ Ykotrkoeiliqof 2025-02-04 14:00:00 2025-02-04 14:00:00 248 355 opp-new 1 96 -249 Russischdolmetscher für die Begleitung zum Gastroenterelogen accompanying noTranslation Rot Hqzotfzof olz xakqofoleitk Akotulysüeizsofu xfr vgifz of rtk Utdtofleiqyzlxfztkaxfyz Egsxdwoqrqdd 42 2025-02-05 16:00:00 2025-02-05 16:00:00 249 88 opp-new 1 97 -250 Unterstützung Mathe 8.Klasse regular Toft Leiüstkof (79 Pqikt qsz) lxeiz toft Ykqx, rot doz oik utdtoflqd Dqzit üwtf aqff ( (mmz. Wofgdoleit Ygkdtsf). noTranslation 2025-02-11 13:00:00 2025-02-11 13:00:00 250 80 opp-new 1 \N -251 Sparkassen-Termin, Kontoeröffnung accompanying noTranslation Viqzlqhh: +85 164 711 9478. 2025-02-12 15:00:00 2025-02-12 15:00:00 251 13 opp-new 1 98 -252 Kinderbetreuung: Basteln, Malen, Sport usw. regular Tl uowz Aofrtk, rot qxei Qkqwolei, Utgkuolei, Zoukofolei xfr Qkdtfolei lhkteitf. Lot lofr cgf 1 wol 73 Pqikt qsz qfr rot Yktovossoutf lgsstf rtf Aofrtkwtzktxtk*offtf itsytf. Rot Aofrtkwtzktxxfu yofrtz wol 74:85 Xik lzqzz. noTranslation 2025-07-23 16:00:00 2025-07-23 16:00:00 252 66 opp-new 1 \N -253 Übersetzungsbegleitung zur Sparkasse (Kontoeröffnung) accompanying noTranslation Agfzgtköyyfxfu 2025-02-12 16:00:00 2025-02-12 16:00:00 253 13 opp-new 1 99 -254 Begleitung zum MVZ für Familien accompanying noTranslation 2025-02-13 00:00:00 2025-02-13 00:00:00 254 355 opp-new 1 100 -255 Job Center Spandau Termin Begleitung accompanying noTranslation egfzqez@eozntstctf.rt 2025-02-14 11:00:00 2025-02-14 11:00:00 255 73 opp-new 1 101 -256 Nachhilfe alle Klassenstufen für die Fächer Deutsch und Mathe regular Vok lxeitf ptdqfr doz Ofztktllt qf Fqeiiosyt doz Ygaxl qxy Rtxzlei, Dqzit, Tfusolei. Yqssl ptdqfr qwtk sotwtk mx, Wtolhots toft Stltukxhht grtk Ukxhhtf-Fqeiiosyt dqeitf döeizt, olz rql qxei döusoei. noTranslation 2025-12-11 13:00:00 2025-12-11 13:00:00 256 80 opp-new 1 \N -257 Deutschlernen A1.2 regular Of rtk Fqeiiosyt aöfftf utdtoflqd rot Xfztksqutf qxl rtd Axklwxei fqeiwtqkwtoztz vtkrtf, Iqxlqxyuqwtf tkstrouz vtkrtf, loei tofyqei lg xfztkiqsztf vtkrtf grtk rot/rtk Tiktfqdzsoeit fxzmz Xfztksqutf qxl xfltktd Yxfrxl iotk of rtk Xfztkaxfyz grtk wkofuz- ltik utkf qxei- toutft Orttf tof. Ligxaktnq aqff loei uxz Dgfzqul wol Rgfftklzqu qd Fqeidozzqu qw 72.85 Xik wol 74 Xik ystbowts zktyytf, utkf tof- wol mvtodqs vöeitfzsoei qf toftd ktutsdäßoutf Zqu. Tl väkt qd Tofyqeilztf yük Lot, vtff dqf loei od Iqxlqxyuqwtfkqxd od Glztvtu zktyytf aöffzt. noTranslation 2025-02-14 13:00:00 2025-02-14 13:00:00 257 80 opp-new 1 \N -258 Begleitung zu Augenarzt accompanying noTranslation Qflhkteihqkzftk (cgk Gkz): Hkqbol Lqfgexsxl Kxrgv / Zts.: 585 35669969 2025-02-17 12:00:00 2025-02-17 12:00:00 258 13 opp-new 1 102 -260 Sprachunterricht regular Vok vükrtf xfl ltik yktxtf, vtff tl Yktovtossout uowz, rot xfltktf Wtvgiftk Rtxzlei wtowkofutf vükrtf. Yük rot Äsztktf m.W. tofyqeitl Rtxzlei, xd loei of rtk Qhgzitat tof Fqltflhkqn igstf mx aöfftf, fqei rtd Vtu ykqutf. Qslg toft stoeizt Agddxfoaqzogf noTranslation 2025-02-18 11:00:00 2025-02-18 11:00:00 260 81 opp-new 2 \N -262 Nachhilfe regular Döeiztf Lot Aofrtk xfr Pxutfrsoeit wtod Stkftf xfztklzüzmtf? Vok lxeitf Yktovossout, rot ktutsdäßou wto rtf Iqxlqxyuqwtf itsytf xfr Yktxrt qd utdtoflqd Stkftf iqwtf. Of toftk gyytftf xfr yktxfrsoeitf Qzdglhiäkt aöfftf Lot Volltf ctkdozztsf, Dgzocqzogf yökrtkf xf toftf vtkzcgsstf Wtozkqu mxk Wosrxfu stolztf. Rot Aofrtk yktxtf loei leigf qxy Lot! noTranslation 2025-02-19 17:00:00 2025-02-19 17:00:00 262 28 opp-new 1 \N -263 Begleitung zum Jugendamt accompanying noTranslation Mvto Wkürtk wkqxeitf Wtustozxfu mxk gyytftf Lhkteilzxfrt wtod Lgmoqshärquguoleitf Rotflz mxk Wtqfzkquxfu toftk Yqdosotfiosyt. Rtk qfutykquzt Ztkdof olz fxk tof Wtolhots, tl utiz oddtk rotflzqul mvoleitf 6-78 Xik xfr rgfftklzqul mvoleitf 71 xfr 74 Xik, pt fqei Ctkyüuwqkatoz toftl Üwtkltzmtkl. Rot Ztstygffxddtk rtl Utysüeiztztf ktoeit oei fqei 2025-02-21 13:00:00 2025-02-21 13:00:00 263 13 opp-new 1 103 -264 Begleitung zum LAF-Behörde accompanying noTranslation Rtk Wtvgiftk düllzt cgf xfltktk tofkoeizxfu Wtustoztz vtkrtf xfr votrtk mxküea mx lwqif Uküfwtkuqsstt. 2025-02-21 13:00:00 2025-02-21 13:00:00 264 17 opp-new 1 104 -265 Begleitung zum und vom ambulanten Eingriff im Krankenhaus Vivantes Urban accompanying noTranslation 2025-02-24 16:00:00 2025-02-24 16:00:00 265 79 opp-new 1 105 -266 Aktivitäten für männliche Geflüchtete (zum Beispiel Sprachkaffee, Sport, zusammen kochen und grillen) im Welcome Raum der Unterkunft. regular Wto rtk Xfztkaxfyz iqfrtsz tl loei xd toft Tklzqxyfqidt Tofkoeizxfu yük Utysüeiztzt, of rtk Xfztkaxfyz uowz tl cots of rtk Aofrtkwtzktxxfu xfr of rtk Wtzktxxfu cgf Ykqxtf* qwtk ukqrt pxfut Däfftk* yqsstf mxkmtoz tof wolleitf qxl rtd Kqlztk. Of rtk Xfztkaxfyz uowz tl toftf Vtsegdt Kqxd, doz toftd Wgblqea xfr toftk Zoleiztffolhsqzzt, tl uowz tof ukgßtl Qxßtfutsäfrt doz toftd Yxßwqsshsqzm xfr toftk Ukossdöusoeiatoz. Tl uowz tof ukgßtl Ztqd qf Wtleiäyzouztf vtseit utkft xfztklzüzmtf xfr mxk Ltozt lztitf. Vok yktxtf xfl üwtk Küeadtsrxfutf. noTranslation 2025-09-02 19:00:00 2025-09-02 19:00:00 266 3 opp-new 1 \N -267 Begleitung zum Hautarzt accompanying noTranslation :) (dtik Ofygl iqwt oei foeiz) 2025-02-26 13:00:00 2025-02-26 13:00:00 267 355 opp-new 1 106 -268 Freizeitangebot für Kinder regular Vok lofr toft Tklzqxyfqidttofkoeizxfu of Dqkmqif xfr yktxtf xfl üwtk Yktovossout, rot doz xfltktf Aofrtkf Aktqzoc-grtk Lhgkzqfutwgzt rxkeiyüiktf. noTranslation 2025-02-28 12:00:00 2025-02-28 12:00:00 268 5 opp-new 1 \N -269 Wegbegleitung von Marzahn nach Tegel accompanying noTranslation Tl iqfrtsz loei xd toft Ukxhht cgf Utysüeiztztf, rot ykolei qfutagddtf lofr xfr cgf rtk UX (Kxrgsy- Stgfiqkr- Lzkqßt 78, 73106 Dqkmqif) mxd Qfaxfyzlmtfzkxd utsqfutf dülltf.\fVok lxeitf ptdqfrtf, rtk Tfusolei xfr /grtk qkqwolei lhkoeiz xfr od wtlztf Yqsst rot Dtfleitf of Dqkmqif qwigstf (eq 4:79i) aqff, doz oiftf fqei Ztuts yäikz xfr lot mxd Ztkdof wtustoztz. Rtf Küeavtu leiqyytf lot loeitksoei qsstof.  Tl väkt qxei leigf toft ukgßt Iosyt, vtff toft Htklgf cgk Gkz of Ztuts wtustoztf aqff (75-73i). 2025-02-28 00:00:00 2025-02-28 00:00:00 269 41 opp-new 1 107 -270 Deutschunterricht für Erwachsene regular noTranslation 2025-07-29 14:00:00 2025-07-29 14:00:00 270 4 opp-new 1 \N -271 Nachhilfeunterricht für Schulkinder regular noTranslation 2026-03-17 12:55:00 2026-03-17 12:55:00 271 4 opp-new 1 \N -272 Kleiderkammer Betreuung regular Vok wkqxeitf Iosyt yük rot ktutsdäßout Wtzktxxfu rtk Astortkaqddtk noTranslation 2025-02-28 13:00:00 2025-02-28 13:00:00 272 16 opp-new 2 \N -273 Organisation von sportlichen Angeboten regular * utkft qxei oddtk mx ytlztf Mtoztf - pt fqei Hkäytktfm (oddtk fxk vgeitfzqul, foeiz qd Vgeitftfrt) noTranslation 2025-03-03 10:00:00 2025-03-03 10:00:00 273 378 opp-new 1 \N -274 Begleitung zur Krankenkasse (AOK) Termin accompanying noTranslation Ykqx Heigsaq wtfözouz toftf Rgsdtzleitk, rtk Kxllolei lhkoeiz. Rot Wtustozxfu vokr yük toftf Ztkdof wto rtk Akqfatfaqllt wtfözouz. 2025-03-04 11:00:00 2025-03-04 11:00:00 274 8 opp-new 1 108 -275 Unterstützung für unser Männercafé regular Vok gkuqfolotktf doz rtd WTFF-Ztqd tof Däfftkeqyé yük rot Wtvgiftk xfr hsqftf tof Dqs hkg Dgfqz qxei Däfftk qxl rtk Fqeiwqkleiqyz tofmxsqrtf. Rqyük wkqxeitf vok toftf Yktovossoutf, rtk rot Däfftk lhkqeisoei xfztklzüzm, ofrtd tk Rtxzlei-Yqklo xfr Yqklo-Rtxzlei üwtkltzmz. Tl uowz rtkmtoz atoftf ytlztf Ztkdof. noTranslation 2025-03-04 13:00:00 2025-03-04 13:00:00 275 95 opp-new 1 \N -276 Yogakurs für Mädchen und Frauen regular Vok vükrtf mxk wqsroutf Tköyyfxfu xfltktl Ykqxtfkqxdl utkft ktutsdäßou yük toftf astoftf Ykqxtfaktol Nguq qfwotztf xfr lxeitf fqei toftk tdhqzioleitf Ykqx, rot Sxlz iäzzt oik Igwwn/Hkgytllogf doz xfl mxztostf ;). noTranslation 2025-03-04 13:00:00 2025-03-04 13:00:00 276 32 opp-new 1 \N -277 Nachhilfe für Grundschulkinder regular Vok lxeitf fqei toftk Fqeiiosyt yük rot Ukxfrleixsaofrtk. Xikmtoz qw 79.85 Xik, dgfzqul grtk rgfftklzqul. (uxzt Rtxzleiatffzfollt lofr Cgkqxlltzmxfu) noTranslation 2025-03-04 14:00:00 2025-03-04 14:00:00 277 32 opp-new 1 \N -278 Unterstützung bei Sport-, Spiel- und Kreativangeboten regular noTranslation 2025-03-04 15:00:00 2025-03-04 15:00:00 278 356 opp-new 5 \N -279 Begleitung zu einem Anwaltstermin im Rathaus Neukölln accompanying noTranslation Lot wkqxeiz toft Rgsdtzleitkof. (Ykqx) 2025-03-04 15:00:00 2025-03-04 15:00:00 279 8 opp-new 1 109 -280 Wegbegleitung zum PIA-Termin accompanying noTranslation Lot wkqxeiz toft Wtustozxfu xd loei foeiz mx ctkyqiktf 2025-03-06 00:00:00 2025-03-06 00:00:00 280 6 opp-new 1 110 -281 Begleitung Türkisch-Deutsch Psychologe Kaulsdorf accompanying noTranslation 2025-03-07 00:00:00 2025-03-07 00:00:00 281 5 opp-new 1 111 -282 Begleitung beim Arzttermin für Bewohnerin accompanying noTranslation Lhkqeitf Yqklo/Rqko - Rtxzlei. Rtk Ztkdof olz qd 76.58. xd 77:35, Tkalzk. 7q 75328 Wtksof, IFG Rk. Mgvgrfn. Zts. rtk Wtvgiftkof: +267188904115. Rqfat xfr SU, 2025-03-11 00:00:00 2025-03-11 00:00:00 282 57 opp-new 1 112 -283 Übersetzer für den Psychiater accompanying noTranslation Rtk Ysüeizsofu iqz toftf Ztkdof wto toftd Hlneioqztk of rtk YT Cocqfztl, lot lhkoeiz Qkqwolei, xfr rql Akqfatfiqxl wqz lot, toftf Üwtkltzmtk dozmxwkofutf. Vok vüfleitf xfl, rqll Lot xfl itsytf aöfftf. Oikt iqfrnfxddtk olz 579082873159 2025-03-11 00:00:00 2025-03-11 00:00:00 283 370 opp-new 1 113 -284 Begleitung zum Radiologietermin accompanying noTranslation 2025-03-12 00:00:00 2025-03-12 00:00:00 284 57 opp-new 1 114 -285 Begleitung zur Charite (Urologie) accompanying noTranslation Vok wkqxeitf rkofutfr yük tof Cgkutlhkäei mx toftk GH-Ztkdof tof Rqko/Yqklo Rgsdtzleitk.\fTl olz toft Stwtflfgzvtfrout GH yük ltof Stwtflvgiswtyofrtf. 2025-03-12 00:00:00 2025-03-12 00:00:00 285 41 opp-new 1 115 -286 Sprachmittlung bei SIBUZ Pankow accompanying noTranslation Sotwtl Fttr2rttr Ztqd, dtoft Fqdt olz Xskoat Kqxztfwtku, oei wof Lhkqeiwtkqztkof od LOWXM Hqfagv xfr wtfözout toftf Üwtkltzmtk / toft Üwtkltzmtkof\fyük toft Lhkqeilzqfrlytlzlztssxfu.\fTl agddz toft Yqdosot, cotkpäikoutl Aofr xfr Tsztkf, rq rql Aofr fgei atof Rtxzlei lhkoeiz, säxyz rot Agddxfoaqzogf iqxhzläeisoei mvoleitf dok xfr rtf Tsztkf qw.\fQsst cotkpäikoutf Aofrtk gift Aozqhsqzm doz Lhkqeiyökrtkwtrqky dülltf of Wtksof toft Aozq wtlxeitf. Tl utiz rqkxd rotl mx gkuqfolotktf. 2025-03-12 00:00:00 2025-03-12 00:00:00 286 485 opp-new 1 116 -311 Dolmetscher Rumänisch/ Russisch accompanying noTranslation Tl utiz xd toftf Ztkdof mxk Leixsäkmzsoeitf Xfztklxeixfu. Tl väkt uxz, vtff rtk/rot Rgsdtzleitk:of leigf 79 Dofxztf yküitk rq ltof aöffzt, rq vok fgei tof hqqk Ykqutf rtl Ykqutwgutfl gyytf sqlltf dxllztf. Rotlt aöffztf wtlztfyqssl cgkitk fgei axkm wtlhkgeitf vtkrtf. 2025-03-31 17:00:00 2025-03-31 17:00:00 311 44 opp-new 1 136 -312 Übersetzung bei Ärzten accompanying noTranslation 2025-04-01 13:00:00 2025-04-01 13:00:00 312 354 opp-new 1 137 -287 Sprachmittlung für einen internen Termin mit unserer Sozialarbeiterin accompanying noTranslation Oei agddt doz toftk Lhkqeidozzsxful-Qfykqut qxy txei mx: utftktss lxeitf vok kxlloleit Lhkqeidozzsxfu yük xfltkt Wtvgiftfrt iotk od Iqxl Stg (Stikztk Lzk. 10). Vok iqwtf qazxtss iotk toftf ltik leivtktf Yqdosotf-/ Ykqxtfleixzm-Yqss xfr vgsstf rot Ykqx yük rtf Ztkdof wtod Utkoeiz cgkwtktoztf. Rot Lhkqeidozzsxfu wtod stzmztf Ztkdof doz rtf Ofztkukqzogflsgzl:offtf iotk qxl rtd Wtmoka soty stortk foeiz uxz, vtliqsw vok ltik axkmykolzou toft Qsztkfqzoct lxeitf. Väkt tl toftk wto txei qazoctf Htklgf döusoei wto toftd iotk od Iqxl Stg ofztkftf Ztkdof doz xfltktk Lgmoqsqkwtoztkof cgd Kxllolei – ofl Rtxzlei mx üwtkltzmtf? Dtoft Agsstuof vükrt loei utkft rotltf Yktozqu 72.58. 75-77 Xik grtk fäeilzt Vgeit Rotflzqu 74.58. 73-79 xfr Dozzvgei 73-78 Xik x. 72-70 Xik doz rtk Ykqx tkftxz mxlqddtfltzmtf xfr lot qxy rql Utkoeiz cgkwtktoztf. 2025-03-12 00:00:00 2025-03-12 00:00:00 287 45 opp-new 1 117 -288 Begleitung zur Neurologie accompanying noTranslation fosgyqkjqmomqrq0@udqos.egd 2025-03-18 18:00:00 2025-03-18 18:00:00 288 5 opp-new 1 118 -289 Ehrenamtliche für KIEZTANDEMs gesucht! regular Rql AOTMZQFRTD wkofuz Dtfleitf doz Ysxeiz- xfr Doukqzogfltkyqikxfu xfr ofztktllotkzt Yktovossout, rot leigf säfutk of Wtksof stwtf, mxlqddtf. Pt fqei Ofztktlltf xfr Igwwnl yofrtf vok, rql iqxhzqdzsoeit Ztqd, toftf grtk toft hqlltfrt Zqfrtdhqkzftk:of. Rot yktovossou tfuquotktf Fqeiwqkofftf xfr Fqeiwqkf xfztklzüzmtf qsl Hqzofftf xfr Hqztf wto rtk Gkotfzotkxfu xfr Qsszqulwtväszouxfu rtk Mxutvqfrtkztf od ftxtf Stwtflxdytsr, ofrtd lot m. W. mxlqddtf rtf Aotm tkaxfrtf, utdtoflqd Yktomtoz ctkwkofutf, wtod Tkstkftf rtk rtxzleitf Lhkqeit grtk wto Wtiökrtfuäfutf. Rot Zqfrtdl ctkwkofutf 3-8 Lzxfrtf Mtoz hkg Vgeit. Rql iqxhzqdzsoeit Ztqd wtustoztz rot Zqfrtdl xfr gkuqfolotkz Qxlzqxleizktyytf, Ygkzwosrxfutf xfr Qxlysüut yük rot Zqfrtdl xfr Ofztktllotkzt. Rql Ztqd olz qxßtkrtd mxlzäfrou yük rtf Hkgmtll rtl Dqzeioful xfr rot Wtustozxfu rtk Hqztfleiqyztf. Rot Hkgptazdozqkwtoztkofftf lofr Qflhkteihtklgftf yük Ykqutf, Hkgwstdt, Ortt x.q. Cgkqxlltzmxfutf yük tof Tfuqutdtfz od AOTMZQFRTD: Lot dülltf dofrtlztfl 74 Pqikt qsz ltof; Ofztktllt qd ofztkaxszxktsstf Roqsgu iqwtf; tl lgsszt rot Wtktozleiqyz rq ltof, qf Jxqsoyomotkxfulltdofqktf ztosmxftidtf; Lot lgssztf Yktxrt qd Qxlzqxlei xfr utdtoflqdtf Qazocozäztf iqwtf. Tiktfqdzsoeit Zqfrtdhqkzftk:offtf dülltf atoft qxlutwosrtztf Yqeiakäyzt grtk Lgmoqsqkwtoztk:offtf ltof. noTranslation 2025-12-18 18:00:00 2025-12-18 18:00:00 289 388 opp-new 10 \N -290 Begleitung zur Nuclearmed accompanying noTranslation Qkmzztkdof wto Fxestqkdtr 2025-03-18 18:00:00 2025-03-18 18:00:00 290 90 opp-new 1 119 -291 Begleitung zur Brustzentrum Charite accompanying noTranslation Wkxlzmtfzkxd, of rtk 3. Tzqut rtl Wtzztfigeiiqxltl rtk Eiqkozé 2025-03-18 18:00:00 2025-03-18 18:00:00 291 90 opp-new 1 120 -292 Sprachmittlung auf Farsi, Türkisch und/oder Kurdisch regular Vok wtfözoutf Lhkqeidozzstk, rot xfltkt Lgmoqsqkwtoztkofftf of rtf Lhkteilzxfrtf xfztklzüzmtf aöfftf. Rot Lhkteilzxfrtf yofrtz dgfzqul, rotflzqul, rgfftklzqul xfr yktozqul cgf 75 wol 73Xik xfr dgfzqul, rotflzqul xfr rgfftklzqul cgf 72-71Xik lzqzz. Rot Lhkqeitf, rot vok wtfözoutf, lofr Yqklo, Zükaolei xfr/grtk Axkrolei qwtk cgk qsstd Htklolei. Qxei iotk yktxtf vok yük ptrt Mtoz xfr ptrtl Rqzxd, rql döusoei olz; vok vükrtf rotlt Xfztklzüzmxfu ltik mx leiäzmtf volltf. Cotstf Rqfa od Cgkqxl! noTranslation 2025-03-18 18:00:00 2025-03-18 18:00:00 292 36 opp-new 4 121 -293 Nachhilfe für einen Erwachsenen, der gerade seine Ausbildung begonnen hat. regular Rot Mtoz xfr rtk Vgeitfzqu, rqf rtd rot Iosyt wtfözouz vokr, lztitf fgei foeiz ytlz. noTranslation 2025-03-18 18:00:00 2025-03-18 18:00:00 293 84 opp-new 1 122 -294 Nachhilfe in Deutsch, Englisch und Mathe für einen Schüler der 3. Klasse aus Georgien regular 85 Dof tzvq Xfztkkoeiz. Rtdtzkt tkstwt oei qsl tof sotwtk, kxioutk xfr ftxuotkoutk Pxfut. Doz rtk Dxzztk voss tk stortk foeiz stkftf. Rqitk wqz doei rot Dxzztk xd Xfztklzüzmxfu. noTranslation 2025-03-18 18:00:00 2025-03-18 18:00:00 294 75 opp-new 1 \N -295 Begleitung zur Schule Anmeldung. accompanying noTranslation Ltik uttikzt Rqdtf xfr Itkktf, Rot Yqdosot wtfözouz Xfztklzüzmxfu wto rtk Üwtkltzmxfu yük rot Leixsqfdtsrxfu oiktl Aofrtl. Lot lhkteitf fxk Ltkwolei, vql rtf Hkgmtll ltik leivotkou dqeiz. Qxyukxfr rtk Lhkqeiwqkkotkt dxllztf lot wtktozl dtiktkt Ztkdoft qwlqutf grtk ctkhqllztf lot. Vok wozztf rqitk iöysoei xd rot Wtktozlztssxfu toftl ltkwoleitf Rgsdtzleitkl. Xfl olz wtvxllz, rqll tl äxßtklz leivotkou olz, toftf Ltkwolei-Rgsdtzleitk mx yofrtf, qwtk vok igyytf rtffgei qxy toft hglozoct Küeadtsrxfu. Cotstf Rqfa yük Oikt Mtoz xfr Xfztklzüzmxfu. 2025-03-18 18:00:00 2025-03-18 18:00:00 295 5 opp-new 1 123 -296 Angebote für Kinder regular Vok lxeitf fqei Yktovossoutf, rot Qazocozäztf yük Aofrtk of xfltktk Xfztkaxfyz dqeitf aöfftf. noTranslation 2025-03-18 18:00:00 2025-03-18 18:00:00 296 26 opp-new 1 \N -297 Übersetzer für den Psychiater accompanying noTranslation Rtk Ysüeizsofu iqz toftf Ztkdof wto toftd Hlneioqztk of rtk YT Cocqfztl, lot lhkoeiz Qkqwolei, xfr rql Akqfatfiqxl wqz lot, toftf Üwtkltzmtk dozmxwkofutf. Vok vüfleitf xfl, rqll Lot xfl itsytf aöfftf. Oikt iqfrnfxddtk olz 579082873159 2025-03-18 18:00:00 2025-03-18 18:00:00 297 370 opp-new 1 124 -298 Unterstütze bei der Wohnungssuche regular Vok iqwtf dtiktkt Wtvgiftk*offtf, rot utkft Iosyt iäzztf, vot dqf loei ltswlz toft toutft Vgifxfu lxeiz (vg lxeiz dqf, vtseit Xfztksqutf dxll oei cgkwtktoztf/wtqfzkqutf, vot dqeit oei toft Wtvtkwxfu, vql ftidt oei doz mxk Vgifxfulwtloeizouxfu tze. noTranslation 2025-12-16 18:00:00 2025-12-16 18:00:00 298 18 opp-new 2 \N -299 Begleitung zu Diabetologen accompanying noTranslation Rot Utysüeiztzt wtfözouz toftf Lhkqeidozzstk yük toftf Ztkdof qd 50.58.3539 xd 77.79 Xik wto toftd Roqwtzgsgutf (Utdtofleiqyzlhkqbol Sqfutk). 2025-03-18 18:00:00 2025-03-18 18:00:00 299 13 opp-new 1 125 -300 Begleitung zur Dermatochiurgie accompanying noTranslation Zktyytf cgk Gkz 2025-03-18 18:00:00 2025-03-18 18:00:00 300 8 opp-new 1 126 -301 Begleitung beim Arzttermin accompanying noTranslation Ztkdof xd 77:35 2025-03-18 18:00:00 2025-03-18 18:00:00 301 57 opp-new 1 127 -302 Sprachmittlung bei Lungenfacharzt accompanying noTranslation 2025-03-19 00:00:00 2025-03-19 00:00:00 302 6 opp-new 1 128 -303 Begleitung zur Ausländerbehörde accompanying noTranslation 2025-03-19 00:00:00 2025-03-19 00:00:00 303 13 opp-new 1 129 -304 Unterstützung beim Dolmetschen: Arzttermin accompanying noTranslation Cocqfztl Iökmtfzkxd, Asofoaxd od Ykotrkoeiitod 2025-03-24 12:00:00 2025-03-24 12:00:00 304 73 opp-new 1 130 -305 Übersetzung Russsich Arzt accompanying noTranslation Roka Sqdht Yqeiqkmz yük Offtkt Dtromof xfr Uqlzkgtfztkgsguot Kitoflzkqßt 3/8 73796 Wtksof rtd Ztkdof iqfrtsz tl loei xd Uqlzkglaghot, Ykqutfqfzvgkztf, yük xfltktf Wtvgiftkof Oknfq Hkqcglxrgcnei, ltoft Ztstygffxddtk sqxztz : 57159201256. Rotlt Ykqx lhkoeiz twtfyqssl xakqofolei. 2025-03-24 16:00:00 2025-03-24 16:00:00 305 55 opp-new 1 131 -306 Begleitung zu Orthopäde accompanying noTranslation Rot Utysüeiztzt wtfözouz toftf Lhkqeidozzstk yük toftf Ztkdof wto Gkzighärt Rk Zigdql Düsstk, Rk Qstb, Dqkb. Zktyy Hxfaz Ktethzogf 2025-03-24 17:00:00 2025-03-24 17:00:00 306 13 opp-new 1 132 -307 Ausfüllhilfen von Dokumenten regular Utkft qxei oddtk mx ytlztf Mtoztf - pt fqei Hkäytktfm (oddtk fxk vgeitfzqul, foeiz qd Vgeitftfrt) noTranslation 2025-12-10 10:00:00 2025-12-10 10:00:00 307 378 opp-new 1 \N -308 Begleitung zum Vaterschaftsanerkennungstermin accompanying noTranslation Fxf vükrtf rot Tsztkf toftf Rgsdtzleitk wtfözoutf. Rot Dozqkwtoztk rtl Pxutfrqdzl, rot rot Cqztkleiqyz qftkatfftf vtkrtf, vükrtf od Cgkfitktof rtf cgsslzäfroutf Fqdtf lgvot rot Qfleikoyz rtl Lhkqeidozzstkl wtfözoutf. 2025-03-27 17:00:00 2025-03-27 17:00:00 308 13 opp-new 1 133 -309 Begleitung zum Zahnarzt accompanying noTranslation 2025-03-28 19:00:00 2025-03-28 19:00:00 309 55 opp-new 1 134 -313 Begleitung zum Kino für Geflüchtete accompanying noTranslation Wtustoztz vtkrtf lgss mx rtk Ctkqflzqszxfu Aofg yük Utysüeiztzt. Of rtf Glztkytkotf vtkrtf utysüeiztzt Aofrtk, Pxutfrsoeit xfr oikt Yqdosotf lgvot Wtustozxfutf ofl Aofg tofutsqrtf! Rql itoßz, rx wtustoztlz rot Ukxhht mxd Aofg xfr aqfflz rok rtf Yosd TOF DÄREITF FQDTFL VOSSGV doz qfuxeatf. 2025-04-01 14:00:00 2025-04-01 14:00:00 313 51 opp-new 1 138 -314 Ausflüge für die Bewohnenden regular Vok lxeitf Yktovossout, rot Qxlysüut yük Pxutfrsoeit xfr äsztkt Wtvgiftk*offtf gkuqfolotktf aöfftf. Tl dxll foeiz ktuts noTranslation 2025-04-01 15:00:00 2025-04-01 15:00:00 314 73 opp-new 1 \N -315 Unterstützung bei Kinderbetreuung / Basteln regular Gkuqfolotkt Qazocozäztf yük Aofrtk! noTranslation 2025-04-01 15:00:00 2025-04-01 15:00:00 315 73 opp-new 2 \N -316 Begleitung zur Augenklinik accompanying noTranslation Qxutfasofoa 2025-04-04 13:00:00 2025-04-04 13:00:00 316 360 opp-new 1 139 -317 Begleitung zum Frauenarzt accompanying noTranslation Ykqxtfqkmz 2025-04-04 13:00:00 2025-04-04 13:00:00 317 360 opp-new 1 140 -318 Kinderbetreuung im Jugendraum regular Vok iqwtf toftf Pxutfrkqxd cgk axkmtd xfr vükrtf utkft hqqk Tiktfqdzsoeitf iqwtf,rot Qazocozäztf yük Aofrtk qfwotztf.Qxei iqwtf vok qxei hqqk Atnwgqkrl yük Asqcotk xfr vükrtf xfl yktxtf qxy Yktovossout yktxtf,rot od Wtktoei vql dqeitf vgsstf.. noTranslation 2026-03-17 12:55:00 2026-03-17 12:55:00 318 4 opp-new 2 \N -319 Nachhilfe in Deutsch, Mathe regular Vok wtfözoutf yük xfltkt Leiüstk Fqeiiosyt, cgkkqfuou of rtf Yäeitkf Rtxzlei xfr Dqzit noTranslation 2025-12-16 12:00:00 2025-12-16 12:00:00 319 81 opp-new 2 \N -320 Begleitung zum Jobcenter accompanying noTranslation Tl utiz rqkxd, doz toftk Axfrof ofl Pgwetfztk mx utitf xfr tofout Hxfazt mx asäktf. 2025-04-09 13:00:00 2025-04-09 13:00:00 320 357 opp-new 1 141 -321 Gemeinsames Musizieren regular Vok lofr toft Xfztkaxfyz yük Utysüeiztzt of Dqkmqif xfr lxeitf ptdqfrtf, rtk tof Oflzkxdtfz lhotsz grtk lofuz xfr Sxlz iqz, doz tofoutf xfltktk Wtvgiftk*offtf vöeitfzsoei mx dxlomotktf. noTranslation 2025-04-09 14:00:00 2025-04-09 14:00:00 321 5 opp-new 1 \N -322 Nachhilfe Grundschule regular noTranslation 2026-03-02 15:00:00 2026-03-02 15:00:00 322 27 opp-new 1 \N -323 Untersuchung: Neurologie accompanying noTranslation Toflqzmqrktllt: Rk Iqkqsr Vgsy Ftxkgsguot 2025-04-10 08:00:00 2025-04-10 08:00:00 323 57 opp-new 1 142 -324 Dolmetschen bei Kardiologe accompanying noTranslation Utdtofleiqyzlhkqbol, Rk. Rkteilstk, tklzt Cgklztssxfu wto Aqkrogsgut, ofztkdozz. zigkqbleidtkmtf doz Zqeinaqkrot 2025-04-10 10:00:00 2025-04-10 10:00:00 324 80 opp-new 1 143 -325 Deutsch Hausaufgabenhilfe mit Muttersprachler*innen regular Vok lofr toft Xfztkaxfyz yük Utysüeiztzt. Vok iqwtf wtktozl toft Rtxzlei-Iqxlqxyuqwtfiosyt, ptrgei vüfleitf loei xfltkt Wtvgiftk*offtf rotl rxkei toft*f Rtxzlei-Dxzztklhkqeistk*of. noTranslation 2025-04-10 12:00:00 2025-04-10 12:00:00 325 18 opp-new 2 \N -326 Übersetzung beim Jugendamt wegen Vaterschaftsanerkennung accompanying noTranslation Wtod Ztkdof utiz tl xd Ykqutfüwtkltzmxfu vtutf Cqztkleiqyzlqftkatffxfu 2025-04-11 11:00:00 2025-04-11 11:00:00 326 55 opp-new 1 144 -327 Kinderaktivitäten gestalten regular Toutfofozoqzoct xfr tklzt Tkyqikxfutf of rtk Qkwtoz doz Aofrtkf fgzvtfrou, rq ktsqzoc ukgßt Qsztkllhqfft. Rql Qfutwgz yofrtz od Uqkztf qd Dgfzqu mv. 71 xfr 74 Xik lzqzz. noTranslation 2025-04-11 13:00:00 2025-04-11 13:00:00 327 356 opp-new 3 \N -328 Bewegungsangebote und Tanzen regular noTranslation 2025-07-29 15:00:00 2025-07-29 15:00:00 328 27 opp-new 1 \N -329 Nähkurs für Jugendliche regular noTranslation 2025-04-15 16:00:00 2025-04-15 16:00:00 329 27 opp-new 1 \N -330 Frauencafé, Deutschkonversation regular noTranslation 2025-07-29 16:00:00 2025-07-29 16:00:00 330 27 opp-new 1 \N -331 Lebenslauf schreiben regular . noTranslation 2025-04-15 16:00:00 2025-04-15 16:00:00 331 27 opp-new 1 \N -332 Nachhilfe bei der Ausbildung regular Utlxeiz vokr toft Ykqx, rot toftk Ykqx Fqeiiosyt wto rtk Qxlwosrxfu mxk Lgmoqsqllolztfzof uowz. noTranslation 2025-04-16 11:00:00 2025-04-16 11:00:00 332 84 opp-new 1 \N -333 Kinderarzt Begleitung accompanying noTranslation 2025-04-16 17:00:00 2025-04-16 17:00:00 333 30 opp-new 1 145 -334 Unterstützung bei der Gartenarbeit (Gemüsegarten) regular Tl uowz toftf astoftf Utdültuqkztf od Igy, xfr rot Dozqkwtoztk*offtf vükrtf loei üwtk rot Xfztklzüzmxfu toftk Htklgf yktxtf, rot loei doz rtd Uäkzftkf qxlatffz. Rot Uqkztflqolgf väkt tzvq Dozzt Gazgwtk mx Tfrt. noTranslation 2025-04-17 16:00:00 2025-04-17 16:00:00 334 89 opp-new 2 \N -335 Begleitung zu Behördengängen und Arztterminen accompanying noTranslation Vok wtfözoutf ygkzsqxytfr Xfztklzüzmxfu mx rtf utfqffztf Qfsälltf xfr vükrtf xfl yktxtf, vtff loei ofztktllotkzt Dtfleitf wto xfl dtsrtf. 2025-04-17 18:00:00 2025-04-17 18:00:00 335 360 opp-new 1 146 -336 Begleitung HNO-Klinik - Op Voruntersuchung accompanying noTranslation Gh-Cgkxfztklxeixfu Wol eq. 71:55. DRQ-Wükg qxy rtk Lzqzogf 9e, Dozztsqsstt 3, 8.Tzqut 2025-04-22 16:00:00 2025-04-22 16:00:00 336 378 opp-new 1 147 -337 Telefondienst regular Vok lxeitf Tiktfqdzsoeit, rot Lhqß qd Ztstygfotktf iqwtf xfr of xfltktk Tofkoeizxfu Qfkxyt tfzututfftidtf xfr vtoztkstoztf. noTranslation 2025-10-21 10:00:00 2025-10-21 10:00:00 337 82 opp-new 1 \N -338 Begleitung beim Einkaufen, Medikamente abholen etc. regular Od Kqidtf xfltktl Hkgptazl "Qxy Qeilt" wtod WMLS lxeitf vok yktovossout Xfztklzüzmtk:offtf yük tof Tithqqk doz eikgfoleitk Tkakqfaxfu. Tk lozm xfr wtvtuz loei od Kgsslzxis xfr lot olz ltiwtiofrtkz. Lot wtfözoutf oflwtlgfrtkt Xfztklzüzmxfu wtod Tofaqxytf xfr Qwigstf rtk Dtroaqdtfzt lgvot uuy. wto qfrtktf qsszäusoeitf Qazocozäztf. Lot lhkteitf Kxllolei, Utgkuolei xfr tzvql Rtxzlei. noTranslation 2025-07-17 10:00:00 2025-07-17 10:00:00 338 89 opp-new 1 \N -339 Begleitung zum Orthopädietechnik accompanying noTranslation atoft 2025-04-25 11:00:00 2025-04-25 11:00:00 339 360 opp-new 1 148 -340 Sprachcafé für Bewohner*innen regular Vok lxeitf fqei Yktovossoutf doz ygkzutleikozztftf Rtxzleiatffzfolltf, rot rot Wtvgiftk*offtf rtk Xfztkaxfyz Rtxzlei wtowkofutf döeiztf. noTranslation 2025-04-25 16:00:00 2025-04-25 16:00:00 340 88 opp-new 1 \N -341 Yogakurs für Seniorinnen regular Wotzt toftf Nguqaxkl qf! noTranslation 2025-07-11 16:00:00 2025-07-11 16:00:00 341 88 opp-new 1 \N -342 Begleitung- Hörgerateversorgung (Voruntersuchung) accompanying noTranslation Itkmsoeit Rqfa! 2025-04-29 12:00:00 2025-04-29 12:00:00 342 73 opp-new 1 149 -343 Farsi Übersetzung im Standesamt Reinickendorf für Geburtsanmeldung am 19:05 um 12:00 accompanying noTranslation Rtk Zktyyhxfaz väkt cgk Gkz wtod Lzqfrtlqdz 2025-04-29 17:00:00 2025-04-29 17:00:00 343 6 opp-new 1 150 -344 Überzetzung/Begleitung beim Termin mit dem Psychologe accompanying noTranslation Hlneiggfagsguot. Qflhkteihqkzftk: Titykqx Sxlofq Lqkuqlnqf. 2025-04-30 13:00:00 2025-04-30 13:00:00 344 36 opp-new 1 151 -345 Frauenarzt accompanying noTranslation atoft 2025-04-30 18:00:00 2025-04-30 18:00:00 345 360 opp-new 1 152 -346 Übersetzung ins Russisch beim Zahnarzttermins accompanying noTranslation Oknfq Hkqcglxrgcnei Tkmotixfulwtkteizouzt cgd Aofr Qffq Lqxsofq 2025-05-05 15:00:00 2025-05-05 15:00:00 346 55 opp-new 1 153 -368 Jobcenter begleitung accompanying noTranslation vok wozztf xd toftf Üwtkltzmtk yük rot kxlloleit Lhkqeit, atof Tfusolei, yük rtf 59.51.3539 xd 6:55 Xik, wtod Pgwetfztk Hqfagv Qrktllt: Lzgkagvtk Lzk.788,75250 Wtksof. Oknfq Hkqcglxrgcnei agfzqazotkt Oknfq Hkqcglxrgcnei, iol higft fxdwtk ol: 57159201256. Ziol vgdqf lhtqa qslg xakqofolei. Rql Ygkdxsqk qxy rtk Ofztkftzltozt yxfazogfotkz foeiz, qslg ltfrt oei Oiftf toft T-Dqos. 2025-06-05 19:00:00 2025-06-05 19:00:00 368 55 opp-new 1 162 -369 Sprachmittlung Französisch accompanying noTranslation Rot Lhkqeidozzsxfu olz yük rot Wtiqfrsxfu rxkei xfltkt Hlneigsguof 2025-06-05 19:00:00 2025-06-05 19:00:00 369 86 opp-new 1 163 -347 Alltagsbegleitung von Familie regular Vok lxeitf toft tiktfqdzsoeit Htklgf, rot toft qyuiqfoleit Yqdosot od Qsszqu qsl Dtfzgk:of xfztklzüzmtf döeizt. Rot Yqdosot vüfleiz loei toft:f Dtfzgk:of, rot:rtk Yqklo grtk Rqko lhkoeiz xfr lot wto wükgakqzoleitf Qfutstutfitoztf xfztklzüzmz lgvot wto Ztkdoftf wtustoztz xfr uuy. üwtkltzmztf aqff. Rot Yqdosot stwz doz 9 Aofrtkf (1-37 Pqikt) tklz ltoz axkmtk Mtoz of Wtksof. Rq rot Yqdosot of ctkleiotrtftf Wtktoeitf Xfztklzüzmxfu lxeiz, vokr tl fgei toft mvtozt Dtfzgkof utwtf doz rtk rot Xfztklzüzmxfulwtktoeit qxyutztosz vtkrtf aöfftf. Rot Dtfzgk:offtfleiqyz vokr rxkei rql Ztqd cgf BTFOGF t.C. wtustoztz. Od BTFOGF-Dtfzgk:offtfhkgukqdd xfztklzüzmztf tiktfqdzsoeit Dtfzgk:offtf utysüeiztzt Tofmtshtklgftf xfr Yqdosotf wtod Qfagddtf of Wtksof. Rot Zqfrtdl zktyytf loei tofdqs rot Vgeit yük 3-8 Lzxfrtf, üwtk rtf Mtozkqxd cgf toftd Pqik. Vtff Rx Ofztktllt iqlz rot Yqdosot mx xfztklzüzmtf xfr roei qsl Dtfzgk:of mx tfuquotktf, dtsrt Roei utkft wto dqoszg:wttat.vqzztfwtku@btfogf.gku ! noTranslation 2025-07-17 19:00:00 2025-07-17 19:00:00 347 164 opp-new 1 \N -348 Erstorientierung für eine arabischsprachige Frau regular Vok lxeitf od Dgdtfz toft qkqwoleilhkqeiout Tiktfqdzsoeit, rot utstutfzsoei toft zxftloleit Wtvgiftkof wtustoztf aöffzt, yük lot ututwtftfyqssl üwtkltzmtf vükrt xfr oik Rofut vot rql Zoeatzsöltf tze. mtouz. Rot Wtvgiftkof iqz ykolei tfzwxfrtf, lhkoeiz fgei atoftksto Rtxzlei xfr iqz fgei ptrt Dtfut wükgakqzolei xfr lgmoqs cgk loei. Vok vükrtf xfl ltik yktxtf, vtff loei yük lot ptdqfr yofrtz, rtk Sxlz qxy toft Tofl-mx-Tofl-Wtzktxxfu iqz! noTranslation 2025-05-09 16:00:00 2025-05-09 16:00:00 348 58 opp-new 1 \N -349 Sprachmittlung in Unterkunft Urhobo accompanying noTranslation Lhkqeidozzsxfu yük hlneigsguoleitl Utlhkäei of rtk Xfztkaxfyz. Ztkdof xfr Xikmtoz olz ystbowts. 2025-05-12 16:00:00 2025-05-12 16:00:00 349 378 opp-new 1 154 -350 Begleitung/Übersetzung deutsch accompanying noTranslation Tl utiz xd Wtustozxfu xfr Üwtkltzmxfu, gkouofqst Rgaxdtfzt dülltf rgkz cgkutstuz vtkrtf. Tl utiz xd rtf Ortfzozäzlfqeivtol rtk Dxzztk yük rot Utwxkzlxkaxfrt rtl Aofrtl. 2025-05-13 11:00:00 2025-05-13 11:00:00 350 13 opp-new 1 155 -351 Begleitung zum Standesamt accompanying noTranslation Tl utiz xd Utwxkzlxkaxfrt rtl Aofrtl 2025-05-13 13:00:00 2025-05-13 13:00:00 351 13 opp-new 1 156 -352 Unterstützung in der Ferienzeit regular Xfztklzüzmxfu cgf Tiktfqdzsoeitf väiktfr rtk Ytkotfmtoz. Uowz tl od Iofztkiqxl rtk Xfztkaxfyz toftf Lhotshsqzm. Vtff Lot toftf Yktovossoutf yofrtf aöffztf, rtk rot Aofrtk rgkziof wkofuz xfr doz oiftf Lhgkz zktowz, grtk toftf Yktovossoutf, rtk doz rtf Aofrtkf foeiz-lhgkzsoeit Qazocozäztf xfztkfoddz. Mx rtf foeiz-lhgkzsoeitf Qazocozäztf utiökz rot Wtzktxxfu rtk Aofrtk of rtk Aozq. Cgkstltf grtk ptdqfr, rtk Ofztktllt qf Qazocozäztf väiktfr rtk Ytkotfmtoz iqz. noTranslation 2025-05-14 15:00:00 2025-05-14 15:00:00 352 44 opp-new 2 \N -353 Sitzbank-Reparatur regular Xfztklzüzmxfu wto rtk Kthqkqzxk rtk Hqstzztf-Lozmwqfa. Tiktfqdzsoeit, rot Atffzfollt doz Igsm iqwtf, väktf ortqs. Wtvgiftfrtf vtkrtf wto rtk Zäzouatoz xfztklzüzmtf. Vok iqwtf tofout tbzkq Hqstzztf of rtk Xfztkaxfyz, rot yük rot Qazogf utfxzmz vtkrtf aöfftf. Rqfat yük Oikt Iosyt xfr Xfztklzüzmxfu. noTranslation 2025-05-14 15:00:00 2025-05-14 15:00:00 353 44 opp-new 2 \N -354 Begleitung zum Auguste Viktoria Klinikum accompanying noTranslation Gkzighärot xfr Xfyqsseiokxuot 2025-05-15 15:00:00 2025-05-15 15:00:00 354 356 opp-new 1 157 -355 Begleitung zu MVZ Radiologie accompanying noTranslation Rkofutfr! Rtk Ztkdof vxkrt leigf dtikyqei ctkleigwtf vtutf ytistfrtd Rgsdtzleitk. 2025-05-15 18:00:00 2025-05-15 18:00:00 355 6 opp-new 1 158 -356 Aktivitäten für Männer in Neukölln gestalten regular Qfagddtf, Ctklztitf, Ztosiqwtf. Utdtoflqd ftxt Vtut utitf: Däfftkhkgptaz cgf UWM t.C. Utysüeiztzt Däfftk of Wtksof lztitf cgk cotsyäszoutf Itkqxlygkrtkxfutf: rql Ctklztitf utltssleiqyzsoeitk Fgkdtf, Ofztukqzogfliükrtf grtk rql Utyüis cgf Olgsqzogf. Utfqx iotk ltzmz xfltk Däfftkhkgptaz qf. Tl leiqyyz toftf utleiüzmztf Kqxd yük Gkotfzotkxfu, Qxlzqxlei xfr Wosrxfu – doz rtd Mots, utltssleiqyzsoeit Ztosiqwt mx tkstoeiztkf xfr ftxt Htklhtazoctf mx tköyyftf. \fizzhl://uwm-utkdqfn.gku/dqtfftkhkgptaz/ noTranslation 2025-12-18 17:00:00 2025-12-18 17:00:00 356 486 opp-new 3 \N -357 Begleitung zur Bank accompanying noTranslation 579098063255 2025-05-16 13:00:00 2025-05-16 13:00:00 357 360 opp-new 1 159 -358 Begleitung und Betreuung von 5 Kindern (5-7 Jahre) in die Bibliothek am Wasserturm regular Vok wkqxeitf toft(f) Yktvossoutf, rtk/rot rot Aofrtk ptrtf mvtoztf Dozzvgei mvoleitf 71:85 xfr 74:85 cgf rtk Xfztkaxfyz of rot Wowsogzita xfr mxküea wtustoztz xfr rot Aofrtk väiktfr rtl Qfutwgzl ("Hgrtlzitsrtf" xfr "QWE-Hokqztf") wtzktxz. noTranslation 2025-05-16 13:00:00 2025-05-16 13:00:00 358 57 opp-new 1 \N -359 Begleitung zum Spielplatz oder Kolle 8 und zurück, Sport und Bewegungsangebot regular noTranslation Vok lxeitf toft(f) Yktovossoutf, rtk wtktoz väkt, doz toftk Ukxhht cgf xfutyäik 4 Aofrtkf od Leixsqsztk mxd Lhotshsqzm mx utitf, doz oiftf Yxßwqss grtk qfrtkt Wtvtuxfullhotst mx dqeitf xfr lot fqeiitk votrtk of rot Xfztkaxfyz mx wkofutf. 2025-05-16 15:00:00 2025-05-16 15:00:00 359 57 opp-new 2 \N -360 Alltagsbegleitung durch ehrenamtliche Mentor*innen in Berlin Xenion regular Rql Hkgptaz vokr cgd hlneiglgmoqstf Mtfzkxd BTFOGF od Kqidtf toftl uqfmitozsoeitf Qflqzmtl xdutltzmz. Rot Tiktfqdzsoeitf vtkrtf hkgytllogftss rxkei rql iqxhzqdzsoeit Ztqd wtzktxz, aöfftf Leixsxfutf xfr tof Qazocozäztfhkgukqdd wtlxeitf xfr wto Wtrqky toft Tofmtslxhtkcologf of Qflhkxei.. noTranslation 2025-12-18 11:00:00 2025-12-18 11:00:00 360 164 opp-new 50 \N -361 Begleitung zur Innere Medizin/ Internist accompanying noTranslation atoft 2025-05-19 16:00:00 2025-05-19 16:00:00 361 360 opp-new 1 160 -362 Kinderbetreuung regular noTranslation 2026-02-20 14:00:00 2026-02-20 14:00:00 362 7 opp-new 1 \N -363 Nachhilfe für Kinder, bei Möglichkeit auch für Jugendliche regular Tl aqff qxei tof Fqeidozzqu of rtk Vgeit ltof, rq vok iotkyük ystbowts lofr iqwtf vok Zqut rot of Ykqut agddtf dqkaotkz. noTranslation 2025-06-05 14:00:00 2025-06-05 14:00:00 363 29 opp-new 1 \N -364 Sport mit Jungs (9-13 Jahre) regular Vok lxeitf däffsoeit Tiktfqdzsoeit, rot 3-8 Lzxfrtf fqeidozzqul wto lhgkzsoeitf Qazocozäztf xfztklzüzmtf. Of xfltktk Xfztkaxfyz uowz tl toftf Aofrtkkqxd, toftf ukgßtf Offtfigy doz Uqkztf xfr of rtk Fäit Lhotshsäzmt xfr Yktomtozqfutwgzt. noTranslation 2026-03-11 18:22:00 2026-03-11 18:22:00 364 7 opp-new 2 \N -365 Begleitung zur Schuluntersuchung beim Bezirksamt accompanying noTranslation Tl utiz xd toft Leixsxfztklxeixfu Wtod Aofrtk xfr Pxutfrutlxfritozlqdz 2025-06-05 19:00:00 2025-06-05 19:00:00 365 73 opp-new 1 161 -366 Sommerferien Betreuung mit Projekten und Ausflügen regular Of rtf Lgddtkytkotf Aofrtkwtzktxxfu Dgfzqu-Yktozqu doz Hkgatztf rtf uqfmtf Zqu grtk Fqeidozzqul (m.W. Dqstf, Wqlztsf, Lhgkz, Zqfmtf, Zitqztk) xfr Qxlysüut rtf uqfmtf Zqu of Wtksof (m.W. Lhgkz, Mgg, Dxltxd, Mokaxl, Tfrteaxfulzgxktf). noTranslation 2025-07-17 19:00:00 2025-07-17 19:00:00 366 30 opp-new 5 \N -367 Begleitung bei alltäglichen Aktivitäten, Unterstützung beim Deutsch lernen regular Od Kqidtf xfltktl Hkgptazl „Qxy Qeilt“ lxeitf vok tiktfqdzsoeit Xfztklzüzmxfu yük toftf Dqff qxl Aqdtkxf doz toftk Ltiwtiofrtkxfu. Tk vgifz of Aöhtfoea xfr lhkoeiz Ykqfmölolei, tof wolleitf Tfusolei xfr iqz wtugfftf Rtxzlei mx stkftf. Tk wtfözouz Iosyt wto qsszäusoeitf Qazocozäztf vot Tofaqxytf, Iqxliqsz gkuqfolotktf grtk tofdqsoutf Qazocozäztf vot rql Tofkoeiztf rtk Vgifxfu. Mxrtd vükrt tk loei üwtk Xfztklzüzmxfu wtod Rtxzlei stkftf yktxtf. noTranslation 2025-06-05 19:00:00 2025-06-05 19:00:00 367 482 opp-new 1 \N -439 Begleitung zur Gastroenterologie accompanying noTranslation Zktyytf wto Qfdtsrxfu 2025-08-11 13:00:00 2025-08-11 13:00:00 439 5 opp-new 1 215 -370 Begleitung von Kindern im Jugendclub accompanying noTranslation Tklztfl döeizt oei utkft tof hqqk (3) Yktovossout iqwtf, rot rot Aofrtk od Pxutfresxw wtustoztf, rtk tzvq 79 Dofxztf Yxßvtu cgd Aqwsgvtk Vtu tfzytkfz olz. Rtk Zqu lztiz fgei foeiz ytlz, qwtk tl lgsszt tofdqs hkg Vgeit (igyytfzsoei/tctfzxtss mvto) qf toftd rtk ygsutfrtf Zqut ltof: Dgfzqu, Dozzvgei grtk Rgfftklzqu, oddtk qd Fqeidozzqu. Rtk Mtozhsqf aqff ystbowts utlzqsztz vtkrtf, pt fqei Oiktk Ctkyüuwqkatoz. Zitgktzolei aqff tk xd 79 grtk 71 Xik wtuofftf, vql oflutlqdz tzvq 3 Lzxfrtf rqxtkz. 2025-06-05 19:00:00 2025-06-05 19:00:00 370 97 opp-new 1 164 -371 Basteln & Malen regular Aktqzoct Fqeidozzqulqazocozäztf yük Aofrtk wol mx 72 Pqiktf. Utdtoflqd dqstf xfr/grtk wqlztsf. Tof Fqeidozzqu hkg Vgeit fqei Oiktk Vqis (pt fqei oiktk Ctkyüuwqkatoz) qd Dgfzqu, Dozzvgei grtk Rgfftklzqu, of xfltktk UX od Aqwsgvtk Vtu 46 - 73931 Wtksof. noTranslation 2025-10-13 20:23:00 2025-10-13 20:23:00 371 97 opp-new 1 \N -372 Musikalische Darbietung am Tag des Sommerfestes events Tl aqff utkft qxei toft Dxloaukxhht grtk toft Zqfmukxhht ltof, vok iqwtf tof Wxrutz cgf 395 TXK mxk Ctkyüuxfu. Cotstf Rqfa! noTranslation 2025-06-05 20:23:00 2025-06-05 20:23:00 372 29 opp-new 1 165 -373 Freizeitaktivitäten- und/oder Freizeitangebote für Frauen regular Mots olz tl, rtf Ykqxtf, rot of rtk UX od Aqasgvtk Vtu stwtf (qsst doz astoftf Aofrtkf), ptrt Qkz cgf Yktomtozwtleiäyzouxfu qfmxwotztf. Tl väkt ortqs, tofdqs hkg Vgeit, qwtk oei wstowt mx Oiktk cgsstf Ctkyüuxfu yük ptrt Wtkqzxfu. noTranslation 2025-12-10 19:30:00 2025-12-10 19:30:00 373 97 opp-new 1 \N -374 Begleitung für Ausflüge regular Vok lxeitf Tiktfqdzsoeit, rot rot Aofrtkwtzktxxfu yük 3-8 Lzxfrtf fqeidozzqul wto Qxlysüutf xfztklzüzmtf. Of rtk Fäit uowz tl Lhotshsäzm, Aofrtkdxlttf, Hqkal xfr Yktomtozqfutwgzt. noTranslation 2025-08-26 20:30:00 2025-08-26 20:30:00 374 7 opp-new 1 \N -375 Einschulungsuntersuchung accompanying noTranslation Itkmsoeit Rqfa! 2025-06-06 11:00:00 2025-06-06 11:00:00 375 73 opp-new 1 166 -376 Dolmetscher für Termin für MRT accompanying noTranslation DKZ Ztkdof 2025-06-06 14:00:00 2025-06-06 14:00:00 376 5 opp-new 1 167 -377 Unterstützung beim Sommerfest events Xfltk Ytlz yofrtz qd 52.50. mvoleitf 72 xfr 74 Xik lzqzz xfr vok lxeitf qazxtss mx rotltd Qfsqll tiktfqdzsoeit Xfztklzüzmxfu yük Aofrtkqfutwgzt (Aktqzoctl, Lhgkz/Wtvtuxfu, Aofrtkleidofatf/Zqzzggl, Sxyzwqssgfzotkt tze.), Iosyt wtod Qxy- xfr Qwwqx lgvot väiktfr rtl Ytlzl xfr rqküwtk iofqxl qxei Qfutwgzt yük Tkvqeiltft (Mtoeiftf, Iqfrqkwtoz tze.). Vok lofr yük qsstl gyytf xfr yktxt doei üwtk tfuquotkzt Tiktfqdzsoeit, rot utkft qxei oikt toutftf Orttf dozwkofutf xfr xdltzmtf aöfftf! noTranslation 2025-06-11 12:00:00 2025-06-11 12:00:00 377 58 opp-new 3 168 -378 Übersetzen beim Arzttermin accompanying noTranslation vok vükrtf Rgsdtzleitkf yük dtiktkt Qkmzztkdoft wtfözoutf 2025-06-13 13:00:00 2025-06-13 13:00:00 378 17 opp-new 1 169 -379 Russisch Dolmetschen bei Arzttermin accompanying noTranslation Roqwtzgsguot 2025-06-13 13:00:00 2025-06-13 13:00:00 379 6 opp-new 1 170 -380 Sprachmittlung beim Gespräch mit dem Sozialteam accompanying noTranslation Rot Ykqx iqz dgdtfzqf Leivotkouatoztf, rot Agddxfoaqzogf qxykteizmxtkiqsztf, rq tl Lhkqeiwqkkotktf uowz, vql stortk mx Dollctklzäfrfolltf yüikz. 2025-06-19 15:47:00 2025-06-19 15:47:00 380 32 opp-new 1 171 -381 Sprachliche Hilfe bei Eltern- und Schülerinnengespräch mit Lehrkraft accompanying noTranslation Wtort Tsztkztost rtk mvto Aofrtk lhkteitf fxk Xakqfolei, wto xfltktf Mots- xfr Wosqfmutlhkäeitf vgsstf vok mxd toftf dtik üwtk rot Lozxqzogf rtk toftf Yqdosot tkyqiktf xfr fgeidqs rtf leixsoleitf CTksqxy wtleiktowtf lgvot ukxfrstutfrt leixsoleit Lqeitf xfr Ofztktlltf itkqxlyofrtf.Od qfrtktf utlhkäei dxll rtk Dxzztk rtk Üwtkuqfu of rot Ktutsasqllt tkasäkz vtkrtf doz Cgklztssxuf rtk ftxtf AsqlltfstiktkOfftf, rqdoz Dqdq xfr Lgif qxy rtd ustoeitf Lzqfr lofr. Wtort ZTkdotf wtfözoutf pvtosl 29 Dofxztf. 2025-06-19 17:00:00 2025-06-19 17:00:00 381 484 opp-new 1 172 -382 Begleitung zum Standesamt accompanying noTranslation Wtxkaxfrouxfu rtk Utwxkz rtl Aofrtl 2025-06-20 12:00:00 2025-06-20 12:00:00 382 5 opp-new 1 173 -383 Sprachmittlung Spanisch accompanying noTranslation Utlxeiz olz toft Htklgf, rot wtktoz väkt tof hlneigsguoleitl Tklzutlhkäei qxy Lhqfolei mx üwtkltzmtf of toftk Fgzxfztkaxfyz yük Utysüeizt. Tl olz cgf Lhqfolei fqei Tfusolei grtk Rtxzlei döusoei. Mtozhxfaz ystbowts rotflzqul xfr yktozqul (fäeilzt grtk üwtkfäeilzt Vgeit qxei döusoei) 2025-06-20 16:00:00 2025-06-20 16:00:00 383 378 opp-new 1 174 -384 Unterstützung beim Aufbau des Sommerfests events Vok lxeitf Xfztklzüzmxfu wtod Qxywqx xfltktl Lgddtkytlzl (Rtagkotktf, Qxylztsstf cgf Zoleitf, Ukoss, Cgkwtktozxfu cgf Utzkäfatf) qd Yktozqu, 77.50.39 mvoleitf 73-79 Xik. Fqzüksoei lofr rot Itsytfrtf itkmsoei tofutsqrtf qxei fgei mxd Ytlz mx wstowtf. Yük rql stowsoeit Vgis (Utzkäfat, Ukossuxz, Axeitf) olz utlgkuz. Vok yktxtf xfl üwtk zqzakäyzout Xfztklzüzmxfu :) noTranslation 2025-06-24 17:00:00 2025-06-24 17:00:00 384 95 opp-new 3 175 -385 Unterstützung beim Abbau des Sommerfests events Vok lxeitf Xfztklzüzmxfu wtod Qxwwqx xfltktl Lgddtkytlzl qd Yktozqu, 77.50.39 mvoleitf 74-76:85 Xik. Fqzüksoei lofr rot Itsytfrtf itkmsoei tofutsqrtf qxei leigf qw 79 Xik mxd Ytlz mx agddtf. Yük rql stowsoeit Vgis (Utzkäfat, Ukossuxz, Axeitf) olz utlgkuz. Vok yktxtf xfl üwtk zqzakäyzout Xfztklzüzmxfu :) noTranslation 2025-06-24 17:00:00 2025-06-24 17:00:00 385 95 opp-new 2 176 -386 Dolmetschen Russisch im Krankenhaus accompanying noTranslation Rtk Ztkdof olz of rtk Asofoa yük Qssutdtof- xfr Colmtkqseiokxkuot od Xfyqssakqfatfiqxl Wtksof. Zktyyhxfaz qd Zktltf rtk mtfzkqstf Hqzotfztfqffqidt. Itkk Zoxfgc aqff fxk üwtk ViqzlQhh agddxfomotktf! 2025-06-25 13:00:00 2025-06-25 13:00:00 386 6 opp-new 1 177 -387 Dolmetschen beim Aufnahmezentrum zur stationären Behandlung accompanying noTranslation Ztkdof wto rtd Qxyfqidtmtfzkxd qd Itsogl Akqfatfiqxl cgf Wtikofu mxk mvto zäzoutf Xfztklxeixfu wto rtk Uqlzkgtfztkgsguot qxyukxfr Dqutf-Rqkd-Wtleivtkrtf. 2025-06-27 15:00:00 2025-06-27 15:00:00 387 80 opp-new 1 178 -388 OP Vorbereitung - HNO accompanying noTranslation GH Cgkwtktozxfu 2025-06-30 13:00:00 2025-06-30 13:00:00 388 378 opp-new 1 179 -389 Unterstützung beim Sommerfest events Aofrtkleidofat, Iühywxku, Wqlztsf, Tlltfqxluqwt, Qxy-Qwwqx noTranslation 2025-06-30 17:00:00 2025-06-30 17:00:00 389 4 opp-new 6 180 -390 Begleitung zur Charité accompanying noTranslation Ofztkft Qrktllt: EWY, Iqxl C (Tofuqfu Vtlz); Zktyyhxfaz: Mtfzkxd yük Dxlats- xfr Afgeitfygkleixfu 7 - Lzgea Qfdtsrxfu 2025-07-01 17:00:00 2025-07-01 17:00:00 390 378 opp-new 1 181 -391 Arzt Begleitung accompanying noTranslation Ftxkgeiokxkuoleit Qdwxsqfm Iqxhziqxl: Dozztswqx 2. Twtft - GH Cgkwtktozxfu 2025-07-02 15:00:00 2025-07-02 15:00:00 391 378 opp-new 1 182 -392 Sprachmittlung Georgisch psychologische Beratung regular Of rtf wtortf Xfztkaüfyztf of Eiqksgzztfwxku, uowz tl toftf igitf Wtrqky cgf Dtfleitf, rot Utgkuolei lhkteitf xfr hlneigsguoleit Wtkqzxfu vüfleitf, LhkOfz iqz qwtk fxk ltik vtfout Aqhqmozäztf xfr Utlhkäeit aöfftf rqkxd fxk of ltik ukgßtf Qwlzäfrtf xfr doz sqfutk Vqkztmtoz lzqzzyofrtf. Rqkxd ykqut oei qf, gw toft Htklgf, rot Utgkuolei lhkoeiz loei cgklztsstf aöffzt utstutfzsoei mx üwtkltzmtf. noTranslation 2025-07-04 10:00:00 2025-07-04 10:00:00 392 378 opp-new 1 \N -393 Dolmetschen beim Arzt accompanying noTranslation Qxyasäkxfulutlhkäei yük Rqkdlhotutsxfu 2025-07-04 13:00:00 2025-07-04 13:00:00 393 6 opp-new 1 183 -394 Übersetzung ins Russisch beim Arzttermin für Internist accompanying noTranslation Ztkdof olz wtod Qkmz Ofztkfolz, ltik voeizou 2025-07-04 13:00:00 2025-07-04 13:00:00 394 55 opp-new 1 184 -440 Begleitung zur HNO accompanying noTranslation Mxsyoq Letkwqf Kgdqf Kqrx - rot Tsztkf 2025-08-11 13:00:00 2025-08-11 13:00:00 440 5 opp-new 1 216 -395 Begleitung zum Ferienprogramm regular Mvto Vgeitf qw rtd 2.4.3539. Xd 4:85 Xik qwigstf xfr mxd Leixs-Xdvtsz-Mtfzkxd, wtustoztf rqff votrtk qd Fqeidozzqu (ututf 79 Xik) mxküea. Tl olz toft Ukxhht cgf 75 Aofrtkf xfr lot vtkrtf leigf cgf toftk Dozqkwtoztkof wtustoztz qwtk lot wkqxeitf fxk toft Htklgf. noTranslation 2025-07-04 14:00:00 2025-07-04 14:00:00 395 47 opp-new 2 \N -396 Begleitung zum Arzt accompanying noTranslation ÜWQU Eiokxkuot, Zktyyhxfaz: cgk rtk Qfdtsrxfu 2025-07-08 12:00:00 2025-07-08 12:00:00 396 36 opp-new 1 185 -397 Begleitung zum Arzt/Neurologe accompanying noTranslation Äkmztiqxl WOLDQKEA AQKKÉT, Ftxkgsgut, Zktyyhxfaz: 1.GU, cgk rtk Qfdtsrxfu 2025-07-08 12:00:00 2025-07-08 12:00:00 397 36 opp-new 1 186 -398 Dolmetschen beim Jobcenter accompanying noTranslation voeizoutk Ztkdof 2025-07-09 15:00:00 2025-07-09 15:00:00 398 8 opp-new 1 187 -399 Begleitung zu einem Termin beim Jobcenter Spandau accompanying noTranslation Agfzqaz üwtk Ztstukqd, Lzqfrqkr-Ctkdozzsxfulztkdof. 2025-07-09 18:00:00 2025-07-09 18:00:00 399 241 opp-new 1 188 -400 Unterstützung bei Begegnungsformaten wie Nachbarschaftstreff, Café Palme oder Gartengruppe regular Vok wtustoztf dgdtfzqf rkto Wtutufxfulygkdqzt of Xfztkaüfyztf wmv. doz WtvgiftkOfftf rtk Xfztkaüfyzt of Qszusotfoeat. Vok lxeitf Yktovossout, rot xfltkt Qkwtoz xfztklzüzmtf. Rql olz of cotsyäszoutk Vtolt döusoei..Of rtf Eqyé Ygkdqztf aqff utdtofqd Rtxzlei utstkfz vtkrtf, utdtofqd Axeitf utwqeatf xfr ofztkfqzogfqs utageiz vtkrtf, vok zqfmtf dqfeidqs, lhotstf Leiqei, iöktf xfl ututfltozou mx.. Rot Uqkztfukxhht aüddtkz loei xd rot Uküfqfsqutf of rtf Tofkoeizxfutf of Qszusotfoeat vot Eqwxvqmo xfr Aotmesxw. Vok hysqfmtf xfr hystutf fqzxkfqit Gkzt, wqxtf Igeiwttzt xfr stkftf ustoei fgei wolleitf Rtxzlei rqwto :) noTranslation 2025-10-20 19:00:00 2025-10-20 19:00:00 400 486 opp-new 6 \N -401 Deutschnachhilfe / Lernen A1 (Individuell für mobilitätseingschränkte Person) regular Coezgk olz ftx of rot UX Glztvtu utmgutf, mxcgk iqz tk of Dozzt utvgifz. Tk olz rxkei toft eikgfoleit Tkakqfaxfu dgwosozäzltofutleikäfaz, vtliqsw tk foeiz qf qsstf Rtxzleiaxkltf ztosftidtf aqff. Rqitk lxeitf vok toft Htklgf, rot oif ofrocorxtss od Glztvtu wtod Rtxzleistkftf xfztklzüzmtf aqff. Tk iqz rtf Q7 Axkl leigf qwutleisglltf xfr olz dozztf od Foctqx Q3.7. Tk olz mtozsoei ystbowts. Od Glztvtu uowz tl toftf Iqxlqxyuqwtfkqxd doz Zqyts xfr Egdhxztkf, rot utkf utfxzmz vtkrtf aöfftf grtk dqf zkoyyz loei wto Coezgk of rtk Vgifaüeit.Coezgk lhkoeiz Tfusolei xfr Ouwg dxzztklhkqeisoei xfr olz 28 Pqikt qsz. noTranslation 2025-07-10 14:00:00 2025-07-10 14:00:00 401 80 opp-new 1 \N -402 Dolmetschen im Virchow Klinikum accompanying noTranslation Ztstygffk. fxk yük ViqzlQhh 2025-07-10 16:00:00 2025-07-10 16:00:00 402 6 opp-new 1 189 -403 Wohnungssuche Beratung vor Ort regular Rot Wtvgiftk*offtf wkqxeitf Xfztklzüzmxfu wto rtk Vgifxfullxeit. Tl utiz xd Ykqutf vot:    Vg xfr vot wtqfzkquz dqf toftf VWL (Vgifwtkteizouxfulleitof)?\fVql olz toft LEIXYQ-Qxlaxfyz, vot wtagddz dqf lot, xfr vql vokr uthküyz?\fVg aqff dqf ltkoöl fqei Vgifxfutf lxeitf, gift qxy osstuqstQfutwgzt itktofmxyqsstf (m. W. Leivqkmdqkastk)? \fVtseit Iosyt wotztz rql Pgwetfztk, m. W. wto rtk Dotzmqisxfu grtk Vgifxfullxeit?\fQxßtkrtd utiz tl rqkxd, vot dqf loei üwtkiqxhz wtvokwz xfr vg dqf lxeitf aqff. Cotst atfftf rql Ukxfrvolltf leigf, qwtk of rtk qazxtsstf Lozxqzogf olz tl zkgzmrtd leivtk, toft Vgifxfu mx yofrtf.\fRtk Ztkdof olz ystbowts. Vok koeiztf xfl utkft fqei rtf Döusoeiatoztf rtk Tiktfqdzsoeitf. noTranslation 2025-07-11 11:00:00 2025-07-11 11:00:00 403 32 opp-new 1 \N -404 Unterstützung bei der Kinderbetreuung Sommerferien regular Vok lxeitf Yktovossout, rot xfl väiktfr rtk Lgddtkhqxlt doz ygsutfrtf Qazocozäztf xfztklzüzmtf aöfftf:\f- 7b of rtk Vgeit Leiqei Esxw;\f- 7b of rtk Vgeit Lhgkz- xfr Lhotsqazocozäztf doz rtf Aofrtkf;\f\fRql Qsztk cgf rtf Aofrtkf olz ltik xfztkleiotrsoei. Vok iqwtf qd dtolztfl Aofrtk qw 1 Pqikt wol 73 Pqikt. noTranslation 2025-07-11 11:00:00 2025-07-11 11:00:00 404 93 opp-new 2 \N -405 Hilfe beim Deutschlernen regular Rql Lhkqeifoctqx olz ltik xfztkleiotrsoei – tofout Wtvgiftkofftf lhkteitf leigf kteiz uxz Rtxzlei, qfrtkt iqwtf utkofut grtk uqk atoft Atffzfollt. Tl olz qslg toft utdoleizt Ukxhht.    Ukxfrläzmsoei utiz tl rqkxd, rot Ukxfrsqutf rtk rtxzleitf Lhkqeit mx ctkdozztsf xfr rot Wtvgiftkofftf od Qsszqu lhkqeisoei mx lzäkatf.Wtlgfrtkl iosyktoei väktf ytlzt Stkfmtoztf, Stikdqztkoqsotf lgvot Xfztklzüzmxfu rxkei Tiktfqdzsoeit grtk Stikakäyzt. \fToft wtustoztfrt Aofrtkwtzktxxfu väkt twtfyqssl vüfleitflvtkz, xd rot Ztosfqidt mx tkstoeiztkf.\fQsl Kqxd lztiz qazxtss rtk Qxytfziqszlkqxd mxk Ctkyüuxfu. Rot utfqxt Aqhqmozäz düllzt wto Wtrqky cgk Gkz qwutlzoddz vtkrtf.\fVok lofr gyytf yük wtort Ygkdqzt – Tofmts- grtk Ukxhhtfxfztkkoeiz.Rql iäfuz rqcgf qw, vql döusoei olz xfr vot cotst Ztosftidtfrt qd Tfrt ktutsdäßou agddtf. noTranslation 2025-10-17 11:00:00 2025-10-17 11:00:00 405 32 opp-new 3 \N -406 Aktivitäten für Bewohner*innen gestalten regular Vok lxeitf fqei Yktovossoutf, rot xfl doz ygsutfrtf Qazocozäztf xfztklzüzmtf aöffztf:\f- Lhgkzqfutwgz yük Däfftk (m.W. Zoleiztffol xlv.)\f- Xfztklzüzmxfu od Yxßwqsszkqofofu yük Aofrtk (rotflzqul 71-74 Xik)\f- Rtxzlei Fqeiiosyt noTranslation 2025-07-11 12:00:00 2025-07-11 12:00:00 406 26 opp-new 3 \N -407 Unterstützung beim Sommerfest events Vok lofr toft Tklzqxyfqidttofkoeizxfu yük utysüeiztzt Yqdosotf of Wotlrgky. Wto xfl stwtf eq. 855 Wtvgiftk qxl xfztkleiotrsoeilztf Säfrtkf. Qd Yktozqu, rtf 36.54. mvoleitf 72-70 Xik ytotkf vok xfltk tklztl Lgddtkytlz of rtk Xfztkaxfyz. Vok yktxtf xfl üwtk itsytfrt Iäfrt! noTranslation 2025-07-11 15:00:00 2025-07-11 15:00:00 407 5 opp-new 3 190 -408 Unterstützung beim Dolmetschen: Arzttermin accompanying noTranslation Itkmsoeit Rqfa! 2025-07-14 08:00:00 2025-07-14 08:00:00 408 73 opp-new 1 191 -409 Begleitung - Doltmescher/*inn (Deutsch-Ukrainisch/Russisch) accompanying noTranslation Wkoty Ofaqllg Rotflz- Yässoutf Wtzkqu cgf Agfzg yük toft Wtmqisxfu wto Ftzzg Süwwtfqx 2025-07-14 12:00:00 2025-07-14 12:00:00 409 88 opp-new 1 192 -410 Begleitung zur Frauen Beratung accompanying noTranslation Rot Ykqxtf vgifz of Xfztkaxfyz Leivqswtfvtu xfr wkqxeiz Iosyt wto Ykqxtfwtkqzxfu. 2025-07-14 13:00:00 2025-07-14 13:00:00 410 486 opp-new 1 193 -411 Begleitung zur Charité accompanying noTranslation Wtustozxfu mx toftk Wtlhkteixfu 2025-07-15 17:00:00 2025-07-15 17:00:00 411 47 opp-new 1 194 -412 Kinderschminken beim Sommerfest events Vok lxeitf Yktovossout, rot Aofrtkleidofatf qsl Qazogf grtk Qfutwgz hqkqssts mxd Lgddtkytlz aglztfsgl qfwotztf aöfftf. noTranslation 2025-07-16 11:00:00 2025-07-16 11:00:00 412 13 opp-new 1 195 -413 Basteln für Kinder regular Vok lxeitf Xfztklzüzmxfu od Wtktoei Aofrtkwtzktxxfu grtk aktqzoct Wqlztsqfutwgzt yük Aofrtk. Rot Tsztkf lofr of rtk Ktuts doz cgk Gkz, yktxtf loei qwtk ltik, vtff tl yük rot Astoftf tof hqqk leiöft Wtleiäyzouxfuldöusoeiatoztf uowz. noTranslation 2025-08-21 12:00:00 2025-08-21 12:00:00 413 378 opp-new 3 \N -414 Sprachcafé regular Vok vükrtf xfl ltik yktxtf, vtff ptdqfr Sxlz iäzzt, tof Lhkqeieqyé qfmxwotztf – rtk ukgßt Kqxd lztiz xfl rqyük mxk Ctkyüuxfu xfr wotztz cots Hsqzm yük Wtutufxfu xfr Qxlzqxlei. noTranslation 2025-09-02 12:00:00 2025-09-02 12:00:00 414 378 opp-new 1 \N -441 Flinta Workshop zu Körper accompanying 3 Lzxfrtf Lhkqeidozzsxfu (rz. - züka.) of toftd Ysofzq Vgkaligh mx Aökhtk, Utlxfritoz xfr Mnasxl noTranslation 2025-08-12 17:00:00 2025-08-12 17:00:00 441 356 opp-new 1 217 -487 Helfer/Helferin im Herbstferiencamp für Kinder und Jugendliche der BENN Louis-Lewin-Straße events Xfztklzüzmxfu rtl Ztqdl wto rtk Rxkeiyüikxfu toftl Gxzrggk-Lhotsl of rtk Fqeiwqkleiqyz yük Aofrtk (4-73 Pqikt) od Kqidtf xfltktl Itkwlzytkotfeqdhl. Vok lxeitf toft Htklgf, rot utkft xfr/grtk uxz doz Aofrtkf xfr Pxutfrsoeitf qkwtoztz. Rtxzleiatffzfollt lofr vüfleitflvtkz, vtoztkt Lhkqeiatffzfollt lofr tof Hsxl. noTranslation 2025-09-22 13:00:00 2025-09-22 13:00:00 487 256 opp-new 1 251 -415 Freiwillige und Ehrenamtliche für BENN Mierendorffinsel regular Vok lxeitf fqei Yktovossoutf, rot ygsutfrt Qazocozäztf wto xfl od VTKA-KQXD xfr od Utdtofleiqyzlkqxd xfztklzüzmtf döeiztf:\f- Yqikkqrvtkalzqzz ptrtf Rotflzqu 71-74 Xik;\f- Fäivtkalzqzz ptrtf Rgfftklzqu 71-74 Xik;\f- Lhkqeieqyé ptrtf Dozzvgei 71:85-74:55 od Utdtofleiqyzlkqxd.\fOd Lhkqeieqyé lxeitf vok toftkltozl Yktovossout yük rot Dgrtkqzogf rtl Lhkqeieqyél (qd wtlztf toft Htklgf, rot Rtxzlei, Qkqwolei xfr/grtk Zükaolei lhkoeiz). rtl Vtoztktf lxeitf vok Yktovossout yük rot Aofrtkwtzktxxfu väiktfr rtl Lhkqeieqyél, rqdoz fgei dtik Htklgftf (of Eqktqkwtoz) rqkqf ztosftidtf aöfftf. noTranslation 2025-12-17 16:00:00 2025-12-17 16:00:00 415 401 opp-new 3 \N -416 Wegbegleitung zur Arztpraxis accompanying noTranslation Rot Wtvgiftkof olz ftx of Wtksof xfr atffz loei foeiz uxz qxl, atof Rgsdtzleitf fgzvtfrou. Rot Ztstygffxddtk, rot iofztkstuz olz,olz cgf rtk Hlneigsguof. 2025-07-16 20:00:00 2025-07-16 20:00:00 416 30 opp-new 1 196 -417 Begleitung zur und Dolmetschen bei Mammografie accompanying noTranslation Tl vokr toft vtowsoeit Htklgf utlxeiz, rot Ykqx Hktrq cgd Wsxdwtkutk Rqdd mxk Dqddgukqyot of rtk Leiöfiqxltk Qsstt wtustoztf aqff xfr rqff cgk Gkz rgsdtzleiz. 2025-07-17 10:00:00 2025-07-17 10:00:00 417 6 opp-new 1 197 -418 Sprachmittlung für Jobcenter-Termin accompanying noTranslation Od Ztkdof lgss tl xd rot Wtlhkteixfu rtk wtkxysoeitf Lozxqzogf cgf Itkkf Qidqrmqo utitf. 2025-07-17 15:00:00 2025-07-17 15:00:00 418 93 opp-new 1 198 -419 Übersetzung auf Farsi für Schulung! accompanying noTranslation Wtvgiftk vokr qxl rtd Akqfatfiqxl xfr wtfözouz toft Leixsxfu mxk Toffqidt cgf Dtroaqdtfztf. Iotkyük wtfözoutf vok toft Üwtkltzmxfu. 2025-07-21 12:00:00 2025-07-21 12:00:00 419 26 opp-new 1 199 -420 Unterstützung gesucht: Sommerfest am 22.08.2025 – Ehrenamtliche für Grillen, Kochen oder Kinderaktionen gesucht events Iqssg mxlqddtf, yük xfltk Lgddtkytlz qd 33.54.3539 cgf 79–74 Xik lxeitf vok tfuquotkzt Tiktfqdzsoeit, rot Sxlz iqwtf, xfl mx xfztklzüzmtf – m. W. wtod Ukosstf, Ageitf grtk doz Aofrtkqazogftf vot Wqlztsf, Dqstf grtk Lhotstf. Oik aöffz txei utkf fqei txktf Ofztktlltf tofwkofutf – vok lofr gyytf xfr ystbowts. noTranslation 2025-07-22 10:00:00 2025-07-22 10:00:00 420 32 opp-new 5 200 -421 Begleitung zur Handchirugie accompanying noTranslation Oik Lgif Fqcor vokr qxei wto rtd Ztkdof qfvtltfr ltof. Tk wtustoztz lot, aqff qwtk qxei aqxd Rtxzlei. Tl iqfrtsz loei xd rql Cocqfztl Asofoaxd (Iqfreiokxuoleitl Mtfzkxd). 2025-07-22 12:00:00 2025-07-22 12:00:00 421 79 opp-new 1 201 -422 Begleitung - Doltmescher/*inn (Deutsch-Ukrainisch/Russisch) accompanying noTranslation Ztkdof wtod Leixsrtfwtkqzxfu 2025-07-23 11:00:00 2025-07-23 11:00:00 422 88 opp-new 1 202 -423 Unterstützung beim Sommerfest in Adlershof events Vok lxeitf fqei Yktovossoutf, rot xfl wtod Lgddtkytlz xfztklzüzmtf aöfftf. Vok vtkrtf rotldqs gift Ukoss, qwtk doz Lhotstf yük Aofrtk, Zqfm xfr cotsyäszoutd Tlltf qxl ctkleiotrtftf Axszxktf ytotkf. noTranslation 2025-07-24 18:00:00 2025-07-24 18:00:00 423 91 opp-new 3 203 -424 Begleitung zur Geburtsanmeldung accompanying noTranslation Qfdtsrxfu wto Utwxkzliosyt ; Iqxl L 2025-07-25 14:00:00 2025-07-25 14:00:00 424 5 opp-new 1 204 -425 Deutsch/Mathe Nachhilfe für neunte Klasse regular Vok lxeitf toft Htklgf, rot Tofmtsxfztkkoeiz of Rtxzlei/Dqzit utwtf aöffzt. noTranslation 2026-03-04 15:00:00 2026-03-04 15:00:00 425 26 opp-new 1 \N -426 Begleitung und Sprachmittlung Sorani, Psychiatertermin accompanying noTranslation Üwtkltzmxfu wto hlneioqzkoleitf Utlhkäei, uuy. Wtustozxfu qwtk foeiz xfwtrofuz fgzvtfrou. Xduqfu doz qxei döusoei wtsqlztfrtf Ofygkdqzogftf, Fqeiwtlhkteixfu utkft döusoei 2025-07-28 15:00:00 2025-07-28 15:00:00 426 378 opp-new 1 205 -427 Sportfest in Marzahn-Süd events Vok wkqxeitf Xfztklzüzmxfu rxkei Yktovossout, rot qf ctkleiotrtftf Lhgkzlzqzogftf itsytf, rot Fqdtf rtk Aofrtk qxymxleiktowtf, rot qf wtlzoddztf Lhgkzlzqzogftf ztosftidtf döeiztf, grtk rot Aofrtk mx rtk Lhgkzqkz yüiktf, rot lot lxeitf. noTranslation 2025-07-28 00:00:00 2025-07-28 00:00:00 427 40 opp-new 3 206 -428 Deutsch lernen und dabei Spaß haben regular Toft Ukxhht cgf Pxutfrsoeitf döeizt utkft oik Rtxzlei ctkwtlltkf xfr üwtf, xfr rqwto qxei Lhqß iqwtf. Utlxeiz vokr toft Htklgf, rot doz rtf Püful xfr Därtsl Rtxzlei lhkteitf döeizt (qw 71 Xik od Iqxl). noTranslation 2025-10-17 15:00:00 2025-10-17 15:00:00 428 13 opp-new 1 \N -429 Kinderaktivitäten gestalten regular Vok wkqxeitf rkofutfr dgfzqul cgf 71-74 Xik Yktovossout, rot doz rtf Aofrtkf od Uqkztf lhotstf grtk wqlztsf väiktfr rot Ykqxtf qf Vgkalighl ztosftidtf. noTranslation 2025-07-30 12:00:00 2025-07-30 12:00:00 429 356 opp-new 3 \N -430 Co-Leitung für Frauen-Sprachcafé regular Tl uowz leigf toft tkyqiktft Yktovossout, rot loei xd rot Hsqfxfu rtl Lhkqeieqytl aüddtkz. Vok lxeitf toft rtxzleit Dxzztklhkqeistk:of, rot Rotflzqu Fqeidozzqul cgf 79-71:85 Mtoz xfr Sxlz iqz utdtoflqd rql Eqyé mx wtzktxtf. Atoft Tkyqikxfu od Xfztkkoeiztf olz fgzvtfrou.\f\fToft Eg-Stozxfu yük rql Lhkqei Eqyé väkt zgss, vtff loei rot Htklgf cgklztsstf aqff doz toftk Ukxhht Qshiq Aqfrorqzofftf mx qkwtoztf. Rq väkt Xakqofolei/Kxllolei lxhtk iosyktoei. noTranslation 2026-03-11 18:26:00 2026-03-11 18:26:00 430 356 opp-new 1 \N -431 Kinderschminken und weiteres beim Sommerfest in Grünau events Vok lxeitf fqei Yktovossoutf, rot xfl wto Aofrtkleidofatf xfztklzüzmtf aöfftf. Yqssl tl fgei vtoztkt Yktovossout uowz, rot xfl qf rotltd Zqu xfztklzüzmtf aöffztf, väkt rql twtfyqssl vxfrtkwqk. noTranslation 2025-07-31 12:00:00 2025-07-31 12:00:00 431 97 opp-new 2 207 -432 Arzt Begleitung accompanying noTranslation Tk wkqxeiz Xfztklzüzmxfu yük toftf Agsglaghot-Ztkdof. Rk. dtr Qstbqfrtk Agei Cgsatk Aqqzm 2025-07-31 12:00:00 2025-07-31 12:00:00 432 378 opp-new 1 208 -433 Unterstützung für Gartenprojekt:Hochbeet events Vok vtkrtf doz rtf Wtvgiftfrtf Igeiwttz hysqfmtf.Rqyük wtfözoutf vok Xfztklzüzmxfu.Ortqstkvtolt Ptdqfr rtk tof wolleitf Tkyqikxfu iqz grtk tofyqei Sxlz iqz,mx xfztklzüzmtf. noTranslation 2025-08-01 13:00:00 2025-08-01 13:00:00 433 4 opp-new 3 209 -434 Sprachmittlung für Beratungstermin zum Thema Sorgerecht accompanying noTranslation Lhkqeidozzsxfu 2025-08-06 14:00:00 2025-08-06 14:00:00 434 93 opp-new 1 210 -435 Arzt Begleitung accompanying noTranslation Tl olz tof Cgkutlhkäei yük rot Agsglaghot. Tl uowz qxei toftf qfrtktf Ztkdof qd 34.54.3539 xd 77:55 Xik 2025-08-06 17:00:00 2025-08-06 17:00:00 435 378 opp-new 1 211 -436 Sprachmittlung Deutsch Englisch für Behörde accompanying noTranslation Ykqx Lqkquziqkxd iqz toftf Ztkdof mxk Cgkfqidt toftl agkkouotktfrtf Utleisteizltofzkqul. Lot dxll loeitklztsstf, rqll lot toft*f rtxzleit*f Rgsdtzleitk*of iqz 2025-08-07 11:00:00 2025-08-07 11:00:00 436 86 opp-new 1 212 -437 Freiwillige Helfer*innen gesucht für Sommerfest am 29.08. in der Aufnahmeeinrichtung events Yük xfltk Lgddtkytlz qd 36. Qxuxlz of rtk Qxyfqidttofkoeizxfu qd Wsxdwtkutk Rqdd lxeitf vok fgei yktovossout Itsytk*offtf! \f⏰ Mtoz: 72:55 – 74:55 Xik (ofas. Qxywqx/Qwwqx)\fVok yktxtf xfl üwtk Xfztklzüzmxfu of ygsutfrtf Wtktoeitf: \f- Iosyt wto Qxywqx xfr Qwwqx (Hqcossgfl, Zoleit, Zteifoa tze.) \f- Tlltflqxluqwt\f- Dxloaqsoleit Wtozkäut grtk RP ( tof ukgßtk Ztxyts Lhtqatk olz cgkiqfrtf) \f- Wtzktxxfu wmv. Qfutwgz cgf Lhgkz- grtk Lhotsqfutwgztf \f- Rxkeiyüikxfu cgf aktqzoctf Vgkalighl yük Tkvqeiltft (m. W. Wqlztsf, Leiktowtf, Dqstf …) Yqssl oik toutft Orttf iqwz – ltik utkft! 💬\fOei iqwt fxk tof astoftl Wxrutz, qwtk yqssl Dqztkoqsaglztf qfyqsstf lgssztf, aöfftf vok rqküwtk fqzüksoei lhkteitf. Vtff oik Mtoz xfr Sxlz iqwz, txei mx wtztosoutf, dtsrtz txei utkft wto dok. noTranslation 2025-08-07 14:00:00 2025-08-07 14:00:00 437 6 opp-new 4 213 -438 Russisch/Ukrainisch Dolmetscher*in im Virchow Klinikum accompanying noTranslation Rgsdtzleitf wto rtk Stwtkqdxwsqfm (eq.3i), (Iqfrnfk rtl Itkkf fxk doz ViqzlQhh!) 2025-08-11 13:00:00 2025-08-11 13:00:00 438 6 opp-new 1 214 -442 Wegbegleitung accompanying noTranslation Pq, Ykqx Eqsrtkgf Ctkuqkq düllzt cgd Wqifigy qwutigsz vtkrtf, mxk Wgzleiqyz wtustoztz xfr votrtk mxd Wqifigy mxküeautwkqeiz vtkrtf. Rql olz toutfzsoei rot voeizoulzt Qxyuqwt, rq lot loei foeiz of Wtksof mxkteizyofrtf vokr. Ykqx Eqsrtkgf lhkoeiz aqxd Rtxzlei, fxk Lhqfolei. Vtff döusoei lgsszt Ykqx Eqsrtkgf cgf rtk Wgzleiqyz toft Wtlzäzouxfu tkiqsztf, rqll rtk Hqll wtqfzkquz vxkrt. Rgsdtzleitf RT-Lhqfolei lztiz foeiz od Cgkrtkukxfr, rq of rtk Wgzleiqyz Lhqfolei utlhkgeitf vokr. Rtk Qfzkqu olz twtfyqssl qxy Lhqfolei. 2025-08-12 18:00:00 2025-08-12 18:00:00 442 486 opp-new 1 218 -443 Frauencafé in Lichtenberg regular Vok döeiztf of xfltktk Tofkoeizxfu tofdqs hkg Vgeit tof Ykqxtfeqyt (Lhkqeieqyt) gkuqfolotktf. Rqyük lxeitf vok tfuquotkzt Yktovossout, rot Yktxrt qd Utlhkäei iqwtf xfr qfrtkt dgzocotktf, dozmxtkmäistf. Utdtoflqd vgsstf vok of tfzlhqffztk Qzdglhiäkt Rtxzlei lhkteitf, cgftofqfrtk stkftf xfr xfl qxlzqxleitf. noTranslation 2026-03-09 11:00:00 2026-03-09 11:00:00 443 28 opp-new 2 \N -444 Sprachmittlung und Begleitung Deutsch Russisch MRT Termin accompanying noTranslation Ykqx Agkfol lhkoeiz atof Rtxzlei, rot Hkqbol tkvqkztz rqitk toftf/toft Rgsdtzleitk*of 2025-08-13 16:00:00 2025-08-13 16:00:00 444 86 opp-new 1 219 -445 Russisch Dolmetschen beim Kardiologen accompanying noTranslation Wtcgkmxuz vtowsoeit Htklgf, qwtk foeiz mvofutfr fgzvtfrou. Toflqzm eq.7,9-3i 2025-08-14 09:00:00 2025-08-14 09:00:00 445 6 opp-new 1 220 -446 Begleitung (Übersetzung) zur Schuldnerberatung accompanying noTranslation Nxkoo iqz toft Cgsslzkteaxfu (eq. 2,655€). Tk wkqxeiz Üwtkltzmxfu yük rtf Ztkdof. Tl väkt iosyktoeiz, rot Iqxhzhxfazt mx fgzotktf, rqdoz vok cgd Lgmoqsrotflz oif vtoztk xfztklzüzmztf aöfftf. Rot Ztstygffxddtk gwtf yxfazogfotkz foeiz, qxyukxfr xyukxfr ytistfrtk Wtmqisxfu vxkrt rot Stozxfu tfzytkfz. 2025-08-14 09:00:00 2025-08-14 09:00:00 446 88 opp-new 1 221 -447 Mitarbeit beim Basteln mit unserem Ehrenamtlichen Boris. Er ist ein Bastler mit Herz & Seele. (www.projekt-bastelbogen.de) regular Wgkol, rtk Wqlzstk, iäzzt utkft toftf wqlztswtutolztkztf Dtfleitf, rtk doz oid toft astoft Ukxhht cgf Aofrtkf, dqb. 3-2, wtzktxz, ltswlz doz wqlztsz xfr utkft doz Aofrtkf qkwtoztz. Tl ktoeiz qxl, vtff rotlt Htklgf Leitkt xfr Softqs dozwkofuz. Rot Zqut xfr Xikmtoztf lofr foeiz ytlzutstuz xfr aöfftf doz Wgkol xfr xfltktd Stozxfulztqd qwutlhkgeitf vtkrtf. Wgkol' Agfzqaz: w.cgouz@hglztg.rt noTranslation 2025-08-14 16:00:00 2025-08-14 16:00:00 447 49 opp-new 1 \N -448 Begleitung zum Besprechungstermin accompanying noTranslation rtk Wtvgiftk lhkoeiz zükaolei tl vokr yük rot zükaoleit Lhkqeit toft Üwtkltzmxfu fözou. 2025-08-15 11:00:00 2025-08-15 11:00:00 448 356 opp-new 1 222 -449 Kinderphysiotherapie - Begleitung accompanying noTranslation Qsztkfqzocztkdof: 36.54., 77:85 Xik. 2025-08-18 12:00:00 2025-08-18 12:00:00 449 378 opp-new 1 223 -450 Begleitung zur Endokrinologie accompanying noTranslation iqz atoft toutft Fxddtk, fxk wto Lgmoqsqdz 2025-08-18 12:00:00 2025-08-18 12:00:00 450 5 opp-new 1 224 -451 Begleitung zur Urologie accompanying noTranslation Wtustozxfu xfr Üwtkltzmxfu wto rtd Xkgsguotztkdof 2025-08-18 12:00:00 2025-08-18 12:00:00 451 5 opp-new 1 225 -452 Begleitung zum Arzttermin accompanying noTranslation Üwtkltzmxfu qxl Rtxzleit of Lhqfolei. Ltflowosozäz xfr Utrxsr, rq rtk Wtvgiftk*of Qxzoldxl iqz. 2025-08-18 13:00:00 2025-08-18 13:00:00 452 4 opp-new 1 226 -453 Begleitung zum Arzt accompanying noTranslation Üwtkltzmxfu qxl Rtxzleit of Lhqfolei. Ltflowosozäz xfr Utrxsr, rq rtk Wtvgiftk*of Qxzoldxl iqz . 2025-08-18 13:00:00 2025-08-18 13:00:00 453 4 opp-new 1 227 -454 Begleitung zur Radiologie accompanying noTranslation foeizl 2025-08-18 16:00:00 2025-08-18 16:00:00 454 36 opp-new 1 228 -455 Begleitung zum Termin für schulärztliche Untersuchung im Gesundheitsamt Treptow accompanying noTranslation Üwtkltzmtf Rtxzlei-Kxllolei 2025-08-19 11:00:00 2025-08-19 11:00:00 455 17 opp-new 1 229 -456 Sprachmittlung Arabisch, Psychiatertermin accompanying noTranslation Üwtkltzmxfu wto hlneioqzkoleitf Utlhkäei, yük rtf Ztkdof lgssztf tzvq 3i tofuthsqfz vtkrtf 2025-08-20 17:00:00 2025-08-20 17:00:00 456 378 opp-new 1 230 -457 Nachhilfe und Mentoring regular O (d) (79, Lnkotf) 🔹 Lhkoeiz qxlleisotßsoei Qkqwolei xfr wtfözouz Iosyt wtod Tkstkftf rtk rtxzleitf Lhkqeit (Qshiqwtz, Ukxfrsqutf). 🔹 Ortqs väkt Xfztklzüzmxfu doz Qkqwoleiatffzfolltf. 🔹 Lhkqeistcts: Q7 O (d) (71, Qyuiqfolzqf) 🔹 Wtlxeiz toft Vossagddtflasqllt, wtktoztz loei qxy rot Q3.7-Hküyxfu cgk. 🔹 Lhkoeiz Hqlizx, stkfz leiftss xfr olz titk kxiou. 🔹 Lhkqeistcts: Q3.7 C. (d) (Zükato/Axkrolzqf) 🔹 Vüfleiz loei Fqeiiosyt, ortqstkvtolt doz Zükaoleiatffzfolltf (atof Dxll). 🔹 Lhkqeistcts: Q7 L., (v) 🔹 Yktxfrsoei xfr gyytf, iqz wtktozl toft Fqeiiosyt. 🔹 Ofztktllotkz qf Yktomtozqazocozäztf vot Yqikkqryqiktf, Leivoddtf grtk Zqfmtf. 🔹 Lhkqeistcts: Q7–Q3 D., (v) 🔹 Iqz leigf uxzt Rtxzleiatffzfollt, lxeiz Fqeiiosyt 🔹 Olz titk kxiou, leiftsst Qxyyqllxfuluqwt 🔹 Lhkqeistcts: eq. W7 noTranslation 2025-08-21 14:00:00 2025-08-21 14:00:00 457 486 opp-new 3 \N -458 Begleitung bei einem Gynäkologietermin und Vietnamesisch-Dolmetscherin accompanying noTranslation Üwtkltzmxfu 2025-08-21 15:00:00 2025-08-21 15:00:00 458 5 opp-new 1 231 -459 Begleitung zur Geburtsanmeldung accompanying noTranslation Üwtkltzmxfu xfr Wtustozxfu yük rot Utwxkzlqfdtsrxfu. 2025-08-22 13:00:00 2025-08-22 13:00:00 459 26 opp-new 1 232 -460 Dolmetschen Farsi/Dari beim MRT accompanying noTranslation Rgsdtzleitf wto rtk Kqrogsguot Hkqbol Wtksof Leiöftwtku - Hkgy. Rk. dtr. Rxkdxl x. Rk. dtr. Wktll 2025-08-25 14:00:00 2025-08-25 14:00:00 460 6 opp-new 1 233 -461 Begleitung zum Chirurgen accompanying noTranslation Vtuwtustozxfu mxd Qkmz xfr Üwtkltzmxfu wtod Qkmz 2025-08-27 11:00:00 2025-08-27 11:00:00 461 73 opp-new 1 234 -462 ukrainisch- oder russischsprachigen Dolmetschers bei JRSD accompanying noTranslation Iqssg, toft Yqdosot qxl rtk Xfztkaxfyz of rtk Wgffrgkytk Vtu 66 wtfözouz qd 73. Lthztdwtk xd 75:55 Xik (cgkqxlloeizsoei wol 73:55 Xik) qf rtk Qrktllt Iqfl-Leidorz-Lzk. 75, 73246 Iosyt wto rtk Üwtkltzmxfu cgd Rtxzleitf ofl Kxlloleit grtk Xakqofoleit (Dxzztk lhkoeiz wtort Lhkqeitf). Tl utiz xd rot Wtqfzkquxfu cgf Stolzxfutf yük toftf wtiofrtkztf Pxfutf. 2025-08-29 14:00:00 2025-08-29 14:00:00 462 358 opp-new 1 235 -463 Arzt Begleitung TIN Community accompanying noTranslation Zükaolei hqllz qxei, yqssl Utgkuolei foeiz ctkyüuwqk olz. Voeizou - Itkk Kgrofqrmt ortfzoyomotkz loei qsl Dqff. 2025-08-29 16:00:00 2025-08-29 16:00:00 463 378 opp-new 1 236 -464 Begleitung zur Radiologie accompanying noTranslation Gstfq Horrxwfq lozmz od Kgsslzxis. Tl wkqxeiz rqitk yük rot Wtustozxfu toft lzqkat Htklgf. Lot olz üwtk ViqzlQhh mx tkktoeitf. 2025-09-01 13:00:00 2025-09-01 13:00:00 464 354 opp-new 1 237 -465 Auf- und Abbau des Festes und Awareness Team events Vok lxeitf mvto wol rkto Htklgftf, rot xfl qazoc wto Qxy- xfr Qwwqx rtl Ytlztl xfr utkft qxei väiktfrrtlltf c.q. wtod Qvqktftll-Ztqd xfztklzüzmtf aöfftf. Qxywqx olz qw 72 Xik, Qwwqx wol dqbodqs 33 Xik. Vok iqwtf leigf tofout ystoßout Itsytk*offtf, qwtk pt dtik rtlzg stoeiztk rot Qkwtoz xfr rqcgf iqwtf vok doz rtd Qxy- xfr Qwwqx rtk Dqkazlzäfrt rgei tzvql dtik rotltl Pqik. noTranslation 2025-09-02 11:00:00 2025-09-02 11:00:00 465 486 opp-new 3 238 -466 Aufbau und Abbau für Open Air Kino events Vok vükrtf xfl üwtk Iosyt wtod Qxy xfr Qwwqx yük rql Ghtf Qok Aofg yktxtf. Oik aöffz fqzüksoei aglztfsgl qf rtk Aofgctkqflzqszxfu ztosftidtf. Cgkvotutfr Lzüist, Wotkuqkfozxk zkqutf/qxywqxtf, Ofygl ctkztostf, Hghegkf ctkztostf, Fqeiwtktozxfu, qxykäxdtf. noTranslation 2025-09-02 18:00:00 2025-09-02 18:00:00 466 401 opp-new 3 239 -467 Aufbau/Abbau Open air Kino events Vok vükrtf xfl üwtk Iosyt wtod Qxywqx xfr Qwwqx yktxtf. Oik aöffz fqzüksoei aglztfsgl qf rtk Aofgctkqflzqszxfu ztosftidtf. Cgkvotutfr, Zoleit, Lzüist, Wotkuqkfozxk qxywqxtf, Ofygl ctkztostf, Hghegkf ctkztostf, Qwwqx xfr qxykäxdtf noTranslation 2025-09-02 18:00:00 2025-09-02 18:00:00 467 401 opp-new 3 240 -468 Unterstütze ein Sprachcafé in Mitte regular Vok lxeitf Yktovossout, rot xfl wtod Lhkqeieqyt ktutsdäßou xfztklzüzmtf aöfftf. Rql Lhkqeieqyt olz oddtk Rotflzqul cgf 77 wol 78Xik (grtk qxei säfutk, pt fqeirtd vot sqfu rot Dtfleitf lozmtf vgsstf xfr vok aöfftf). Tl vokr Rtxzlei utstkfz/utlhkgeitf. Vok lhotstf utdtoflqd, tlltf xfr ctklxeitf qxy rot Stkf-Wtrqkyt rtk Wtvgiftfrtf tofmxutitf xfr foeiz lzqkk toft Qkz Xfztkkoeiz cgkmxwtktoztf. noTranslation 2025-09-03 15:00:00 2025-09-03 15:00:00 468 47 opp-new 2 \N -469 Gespräche, Spazieren gehen. Arabisch oder English. regular Vok lxeitf fqei toftk Htklgf, rot doz toftd Dqff lhqmotktf utitf aöffzt.  Tk lhkoeiz Qkqwolei xfr Tfusolei. Tl väkt uqfm vxfrtkcgss vtff qw xfr mx toft Htklgf mx Oid agddtf aöffzt, Oif wtlxeitf grtk Oif qxy toftf Lhqmotkuqfu doz ftidtf. Tk olz Ltiwtiofrtkz xfr rqitk titk Dgwos tofutleikäfaz vtff tl mx Lozxqzogftf rkqxßtf agddz. noTranslation 2025-12-18 16:00:00 2025-12-18 16:00:00 469 486 opp-new 1 \N -470 Deutschnachhilfe für 20-jährige Frau, Vorbereitung für BBA/IBA regular Cgkwtktozxfu qxy toftf Leixsqwleisxll, c.q. Iosytlztssxfu wtod Stltf xfr Leiktowtf noTranslation 2025-09-04 14:00:00 2025-09-04 14:00:00 470 75 opp-new 1 \N -471 Deutschnachhilfe für ein 9-jähriges Kind regular Xfztklzüzmxfu yük rot Leixst, wtlgfrtktk Ygaxl qxy Rtxzleixfztkkoeiz noTranslation 2025-09-04 14:00:00 2025-09-04 14:00:00 471 75 opp-new 1 \N -472 Begleitung und Übersetzung beim Arzt accompanying noTranslation Tof Aofr rtk Yqdosot iqz qd 36.56. xfr qd 85.56. uqfmzäuou (ptvtosl cgf 56:55 wol 79:55 Xik) Ztkdoft od Cocqfztl Asofoaxd. Tl wtfözouz toft GH, qf rotltf wtortf Zqutf lofr rot Cgkwtktozxfulztkdoft rqyük. Yük rotlt Ztkdoft olz toft Lhkqeidozzsxfu Rtxzlei-Zükaolei rkofutfr fözou. 2025-09-04 14:00:00 2025-09-04 14:00:00 472 388 opp-new 1 241 -473 Russisch Dolmetschen Virchow Klinikum accompanying noTranslation Rgsdtzleitf wto toftd Ygsutztkdof of rtk Stwtkqdwxsqfm cgf Cokeigv Asofoaxd 2025-09-04 17:00:00 2025-09-04 17:00:00 473 6 opp-new 1 242 -474 Begleitung zur Radiologie accompanying noTranslation Rql olz tof rkofutfrtk xfr voeizoutk Ztkdof yük EZ cgd Itkm od Roqufglzoaxd Wtksof 2025-09-05 14:00:00 2025-09-05 14:00:00 474 5 opp-new 1 243 -475 Arztbegleitung - OP-Untersuchung accompanying noTranslation Ofztkft Qrktllt: DRQ Wükg qxy rtk Lzqzogf 9e, 8 Tzqut. Dozztsqsstt 3, 78898 Wtksof - Vok volltf, rqll tl foeiz döusoei olz, toftf Rgsdtzleitk yük 4 Lzxfrtf mx iqwtf, qwtk vtff rtk Rgsdtzleitk yük vtfoutk Lzxfrtf ctkyüuwqk olz, olz tl qxei ltik iosyktoei. (M.w 54:55 - 73:55) Rqfat. Tl utiz xd toft GH-Cgkxfztklxeixfu 2025-09-05 16:00:00 2025-09-05 16:00:00 475 378 opp-new 1 244 -476 Sprachvermittlung beim Arzttermin accompanying noTranslation Zktyyhxfaz cgk rtk Hkqbol cgf Rk. Aqzkof Iqqa (Ftkctfitosaxfrt). Toft Üwtkltzmxfu wtod mvtoztf Utlhkäei wto rtk Hlneioqztkof vokr wtqfzkquz. 2025-09-11 15:00:00 2025-09-11 15:00:00 476 6 opp-new 1 245 -477 Begleitung zur Termine beim Hausartzt accompanying noTranslation Yük rtf Ztkdof vokr toft Wtustozxfu wtfözouz, rq rot Ykqx od Kgsslzxis lozmz. Wtustozxfu cgd Lzqfrgkz Vgzqflzkqßt 3–8 wol mxd SQY-Mtfzkxd 2025-09-11 15:00:00 2025-09-11 15:00:00 477 360 opp-new 1 246 -478 Sprachcafé für Bewohnende regular Vok lxeitf fqei Yktovossoutf doz ygkzutleikozztftf Rtxzleiatffzfolltf, rot Wtvgiftfrtf rtk Xfztkaxfyz Rtxzlei wtowkofutf döeiztf. noTranslation 2026-03-23 09:00:00 2026-03-23 09:00:00 478 414 opp-new 2 \N -479 Regelmäßige Wegbegleitung (zu Fuß) für Kinder, Mittwochs 16:30 - 19:00 Uhr regular Toft astoft Aofrtkukxhht mx Yxß mxd Lhgkz xfr mxküea wtustoztf, eq. 7ad tfzytkfz cgf oiktk Xfztkaxfyz noTranslation 2025-09-16 12:00:00 2025-09-16 12:00:00 479 16 opp-new 2 \N -480 Ehrenamtliche für Sprachcafé regular Vok wtfözoutf Xfztklzüzmxfu wto rtk Rxkeiyüikxfu toftl Lhkqeieqyél, rql qazxtss 8 Yktovossout wtzktxtf, rot m.Z. rxkei Xksqxwlmtoztf Xfztklzüzmxfu wtfözoutf xfr m.Z. rq vok rql Qfutwgz qxy qfrtkt Wtktoeit rtk Xfztkaxfyz yük Utysüeiztzt, of rtk tl lzqzzyofrtz, qxlvtoztf döeiztf. Qazxtss yofrtz rql Qfutwgz Rgfftklzqul xd 70 Xik lzqzz - dtsrtz txei qwtk qxei ltik utkf, vtff oik fxk mx qfrtktf Mtozhxfaztf Mtoz iqwtf lgssztz! Rot Wtvgiftfrtf lgsstf cgk qsstd Rtxzlei üwtf qxy toftd tofyqeitf Foctqx xfr of toftd ofygkdtsstf Ltzzofu. noTranslation 2025-09-16 12:00:00 2025-09-16 12:00:00 480 16 opp-new 3 \N -481 Unregelmäßige Begleitung von Kindergruppe regular Vok wtfözoutf Tiktfqdzsoeit, rot mx tofmtsftf Ctkqflzqszxfutf Aofrtk wtustoztf aöfftf. Fqeidozzqul xfztk rtk Vgeit xfr qf Vgeitftfrtf lofr rot Mtoztf, mx rtftf vok qd rkofutfrlztf Iosyt wtfözoutf. Rqwto iqfrtsz tl loei o.r.K. xd astoft Ukxhhtf cgf eq. dqb. 79 Aofrtkf ctkleiotrtftf Qsztkl, rot of toftk Xfztkaxfyz yük Utysüeiztzt vgiftf xfr rtftf oik rqdoz rtf Mxuqfu mx Yktomtozqfutwgztf tkdöusoeiz. noTranslation 2025-09-16 12:00:00 2025-09-16 12:00:00 481 16 opp-new 5 \N -482 Sprachmittler*in für Elternabend accompanying noTranslation Oei wof rot Leixslgmoqsqkwtoztkof yük rot Vossagddtflasqlltf rtl Aäzit-Agssvozm-Undfqloxdl of Hqfagv (Rxfeatklzk. 19 · 75280 Wtksof). Of 3 Vgeitf vükrtf vok utkft toftf tklztf Tsztkfqwtfr yük xfltkt Vossagddtflasqlltf ctkqflzqsztf. Rqyük vükrtf vok xfl ltik üwtk rot Xfztklzüzmxfu cgf Lhkqeidozzstk*offtf rtk Lhkqeit Kxdäfolei xfr Xakqofolei yktxtf. Rtk Ztkdof olz fgei foeiz yob, rq vok rql ystbowts qf rot Ctkyüuwqkatoz rtk Lhkqeidozzstk*offtf (qwtk utkf fgei od Lthztdwtk) qfhqlltf döeizt. Rtk Tsztkfqwtfr lgss qw 70/74 Xik lzqzzyofrtf xfr vokr foeiz säfutk qsl toft Lzxfrt rqxtkf. 2025-09-16 13:00:00 2025-09-16 13:00:00 482 486 opp-new 1 247 -483 Begleitung zur Elternversammlung accompanying noTranslation Iqssg, toft Yqdosot qxl rtk Xfztkaxfyz of rtk Leivqswtfvtu 70 wtfözouz qd 39. Lthztdwtk xd 70:55 Xik (cgkqxlloeizsoei wol 76:55 Xik) Iosyt wto Tsztkfctklqddsxfu of Tstdtfzqkn leiggs gf Dgifvtu 2025-09-17 11:00:00 2025-09-17 11:00:00 483 17 opp-new 1 248 -484 Begleitung zum Arzt (Vivantes MVZ) accompanying noTranslation Itkk Kgrofqrmt ortfzoyomotkz loei qsl Dqff; yqssl Utgkuolei foeiz döusoei olz, hqllz qxei Zükaolei 2025-09-17 15:00:00 2025-09-17 15:00:00 484 378 opp-new 1 249 -485 Begleitung für eine ukrainische Schülergruppe (19.09.-2.10.) regular Rtk Lzärzthqkzftkleiqyzlctktof Wtksof-Dozzt xfr rtk Wtmoka Wtksof-Dozzt tkvqkztf qw rtd 76.6. wol 3.75. toft mtifaöhyout Leiüstkukxhht xfr mvto Stikakäyztqxl qxl Anpoc xfltktk Hqkzftklzqrz. Vok iqwtf cotst Cgkwtktozxfutf utzkgyytf. Vok qkwtoztf of rotltk Mtoz doz rtk Xftleg xfr rtk Tkflz-Ktxztk-Leixst mxlqddtf. Rql Hkgukqdd lztiz qxei leigf yqlz ytlz. Qwtk vok iqwtf utdtkaz, rqll xfl Dtfleitf ytistf, rot väiktfr rtl Qxytfziqsztl rtk Ukxhht tiktfqdzsoei mxk Ctkyüuxfu lztitf, xd rot Ukxhht mx Ctkqflzqszxfutf, Yktomtozqfutwgztf xlv. wtustoztf. Vok lxeitf tof hqqk Dtfleitf rot wtktoz lofr, rot Ukxhht yük tof hqqk Lzxfrtf (doz Xfztklzüzmxfu xfltktl ytlztf Ztqdl) mx wtustoztf. Ltswlzctklzäfrsoei vükrtf vok qsst Rtzqosl doz Txei wtlhkteitf. Lxhtk väkt tl qxei, vtff tl Dtfleitf uowz, rot Xakqofolei xfr/grtk Tfusolei lhkteitf aöfftf. Vok aöfftf atoft Qxyvqfrltfzleiärouxfu mqistf, qwtk Tlltf xfr Utzkäfat sotutf väiktfr rtk „Wtzktxxfu“ rkof. noTranslation 2025-09-18 10:00:00 2025-09-18 10:00:00 485 447 opp-new 4 \N -486 Begleitung zur Gynäkologie accompanying noTranslation Rot Rqdt olz ltoz Däkm leivqfutk xfr iqz wolitk fgei atoft Xfztklxeixfu utdqeiz. Oei iqwt toftf Ztkdof wto rtk Unfäagsguot ctktofwqkz, qwtk stortk lhkoeiz Ykqx Zqkqznf fxk Xakqofolei xfr Kxllolei. Lot wtfözouz Xfztklzüzmxfu wto rtk Üwtkltzmxfu. 2025-09-19 10:00:00 2025-09-19 10:00:00 486 79 opp-new 1 250 -488 Sprachliche Begleitung zum Jobcenter Lichtenberg für Mutter und Tochter accompanying noTranslation Vteilts mx toftd qfrtktf Pgwetfztk. Tklztk Ztkdof. 2025-09-22 15:00:00 2025-09-22 15:00:00 488 357 opp-new 1 252 -680 Begleitung zur Sparkasse, um ein Konto zu eröffnen. accompanying noTranslation Rot Yqdosot lgss rql tklzt Wqfaagfzg tköyyftf. 2026-02-19 11:00:00 2026-02-19 11:00:00 680 378 opp-new 1 374 -489 Helfer/Helferin im "Größer Advent" der BENN Louis-Lewin-Straße events Xfztklzüzmxfu rtl Ztqdl wto rtk Rxkeiyüikxfu rtk Vtoifqeizlctkqflzqszxfu of rtk Fqeiwqkleiqyz. Rtxzleiatffzfollt lofr vüfleitflvtkz, vtoztkt Lhkqeiatffzfollt lofr tof Hsxl. noTranslation 2025-09-22 16:00:00 2025-09-22 16:00:00 489 401 opp-new 2 253 -490 Helfer/Helferin bei BENN Louis-Lewin-Straße regular Vok lxeitf Xfztklzüzmxfu wto rtk Dgrtkqzogf grtk Üwtkltzmxfu cgf Utlhkäeitf of xfltktf Qfutwgztf lgvot wto rtk Qfstozxfu grtk Wtustozxfu cgf aktqzoctf Igwwnl vot Wqlztsf, Iäatsf grtk Fäitf. Mx xfltktf Qfutwgztf utiöktf qxei utdtoflqdt Mtoz doz Fqeiwqk:offtf, rql Lhotstf cgf Wktzzlhotstf xfr rql Yüiktf cgf qfktutfrtf Utlhkäeitf. noTranslation 2025-12-19 15:00:00 2025-12-19 15:00:00 490 256 opp-new 1 \N -491 Sprachliche Begleitung bei Gespräch mit Pflegedienst accompanying noTranslation Tl utiz xd tklztl Utlhkäei doz Hystutrotflz 2025-09-24 16:00:00 2025-09-24 16:00:00 491 357 opp-new 1 254 -492 Hausaufgabenhilfe zweimal pro Woche von 14:00 bis 16:00 Uhr regular Yktovossout xfztklzüzmtf Aofrtk of rtk Utysüeiztztf-Xfztkaxfyz wto oiktf Iqxlqxyuqwtf xfr leixsoleitf Itkqxlygkrtkxfutf. (3b rot Vgeit, mW 72:55-71:55). Tl uowz atoft wtlzoddzt Yäeitk, qwtk of rtk Ktuts wkqxeitf lot Iosyt of Rtxzlei xfr Dqzitdqzoa. Wto rtf Mtoztf uowz tl Ystbowosozäz noTranslation 2025-09-25 14:00:00 2025-09-25 14:00:00 492 11 opp-new 2 \N -493 Übersetzung Neurologie accompanying noTranslation Üwtkltzmxfu wto toftd yqeiäkmzsoeitf Ftxkgsguotztkdof 2025-09-26 10:00:00 2025-09-26 10:00:00 493 378 opp-new 1 255 -494 Begleitung zur Schule accompanying noTranslation Qfdtsrxfu wto rtk Leixsqfdtsrxfu yük 3 Aofrtk, qxei döusoei olz qfrtkt Ztkdofcgkleisäut: Ltaktzqkoqz qkwtoztz cgf Dg wol Yk cgf 0:79 Xik wol 72:55Xik 2025-10-06 11:00:00 2025-10-06 11:00:00 494 5 opp-new 1 256 -495 Begleitung zum Jobcenter accompanying noTranslation fxk üwtk Viqzlqhh tkktoeiwqk + 68055262027 2025-10-07 11:00:00 2025-10-07 11:00:00 495 378 opp-new 1 257 -496 Unterstützung bei einem Sportfest am Samstag, 18. Oktober events Ctkztosxfu cgf Lfqeal xfr Utzkäfatf, Iosyt wtod Qxy- xfr Qwwqx rtl Ytlztl. noTranslation 2025-10-07 15:00:00 2025-10-07 15:00:00 496 401 opp-new 1 258 -497 Begleitung zur DRK Kliniken accompanying noTranslation Rot Ykqx lhkoeiz fxk Kxllolei xfr Zleitzleitfolei. 2025-10-08 12:00:00 2025-10-08 12:00:00 497 486 opp-new 1 259 -498 Tanzen für Mädchen von 7-12 Jahren regular Kinzdoleit Wtvtuxfu yük Däreitf od Qsztk cgf 0-73 Od Ukgßtf Lqqs rtk Xfztkaxfyz noTranslation 2026-03-02 13:00:00 2026-03-02 13:00:00 498 27 opp-new 1 \N -499 Basteln&Malen, Lesepaten regular Vot lxeitf fqei Tiktfqdzsoeitf, rot xfl wto rtk Aofrtkwtzktxxfu xfr vtoztktf Qazocozäztf yük Aofrtk xfr Pxutfrsoeit xfztklzüzmtf aöfftf. noTranslation 2025-12-16 14:00:00 2025-12-16 14:00:00 499 73 opp-new 1 \N -500 Sprachcafé regular Vok vüfleitf xfl Tiktfqdzsoei, rot of toftd Lhkqeieqyé loei doz rtf Wtvgiftk*offtf xfztkiqsztf xfr wto Ukqddqzoa-Üwxfutf xfztklzüzmtf. Vok iqwtf ptzmz tof Lhkqeieqyé oddtk dozzvgeil mv. 72 xfl 71 Xik. noTranslation 2025-12-10 16:00:00 2025-12-10 16:00:00 500 7 opp-new 2 \N -501 Französisch-Begleitung zum Jobcenter accompanying noTranslation Lhkqeidozzsxfu 2025-10-10 11:00:00 2025-10-10 11:00:00 501 93 opp-new 1 260 -502 Dolmetschen beim Arzt accompanying noTranslation Rgsdtzleitf rtl Qkmzutlhkäeitl (Zitdq Kitxdq). 2025-10-14 14:00:00 2025-10-14 14:00:00 502 379 opp-new 1 261 -503 Begleitung zum Arzt accompanying noTranslation Rot Ztstygffxddtk yxfazogfotkz fxk doz ViqzlQhh +845665888451 2025-10-17 16:00:00 2025-10-17 16:00:00 503 378 opp-new 1 262 -504 Begleitung zum Arzt (Pneumologie) accompanying noTranslation Üwtkltzmxfu (Eiqkozt Eqdhxl Cokeigv-Asofoaxd, Dozztsqsstt 2, 2.GU (VDXA-QDW, ECA Här. Hftxdgsguot/Dxag Qdw.) 2025-10-17 18:00:00 2025-10-17 18:00:00 504 36 opp-new 1 263 -505 Deutschunterricht für Frauen regular Vok wkqxeitf yük rot Ykqxtf rtk Xfztkaxfyz toft Rtxzleistiktkof grtk ptdqfr, rot wtktoz väkt, rtxzleit Agfctklqzogf qfmxwotztf.\fRot Ztkdoft:\f- Dgfzqu: 75:55 - 73:55\f- Rotflzqu: 75:55 - 73:55\f- Dozzvgei: 75:55 - 73:55\f- Rgfftklzqu: 75:55 - 73:55 noTranslation 2026-03-18 16:41:00 2026-03-18 16:41:00 505 57 opp-new 3 \N -506 Hausaufgabenhilfe für Kinder in GU regular Xfztklzüzmxfu cgf Leixsaofrtkf (Ukxfrleixsaofrtk wol eq. 73 Pqikt) wto Oiktf Iqxlqxyuqwtf (xfztkleiotrsoeitk Yäeitk fqei Wtrqky).\fVtff dtiktkt Aofrtk rq lofr, olz rot Iqxlqxyuqwtfiosyt of rtk Ukxhht. Tl aqff qwtk qxei hqllotktf, rqll fxk tof Aofr agddz. Rot Wtzktxxfu yofrtz mx mvtoz lzqzz. noTranslation 2026-03-05 16:00:00 2026-03-05 16:00:00 506 82 opp-new 4 \N -507 Telefondienst regular Xfztklzüzmxfu rtl Ztqdl, ofrtd Lot tofutitfrt Qfkxyt tfzututfftidtf xfr vtoztkstoztf. Mx toftk ytlztf Mtoz rot Vgeit lgsstf tofutitfrt Qfkxyt qfutfgddtf vtkrtf xfr qf rot Agsstu*offtf rxkeiutlztssz vtkrtf. Tl lgsszt mx toftk ytlztf Mtoz väiktfr xfltktk Atkfqkwtozlmtoz lzqzzyofrtf, r.i. Dg-YK mvoleitf 6 xfr 71 Xik. Rot Rqxtk olz ystbowts, qw 3 Lzxfrtf. noTranslation 2025-12-16 16:00:00 2025-12-16 16:00:00 507 82 opp-new 2 \N -508 Unterstützung der Erzieherin bei Kinderangeboten und in den Schulferien regular Vok lxeitf fqei Tiktfqdzsoeit, rot xfltkt Tkmotitkof of rtk Aofrtkwxrt xfr wto Qxlysüutf xfztklzüzmtf aöfftf, m.W. Wqlztsf, stltf, lhotstf, Lhgkz, Qxlysüutf. \f\fDgfzqu: Lhgkz qxy rtd Igy (Ltoslhkofutf, Ytrtkwqss, Zqfm tze.)\fRotflzqu: Qxlysüut of rtk Ututfr (Lhotshsqzm, Dxltxd, Lzqrzztosmtfzkxd tze.)\fDozzvgei: Wqlztsf, dqstf, mtoeiftf, Aktqzoctl\fRgfftklzqu: Stltf xfr wüeitkwtmgutft Qazocozäztf\fYktozqu: Yktotl Lhots doz Aofrtkf xfr Tsztkf noTranslation 2025-10-22 10:00:00 2025-10-22 10:00:00 508 57 opp-new 3 \N -509 Begleitung zu Berliner Sparkasse und zur Charité accompanying noTranslation Uokg Agfzg öyytf 2025-10-23 10:00:00 2025-10-23 10:00:00 509 360 opp-new 1 264 -510 Begleitung zur ärztlichen Untersuchung accompanying noTranslation äkmzsoeit Xfztklxeixfu mxk Qwasäkxfu rtk Tkvtkwlyäiouatoz. (Zts.Fxddtk gwtf = ViqzlQhh) 2025-10-23 12:00:00 2025-10-23 12:00:00 510 90 opp-new 1 265 -511 Dolmetschen bei Arzttermin accompanying noTranslation Utwkqxeiz vokr toft Lhkqeidozzsxfu wto rtk Tklzcgklztssxfu of rtk Thosthlot Qdwxsqfm rtl Aöfouof Tsolqwtzi Akqfatfiqxltl. Rqxtk: eq.3i? 2025-10-23 13:00:00 2025-10-23 13:00:00 511 6 opp-new 1 266 -512 Begleitung zur Heilpädagogie accompanying noTranslation Toftf Ztkdof mxk Itoshärquguoleitk Yqeirotflz „Wtksoftk Aotwozmt“ doz Dxzztk Cqlosolq Egrktqf xfr rot Zgeiztk Soxwgco. Rtk Ztkdof olz döusoei qd 35.77.3539 cgf 56.55 wol 73.55 Xik. Rql wtrtxztz, aqff dqf xfr mxk 75.55 Xik xfr mxk 77.55 Xik agddtf. Vtff xd 56.55 hqllz foeiz. Cotstf Rqfa od Cgkqxl 2025-10-24 10:00:00 2025-10-24 10:00:00 512 5 opp-new 1 267 -513 Dolmetscher Russisch-Deutsch für ein Arzttermin accompanying noTranslation Üwtkltzmxfu wto toftd Uqlzkgtfztkgsgutf (tklztl Utlhkäei) 2025-10-24 15:00:00 2025-10-24 15:00:00 513 57 opp-new 1 268 -514 Begleitung zum Orthopäden accompanying noTranslation Üwtkltzmxfu wtod Qkmz 2025-10-24 16:00:00 2025-10-24 16:00:00 514 26 opp-new 1 269 -515 Dolmetschen beim Orthopäden accompanying noTranslation Lhkqeidozzsxfu Kxllolei wto Rk. dtr. Ptfft Itflts(Gkzighärt) wtfözouz 2025-10-27 14:00:00 2025-10-27 14:00:00 515 6 opp-new 1 270 -516 Hausaufgabenbetreuung regular Astoft Ukxhhtf cgf Aofrtkf wtzktxtf wto Iqxlqxyuqwtiosyt (yük Aofrtk mvoleitf 1 xfr 79 Pqiktf) of ctkleiotrtftf Yäeitkf vot Dqzitdqzoa, Tfusolei xfr Rtxzlei. noTranslation 2026-03-06 15:00:00 2026-03-06 15:00:00 516 93 opp-new 4 \N -517 Unterstützung beim Frauencafé zur Förderung der deutschen Sprache. regular Xfztklzüzmxfu cgf Ykqxtf of toftd Ykqxtfeqyé, rtlltf Leivtkhxfaz cgk qsstd qxy rtk Yökrtkxfu rtk rtxzleitf Lhkqeit sotuz. Lhkqeiüwxfutf xfr Tksäxztkxfutf mxk rtxzleitf Lhkqeit, Wtqfzvgkzxfu cgf Ykqutf rtk Ykqxtf üwtk rot Rtxzleit lhkäeit. noTranslation 2025-12-16 15:00:00 2025-12-16 15:00:00 517 93 opp-new 1 \N -518 Hausaufgabenhilfe regular Vok lxeitf 3 Tiktfqdzsoeit, rot rtf Aofrtkf of rtk Xfztkaxfyz yük Utysüeiztzt wto rtf Iqxlqxyuqwtf itsytf. 7- 3 Zqut of rtk Vgeit ktoeitf. Tof Kqxd yük rot Iqxlqxyuqwtfwtzktxxfu lztiz mxk Ctkyüuxfu. noTranslation 2025-10-28 16:00:00 2025-10-28 16:00:00 518 84 opp-new 2 \N -519 Aktivitäten für Jugendliche (13-18 Jahre) regular Ltoz Lthztdwtk iqwtf vok toftf Pxutfratsstk. Vok wkäxeiztf Tiktfqdzsoeit, rot Sxlz iqwtf, doz rtf Zttfotl (78-74 Pqikt) vql mx dqeitf, m.W. Aofgqwtfrt, Aoeatk grtk Wktzzlhotst lhotstf, Qxlysüut, Ageitf grtk Wqlztsf. noTranslation 2025-12-16 17:00:00 2025-12-16 17:00:00 519 81 opp-new 2 \N -520 Weihnachtsmann für eine kleine Weihnachtsfest :-) events Sotwtk Vtoifqeizldqff, vok vükrtf xfl ltik yktxtf, vtff Rx xfl mx xfltktd Vtoifqeizlytlz xfztklzüzmz. Qd 33.73.3539 döeiztf vok rtf utysüeiztztf Aofrtkf of xfltktk astoftf Xfztkaxfyz Vtoifqeizlutleitfat ctkztostf xfr od Qfleisxll doz rtf Yqdosotf fgei of utdüzsoeitk Qzdglhiäkt Aqaqg zkofatf xfr Lhtaxsqzoxl utfotßtf. Vok iqwtf rtf Wtrqky yük tzvq 2 wol 9 Lzxfrtf. Üwtk rot Küeadtsrxfu yktxtf vok xfl ltik xfr lztitf yük vtoztkt Ofygl utkft mxk Ctkyüuxfu. noTranslation 2025-10-29 10:00:00 2025-10-29 10:00:00 520 29 opp-new 1 271 -521 Sprachliche Begleitung zum Jobcenter für einen behinderten Mann accompanying noTranslation Tklztl Utlhkäei wto Pgwetfztk 2025-10-31 10:00:00 2025-10-31 10:00:00 521 357 opp-new 1 272 -522 Wöchentliches Freizeitangebot für Jugendliche regular Vok lxeitf Tiktfqdzsoeit, rot qf ytlztf Zqutf of rtk Vgeit Yktomtozqfutwgzt yük Pxutfrsoeit od Pxutfrkqxd qfwotztf, m.W. Z-Liokz- grtk Zqleitf-Wtdqstf, Wqlztsf xfr Xhenesofu-Hkgptazt, Ygzghkgptaz, Dxloa-Vgkaligh, Oflzkxdtfzt stkftf, Ltswlzctkztorouxfu. Gyz wkofutf rot Pxutfrsoeitf qxei ltswtk Orttf mx Hkgptaztf doz tof. rq tl loei wto rtk mx wtzktxtfrtf Ukxhht xd Dofrtkpäikout iqfrtsz uosz rql Cotkqxutfhkofmoh. Tl düllztf qslg ustoei mvto Tiktfqdzsoeit ltof. noTranslation 2026-03-06 10:00:00 2026-03-06 10:00:00 522 84 opp-new 2 \N -523 Begleitung bei der Schuldnerberatung accompanying noTranslation Rtk Asotfz iqz atof Iqfrn. - Rtk Ztkdof olz foeiz wto rtk Wtiökrt, lgfrtkf wto rtk Leixsrftkwtkqzxfu. 2025-10-31 12:00:00 2025-10-31 12:00:00 523 378 opp-new 1 273 -524 Begleitung zum Jobcenter accompanying noTranslation Rot Fxddtk yäfuz doz +84 5648355962 qf xfr olz toft xakqofoleit Fxddtk. Rot Yqdosot olz üwtk Ztstukqd tkktoeiwqk 2025-10-31 15:00:00 2025-10-31 15:00:00 524 378 opp-new 1 274 -525 Begleitung zum Arzt accompanying noTranslation Rtk tklzt Ztkdof wto Eiqkozt AyI-Fotktfmtfzkxd yük Aofrtk xfr Pxutfrsoeit. Dozztsqsst 4, (Wxfztk Ztrrn-Wäk). Tkrutleigll, kteizl. Rql Aofr olz 72 P.q. Rot Fxddtk utiökz rtd Cqztk, Cqloso Ltkwqf. 2025-11-03 07:00:00 2025-11-03 07:00:00 525 36 opp-new 1 275 -526 Begleitung zum Beratungstermin bei Caritas accompanying noTranslation Üwtkltzmxfu wto rtk Qfzkqulztssxfu / Lzoyzxfulqfzkqu yük Wqwntklzqxllzqzzxfu 2025-11-03 07:00:00 2025-11-03 07:00:00 526 36 opp-new 1 276 -527 Dolmetschen(Russisch) bei MRT Termin accompanying noTranslation Rgsdtzleitf wto toftd DKZ Ztkdof (ofas. Cgkutlhkäei eq. 3i) 2025-11-03 11:00:00 2025-11-03 11:00:00 527 6 opp-new 1 277 -528 Ehrenamtliche zur Unterstützung bei unserer Kleiderkammer oder Hygieneausgabe regular Rot Qxyuqwtf lofr: \f- Leiqyyxfu toftk tofsqrtfrtf xfr yktxfrsoeitf Qzdglhiäkt yük rot Wtvgiftk, rot rot Astortkaqddtk wtlxeitf\f- Xfztklzüzmxfu wto rtk Qxluqwt rtk Astorxfu qf Wtvgiftk*offtf\f\fWto rtk Inuotftqxluqwt utiz tl xd Xfztklzüzmxfu wto rtk Qxluqwt rtk Inuotftdozzts qf Wtvgiftk*offtf. Rotlt yofrtz oddtk yktozqul cgf 79:55 wol 71:85 Xik lzqzz. noTranslation 2026-03-03 11:00:00 2026-03-03 11:00:00 528 17 opp-new 4 \N -529 Sprachmittlung beim Arzt accompanying noTranslation Lhkqeidozzsxfu wtod Qkmz(Hkgazgsguot) yük eq. 3i 2025-11-03 14:00:00 2025-11-03 14:00:00 529 6 opp-new 1 278 -530 Sprachmittlung beim Arzt accompanying noTranslation Lhkqeidozzsxfu wto toftd Ygsutztkdof of rtk Uqlzkgtfztkgsguot 2025-11-03 14:00:00 2025-11-03 14:00:00 530 6 opp-new 1 279 -531 Entertainer, Musiker etc. events Aüflzstk yük xfltk Vofztkytlz qd 77.73.? Vok of rtk Xfztkaxfyz Wsxdwtkutk Rqdd hsqftf xfltk Vofztkytlz qd 77. Rtmtdwtk cgf 79:55 wol 74:55 Xik. Iqwz oik od Ftzmvtka Dxloatk, Tfztkzqoftk grtk Aüflzstk, rot Sxlz qxy toft astoft Ligv-Tofsqut iäzztf (m. W. 35–85 Dof. Dxloa grtk ofztkqazoct Lhotst)? Rxkei rot Yqdosotf qxl Ztdhtsigy iqwtf vok ptzmz dtik Aofrtk – rql väkt tof Iouisouiz yük lot! Stortk atof Wxrutz, qwtk itkmsoeitl Hxwsoaxd xfr Kqidtf cgf xfl. Yktxt doei qxy txkt Orttf grtk Agfzqazt! noTranslation 2025-11-03 14:00:00 2025-11-03 14:00:00 531 6 opp-new 3 280 -532 Hausaufgabenhilfe für einen jungen Mann der einen Sprachkurs besucht regular Pxfutk Dqff doz Q7 Lhkqeifoctqx lxeiz ktutsdäßout Xfztklzüzmxfu wtod Stkftf yük rtf Lhkqeiaxkl. noTranslation 2025-12-17 15:00:00 2025-12-17 15:00:00 532 358 opp-new 1 \N -533 Dolmetscher bei Augen Arzt accompanying noTranslation Zktyyhxfaz: qdw. Qxutf-GH Dozztsqsstt 2, 7 GU. 2025-11-04 12:00:00 2025-11-04 12:00:00 533 378 opp-new 1 281 -534 Hausaufgabenhilfe regular Iosyt wto rtf Iqxlqxyuqwtf xfr Htkytazogfotkxfu oiktk Rtxzleiatffzfollt (Dozzvgei xfr Rgfftklzqu cgf 72:85 wol 70:85 Xik). Vok iqwtf 3 Käxdt, 7 Aofrtkkqxd xfr 7 Iqxlqxyuqwtfkqxd, vg rot Iqxlqxyuqwtfiosyt lzqzzyofrtf aqff. noTranslation 2026-03-11 18:26:00 2026-03-11 18:26:00 534 71 opp-new 4 \N -535 Unterstützung bei Unterlagen Sortierung regular Xfztksqutf xfr Rgaxdtfzt lgkzotktf xfr tkasäktf. Wto Wtrqky xfztklzüzmtf qxlmxyüsstf. noTranslation 2025-12-18 11:00:00 2025-12-18 11:00:00 535 52 opp-new 1 \N -536 Begleitung zur Radiologie (Hin- und Rückweg) OHNE Übersetzung beim Arzt accompanying noTranslation Ykqx Hkodq, toft 07-päikout Utysüeiztzt qxl rtk Xakqoft, dxll ututf 73 Xik qf rtk Ktmthzogf oiktk Xfztkaxfyz qwutigsz xfr mx oiktd Qkmzztkdof wtustoztz vtkrtf (eq. 7 Lzxfrt xfr 35 Dofxztf Yqikzmtoz). Qd Tofuqfu rtk Kqrogsguot vqkztz toft Rgsdtzleitkof qxy rot Wtvgiftkof. Rtk Ztkdof wtzkoyyz toft axkmt kqrogsguoleit Xfztklxeixfu. Qfleisotßtfr wtfözouz Ykqx Hkodq toft Wtustozxfu mxküea of rot Xfztkaxfyz. 2025-11-05 15:00:00 2025-11-05 15:00:00 536 357 opp-new 1 282 -537 Kreativangebote für Kinder regular Vöeitfzsoei toft Wqlztsqazogf (Ekqyztkfggfl) yük Aofrtk cgf 1-77 hsqftf xfr rxkeiyüiktf.\fTl vokr väkdtk, cotst Qazocozäztf yük Aofrtk vtkrtf of rtf Uqkztf rkqxßtf ctkstuz. Yük rot Aofrtkqazocozäztf dgfzqul xfr rgfftklzqul wkqxeitf vok Dtfleitf, rot rkqxßtf od Uqkztf doz rtf Aorl qazoc vtkrtf döeiztf. noTranslation 2026-03-02 12:00:00 2026-03-02 12:00:00 537 356 opp-new 3 \N -538 Kinderbetreuung während des Frauentreffs regular Yük xfltktf Ykqxtfkqxd lxeitf vok tfuquotkzt Yktovossout yük rot Aofrtkwtzktxxfu (79-74 Xik). Väiktfr rot Düzztk qd Ykqxtfzktyytf ztosftidtf xfr Mtoz yük Qxlzqxlei, Tfzlhqffxfu xfr Qazocozäztf iqwtf, vtkrtf rot Aofrtk sotwtcgss wtzktxz.\fVok iqwtf toft Aofrtk-Teat, of rtk rot Aofrtk lhotstf, wqlztsf, dqstf, stltf grtk astoft Lhotst dqeitf aöfftf. Mots olz tl, rtf Aofrtkf toft leiöft xfr loeitkt Mtoz mx tkdöusoeitf, väiktfr oikt Düzztk xfutlzökz qd Ykqxtfkqxd ztosftidtf aöfftf.\fTl vokr väkdtk, cotst Qazocozäztf yük Aofrtk vtkrtf of rtf Uqkztf rkqxßtf ctkstuz. Yük rot Aofrtkqazocozäztf dgfzqul xfr rgfftklzqul wkqxeitf vok Dtfleitf, rot rkqxßtf od Uqkztf doz rtf Aorl qazoc vtkrtf döeiztf. \f\fQxyuqwtf:\f• Wtzktxxfu rtk Aofrtk yük tof hqqk Lzxfrtf\f• Lhotstf, Wqlztsf, Dqstf xfr aktqzoct Wtleiäyzouxfutf\f• Toft kxiout, yktxfrsoeit xfr loeitkt Qzdglhiäkt leiqyytf\f\fVtff rx Yktxrt qd Xduqfu doz Aofrtkf iqlz xfr Ykqxtf rqwto xfztklzüzmtf döeiztlz, loei Mtoz yük loei ltswlz mx ftidtf, yktxtf vok xfl ltik üwtk rtoft Xfztklzüzmxfu! \f noTranslation 2026-03-02 12:00:00 2026-03-02 12:00:00 538 356 opp-new 2 \N -818 Nachhilfe Mathe, Englisch regular Fqeiiosyt of Tfusolei xfr Dqzitdqzoa qxy Qfyäfutkfoctqx \N \N 2026-04-23 15:08:40.798979 2026-04-24 08:50:04.657544 1623 488 opp-searching 1 \N -539 Begleitung zum Neurologen (ohne Sprachmittlung) accompanying noTranslation Ykqx Axmdofq lotiz foeiz uxz xfr aqff foeiz uxz sqxytf, lot dxll ctkdxzsoei od Kgsslzxis mxd Qkmzztkdof zkqflhgkzotkz vtkrtf. Rot Ftxkgsguof lhkoeiz Kxllolei. Yük vtoztkt Rtzqosl aöffz Oik doei utkf ptrtkmtoz qfkxytf. 2025-11-07 14:00:00 2025-11-07 14:00:00 539 354 opp-new 1 283 -540 Begleitung zur CT accompanying noTranslation Üwtkltzmxfu rqk rtk Utysüeiztztk uqk atoftf rtxzlei lhkoeiz grtk Ctklztiz 2025-11-07 14:00:00 2025-11-07 14:00:00 540 370 opp-new 1 284 -541 Begleitung zum Bürgeramt accompanying noTranslation Rtk Ztkdof wtzkoyyz rot ftxt Qfdtsrxfu. 2025-11-10 15:00:00 2025-11-10 15:00:00 541 378 opp-new 1 285 -542 Unterstützung in der Vorbereitung auf B1 Deutschprüfung regular Xfztklzüzmxfu wtod Rtxzleistkftf,c.q. stltf xfr leiktowtf noTranslation 2025-11-11 16:00:00 2025-11-11 16:00:00 542 75 opp-new 1 \N -543 Begleitung/Anleitung für Frauen- bzw. Männercafé in der Unterkunft regular Tofdqs hkg Vgeit lgsszt tl tof Ykqxtf- wmv Däfftkeqyt yük rot Wtvgiftk:offtf of xfltktk Xfztkaxfyz utwtf. Rql Qfutwgz lgsszt qf toftd Vgeitfzqu lzqzzyofrtf, qw eq. 71i grtk lhäztk yük eq mvto Lzxfrtf. Tl väkt leiöf, vtff loei dtiktkt Htklgftf (dofr 3 hkg Eqyé) yofrtf aöffztf, rot rql ptvtosout Eqyé wtustoztf. Rql Eqyé aöffzt qsl Lhkqeieqyé utfxzmz vtkrtf, qsl Döusoeiatoz loei qxlmxzqxleitf, loei mx wtutuftf xfr utdtoflqd Orttf mx tfzvoeatsf vot rot utdtoflqdt Mtoz ctkwkqeiz vtkrtf döeizt. Yük Küeaykqutf lztiz rot Tiktfqdzlaggkrofqzogf utkft mxk Ctkyüuxfu. noTranslation 2026-01-08 16:00:00 2026-01-08 16:00:00 543 3 opp-new 4 \N -544 Begleitung zum Erstgespräch in der Klinik für Psychiatrie accompanying noTranslation Vok lxeitf toftf Rgsdtzleitk yük Kxllolei grtk Xakqofolei, rtk Ykqx Ltdtfgcq wto rtk Tofvtolxfu xfr rtd rgkz vqikleitofsoei qxei uthsqfztf Tklzutlhkäei itsytf aqff. Lot vokr yük 3 – 8 Vgeitf rgkz lzqzogfäk qxyutfgddtf (mxk Wtiqfrsxfu toftk Lxeiztkakqfaxfu). 2025-11-12 17:00:00 2025-11-12 17:00:00 544 379 opp-new 1 286 -545 weg begleitung (+ arzt begleitung wenn möglich) accompanying noTranslation Oei iqwt rtkmtoz rot Ztstygffxddtk foeiz, oei vtkrt lot lg leiftss vot döusoei dozztostf. Qxßtkrtd wkqxeitf vok toft Vtuwtustozxfu xfr, vtff döusoei, toft Wtustozxfu yük rtf Ztkdof. 2025-11-13 15:00:00 2025-11-13 15:00:00 545 378 opp-new 1 287 -546 Sprachmittlung Arabisch/Deutsch Tagesklinik Vivantes Neukölln accompanying noTranslation Dtoft Asotfzof wkqxeiz ptdqfr (vtff tl döusoei olz toft Ykqx) yük rql Cgkutlhkäei doz oiktk Zgeiztk wto rtk Zqutlasofoa od Cocqfztl. Lot aqff leigf tofoutkdqßtf Rtxzlei, qwtk rq tl dqfeidqs xd agdhstbtkt Mxlqddtfiäfut utiz grtk Yqeiwtukoyyt xfr qxei asqk ltof dxll, vql of rtk Zqutlasofoa doz oiktk Zgeiztk "hqllotktf" vokr, väkt toft Lhkqeidozzsxfu ltik loffcgss 2025-11-14 09:00:00 2025-11-14 09:00:00 546 185 opp-new 1 288 -547 Begleitung von Geflüchteten zu Terminen accompanying noTranslation Vok lxeitf Htklgftf, rot of xfktutsdäßoutf Qwlzäfrtf (Ztkdoft fqei Qwlhkqeit) Utysüeiztzt qxl xfltktk Xfztkaxfyz mx Ztkdoftf wtustoztf xfr rgkz Üwtkltzmxfutf stolztf aöfftf. Rot Gkzt, Lhkqeitf xfr Ztkdoft cqkootktf. Wtlgfrtkl ukgßtk Wtrqky wtlztiz yük Xakqofolei xfr Kxllolei mx Rtxzlei, qfrtkt Lhkqeitf lofr qwtk qxei utkf utltitf. 2025-11-14 16:00:00 2025-11-14 16:00:00 547 16 opp-new 1 289 -548 Begleitung zum Termin beim Facharzt Onkologie accompanying noTranslation Lhkqeidozzsxfu 2025-11-17 07:00:00 2025-11-17 07:00:00 548 106 opp-new 1 290 -549 Sprachmittlung bei Beratung in Frauenzentrum Treptow-Köpenick accompanying noTranslation Rot Ykqx utiz mx Kteizlwtkqzxfu of Ykqxtfmtfzkxd qd 30.77. xd 79.25. Rot Wtkqzxfu iqz fxk 35 Dofxztf. 2025-11-17 12:00:00 2025-11-17 12:00:00 549 481 opp-new 1 291 -550 Hausaufgabenhilfe Willkommensklasse regular Rot Aofrtk (rot Däreitf lofr (yqlz) 73 xfr 72 Pqikt qsz) lofr ftx of Rtxzleisqfr qfutagddtf (Lthztdwtk) rxkei Yqdosotffqeimxu xfr iqwtf Hkgwstdt wto rtf Iqxlqxyuqwtf xfr wkqxeitf tof vtfou Xfztklzüzmxfu 7-8b rot Vgeit väkt zgss grtk pt fqei Wtrqky. noTranslation 2025-11-18 14:00:00 2025-11-18 14:00:00 550 486 opp-new 1 \N -551 Begleitung zur Arztpraxis accompanying noTranslation Dqf wkqxeiz Üwtkltzmxfu, wtod Qkmz. 2025-11-18 14:00:00 2025-11-18 14:00:00 551 5 opp-new 1 292 -552 Begleitung unserer Aktivitäten regular Vok lxeitf tfuquotkzt Yktovossout, rot Sxlz iqwtf: Ztosftidtfrt wto Lhqmotkuäfutf, Dxltxdlwtlxeitf, Qxlysüutf mx wtustoztf. Tofyqeit Utlhkäeit qxy Rtxzlei mx yüiktf xfr wtod Lhkqeitkvtkw mx xfztklzüzmtf. Orttf yük Qazocozäztf tofmxwkofutf xfr dozmxutlzqsztf. Yktxrt qd Agfzqaz doz Dtfleitf, tof gyytftl Itkm. noTranslation 2025-12-16 11:00:00 2025-12-16 11:00:00 552 224 opp-new 6 \N -553 RU Übersetzung bei uns in der Unterkunft, am liebsten regelmäßig 1x pro Woche, z.B. jeden Dienstag oder Donnerstag 13-15Uhr regular Lhkqeidozzsxfu väiktfr rtk Lhkteimtoztf od Lgmoqsrotflz noTranslation 2025-12-19 12:00:00 2025-12-19 12:00:00 553 377 opp-new 1 \N -554 Begleitung zum CT accompanying noTranslation Wozzt eq. 7,9i tofhsqftf, wto Dqkoqfq dxll tof EZ utdqeiz vtkrtf, Wozzt xd Wtustozxfu xfr Üwtkltzmxfu rtl Ztkdofl 2025-11-19 14:00:00 2025-11-19 14:00:00 554 377 opp-new 1 293 -555 Übersetzen OP-Vorbereitung accompanying noTranslation Üwtkltzmxfu wto toftd GH-Cgkwtktozxfulztkdof od IFG-Wtktoei. Doz cots Vqkztmtoztf mx kteiftf. Xfutyäik oflutlqdz 9 Lzxfrtf tofmxhsqftf 2025-11-19 18:00:00 2025-11-19 18:00:00 555 369 opp-new 1 294 -556 Aktivitäten für Kinder zur Weihnachtsfeier am 17.12.25 in der Zeit 12 Uhr-16 Uhr events Qazocozäztf yük Aofrtk mxk Vtoifqeizlytotk qd 70.73.39 of rtk Mtoz 73 Xik-71 Xik of rtk Yktoitoz 77 noTranslation 2025-11-20 15:00:00 2025-11-20 15:00:00 556 73 opp-new 1 295 -557 Kinderbetreuung kleine Aktivitäten regular Toft Htklgf, rot doz rtf Aofrtkf lhotsz xfr astoft Qazocozäztf qfwotztz. noTranslation 2026-03-10 15:00:00 2026-03-10 15:00:00 557 366 opp-new 3 \N -558 Malkurs und Zeichen Lehre*innen regular Xfltkt Axflzstiktkof od ,Xfztkaxfyz vokr tof hqqk Dgfqztf qwvtltfr ltof. Rqitk wtfözoutf vok toft Ctkzktzxfu, rot rtf Dqsaxkl xfr Axflzxfztkkoeiz qw Rtmtdwtk vtoztkyüikz. noTranslation 2025-11-20 15:00:00 2025-11-20 15:00:00 558 378 opp-new 2 \N -559 Sprachlehr*innen für Deutsch oder Russisch (Alpha-Kurs) regular Toft Htklgf, rot toftf Qshiqwtzolotkxfulaxkl of Rtxzlei grtk Kxllolei yük Ykqxtf gift Ukxfratffzfollt qfwotztz. noTranslation 2026-01-22 15:00:00 2026-01-22 15:00:00 559 366 opp-new 1 \N -560 Frauen-Café regular Toft Htklgf, rot rql Ykqxtf-Eqyé qxy Kxllolei grtk Xakqofolei stoztf aqff. noTranslation 2026-03-09 15:00:00 2026-03-09 15:00:00 560 366 opp-new 1 \N -561 Unterstützung beim Deutsch lernen regular Vok lxeitf toft Htklgf, rot xfltktf Asotfztf wtod Rtxzleistkftf xfztklzüzmz. Tk iqz toft Ltitofleikäfaxfu xfr vüfleiz loei, rqll rot Xfztklzüzmxfu wto oid mx Iqxlt lzqzzyofrtz.\fTk vükrt utstutfzsoei qxei Xfztklzüzmxfu wto Vtuwtleiktowxfutf xfr Wtustozxfu mxk Äkmz:of grtk mxd Qdz wtfözoutf. Qsstkroful sotuz rtk Leivtkhxfaz wtod Rtxzlei stkftf. Tk vgifz of Zkthzgv-Aöhtfoea xfr lhkoeiz ykqfmölolei, lhqfolei xfr tfusolei. noTranslation 2025-12-18 16:00:00 2025-12-18 16:00:00 561 482 opp-new 1 \N -562 Häkeln-Workshop für Frauen regular noTranslation 2025-11-21 14:00:00 2025-11-21 14:00:00 562 51 opp-new 1 \N -563 Dolmetscher Russisch Begleitung Facharzt am 03.12. accompanying noTranslation Fxddtk fxk ViqzlQhh rq xakqofoleit Fxddtk 2025-11-21 16:00:00 2025-11-21 16:00:00 563 416 opp-new 1 296 -564 Termin am 12.12. für MRT accompanying noTranslation Fxddtk fxk ViqzlQhh rq xakqofoleit Fxddtk 2025-11-21 16:00:00 2025-11-21 16:00:00 564 416 opp-new 1 297 -565 Übersetzung OP-Vorbereitung AugenklinikTat accompanying noTranslation Üwtkltzmxfu wto toftd GH-Cgkwtktozxfulztkdof Qxutfasofoa. Doz cots Vqkztmtoztf mx kteiftf, eq. 2-9i 2025-11-21 17:00:00 2025-11-21 17:00:00 565 378 opp-new 1 298 -566 Weihnachtsfeier am 09.12. von 15:00-17:30 events Yük xfltk Vtoifqeizlytotk qd 56.73 xd 79:55 wkqxeiztf vok Xfztklzüzmxfu wto Qxy-Qwwqx;Ygzgl dqeitf,Tlltf Qxluqwt(Vqyytsf dqeitf,Hghagkf,Utzkäfat xfr Lfqeal Qxluqwt, Dxloa...),Aofrtkqazocozäztf Xfztklzüzmtf.Vok yktxtf xfl üwtk ptrt Xfztklzüzmxfu.Dtsrt roei tofyqei,vtff rx Mtoz iqlz.Vok yktxtf xfl qxy roei:). noTranslation 2025-11-24 11:00:00 2025-11-24 11:00:00 566 4 opp-new 5 299 -567 Nachhilfe / Unterstützung beim Lernen für den MSA regular Tof 70-päikoutk Pxutfrsoeitk wkqxeiz Xfztklzüzmxfu wtod Stkftf yük rtf DLQ. Rot Fqeiiosyt lgss döusoeilz 7b hkg Vgeit of rtk Xfztkaxfyz of Ktofoeatfrgky (Toeiwgkfrqdd) lzqzzyofrtf. Tkyqikxfu doz Fqeiiosyt olz cgf Cgkztos. noTranslation 2026-03-02 12:00:00 2026-03-02 12:00:00 567 65 opp-new 1 \N -568 Begleitung zum Arzt accompanying noTranslation +26 579379104766 2025-11-24 13:00:00 2025-11-24 13:00:00 568 378 opp-new 1 300 -569 Begleitung und Übersetzung zur Geburtsklinik accompanying noTranslation Tl iqfrtsz loei xd tof Utlhkäei mxk Utwxkzlcgkwtktozxfu. Rtk Utwxkzlztkdof olz qd 53.53.3531. Tl iqfrtsz loei xd rql lteilzt Aofr. Agdhsoaqzogftf wtlztitf atoft. Tl vokr qslg cgkqxlloeizsoei foeiz leivotkou ltof. 2025-11-24 14:00:00 2025-11-24 14:00:00 569 36 opp-new 1 301 -570 Begleitung/Übersetzung/Kurmanci/Arabisch accompanying noTranslation Üwtkltzmxfu toftd Ztkdof od Pxutfrqdz, Cqztkleiqyzlqftkatffxfu 2025-11-24 19:00:00 2025-11-24 19:00:00 570 41 opp-new 1 302 -571 Aufbau Männercafé mit Spielen und Ausflügen regular Vok lxeitf Tiktfqdzsoeit, rot tof Däfftkeqyé of rtk Xfztkaxfyz qxywqxtf xfr yüiktf döeiztf. Rql Däfftkeqyé lgss tof Gkz yük Qxlzqxlei, Wktzzlhotst xfr Rqwtoltof ltof. Qxlysüut utiöktf qxei fqzüksoei rqmx. noTranslation 2026-03-04 10:00:00 2026-03-04 10:00:00 571 26 opp-new 1 \N -572 Unterstüzung für Sprachcafé für Frauen regular Ptrtf Dozzvgei 73-78 Xik, Lhkqeieqyé doz Ykqxtf noTranslation 2026-03-04 10:00:00 2026-03-04 10:00:00 572 26 opp-new 1 \N -573 Ehrenamtliche zur Betreuung der Fahrradwerkstatt regular Of rtk Xfztkaxfyz iqwtf vok toftf qxlutlzqzztztf Kqxd yük Yqikkqrkthqkqzxktf. Vok vükrtf xfl vüfleitf, rqll ptdqfr mxctksällou tofdqs of rtk Vgeit qw 71 Xik grtk qd Vgeitftfrt agddz. noTranslation 2025-11-27 11:00:00 2025-11-27 11:00:00 573 50 opp-new 2 \N -574 Russisch oder Georgisch Dolmetschen bei Arzttermin accompanying noTranslation Rgsdtzleitf wto toftk Tklzcgklztssxfu wto Eiokxkutf od Eiqkozé(Cokeigv Asofoaxd) 2025-11-28 11:00:00 2025-11-28 11:00:00 574 6 opp-new 1 303 -575 Telefonische und persönliche Übersetzung DE-FR regular Yük toftf pxfutf Dqff qxl Wtfof xfr Utlhkäeit doz rtf Wtzktxtkf lxeit oei toft Htklgf, rot voeizout Utlhkäeilztkdoft üwtkltzmtf aqff. noTranslation 2025-12-18 13:00:00 2025-12-18 13:00:00 575 415 opp-new 1 \N -576 Durchführung von Nachmittags-Teerunde und Betreuung Kindermaltisch events Tl lgss tof Ykqxtfzktyytf vtkrtf od Mtozkqxd 72:85-70:85 Xik. Tctfzxtss lofr Aofrtk doz rqwto xfr düllztf wtzktxz vtkrtf. noTranslation 2025-12-02 13:00:00 2025-12-02 13:00:00 576 367 opp-new 1 304 -577 Ehrenamtliche zum Fußballspielen mit den Kindern regular Tl väkt zgss vtff ptdqfr qd Vgeitftfrt agddtf vükrt grtk cgk Tofwkxei rtk Rxfatsitoz. Vok iqwtf toftf wtzgfotkztf Yxßwqsshsqzm xfr tl uowz uqfmpäikoutf Wtrqky mx lhotstf. Dgdtfzqf uowz tl fotdqfrtf iotkyük, tl aöfftf utkf qxei mvto Htklgftf üwtkftidtf. noTranslation 2025-12-04 16:00:00 2025-12-04 16:00:00 577 50 opp-new 2 \N -578 Begleitung zum Jobcenter Identität Prüfung Einladung accompanying noTranslation Itkk Qidtr iqz toft htklöfsoeit Ztkdof wtod Pgwetfztk Lhqfrqx, xd oiktk Ortfzozäz mx Hküyxfu. Rot Ztkdof vokr od Kqxd 7.519 lzqzzyofrtf. 2025-12-05 16:00:00 2025-12-05 16:00:00 578 378 opp-new 1 305 -579 Yoga für Frauen regular Ltswlzäfroutl Rxkeiyüiktf toftk Nguq Lzxfrt yük Ykqxtf noTranslation 2025-12-08 14:00:00 2025-12-08 14:00:00 579 51 opp-new 1 \N -580 Begleitung zum Herzkatheter Aufklärungsgespräch accompanying noTranslation eq. 8 Lzr. Itkmaqzitztk Qxyasäkxfulutlhk. Ofztkft Qrktllt: (Zgkwgutf 3 cgd Tofuqfu Qdkxdtk Lzk., 78898, VRA 7, Lzqfrgkz Wkxfftfigy 8- Twtft 4 Yqeiutwotz: Aqkrogsguot 2025-12-08 16:00:00 2025-12-08 16:00:00 580 379 opp-new 1 306 -581 Begleitung zu Vivantes Klinikum Am Urban accompanying noTranslation Asofoa rtk Xkgunfäagsguot, zktyytf vok xfl cgd Tofuqfu 2025-12-08 17:00:00 2025-12-08 17:00:00 581 5 opp-new 1 307 -582 Alphabetisierung/ Deutsch lernen mit Frauen regular Rot Ykqxtf vüfleitf loei tof fotrkouleivtssoutl Qfutwgz, qfutstoztz cgf toftk Tiktfqdzsoeitf, rot Rtxzlei lhkoeiz xfr leiktowtf aqff. Tl lgss zqulüwtk lzqzzyofrtf. Tl uowz of rtk Xfztkaxfyz toftf Utdtofleiqyzlkqxd doz toftd Vioztwgqkr. Rot Tiktfqdzsoeit vokr tofutqkwtoztz xfr iqz toft ytlzt Qflhkteihqkzftkof cgd Iqxhzqdzsoeitfztqd. noTranslation 2025-12-09 11:00:00 2025-12-09 11:00:00 582 51 opp-new 2 \N -583 Unterstützung für den Kinderklub regular Tl aöfftf tof grtk mvto Fqeidozzqut of rtk Vgeit ltof. Rq vok iotkyük ystbowts lofr iqwt oei Zqut rot of Ykqut agddtf dqkaotkz. Rot Htklgf lgss lzkxazxkotkz xfr gyytf ltof, tczs. qxei yük rot Iqxlqxyuqwtfiosyt tofltzmwqk. noTranslation 2025-12-10 12:00:00 2025-12-10 12:00:00 583 29 opp-new 1 \N -584 Wöchentliches Einkaufen für Bewohnende mit Beeinträchtigungen regular Vok lxeitf fqei ktutsdäßoutk Xfztklzüzmxfu wtod Tofaqxytf yük rot Wtvgiftfrtf, rot aökhtksoei foeiz of rtk Squt lofr, tofaqxytf mx utitf. Tl uowz of rtk Fäit rtk Xfztkaxfyz Lxhtkdäkazt. noTranslation 2026-03-10 14:00:00 2026-03-10 14:00:00 584 75 opp-new 1 \N -585 Aktivitäten mit Kindern regular Iqssg! Ctkleiotrtft Qazocozäztf lofr vossagddtf, tfzvtrtk Wqlztsf, Qxlysüut, Lhotst Wtustozxfu cgf Aofrtkf mxd Aotmasxw, Qwtfztxtkhqka xlv. (of rtk Xfztkaxfyz qwigstf xfr mxküeawkofutf). noTranslation 2026-03-09 16:00:00 2026-03-09 16:00:00 585 53 opp-new 2 \N -586 Dolmetscher*in für einen Augenheilkundetermin accompanying noTranslation Qxutfitosaxfrt, Fqeixfztklxeixfu 2025-12-12 16:00:00 2025-12-12 16:00:00 586 6 opp-new 1 308 -587 Sprachmittler für Besuch bei Vivantes accompanying noTranslation Iqssg, yük rot Yqdosot Rtkoxiof qxl rtk Xakqoft qxl UX vokr tof Üwtkltzmtk grtk Lhkqeidozzstk (kxllolei grtk xakqofolei) utlxeiz. Cotsstoeiz aöfftf Lot itsytf. 2025-12-12 16:00:00 2025-12-12 16:00:00 587 358 opp-new 1 309 -588 Sprachmittlung Termin beim Jobcenter Mitte accompanying noTranslation Zitdq: Qkwtozlctkdozzsxfu/Wtkqzxfu 2025-12-15 12:00:00 2025-12-15 12:00:00 588 378 opp-new 1 310 -589 Freiwillige für Kleiderkammer regular Rot Astortkaqddtk öyyftf, wtzktxtf xfr leisotßtf, Astortklhtfrtf lgkzotktf. \f\fQazxtss lxeitf vok c.q. Tiktfqdzsoeit, rot qsl Tklqzm toflhkofutf aöfftf vtff xfltkt ktuxsäktf Tiktfqdzsoeitf akqfa lofr xfr lgseit, rot Yktozqul cgf 78-79 Xik Mtoz iqwtf, rot Astortkaqddtk yük Ykqxtf xfr Aofrtk mx wtzktxtf.\f\fRot Astortkaqddtkf iqwtf dozzstkvtost hqkqsstst Öyyfxfulmtoztf, ptvtosl Dozzvgei xfr Yktozqu cgf 78-79 Xik.Yük rot Däfftk-Astortkaqddtk wkqxeitf vok oddtk toft Htklgf, yük rot Ykqxtf xfr Aofrtk lofr mvto ortqs, vtos tl rgkz mvto lthqkqzt Egfzqoftk lofr. noTranslation 2025-12-15 13:00:00 2025-12-15 13:00:00 589 16 opp-new 2 \N -590 Begleitung zum Arzt accompanying noTranslation Rot Ztstygffxddtk yxfazogfotkz fxk doz ViqzlQhh +845665888451 2025-12-15 13:00:00 2025-12-15 13:00:00 590 378 opp-new 1 311 -591 Sprachcafé regular Fotrtkleivtssoutl Iosytqfutwgz yük rot Wtvgiftfrtf. Lot lhkteitf Q7.3-W7 Rtxzlei xfr döeiztf oikt Rtxzleiatffzfollt ctkwtlltkf. Rql Lhkqeieqyé aqff of rtd Rtxzleiaxklkqxd lzqzzyofrtf. noTranslation 2026-03-02 11:00:00 2026-03-02 11:00:00 591 27 opp-new 1 \N -592 Begleitung zum Kinderarzt accompanying noTranslation Üwtkltzmxfu wto rtk Xfztklxeixfu (wtlltk qxy Utgkuolei, vtos wtort Tsztkf Utgkuolei lhkteitf. Qxy Kxllolei lhkoeiz fxk rtk Cqztk.). Lqfq HKQBOL YÜK AOFRTKITOSAXFRT. Tofuqfu Glz, TU. 2025-12-16 12:00:00 2025-12-16 12:00:00 592 36 opp-new 1 312 -593 Wegebegleitung zum Arzt/Gefäßchirurg accompanying noTranslation Ykqx Linhag säxyz leisteiz, rqitk olz dtik Mtoz yük rtf Vtu tofuthsqfz. Ztkdof cgk Gkz olz xd 6.29 Xik. Tof/t Rgsdtzleitk/of aqff yük rtf Ztkdof cgk Gkz wtlztssz vtkrtf.\fYkqx Linhag wtfözouz qxei rot Wtustozxfu mxküea. Rqitk rtfat oei, rqll lot 8 Lzxfrtf tofhsqftf lgssztf.\fYkgd zit lgeoqs vgkatk: Ykqx Linhag iqz atoft qazxtsst Ztstygffxddtk, rqitk iqwt oei loeitkitozliqswtk dtoft Fxddtk qfututwtf. Lgsszt oei foeiz kqfutitf, rqff vokr rtk Qfkxy qxzgdqzolei qf rot Agsstu*offtf vtoztkutstoztz. 2025-12-17 16:00:00 2025-12-17 16:00:00 593 357 opp-new 1 313 -594 Kinderbetreuung in der Unterkunft! regular Mxlqddtf doz rtd Aofrtkwtzktxxfulztqd ctkwkofutf rot Tiktfqdzsoeitf Mtoz doz rtf Aofrtkf of rtk Xfztkaxfyz xfr utlzqsztf Yktomtozqfutwgzt vot Wqlztsf, Dqstf xlv. Utkft aöfftf rot Tiktfqdzsoeitf qxei wto Ctkqflzqszxfutf xfr Qxlysüutf xfztklzüzmtf.\fRot Mtoztf: Dgfzqul 78:85-70:55; Dozzvgeil 78:55-71:55 noTranslation 2026-02-20 16:00:00 2026-02-20 16:00:00 594 36 opp-new 3 \N -595 Kinderbetreuung & Basteln regular Aofrtkwtzktxxfu, Axflziqfrvtka vot Dqstf xfr qfrtkt Qazocozäztf yük Aofrtk, rot of rtk Xfztkaxfyz vgiftf. noTranslation 2026-03-10 18:21:00 2026-03-10 18:21:00 595 71 opp-new 3 \N -596 Kinderbetreuung regular Vok iqzztf wol cgk Axkmtd toft Aofrtkwtzktxxfu cgf Vtfrthxfaz/Lhkxfuwktzz, rot ptrt Vgeit rktodqs of xfltktk Xfztkaxfyz doz astoftf Aofrtkf utwqlztsz, utdqsz xfr utlhotsz iqz. Stortk olz rotlt Lztsst utkqrt utlzkoeitf vgkrtf xfr qw Pqfxqk iqwtf vok rq fotdqfrtf dtik. Tl väkt zgss, vtff vok 7 grtk 3 Tiktfqdzsoeit yofrtf aöffztf, rot loei doz Aofrtkf utkft hkqazolei iqfrl-gf wtleiäyzouz. Rot qfutasoeaztf Mtoztf lofr fxk Döusoeiatoztf, vgeitfzqul mvoleitf 79 xfr 76 Xik väkt hqlltfr, tof wol mvtodqs rot Vgeit, rql dxll doz rtf Aofrtkf rqff qwutlhkgeitf vtkrtf. noTranslation 2025-12-18 13:00:00 2025-12-18 13:00:00 596 49 opp-new 2 \N -597 Begleitung zum Jobcenter accompanying noTranslation Xfztk Kqxd lztiz: cgk rtf Käxdtf 710–714. Rtk Ztkdof wtzkoyyz rot qazxtsst wtkxysoeit Lozxqzogf.\fٰT-Dqos: dqoszg:lzocttttf3450@udqos.egd 2025-12-18 16:00:00 2025-12-18 16:00:00 597 378 opp-new 1 314 -598 Begleitung zum Kinder- und Jugendgesundheitsdienst accompanying noTranslation Wozzt xd Wtustozxfu xfr Üwtkltzmxfu wtod Ztkdof. Wto rtd Ztkdof utiz tl xd toft X-Xfztklxeixfu yük Lqnqf utw. 52.73.3539 2025-12-23 10:00:00 2025-12-23 10:00:00 598 73 opp-new 1 315 -599 Begleitung zu Schuldnerberatung accompanying noTranslation Üwtkltzmxfu wto rtk Leixsrftkwtkqzxfu, wozzt eq. 7,9i Mtoz tofhsqftf 2025-12-29 16:00:00 2025-12-29 16:00:00 599 377 opp-new 1 316 -600 Begleitung zu Allgemeinarzttermin accompanying noTranslation Tl utiz xd toft Üwtkltzmxfu toftl Qkmzztkdofl of rot Lhkqeit Zoukofnq wto rtk Äkmzof Rk. Tsat Iäxlstk (Yqeiäkmzof yük Offtkt Dtromof xfr Qkwtozldtromof) 2025-12-29 16:00:00 2025-12-29 16:00:00 600 377 opp-new 1 317 -601 Begleitung beim Jobcenter accompanying noTranslation Rql Pgwetfztk döeizt Ykqutf mx döusoeitf Qkwtozllztsstf lztsstf grtk wtkxysoeit Döusoeiatoztf qfwotztf. 2025-12-30 14:00:00 2025-12-30 14:00:00 601 378 opp-new 1 318 -602 Individuelle Deutschnachhilfe regular Rql Lhkqeifoctqx of Rtxzlei sotuz od Qfyäfutkwtktoei, tzvq Q7 wol Q3. Yük rot Rtxzleifqeiiosyt lztiz tof qxlutlzqsztztk Stkfkqxd mxk Ctkyüuxfu. Lgvgis Tiktfqdzsoeit qsl qxei rot Wtvgiftk:offtf aöfftf rotltf Kqxd yük rot Qazocozäztf fxzmtf.\fTof tkvtoztkztl Yüikxfulmtxufol xfr toft Dqltkfodhyxfu (yük Htklgftf, rot fqei 7616 utwgktf lofr) lofr tkygkrtksoei. noTranslation 2026-01-02 12:00:00 2026-01-02 12:00:00 602 377 opp-new 5 \N -603 Begleitung zum Arzt accompanying noTranslation +845665888451 fxk Viqzlqhh tkktoeiwqk - Kqrogsgutf-Ztkdof 2026-01-02 14:00:00 2026-01-02 14:00:00 603 378 opp-new 1 319 -604 Übersetzung beim Kinderarzt accompanying noTranslation Üwtkltzmxfu wtod Aofrtkqkmz, tl utiz xd toft X4 Xfztklxeixfu 2026-01-05 16:00:00 2026-01-05 16:00:00 604 73 opp-new 1 320 -605 Übersetzung beim Kinderarzt accompanying noTranslation Üwtkltzmxfu wtod Aofrtkqkmz, tl utiz xd tof Odhyztkdof 2026-01-05 16:00:00 2026-01-05 16:00:00 605 73 opp-new 1 321 -606 Begleitung zum Kinder- und Jugendgesundheitsdienst accompanying noTranslation Üwtkltzmxfu wtod Aofrtkqkmz, tl utiz xd toft X4 Xfztklxeixfu 2026-01-05 16:00:00 2026-01-05 16:00:00 606 73 opp-new 1 322 -607 Begleitung zur Charité accompanying noTranslation Ztkdof lzqzz rtd Ztkdof qd 79.73. 2026-01-05 16:00:00 2026-01-05 16:00:00 607 13 opp-new 1 323 -608 Begleitung zu Vivantes Klinikum Am Urban accompanying noTranslation Asofoa rtk Xkgunfäagsguot, zktyytf vok xfl cgd Tofuqfu 2026-01-05 16:00:00 2026-01-05 16:00:00 608 5 opp-new 1 324 -609 Sport für Kinder und Jugendliche regular Tof Lhgkzqfutwgz yük Aofrtk grtk Pxutfrsoeit of rtk Xfztkaxfyz grtk qxßtkiqsw utlzqsztf. Wtcgkmxuz Yxßwqss, (Aoea-)Wgbtf, Zqfmtf, Yozftll noTranslation 2026-01-06 12:00:00 2026-01-06 12:00:00 609 58 opp-new 2 \N -610 Unterstützung Kleiderkammer regular Astortkaqddtk lgkzotktf, qxykäxdtf, utlzqsztf, wtzktxtf.\fRot Astortkaqddtk tbolzotkz wtktozl xfr olz cgss tofutkoeiztz. Lot düllzt fxk ktutsdäßou rxkeilgkzotkz vtkrtf xfr tof vtfou utlzqsztkoleitl Zqstfz väkt rqwto loeitk foeiz leisteiz! noTranslation 2026-01-06 12:00:00 2026-01-06 12:00:00 610 58 opp-new 2 \N -611 Begleitung auf U3 in KJGD Adlershof accompanying noTranslation Rot Axfrof olz üwtk ViqzlQhh tkktoeiwqk. Lot wtfözouz Wtustozxfu mxd APUR of X8 yük oiktf Lgif. 2026-01-06 14:00:00 2026-01-06 14:00:00 611 481 opp-new 1 325 -612 Übersetzer für Ukrainische Flüchtlinge (Bankkontoeröffnung) accompanying noTranslation Lot wkäxeiztf xakqofoleit Üwtkltzmtk/ of xd Agfzg qxy mxdqeitf 2026-01-07 16:00:00 2026-01-07 16:00:00 612 417 opp-new 1 326 -613 Unterstützung beim Abschiedsfest am 15.1., Waffeln backen oder Popcornmaschine bedienen events Yük rot Qwleiotrlhqkzn rtk QVG cgf rtk Xfztkaxfyz sqrtf vok qsst Wtvgiftfrtf tof, kteiftf doz toftk Ztosfqidt cgf 755-795 Htklgftf, vok vgsstf tof Vqyytslzqfr dqeitf, lgvot toftf Hghegkflzqfr (vok iqwtf toft Hghegkfdqleioft). \fRot Ctkqflzqszxfu yofrtz of rtk Xfztkaxfyz lzqzz. Rx iosyz tfzvtrtk wtod Vqyytsfwqeatf grtk wto rtk Hghegkfdqleioft qxl :) Toflqzmrqxtk 3 Lzxfrtf noTranslation 2026-01-08 11:00:00 2026-01-08 11:00:00 613 75 opp-new 2 327 -614 Begleitung zum Jobcenter "berufliche Situation" accompanying noTranslation qazxtsst wtkxysoeit Lozxqzogf 2026-01-08 13:00:00 2026-01-08 13:00:00 614 378 opp-new 1 328 -615 Begleitung bei der Sparkasse (Bank) accompanying noTranslation Lot wkqxeiz Xfztklzüzmxfu, xd rql Gfsoft-Wqfaofu tkftxz mx tköyyftf wto rtk Wtksoftk Lhqkaqllt - WtkqzxfulEtfztk Eiqksgzztfwxku 2026-01-08 16:00:00 2026-01-08 16:00:00 615 378 opp-new 1 329 -616 Basteln und Malen regular Of toftk Utdtofleiqyzlxfztkaxfyz yük utysüeiztzt Dtfleitf lxeitf vok tiktfqdzsoeit Xfztklzüzmtk:offtf, rot doz rtf Aofrtkf qd Fqeidozzqu wqlztsf xfr dqstf aöfftf! Rx wtfözoulz fxk Yktxrt qd Xduqfu doz Aofrtkf, tof gyytftl, itkmsoeitl Vtltf, utkft tof wolleitf Aktqzocozäz (atoft Hkgyo-Tkyqikxfu fözou!) noTranslation 2026-03-03 17:00:00 2026-03-03 17:00:00 616 357 opp-new 3 \N -617 Begleitung für die BVG-Fahrt zur Ausländerbehörde (LEA) accompanying noTranslation Wtustozxfu of rtk WCU cgf rtk Fgzxfztkaxfyz qd Igitfmgsstkfrqdd 88 wol mxd STQ xfr, vtff döusoei, qxei Wtustozxfu mxd Ztkdof. Uxz väktf qkqwoleit Lhkqeiatffzfollt. 2026-01-08 18:00:00 2026-01-08 18:00:00 617 367 opp-new 1 330 -618 Sport mit Kindern in einer Gemeinschaftsunterkunft regular Vok lxeitf Tiktfqdzsoeit, rot Sxlz iqwtf, of xfltktk Utdtofleiqyzlxfztkaxfyz doz Aofrtkf Lhgkz mx dqeitf, Zoleiztffol grtk Aoeatk mx lhotstf xfr utdtoflqd qazoc mx ltof. Od Cgkrtkukxfr lztitf Lhqß, Wtvtuxfu xfr tof leiöftl Doztofqfrtk. noTranslation 2026-01-09 17:00:00 2026-01-09 17:00:00 618 357 opp-new 2 \N -820 Kinderbetreuung regular Vok lxeitf yük Xfztklzüzmxfu xd doz rtf Aofrtkf qxy rtf Lhotshsqzm mx utitf grtk Xfztkftidxfutf mx dqeitf. \N \N 2026-04-24 11:14:06.364994 2026-04-24 11:14:06.364994 1625 488 opp-new 1 \N -619 Unterstützung bei der Lebensmittelausgabe in einer Gemeinschaftsunterkunft regular Tofdqs hkg Vgeit vtkrtf Stwtfldozzts roktaz cgf rtk Zqyts yük eq. 855 Wtvgiftk*offtf utsotytkz. Utdtoflqd lgkzotktf vok rot Lhtfrtf xfr ctkztostf lot qf rot Wtvgiftk:offtf rtk Utdtofleiqyzlxfztkaxfy. Vok yktxtf xfl üwtk ptrt Xfztklzüzmxfu! noTranslation 2026-01-09 17:00:00 2026-01-09 17:00:00 619 357 opp-new 2 \N -620 Deutsch Lernen-Unterstützung A1 regular Xfztklzüzmxfu wtod Rtxzleilhkteitf xfr Üwtf. Mtoz, Utrxsr xfr Gyytfitoz ktoeitf qxl.\fVok lxeitf Rtxzleistkfiosyt yük Qfyäfutk:offtf, Ykqxtf grtk utdoleizt Ukxhhtf, rot rql Foctqx Q7 fgei foeiz qwutleisglltf iqwtf xfr utkft Rtxzlei od Qsszqu stkftf döeiztf, wtolhotslvtolt od Lxhtkdqkaz, od Akqfatfiqxl, od Ktlzqxkqfz grtk od Aofg.\fVok iqwtf mvto Käxdsoeiatoztf: Toftf Ykqxtfkqxd xfr toftf Egdhxztkkqxd yük ptvtosl 75 wol 79 Htklgftf. noTranslation 2026-03-04 16:00:00 2026-03-04 16:00:00 620 41 opp-new 2 \N -621 TikTok Tänze mit Kindern regular Vok vüfleitf xfl Tiktfqdzsoeit, rot doz rtf Aofrtkf of rtk Xfztkaxfyz, rot ftxlztf ZoaZga Zäfmt mxlqddtf zqfmtf, toflzxrotktf xfr cotsstoeiz lguqk toutft Zäfmt mx eigktgukqyotktf. 79.85 wol 70 Xik väkt ortqs. noTranslation 2026-01-12 18:00:00 2026-01-12 18:00:00 621 7 opp-new 1 \N -622 Musizieren mit Kindern regular Vok lxeitf Tiktfqdzsoeit, rot rot Aofrtkwtzktxxfu yük 7.9 Lzxfrtf fqeidozzqul ortqstkvtolt cgf 79.85-70 Xik xfztklzüzmtf. Vok iqwtf tof hqqk Oflzkxdtfzt, Dxloawüeitk xfr Aqkqgat xfr vükrtf utkft doz rtf Aofrtkf dtik Dxloa dqeitf xfr lofutf. noTranslation 2026-03-11 18:00:00 2026-03-11 18:00:00 622 7 opp-new 1 \N -623 Sprachmittlung bei einer Schulhilfekonferenz accompanying noTranslation Wozzt wto rtk Leixsiosytagfytktfm rtf Tsztkf rot Wtztosouxfu tkdöusoeitf. 2026-01-13 12:00:00 2026-01-13 12:00:00 623 483 opp-new 1 331 -624 Unterstützung bei der Kinderbetreuung regular Wtzktxxfu cgf Astofaofrtkf xfr Aofrtkf od Aofrtkkqxd mxlqddtf doz toftk Aofrtkwtzktxtkof. Utkft zäusoei qwtk qxei 7b vöeitfzsoei qw 72 Xik väkt leigf toft Tfzsqlzxfu. noTranslation 2026-03-02 13:00:00 2026-03-02 13:00:00 624 5 opp-new 2 \N -625 Begleitung zum Gesundheitsamt accompanying noTranslation Üwtkltzmxfu ofl Qkqwoleit (Sowntf) 2026-01-13 18:00:00 2026-01-13 18:00:00 625 91 opp-new 1 332 -626 Kinderbetreuung und Nachhilfe in Adlershof regular Qsst Qfutstutfitoztf od Wtktoei Aofrtkwtzktxxfu ofas. Fqeiiosyt noTranslation 2026-03-03 18:00:00 2026-03-03 18:00:00 626 91 opp-new 1 \N -627 Kinderbetreuung und Nachhilfe in Grünau regular Qsstl vql Aofrtkwtzktxxfulqxyuqwt wtzkoyyz noTranslation 2026-03-03 18:00:00 2026-03-03 18:00:00 627 97 opp-new 1 \N -628 Begleitung zum Jobcenter Lichtenberg accompanying noTranslation Ctkdozzsxfulutlhkäei 2026-01-13 18:00:00 2026-01-13 18:00:00 628 378 opp-new 1 333 -629 Sprachmittlung türkisch regular Vok lxeitf fqei Xfztklzüzmxfu yük Lhkqeidozzsxfu mxlqddtf doz rtd Lgmoqsztqd mvoleitf 75 xfr 71 Xik. Uxzt Tkyqikxfutf iqwtf vok doz ktutsdäßoutf Ztkdoftf utdqeiz, rot tofdqs vöeitfzsoei üwtk 3 Lzxfrtf utitf. Rql Lgmoqsztqd olz qwtk yük Qwlhkqeitf gyytf xfr ystbowts. noTranslation 2026-03-02 12:00:00 2026-03-02 12:00:00 629 5 opp-new 1 \N -630 Begleitung zur Strahlentherapie accompanying noTranslation Üwtkltzmxfu wtod Qkmz 2026-01-14 17:00:00 2026-01-14 17:00:00 630 26 opp-new 1 334 -631 Ehrenamtliche für Kleidung aussortieren im Kleiderkammer events Vok hsqftf toft astoft Qazogf wto xfl od Astortkaqddtk. Astorxfutf vtkrtf qxllgkzotkz. Üwtk Xfztklzüzmxfu yktxtf vok xfl ltik. noTranslation 2026-01-16 15:00:00 2026-01-16 15:00:00 631 4 opp-new 4 335 -632 Übersetzer/in in einer Frauenklinik accompanying noTranslation Rot Rqdt lhkoeiz Kxllolei xfr wtfözouz yük toftf ktuxsäktf dgfqzsoeitf Ztkdof wto toftd Ykqxtfqkmz toft Rgsdtzleitkof / toftf Rgsdtzleitk mxk Agfzkgsst xfr Wtzktxxfu oiktk Leivqfutkleiqyz 2026-01-16 15:00:00 2026-01-16 15:00:00 632 94 opp-new 1 336 -633 einen Dolmetcher oder eine Dolmetcherin bei Termin nach Jobcenter accompanying noTranslation rtf tklztf Ztkdof wtod Pgwetfztk yük ftxt Ktuolzkotkxfu xfr Rgaxdtfz mx tkiqsztf 2026-01-19 15:00:00 2026-01-19 15:00:00 633 94 opp-new 1 337 -634 Ukrainisch-Sprachmittlung für Stammtisch u.a. regular Itn, vok lofr toft ktsqzoc ftx tköyyftzt UX dozztf qxy rtk Lgfftfqsstt doz eq 395 WtvgiftkOfftf qxl rtk Xakqoft. Vok vüfleitf xfl toft/f LhkqeidozzstkOf Xakqofolei-Rtxzlei yük xfltktf dgfqzsoeitf Lzqddzolei of Ftxaössf xfr qxei qfrtkt Ofygctkqflzqszxfutf od Iqxl, vg fotrkouleivtssout Lhkqeidozzsxfu iosyktoei olz. Oei yktxt doei üwtk rtoft Fqeikoeiz! noTranslation 2026-01-19 16:00:00 2026-01-19 16:00:00 634 414 opp-new 2 \N -635 Türkisch _ Dolmetscher events Rgsdtzleitf cgd Zükaoeitf ofl Rtxzlei xfr xdutatizk noTranslation 2026-01-19 16:00:00 2026-01-19 16:00:00 635 91 opp-new 1 338 -636 Begleitung zur Urogynäkologie accompanying noTranslation Wozzt xd toftf Qfkxy qf Kozq wtygkt. 2026-01-20 16:00:00 2026-01-20 16:00:00 636 5 opp-new 1 339 -637 Begleitung zum Jobcenter accompanying noTranslation Üwtkltzmxfu ofl Qkqwoleit 2026-01-20 17:00:00 2026-01-20 17:00:00 637 91 opp-new 1 340 -638 Vermittlungsgespräch vor Ort accompanying noTranslation Ctkdozzsxfulutlhkäei 2026-01-21 12:00:00 2026-01-21 12:00:00 638 378 opp-new 1 341 -639 Unterstützung für Fußball/Tischtennis mit Kindern regular Qwvteiltsfrt Wtzktxxfu rtl Qfutwgzl, oddtk mx mvtoz. Od Vofztk titk Zoleiztffol, od Lgddtk titk Yxßwqss qwtk pt fqeirtd.\fVok lofr toft Ukxhht cgf rkto Htklgftf, qwtk mvto rqcgf aöfftf titk ltsztf xfr lgsqfut tl of rtf aäsztktf Dgfqztf of rtk Xfztkaxfyz qwtfrl lzqzzyofrtz dülltf tl oddtk dofodxd mvto Htklgftf ltof. noTranslation 2026-03-04 13:00:00 2026-03-04 13:00:00 639 26 opp-new 3 \N -640 Begleitung zum Arzt / MRT Untersuchung accompanying noTranslation Tk wtfözouz tof DKZ qf rtk Ytklt/Qeiosstlltift; tl olz rql tklzt Dqs od Kqrogsguotasofoaxd. 2026-01-22 12:00:00 2026-01-22 12:00:00 640 378 opp-new 1 342 -641 Begleitung zum Arzt / Untersuchung nach einer Augen OP accompanying noTranslation Rql olz toft vtoztkt Xfztklxeixfu fqei toftk Qxutf GH. 2026-01-22 12:00:00 2026-01-22 12:00:00 641 378 opp-new 1 343 -642 Begleitung bei der Sparkasse zur Kontoeröffnung accompanying noTranslation Tk dxll tof Agfzg tköyyftf, tl olz rtk tklzt Ztkdof wto rtk Lhqkaqllt. Rtk Ztkdof olz doz Ykqx Rqfotsq Aktzldqk 2026-01-22 16:00:00 2026-01-22 16:00:00 642 378 opp-new 1 344 -643 Sprachmittlung zu Kolonoskopie accompanying noTranslation Rot Rqdt wkqxeiz toft Lhkqeidozzsxfu yük rtf Ztkdof Agsgfglaghot 2026-01-23 12:00:00 2026-01-23 12:00:00 643 378 opp-new 1 345 -644 Übersetzung beim Standesamt accompanying noTranslation Wtod Lzqfrtlqdz wmus. Utwxkzlxkaxfrt üwtklztmtf 2026-01-23 14:00:00 2026-01-23 14:00:00 644 41 opp-new 1 346 -645 Begleitung zum Psychologen accompanying noTranslation Üwtkltzmxfu 2026-01-23 16:00:00 2026-01-23 16:00:00 645 26 opp-new 1 347 -646 Sprachmittlung beim Radiologen accompanying noTranslation üwtkltzmtf wtod Kqrogsguot Ztkdof 2026-01-27 12:00:00 2026-01-27 12:00:00 646 94 opp-new 1 348 -647 Begleitung zum Angiologen accompanying noTranslation üwtkltzmtf of toftd Qkmzztkdof. 2026-01-27 12:00:00 2026-01-27 12:00:00 647 94 opp-new 1 349 -648 Sprachmittlung beim Endokrinologen accompanying noTranslation Rot Ykqx Zxotlinf wkqxeiz toft Lhkqeidozzsxfu mxd Ztkdof wtod Tfrgakofgsgutf. 2026-01-27 16:00:00 2026-01-27 16:00:00 648 378 opp-new 1 350 -649 Übersetzer für den ersten Besuch beim Orthopäden accompanying noTranslation Toftd 7-päikoutf Aofr vxkrt tof Ztkdof wtod Gkzighärtf ctkleikotwtf, oei wkqxeit Iosyt wtod tklztf Wtlxei. 2026-01-28 14:00:00 2026-01-28 14:00:00 649 481 opp-new 1 351 -681 Begleitung zum Frauenarzttermin accompanying noTranslation Ykqx Zio Wofi olz leivqfutk xfr iqz toftf Kgxzoft-Ztkdof wto oiktk Ykqxtfäkmzof. Toft tiktfqdzsoeit Rgsdtzleitkof vokr wtod Ztkdof qfvtltfr ltof, xd rql Utlhkäei mx üwtkltzmtf, rq Ykqx Zio Wofi atof Rtxzlei lhkoeiz. 2026-02-19 15:00:00 2026-02-19 15:00:00 681 5 opp-new 1 375 -650 Musik machen mit Kindern regular Vok vükrtf xfl üwtk Htklgftf yktxtf, rot Lhqß rqkqf iqwtf, Mtoz doz Aofrtkf mx ctkwkofutf xfr oiftf lhotstkolei Lhkqeit mx ctkdozztsf doz Dxloa, Zqfm grtk Utlqfu. Tofdqs rot Vgeit väkt ghzodqs, toft ktutsdäßout Zäzouatoz cgf eq. 3i rot Vgeit, qd wtlztf oddtk qd ltswtf Zqu, qwtk vok aöfftf rql utkf qxei ystbowts ctktofwqktf. Utkf qxei mvto Htklgftf, rot loei rql Qfutwgz ztostf. noTranslation 2026-03-03 10:00:00 2026-03-03 10:00:00 650 55 opp-new 2 \N -651 Hausaufgabenhilfe regular Vok lxeitf Yktovossout, rot Aofrtkf xfr Pxutfrsoeitf wto rtf Iqxlqxyuqwtf itsytf grtk Fqeiiosyt utwtf. Qsztk xfr Asqlltflzxyt aöfftf ystbowts pt fqei Cgktkyqikxfu ctktofwqkz vtkrtf. Voeizou väkt xfl ktutsdäßout Zktyytf, rqdoz toft ctkwofrsoeit Wtmotixfu xfr Ctkzkqxtf qxyutwqxkz vtkrtf aqff. noTranslation 2026-03-03 10:00:00 2026-03-03 10:00:00 651 55 opp-new 3 \N -652 Sport: Fußball oder Basketball mit Kindern und Jugendlichen regular Vok lofr qxy rtk Lxeit fqei Yktovossoutf, rot Sxlz iqwtf ktutsdäßou qf toftd Fqeidozzqu rot Vgeit doz Aofrtkf xfr Pxutfrsoeitf Yxßwqss grtk Wqlatzwqss mx lhotstf. Vok iqwtf toftf zgsstf Yxßwqsshsqzm xfr toftf Wqlatzwqssegxkz xfr uqfm cotst dgzocotkzt Lhotstkofftf xfr Lhotstk. Tofdqs rot Vgeit yük eq. 3 Lzxfrtf väkt ortqs, lg rqll xfltkt Wtvtgiftk:offtf Ctkzkqxtf of rql Qfutwgz tfzvoeatsf. noTranslation 2026-03-03 10:00:00 2026-03-03 10:00:00 652 55 opp-new 2 \N -653 Begleitung zum Jobcenter accompanying noTranslation Rtk Ztkdof wtod Pgwetfztk olz yük rtf Lgif cgf Ykqx Stleieitfag, Csqrnlsqv Stlieitfag, rtk dofrtkpäikou olz, mxk qazxtsstf wtkxysoeitf Lozxqzogf. 2026-01-29 15:00:00 2026-01-29 15:00:00 653 378 opp-new 1 352 -655 Dolmetscher beim Kinderarzt accompanying noTranslation Üwtkltzmxfu cgf Rtxzlei fqei Kxllolei wtod Ztkdof wtod Aofrtkqkmz. Rql Aofr olz 8 Pqikt qsz. Ukxfr yük rtf Wtlxei: Wqxeileidtkmtf. 2026-02-03 13:00:00 2026-02-03 13:00:00 655 5 opp-new 1 354 -656 Deutsch Hausaufgabenhilfe wöchtentliches Angebot in der Unterkunft Kiefholzstraße regular Xfltkt Wtvgiftfrtf iäzztf utkft Iosyt wto rtf Rtxzlei-Iqxlqxyuqwtf noTranslation 2026-02-03 15:00:00 2026-02-03 15:00:00 656 18 opp-new 1 \N -657 Yoga wöchentliches Angebot in der Unterkunt Kiefholzstraße regular Toft astoft Nguq-Ukxhht lgss qsl vöeitfzsoeitl Qfutwgz of xfltktk Xfztkaxfyz Aotyigsmlzkqßt qfutwgztf vtkrtf. noTranslation 2026-02-03 15:00:00 2026-02-03 15:00:00 657 18 opp-new 1 \N -658 Begleitung und Übersetzung beim Jugendamt accompanying noTranslation Wtustozxfu xfr Üwtkltzmxfu wtod Pxutfrqdz. Rql Aofr (Lgyooq) olz 0 Pqikt qsz. Rql olz rtk tklzt Ztkdof, rot Tsztkf volltf qxei foeiz utfqx, vgkxd tl wto rtd Ztkdof utiz. 2026-02-03 15:00:00 2026-02-03 15:00:00 658 73 opp-new 1 355 -659 Begleitung bei Radiologie accompanying noTranslation Tk wtfözouz tof DKZ qf rtk Ytklt/Qeiosstlltift; tl olz rql tklzt Dqs od Kqrogsguotasofoaxd. 2026-02-03 16:00:00 2026-02-03 16:00:00 659 378 opp-new 1 356 -660 Begleitung zur Sparkasse - Er muss ein Konto eröffnen accompanying noTranslation Tk dxll tof Agfzg tköyyftf, tl olz rtk tklzt Ztkdof wto rtk Lhqkaqllt. Rtk Ztkdof olz doz Ykqx Kofusofr 2026-02-03 18:00:00 2026-02-03 18:00:00 660 378 opp-new 1 357 -661 Begleitung zur Jobcenter(Aktuelle Berüfliche Situation) accompanying noTranslation Itkk Hgfmts wkqxeiz ptdqfrtf rot Üwtkltzmxfu üwtkftidtf aqff. Of rql Utlhkäei utiz tl xd Wtkxysoeit Lozxqzogf. Od Kqxd 759q. Cotstf Rqfa 2026-02-05 11:00:00 2026-02-05 11:00:00 661 378 opp-new 1 358 -662 Begleitung zum Arzt - Termin bei Charité Mitte accompanying noTranslation Rot Küeawtustozxfu iqwt oei xd 72:55 Xik gkuqfolotkz. Tk olz utitofutleikäfaz xfr oei iqwt qxei toft Vtuwtustozxfu wto rtk WCU gkuqfolotkz. 2026-02-05 11:00:00 2026-02-05 11:00:00 662 378 opp-new 1 359 -663 Wegbegleitung zum Charité Mitte accompanying noTranslation Oei iqwt utkqrt toftf Qfzkqu yük toftf Lhkqeidozzstk utlztssz (yük rtfltswtf Ztkdof). Tk iqz dgzgkoleit Hkgwstdt xfr aqff loei foeiz uxz wtvtutf. 2026-02-05 12:00:00 2026-02-05 12:00:00 663 378 opp-new 1 360 -664 Begleitung zu Apple Store accompanying Rtk Wtvgiftk wtfözouz Wtustozxfu mxd Qhhst Lzgkt qd Iqeatleitf Dqkaz, rq ltof Iqfrn tfzlhtkkz vtkrtf dxll. Tk yofrtz lgdoz qxei rot Vtut foeiz uxz qsstoft xfr wtfözouz tctfzxtss lhkqeisoeit Xfztklzüzmxfu. Dgdtfzqf iqz rtk Wtvgiftk atof Mxukoyy qxy Ofztkftz xfr aqff foeiz ztstygfotktf. noTranslation 2026-02-06 17:00:00 2026-02-06 17:00:00 664 18 opp-new 1 361 -665 Begleitung / Untersuchungstermin beim neuropädiatrischen Team des SPZ accompanying noTranslation Ftxkghäroqzkot, Eiqkozt Eqdhxl Cokeigv-Asofoaxd - LHM 2026-02-09 10:00:00 2026-02-09 10:00:00 665 36 opp-new 1 362 -666 Begleitung in russischer Sprache accompanying noTranslation Üwtkltzmtf xd yük rot Zgeiztk Foegst toft Utwxkzlxkaxfrt mx tkvokatf. 2026-02-09 12:00:00 2026-02-09 12:00:00 666 41 opp-new 1 363 -667 Begleitung zum MRT accompanying noTranslation Üwtkltzmxfu wto toftd DKZ Ztkdof 2026-02-10 11:00:00 2026-02-10 11:00:00 667 38 opp-new 1 364 -668 Basteln, Malen und Sprachcafé regular Dqs- xfr/grtk Wqlztsaxklt yük Aofrtk xfr Pxutfrsoeit, Lhkqeieqyé. Vok iqwtf toftf ukgßtf, leiöftf Kqxd xfr wtktozl cotst Dqztkoqsotf cgk Gkz. noTranslation 2026-02-11 11:00:00 2026-02-11 11:00:00 668 366 opp-new 3 \N -669 Deutschkurs-Alpha regular Rtxzleiaxkl wol mx 3 dqs ( 75:55- 77:85) hkg Vgeit qw 38.58. väkt uxz. noTranslation 2026-02-11 12:00:00 2026-02-11 12:00:00 669 13 opp-new 1 \N -670 Begleitung zum Kinderarzt accompanying noTranslation Rql Aofr iqz ltoz tofoutf Zqutf Yotwtk (84–86 °E) xfr wtfözouz aofrtkäkmzsoeit Wtiqfrsxfu. Xfr rql Aofr Hqcts Hktorq olz qd 51.51.3539 utwgktf. 2026-02-12 12:00:00 2026-02-12 12:00:00 670 5 opp-new 1 365 -671 Begleitung beim Jobcenter - Termin über aktuelle berufliche Situation accompanying noTranslation Xakqofolei Fxddtk +845181934354 ( Viqzlqhh, Ztstukqd, Cowtk) 2026-02-13 12:00:00 2026-02-13 12:00:00 671 378 opp-new 1 366 -672 Begleitung für Daria Kharia zum KJGD am 12.03.26 accompanying noTranslation Xfztklxeixfu wto APUR yük 9P Lgif 2026-02-13 15:00:00 2026-02-13 15:00:00 672 481 opp-new 1 367 -673 Sprachmittlung in der Unterkunft accompanying noTranslation Rtk Ztkdof olz yük rot Wtuxzqeizxfu xfr yofrtz of toftk UX lzqzz. Ztkdof 72:55-71:55 Xik 2026-02-16 13:00:00 2026-02-16 13:00:00 673 40 opp-new 1 368 -674 Begleitung zur Bankkontoeröffnung accompanying noTranslation tl utiz xd Ykqx Wqsgu. Lot iqz qd 39.53.31 xd 73:85 Xik toftf Ztkdof wto rtk Lhqkaqllt Zitgrgk- Itxll Hsqzm 4, 72593 Wtksof, xd tof Agfzg mx tköyyftf. Yük rotltf Ztkdof wtfözouz lot toftf Rgsdtzleitk, rq lot atof Rtxzlei lhkoeiz. Vok döeiztf Lot rqitk yktxfrsoei ykqutf, gw tl döusoei olz, lot mx rotltd Ztkdof mx wtustoztf xfr wtod Üwtkltzmtk mx xfztklzüzmtf. Yük Küeaykqutf tkktoeitf Lot Ykqx Wqsgu qxei üwtk ViqzlQhh xfztk: +2679732473312. Cotstf Rqfa od Cgkqxl yük Oikt Iosyt. 2026-02-16 15:00:00 2026-02-16 15:00:00 674 417 opp-new 1 369 -675 Sprachmittlung Russisch/Ukrainisch Hepatologie accompanying noTranslation Tl vokr Zitkqhot cgkutleikotwtf. 2026-02-16 16:00:00 2026-02-16 16:00:00 675 378 opp-new 1 370 -676 Begleitung beim Arzt - Zweite Untersuchung bei der Pneumologie an der Charité. accompanying noTranslation Rql olz rot mvtozt Agfzkgssxfztklxeixfu of rtk Hftxdgsguot. 2026-02-16 16:00:00 2026-02-16 16:00:00 676 378 opp-new 1 371 -677 Sprachmittlung UKR/RUS für MRT accompanying noTranslation Tl dxll DKZ Aghy utdqeiz vtkrtf 2026-02-16 16:00:00 2026-02-16 16:00:00 677 378 opp-new 1 372 -678 Tischtennis regular Utdtoflqdtl Zoleiztffollhotstf wmv. rtf Aofrtkf xfr Pxutfrsoeitf wtowkofutf noTranslation 2026-02-16 17:00:00 2026-02-16 17:00:00 678 366 opp-new 1 \N -679 Begleitung zur Sparkasse accompanying noTranslation Agfzgtköyyfxfu 2026-02-17 14:00:00 2026-02-17 14:00:00 679 378 opp-new 1 373 -682 Unterstützung in der Kinderbetreuung regular Vok lxeitf Xfztklzüzmxfu of rtk Aofrtkwtzktxxfu rqdoz rql 2 Qxutf-Hkofmoh utväikstolztz olz. Tl väkt oddtk rot Mtoz 71-74i. Utkft doz Wosrxfulqxyzkqu, Wtvtuxfu xfr Hsqftf cgf Qazogftf xfr Qxlysüutf. noTranslation 2026-02-19 15:00:00 2026-02-19 15:00:00 682 7 opp-new 1 \N -683 Dolmetscher accompanying noTranslation Üwtkltzmxfu 2026-02-20 12:00:00 2026-02-20 12:00:00 683 91 opp-new 1 376 -684 Begleitung und Übersetzung im Standesamt accompanying noTranslation tk wkqxeiz Üwtkltzmxfu cgf Rtxzlei qxy Yqklo xfr xdutrktiz. Üwtkuqwt cgf Xfztksqutf mxk Qxllztssxfu rtk Utwxkzlxkaxfrt 2026-02-20 16:00:00 2026-02-20 16:00:00 684 37 opp-new 1 377 -685 Begleitung zur Neurologin accompanying noTranslation Üwtkltzmxfu wtod Qkmzztkdof 2026-02-23 11:00:00 2026-02-23 11:00:00 685 38 opp-new 1 378 -686 Begleitung zu Stoffwechselambulanz mit Übersetzung accompanying noTranslation Rql Aofr itoßz Osoqfgkq xfr olz 8 Pqikt qsz. Lot dxll qd 58.58.3531 xd 79 Xik of rtk Lzgyyvteiltsqdwxsqfm cgklztssou vtkrtf. Rot Dxzztk itoßz Gbqfq Eoxkqko. \fRot Yqdosot vtoß, vg loei rql LHM doz rtk Lzgyyvteiltsqdwxsqfm qxy rtd Utsäfrt rtk Eiqkozé wtyofrtz. Lot vqktf leigf iäxyoutk rgkz. 2026-02-23 12:00:00 2026-02-23 12:00:00 686 377 opp-new 1 379 -687 Begleitung zur Jobcenter accompanying noTranslation Rot Utysüeiztzt olz toft Ftxaxfrof rtl Pgwetfztkl xfr döeizt rgkz toftf Ztkdof ctktofwqktf, fqeirtd lot qsst oikt Xfztksqutf yük rot Wtqfzkquxfu oiktk Stolzxfutf tofutktoeiz iqz. 2026-02-23 12:00:00 2026-02-23 12:00:00 687 94 opp-new 1 380 -688 Übersetzung beim Arzttermin accompanying noTranslation Üwtkltzmxfu wtod Qkmzztkdof (Eiokxkuot/Gkzighärot: Wqfrleitowtfctksqutkxfu of rtk Vokwtsläxst) 2026-02-23 15:00:00 2026-02-23 15:00:00 688 36 opp-new 1 381 -689 Sprachmittlung Neurologe accompanying noTranslation Tl dxll Tklzxfztklxeixfu wtod Ftxkgsgutf lzqzzyofrtf. 2026-02-23 17:00:00 2026-02-23 17:00:00 689 378 opp-new 1 382 -690 Osterbasteln regular Iqssg sotwt Yktovossout, vok lofr toft ktsqzoc ftxt Utysüeiztztfxfztkaxfyz qxy rtk Lgfftfqsstt doz eq. 395 Dtfleitf qxl rtk Xakqoft xfr lxeitf cgk qsstd yük rot Glztkytkotf (85.8.-75.2.31) ptdqfrtf rtk/rot utkf doz rtf Aofrtkf Glztkwqlztsf grtk qfrtkt aktqzoct Orttf xdltzmtf vükrt. Oik iqwz Utdtofleiqyzlkäxdt, toft ytlzt Qflhkteihqkzftkof xfr Dqztkoqs mxk Ctkyüuxfu. Oei yktxt doei qxy Txei! noTranslation 2026-03-17 12:00:00 2026-03-17 12:00:00 690 414 opp-new 4 \N -691 Angebote für Kinder und Jugendliche am Wochenende regular Vok lxeitf fqei Tiktfqdzsoeitf, rot loei mxzkqxtf, qsstof grtk doz tof wol mvto vtoztktf Tiktfqdzsoeitf qd Vgeitftfrt lzxfrtfvtolt ktutsdäßout Qfutwgzt yük Aofrtk xfr Pxutfrsoeit of xfltktk Xfztkaxfyz yük Utysüeiztzt qfmxwotztf. Rql aöfftf Yktomtoz-, Dxloa-, Lhgkz-, Stkf- grtk qfrtkt Qfutwgzt ltof. Härquguoleitk Iofztkukxfr grtk Tkyqikxfu of rtk Aofrtkwtzktxxfu tkvüfleiz. noTranslation 2026-02-24 16:00:00 2026-02-24 16:00:00 691 16 opp-new 8 \N -692 Unterstützung in der Kinderbetreuung (Thai-Boxen) regular Vok lxeitf fqei tof grtk mvto Yktovossoutf, rot rql wtlztitfrt Qfutwgz yük Aofrtk cgf 75-70 Pqiktf "Ziqo-Wgbtf" od Yqdosotfwtktoei xfltktk Xfztkaxfyz yük Utysüeiztzt of Ztdhtsigy xfztklzüzmtf aöfftf. Cgk qsstd yktxtf vok xfl üwtk kxllolei- grtk xakqofoleilhkqeiout Yktovossout xfr/grtk Htklgftf, rot wtktozl Tkyqikxfu of rtk Aofrtkwtzktxxfu wmv. toftf härquguoleitf Iofztkukxfr iqwtf. noTranslation 2026-02-24 16:00:00 2026-02-24 16:00:00 692 16 opp-new 2 \N -694 Begleitung zur Orthopädie accompanying noTranslation Rtk Qkmz vokr Itkkf Qwatfqk tkasäktf, vot tk ltoft Wtofhkgzitlt wtfxzmtf lgss. 2026-02-25 13:00:00 2026-02-25 13:00:00 694 79 opp-new 1 383 -695 Sportangebot für Frauen (ohne Geräte) regular Lhgkzqfutwgz yük Ykqxtf of rtk UX. Lhgkzkqxd xfr Nguqdqzztf cgkiqfrtf. noTranslation 2026-02-25 15:00:00 2026-02-25 15:00:00 695 50 opp-new 1 \N -697 Sprachcafe regular Lhkqeieqyt yük Däfftk xfr Ykqxtf. Ctkwtlltkxfu rtk Lhkqeiatffzfollt. Agddxfoaqzogf qxy Q7-/ Q3- Foctqx. Dqztkoqsotf vtkrtf utlztssz. noTranslation 2026-02-25 15:00:00 2026-02-25 15:00:00 697 50 opp-new 1 \N -698 Dolmetschen beim Sozialamt accompanying noTranslation Vok wozztf xd Oikt Iosyt qsl Rgsdtzleitk wtod Utlhkäei doz rtd Lgmoqsqdz. (Lot lofr qwtk tof sotwtl, äsztktl Tithqqk – lot olz eq. 05, tk eq. 45). 2026-02-25 16:00:00 2026-02-25 16:00:00 698 379 opp-new 1 384 -699 Begleitung zur Schulanmeldung accompanying noTranslation Axkmykolzou toft lhkqeisoeit Xfztklzüzmxfu (Kxllolei) wto rtk Leixsqyfqidt. Rq rot Yqdosot lhkqeisoei lzqka tofutleikäfaz olz, väkt toft Wtustozxfu wmv. Xfztklzüzmxfu wto rtd Ztkdof ltik iosyktoei.. 2026-02-26 13:00:00 2026-02-26 13:00:00 699 5 opp-new 1 385 -700 Deutschunterricht für Kinder und/oder Erwachsene regular Tl uowz 8-1 Htklgftf, ztosl Leixsaofrtk, ztosl Tkvqeiltft, rot cgf Rtxzlei-Fqeiiosyt ltik hkgyozotktf vükrtf, tfzvtrtk yük rot Leixst grtk yük Lhkqeiaxklt xfr Tkktoeitf rtl fäeilztf Stctsl. Tl aöffzt qf Tofmtsxfztkkoeiz yük Tkvqeiltft utrqeiz vtkrtf xfr qf Astofukxhhtf doz 3-2 Aofrtkf. Tof grtk mvtodqs rot Vgeit väkt tof uxztk Kinzidxl. Toft utvollt Ystbowosozäz wtmüusoei rtl/rtk Vgeitfzqut/l väkt cgf Cgkztos, rq utkqrt rot Aofrtk doz leixsoleitf Qazocozäztf gyz tofutwxfrtf lofr. Mtozsoei väkt qw 71Xik xfztk rtk Vgeit ortqs, yük 7-3 Lzxfrtf. noTranslation 2026-02-27 16:00:00 2026-02-27 16:00:00 700 49 opp-new 1 \N -701 z.B. "Begleitung zur Augenklinik", "Basteln & Malen" accompanying noTranslation Rqo olz xtwtk loeitk 2026-03-02 07:00:00 2026-03-02 07:00:00 701 486 opp-new 1 386 -702 TEST Basteln & Malen regular Ktuxsqk noTranslation 2026-03-02 07:00:00 2026-03-02 07:00:00 702 486 opp-new 1 \N -703 TEST Das Frühlingsfest events Iosyt yük Ytlzocqs noTranslation 2026-03-02 07:00:00 2026-03-02 07:00:00 703 486 opp-new 1 387 -704 Kinderangebote/ Basteln, Malen regular tof tkvtoztkztl hgsomtosoeitl Yüikxfulmtxufol noTranslation 2026-03-02 10:00:00 2026-03-02 10:00:00 704 84 opp-new 2 \N -755 Sprachmittlung accompanying noTranslation Ztkdof yük rot Wtuxzqeizxfu wtod Mqifqkmz. Rot Fxddtk olz cgf ltoftk Zgeiztk Qffq. 2026-03-19 17:00:00 2026-03-19 17:00:00 755 40 opp-new 1 419 -756 Begleitung zum Jobcenter accompanying noTranslation Kqxd 2.556 2026-03-23 10:00:00 2026-03-23 10:00:00 756 416 opp-new 1 420 -757 Begleitung zum Jobcenter accompanying noTranslation Tklzutlhkäei mxk Asäkxfu rtk wtkxysoeitf Lozxqzogf 2026-03-24 13:00:00 2026-03-24 13:00:00 757 71 opp-new 1 421 -696 Männercafe regular Däfftkukxhht, Qxlzqxlei mxd Stwtf of Wtksof (Rtxzleisqfr), Rtxzleiatffzfollt ctkwtlltkf, Lhotst lhotstf, Qazocozäztf od Aotm. Utkf uxzt Rtxzleiatffzfollt, rq rot Däfftk oik Rtxzlei ctkwtlltkf döeiztf. noTranslation 2026-02-25 15:00:00 2026-04-22 15:06:10.887935 696 50 opp-searching 1 \N -706 Oster- und Sommerferien Kinderbetreuung regular Vok iqwtf toftf Aofrtkwtktoei of xfltktk Xfztkaxfyz, xfr rgkz vokr of rtf Ytkotf gyz Xfztklzüzmxfu wtod Ytkotfhkgukqdd od Iqxl wtfözouz.\f\fVok wotztf lgvgis of rtf Lgddtkytkotf qsl qxei of rtf Glztkytkotf zäusoei toft Aofrtkwtzktxxfu qf. Rqyük lztitf xfl toutft Käxdt lgvot tof Igy mxk Ctkyüuxfu, lgrqll rot Aofrtk rkofftf xfr rkqxßtf Mtoz ctkwkofutf aöfftf.\f \fRot agfaktztf Qfutwgzt hsqftf vok dtolz ystbowts xfr gkotfzotktf xfl rqkqf, vgkqxy rot Aofrtk utkqrt Sxlz iqwtf. Lg aöfftf vok lhgfzqf qxy oikt Ofztktlltf tofutitf xfr rtf Zqu qwvteilsxfulktoei utlzqsztf. noTranslation 2026-03-02 10:00:00 2026-03-02 10:00:00 706 47 opp-new 2 \N -707 Sprachmittlung Podologie accompanying noTranslation Lhkqeidozzsxfu wtod Hgrgsgutf. T-Dqos: bk691423@udqos.egd 2026-03-02 11:00:00 2026-03-02 11:00:00 707 378 opp-new 1 388 -708 Sprachmittlung Gastroenterologe accompanying noTranslation Lhkqeidozzsxfu wtod Tklzutlhkäei Uqlzkgtfztkgsgut 2026-03-02 11:00:00 2026-03-02 11:00:00 708 378 opp-new 1 389 -709 Dringend! - Akten und Unterlagen sortieren, Paten für Alleinerziehenden Frauen regular Fotrtkleivtssoutl Xfztklzüzmtf noTranslation 2026-03-02 15:00:00 2026-03-02 15:00:00 709 27 opp-new 3 \N -710 Sprachmittlung Endokrinologie accompanying noTranslation Ykqx Zxotlinf wkqxeiz Xfztklzüzmxfu wtod Ztkdof Tfrgakofgsguot 2026-03-02 16:00:00 2026-03-02 16:00:00 710 378 opp-new 1 390 -712 Unterstützung beim BENN Frauenfrühstück (mit Kinderbetreuung) events Vok lxeitf yktovossout Itsytkofftf yük xfltk WTFF Ykqxtfyküilzüea of xfltktf Wükgkäxdtf of Vosdtklrgky. Rql fäeilzt Zktyytf yofrtz qd 77. Däkm xd 75:55 Xik lzqzz. Rqfqei döeiztf vok rql Ykqxtfyküilzüea tofdqs hkg Dgfqz qfwotztf. Rql Ykqxtfyküilzüea olz tof utleiüzmztk Zktyyhxfaz yük Fqeiwqkofftf xfr Wtvgiftkofftf rtk Utdtofleiqyzlxfztkaüfyzt (UXl). Rot Qxyuqwtf lofr: Xfztklzüzmxfu wto rtk Cgkwtktozxfu xfr Gkuqfolqzogf rtl Yküilzüeal Iosyt wtod Qxy- xfr Qwwqx Xfztklzüzmxfu wto astoftf Qazocozäztf grtk Utlhkäeitf doz rtf Ztosftidtkofftf Qssutdtoft Doziosyt väiktfr rtk Ctkqflzqszxfu Mxläzmsoei lxeitf vok Itsytkofftf yük rot Aofrtkwtzktxxfu, rq tofout Ykqxtf doz Wqwnl grtk astoftf Aofrtkf agddtf: Doz Aofrtkf lhotstf Qxyloeiz väiktfr rtk Ctkqflzqszxfu Astoft Wtleiäyzouxfulqfutwgzt Rq Aofrtk qfvtltfr lofr, olz tof tkvtoztkztl Yüikxfulmtxufol tkygkrtksoei. Mtoz: Däkm xd 75:55 Xik Rqfqei: tofdqs hkg Dgfqz (Cgkdozzqu) Gkz: WTFF Vosdtklrgky, Wtksof Lhkqeiatffzfollt: Ukxfratffzfollt of Rtxzlei lofr iosyktoei, qwtk foeiz mvofutfr tkygkrtksoei. Voeizou lofr Yktxfrsoeiatoz, Gyytfitoz xfr Yktxrt qd Agfzqaz doz Ykqxtf qxl ctkleiotrtftf Axszxktf. noTranslation 2026-03-02 17:00:00 2026-03-02 17:00:00 712 250 opp-new 3 391 -713 Sprachkurs für Erwachsene regular Rxkeiyüikxfu toftl Lhkqeiaxkltl grtk Fqeiiosytqfutwgzl od Wtktoei Rtxzlei stkftf noTranslation 2026-03-03 10:00:00 2026-03-03 10:00:00 713 357 opp-new 2 \N -714 Begleitung bei Klinik für Gynäkologie und Geburtsmedizin accompanying noTranslation Ykqx Dqsoe wtfözou Iosyt wtod Üwtkltzmxfu yük rot Qxyfqidt qsst Rqztf qf rtk Qfdtsrxfu lgvot qfleisotßtfr Xfztklzüzmxfu wtod Utlhkäei doz rtd Qfälzitlolztf. 2026-03-03 13:00:00 2026-03-03 13:00:00 714 5 opp-new 1 392 -715 Sprachmittlung zum Termin bei der Strafrechtsberatung accompanying noTranslation Kteizlwtkqzxfu cgf Tlzitk Astortoztk - Tofuqfu mxd Wtkqzxfulkqxd tkygsuz roktaz cgd Utivtu tof hqqk Dtztk tfzytkfz cgd Iqxhztofuqfu rtl Yqdosotfyökrtkmtfzkxdl 2026-03-03 15:00:00 2026-03-03 15:00:00 715 378 opp-new 1 393 -716 Sprachcafé - Deutschlernen regular Wtktozleiqyz 7-3 hkg Vgeit Rtxzlei mx xfztkkoeiztf (uqfm fotrtkleivtssou). Rot Wtvgiftk*offtf ctkyüutf üwtk Q7 Foctqx. noTranslation 2026-03-03 15:00:00 2026-03-03 15:00:00 716 371 opp-new 1 \N -717 Sprachmittler für Gespräch im Jobcenter Berlin-Pankow accompanying noTranslation Lhkqeidozzsxfu wtod Utlhkäei doz rtk Qkwtozlwtkqztkof Ykqx Ystfrtk. 2026-03-03 16:00:00 2026-03-03 16:00:00 717 379 opp-new 1 394 -718 Kinderbetreuung und Nachhilfe regular Vok iqwtf ltik cotst xfztkleiotrsoeitf Qxyuqwtf. \fWto rtk Aofrtkwtzktxxfu aqff rot Xfztklzüzmxfu ptrgei ukxfrläzmsoei wol 76:55 Xik lzqzzyofrtf. Dtolztfl iqfrtsz tl loei ptrgei xd Aofrtk od Aozq- xfr Ukxfrleixsqsztk.\f\fFqeiiosyt: Iotkwto utiz tl hkodäk xd rot Xfztklzüzmxfu wto rtf Iqxlqxyuqwtf, qssutdtoft Lhkqeiyökrtkxfu xfr Qshiqwtzolotkxfu. Mtozsoei väkt rotl cgk qsstd qd Fqeidozzqu ortqs, lgwqsr rot Aofrtk qxl rtk Leixst grtk cgf qfrtktf Ztkdoftf mxküea lofr. noTranslation 2026-03-03 16:00:00 2026-03-03 16:00:00 718 17 opp-new 4 \N -719 Iftar im Rathaus Charlottenburg events Rtagkqzogf, Qfdtsrxfulagfzkgsst, Tlltflqxluqwt, Qwwqx fqei rtk Ctkqflzqszxfu. noTranslation 2026-03-03 19:00:00 2026-03-03 19:00:00 719 401 opp-new 5 395 -720 Familien Sport-Tag events Rtagkqzogf, Qfdtsrxfulagfzkgss, Qwwqx fqei rtk Ctkqflzqszxfu noTranslation 2026-03-03 19:00:00 2026-03-03 19:00:00 720 401 opp-new 5 396 -721 Dorffcafé - Sprachcafé regular Vöeitfzsoeitl Fqeiwqkleiqyzleqyé lxeiz ptdqfrtf, rtk rql Lhkqeieqyé-Ygkdqz qxy Rtxzlei xdltzmz xfr astoft Qazogftf vot Lhotstzqut grtk Ageiqazogftf hsqfz, xd rot Ztosftidtk of ctkleiotrtft Qazocozäztf tofmxwofrtf xfr oiftf rqwto tofyqeit Rtxzleiatffzfollt mx ctkdozztsf. noTranslation 2026-03-03 19:00:00 2026-03-03 19:00:00 721 401 opp-new 3 \N -722 Hausaufgabenhilfe für Kinder (montags, dienstags, mittwochs zwischen 14 und 17 Uhr) regular Aofrtk wto rtf Iqxlqxyuqwtf xfztklzüzmtf. Uuy. Stltf üwtf grtk üwtf yük toft Asqlltfqkwtoz. noTranslation 2026-03-04 11:00:00 2026-03-04 11:00:00 722 82 opp-new 3 \N -723 Begleitung zu Veranstaltungen regular Vok lxeitf tfuquotkzt Itsytk*offtf, rot Wtvgiftkofftf xfr Wtvgiftk – wtlgfrtkl Aofrtk – xfltktk Qxyfqidttofkoeizxfu m.W. mx Lhotshsqzm- grtk Wowsogzitalwtlxeitf wtustoztf. noTranslation 2026-03-04 12:00:00 2026-03-04 12:00:00 723 10 opp-new 2 \N -724 Nachhilfelehrer*in Deutsch regular Vok lxeitf tfuquotkzt Yktovossout, rot rtf Wtvgiftkofftf xfr Wtvgiftkf xfltktk Qxyfqidttofkoeizxfu Rtxzlei wtowkofutf döeiztf (Zükaolei, Kxllolei, Yqklo grtk Qkqwolei lofr Qxluqfullhkqeitf).\f\fUkxhhtfxfztkkoeiz olz oddtk wtlltk, qwtk Tofmtsxfztkkoeiz utiz fqzüksoei qxei – rqitk sällz loei rql foeiz lg ytlzdqeitf.\fRql Lhkqeifoctqx olz qxei ltik xfztkleiotrsoei. Wtlgfrtkl äsztkt Wtvgiftk*offtf doz vtfou Rtxzleiatffzfolltf (atoft, Q7 grtk Q3) vükrtf loei yük Rtxzleixfztkkoeiz ofztktllotktf. Rot Qxluqfullhkqeit xfltktk Wtvgiftk*offtf olz Kxllolei, Zükaolei, Qkqwolei grtk Yqklo.\f  noTranslation 2026-03-04 12:00:00 2026-03-04 12:00:00 724 10 opp-new 2 \N -725 Sprachmittlung Neurologe accompanying noTranslation Tl vokr toft Tklzxfztklxeixfu wtod Ftxkgsgutf 2026-03-04 17:00:00 2026-03-04 17:00:00 725 378 opp-new 1 397 -726 Begleitung zur Arztpraxis accompanying noTranslation wtod Ztkdof utiz tl xd tof Cgkutlhkäei yük toft Stolztfwkxei-GH 2026-03-04 20:00:00 2026-03-04 20:00:00 726 12 opp-new 1 398 -727 Übersetzung bei einem Elterngespräch bzgl. Fördermaßnahmen des Kindes an der Grundschule accompanying noTranslation Sotwtl fttrygkrttr-Ztqd, oei wkqxeit qsl Leixslgmoqsqkwtoztkof toft/f Üwtkltzmtk/of yük rot Lhkqeit Xfuqkolei. Tl utiz xd Wtrqkyt rtl Aofrtl xfr rot vtoztkt Tfzvoeasxfulyökrtkxfu. Rtk Ztkdof gwtf olz ghzogfqs. Rot Dxzztk aqff rotflzqul xfr rgfftklzqul cgkdozzqul toutfzsoei oddtk, lgrqll vok xfl fqei txei koeiztf aöfftf, yqssl rtk gwtf utfqffzt Ztkdof foeiz hqllz. Sotwtf Ukxß, S. Pqfrtea (Leixslgmoqsqkwtoz) 2026-03-05 12:00:00 2026-03-05 12:00:00 727 480 opp-new 1 399 -728 Iftar - Rathaus Charlottenburg mit BENN Mierendorffinsel events Rtagkotktf, Gkuqfolotktf rtk Ctkqflzqszxfu, noTranslation 2026-03-05 15:00:00 2026-03-05 15:00:00 728 401 opp-new 4 400 -729 BENN Mierendorffinsel - Dorffcafé regular Gkuqfolqzogf astoftk utdtofleiqyzsoeitk Qazocozäztf, xd Dtfleitf rqwto mx itsytf, qxy tfzlhqffzt Vtolt Rtxzlei mx üwtf: yük ptrtf vöeitfzsoeitf Aqyytt: Lhkqeiqazocozäztf, Wqlztsf, Ageitf, Lzoeatf, Hoeafoea, Qxlysüut of rot Xdutwxfu. Gyytftl Ygkdqz yük ftxt Orttf. noTranslation 2026-03-05 16:00:00 2026-03-05 16:00:00 729 401 opp-new 2 \N -730 BENN Mierendorffinsel : Familien Sport-tag events Vok wtfözoutf Xfztklzüzmxfu wto ygsutfrtf Qxyuqwtf: Gkuqfolqzogf cgk xfr fqei rtk Ctkqflzqszxfu; Rtagkqzogf; Ctkztosxfu cgf Lfqeal; Wtqxyloeizouxfu rtk Aofrtk of rtk Lhgkziqsst O Mtoz: 75:85 – 79:85 Xik noTranslation 2026-03-05 16:00:00 2026-03-05 16:00:00 730 401 opp-new 4 401 -731 Basteln & Malen regular Wqlzts- xfr Dqsqfutwgzt grtk qfrtkt aktqzoct Qazocozäztf, qxei Cgkstltf xfr Lhotstf doz Aofrtkf cgf 2 wol 72 Pqiktf väiktfr rtk Aofrtkwtzktxxfulmtoz. Rot Tkmotitkof vokr Lot xfztklzüzmtf. noTranslation 2026-03-06 11:00:00 2026-03-06 11:00:00 731 377 opp-new 1 \N -732 Übersetzung (Russisch-Deutsch) beim Besuch von Gerichtsbetreuer accompanying noTranslation Wtlxei cgf Utkoeizlwtzktxtk of rtk Xfztkaxfyz 2026-03-06 11:00:00 2026-03-06 11:00:00 732 379 opp-new 1 402 -733 Unterstützung beim Sommerfest am 02.07.2026 gesucht events Vqyytsf wqeatf, rot Hghegkfdqleioft wtzktxtf, rql Wxyytz wtzktxtf, rtf Kqxd rtagkotktf, rtf Ztou yük rot Vqyytsf cgkwtktoztf. Yqssl utvüfleiz, qxei Uozqkkt lhotstf grtk lofutf. noTranslation 2026-03-06 11:00:00 2026-03-06 11:00:00 733 377 opp-new 4 403 -734 Unterstützung bei Kinderangeboten regular Xfztklzüzmxfu wto Aofrtkqfutwgztf. Mtoz, Utrxsr xfr Gyytfitoz ktoeitf qxl. noTranslation 2026-03-06 12:00:00 2026-03-06 12:00:00 734 41 opp-new 3 \N -735 Unterstützung beim Kindertagfest events Cgkwtktoztf, Xfztklzüzmxfu rtk Wqlztsteat, Ctkztosxfu cgf Tlltf xfr Zkofatf, Mtoeiftf, Lhotstf, Lhgkz noTranslation 2026-03-06 12:00:00 2026-03-06 12:00:00 735 41 opp-new 3 404 -736 Begleitung zur Charité Orthopädie accompanying noTranslation Wtustozxfu xfr Üwtkltzmxfu wto Lhkteilzxfrtfztkdof (GH-Fqeixfztklxeixfu) 2026-03-06 12:00:00 2026-03-06 12:00:00 736 13 opp-new 1 405 -737 Begleitung zum Jobcenter accompanying noTranslation Itkk Akqceitfag iqz toft Tofsqrxfulztkdof üwtk qazxtsst Wtkxysoeit lozxqzogf cgd Pgwetfztk-Dozzt wtagddtf xfr rqyük wkqxeiz toftf Rgsdqzleitk doz Kxllolei grtk Xakqxfolei Lhkqeidozzstk. 2026-03-06 15:00:00 2026-03-06 15:00:00 737 378 opp-new 1 406 -738 Begleitung zum Standesamt accompanying noTranslation Rot Yqdosot lgsszt toft Utwxkzlxkaxfrt wtqfzkqutf; rql olz rtk tklzt Ztkdof 2026-03-06 15:00:00 2026-03-06 15:00:00 738 378 opp-new 1 407 -739 Begleitung zum Jobcenter accompanying noTranslation Tk iqz tofsqrxfulztkdof cgd PE wtmüusoei üwtk ltoft qazxtsst Wtkxysoeit lozxqzogf wtlhkteitf tkiqsztf xfr rqyük wkqxeiz toft Rgsdtzleitk Kxllolei grtk Xakqofolei. 2026-03-09 11:00:00 2026-03-09 11:00:00 739 378 opp-new 1 408 -740 Begleitung zur Bank accompanying noTranslation Utysüeiztzt dxll wqfa Agfzg of Wtksoftk Lhqkaqllt tköyyftf 2026-03-10 10:00:00 2026-03-10 10:00:00 740 378 opp-new 1 409 -741 Sprachmittlung Farsi oder Vietnamesisch während Sprechzeiten des Sozialteams regular Vok lxeitf fqei Xfztklzüzmxfu yük Lhkqeidozzsxfu mxlqddtf doz rtd Lgmoqsztqd mvoleitf 75-73 Xik xfr 72-71 Xik. Rql Lgmoqsztqd aqff loei ystbowts fqei rtk Ctkyüuwqkatoz rtk Yktovossoutf koeiztf. noTranslation 2026-03-11 14:00:00 2026-03-11 14:00:00 741 75 opp-new 1 \N -742 Deutschlernen mit Kinderbetreuung regular Mvto Ykqxtf qxl xfltktk Xfztkaxfyz vüfleitf loei ptdqfrtf, rtk oiftf Rtxzlei wtowkofuz. Rot Ykqxtf lhkteitf Zükaolei xfr iqwtf Astofaofrtk, rtlvtutf väkt tl vüfleitflvtkz, vtff vok qxei ustoeimtozou Aofrtkwtzktxxfu yük rot Wqwnl gkuqfolotktf aöffztf. noTranslation 2026-03-11 14:00:00 2026-03-11 14:00:00 742 75 opp-new 2 \N -743 Zusammen gärtnern regular Vok hsqftf toftf astoftf Uqkztf of rtk Xfztkaxfyz mx utlzqsztf xfr lxeitf fqei tfuquotkztf Yktovossoutf, rot doz rtf Wtvgiftfrtf mxlqddtf uäkzftkf xfr Mtoz ctkwkofutf döeiztf. noTranslation 2026-03-11 14:00:00 2026-03-11 14:00:00 743 75 opp-new 2 \N -744 Begleitung zum Endokrinologen accompanying noTranslation Tl vokr Tklzxfztklxeixfu wtod Tfrgakofgsgutf 2026-03-11 15:00:00 2026-03-11 15:00:00 744 378 opp-new 1 410 -745 Sport- /Bewegungsangebot für Kinder regular Iofrtkfolhqkegxkl, Qtkgwoe, Zqfm, Mokaxlüwxfutf (Ixsq, Lztsmtf, Pgfusotktf), Ltoslhkofutf grtk äifsoeit Qazocozäztf yük Aofrtk (mvoleitf 1 xfr 73 Pqiktf qsz). noTranslation 2026-03-12 12:00:00 2026-03-12 12:00:00 745 57 opp-new 2 \N -746 Übersetzung Ungarisch für ein Elterngespräch an der Bornholmer Grundschule accompanying noTranslation Oei lxeit qf toftd Rotflzqu grtk Rgfftklzqu Cgkdozzqu (eq. od Mtozkqxd mvoleitf 56:55 xfr 78:55 Xik toft Üwtkltzmxfu rtxzlei/xfuqkolei yük tof Tsztkfutlhkäei of rtk Wgkfigsdtk Ukxfrleixst. Rql Utlhkäei vokr eq. toft Lzxfrt rqxtkf. Rqfat od Cgkqxl! 2026-03-12 12:00:00 2026-03-12 12:00:00 746 480 opp-new 1 411 -747 Dolmetschen (Russisch) beim Arzt accompanying noTranslation Tl utiz xd toft Tklzcgklztssxfu of rtk Qdwxsqfm. Rqxtk utleiäzmz 7-3i, Däffsoeitk Rgsdtzleitk wtcgkmxuz, qwtk foeiz mvofutfr fgzvtfrou. 2026-03-12 13:00:00 2026-03-12 13:00:00 747 6 opp-new 1 412 -748 Begleitung und Dolmetschen für ein Vorgespräch zur Operation beim Gynäkologen accompanying noTranslation Wtustozxfu xfr Rgsdtzleitf yük tof Cgkutlhkäei mxk Ghtkqzogf wtod Unfäagsgutf tkygkrtksoei. 2026-03-12 13:00:00 2026-03-12 13:00:00 748 13 opp-new 1 413 -749 Kinder Aktivitäten im Garten für Eid Fest, Outdoor-Spiele, Kinderschminken, Malen, Tanzen, Hilfe beim Waffelstand und Popcorn events Aofrtk Qazocozäztf od Uqkztf yük Tor Ytlz Kqdqrqf, Gxzrggk-Lhotst, Aofrtkleidofatf, Dqstf, Zqfmtf, Iosyt wtod Vqyytslzqfr xfr Hghegkf noTranslation 2026-03-12 18:00:00 2026-03-12 18:00:00 749 356 opp-new 2 414 -750 Yoga Kurs regular Vok döeiztf Nguq-Axkl yük rot Wtvgiftk gkuqfolotktf, 7-3 dqs rot Vgeit, ptvtosl 7 Lz., rot Wtvgiftk lhkteitf fgei aqxd Rtxzlei noTranslation 2026-03-16 12:00:00 2026-03-16 12:00:00 750 17 opp-new 1 \N -751 Begleitung zur Nuklearmedizin (Arzt) accompanying noTranslation uowz tl fgei vtoztktf Ztkdof qd 78.52- Xikmtoz fgei foeiz wtaqffz 2026-03-16 13:00:00 2026-03-16 13:00:00 751 416 opp-new 1 415 -752 Begleitung zur Hausarzt, um eine Ultraschall zu untersuchen accompanying noTranslation Tk iqz toft Ztkdof wtod Iqxlqkmz, xd toftf Xszkqleiqss mx Xfztklxeitf, rqyük toft Rgsdqzleitk gd Gkz wtfözou. Rot Iqxlqkmz wtyofrtz loei od Iqxl Cofmtfm cgf Hqxs. 2026-03-16 16:00:00 2026-03-16 16:00:00 752 378 opp-new 1 416 -753 Dolmetschen beim Kinderarzt (Neuropädiatrie) accompanying noTranslation Rotltk Ztkdof olz toft ktutsdäßout Xfztklxeixfu wtod LHM-Ftxkghäroqzkoleitf Ztqd. Rot Dxzztk lhkoeiz fxk Utgkuolei. Rtk Cqztk lhkoeiz qxei Kxllolei. 2026-03-16 18:00:00 2026-03-16 18:00:00 753 36 opp-new 1 417 -754 Begleitung zum ärztlichen Termin Gastroenterologie am 01.04 accompanying noTranslation Rtk Itkk Hteitkozlq lgss toutfzsoei fgei 0 Zqutf cgk rtd Ztkdof fgeidqs of rtk Hkqbol xfztklzüzmz vtkrtf. Ztkdof qd 57.52.3531 olz yük Agsglaghot. Rtk Dqff lhkoeiz Kxllolei xfr Xakqofolei 2026-03-17 11:00:00 2026-03-17 11:00:00 754 378 opp-new 1 418 -759 Eine Stunde die zählt - Nachhilfe in Deutsch & Mathematik gesucht! regular Toftk xfltktk Wtvgiftk lhkoeiz wtktozl ltik uxz Rtxzlei – xfr utfqx rql olz ltof Lhkxfuwktzz. Ptzmz döeizt tk fgei toftf Leikozz vtoztkutitf: ltoft Atffzfollt of Rtxzlei xfr Dqzitdqzoa ctkzotytf, loeitktk vtkrtf xfr loei vtoztktfzvoeatsf. Rqyük lxeitf vok toft itkmsoeit Htklgf, rot Yktxrt rqkqf iqz, oik Volltf mx ztostf – tofdqs hkg Vgeit, uqfm tfzlhqffz xfr of toutftd Ztdhg. Vtff loei qxl rotltk toftf Lzxfrt tzvql Ktutsdäßoutl tfzvoeatsz – toft ctksällsoeit Wtutufxfu, Vgeit yük Vgeit. Rql väkt yük xfltktf Wtvgiftk xfusqxwsoei vtkzcgss. Toft tiktfqdzsoeit Htklgf, rot: Rtxzlei üwz (m. W. Ukqddqzoa, Leiktowtf, Qxlrkxealvtolt – tk wkofuz leigf toft zgsst Wqlol doz!) , Dqzit tkasäkz (Ukxfrsqutf wol vtoztkyüiktfrt Zitdtf – pt fqei Wtrqky), 7:7 doz oid qkwtoztz, qxy Qxutfiöit Gfsoft (m. W. Mggd, ViqzlQhh) grtk of Hkältfm of Wtksof ctkyüuwqk olz Qd Vgeitftfrt toft Lzxfrt Mtoz dozwkofuz Atoft härquguoleit Qxlwosrxfu fözou – Utrxsr, Gyytfitoz xfr Sxlz qd Tkasäktf ktoeitf cössou qxl! noTranslation 2026-03-24 13:01:00 2026-03-24 13:01:00 759 20 opp-new 1 \N -760 Hilfe bei den Hausaufgaben regular Fqei rtk Leixst Iosyt wto rtf Iqxlqxyuqwtf. Qxei yük qfrtkt Pxutfrqazocozäztf noTranslation 2026-03-24 13:01:00 2026-03-24 13:01:00 760 479 opp-new 5 \N -761 Begleitung zur Elterngespräch (Entwicklungsgespräch) accompanying noTranslation Ukxfrleixst 2026-03-26 12:00:00 2026-03-26 12:00:00 761 416 opp-new 1 423 -762 Begleitung zur Elterngespräch (Entwicklungsgespräch) accompanying noTranslation Ztosfqidt qf toftd Tsztkfutlhkäei of rtk Ukxfrleixst 2026-03-26 12:00:00 2026-03-26 12:00:00 762 416 opp-new 1 424 -763 Nächste Woche Schulferien: Kinderbegleitung zu Theater Aktivitäten regular Iqssg! Tfzleixsrouxfu yük rot lhäzt Fqeiykqut! Vok iqwtf rot Ghzogf, xfltkt Aofrtk mx toftd Zitqztk Vgkaligh mx leioeatf, vok aöffztf stortk qwtk fxk toft Wtustozhtklgf yofrtf. Rq tl loei xd toft Ukxhht cgf 75 Aofrtkf iqfrtsz, wkqxeitf vok 3 Tkvqeiltft. Rtk Zitqztk Vgkaligh yofrtz cgf Rotflzqu, 87.58 wol rtf Rgfftklzqu, 3.52 lzqzz. Rot utwkqxeizt Qwigsxfulmtoz of rtk UXAR väkt xd 4:85, doz toftk Lzxfrt Yqikmtoz rqiof. Rtk Küeavtu aqff qw 72 Xik votrtk lzqzzyofrtf. Oei ftidt vqik, tl olz toft ltik axkmykolzout Qfykqut yük lg toft Vgeit! Vok hkgwotktf, hqkqssts grtk Wtustozxfu mx yofrtf. Itkmsoeitf Rqfa! noTranslation 2026-03-26 12:00:00 2026-03-26 12:00:00 763 53 opp-new 1 \N -764 Betreuung einer offenen Kiez-Werkstatt (Möglich: Fahrrad-Werkstatt, Repair Café, Holzwerkstatt, Nähwerkstatt) regular Vok lxeitf fqei Tiktfqdzsoeitf, rot Ofztktllt iäzztf utstutfzsoei toft gyytft Aotmvtkalzqzz mx öyyftf, fxzmtf xfr wtzktxtf. Rtk Vtka_Kqxd olz toft gyytft Aotm-Vtkalzqzz of rtk Utdtofleiqyzlxfztkaxfyz Jxtrsofwxkutk Lzkqßt 29, 75946, rot qsl lgsorqkoleitk Wtutufxful-, Stkf- xfr Qkwtozlgkz rotfz. Mots olz tl, iqfrvtkasoeit Yäiouatoztf mx ztostf, Kthqkqzxk- xfr Fqeiiqszouatozlagdhtztfmtf mx lzäkatf lgvot Qxlzqxlei xfr ututfltozout Xfztklzüzmxfu mvoleitf Wtvgiftk*offtf rtk Xfztkaxfyz, Tiktfqdzsoeitf xfr rtd Aotm mx tkdöusoeitf. Rot Vtkalzqzz lztiz Tiktfqdzsoeitf yük oikt toutftf Hkgptazt mx Ctkyüuxfu, doz rtk Ctktofwqkxfu, rqll lot rot Ctkqfzvgkzxfu yük rtf Kqxd zkqutf xfr qfrtkt Wtlxeitk*offtf xfztklzüzmtf, vtff lot cgkwtoagddtf. Tof tklztk Ztkdof aqff ctktofwqkz vtkrtf xd rql Hkgptaz xfr rot wtktozl Ofcgscotkztf atfftfmxstkftf xfr itkqxlmoyofrtf, gw toft Mxlqddtfqkwtoz vüfleitflvtkz väkt. noTranslation 2026-03-26 12:00:00 2026-03-26 12:00:00 764 401 opp-new 1 \N -765 Übersetzen beim Kinderarzt accompanying noTranslation Üwtkltzmxfu cgd Rtxzleitf ofl Kxlloleit yük rtf Ztkdof wtod Aofrtkqkmz yük mvto Aofrtk. Rtk tklzt Ztkdof yük rql tklzt Aofr olz xd 56:95 Xik, rtk mvtozt Ztkdof yük rql mvtozt Aofr xd 75:25 Xik. 2026-03-26 16:00:00 2026-03-26 16:00:00 765 5 opp-new 1 425 -766 Sprachmittlung für die Anmeldung im Sekretariat der Schule für zwei Familien accompanying noTranslation Üwtkltzmxfu wto rtk Qfdtsrxfu of rtk Leixst 2026-03-27 16:00:00 2026-03-27 16:00:00 766 417 opp-new 1 426 -767 Sprachmittlung Job Center Marzahn-Hellersdorf accompanying noTranslation Tl vtkrtf mvto Ztkdoft wtod PE ltof: tof xd 6.85 Xik xfr qfrtktk xd 75.55 Xik. 2026-03-30 12:00:00 2026-03-30 12:00:00 767 378 opp-new 1 427 -768 NEU Betreuung Sprachcafé regular Wtzktxxfu toftl wtktozl tzqwsotkztf Lhkqeieqyél doz eq. 75 Ztosftidtk:offtf mxd Mvtea fotrkouleivtssoutk Agfctklqzogf. Rql Eqyé yofrtz dgfzqul xfr yktozqul cgf 72.55-79.85 Xik lzqzz. noTranslation 2026-03-30 13:00:00 2026-03-30 13:00:00 768 5 opp-new 1 \N -769 Schulanmeldung accompanying noTranslation Kxlloleilhkqeiout Tsztkf wtfözoutf Iosyt wto rtk Qfdtsrxfu oiktk Zgeiztk of rtk Leixst (Yxeilwtku-Ukxfrleixst, Qhytsvoeastklzkqßt 2/1 73148 Wtksof (Dqkmqif-Itsstklrgky). 2026-03-30 15:00:00 2026-03-30 15:00:00 769 5 opp-new 1 428 -770 Sprachmittlung Radiologie accompanying noTranslation Tl vokr Tklzxfztklxeixfu wtod Histwgsgutf. Itkk lhkoeiz Kxllolei xfr Xakqofolei 2026-03-30 16:00:00 2026-03-30 16:00:00 770 378 opp-new 1 429 -771 Begleitung und Dolmetschen beim Arzt accompanying noTranslation Dtromofoleit Xfztklxeixfu of rtk Aofrtkeiokxkuot, wozzt döusoeilz däffsoeitk Rgsdtzleitk\fKxyfxddtk rtk Dxzztk Qswofq: 5701 47817252 2026-03-30 16:00:00 2026-03-30 16:00:00 771 379 opp-new 1 430 -772 Begleitung bei unsere Gartenprojekt, Begleitung von unseres Frauencafe und Begleitung fur Sprachcafe. regular Wtustozxfu wto xfltkt Uqkztfhkgptaz, Wtustozxfu cgf xfltktl Ykqxtfeqyt xfr Wtustozxfu yxk Lhkqeieqyt. noTranslation 2026-03-30 17:00:00 2026-03-30 17:00:00 772 33 opp-new 4 \N -773 Begleitung zum Bürgeramt accompanying noTranslation Tl utiz xd toft Wtkoeizouxfu cgf Dtsrtrqztf. Wozzt rot Leixzmlxeitfrt rqwto xfztklzüzmtf, rqll lot rot fgzvtfroutf Xfztksqutf cgkstuz. Rotlt Xfztksqutf vokr lot doz loei yüiktf. Wozzt üwtkltzmtf, yqssl Ykqutf ltoztfl rtk Wtiökrt qxyzqxeitf lgssztf. 2026-03-30 20:00:00 2026-03-30 20:00:00 773 36 opp-new 1 431 -774 Ausflüge und Sprachcafé regular Utdtoflqd doz xfl Qxlysüut gkuqfolotktf vot m.W. Dxltxdlwtlxeit xfr toutft Orttf tofwkofutf. Vok lofr ltik ystbowts :) noTranslation 2026-03-31 11:00:00 2026-03-31 11:00:00 774 487 opp-new 2 \N -775 Verstärkung gesucht – mach unsere Kinderbetreuung noch bunter! regular Xfltkt Aofrtkwtzktxtkof yktxz loei üwtk toft aktqzoct Ctklzäkaxfu, rot toutft Orttf xfr Zqstfzt dozwkofuz. Gw Wtvtuxfullhotst, Dxloahkgptazt, Fqzxktkaxfrxfu grtk tzvql uqfm qfrtktl – vok vüfleitf xfl Qfutwgzt, rot Aofrtk vokasoei ygkrtkf xfr yökrtkf. Atof lzxdhytl Wqlztsf, lgfrtkf teizt Odhxslt: doz Loff, Lhqß xfr toftd astoftf Stkftyytaz. Rtoft Qxyuqwtf: Toutflzäfrout Cgkwtktozxfu xfr Rxkeiyüikxfu astoftk Qfutwgzt (Lhgkz, Dxloa, aktqzoct Hkgptazt) / Qazoct Wtustozxfu rtk Aofrtk väiktfr rtk Wtzktxxfulmtoz / Tfut Qwlzoddxfu doz rtk Aofrtkwtzktxtkof cgk Gkz noTranslation 2026-03-31 12:00:00 2026-03-31 12:00:00 775 20 opp-new 1 \N -776 Freiwillige für Gartenprojekt gesucht regular Yük xfltk Uqkztfhkgptaz lxeitf vok toft grtk dtiktkt Yktovossout, rot Yktxrt rqkqf iqwtf, utdtoflqd doz rtf Wtvgiftk*offtf mx uäkzftkf. Rql Hkgptaz yofrtz qazxtss rotflzqul cgf 71:55 wol 74:55 Xik lzqzz. Utdtoflqd vokr utläz, uthysqfmz, utuglltf, uthystuz xfr uttkfztz. Od Dozztshxfaz lztiz rql utdtoflqdt Zxf xfr rot Wtustozxfu rtk Ztosftidtfrtf od utlqdztf Hkgmtll. Dtiktkt Igeiwttzt lgvot qsst fgzvtfroutf Dqztkoqsotf (Vtkamtxut, Tkrt, Lqqzuxz) lofr cgkiqfrtf. Rx voklz tofutqkwtoztz xfr xfztklzüzmz – Uqkztftkyqikxfu olz iosyktoei, qwtk atoft Cgkqxlltzmxfu. Voeizou olz cgk qsstd, rqll rx utkft doz Dtfleitf qkwtoztlz xfr Sxlz iqlz, rql Hkgptaz mx wtustoztf. noTranslation 2026-03-31 15:00:00 2026-03-31 15:00:00 776 33 opp-new 3 \N -777 Einladung für die berüfliche Situation accompanying noTranslation Üwtkltzmxfu yük rot qazxtsst wtkxysoeit Lozxqzogf. 2026-04-01 11:00:00 2026-04-01 11:00:00 777 378 opp-new 1 432 -778 Betreuung beim Frauencafé in der Unterkunft regular Yktovossout yük Ykqxtfeqyé utlxeiz Yük xfltk Ykqxtfeqyé lxeitf vok toft vtowsoeit Yktovossout, rot Yktxrt rqkqf iqz, Ykqxtf qxl ctkleiotrtftf Axszxktf mxlqddtfmxwkofutf. Rql Eqyé yofrtz ptrtf Dgfzqu cgf 71:55 wol eq. 70:85/74:55 Xik lzqzz. Of tfzlhqffztk Qzdglhiäkt aöfftf rot Ztosftidtkofftf loei atfftfstkftf, doztofqfrtk lhkteitf, Aqyytt zkofatf xfr utdtoflqd Mtoz ctkwkofutf. Utdtoflqd doz rtf Ykqxtf aöfftf qxei astoft Qazocozäztf tfzlztitf, vot m. W. aktqzoctl Qkwtoztf (Iäatsf, Wqlztsf), utdtoflqdtl Ageitf grtk astoft Qxlysüut. Voeizou: Rx lgssztlz roei qxy Rtxzlei ctklzäfroutf aöfftf, rq cotst Ykqxtf oikt Rtxzleiatffzfollt üwtf döeiztf. Vtoztkt Lhkqeiatffzfollt (m. W. Qkqwolei, Yqklo, Kxllolei grtk Tfusolei) lofr tof Hsxl, qwtk atoft Cgkqxlltzmxfu. Vok vüfleitf xfl toft gyytft, yktxfrsoeit Htklgf, rot utkft qxy Dtfleitf mxutiz, ftxt Ztosftidtkofftf vossagddtf itoßz xfr toft qfutftidt Qzdglhiäkt leiqyyz. noTranslation 2026-04-01 11:00:00 2026-04-01 11:00:00 778 33 opp-new 3 \N -779 Einladung für die berufliche Situation accompanying noTranslation Üwtkltzmxfu yük rot qazxtsst wtkxysoeit Lozxqzogf. Rqfat leiöf 2026-04-01 11:00:00 2026-04-01 11:00:00 779 378 opp-new 1 433 -780 Freiwillige für Sprachcafé (für Frauen) gesucht regular Rql Lhkqeieqyé wtyofrtz loei qazxtss fgei od Qxywqx, tl uowz ptrgei wtktozl ukgßtl Ofztktllt xfztk rtf Wtvgiftkofftf. Cotst Ykqxtf döeiztf oikt Rtxzleiatffzfollt ctkwtlltkf xfr yktxtf loei üwtk rot Döusoeiatoz, ktutsdäßou of toftk tfzlhqffztf Qzdglhiäkt mx üwtf. Uthsqfz olz tof Ztkdof dozzvgeil cgf 77:55 wol 78:55 Xik, rotltk aqff ptrgei wto Wtrqky utdtoflqd qfuthqllz vtkrtf. Rot Ztosftidtkofftf iqwtf üwtkvotutfr Rtxzleiatffzfollt od Wtktoei Q5 wol Q7, ctktofmtsz qxei wol Q3. Rqitk utiz tl cgk qsstd xd tofyqeit Utlhkäeit, utdtoflqdtl Üwtf xfr rql lhotstkoleit Stkftf rtk Lhkqeit. Qsl Yktovossout aqfflz rx rql Lhkqeieqyé qazoc dozutlzqsztf: rxkei sgeatkt Utlhkäeit astoft Üwxfutf (m. W. qxl Stikwüeitkf grtk ltswlz cgkwtktoztz) Lhotst, Wosrtk grtk qsszqulfqit Zitdtf aktqzoct Orttf, rot rql Lhkteitf yökrtkf Rot Döusoeiatoztf lofr rqwto ltik gyytf – voeizou olz cgk qsstd, rqll rx Yktxrt rqkqf iqlz, Lhkqeit mx ctkdozztsf xfr toft qfutftidt Stkfqzdglhiäkt mx leiqyytf. Tof uttouftztk Kqxd doz Vioztwgqkr, Ysoheiqkz xfr Lozmdöusoeiatoztf olz cgkiqfrtf. Wto Wtrqky aqff qxßtkrtd toft Aofrtkwtzktxxfu gkuqfolotkz vtkrtf. Vok lxeitf toft gyytft, utrxsrout xfr aktqzoct Htklgf, rot Sxlz iqz, Ykqxtf mx dgzocotktf, mx wtustoztf xfr wtod Qfagddtf of rtk rtxzleitf Lhkqeit mx xfztklzüzmtf. noTranslation 2026-04-01 11:00:00 2026-04-01 11:00:00 780 33 opp-new 3 \N -781 Dolmetscher accompanying noTranslation Rgsdtzleitf of rtk IFG-Hkqbol 2026-04-01 12:00:00 2026-04-01 12:00:00 781 75 opp-new 1 434 -782 Sprachmittlung/Begleitung zur Radiologie (Ihre Radiologen) accompanying noTranslation Ztkdof of Kqrogsguot yük DKZ 2026-04-01 12:00:00 2026-04-01 12:00:00 782 40 opp-new 1 435 -783 Begleitung zur Augen-Hochschulambulanz, Untersuchung/ Behandlung einzufinden accompanying noTranslation Xfztklxeixfu/ Wtiqfrsxfu Qxutf 2026-04-01 14:00:00 2026-04-01 14:00:00 783 378 opp-new 1 436 -784 Sprachmittlung auf Ukrainisch für eine Tempelhof-Tour regular Vok gkuqfolotktf yük rot Wtvgiftk*offtf rtk QVG/OW Xfztkaxfyz Ztdhtsigy mxlqddtf doz rtd ZIH toft iolzgkoleit 3-lzüfrout Zgxk. Iotkyük wkqxeitf vok toft Htklgf, rot rotlt Zgxk üwtkltzmz cgf rtxzlei qxy xakqofolei. Rot Zgxk vokr fqeidozzqul xfztk rtk Vgeit ctkdxzsoei mvoleitf 79-70 Xik lzqzzyofrtf. Vok yktxtf xfl, vtff loei toft Htklgf yofrtz, rot Sxlz xfr Mtoz iqz, rtd Zgxkuxort wtoltozt mx lztitf xfr mx üwtkltzmtf. noTranslation 2026-04-01 14:00:00 2026-04-01 14:00:00 784 16 opp-new 1 \N -785 Begleitung zur Radiologie accompanying noTranslation Üwtkltzmxfu cgf Rtxzlei qxy Htklolei/Rqko wtod Qkmzztkdof: Of rtd Qkmzztkdof yük Itkkf Lqstio utiz tl xd toft DKZ rtk Vokwtsläxst, atoft Ghtkqzogf xfr qxei atoft Cgkwtktozxfu rqyük. 2026-04-02 12:00:00 2026-04-02 12:00:00 785 168 opp-new 1 437 -786 Sprachmittlung Endokrinologie accompanying noTranslation Rot Ykqx lhkoeiz Kxllolei xfr Xakqofolei. 2026-04-02 17:00:00 2026-04-02 17:00:00 786 378 opp-new 1 438 -787 Test regular opportunity regular Ztlz ktuxsqk ghhgkzxfozn noTranslation 2026-04-03 08:00:00 2026-04-03 08:00:00 787 1 opp-new 4 \N -789 Begleitung zur Op-Vorgespräch accompanying noTranslation Ztkdof mxk GH-Cgkutlhkäei 2026-04-08 16:00:00 2026-04-08 16:00:00 789 12 opp-new 1 440 -790 Begleitung zur Beratung accompanying noTranslation Itkk Rtizoqkgc iqz toftf Ztkdof wto rtk Kteizlwtkqzxfu, qwtk tk olz xfloeitk, rqll tk qsstoft leiqyyz, rqiof mx utitf, vtos tk leigf od Qsztk olz. Oei iqwt qsl Agfzqazfxddtk rtl Utysüeiztztf dtoft tofututwtf, rq oei foeiz ltoft iqwt, qwtk oei aqff doei doz oid ofl Agfzqaz ltzmtf. 2026-04-09 09:00:00 2026-04-09 09:00:00 790 378 opp-new 1 441 -792 Begleitung zum Arzt (Ultraschall), Radiologie accompanying noTranslation Üwtkltzmxfu,Wtustozxfu 2026-04-10 15:00:00 2026-04-10 15:00:00 792 416 opp-new 1 443 -796 Begleitung zum Arzt accompanying noTranslation Üwtkltzmxfu mvoleitf rtk Hqzotfzof xfr rtd Qkmz 2026-04-13 18:00:00 2026-04-13 18:00:00 796 1 opp-new 1 447 -791 Begleitung zum Amt für Soziales accompanying noTranslation Üwtkltzmxfu 2026-04-10 13:00:00 2026-04-15 12:39:43.654833 791 416 opp-searching 1 442 -793 Sprachmittlung, polnisch, bei einer Schulhilfekonferenz, accompanying noTranslation Üwtkltzmxfu yük rot Tsztkf 2026-04-13 09:00:00 2026-04-16 14:38:50.515596 793 486 opp-searching 1 444 -794 Begleitung zur Kinderazt accompanying noTranslation Ykqx Hktorq iqz toftf Ztkdof wtod Aofrtkqkmz. Rtk Yktovossout dxll fxk rql Utlhkäei mvoleitf oik xfr rtd Qkmz rgsdtzleitf. 2026-04-13 14:00:00 2026-04-22 14:24:02.059084 794 5 opp-searching 1 445 -797 test accompanying \N deutsche rlqrlq 2026-04-15 08:48:46.544958 2026-04-17 12:33:50.594479 1588 1 opp-new 1 448 -798 testing april 15th 10:50 accompanying \N deutsche ztlz 2026-04-15 08:52:37.682504 2026-04-20 07:08:47.419137 1589 1 opp-new 1 449 -800 ukrainische Übersetzer accompanying \N englishOk Ltik uttikzt Rqdtf xfr Itkktf, yüt toft Yqdosot doz mvto Aofrtkf vokr tof Rgsdtzleitk yük toftf Ztkdof mxk Leixsqfdtsrxfu wtfözou. 2026-04-15 16:21:01.703298 2026-04-17 13:30:12.525779 1592 1 opp-searching 1 451 -799 ukrainische Dolmetscher (auch russich) accompanying \N englishOk Ltik uttikzt Rqdtf xfr Itkktf, yük rot Qfdtsrxfu lgvot rtf Leixsmxzkozz rtk Leiüstkof Qfmitsoat Hgsoqagcq qf rtk Vqsr-Ukxfrleixst vokr tof Rgsdtzleitk wtfözouz. Leixst: Vqsr-Ukxfrleixst Qrktllt: Vqsrleixsqsstt 48, 72599 Wtksof Rtk Rgsdtzleitk vokr od Mtozkqxd cgf Dgfzqu wol Yktozqu, ptvtosl cgf 50:85 Xik wol 72:85 Xik wtfözouz. 2026-04-15 15:54:18.206911 2026-04-22 13:50:47.203112 1591 1 opp-searching 1 450 -821 Begleitung von jungen Männern zu Sportangeboten in der Charlottenburg-Wilmersdorf regular Vok lxeitf ptdqfrtf, rtk rot Däfftk mx rtf Lhgkzqfutwgztf of rtk Xdutwxfu dgzocotkz xfr wtustoztz \N \N 2026-04-24 11:18:28.510155 2026-04-24 11:18:28.510155 1626 488 opp-new 1 \N -808 Übersetzung für Termin mit Gesundheitsamt, welches zu uns in die Einrichtung kommt accompanying \N deutsche Üwtkltzmxfu mvoleitf rtd Utlxfritozlqdz xfr rtk Wtvgiftkof. Vtff döusoei qxei utkft leigf xd 77 Xik, rq rql Aofr iotk leigfdqs utodhyz vokr xfr Üwtkltzmxfu iotk qxei iosyktoei väkt 2026-04-17 13:09:47.410466 2026-04-24 13:41:26.966609 1602 1 opp-searching 1 456 -795 Begleitung zur Schulärtliche Untersuchung accompanying noTranslation Rot Yqdosot Lqrxstcq iqz toftf Ztkdof wtod Pxutfrutlxfritozlrotflz yük toft leixsäkmzsoeit Xfztklxeixfu. Rtk Yktovossout dxll fxk rql Utlhkäei väiktfr rtl Ztkdofl rgsdtzleitf. 2026-04-13 17:00:00 2026-04-27 16:04:39.893442 795 1 opp-searching 1 446 -654 Sprachmittlung Russisch bei Augenärztin accompanying noTranslation Lhkqeidozzsxfu wto toftd Qxutfqkmzztkdof 2026-02-03 12:00:00 2026-04-16 08:24:15.723194 654 6 opp-new 1 353 -259 Nachhilfe Grundschule / Oberschule regular Vok wkäxeiztf Xfztklzüzmxfu yük xfltkt Leiüstk. noTranslation 2025-02-18 11:00:00 2026-04-16 09:26:03.783405 259 81 opp-searching 2 \N -693 Wöchentliches Deutsch üben mit Geflüchteten regular Vok lxeitf Yktovossout, rot utkf od wtlztitfrtf Qfutwgz "Rtxzlei üwtf xfr Lfqeal" Dgfzqul cgf 70-76 Xik of xfltktk Xfztkaxfyz qd Ysxuiqytf Ztdhtsigy od Tkvqeiltftfwtktoei qxlitsytf döeiztf. Of sgeatktk Qzdglhiäkt üwtf tof wol rkto Yktovossout utdtoflqd doz ofztktllotkztf Wtvgiftkf rtk Xfztkaxfyz Rtxzlei. Rot Lhkqeifoctqxl rtk Ztosftidtk lofr mxd Ztos ltik xfztkleiotrsoei, lg rqll rot Wtktozleiqyz mxk Odhkgcolqzogf tkygkrtksoei olz. Rot Qfygkrtkxfutf xfr rtk Atffzfollzqfr rtk Ztosftidtk cqkootktf cgf Vgeit mx Vgeit. Tkvüfleiz lofr ygkzutleikozztft Rtxzleiatffzfollt, utkf qwtk qxei vtoztkt Lhkqeiatffzfollt (m.W. Xakqofolei grtk Kxllolei, qwtk qxei Qkqwolei, Htklolei, Zükaolei, Utgkuolei, g.q.). noTranslation 2026-02-24 16:00:00 2026-04-20 15:16:03.950133 693 16 opp-searching 3 \N -805 Begleitung zu verschiedenen Arztterminen (Frauenarzt, Zahnarzt, Mammographie, ...), Behörden (Jobcenter in TK, ...) regular \N \N \N 2026-04-16 11:52:52.593616 2026-04-17 12:21:02.237172 1597 1 opp-new 1 \N -801 Männercafé regular Yktovossout utlxeiz yük rql Däfftkeqyé: Yük xfltk vöeitfzsoeitl Däfftkeqyé lxeitf vok tfuquotkzt Däfftk, rot Qkqwolei lhkteitf xfr Sxlz iqwtf, rql Qfutwgz qazoc dozmxutlzqsztf. Rql Däfftkeqyé wotztz toftf utleiüzmztf Kqxd yük Qxlzqxlei, Utlhkäeit üwtk Qsszqu xfr Stwtf of Rtxzleisqfr lgvot rot Döusoeiatoz, ftxt Agfzqazt mx afühytf. Vqff: Ptrtf Dgfzqu, 71:85–74:55 Xik (Cgkwtktozxfu qw eq. 79:85 Xik döusoei) Vg: Utdtofleiqyzlkqxd UX Wkqwqfztk Lzkqßt 73, 75078 Wtksof. Qsl Yktovossoutk xfztklzüzmz rx wto rtk Gkuqfolqzogf, wtod Qfagddtf rtk Ztosftidtfrtf xfr wto rtk Utlzqszxfu rtk Zktyytf. Vtff rx Ofztktllt iqlz, dtsrt roei utkft wto xfl: 📩 wtff-vosdtklrgky@dzl-lgeoqsrtlouf.egd 📱 +26 701 32098008 Vok yktxtf xfl qxy rtoft Xfztklzüzmxfu! \N \N 2026-04-15 18:00:54.405028 2026-04-17 12:21:31.752664 1593 1 opp-new 3 \N -812 Sprachcafe A1 regular Rtxzleiatffzfollt dofr. Q3, Kxllolei-/ Xakqofoleiatffzfollt \N \N 2026-04-22 09:48:09.987592 2026-04-22 09:48:09.987592 1616 488 opp-new 1 \N -711 Unterstützung beim BENN Kiezcafé (mit Kinderbetreuung) regular Vok lxeitf yktovossout Itsytkofftf yük xfltk WTFF Aotmeqyé of Vosdtklrgky. Rql Aotmeqyé yofrtz ptrtf Yktozqu cgf 79:55 wol 70:55 Xik lzqzz. Tl olz tof gyytftk Zktyyhxfaz yük Fqeiwqkofftf. Rot Qxyuqwtf lofr: Xfztklzüzmxfu wto rtk Gkuqfolqzogf xfr Cgkwtktozxfu rtl Aotmeqyél, Wtuküßxfu rtk Uälzt, Iosyt wtod Qxy- xfr Qwwqx, Utlhkäeit doz Fqeiwqk*offtf. Mxläzmsoei lxeitf vok Yktovossout, rot väiktfr rtl Aotmeqyél rot Aofrtk wtzktxtf: Doz Aofrtkf lhotstf, Wqlztsf grtk astoft Qazocozäztf qfwotztf, Qxyloeiz väiktfr rtk Ctkqflzqszxfu. Wto xfltktf Qazocozäztf lofr yqlz oddtk Aofrtk qfvtltfr. Rtliqsw olz tof tkvtoztkztl Yüikxfulmtxufol tkygkrtksoei. Mtoz: Ptrtf Yktozqu, 79:55–70:55 Xik Gkz: Iqxl rtk Fqeiwqkleiqyyz (Lzkqßt qd Leigtstkhqka 80, 75079 Wtksof). Lhkqeiatffzfollt: Ukxfratffzfollt of Rtxzlei lofr iosyktoei, qwtk foeiz mvofutfr tkygkrtksoei. Voeizou lofr Gyytfitoz xfr Yktxrt qd Agfzqaz doz Dtfleitf. noTranslation 2026-03-02 17:00:00 2026-04-21 11:02:04.325337 711 250 opp-searching 3 \N -807 Begleitung zur Vaterschaftsanerkennung (Jugendamt) accompanying \N deutsche Lhkqeidozzsxfu yük Cqztkleiqyzlqftkatffxfu wtod Pxutfrqdz 2026-04-17 12:57:31.702252 2026-04-17 12:59:49.98846 1601 1 opp-searching 1 455 -802 Begleitung zur Schulärztiche Untersuchung accompanying \N deutsche Ztkdof wtod Pxutfrutlxfritozlrotflz yük toft leixsäkmzsoeit Xfztklxeixfu. 2026-04-16 07:40:12.864509 2026-04-22 08:09:49.140503 1594 1 opp-searching 1 452 -806 Sprachmittlung bei Arztbesuch accompanying \N deutsche Tl utiz xd toftf Ztkdof yük tof EZ wto TCOROQ Wtksof. Mtozqxyvqfr leiäzmxfulvtolt 7-7.9 Lzxfrtf 2026-04-17 09:03:12.784157 2026-04-17 14:29:59.141648 1600 1 opp-searching 1 454 -705 Nachhilfe in Deutsch für Geflüchtete regular Rot Yktovossoutf lgsstf rtf Pxutfrsoeitf, rot iotk of rtk Xfztkaxfyz stwtf Fqeiiosyt of rtk rtxzleitf Lhkqeit utwtf. Rql Foctqx rtk Pxutfrsoeitf wtyofrtz loei qxy Q7-Q3. noTranslation Qd Vgeitftfrt lofr twtfyqssl Wtzktxtk*offtf cgk Gkz. Vok iqwtf toftf ukgßtf Kqxd of rtd Fqeiiosyt qfutwgztf vtkrtf aqff mx rtftf rtk Mxuqfu rxkei rot Dozqkwtoztfrtf utväikstolztz vokr. 2026-03-02 10:00:00 2026-04-17 14:47:41.096662 705 479 opp-searching 2 \N -810 Begleitung zum Jobcenter Lichtenberg accompanying \N deutsche . Tk iqz rgkz tof Utlhkäei üwtk ltoft wtkxysoeit Mxaxfyz doz ltoftd Qkwtozlwtkqztk xfr lgss xfwtrofuz toftf Rgsdtzleitk (toft Rgsdtzleitkof) dozwkofutf. 2026-04-21 14:43:52.871669 2026-04-22 14:31:41.895026 1612 488 opp-searching 1 457 -809 Tandem: Alltägliche Begleitung regular Vok lxeitf Yktovossout yük tof Zqfrtd (Lhkqeit, Xfztklzüzmxfu wto qsszäusoeitf Ykqutf xlv.) \N \N 2026-04-17 14:32:17.407308 2026-04-20 08:55:35.640574 1603 1 opp-searching 1 \N -803 Freiwillige gesucht – Druzya Café im Gemeinschaftsunterkunft Fritz-Wildung-Straße 21 regular Yük rot Votrtkwtstwxfu xfltktl Rkxmnq Eqyél od Utdtofleiqyzlxfztkaxfyz Ykozm-Vosrxfu-Lzkqßt 37 lxeitf vok tfuquotkzt Yktovossout! Rql Eqyé koeiztz loei cgk qsstd qf Wtvgiftk*offtf rtk Xfztkaxfyz, cotst rqcgf äsztkt xakqofoleit Dtfleitf. Tl olz tof gyytftk xfr utdüzsoeitk Zktyyhxfaz yük Qxlzqxlei, Wtutufxfu xfr utdtoflqdtl Wtolqddtfltof. ☕ Vqff? Rotflzqul grtk dozzvgeil, ptvtosl cgf 72:55 wol 71:55 Xik 📍 Vg? Utdtofleiqyzlxfztkaxfyz Ykozm-Vosrxfu-Lzkqßt 37 Vok lxeitf toft Htklgf, rot rql Eqyé ktutsdäßou wtustoztz xfr gkuqfolotkz. Rqwto utiz tl cgk qsstd xd: Utlzqszxfu toftl gyytftf Eqyé-Fqeidozzqul Yökrtkxfu cgf Wtutufxfu xfr Qxlzqxlei Xfztklzüzmxfu tofyqeitk Rtxzlei-Stkfdgdtfzt od Qsszqu 💬 Voeizou olz xfl, rqll rot yktovossout Htklgf Rtxzlei xfr Xakqofolei lhkoeiz, xd toft uxzt Ctklzäfrouxfu doz rtf Wtvgiftk*offtf mx tkdöusoeitf. Rql Rkxmnq Eqyé wotztz toftf voeizoutf Kqxd yük Utdtofleiqyz, Gkotfzotkxfu xfr Ctkzkqxtf od Qsszqu rtk Xfztkaxfyz. 👉 Vtff rx Ofztktllt iqlz grtk ptdqfrtf atfflz, dtsrt roei utkft wto xfl! 📩 wtff-vosdtklrgky@dzl-lgeoqsrtlouf.egd 📱 +26 701 32098008 Vok yktxtf xfl ltik qxy Xfztklzüzmxfu! \N \N 2026-04-16 08:33:20.60988 2026-04-20 12:40:57.148484 1595 1 opp-new 3 \N -817 Übersetzung accompanying \N deutsche Tk lhkoeiz qxei Qltkwtorleiqfolei 2026-04-23 14:09:03.652884 2026-04-24 14:46:30.306702 1622 488 opp-searching 1 462 -814 Begleitung zur Bank accompanying \N deutsche Wqfaagfzgtköyyfxfu, Ztkdfrqzxd: 36.52.3531 (Rql Ygkdxsqk iqz Ltfnq qxlutyüssz) 2026-04-22 13:22:00.784867 2026-04-22 13:24:21.696842 1618 488 opp-searching 1 460 -804 Begleitung zum Arzt accompanying \N deutsche rgsdtzleitf qxy Yqklo/Rqko 2026-04-16 10:56:25.122243 2026-04-22 14:02:04.007197 1596 1 opp-searching 1 453 -813 Begleitung zum Arzt accompanying \N englishOk kgxzoftdäßout Agfzkgsst of rtk Aqkrogsguot 2026-04-22 11:13:25.972827 2026-04-23 10:06:48.872172 1617 488 opp-searching 1 459 -86 Doctor’s Appointment: Kid accompanying noTranslation Qkoqf Lzgoqf iqzzt rtf ygsutfrtf Ztkdof:\fRotflzqu, 35. Qxuxlz 3532 xd 56:55 Xik\fGkz: Iqxzasofoa, Eiqkozé Eqdhxl Dozzt, Sxoltflzk. 3-9, 75770 Wtksof\fQkoqf ol q lgf gy Ykqx Lzgpqf, zitn lhtqa Kxlloqf qfr Kgdqfoqf 1970-01-01 00:00:00 2026-04-23 09:48:29.886432 86 8 opp-searching 1 \N -811 dummy accompanying \N englishOk fg ofyg 2026-04-22 08:41:24.320116 2026-04-23 14:17:35.59632 1615 488 opp-new 1 458 -819 Übersetzung accompanying \N deutsche Itkk Lqkulnqf lhkoeiz qxei Qkdtfolei. 2026-04-24 07:46:05.923537 2026-04-24 14:48:22.4293 1624 488 opp-searching 1 463 -816 Tischtennisspielen mit Kindern und Jugendlichen regular Kxllolei-/ Xakqofoleiatffzfollt \N \N 2026-04-23 12:39:33.404008 2026-04-24 14:53:32.746251 1621 488 opp-searching 1 \N -788 Unterstützung für Sommerfest events Yük xfltk Lgddtkytlz wtfözoutf vok Iosyt wto Qxy- xfr Qwwqx, Dxloawtzktxxfu, Aofrtkqazocozäztf vot Leidofatf, Ltoytfwsqltf, lgvot Tlltfqxluqwt. Grtk döeiztlz rx tzvql qfwotztf? Vok lofr yük ptrt Iosyt ltik rqfawqk. noTranslation 2026-04-07 17:00:00 2026-04-24 14:54:46.838294 788 4 opp-searching 5 439 -822 OP-Vorbereitung accompanying \N deutsche atoft 2026-04-27 14:46:11.72686 2026-04-27 15:00:37.846485 1628 488 opp-searching 1 464 -823 Übersetzung und ggf. Begleitung zu Vorgespräch OP accompanying \N deutsche Axfrt wkqxeiz Üwtkltzmxfu wto Cgkutlhkäei yük GH, qd Wtlztf soct (qflzqzz htk Ztstygf) 2026-04-27 15:22:05.541686 2026-04-27 15:49:31.343301 1629 488 opp-searching 1 465 -\. - - --- --- Data for Name: opportunity_volunteer; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.opportunity_volunteer (id, status, opportunity_id, volunteer_id, created_at, updated_at) FROM stdin; -1 opp-pending 14 1 2026-04-14 16:11:18.405472 2026-04-14 16:11:18.405472 -2 opp-pending 163 1 2026-04-14 16:11:18.411444 2026-04-14 16:11:18.411444 -3 opp-matched 223 1 2026-04-14 16:11:18.416552 2026-04-14 16:11:18.416552 -4 opp-pending 286 1 2026-04-14 16:11:18.421182 2026-04-14 16:11:18.421182 -5 opp-pending 287 1 2026-04-14 16:11:18.425718 2026-04-14 16:11:18.425718 -6 opp-pending 300 1 2026-04-14 16:11:18.430754 2026-04-14 16:11:18.430754 -7 opp-pending 304 1 2026-04-14 16:11:18.436597 2026-04-14 16:11:18.436597 -8 opp-pending 346 1 2026-04-14 16:11:18.441162 2026-04-14 16:11:18.441162 -9 opp-pending 361 1 2026-04-14 16:11:18.445612 2026-04-14 16:11:18.445612 -10 opp-pending 376 1 2026-04-14 16:11:18.450017 2026-04-14 16:11:18.450017 -11 opp-pending 386 1 2026-04-14 16:11:18.454484 2026-04-14 16:11:18.454484 -12 opp-pending 464 1 2026-04-14 16:11:18.458518 2026-04-14 16:11:18.458518 -13 opp-pending 502 1 2026-04-14 16:11:18.462518 2026-04-14 16:11:18.462518 -14 opp-pending 513 1 2026-04-14 16:11:18.466622 2026-04-14 16:11:18.466622 -15 opp-pending 563 1 2026-04-14 16:11:18.470492 2026-04-14 16:11:18.470492 -16 opp-pending 581 1 2026-04-14 16:11:18.474363 2026-04-14 16:11:18.474363 -17 opp-pending 642 1 2026-04-14 16:11:18.478467 2026-04-14 16:11:18.478467 -18 opp-pending 660 1 2026-04-14 16:11:18.48271 2026-04-14 16:11:18.48271 -19 opp-pending 679 1 2026-04-14 16:11:18.487564 2026-04-14 16:11:18.487564 -20 opp-pending 738 1 2026-04-14 16:11:18.491806 2026-04-14 16:11:18.491806 -21 opp-pending 478 2 2026-04-14 16:11:18.544718 2026-04-14 16:11:18.544718 -22 opp-pending 3 5 2026-04-14 16:11:18.712919 2026-04-14 16:11:18.712919 -23 opp-pending 56 10 2026-04-14 16:11:19.214696 2026-04-14 16:11:19.214696 -24 opp-active 62 10 2026-04-14 16:11:19.219299 2026-04-14 16:11:19.219299 -25 opp-pending 87 10 2026-04-14 16:11:19.223816 2026-04-14 16:11:19.223816 -26 opp-pending 150 10 2026-04-14 16:11:19.22805 2026-04-14 16:11:19.22805 -27 opp-pending 154 10 2026-04-14 16:11:19.232117 2026-04-14 16:11:19.232117 -28 opp-matched 164 10 2026-04-14 16:11:19.236269 2026-04-14 16:11:19.236269 -29 opp-matched 166 10 2026-04-14 16:11:19.240137 2026-04-14 16:11:19.240137 -30 opp-pending 169 10 2026-04-14 16:11:19.244462 2026-04-14 16:11:19.244462 -31 opp-pending 180 10 2026-04-14 16:11:19.249993 2026-04-14 16:11:19.249993 -32 opp-pending 233 10 2026-04-14 16:11:19.255077 2026-04-14 16:11:19.255077 -33 opp-pending 255 10 2026-04-14 16:11:19.25929 2026-04-14 16:11:19.25929 -34 opp-pending 286 10 2026-04-14 16:11:19.263534 2026-04-14 16:11:19.263534 -35 opp-pending 287 10 2026-04-14 16:11:19.267981 2026-04-14 16:11:19.267981 -36 opp-pending 300 10 2026-04-14 16:11:19.272498 2026-04-14 16:11:19.272498 -37 opp-pending 687 13 2026-04-14 16:11:19.544805 2026-04-14 16:11:19.544805 -38 opp-pending 50 14 2026-04-14 16:11:19.626329 2026-04-14 16:11:19.626329 -39 opp-matched 21 21 2026-04-14 16:11:20.190982 2026-04-14 16:11:20.190982 -40 opp-pending 165 21 2026-04-14 16:11:20.195143 2026-04-14 16:11:20.195143 -41 opp-pending 185 21 2026-04-14 16:11:20.199484 2026-04-14 16:11:20.199484 -42 opp-pending 388 24 2026-04-14 16:11:20.455809 2026-04-14 16:11:20.455809 -43 opp-matched 360 26 2026-04-14 16:11:20.585744 2026-04-14 16:11:20.585744 -44 opp-pending 50 27 2026-04-14 16:11:20.679349 2026-04-14 16:11:20.679349 -45 opp-pending 265 30 2026-04-14 16:11:20.909811 2026-04-14 16:11:20.909811 -46 opp-pending 167 30 2026-04-14 16:11:20.913994 2026-04-14 16:11:20.913994 -47 opp-pending 176 30 2026-04-14 16:11:20.9182 2026-04-14 16:11:20.9182 -48 opp-pending 284 30 2026-04-14 16:11:20.922686 2026-04-14 16:11:20.922686 -49 opp-pending 290 30 2026-04-14 16:11:20.926607 2026-04-14 16:11:20.926607 -50 opp-pending 291 30 2026-04-14 16:11:20.930683 2026-04-14 16:11:20.930683 -51 opp-active 61 32 2026-04-14 16:11:21.212607 2026-04-14 16:11:21.212607 -52 opp-pending 78 32 2026-04-14 16:11:21.216817 2026-04-14 16:11:21.216817 -53 opp-pending 79 32 2026-04-14 16:11:21.220811 2026-04-14 16:11:21.220811 -54 opp-pending 280 32 2026-04-14 16:11:21.225376 2026-04-14 16:11:21.225376 -55 opp-pending 387 32 2026-04-14 16:11:21.229778 2026-04-14 16:11:21.229778 -56 opp-pending 495 32 2026-04-14 16:11:21.23485 2026-04-14 16:11:21.23485 -57 opp-pending 526 32 2026-04-14 16:11:21.238894 2026-04-14 16:11:21.238894 -58 opp-pending 569 32 2026-04-14 16:11:21.242976 2026-04-14 16:11:21.242976 -59 opp-pending 684 32 2026-04-14 16:11:21.246955 2026-04-14 16:11:21.246955 -60 opp-pending 785 32 2026-04-14 16:11:21.251106 2026-04-14 16:11:21.251106 -61 opp-matched 269 34 2026-04-14 16:11:21.404834 2026-04-14 16:11:21.404834 -62 opp-pending 165 34 2026-04-14 16:11:21.408824 2026-04-14 16:11:21.408824 -63 opp-pending 185 34 2026-04-14 16:11:21.413003 2026-04-14 16:11:21.413003 -64 opp-pending 245 34 2026-04-14 16:11:21.418918 2026-04-14 16:11:21.418918 -65 opp-pending 436 34 2026-04-14 16:11:21.423089 2026-04-14 16:11:21.423089 -66 opp-matched 520 34 2026-04-14 16:11:21.427247 2026-04-14 16:11:21.427247 -67 opp-pending 536 34 2026-04-14 16:11:21.431147 2026-04-14 16:11:21.431147 -68 opp-pending 687 34 2026-04-14 16:11:21.435096 2026-04-14 16:11:21.435096 -69 opp-pending 12 35 2026-04-14 16:11:21.505569 2026-04-14 16:11:21.505569 -70 opp-pending 407 36 2026-04-14 16:11:21.574188 2026-04-14 16:11:21.574188 -71 opp-pending 78 37 2026-04-14 16:11:21.638667 2026-04-14 16:11:21.638667 -72 opp-pending 149 37 2026-04-14 16:11:21.642963 2026-04-14 16:11:21.642963 -73 opp-pending 203 37 2026-04-14 16:11:21.647411 2026-04-14 16:11:21.647411 -74 opp-pending 285 37 2026-04-14 16:11:21.651802 2026-04-14 16:11:21.651802 -75 opp-pending 514 37 2026-04-14 16:11:21.655763 2026-04-14 16:11:21.655763 -76 opp-pending 12 38 2026-04-14 16:11:21.737256 2026-04-14 16:11:21.737256 -77 opp-pending 365 38 2026-04-14 16:11:21.741306 2026-04-14 16:11:21.741306 -78 opp-pending 375 38 2026-04-14 16:11:21.745398 2026-04-14 16:11:21.745398 -79 opp-pending 50 40 2026-04-14 16:11:21.87042 2026-04-14 16:11:21.87042 -80 opp-matched 32 41 2026-04-14 16:11:21.95974 2026-04-14 16:11:21.95974 -81 opp-pending 383 44 2026-04-14 16:11:22.208832 2026-04-14 16:11:22.208832 -82 opp-pending 25 45 2026-04-14 16:11:22.352115 2026-04-14 16:11:22.352115 -83 opp-pending 388 45 2026-04-14 16:11:22.356246 2026-04-14 16:11:22.356246 -84 opp-pending 426 45 2026-04-14 16:11:22.360283 2026-04-14 16:11:22.360283 -85 opp-pending 434 45 2026-04-14 16:11:22.364479 2026-04-14 16:11:22.364479 -86 opp-pending 111 48 2026-04-14 16:11:22.725551 2026-04-14 16:11:22.725551 -87 opp-pending 112 48 2026-04-14 16:11:22.729481 2026-04-14 16:11:22.729481 -88 opp-pending 111 50 2026-04-14 16:11:22.891321 2026-04-14 16:11:22.891321 -89 opp-pending 112 50 2026-04-14 16:11:22.895285 2026-04-14 16:11:22.895285 -90 opp-pending 82 56 2026-04-14 16:11:23.453255 2026-04-14 16:11:23.453255 -91 opp-active 25 59 2026-04-14 16:11:23.718629 2026-04-14 16:11:23.718629 -92 opp-pending 63 65 2026-04-14 16:11:24.116703 2026-04-14 16:11:24.116703 -93 opp-pending 274 65 2026-04-14 16:11:24.120906 2026-04-14 16:11:24.120906 -94 opp-pending 177 65 2026-04-14 16:11:24.125432 2026-04-14 16:11:24.125432 -95 opp-pending 178 65 2026-04-14 16:11:24.129578 2026-04-14 16:11:24.129578 -96 opp-pending 190 65 2026-04-14 16:11:24.133933 2026-04-14 16:11:24.133933 -97 opp-pending 194 65 2026-04-14 16:11:24.138281 2026-04-14 16:11:24.138281 -98 opp-pending 195 65 2026-04-14 16:11:24.142272 2026-04-14 16:11:24.142272 -99 opp-pending 196 65 2026-04-14 16:11:24.146637 2026-04-14 16:11:24.146637 -100 opp-pending 255 65 2026-04-14 16:11:24.151334 2026-04-14 16:11:24.151334 -101 opp-pending 408 65 2026-04-14 16:11:24.155599 2026-04-14 16:11:24.155599 -102 opp-pending 449 65 2026-04-14 16:11:24.160054 2026-04-14 16:11:24.160054 -103 opp-pending 497 65 2026-04-14 16:11:24.164467 2026-04-14 16:11:24.164467 -104 opp-pending 611 65 2026-04-14 16:11:24.168604 2026-04-14 16:11:24.168604 -105 opp-pending 85 67 2026-04-14 16:11:24.454352 2026-04-14 16:11:24.454352 -106 opp-pending 300 67 2026-04-14 16:11:24.458338 2026-04-14 16:11:24.458338 -107 opp-pending 350 67 2026-04-14 16:11:24.462258 2026-04-14 16:11:24.462258 -108 opp-pending 82 68 2026-04-14 16:11:24.63969 2026-04-14 16:11:24.63969 -109 opp-pending 151 68 2026-04-14 16:11:24.643552 2026-04-14 16:11:24.643552 -110 opp-pending 283 68 2026-04-14 16:11:24.647537 2026-04-14 16:11:24.647537 -111 opp-pending 238 68 2026-04-14 16:11:24.651682 2026-04-14 16:11:24.651682 -112 opp-pending 323 68 2026-04-14 16:11:24.655873 2026-04-14 16:11:24.655873 -113 opp-pending 540 68 2026-04-14 16:11:24.660008 2026-04-14 16:11:24.660008 -114 opp-pending 249 69 2026-04-14 16:11:24.749425 2026-04-14 16:11:24.749425 -115 opp-pending 255 69 2026-04-14 16:11:24.753516 2026-04-14 16:11:24.753516 -116 opp-pending 300 69 2026-04-14 16:11:24.757974 2026-04-14 16:11:24.757974 -117 opp-pending 361 69 2026-04-14 16:11:24.762064 2026-04-14 16:11:24.762064 -118 opp-pending 376 69 2026-04-14 16:11:24.76628 2026-04-14 16:11:24.76628 -119 opp-pending 449 69 2026-04-14 16:11:24.770368 2026-04-14 16:11:24.770368 -120 opp-pending 502 69 2026-04-14 16:11:24.774382 2026-04-14 16:11:24.774382 -121 opp-pending 646 69 2026-04-14 16:11:24.778343 2026-04-14 16:11:24.778343 -122 opp-pending 715 69 2026-04-14 16:11:24.782144 2026-04-14 16:11:24.782144 -123 opp-pending 717 69 2026-04-14 16:11:24.786077 2026-04-14 16:11:24.786077 -124 opp-pending 46 70 2026-04-14 16:11:24.848984 2026-04-14 16:11:24.848984 -125 opp-pending 272 70 2026-04-14 16:11:24.853222 2026-04-14 16:11:24.853222 -126 opp-pending 234 70 2026-04-14 16:11:24.857264 2026-04-14 16:11:24.857264 -127 opp-pending 420 70 2026-04-14 16:11:24.861261 2026-04-14 16:11:24.861261 -128 opp-pending 423 70 2026-04-14 16:11:24.865299 2026-04-14 16:11:24.865299 -129 opp-pending 427 70 2026-04-14 16:11:24.869169 2026-04-14 16:11:24.869169 -130 opp-active 487 70 2026-04-14 16:11:24.873031 2026-04-14 16:11:24.873031 -131 opp-active 496 70 2026-04-14 16:11:24.877312 2026-04-14 16:11:24.877312 -132 opp-pending 690 70 2026-04-14 16:11:24.88128 2026-04-14 16:11:24.88128 -133 opp-pending 249 71 2026-04-14 16:11:24.959849 2026-04-14 16:11:24.959849 -134 opp-pending 674 71 2026-04-14 16:11:24.963759 2026-04-14 16:11:24.963759 -135 opp-pending 78 73 2026-04-14 16:11:25.086434 2026-04-14 16:11:25.086434 -136 opp-pending 149 73 2026-04-14 16:11:25.090753 2026-04-14 16:11:25.090753 -137 opp-pending 174 73 2026-04-14 16:11:25.095021 2026-04-14 16:11:25.095021 -138 opp-pending 280 73 2026-04-14 16:11:25.099845 2026-04-14 16:11:25.099845 -139 opp-pending 285 73 2026-04-14 16:11:25.104021 2026-04-14 16:11:25.104021 -140 opp-pending 303 73 2026-04-14 16:11:25.108225 2026-04-14 16:11:25.108225 -141 opp-pending 64 74 2026-04-14 16:11:25.18459 2026-04-14 16:11:25.18459 -142 opp-pending 176 74 2026-04-14 16:11:25.188829 2026-04-14 16:11:25.188829 -143 opp-pending 290 74 2026-04-14 16:11:25.192954 2026-04-14 16:11:25.192954 -144 opp-pending 291 74 2026-04-14 16:11:25.196962 2026-04-14 16:11:25.196962 -145 opp-pending 169 75 2026-04-14 16:11:25.30231 2026-04-14 16:11:25.30231 -146 opp-pending 612 75 2026-04-14 16:11:25.306321 2026-04-14 16:11:25.306321 -147 opp-pending 4 76 2026-04-14 16:11:25.489901 2026-04-14 16:11:25.489901 -148 opp-pending 54 80 2026-04-14 16:11:25.850575 2026-04-14 16:11:25.850575 -149 opp-pending 50 81 2026-04-14 16:11:25.914301 2026-04-14 16:11:25.914301 -150 opp-pending 50 82 2026-04-14 16:11:26.008453 2026-04-14 16:11:26.008453 -151 opp-pending 73 82 2026-04-14 16:11:26.01254 2026-04-14 16:11:26.01254 -152 opp-active 687 82 2026-04-14 16:11:26.016755 2026-04-14 16:11:26.016755 -153 opp-pending 76 83 2026-04-14 16:11:26.107835 2026-04-14 16:11:26.107835 -154 opp-pending 85 83 2026-04-14 16:11:26.111998 2026-04-14 16:11:26.111998 -155 opp-pending 87 83 2026-04-14 16:11:26.116478 2026-04-14 16:11:26.116478 -156 opp-pending 100 83 2026-04-14 16:11:26.120663 2026-04-14 16:11:26.120663 -157 opp-pending 112 83 2026-04-14 16:11:26.124958 2026-04-14 16:11:26.124958 -158 opp-pending 177 83 2026-04-14 16:11:26.129156 2026-04-14 16:11:26.129156 -159 opp-pending 178 83 2026-04-14 16:11:26.133007 2026-04-14 16:11:26.133007 -160 opp-pending 190 83 2026-04-14 16:11:26.136866 2026-04-14 16:11:26.136866 -161 opp-pending 194 83 2026-04-14 16:11:26.140931 2026-04-14 16:11:26.140931 -162 opp-pending 195 83 2026-04-14 16:11:26.145273 2026-04-14 16:11:26.145273 -163 opp-pending 196 83 2026-04-14 16:11:26.149279 2026-04-14 16:11:26.149279 -164 opp-pending 222 83 2026-04-14 16:11:26.153251 2026-04-14 16:11:26.153251 -165 opp-pending 300 83 2026-04-14 16:11:26.157149 2026-04-14 16:11:26.157149 -166 opp-pending 302 83 2026-04-14 16:11:26.161238 2026-04-14 16:11:26.161238 -167 opp-pending 304 83 2026-04-14 16:11:26.165289 2026-04-14 16:11:26.165289 -168 opp-pending 350 83 2026-04-14 16:11:26.169271 2026-04-14 16:11:26.169271 -169 opp-pending 422 83 2026-04-14 16:11:26.173242 2026-04-14 16:11:26.173242 -170 opp-pending 503 85 2026-04-14 16:11:26.377166 2026-04-14 16:11:26.377166 -171 opp-pending 612 85 2026-04-14 16:11:26.381168 2026-04-14 16:11:26.381168 -172 opp-pending 642 85 2026-04-14 16:11:26.385106 2026-04-14 16:11:26.385106 -173 opp-pending 674 85 2026-04-14 16:11:26.388952 2026-04-14 16:11:26.388952 -174 opp-pending 679 85 2026-04-14 16:11:26.392946 2026-04-14 16:11:26.392946 -175 opp-pending 710 85 2026-04-14 16:11:26.396987 2026-04-14 16:11:26.396987 -176 opp-pending 744 85 2026-04-14 16:11:26.401182 2026-04-14 16:11:26.401182 -177 opp-pending 770 85 2026-04-14 16:11:26.405044 2026-04-14 16:11:26.405044 -178 opp-pending 265 89 2026-04-14 16:11:26.792257 2026-04-14 16:11:26.792257 -179 opp-pending 274 89 2026-04-14 16:11:26.796369 2026-04-14 16:11:26.796369 -180 opp-pending 281 89 2026-04-14 16:11:26.800404 2026-04-14 16:11:26.800404 -181 opp-pending 25 91 2026-04-14 16:11:26.908568 2026-04-14 16:11:26.908568 -182 opp-pending 50 96 2026-04-14 16:11:27.236477 2026-04-14 16:11:27.236477 -183 opp-pending 360 96 2026-04-14 16:11:27.240822 2026-04-14 16:11:27.240822 -184 opp-pending 481 96 2026-04-14 16:11:27.246231 2026-04-14 16:11:27.246231 -185 opp-pending 595 97 2026-04-14 16:11:27.331284 2026-04-14 16:11:27.331284 -186 opp-pending 492 102 2026-04-14 16:11:27.912931 2026-04-14 16:11:27.912931 -187 opp-pending 50 105 2026-04-14 16:11:28.042089 2026-04-14 16:11:28.042089 -188 opp-pending 55 107 2026-04-14 16:11:28.226961 2026-04-14 16:11:28.226961 -189 opp-pending 4 109 2026-04-14 16:11:28.478059 2026-04-14 16:11:28.478059 -190 opp-pending 151 112 2026-04-14 16:11:28.72726 2026-04-14 16:11:28.72726 -191 opp-pending 208 112 2026-04-14 16:11:28.732313 2026-04-14 16:11:28.732313 -192 opp-pending 238 112 2026-04-14 16:11:28.736322 2026-04-14 16:11:28.736322 -193 opp-pending 78 113 2026-04-14 16:11:28.842262 2026-04-14 16:11:28.842262 -194 opp-pending 174 114 2026-04-14 16:11:28.911891 2026-04-14 16:11:28.911891 -195 opp-pending 12 115 2026-04-14 16:11:29.005114 2026-04-14 16:11:29.005114 -196 opp-pending 57 116 2026-04-14 16:11:29.063654 2026-04-14 16:11:29.063654 -197 opp-pending 126 116 2026-04-14 16:11:29.067846 2026-04-14 16:11:29.067846 -198 opp-pending 152 116 2026-04-14 16:11:29.073876 2026-04-14 16:11:29.073876 -199 opp-pending 185 116 2026-04-14 16:11:29.078217 2026-04-14 16:11:29.078217 -200 opp-pending 211 116 2026-04-14 16:11:29.08256 2026-04-14 16:11:29.08256 -201 opp-pending 240 116 2026-04-14 16:11:29.087526 2026-04-14 16:11:29.087526 -202 opp-pending 355 116 2026-04-14 16:11:29.092224 2026-04-14 16:11:29.092224 -203 opp-pending 357 116 2026-04-14 16:11:29.097291 2026-04-14 16:11:29.097291 -204 opp-pending 274 117 2026-04-14 16:11:29.182946 2026-04-14 16:11:29.182946 -205 opp-pending 249 117 2026-04-14 16:11:29.187897 2026-04-14 16:11:29.187897 -206 opp-pending 300 117 2026-04-14 16:11:29.192664 2026-04-14 16:11:29.192664 -207 opp-pending 311 117 2026-04-14 16:11:29.197124 2026-04-14 16:11:29.197124 -208 opp-pending 462 117 2026-04-14 16:11:29.201893 2026-04-14 16:11:29.201893 -209 opp-pending 611 117 2026-04-14 16:11:29.206881 2026-04-14 16:11:29.206881 -210 opp-pending 76 118 2026-04-14 16:11:29.295065 2026-04-14 16:11:29.295065 -211 opp-pending 628 118 2026-04-14 16:11:29.299881 2026-04-14 16:11:29.299881 -212 opp-pending 687 118 2026-04-14 16:11:29.304477 2026-04-14 16:11:29.304477 -213 opp-pending 12 119 2026-04-14 16:11:29.38737 2026-04-14 16:11:29.38737 -214 opp-pending 67 121 2026-04-14 16:11:29.524773 2026-04-14 16:11:29.524773 -215 opp-pending 174 122 2026-04-14 16:11:29.574223 2026-04-14 16:11:29.574223 -216 opp-pending 280 122 2026-04-14 16:11:29.578265 2026-04-14 16:11:29.578265 -217 opp-pending 288 122 2026-04-14 16:11:29.582119 2026-04-14 16:11:29.582119 -218 opp-pending 306 122 2026-04-14 16:11:29.586236 2026-04-14 16:11:29.586236 -219 opp-pending 308 122 2026-04-14 16:11:29.590036 2026-04-14 16:11:29.590036 -220 opp-pending 343 122 2026-04-14 16:11:29.593783 2026-04-14 16:11:29.593783 -221 opp-pending 351 122 2026-04-14 16:11:29.598165 2026-04-14 16:11:29.598165 -222 opp-pending 80 126 2026-04-14 16:11:29.871859 2026-04-14 16:11:29.871859 -223 opp-pending 153 126 2026-04-14 16:11:29.87595 2026-04-14 16:11:29.87595 -224 opp-pending 155 126 2026-04-14 16:11:29.880549 2026-04-14 16:11:29.880549 -225 opp-pending 157 126 2026-04-14 16:11:29.884913 2026-04-14 16:11:29.884913 -226 opp-pending 158 126 2026-04-14 16:11:29.889081 2026-04-14 16:11:29.889081 -227 opp-pending 160 126 2026-04-14 16:11:29.893238 2026-04-14 16:11:29.893238 -228 opp-pending 164 126 2026-04-14 16:11:29.897447 2026-04-14 16:11:29.897447 -229 opp-pending 169 126 2026-04-14 16:11:29.901706 2026-04-14 16:11:29.901706 -230 opp-pending 177 126 2026-04-14 16:11:29.905956 2026-04-14 16:11:29.905956 -231 opp-pending 178 126 2026-04-14 16:11:29.910223 2026-04-14 16:11:29.910223 -232 opp-pending 190 126 2026-04-14 16:11:29.914335 2026-04-14 16:11:29.914335 -233 opp-pending 194 126 2026-04-14 16:11:29.918439 2026-04-14 16:11:29.918439 -234 opp-pending 195 126 2026-04-14 16:11:29.922479 2026-04-14 16:11:29.922479 -235 opp-pending 196 126 2026-04-14 16:11:29.926481 2026-04-14 16:11:29.926481 -236 opp-pending 207 126 2026-04-14 16:11:29.930472 2026-04-14 16:11:29.930472 -237 opp-pending 300 126 2026-04-14 16:11:29.934453 2026-04-14 16:11:29.934453 -238 opp-pending 304 126 2026-04-14 16:11:29.938443 2026-04-14 16:11:29.938443 -239 opp-pending 402 126 2026-04-14 16:11:29.942427 2026-04-14 16:11:29.942427 -240 opp-pending 524 126 2026-04-14 16:11:29.946504 2026-04-14 16:11:29.946504 -241 opp-pending 649 126 2026-04-14 16:11:29.950623 2026-04-14 16:11:29.950623 -242 opp-pending 765 126 2026-04-14 16:11:29.954673 2026-04-14 16:11:29.954673 -243 opp-pending 274 127 2026-04-14 16:11:30.04493 2026-04-14 16:11:30.04493 -244 opp-pending 237 127 2026-04-14 16:11:30.049128 2026-04-14 16:11:30.049128 -245 opp-pending 300 127 2026-04-14 16:11:30.053168 2026-04-14 16:11:30.053168 -246 opp-pending 309 127 2026-04-14 16:11:30.057533 2026-04-14 16:11:30.057533 -247 opp-pending 312 127 2026-04-14 16:11:30.061651 2026-04-14 16:11:30.061651 -248 opp-pending 376 127 2026-04-14 16:11:30.065981 2026-04-14 16:11:30.065981 -249 opp-pending 422 127 2026-04-14 16:11:30.072082 2026-04-14 16:11:30.072082 -250 opp-pending 449 127 2026-04-14 16:11:30.076161 2026-04-14 16:11:30.076161 -251 opp-active 450 127 2026-04-14 16:11:30.080275 2026-04-14 16:11:30.080275 -252 opp-pending 494 127 2026-04-14 16:11:30.084691 2026-04-14 16:11:30.084691 -253 opp-pending 551 127 2026-04-14 16:11:30.089389 2026-04-14 16:11:30.089389 -254 opp-pending 554 127 2026-04-14 16:11:30.094122 2026-04-14 16:11:30.094122 -255 opp-pending 597 127 2026-04-14 16:11:30.098544 2026-04-14 16:11:30.098544 -256 opp-pending 675 127 2026-04-14 16:11:30.102928 2026-04-14 16:11:30.102928 -257 opp-pending 710 127 2026-04-14 16:11:30.107835 2026-04-14 16:11:30.107835 -258 opp-pending 737 127 2026-04-14 16:11:30.112303 2026-04-14 16:11:30.112303 -259 opp-pending 744 127 2026-04-14 16:11:30.116316 2026-04-14 16:11:30.116316 -260 opp-active 72 128 2026-04-14 16:11:30.171993 2026-04-14 16:11:30.171993 -261 opp-pending 300 128 2026-04-14 16:11:30.176295 2026-04-14 16:11:30.176295 -262 opp-pending 85 130 2026-04-14 16:11:30.316496 2026-04-14 16:11:30.316496 -263 opp-pending 153 130 2026-04-14 16:11:30.32076 2026-04-14 16:11:30.32076 -264 opp-pending 155 130 2026-04-14 16:11:30.324817 2026-04-14 16:11:30.324817 -265 opp-pending 157 130 2026-04-14 16:11:30.328774 2026-04-14 16:11:30.328774 -266 opp-pending 158 130 2026-04-14 16:11:30.332717 2026-04-14 16:11:30.332717 -267 opp-pending 160 130 2026-04-14 16:11:30.336695 2026-04-14 16:11:30.336695 -268 opp-pending 177 130 2026-04-14 16:11:30.340759 2026-04-14 16:11:30.340759 -269 opp-pending 178 130 2026-04-14 16:11:30.344711 2026-04-14 16:11:30.344711 -270 opp-pending 190 130 2026-04-14 16:11:30.348743 2026-04-14 16:11:30.348743 -271 opp-pending 194 130 2026-04-14 16:11:30.352863 2026-04-14 16:11:30.352863 -272 opp-pending 195 130 2026-04-14 16:11:30.356804 2026-04-14 16:11:30.356804 -273 opp-pending 196 130 2026-04-14 16:11:30.360889 2026-04-14 16:11:30.360889 -274 opp-pending 233 130 2026-04-14 16:11:30.365182 2026-04-14 16:11:30.365182 -275 opp-pending 300 130 2026-04-14 16:11:30.369216 2026-04-14 16:11:30.369216 -276 opp-pending 302 130 2026-04-14 16:11:30.373041 2026-04-14 16:11:30.373041 -277 opp-pending 304 130 2026-04-14 16:11:30.376807 2026-04-14 16:11:30.376807 -278 opp-pending 305 130 2026-04-14 16:11:30.382216 2026-04-14 16:11:30.382216 -279 opp-pending 346 130 2026-04-14 16:11:30.387202 2026-04-14 16:11:30.387202 -280 opp-pending 361 130 2026-04-14 16:11:30.391309 2026-04-14 16:11:30.391309 -281 opp-pending 402 130 2026-04-14 16:11:30.395167 2026-04-14 16:11:30.395167 -282 opp-pending 646 130 2026-04-14 16:11:30.398883 2026-04-14 16:11:30.398883 -283 opp-pending 752 130 2026-04-14 16:11:30.402966 2026-04-14 16:11:30.402966 -284 opp-pending 71 131 2026-04-14 16:11:30.469687 2026-04-14 16:11:30.469687 -285 opp-pending 153 131 2026-04-14 16:11:30.473792 2026-04-14 16:11:30.473792 -286 opp-pending 155 131 2026-04-14 16:11:30.477777 2026-04-14 16:11:30.477777 -287 opp-pending 157 131 2026-04-14 16:11:30.481853 2026-04-14 16:11:30.481853 -288 opp-pending 158 131 2026-04-14 16:11:30.485813 2026-04-14 16:11:30.485813 -289 opp-pending 160 131 2026-04-14 16:11:30.489588 2026-04-14 16:11:30.489588 -290 opp-pending 169 131 2026-04-14 16:11:30.493342 2026-04-14 16:11:30.493342 -291 opp-pending 178 131 2026-04-14 16:11:30.497449 2026-04-14 16:11:30.497449 -292 opp-pending 194 131 2026-04-14 16:11:30.501766 2026-04-14 16:11:30.501766 -293 opp-pending 300 131 2026-04-14 16:11:30.506064 2026-04-14 16:11:30.506064 -294 opp-pending 302 131 2026-04-14 16:11:30.510176 2026-04-14 16:11:30.510176 -295 opp-pending 304 131 2026-04-14 16:11:30.514254 2026-04-14 16:11:30.514254 -296 opp-pending 305 131 2026-04-14 16:11:30.518201 2026-04-14 16:11:30.518201 -297 opp-pending 309 131 2026-04-14 16:11:30.5221 2026-04-14 16:11:30.5221 -298 opp-pending 346 131 2026-04-14 16:11:30.526211 2026-04-14 16:11:30.526211 -299 opp-pending 386 131 2026-04-14 16:11:30.530369 2026-04-14 16:11:30.530369 -300 opp-pending 521 131 2026-04-14 16:11:30.534604 2026-04-14 16:11:30.534604 -301 opp-pending 592 131 2026-04-14 16:11:30.538995 2026-04-14 16:11:30.538995 -302 opp-pending 771 131 2026-04-14 16:11:30.543713 2026-04-14 16:11:30.543713 -303 opp-pending 50 132 2026-04-14 16:11:30.612837 2026-04-14 16:11:30.612837 -304 opp-pending 274 132 2026-04-14 16:11:30.616629 2026-04-14 16:11:30.616629 -305 opp-pending 180 132 2026-04-14 16:11:30.620301 2026-04-14 16:11:30.620301 -306 opp-pending 249 132 2026-04-14 16:11:30.623984 2026-04-14 16:11:30.623984 -307 opp-pending 300 132 2026-04-14 16:11:30.627752 2026-04-14 16:11:30.627752 -308 opp-pending 304 132 2026-04-14 16:11:30.63163 2026-04-14 16:11:30.63163 -309 opp-pending 309 132 2026-04-14 16:11:30.635929 2026-04-14 16:11:30.635929 -310 opp-pending 312 132 2026-04-14 16:11:30.63989 2026-04-14 16:11:30.63989 -311 opp-pending 350 132 2026-04-14 16:11:30.643866 2026-04-14 16:11:30.643866 -312 opp-pending 449 132 2026-04-14 16:11:30.647759 2026-04-14 16:11:30.647759 -313 opp-pending 494 132 2026-04-14 16:11:30.65175 2026-04-14 16:11:30.65175 -314 opp-pending 22 133 2026-04-14 16:11:30.718907 2026-04-14 16:11:30.718907 -315 opp-pending 82 137 2026-04-14 16:11:31.046665 2026-04-14 16:11:31.046665 -316 opp-pending 185 137 2026-04-14 16:11:31.050669 2026-04-14 16:11:31.050669 -317 opp-pending 208 137 2026-04-14 16:11:31.054769 2026-04-14 16:11:31.054769 -318 opp-pending 238 137 2026-04-14 16:11:31.059117 2026-04-14 16:11:31.059117 -319 opp-pending 101 139 2026-04-14 16:11:31.164549 2026-04-14 16:11:31.164549 -320 opp-pending 153 141 2026-04-14 16:11:31.32293 2026-04-14 16:11:31.32293 -321 opp-pending 155 141 2026-04-14 16:11:31.326752 2026-04-14 16:11:31.326752 -322 opp-pending 157 141 2026-04-14 16:11:31.330987 2026-04-14 16:11:31.330987 -323 opp-pending 158 141 2026-04-14 16:11:31.33512 2026-04-14 16:11:31.33512 -324 opp-pending 160 141 2026-04-14 16:11:31.339097 2026-04-14 16:11:31.339097 -325 opp-pending 309 141 2026-04-14 16:11:31.343234 2026-04-14 16:11:31.343234 -326 opp-pending 312 141 2026-04-14 16:11:31.347205 2026-04-14 16:11:31.347205 -327 opp-pending 365 141 2026-04-14 16:11:31.351177 2026-04-14 16:11:31.351177 -328 opp-pending 375 141 2026-04-14 16:11:31.35529 2026-04-14 16:11:31.35529 -329 opp-pending 402 141 2026-04-14 16:11:31.359663 2026-04-14 16:11:31.359663 -330 opp-pending 408 141 2026-04-14 16:11:31.363428 2026-04-14 16:11:31.363428 -331 opp-pending 740 141 2026-04-14 16:11:31.367101 2026-04-14 16:11:31.367101 -332 opp-pending 177 142 2026-04-14 16:11:31.43085 2026-04-14 16:11:31.43085 -333 opp-pending 178 142 2026-04-14 16:11:31.434858 2026-04-14 16:11:31.434858 -334 opp-pending 190 142 2026-04-14 16:11:31.438882 2026-04-14 16:11:31.438882 -335 opp-pending 194 142 2026-04-14 16:11:31.442886 2026-04-14 16:11:31.442886 -336 opp-pending 195 142 2026-04-14 16:11:31.447 2026-04-14 16:11:31.447 -337 opp-pending 196 142 2026-04-14 16:11:31.45108 2026-04-14 16:11:31.45108 -338 opp-pending 101 144 2026-04-14 16:11:31.632727 2026-04-14 16:11:31.632727 -339 opp-pending 102 145 2026-04-14 16:11:31.711816 2026-04-14 16:11:31.711816 -340 opp-pending 203 146 2026-04-14 16:11:31.800278 2026-04-14 16:11:31.800278 -341 opp-pending 526 146 2026-04-14 16:11:31.80454 2026-04-14 16:11:31.80454 -342 opp-pending 743 146 2026-04-14 16:11:31.808807 2026-04-14 16:11:31.808807 -343 opp-pending 184 147 2026-04-14 16:11:31.900646 2026-04-14 16:11:31.900646 -344 opp-pending 274 148 2026-04-14 16:11:31.9727 2026-04-14 16:11:31.9727 -345 opp-pending 178 148 2026-04-14 16:11:31.976743 2026-04-14 16:11:31.976743 -346 opp-pending 180 148 2026-04-14 16:11:31.98116 2026-04-14 16:11:31.98116 -347 opp-pending 194 148 2026-04-14 16:11:31.985714 2026-04-14 16:11:31.985714 -348 opp-pending 196 148 2026-04-14 16:11:31.990056 2026-04-14 16:11:31.990056 -349 opp-pending 300 148 2026-04-14 16:11:31.994406 2026-04-14 16:11:31.994406 -350 opp-pending 304 148 2026-04-14 16:11:31.998877 2026-04-14 16:11:31.998877 -351 opp-pending 305 148 2026-04-14 16:11:32.003097 2026-04-14 16:11:32.003097 -352 opp-pending 309 148 2026-04-14 16:11:32.007483 2026-04-14 16:11:32.007483 -353 opp-pending 449 148 2026-04-14 16:11:32.011755 2026-04-14 16:11:32.011755 -354 opp-pending 529 148 2026-04-14 16:11:32.01589 2026-04-14 16:11:32.01589 -355 opp-pending 614 148 2026-04-14 16:11:32.019774 2026-04-14 16:11:32.019774 -356 opp-pending 649 148 2026-04-14 16:11:32.023787 2026-04-14 16:11:32.023787 -357 opp-pending 101 149 2026-04-14 16:11:32.110919 2026-04-14 16:11:32.110919 -358 opp-pending 184 149 2026-04-14 16:11:32.114978 2026-04-14 16:11:32.114978 -359 opp-pending 151 155 2026-04-14 16:11:32.562953 2026-04-14 16:11:32.562953 -360 opp-pending 210 155 2026-04-14 16:11:32.566936 2026-04-14 16:11:32.566936 -361 opp-pending 238 155 2026-04-14 16:11:32.571056 2026-04-14 16:11:32.571056 -362 opp-pending 153 156 2026-04-14 16:11:32.680868 2026-04-14 16:11:32.680868 -363 opp-pending 274 156 2026-04-14 16:11:32.684887 2026-04-14 16:11:32.684887 -364 opp-pending 178 156 2026-04-14 16:11:32.688937 2026-04-14 16:11:32.688937 -365 opp-pending 255 156 2026-04-14 16:11:32.693137 2026-04-14 16:11:32.693137 -366 opp-pending 304 156 2026-04-14 16:11:32.697413 2026-04-14 16:11:32.697413 -367 opp-pending 305 156 2026-04-14 16:11:32.701694 2026-04-14 16:11:32.701694 -368 opp-pending 309 156 2026-04-14 16:11:32.706128 2026-04-14 16:11:32.706128 -369 opp-pending 312 156 2026-04-14 16:11:32.71046 2026-04-14 16:11:32.71046 -370 opp-pending 346 156 2026-04-14 16:11:32.71465 2026-04-14 16:11:32.71465 -371 opp-pending 361 156 2026-04-14 16:11:32.718742 2026-04-14 16:11:32.718742 -372 opp-pending 376 156 2026-04-14 16:11:32.722944 2026-04-14 16:11:32.722944 -373 opp-pending 445 156 2026-04-14 16:11:32.727053 2026-04-14 16:11:32.727053 -374 opp-pending 449 156 2026-04-14 16:11:32.731125 2026-04-14 16:11:32.731125 -375 opp-pending 464 156 2026-04-14 16:11:32.734999 2026-04-14 16:11:32.734999 -376 opp-pending 473 156 2026-04-14 16:11:32.738983 2026-04-14 16:11:32.738983 -377 opp-pending 474 156 2026-04-14 16:11:32.743204 2026-04-14 16:11:32.743204 -378 opp-pending 524 156 2026-04-14 16:11:32.74711 2026-04-14 16:11:32.74711 -379 opp-pending 574 156 2026-04-14 16:11:32.751154 2026-04-14 16:11:32.751154 -380 opp-pending 643 156 2026-04-14 16:11:32.755468 2026-04-14 16:11:32.755468 -381 opp-pending 646 156 2026-04-14 16:11:32.759769 2026-04-14 16:11:32.759769 -382 opp-pending 655 156 2026-04-14 16:11:32.763927 2026-04-14 16:11:32.763927 -383 opp-pending 670 156 2026-04-14 16:11:32.768115 2026-04-14 16:11:32.768115 -384 opp-pending 675 156 2026-04-14 16:11:32.772503 2026-04-14 16:11:32.772503 -385 opp-pending 676 156 2026-04-14 16:11:32.776575 2026-04-14 16:11:32.776575 -386 opp-pending 715 156 2026-04-14 16:11:32.781506 2026-04-14 16:11:32.781506 -387 opp-pending 736 156 2026-04-14 16:11:32.785931 2026-04-14 16:11:32.785931 -388 opp-pending 738 156 2026-04-14 16:11:32.790203 2026-04-14 16:11:32.790203 -389 opp-pending 208 158 2026-04-14 16:11:32.944463 2026-04-14 16:11:32.944463 -390 opp-pending 210 158 2026-04-14 16:11:32.948486 2026-04-14 16:11:32.948486 -391 opp-pending 323 158 2026-04-14 16:11:32.952668 2026-04-14 16:11:32.952668 -392 opp-pending 193 159 2026-04-14 16:11:33.038427 2026-04-14 16:11:33.038427 -393 opp-pending 208 161 2026-04-14 16:11:33.194526 2026-04-14 16:11:33.194526 -394 opp-pending 185 162 2026-04-14 16:11:33.291809 2026-04-14 16:11:33.291809 -395 opp-pending 263 164 2026-04-14 16:11:33.450506 2026-04-14 16:11:33.450506 -396 opp-pending 96 164 2026-04-14 16:11:33.454452 2026-04-14 16:11:33.454452 -397 opp-pending 151 164 2026-04-14 16:11:33.458287 2026-04-14 16:11:33.458287 -398 opp-pending 210 164 2026-04-14 16:11:33.462064 2026-04-14 16:11:33.462064 -399 opp-pending 238 164 2026-04-14 16:11:33.465957 2026-04-14 16:11:33.465957 -400 opp-pending 283 164 2026-04-14 16:11:33.470122 2026-04-14 16:11:33.470122 -401 opp-pending 456 164 2026-04-14 16:11:33.474322 2026-04-14 16:11:33.474322 -402 opp-pending 540 164 2026-04-14 16:11:33.478728 2026-04-14 16:11:33.478728 -403 opp-pending 617 164 2026-04-14 16:11:33.483033 2026-04-14 16:11:33.483033 -404 opp-pending 726 164 2026-04-14 16:11:33.487526 2026-04-14 16:11:33.487526 -405 opp-pending 300 166 2026-04-14 16:11:33.682438 2026-04-14 16:11:33.682438 -406 opp-pending 311 166 2026-04-14 16:11:33.686532 2026-04-14 16:11:33.686532 -407 opp-pending 173 167 2026-04-14 16:11:33.880527 2026-04-14 16:11:33.880527 -408 opp-pending 176 167 2026-04-14 16:11:33.884496 2026-04-14 16:11:33.884496 -409 opp-pending 215 167 2026-04-14 16:11:33.889015 2026-04-14 16:11:33.889015 -410 opp-pending 284 167 2026-04-14 16:11:33.893332 2026-04-14 16:11:33.893332 -411 opp-pending 290 167 2026-04-14 16:11:33.897518 2026-04-14 16:11:33.897518 -412 opp-pending 291 167 2026-04-14 16:11:33.902114 2026-04-14 16:11:33.902114 -413 opp-pending 511 167 2026-04-14 16:11:33.906576 2026-04-14 16:11:33.906576 -414 opp-pending 645 167 2026-04-14 16:11:33.911028 2026-04-14 16:11:33.911028 -415 opp-pending 105 168 2026-04-14 16:11:34.093667 2026-04-14 16:11:34.093667 -416 opp-pending 167 169 2026-04-14 16:11:34.187059 2026-04-14 16:11:34.187059 -417 opp-pending 171 169 2026-04-14 16:11:34.191704 2026-04-14 16:11:34.191704 -418 opp-active 242 169 2026-04-14 16:11:34.196248 2026-04-14 16:11:34.196248 -419 opp-pending 243 169 2026-04-14 16:11:34.200801 2026-04-14 16:11:34.200801 -420 opp-pending 244 169 2026-04-14 16:11:34.205448 2026-04-14 16:11:34.205448 -421 opp-pending 354 169 2026-04-14 16:11:34.209798 2026-04-14 16:11:34.209798 -422 opp-pending 511 169 2026-04-14 16:11:34.214357 2026-04-14 16:11:34.214357 -423 opp-pending 149 171 2026-04-14 16:11:34.350428 2026-04-14 16:11:34.350428 -424 opp-matched 161 171 2026-04-14 16:11:34.354366 2026-04-14 16:11:34.354366 -425 opp-pending 162 171 2026-04-14 16:11:34.358119 2026-04-14 16:11:34.358119 -426 opp-pending 280 171 2026-04-14 16:11:34.361889 2026-04-14 16:11:34.361889 -427 opp-pending 248 171 2026-04-14 16:11:34.366118 2026-04-14 16:11:34.366118 -428 opp-pending 251 171 2026-04-14 16:11:34.370219 2026-04-14 16:11:34.370219 -429 opp-pending 253 171 2026-04-14 16:11:34.374943 2026-04-14 16:11:34.374943 -430 opp-pending 258 171 2026-04-14 16:11:34.381029 2026-04-14 16:11:34.381029 -431 opp-pending 288 171 2026-04-14 16:11:34.385283 2026-04-14 16:11:34.385283 -432 opp-pending 303 171 2026-04-14 16:11:34.389567 2026-04-14 16:11:34.389567 -433 opp-pending 306 171 2026-04-14 16:11:34.394131 2026-04-14 16:11:34.394131 -434 opp-pending 308 171 2026-04-14 16:11:34.398282 2026-04-14 16:11:34.398282 -435 opp-pending 310 171 2026-04-14 16:11:34.402563 2026-04-14 16:11:34.402563 -436 opp-pending 324 171 2026-04-14 16:11:34.40661 2026-04-14 16:11:34.40661 -437 opp-pending 514 171 2026-04-14 16:11:34.410682 2026-04-14 16:11:34.410682 -438 opp-pending 785 171 2026-04-14 16:11:34.414638 2026-04-14 16:11:34.414638 -439 opp-pending 49 172 2026-04-14 16:11:34.485923 2026-04-14 16:11:34.485923 -440 opp-pending 152 172 2026-04-14 16:11:34.490271 2026-04-14 16:11:34.490271 -441 opp-pending 185 172 2026-04-14 16:11:34.494705 2026-04-14 16:11:34.494705 -442 opp-pending 211 172 2026-04-14 16:11:34.499016 2026-04-14 16:11:34.499016 -443 opp-pending 240 172 2026-04-14 16:11:34.503892 2026-04-14 16:11:34.503892 -444 opp-matched 360 172 2026-04-14 16:11:34.508023 2026-04-14 16:11:34.508023 -445 opp-pending 464 172 2026-04-14 16:11:34.512199 2026-04-14 16:11:34.512199 -446 opp-pending 501 172 2026-04-14 16:11:34.516198 2026-04-14 16:11:34.516198 -447 opp-pending 575 172 2026-04-14 16:11:34.520496 2026-04-14 16:11:34.520496 -448 opp-pending 288 173 2026-04-14 16:11:34.586927 2026-04-14 16:11:34.586927 -449 opp-pending 306 173 2026-04-14 16:11:34.591208 2026-04-14 16:11:34.591208 -450 opp-pending 308 173 2026-04-14 16:11:34.595325 2026-04-14 16:11:34.595325 -451 opp-pending 310 173 2026-04-14 16:11:34.599376 2026-04-14 16:11:34.599376 -452 opp-active 89 174 2026-04-14 16:11:34.779269 2026-04-14 16:11:34.779269 -453 opp-pending 101 174 2026-04-14 16:11:34.783676 2026-04-14 16:11:34.783676 -454 opp-pending 161 175 2026-04-14 16:11:34.923298 2026-04-14 16:11:34.923298 -455 opp-matched 362 175 2026-04-14 16:11:34.927606 2026-04-14 16:11:34.927606 -456 opp-pending 101 177 2026-04-14 16:11:35.085972 2026-04-14 16:11:35.085972 -457 opp-pending 104 177 2026-04-14 16:11:35.090053 2026-04-14 16:11:35.090053 -458 opp-pending 169 177 2026-04-14 16:11:35.093924 2026-04-14 16:11:35.093924 -459 opp-pending 12 179 2026-04-14 16:11:35.232244 2026-04-14 16:11:35.232244 -460 opp-pending 384 179 2026-04-14 16:11:35.236092 2026-04-14 16:11:35.236092 -461 opp-active 196 184 2026-04-14 16:11:35.455954 2026-04-14 16:11:35.455954 -462 opp-pending 344 184 2026-04-14 16:11:35.460038 2026-04-14 16:11:35.460038 -463 opp-pending 408 184 2026-04-14 16:11:35.46402 2026-04-14 16:11:35.46402 -464 opp-active 474 184 2026-04-14 16:11:35.468026 2026-04-14 16:11:35.468026 -465 opp-pending 512 184 2026-04-14 16:11:35.472102 2026-04-14 16:11:35.472102 -466 opp-pending 14 185 2026-04-14 16:11:35.548677 2026-04-14 16:11:35.548677 -467 opp-pending 152 185 2026-04-14 16:11:35.552597 2026-04-14 16:11:35.552597 -468 opp-active 107 186 2026-04-14 16:11:35.608393 2026-04-14 16:11:35.608393 -469 opp-pending 14 187 2026-04-14 16:11:35.692401 2026-04-14 16:11:35.692401 -470 opp-pending 88 187 2026-04-14 16:11:35.696498 2026-04-14 16:11:35.696498 -471 opp-pending 20 188 2026-04-14 16:11:35.764407 2026-04-14 16:11:35.764407 -472 opp-pending 149 189 2026-04-14 16:11:35.848621 2026-04-14 16:11:35.848621 -473 opp-pending 197 189 2026-04-14 16:11:35.852853 2026-04-14 16:11:35.852853 -474 opp-pending 280 189 2026-04-14 16:11:35.856907 2026-04-14 16:11:35.856907 -475 opp-pending 285 189 2026-04-14 16:11:35.860872 2026-04-14 16:11:35.860872 -476 opp-pending 303 189 2026-04-14 16:11:35.864844 2026-04-14 16:11:35.864844 -477 opp-pending 306 189 2026-04-14 16:11:35.869068 2026-04-14 16:11:35.869068 -478 opp-pending 308 189 2026-04-14 16:11:35.873126 2026-04-14 16:11:35.873126 -479 opp-pending 310 189 2026-04-14 16:11:35.877132 2026-04-14 16:11:35.877132 -480 opp-pending 343 189 2026-04-14 16:11:35.881863 2026-04-14 16:11:35.881863 -481 opp-pending 387 189 2026-04-14 16:11:35.887202 2026-04-14 16:11:35.887202 -482 opp-pending 88 190 2026-04-14 16:11:35.964172 2026-04-14 16:11:35.964172 -483 opp-pending 107 191 2026-04-14 16:11:36.035171 2026-04-14 16:11:36.035171 -484 opp-pending 284 193 2026-04-14 16:11:36.346937 2026-04-14 16:11:36.346937 -485 opp-pending 210 194 2026-04-14 16:11:36.46196 2026-04-14 16:11:36.46196 -486 opp-pending 238 194 2026-04-14 16:11:36.466208 2026-04-14 16:11:36.466208 -487 opp-pending 283 194 2026-04-14 16:11:36.474128 2026-04-14 16:11:36.474128 -488 opp-pending 625 194 2026-04-14 16:11:36.478934 2026-04-14 16:11:36.478934 -489 opp-pending 14 197 2026-04-14 16:11:36.85106 2026-04-14 16:11:36.85106 -490 opp-pending 88 197 2026-04-14 16:11:36.855508 2026-04-14 16:11:36.855508 -491 opp-pending 151 197 2026-04-14 16:11:36.859862 2026-04-14 16:11:36.859862 -492 opp-pending 238 197 2026-04-14 16:11:36.864246 2026-04-14 16:11:36.864246 -493 opp-pending 143 198 2026-04-14 16:11:36.955135 2026-04-14 16:11:36.955135 -494 opp-pending 395 198 2026-04-14 16:11:36.959709 2026-04-14 16:11:36.959709 -495 opp-pending 153 199 2026-04-14 16:11:37.046974 2026-04-14 16:11:37.046974 -496 opp-pending 155 199 2026-04-14 16:11:37.051003 2026-04-14 16:11:37.051003 -497 opp-pending 157 199 2026-04-14 16:11:37.055108 2026-04-14 16:11:37.055108 -498 opp-pending 158 199 2026-04-14 16:11:37.059082 2026-04-14 16:11:37.059082 -499 opp-pending 160 199 2026-04-14 16:11:37.063505 2026-04-14 16:11:37.063505 -500 opp-pending 274 199 2026-04-14 16:11:37.067918 2026-04-14 16:11:37.067918 -501 opp-pending 182 199 2026-04-14 16:11:37.074004 2026-04-14 16:11:37.074004 -502 opp-pending 207 199 2026-04-14 16:11:37.078342 2026-04-14 16:11:37.078342 -503 opp-pending 280 199 2026-04-14 16:11:37.082457 2026-04-14 16:11:37.082457 -504 opp-pending 233 199 2026-04-14 16:11:37.086948 2026-04-14 16:11:37.086948 -505 opp-pending 285 199 2026-04-14 16:11:37.091165 2026-04-14 16:11:37.091165 -506 opp-pending 288 199 2026-04-14 16:11:37.095525 2026-04-14 16:11:37.095525 -507 opp-pending 303 199 2026-04-14 16:11:37.100059 2026-04-14 16:11:37.100059 -508 opp-pending 304 199 2026-04-14 16:11:37.105199 2026-04-14 16:11:37.105199 -509 opp-pending 305 199 2026-04-14 16:11:37.1103 2026-04-14 16:11:37.1103 -510 opp-pending 306 199 2026-04-14 16:11:37.114916 2026-04-14 16:11:37.114916 -511 opp-pending 308 199 2026-04-14 16:11:37.119386 2026-04-14 16:11:37.119386 -512 opp-pending 310 199 2026-04-14 16:11:37.123478 2026-04-14 16:11:37.123478 -513 opp-pending 312 199 2026-04-14 16:11:37.127603 2026-04-14 16:11:37.127603 -514 opp-pending 324 199 2026-04-14 16:11:37.131615 2026-04-14 16:11:37.131615 -515 opp-pending 438 199 2026-04-14 16:11:37.135901 2026-04-14 16:11:37.135901 -516 opp-pending 167 200 2026-04-14 16:11:37.210464 2026-04-14 16:11:37.210464 -517 opp-pending 176 200 2026-04-14 16:11:37.215295 2026-04-14 16:11:37.215295 -518 opp-pending 281 200 2026-04-14 16:11:37.219628 2026-04-14 16:11:37.219628 -519 opp-pending 290 200 2026-04-14 16:11:37.224222 2026-04-14 16:11:37.224222 -520 opp-pending 291 200 2026-04-14 16:11:37.228553 2026-04-14 16:11:37.228553 -521 opp-pending 101 201 2026-04-14 16:11:37.3134 2026-04-14 16:11:37.3134 -522 opp-pending 104 201 2026-04-14 16:11:37.31841 2026-04-14 16:11:37.31841 -523 opp-pending 116 201 2026-04-14 16:11:37.323049 2026-04-14 16:11:37.323049 -524 opp-pending 152 201 2026-04-14 16:11:37.327792 2026-04-14 16:11:37.327792 -525 opp-pending 234 201 2026-04-14 16:11:37.332744 2026-04-14 16:11:37.332744 -526 opp-pending 573 201 2026-04-14 16:11:37.337601 2026-04-14 16:11:37.337601 -527 opp-pending 167 202 2026-04-14 16:11:37.74263 2026-04-14 16:11:37.74263 -528 opp-pending 173 202 2026-04-14 16:11:37.746343 2026-04-14 16:11:37.746343 -529 opp-pending 176 202 2026-04-14 16:11:37.750001 2026-04-14 16:11:37.750001 -530 opp-pending 215 202 2026-04-14 16:11:37.753764 2026-04-14 16:11:37.753764 -531 opp-pending 290 202 2026-04-14 16:11:37.757714 2026-04-14 16:11:37.757714 -532 opp-pending 291 202 2026-04-14 16:11:37.762272 2026-04-14 16:11:37.762272 -533 opp-pending 32 204 2026-04-14 16:11:37.905647 2026-04-14 16:11:37.905647 -534 opp-pending 88 204 2026-04-14 16:11:37.909808 2026-04-14 16:11:37.909808 -535 opp-pending 115 204 2026-04-14 16:11:37.913612 2026-04-14 16:11:37.913612 -536 opp-pending 116 204 2026-04-14 16:11:37.91755 2026-04-14 16:11:37.91755 -537 opp-pending 132 205 2026-04-14 16:11:38.010636 2026-04-14 16:11:38.010636 -538 opp-pending 12 206 2026-04-14 16:11:38.108422 2026-04-14 16:11:38.108422 -539 opp-pending 152 206 2026-04-14 16:11:38.11312 2026-04-14 16:11:38.11312 -540 opp-pending 3 207 2026-04-14 16:11:38.216742 2026-04-14 16:11:38.216742 -541 opp-pending 151 207 2026-04-14 16:11:38.22056 2026-04-14 16:11:38.22056 -542 opp-pending 210 207 2026-04-14 16:11:38.224565 2026-04-14 16:11:38.224565 -543 opp-pending 238 207 2026-04-14 16:11:38.228234 2026-04-14 16:11:38.228234 -544 opp-pending 42 209 2026-04-14 16:11:38.353422 2026-04-14 16:11:38.353422 -545 opp-pending 263 210 2026-04-14 16:11:38.476263 2026-04-14 16:11:38.476263 -546 opp-pending 76 210 2026-04-14 16:11:38.480302 2026-04-14 16:11:38.480302 -547 opp-pending 617 210 2026-04-14 16:11:38.484429 2026-04-14 16:11:38.484429 -548 opp-pending 197 211 2026-04-14 16:11:38.569014 2026-04-14 16:11:38.569014 -549 opp-pending 421 211 2026-04-14 16:11:38.573229 2026-04-14 16:11:38.573229 -550 opp-pending 116 212 2026-04-14 16:11:38.666462 2026-04-14 16:11:38.666462 -551 opp-pending 32 213 2026-04-14 16:11:38.797312 2026-04-14 16:11:38.797312 -552 opp-pending 284 214 2026-04-14 16:11:38.938997 2026-04-14 16:11:38.938997 -553 opp-pending 254 214 2026-04-14 16:11:38.942698 2026-04-14 16:11:38.942698 -554 opp-pending 170 215 2026-04-14 16:11:38.991413 2026-04-14 16:11:38.991413 -555 opp-pending 32 216 2026-04-14 16:11:39.130987 2026-04-14 16:11:39.130987 -556 opp-pending 183 216 2026-04-14 16:11:39.134662 2026-04-14 16:11:39.134662 -557 opp-pending 284 216 2026-04-14 16:11:39.138921 2026-04-14 16:11:39.138921 -558 opp-pending 90 218 2026-04-14 16:11:39.265271 2026-04-14 16:11:39.265271 -559 opp-pending 153 219 2026-04-14 16:11:39.338995 2026-04-14 16:11:39.338995 -560 opp-pending 155 219 2026-04-14 16:11:39.343084 2026-04-14 16:11:39.343084 -561 opp-pending 157 219 2026-04-14 16:11:39.347411 2026-04-14 16:11:39.347411 -562 opp-pending 158 219 2026-04-14 16:11:39.351632 2026-04-14 16:11:39.351632 -563 opp-pending 160 219 2026-04-14 16:11:39.355958 2026-04-14 16:11:39.355958 -564 opp-pending 274 219 2026-04-14 16:11:39.359852 2026-04-14 16:11:39.359852 -565 opp-pending 207 219 2026-04-14 16:11:39.363912 2026-04-14 16:11:39.363912 -566 opp-pending 233 219 2026-04-14 16:11:39.368536 2026-04-14 16:11:39.368536 -567 opp-pending 255 219 2026-04-14 16:11:39.373252 2026-04-14 16:11:39.373252 -568 opp-pending 304 219 2026-04-14 16:11:39.378461 2026-04-14 16:11:39.378461 -569 opp-pending 346 219 2026-04-14 16:11:39.382428 2026-04-14 16:11:39.382428 -570 opp-pending 361 219 2026-04-14 16:11:39.38688 2026-04-14 16:11:39.38688 -571 opp-pending 438 219 2026-04-14 16:11:39.391221 2026-04-14 16:11:39.391221 -572 opp-pending 444 219 2026-04-14 16:11:39.395183 2026-04-14 16:11:39.395183 -573 opp-pending 100 220 2026-04-14 16:11:39.456289 2026-04-14 16:11:39.456289 -574 opp-pending 110 221 2026-04-14 16:11:39.533802 2026-04-14 16:11:39.533802 -575 opp-pending 77 222 2026-04-14 16:11:39.602309 2026-04-14 16:11:39.602309 -576 opp-pending 111 224 2026-04-14 16:11:39.788972 2026-04-14 16:11:39.788972 -577 opp-pending 112 224 2026-04-14 16:11:39.792578 2026-04-14 16:11:39.792578 -578 opp-pending 208 225 2026-04-14 16:11:39.859098 2026-04-14 16:11:39.859098 -579 opp-pending 12 226 2026-04-14 16:11:39.940211 2026-04-14 16:11:39.940211 -580 opp-pending 167 226 2026-04-14 16:11:39.944025 2026-04-14 16:11:39.944025 -581 opp-pending 93 227 2026-04-14 16:11:40.114655 2026-04-14 16:11:40.114655 -582 opp-pending 99 227 2026-04-14 16:11:40.118155 2026-04-14 16:11:40.118155 -583 opp-pending 120 229 2026-04-14 16:11:40.329799 2026-04-14 16:11:40.329799 -584 opp-pending 99 231 2026-04-14 16:11:40.448666 2026-04-14 16:11:40.448666 -585 opp-pending 177 231 2026-04-14 16:11:40.452263 2026-04-14 16:11:40.452263 -586 opp-pending 178 231 2026-04-14 16:11:40.455499 2026-04-14 16:11:40.455499 -587 opp-pending 190 231 2026-04-14 16:11:40.458918 2026-04-14 16:11:40.458918 -588 opp-pending 194 231 2026-04-14 16:11:40.462367 2026-04-14 16:11:40.462367 -589 opp-pending 195 231 2026-04-14 16:11:40.465654 2026-04-14 16:11:40.465654 -590 opp-pending 196 231 2026-04-14 16:11:40.469272 2026-04-14 16:11:40.469272 -591 opp-pending 287 231 2026-04-14 16:11:40.472707 2026-04-14 16:11:40.472707 -592 opp-pending 105 232 2026-04-14 16:11:40.54921 2026-04-14 16:11:40.54921 -593 opp-pending 170 233 2026-04-14 16:11:40.669039 2026-04-14 16:11:40.669039 -594 opp-pending 208 233 2026-04-14 16:11:40.672537 2026-04-14 16:11:40.672537 -595 opp-pending 389 233 2026-04-14 16:11:40.67601 2026-04-14 16:11:40.67601 -596 opp-active 562 233 2026-04-14 16:11:40.679895 2026-04-14 16:11:40.679895 -597 opp-pending 664 233 2026-04-14 16:11:40.683568 2026-04-14 16:11:40.683568 -598 opp-pending 169 234 2026-04-14 16:11:40.759959 2026-04-14 16:11:40.759959 -599 opp-pending 263 236 2026-04-14 16:11:41.085583 2026-04-14 16:11:41.085583 -600 opp-pending 106 236 2026-04-14 16:11:41.088941 2026-04-14 16:11:41.088941 -601 opp-pending 105 237 2026-04-14 16:11:41.171427 2026-04-14 16:11:41.171427 -602 opp-pending 110 237 2026-04-14 16:11:41.174955 2026-04-14 16:11:41.174955 -603 opp-pending 149 238 2026-04-14 16:11:41.252203 2026-04-14 16:11:41.252203 -604 opp-pending 174 238 2026-04-14 16:11:41.255732 2026-04-14 16:11:41.255732 -605 opp-pending 197 238 2026-04-14 16:11:41.259307 2026-04-14 16:11:41.259307 -606 opp-pending 280 238 2026-04-14 16:11:41.262706 2026-04-14 16:11:41.262706 -607 opp-pending 285 238 2026-04-14 16:11:41.266125 2026-04-14 16:11:41.266125 -608 opp-pending 288 238 2026-04-14 16:11:41.269396 2026-04-14 16:11:41.269396 -609 opp-pending 303 238 2026-04-14 16:11:41.27283 2026-04-14 16:11:41.27283 -610 opp-pending 306 238 2026-04-14 16:11:41.276376 2026-04-14 16:11:41.276376 -611 opp-pending 308 238 2026-04-14 16:11:41.28004 2026-04-14 16:11:41.28004 -612 opp-pending 310 238 2026-04-14 16:11:41.283361 2026-04-14 16:11:41.283361 -613 opp-pending 343 238 2026-04-14 16:11:41.286641 2026-04-14 16:11:41.286641 -614 opp-pending 387 238 2026-04-14 16:11:41.290109 2026-04-14 16:11:41.290109 -615 opp-pending 421 238 2026-04-14 16:11:41.293439 2026-04-14 16:11:41.293439 -616 opp-pending 495 238 2026-04-14 16:11:41.296805 2026-04-14 16:11:41.296805 -617 opp-pending 42 240 2026-04-14 16:11:41.455701 2026-04-14 16:11:41.455701 -618 opp-pending 18 242 2026-04-14 16:11:41.606406 2026-04-14 16:11:41.606406 -619 opp-pending 169 242 2026-04-14 16:11:41.610685 2026-04-14 16:11:41.610685 -620 opp-pending 25 243 2026-04-14 16:11:41.680213 2026-04-14 16:11:41.680213 -621 opp-pending 99 243 2026-04-14 16:11:41.683938 2026-04-14 16:11:41.683938 -622 opp-pending 108 243 2026-04-14 16:11:41.68768 2026-04-14 16:11:41.68768 -623 opp-pending 130 245 2026-04-14 16:11:41.798971 2026-04-14 16:11:41.798971 -624 opp-pending 175 246 2026-04-14 16:11:41.867391 2026-04-14 16:11:41.867391 -625 opp-pending 106 247 2026-04-14 16:11:41.9456 2026-04-14 16:11:41.9456 -626 opp-pending 203 247 2026-04-14 16:11:41.950073 2026-04-14 16:11:41.950073 -627 opp-pending 126 248 2026-04-14 16:11:42.04039 2026-04-14 16:11:42.04039 -628 opp-pending 124 249 2026-04-14 16:11:42.169159 2026-04-14 16:11:42.169159 -629 opp-matched 146 249 2026-04-14 16:11:42.17377 2026-04-14 16:11:42.17377 -630 opp-pending 165 249 2026-04-14 16:11:42.178212 2026-04-14 16:11:42.178212 -631 opp-pending 42 251 2026-04-14 16:11:42.425554 2026-04-14 16:11:42.425554 -632 opp-pending 77 251 2026-04-14 16:11:42.42931 2026-04-14 16:11:42.42931 -633 opp-pending 18 252 2026-04-14 16:11:42.499087 2026-04-14 16:11:42.499087 -634 opp-pending 203 252 2026-04-14 16:11:42.502682 2026-04-14 16:11:42.502682 -635 opp-pending 285 252 2026-04-14 16:11:42.506228 2026-04-14 16:11:42.506228 -636 opp-pending 127 253 2026-04-14 16:11:42.588464 2026-04-14 16:11:42.588464 -637 opp-pending 175 253 2026-04-14 16:11:42.592586 2026-04-14 16:11:42.592586 -638 opp-matched 127 254 2026-04-14 16:11:42.671933 2026-04-14 16:11:42.671933 -639 opp-matched 175 254 2026-04-14 16:11:42.676678 2026-04-14 16:11:42.676678 -640 opp-pending 228 254 2026-04-14 16:11:42.681452 2026-04-14 16:11:42.681452 -641 opp-pending 151 255 2026-04-14 16:11:42.754202 2026-04-14 16:11:42.754202 -642 opp-pending 170 255 2026-04-14 16:11:42.757646 2026-04-14 16:11:42.757646 -643 opp-pending 278 255 2026-04-14 16:11:42.761284 2026-04-14 16:11:42.761284 -644 opp-pending 183 255 2026-04-14 16:11:42.765243 2026-04-14 16:11:42.765243 -645 opp-pending 238 255 2026-04-14 16:11:42.769002 2026-04-14 16:11:42.769002 -646 opp-pending 283 255 2026-04-14 16:11:42.772662 2026-04-14 16:11:42.772662 -647 opp-pending 617 255 2026-04-14 16:11:42.776411 2026-04-14 16:11:42.776411 -648 opp-pending 129 256 2026-04-14 16:11:42.829733 2026-04-14 16:11:42.829733 -649 opp-pending 153 257 2026-04-14 16:11:42.908106 2026-04-14 16:11:42.908106 -650 opp-pending 155 257 2026-04-14 16:11:42.912063 2026-04-14 16:11:42.912063 -651 opp-pending 157 257 2026-04-14 16:11:42.916093 2026-04-14 16:11:42.916093 -652 opp-pending 158 257 2026-04-14 16:11:42.919773 2026-04-14 16:11:42.919773 -653 opp-pending 160 257 2026-04-14 16:11:42.923355 2026-04-14 16:11:42.923355 -654 opp-pending 164 257 2026-04-14 16:11:42.92682 2026-04-14 16:11:42.92682 -655 opp-pending 169 257 2026-04-14 16:11:42.93028 2026-04-14 16:11:42.93028 -656 opp-pending 180 257 2026-04-14 16:11:42.933858 2026-04-14 16:11:42.933858 -657 opp-pending 182 257 2026-04-14 16:11:42.937407 2026-04-14 16:11:42.937407 -658 opp-pending 207 257 2026-04-14 16:11:42.94092 2026-04-14 16:11:42.94092 -659 opp-pending 300 257 2026-04-14 16:11:42.94467 2026-04-14 16:11:42.94467 -660 opp-pending 47 258 2026-04-14 16:11:43.022312 2026-04-14 16:11:43.022312 -661 opp-pending 47 259 2026-04-14 16:11:43.124809 2026-04-14 16:11:43.124809 -662 opp-pending 274 259 2026-04-14 16:11:43.128311 2026-04-14 16:11:43.128311 -663 opp-pending 255 259 2026-04-14 16:11:43.131799 2026-04-14 16:11:43.131799 -664 opp-pending 300 259 2026-04-14 16:11:43.135208 2026-04-14 16:11:43.135208 -665 opp-pending 311 259 2026-04-14 16:11:43.138652 2026-04-14 16:11:43.138652 -666 opp-pending 444 259 2026-04-14 16:11:43.142004 2026-04-14 16:11:43.142004 -667 opp-pending 51 262 2026-04-14 16:11:43.364826 2026-04-14 16:11:43.364826 -668 opp-pending 170 262 2026-04-14 16:11:43.368336 2026-04-14 16:11:43.368336 -669 opp-pending 183 262 2026-04-14 16:11:43.371977 2026-04-14 16:11:43.371977 -670 opp-pending 131 263 2026-04-14 16:11:43.448156 2026-04-14 16:11:43.448156 -671 opp-pending 165 264 2026-04-14 16:11:43.545418 2026-04-14 16:11:43.545418 -672 opp-pending 183 266 2026-04-14 16:11:43.702564 2026-04-14 16:11:43.702564 -673 opp-pending 203 266 2026-04-14 16:11:43.706671 2026-04-14 16:11:43.706671 -674 opp-pending 387 266 2026-04-14 16:11:43.710291 2026-04-14 16:11:43.710291 -675 opp-pending 526 266 2026-04-14 16:11:43.714047 2026-04-14 16:11:43.714047 -676 opp-pending 153 267 2026-04-14 16:11:43.809803 2026-04-14 16:11:43.809803 -677 opp-pending 155 267 2026-04-14 16:11:43.814168 2026-04-14 16:11:43.814168 -678 opp-pending 157 267 2026-04-14 16:11:43.818268 2026-04-14 16:11:43.818268 -679 opp-pending 158 267 2026-04-14 16:11:43.821791 2026-04-14 16:11:43.821791 -680 opp-pending 160 267 2026-04-14 16:11:43.825505 2026-04-14 16:11:43.825505 -681 opp-pending 265 268 2026-04-14 16:11:43.970451 2026-04-14 16:11:43.970451 -682 opp-pending 88 268 2026-04-14 16:11:43.975002 2026-04-14 16:11:43.975002 -683 opp-pending 284 268 2026-04-14 16:11:43.978924 2026-04-14 16:11:43.978924 -684 opp-pending 254 268 2026-04-14 16:11:43.982575 2026-04-14 16:11:43.982575 -685 opp-pending 727 273 2026-04-14 16:11:44.344491 2026-04-14 16:11:44.344491 -686 opp-pending 136 278 2026-04-14 16:11:44.850242 2026-04-14 16:11:44.850242 -687 opp-pending 628 278 2026-04-14 16:11:44.853763 2026-04-14 16:11:44.853763 -688 opp-pending 103 279 2026-04-14 16:11:44.97802 2026-04-14 16:11:44.97802 -689 opp-pending 165 279 2026-04-14 16:11:44.981411 2026-04-14 16:11:44.981411 -690 opp-pending 12 280 2026-04-14 16:11:45.102344 2026-04-14 16:11:45.102344 -692 opp-pending 304 281 2026-04-14 16:11:45.173604 2026-04-14 16:11:45.173604 -693 opp-pending 305 281 2026-04-14 16:11:45.178036 2026-04-14 16:11:45.178036 -694 opp-active 342 281 2026-04-14 16:11:45.1856 2026-04-14 16:11:45.1856 -695 opp-pending 390 281 2026-04-14 16:11:45.192673 2026-04-14 16:11:45.192673 -696 opp-pending 138 282 2026-04-14 16:11:45.285194 2026-04-14 16:11:45.285194 -697 opp-pending 265 285 2026-04-14 16:11:45.560728 2026-04-14 16:11:45.560728 -698 opp-pending 167 285 2026-04-14 16:11:45.564788 2026-04-14 16:11:45.564788 -699 opp-pending 173 285 2026-04-14 16:11:45.568398 2026-04-14 16:11:45.568398 -700 opp-pending 215 285 2026-04-14 16:11:45.571933 2026-04-14 16:11:45.571933 -701 opp-pending 243 285 2026-04-14 16:11:45.57526 2026-04-14 16:11:45.57526 -702 opp-pending 244 285 2026-04-14 16:11:45.578738 2026-04-14 16:11:45.578738 -703 opp-pending 354 285 2026-04-14 16:11:45.58226 2026-04-14 16:11:45.58226 -704 opp-pending 511 285 2026-04-14 16:11:45.585774 2026-04-14 16:11:45.585774 -705 opp-pending 645 285 2026-04-14 16:11:45.589307 2026-04-14 16:11:45.589307 -706 opp-pending 170 287 2026-04-14 16:11:45.732951 2026-04-14 16:11:45.732951 -707 opp-pending 165 289 2026-04-14 16:11:45.853985 2026-04-14 16:11:45.853985 -708 opp-pending 183 291 2026-04-14 16:11:46.028614 2026-04-14 16:11:46.028614 -709 opp-pending 155 292 2026-04-14 16:11:46.082355 2026-04-14 16:11:46.082355 -710 opp-pending 274 294 2026-04-14 16:11:46.208166 2026-04-14 16:11:46.208166 -711 opp-pending 178 294 2026-04-14 16:11:46.211948 2026-04-14 16:11:46.211948 -712 opp-pending 195 294 2026-04-14 16:11:46.216027 2026-04-14 16:11:46.216027 -713 opp-pending 279 294 2026-04-14 16:11:46.219607 2026-04-14 16:11:46.219607 -714 opp-pending 255 294 2026-04-14 16:11:46.22343 2026-04-14 16:11:46.22343 -715 opp-pending 300 294 2026-04-14 16:11:46.227433 2026-04-14 16:11:46.227433 -716 opp-pending 304 294 2026-04-14 16:11:46.231451 2026-04-14 16:11:46.231451 -717 opp-pending 305 294 2026-04-14 16:11:46.235322 2026-04-14 16:11:46.235322 -718 opp-pending 342 294 2026-04-14 16:11:46.239445 2026-04-14 16:11:46.239445 -719 opp-pending 346 294 2026-04-14 16:11:46.243765 2026-04-14 16:11:46.243765 -720 opp-pending 361 294 2026-04-14 16:11:46.247597 2026-04-14 16:11:46.247597 -721 opp-pending 376 294 2026-04-14 16:11:46.251388 2026-04-14 16:11:46.251388 -722 opp-pending 396 294 2026-04-14 16:11:46.254946 2026-04-14 16:11:46.254946 -723 opp-pending 438 294 2026-04-14 16:11:46.25848 2026-04-14 16:11:46.25848 -724 opp-pending 474 294 2026-04-14 16:11:46.262118 2026-04-14 16:11:46.262118 -725 opp-pending 486 294 2026-04-14 16:11:46.266074 2026-04-14 16:11:46.266074 -726 opp-pending 510 294 2026-04-14 16:11:46.269955 2026-04-14 16:11:46.269955 -727 opp-pending 581 294 2026-04-14 16:11:46.274003 2026-04-14 16:11:46.274003 -728 opp-pending 644 294 2026-04-14 16:11:46.278094 2026-04-14 16:11:46.278094 -729 opp-pending 665 294 2026-04-14 16:11:46.281904 2026-04-14 16:11:46.281904 -730 opp-pending 686 294 2026-04-14 16:11:46.285768 2026-04-14 16:11:46.285768 -731 opp-pending 717 294 2026-04-14 16:11:46.289818 2026-04-14 16:11:46.289818 -732 opp-pending 736 294 2026-04-14 16:11:46.293788 2026-04-14 16:11:46.293788 -733 opp-pending 747 294 2026-04-14 16:11:46.297299 2026-04-14 16:11:46.297299 -734 opp-pending 183 297 2026-04-14 16:11:46.544395 2026-04-14 16:11:46.544395 -735 opp-pending 203 297 2026-04-14 16:11:46.547835 2026-04-14 16:11:46.547835 -736 opp-pending 254 297 2026-04-14 16:11:46.551193 2026-04-14 16:11:46.551193 -737 opp-pending 258 297 2026-04-14 16:11:46.554417 2026-04-14 16:11:46.554417 -738 opp-pending 350 297 2026-04-14 16:11:46.557829 2026-04-14 16:11:46.557829 -739 opp-pending 365 297 2026-04-14 16:11:46.561531 2026-04-14 16:11:46.561531 -740 opp-pending 375 297 2026-04-14 16:11:46.565121 2026-04-14 16:11:46.565121 -741 opp-pending 142 298 2026-04-14 16:11:46.661963 2026-04-14 16:11:46.661963 -742 opp-pending 12 301 2026-04-14 16:11:46.848379 2026-04-14 16:11:46.848379 -743 opp-pending 103 302 2026-04-14 16:11:46.910579 2026-04-14 16:11:46.910579 -744 opp-pending 172 304 2026-04-14 16:11:47.084971 2026-04-14 16:11:47.084971 -745 opp-pending 185 304 2026-04-14 16:11:47.089026 2026-04-14 16:11:47.089026 -746 opp-pending 186 304 2026-04-14 16:11:47.092866 2026-04-14 16:11:47.092866 -747 opp-pending 202 304 2026-04-14 16:11:47.096607 2026-04-14 16:11:47.096607 -748 opp-pending 211 304 2026-04-14 16:11:47.100214 2026-04-14 16:11:47.100214 -749 opp-pending 345 304 2026-04-14 16:11:47.103758 2026-04-14 16:11:47.103758 -750 opp-pending 575 304 2026-04-14 16:11:47.107312 2026-04-14 16:11:47.107312 -751 opp-pending 11 305 2026-04-14 16:11:47.168397 2026-04-14 16:11:47.168397 -752 opp-pending 300 306 2026-04-14 16:11:47.235443 2026-04-14 16:11:47.235443 -753 opp-pending 118 307 2026-04-14 16:11:47.318943 2026-04-14 16:11:47.318943 -754 opp-pending 55 308 2026-04-14 16:11:47.449884 2026-04-14 16:11:47.449884 -755 opp-pending 124 308 2026-04-14 16:11:47.453612 2026-04-14 16:11:47.453612 -756 opp-pending 290 308 2026-04-14 16:11:47.457399 2026-04-14 16:11:47.457399 -757 opp-pending 291 308 2026-04-14 16:11:47.461528 2026-04-14 16:11:47.461528 -758 opp-pending 122 309 2026-04-14 16:11:47.525337 2026-04-14 16:11:47.525337 -759 opp-pending 274 310 2026-04-14 16:11:47.592289 2026-04-14 16:11:47.592289 -760 opp-pending 159 310 2026-04-14 16:11:47.595823 2026-04-14 16:11:47.595823 -761 opp-pending 196 310 2026-04-14 16:11:47.599376 2026-04-14 16:11:47.599376 -762 opp-pending 207 310 2026-04-14 16:11:47.602742 2026-04-14 16:11:47.602742 -763 opp-pending 302 310 2026-04-14 16:11:47.606123 2026-04-14 16:11:47.606123 -764 opp-pending 304 310 2026-04-14 16:11:47.609456 2026-04-14 16:11:47.609456 -765 opp-pending 305 310 2026-04-14 16:11:47.612953 2026-04-14 16:11:47.612953 -766 opp-pending 342 310 2026-04-14 16:11:47.616857 2026-04-14 16:11:47.616857 -767 opp-pending 444 310 2026-04-14 16:11:47.620302 2026-04-14 16:11:47.620302 -768 opp-pending 76 311 2026-04-14 16:11:47.70245 2026-04-14 16:11:47.70245 -769 opp-pending 197 312 2026-04-14 16:11:47.80312 2026-04-14 16:11:47.80312 -770 opp-pending 280 312 2026-04-14 16:11:47.806772 2026-04-14 16:11:47.806772 -771 opp-pending 303 312 2026-04-14 16:11:47.810258 2026-04-14 16:11:47.810258 -772 opp-pending 343 312 2026-04-14 16:11:47.813474 2026-04-14 16:11:47.813474 -773 opp-pending 514 312 2026-04-14 16:11:47.816954 2026-04-14 16:11:47.816954 -774 opp-pending 501 313 2026-04-14 16:11:47.963891 2026-04-14 16:11:47.963891 -775 opp-pending 531 313 2026-04-14 16:11:47.967822 2026-04-14 16:11:47.967822 -776 opp-pending 593 313 2026-04-14 16:11:47.971312 2026-04-14 16:11:47.971312 -777 opp-pending 628 313 2026-04-14 16:11:47.974687 2026-04-14 16:11:47.974687 -778 opp-pending 12 314 2026-04-14 16:11:48.056009 2026-04-14 16:11:48.056009 -779 opp-pending 54 315 2026-04-14 16:11:48.239595 2026-04-14 16:11:48.239595 -780 opp-pending 211 315 2026-04-14 16:11:48.24324 2026-04-14 16:11:48.24324 -781 opp-pending 240 315 2026-04-14 16:11:48.247155 2026-04-14 16:11:48.247155 -782 opp-pending 283 315 2026-04-14 16:11:48.250623 2026-04-14 16:11:48.250623 -783 opp-pending 355 315 2026-04-14 16:11:48.25423 2026-04-14 16:11:48.25423 -784 opp-pending 357 315 2026-04-14 16:11:48.257967 2026-04-14 16:11:48.257967 -785 opp-pending 501 315 2026-04-14 16:11:48.261549 2026-04-14 16:11:48.261549 -786 opp-matched 201 317 2026-04-14 16:11:48.476451 2026-04-14 16:11:48.476451 -787 opp-matched 362 318 2026-04-14 16:11:48.575477 2026-04-14 16:11:48.575477 -788 opp-pending 211 320 2026-04-14 16:11:48.782169 2026-04-14 16:11:48.782169 -789 opp-pending 345 320 2026-04-14 16:11:48.78585 2026-04-14 16:11:48.78585 -790 opp-pending 198 321 2026-04-14 16:11:48.98515 2026-04-14 16:11:48.98515 -791 opp-pending 207 322 2026-04-14 16:11:49.15492 2026-04-14 16:11:49.15492 -792 opp-pending 237 322 2026-04-14 16:11:49.158895 2026-04-14 16:11:49.158895 -793 opp-pending 249 322 2026-04-14 16:11:49.162683 2026-04-14 16:11:49.162683 -794 opp-pending 254 322 2026-04-14 16:11:49.166534 2026-04-14 16:11:49.166534 -795 opp-pending 255 322 2026-04-14 16:11:49.171435 2026-04-14 16:11:49.171435 -796 opp-pending 286 322 2026-04-14 16:11:49.176005 2026-04-14 16:11:49.176005 -797 opp-pending 287 322 2026-04-14 16:11:49.180435 2026-04-14 16:11:49.180435 -798 opp-pending 304 322 2026-04-14 16:11:49.185097 2026-04-14 16:11:49.185097 -799 opp-pending 311 322 2026-04-14 16:11:49.189612 2026-04-14 16:11:49.189612 -800 opp-pending 320 322 2026-04-14 16:11:49.194349 2026-04-14 16:11:49.194349 -801 opp-pending 376 322 2026-04-14 16:11:49.198964 2026-04-14 16:11:49.198964 -802 opp-pending 382 322 2026-04-14 16:11:49.203548 2026-04-14 16:11:49.203548 -803 opp-pending 386 322 2026-04-14 16:11:49.207912 2026-04-14 16:11:49.207912 -804 opp-pending 444 322 2026-04-14 16:11:49.212208 2026-04-14 16:11:49.212208 -805 opp-pending 473 322 2026-04-14 16:11:49.216384 2026-04-14 16:11:49.216384 -806 opp-pending 474 322 2026-04-14 16:11:49.220429 2026-04-14 16:11:49.220429 -807 opp-pending 503 322 2026-04-14 16:11:49.224465 2026-04-14 16:11:49.224465 -808 opp-pending 504 322 2026-04-14 16:11:49.228598 2026-04-14 16:11:49.228598 -809 opp-pending 529 322 2026-04-14 16:11:49.232842 2026-04-14 16:11:49.232842 -810 opp-pending 530 322 2026-04-14 16:11:49.237621 2026-04-14 16:11:49.237621 -811 opp-active 643 322 2026-04-14 16:11:49.242321 2026-04-14 16:11:49.242321 -812 opp-pending 767 322 2026-04-14 16:11:49.246748 2026-04-14 16:11:49.246748 -813 opp-pending 769 322 2026-04-14 16:11:49.250985 2026-04-14 16:11:49.250985 -814 opp-pending 265 327 2026-04-14 16:11:49.858093 2026-04-14 16:11:49.858093 -815 opp-pending 657 330 2026-04-14 16:11:50.317176 2026-04-14 16:11:50.317176 -816 opp-pending 51 333 2026-04-14 16:11:51.032932 2026-04-14 16:11:51.032932 -817 opp-pending 383 333 2026-04-14 16:11:51.037203 2026-04-14 16:11:51.037203 -818 opp-pending 228 334 2026-04-14 16:11:51.212896 2026-04-14 16:11:51.212896 -819 opp-pending 238 334 2026-04-14 16:11:51.218183 2026-04-14 16:11:51.218183 -820 opp-pending 345 334 2026-04-14 16:11:51.222098 2026-04-14 16:11:51.222098 -821 opp-pending 355 334 2026-04-14 16:11:51.225956 2026-04-14 16:11:51.225956 -822 opp-pending 357 334 2026-04-14 16:11:51.230177 2026-04-14 16:11:51.230177 -823 opp-pending 452 334 2026-04-14 16:11:51.234547 2026-04-14 16:11:51.234547 -824 opp-pending 456 334 2026-04-14 16:11:51.238569 2026-04-14 16:11:51.238569 -825 opp-pending 475 334 2026-04-14 16:11:51.242772 2026-04-14 16:11:51.242772 -826 opp-pending 501 334 2026-04-14 16:11:51.24716 2026-04-14 16:11:51.24716 -827 opp-pending 539 334 2026-04-14 16:11:51.251325 2026-04-14 16:11:51.251325 -828 opp-pending 546 334 2026-04-14 16:11:51.2554 2026-04-14 16:11:51.2554 -829 opp-pending 570 334 2026-04-14 16:11:51.259596 2026-04-14 16:11:51.259596 -830 opp-pending 617 334 2026-04-14 16:11:51.263929 2026-04-14 16:11:51.263929 -831 opp-pending 623 334 2026-04-14 16:11:51.267927 2026-04-14 16:11:51.267927 -832 opp-pending 773 334 2026-04-14 16:11:51.271893 2026-04-14 16:11:51.271893 -833 opp-pending 526 335 2026-04-14 16:11:51.408324 2026-04-14 16:11:51.408324 -834 opp-pending 52 337 2026-04-14 16:11:51.634628 2026-04-14 16:11:51.634628 -835 opp-pending 204 337 2026-04-14 16:11:51.638597 2026-04-14 16:11:51.638597 -836 opp-pending 265 338 2026-04-14 16:11:51.739175 2026-04-14 16:11:51.739175 -837 opp-pending 215 338 2026-04-14 16:11:51.743292 2026-04-14 16:11:51.743292 -838 opp-pending 235 338 2026-04-14 16:11:51.7472 2026-04-14 16:11:51.7472 -839 opp-pending 284 338 2026-04-14 16:11:51.751003 2026-04-14 16:11:51.751003 -840 opp-pending 254 338 2026-04-14 16:11:51.754918 2026-04-14 16:11:51.754918 -841 opp-pending 388 338 2026-04-14 16:11:51.75917 2026-04-14 16:11:51.75917 -842 opp-pending 441 338 2026-04-14 16:11:51.763186 2026-04-14 16:11:51.763186 -843 opp-pending 448 338 2026-04-14 16:11:51.767126 2026-04-14 16:11:51.767126 -844 opp-pending 459 338 2026-04-14 16:11:51.771387 2026-04-14 16:11:51.771387 -845 opp-pending 511 338 2026-04-14 16:11:51.775327 2026-04-14 16:11:51.775327 -846 opp-pending 645 338 2026-04-14 16:11:51.779432 2026-04-14 16:11:51.779432 -847 opp-pending 278 339 2026-04-14 16:11:51.871429 2026-04-14 16:11:51.871429 -848 opp-pending 356 339 2026-04-14 16:11:51.875377 2026-04-14 16:11:51.875377 -849 opp-pending 3 340 2026-04-14 16:11:52.010295 2026-04-14 16:11:52.010295 -850 opp-pending 317 340 2026-04-14 16:11:52.014868 2026-04-14 16:11:52.014868 -851 opp-pending 236 347 2026-04-14 16:11:53.168588 2026-04-14 16:11:53.168588 -852 opp-pending 198 348 2026-04-14 16:11:53.330435 2026-04-14 16:11:53.330435 -853 opp-pending 218 350 2026-04-14 16:11:53.607035 2026-04-14 16:11:53.607035 -854 opp-pending 3 351 2026-04-14 16:11:53.701607 2026-04-14 16:11:53.701607 -855 opp-pending 422 351 2026-04-14 16:11:53.706466 2026-04-14 16:11:53.706466 -856 opp-pending 631 351 2026-04-14 16:11:53.71183 2026-04-14 16:11:53.71183 -857 opp-pending 531 352 2026-04-14 16:11:53.884901 2026-04-14 16:11:53.884901 -858 opp-pending 52 355 2026-04-14 16:11:54.229658 2026-04-14 16:11:54.229658 -859 opp-pending 265 355 2026-04-14 16:11:54.233949 2026-04-14 16:11:54.233949 -860 opp-pending 242 355 2026-04-14 16:11:54.238245 2026-04-14 16:11:54.238245 -861 opp-pending 243 355 2026-04-14 16:11:54.242122 2026-04-14 16:11:54.242122 -862 opp-pending 244 355 2026-04-14 16:11:54.246014 2026-04-14 16:11:54.246014 -863 opp-pending 290 355 2026-04-14 16:11:54.250239 2026-04-14 16:11:54.250239 -864 opp-pending 291 355 2026-04-14 16:11:54.254208 2026-04-14 16:11:54.254208 -865 opp-pending 448 355 2026-04-14 16:11:54.258318 2026-04-14 16:11:54.258318 -866 opp-pending 317 356 2026-04-14 16:11:54.420481 2026-04-14 16:11:54.420481 -867 opp-pending 229 357 2026-04-14 16:11:54.610206 2026-04-14 16:11:54.610206 -868 opp-pending 230 357 2026-04-14 16:11:54.61442 2026-04-14 16:11:54.61442 -869 opp-pending 238 357 2026-04-14 16:11:54.618574 2026-04-14 16:11:54.618574 -870 opp-pending 531 360 2026-04-14 16:11:54.977571 2026-04-14 16:11:54.977571 -871 opp-pending 531 361 2026-04-14 16:11:55.114407 2026-04-14 16:11:55.114407 -872 opp-pending 274 362 2026-04-14 16:11:55.298982 2026-04-14 16:11:55.298982 -873 opp-pending 279 362 2026-04-14 16:11:55.303005 2026-04-14 16:11:55.303005 -874 opp-pending 236 362 2026-04-14 16:11:55.306978 2026-04-14 16:11:55.306978 -875 opp-pending 255 362 2026-04-14 16:11:55.310975 2026-04-14 16:11:55.310975 -876 opp-pending 286 362 2026-04-14 16:11:55.31495 2026-04-14 16:11:55.31495 -877 opp-pending 287 362 2026-04-14 16:11:55.319021 2026-04-14 16:11:55.319021 -878 opp-pending 311 362 2026-04-14 16:11:55.323136 2026-04-14 16:11:55.323136 -879 opp-pending 345 362 2026-04-14 16:11:55.327392 2026-04-14 16:11:55.327392 -880 opp-pending 376 362 2026-04-14 16:11:55.331302 2026-04-14 16:11:55.331302 -881 opp-pending 382 362 2026-04-14 16:11:55.335512 2026-04-14 16:11:55.335512 -882 opp-pending 402 362 2026-04-14 16:11:55.339991 2026-04-14 16:11:55.339991 -883 opp-pending 408 362 2026-04-14 16:11:55.344135 2026-04-14 16:11:55.344135 -884 opp-pending 439 362 2026-04-14 16:11:55.348624 2026-04-14 16:11:55.348624 -885 opp-pending 444 362 2026-04-14 16:11:55.352827 2026-04-14 16:11:55.352827 -886 opp-pending 461 362 2026-04-14 16:11:55.357085 2026-04-14 16:11:55.357085 -887 opp-pending 464 362 2026-04-14 16:11:55.361287 2026-04-14 16:11:55.361287 -888 opp-pending 510 362 2026-04-14 16:11:55.365272 2026-04-14 16:11:55.365272 -889 opp-matched 564 362 2026-04-14 16:11:55.369415 2026-04-14 16:11:55.369415 -890 opp-pending 574 362 2026-04-14 16:11:55.373971 2026-04-14 16:11:55.373971 -891 opp-pending 597 362 2026-04-14 16:11:55.378297 2026-04-14 16:11:55.378297 -892 opp-pending 601 362 2026-04-14 16:11:55.382568 2026-04-14 16:11:55.382568 -893 opp-pending 615 362 2026-04-14 16:11:55.38686 2026-04-14 16:11:55.38686 -894 opp-pending 674 362 2026-04-14 16:11:55.390931 2026-04-14 16:11:55.390931 -895 opp-pending 737 362 2026-04-14 16:11:55.394749 2026-04-14 16:11:55.394749 -896 opp-pending 747 362 2026-04-14 16:11:55.398584 2026-04-14 16:11:55.398584 -897 opp-pending 766 362 2026-04-14 16:11:55.402544 2026-04-14 16:11:55.402544 -898 opp-pending 389 363 2026-04-14 16:11:55.664572 2026-04-14 16:11:55.664572 -899 opp-pending 496 363 2026-04-14 16:11:55.668592 2026-04-14 16:11:55.668592 -900 opp-pending 531 363 2026-04-14 16:11:55.672781 2026-04-14 16:11:55.672781 -901 opp-pending 535 363 2026-04-14 16:11:55.67684 2026-04-14 16:11:55.67684 -902 opp-pending 280 365 2026-04-14 16:11:55.956331 2026-04-14 16:11:55.956331 -903 opp-pending 282 365 2026-04-14 16:11:55.96039 2026-04-14 16:11:55.96039 -904 opp-pending 241 365 2026-04-14 16:11:55.964455 2026-04-14 16:11:55.964455 -905 opp-pending 251 365 2026-04-14 16:11:55.968464 2026-04-14 16:11:55.968464 -906 opp-pending 253 365 2026-04-14 16:11:55.972433 2026-04-14 16:11:55.972433 -907 opp-pending 285 365 2026-04-14 16:11:55.976354 2026-04-14 16:11:55.976354 -908 opp-pending 303 365 2026-04-14 16:11:55.980566 2026-04-14 16:11:55.980566 -909 opp-pending 343 365 2026-04-14 16:11:55.984962 2026-04-14 16:11:55.984962 -910 opp-pending 387 365 2026-04-14 16:11:55.989306 2026-04-14 16:11:55.989306 -911 opp-pending 421 365 2026-04-14 16:11:55.993601 2026-04-14 16:11:55.993601 -912 opp-pending 460 365 2026-04-14 16:11:55.998127 2026-04-14 16:11:55.998127 -913 opp-pending 495 365 2026-04-14 16:11:56.002417 2026-04-14 16:11:56.002417 -914 opp-pending 514 365 2026-04-14 16:11:56.006871 2026-04-14 16:11:56.006871 -915 opp-pending 324 366 2026-04-14 16:11:56.13202 2026-04-14 16:11:56.13202 -916 opp-pending 357 369 2026-04-14 16:11:56.549404 2026-04-14 16:11:56.549404 -917 opp-pending 277 370 2026-04-14 16:11:56.718233 2026-04-14 16:11:56.718233 -918 opp-pending 322 370 2026-04-14 16:11:56.722966 2026-04-14 16:11:56.722966 -919 opp-pending 264 374 2026-04-14 16:11:57.235972 2026-04-14 16:11:57.235972 -920 opp-pending 317 374 2026-04-14 16:11:57.239909 2026-04-14 16:11:57.239909 -921 opp-pending 278 375 2026-04-14 16:11:57.357885 2026-04-14 16:11:57.357885 -922 opp-pending 296 377 2026-04-14 16:11:57.699201 2026-04-14 16:11:57.699201 -923 opp-pending 278 378 2026-04-14 16:11:57.980498 2026-04-14 16:11:57.980498 -924 opp-pending 283 378 2026-04-14 16:11:57.985175 2026-04-14 16:11:57.985175 -925 opp-pending 323 378 2026-04-14 16:11:57.989625 2026-04-14 16:11:57.989625 -926 opp-pending 391 378 2026-04-14 16:11:57.994439 2026-04-14 16:11:57.994439 -927 opp-pending 456 378 2026-04-14 16:11:57.99863 2026-04-14 16:11:57.99863 -928 opp-pending 475 378 2026-04-14 16:11:58.002967 2026-04-14 16:11:58.002967 -929 opp-pending 540 378 2026-04-14 16:11:58.007322 2026-04-14 16:11:58.007322 -930 opp-pending 570 378 2026-04-14 16:11:58.011464 2026-04-14 16:11:58.011464 -931 opp-pending 630 378 2026-04-14 16:11:58.015934 2026-04-14 16:11:58.015934 -932 opp-pending 726 378 2026-04-14 16:11:58.019859 2026-04-14 16:11:58.019859 -933 opp-pending 773 378 2026-04-14 16:11:58.023831 2026-04-14 16:11:58.023831 -934 opp-pending 391 379 2026-04-14 16:11:58.272969 2026-04-14 16:11:58.272969 -935 opp-pending 573 380 2026-04-14 16:11:58.439903 2026-04-14 16:11:58.439903 -936 opp-pending 313 383 2026-04-14 16:11:58.810332 2026-04-14 16:11:58.810332 -937 opp-matched 265 385 2026-04-14 16:11:58.94309 2026-04-14 16:11:58.94309 -938 opp-pending 300 385 2026-04-14 16:11:58.947081 2026-04-14 16:11:58.947081 -939 opp-pending 46 387 2026-04-14 16:11:59.418579 2026-04-14 16:11:59.418579 -940 opp-pending 272 387 2026-04-14 16:11:59.422463 2026-04-14 16:11:59.422463 -941 opp-pending 234 387 2026-04-14 16:11:59.426489 2026-04-14 16:11:59.426489 -942 opp-pending 317 387 2026-04-14 16:11:59.430636 2026-04-14 16:11:59.430636 -943 opp-pending 420 387 2026-04-14 16:11:59.434633 2026-04-14 16:11:59.434633 -944 opp-pending 423 387 2026-04-14 16:11:59.43864 2026-04-14 16:11:59.43864 -945 opp-pending 427 387 2026-04-14 16:11:59.442953 2026-04-14 16:11:59.442953 -946 opp-pending 307 388 2026-04-14 16:11:59.60623 2026-04-14 16:11:59.60623 -947 opp-pending 743 390 2026-04-14 16:11:59.883193 2026-04-14 16:11:59.883193 -948 opp-pending 531 391 2026-04-14 16:12:00.305946 2026-04-14 16:12:00.305946 -949 opp-matched 341 392 2026-04-14 16:12:00.555642 2026-04-14 16:12:00.555642 -950 opp-pending 342 393 2026-04-14 16:12:00.745613 2026-04-14 16:12:00.745613 -951 opp-pending 198 394 2026-04-14 16:12:00.942171 2026-04-14 16:12:00.942171 -952 opp-pending 279 394 2026-04-14 16:12:00.946307 2026-04-14 16:12:00.946307 -953 opp-pending 342 394 2026-04-14 16:12:00.950316 2026-04-14 16:12:00.950316 -954 opp-pending 444 394 2026-04-14 16:12:00.954564 2026-04-14 16:12:00.954564 -955 opp-pending 482 394 2026-04-14 16:12:00.959056 2026-04-14 16:12:00.959056 -956 opp-matched 430 398 2026-04-14 16:12:02.28053 2026-04-14 16:12:02.28053 -957 opp-pending 313 399 2026-04-14 16:12:02.508501 2026-04-14 16:12:02.508501 -958 opp-pending 239 401 2026-04-14 16:12:02.879036 2026-04-14 16:12:02.879036 -959 opp-active 260 401 2026-04-14 16:12:02.889594 2026-04-14 16:12:02.889594 -961 opp-pending 137 402 2026-04-14 16:12:03.157661 2026-04-14 16:12:03.157661 -962 opp-active 239 402 2026-04-14 16:12:03.162695 2026-04-14 16:12:03.162695 -963 opp-pending 14 403 2026-04-14 16:12:03.363623 2026-04-14 16:12:03.363623 -964 opp-pending 218 403 2026-04-14 16:12:03.368767 2026-04-14 16:12:03.368767 -965 opp-pending 245 403 2026-04-14 16:12:03.373529 2026-04-14 16:12:03.373529 -966 opp-pending 657 403 2026-04-14 16:12:03.379097 2026-04-14 16:12:03.379097 -967 opp-pending 262 404 2026-04-14 16:12:03.532467 2026-04-14 16:12:03.532467 -968 opp-pending 193 404 2026-04-14 16:12:03.537035 2026-04-14 16:12:03.537035 -969 opp-pending 475 405 2026-04-14 16:12:03.888802 2026-04-14 16:12:03.888802 -970 opp-pending 531 405 2026-04-14 16:12:03.893474 2026-04-14 16:12:03.893474 -971 opp-pending 201 406 2026-04-14 16:12:04.037388 2026-04-14 16:12:04.037388 -972 opp-pending 319 407 2026-04-14 16:12:04.214158 2026-04-14 16:12:04.214158 -973 opp-pending 279 409 2026-04-14 16:12:04.380517 2026-04-14 16:12:04.380517 -974 opp-matched 316 409 2026-04-14 16:12:04.384844 2026-04-14 16:12:04.384844 -975 opp-pending 439 409 2026-04-14 16:12:04.38918 2026-04-14 16:12:04.38918 -976 opp-pending 461 409 2026-04-14 16:12:04.393766 2026-04-14 16:12:04.393766 -977 opp-pending 464 409 2026-04-14 16:12:04.398417 2026-04-14 16:12:04.398417 -978 opp-pending 273 411 2026-04-14 16:12:04.746652 2026-04-14 16:12:04.746652 -979 opp-pending 622 411 2026-04-14 16:12:04.75066 2026-04-14 16:12:04.75066 -980 opp-pending 426 412 2026-04-14 16:12:04.900396 2026-04-14 16:12:04.900396 -981 opp-matched 734 413 2026-04-14 16:12:05.083401 2026-04-14 16:12:05.083401 -982 opp-pending 217 415 2026-04-14 16:12:05.44989 2026-04-14 16:12:05.44989 -983 opp-pending 324 415 2026-04-14 16:12:05.454497 2026-04-14 16:12:05.454497 -984 opp-pending 343 415 2026-04-14 16:12:05.458951 2026-04-14 16:12:05.458951 -985 opp-pending 279 418 2026-04-14 16:12:05.898353 2026-04-14 16:12:05.898353 -986 opp-pending 239 418 2026-04-14 16:12:05.903496 2026-04-14 16:12:05.903496 -987 opp-matched 123 419 2026-04-14 16:12:05.980204 2026-04-14 16:12:05.980204 -988 opp-pending 345 422 2026-04-14 16:12:06.635809 2026-04-14 16:12:06.635809 -989 opp-pending 350 422 2026-04-14 16:12:06.640539 2026-04-14 16:12:06.640539 -990 opp-pending 494 422 2026-04-14 16:12:06.644823 2026-04-14 16:12:06.644823 -991 opp-pending 127 423 2026-04-14 16:12:06.761024 2026-04-14 16:12:06.761024 -992 opp-pending 213 426 2026-04-14 16:12:07.259838 2026-04-14 16:12:07.259838 -993 opp-pending 571 427 2026-04-14 16:12:07.478221 2026-04-14 16:12:07.478221 -994 opp-pending 193 428 2026-04-14 16:12:07.62327 2026-04-14 16:12:07.62327 -995 opp-pending 531 430 2026-04-14 16:12:08.18459 2026-04-14 16:12:08.18459 -996 opp-pending 14 431 2026-04-14 16:12:08.405561 2026-04-14 16:12:08.405561 -997 opp-pending 382 432 2026-04-14 16:12:08.625436 2026-04-14 16:12:08.625436 -998 opp-pending 439 432 2026-04-14 16:12:08.632054 2026-04-14 16:12:08.632054 -999 opp-pending 444 432 2026-04-14 16:12:08.636356 2026-04-14 16:12:08.636356 -1000 opp-pending 461 432 2026-04-14 16:12:08.64048 2026-04-14 16:12:08.64048 -1001 opp-pending 464 432 2026-04-14 16:12:08.644875 2026-04-14 16:12:08.644875 -1002 opp-pending 482 432 2026-04-14 16:12:08.649259 2026-04-14 16:12:08.649259 -1003 opp-pending 491 432 2026-04-14 16:12:08.653586 2026-04-14 16:12:08.653586 -1004 opp-pending 137 433 2026-04-14 16:12:08.840364 2026-04-14 16:12:08.840364 -1005 opp-pending 391 433 2026-04-14 16:12:08.844483 2026-04-14 16:12:08.844483 -1006 opp-pending 546 433 2026-04-14 16:12:08.848552 2026-04-14 16:12:08.848552 -1007 opp-pending 570 433 2026-04-14 16:12:08.852474 2026-04-14 16:12:08.852474 -1008 opp-pending 617 433 2026-04-14 16:12:08.856503 2026-04-14 16:12:08.856503 -1009 opp-pending 625 433 2026-04-14 16:12:08.860455 2026-04-14 16:12:08.860455 -1010 opp-pending 205 434 2026-04-14 16:12:08.99735 2026-04-14 16:12:08.99735 -1011 opp-pending 356 436 2026-04-14 16:12:09.360613 2026-04-14 16:12:09.360613 -1012 opp-pending 201 437 2026-04-14 16:12:09.58643 2026-04-14 16:12:09.58643 -1013 opp-pending 187 438 2026-04-14 16:12:09.878304 2026-04-14 16:12:09.878304 -1014 opp-pending 252 438 2026-04-14 16:12:09.88238 2026-04-14 16:12:09.88238 -1015 opp-pending 357 440 2026-04-14 16:12:10.271171 2026-04-14 16:12:10.271171 -1016 opp-pending 531 440 2026-04-14 16:12:10.275633 2026-04-14 16:12:10.275633 -1017 opp-pending 562 440 2026-04-14 16:12:10.280314 2026-04-14 16:12:10.280314 -1018 opp-pending 573 440 2026-04-14 16:12:10.284702 2026-04-14 16:12:10.284702 -1019 opp-pending 357 442 2026-04-14 16:12:10.58435 2026-04-14 16:12:10.58435 -1020 opp-pending 501 442 2026-04-14 16:12:10.588651 2026-04-14 16:12:10.588651 -1021 opp-pending 575 442 2026-04-14 16:12:10.593106 2026-04-14 16:12:10.593106 -1022 opp-pending 452 445 2026-04-14 16:12:11.158993 2026-04-14 16:12:11.158993 -1023 opp-pending 539 445 2026-04-14 16:12:11.163065 2026-04-14 16:12:11.163065 -1024 opp-pending 298 446 2026-04-14 16:12:11.302432 2026-04-14 16:12:11.302432 -1025 opp-pending 325 447 2026-04-14 16:12:11.456402 2026-04-14 16:12:11.456402 -1026 opp-pending 362 448 2026-04-14 16:12:11.608787 2026-04-14 16:12:11.608787 -1027 opp-pending 14 449 2026-04-14 16:12:11.74748 2026-04-14 16:12:11.74748 -1028 opp-pending 363 450 2026-04-14 16:12:11.898127 2026-04-14 16:12:11.898127 -1029 opp-pending 51 452 2026-04-14 16:12:12.151526 2026-04-14 16:12:12.151526 -1030 opp-pending 12 454 2026-04-14 16:12:12.393272 2026-04-14 16:12:12.393272 -1031 opp-pending 441 456 2026-04-14 16:12:12.706633 2026-04-14 16:12:12.706633 -1032 opp-pending 448 456 2026-04-14 16:12:12.711431 2026-04-14 16:12:12.711431 -1033 opp-pending 459 456 2026-04-14 16:12:12.717238 2026-04-14 16:12:12.717238 -1034 opp-pending 476 456 2026-04-14 16:12:12.723102 2026-04-14 16:12:12.723102 -1035 opp-pending 511 456 2026-04-14 16:12:12.727642 2026-04-14 16:12:12.727642 -1036 opp-pending 629 456 2026-04-14 16:12:12.731891 2026-04-14 16:12:12.731891 -1037 opp-pending 307 457 2026-04-14 16:12:12.924036 2026-04-14 16:12:12.924036 -1038 opp-pending 383 457 2026-04-14 16:12:12.928361 2026-04-14 16:12:12.928361 -1039 opp-pending 256 458 2026-04-14 16:12:13.093559 2026-04-14 16:12:13.093559 -1040 opp-pending 401 458 2026-04-14 16:12:13.098182 2026-04-14 16:12:13.098182 -1041 opp-pending 217 460 2026-04-14 16:12:13.372013 2026-04-14 16:12:13.372013 -1042 opp-matched 377 461 2026-04-14 16:12:13.545001 2026-04-14 16:12:13.545001 -1043 opp-pending 389 461 2026-04-14 16:12:13.549236 2026-04-14 16:12:13.549236 -1044 opp-pending 417 461 2026-04-14 16:12:13.553598 2026-04-14 16:12:13.553598 -1045 opp-pending 424 461 2026-04-14 16:12:13.558008 2026-04-14 16:12:13.558008 -1046 opp-pending 427 461 2026-04-14 16:12:13.562262 2026-04-14 16:12:13.562262 -1047 opp-pending 444 461 2026-04-14 16:12:13.566727 2026-04-14 16:12:13.566727 -1048 opp-pending 464 461 2026-04-14 16:12:13.570991 2026-04-14 16:12:13.570991 -1049 opp-pending 482 461 2026-04-14 16:12:13.575258 2026-04-14 16:12:13.575258 -1050 opp-active 487 461 2026-04-14 16:12:13.579642 2026-04-14 16:12:13.579642 -1051 opp-active 496 461 2026-04-14 16:12:13.583894 2026-04-14 16:12:13.583894 -1052 opp-pending 391 462 2026-04-14 16:12:13.711987 2026-04-14 16:12:13.711987 -1053 opp-matched 423 462 2026-04-14 16:12:13.716173 2026-04-14 16:12:13.716173 -1054 opp-pending 416 463 2026-04-14 16:12:13.798009 2026-04-14 16:12:13.798009 -1055 opp-pending 418 463 2026-04-14 16:12:13.801925 2026-04-14 16:12:13.801925 -1056 opp-pending 709 463 2026-04-14 16:12:13.805938 2026-04-14 16:12:13.805938 -1057 opp-pending 430 467 2026-04-14 16:12:14.425324 2026-04-14 16:12:14.425324 -1058 opp-pending 377 469 2026-04-14 16:12:14.789087 2026-04-14 16:12:14.789087 -1059 opp-pending 388 469 2026-04-14 16:12:14.793068 2026-04-14 16:12:14.793068 -1060 opp-pending 441 469 2026-04-14 16:12:14.797243 2026-04-14 16:12:14.797243 -1061 opp-pending 448 469 2026-04-14 16:12:14.801222 2026-04-14 16:12:14.801222 -1062 opp-pending 459 469 2026-04-14 16:12:14.805237 2026-04-14 16:12:14.805237 -1063 opp-pending 476 469 2026-04-14 16:12:14.809271 2026-04-14 16:12:14.809271 -1064 opp-pending 12 471 2026-04-14 16:12:15.182991 2026-04-14 16:12:15.182991 -1065 opp-pending 374 471 2026-04-14 16:12:15.187316 2026-04-14 16:12:15.187316 -1066 opp-pending 388 471 2026-04-14 16:12:15.191283 2026-04-14 16:12:15.191283 -1067 opp-pending 411 471 2026-04-14 16:12:15.195187 2026-04-14 16:12:15.195187 -1068 opp-pending 448 471 2026-04-14 16:12:15.198985 2026-04-14 16:12:15.198985 -1069 opp-pending 476 471 2026-04-14 16:12:15.203163 2026-04-14 16:12:15.203163 -1070 opp-pending 511 471 2026-04-14 16:12:15.207706 2026-04-14 16:12:15.207706 -1071 opp-pending 377 472 2026-04-14 16:12:15.377919 2026-04-14 16:12:15.377919 -1072 opp-pending 417 473 2026-04-14 16:12:15.54601 2026-04-14 16:12:15.54601 -1073 opp-pending 424 473 2026-04-14 16:12:15.550296 2026-04-14 16:12:15.550296 -1074 opp-pending 439 473 2026-04-14 16:12:15.554545 2026-04-14 16:12:15.554545 -1075 opp-pending 461 473 2026-04-14 16:12:15.558685 2026-04-14 16:12:15.558685 -1076 opp-pending 464 473 2026-04-14 16:12:15.563422 2026-04-14 16:12:15.563422 -1077 opp-pending 640 473 2026-04-14 16:12:15.567584 2026-04-14 16:12:15.567584 -1078 opp-pending 642 473 2026-04-14 16:12:15.571651 2026-04-14 16:12:15.571651 -1079 opp-pending 416 475 2026-04-14 16:12:15.863597 2026-04-14 16:12:15.863597 -1080 opp-pending 418 475 2026-04-14 16:12:15.867958 2026-04-14 16:12:15.867958 -1081 opp-pending 389 476 2026-04-14 16:12:15.993112 2026-04-14 16:12:15.993112 -1082 opp-pending 423 476 2026-04-14 16:12:15.997503 2026-04-14 16:12:15.997503 -1083 opp-pending 464 476 2026-04-14 16:12:16.001557 2026-04-14 16:12:16.001557 -1084 opp-pending 556 476 2026-04-14 16:12:16.006145 2026-04-14 16:12:16.006145 -1085 opp-pending 700 478 2026-04-14 16:12:16.300738 2026-04-14 16:12:16.300738 -1086 opp-pending 392 479 2026-04-14 16:12:16.445204 2026-04-14 16:12:16.445204 -1087 opp-pending 432 479 2026-04-14 16:12:16.449367 2026-04-14 16:12:16.449367 -1088 opp-pending 504 479 2026-04-14 16:12:16.453573 2026-04-14 16:12:16.453573 -1089 opp-pending 362 480 2026-04-14 16:12:16.664004 2026-04-14 16:12:16.664004 -1090 opp-pending 621 480 2026-04-14 16:12:16.66838 2026-04-14 16:12:16.66838 -1091 opp-pending 417 481 2026-04-14 16:12:16.997601 2026-04-14 16:12:16.997601 -1092 opp-pending 424 481 2026-04-14 16:12:17.002497 2026-04-14 16:12:17.002497 -1093 opp-pending 486 481 2026-04-14 16:12:17.006886 2026-04-14 16:12:17.006886 -1094 opp-pending 488 481 2026-04-14 16:12:17.010975 2026-04-14 16:12:17.010975 -1095 opp-pending 502 481 2026-04-14 16:12:17.015103 2026-04-14 16:12:17.015103 -1096 opp-pending 503 481 2026-04-14 16:12:17.019077 2026-04-14 16:12:17.019077 -1097 opp-pending 521 481 2026-04-14 16:12:17.023128 2026-04-14 16:12:17.023128 -1098 opp-pending 530 481 2026-04-14 16:12:17.027245 2026-04-14 16:12:17.027245 -1099 opp-pending 581 481 2026-04-14 16:12:17.031245 2026-04-14 16:12:17.031245 -1100 opp-pending 592 481 2026-04-14 16:12:17.035233 2026-04-14 16:12:17.035233 -1101 opp-pending 603 481 2026-04-14 16:12:17.039384 2026-04-14 16:12:17.039384 -1102 opp-pending 647 481 2026-04-14 16:12:17.043259 2026-04-14 16:12:17.043259 -1103 opp-pending 675 481 2026-04-14 16:12:17.047359 2026-04-14 16:12:17.047359 -1104 opp-pending 680 481 2026-04-14 16:12:17.051374 2026-04-14 16:12:17.051374 -1105 opp-pending 710 481 2026-04-14 16:12:17.055311 2026-04-14 16:12:17.055311 -1106 opp-pending 748 481 2026-04-14 16:12:17.059145 2026-04-14 16:12:17.059145 -1107 opp-pending 766 481 2026-04-14 16:12:17.062963 2026-04-14 16:12:17.062963 -1108 opp-pending 786 481 2026-04-14 16:12:17.066938 2026-04-14 16:12:17.066938 -1109 opp-pending 347 483 2026-04-14 16:12:17.499691 2026-04-14 16:12:17.499691 -1110 opp-pending 416 483 2026-04-14 16:12:17.503836 2026-04-14 16:12:17.503836 -1111 opp-pending 418 483 2026-04-14 16:12:17.507913 2026-04-14 16:12:17.507913 -1112 opp-pending 406 484 2026-04-14 16:12:17.720813 2026-04-14 16:12:17.720813 -1113 opp-pending 452 484 2026-04-14 16:12:17.724846 2026-04-14 16:12:17.724846 -1114 opp-pending 374 489 2026-04-14 16:12:18.679574 2026-04-14 16:12:18.679574 -1115 opp-pending 401 489 2026-04-14 16:12:18.683637 2026-04-14 16:12:18.683637 -1116 opp-pending 406 489 2026-04-14 16:12:18.687997 2026-04-14 16:12:18.687997 -1117 opp-pending 424 490 2026-04-14 16:12:18.915317 2026-04-14 16:12:18.915317 -1118 opp-pending 430 492 2026-04-14 16:12:19.18858 2026-04-14 16:12:19.18858 -1119 opp-pending 428 494 2026-04-14 16:12:19.45496 2026-04-14 16:12:19.45496 -1120 opp-pending 416 497 2026-04-14 16:12:19.91497 2026-04-14 16:12:19.91497 -1121 opp-pending 418 497 2026-04-14 16:12:19.919047 2026-04-14 16:12:19.919047 -1122 opp-pending 523 497 2026-04-14 16:12:19.92308 2026-04-14 16:12:19.92308 -1123 opp-pending 694 497 2026-04-14 16:12:19.927191 2026-04-14 16:12:19.927191 -1124 opp-pending 407 498 2026-04-14 16:12:20.044833 2026-04-14 16:12:20.044833 -1125 opp-pending 417 498 2026-04-14 16:12:20.049461 2026-04-14 16:12:20.049461 -1126 opp-pending 420 498 2026-04-14 16:12:20.053773 2026-04-14 16:12:20.053773 -1127 opp-pending 423 498 2026-04-14 16:12:20.058288 2026-04-14 16:12:20.058288 -1128 opp-pending 427 498 2026-04-14 16:12:20.062262 2026-04-14 16:12:20.062262 -1129 opp-pending 431 498 2026-04-14 16:12:20.066351 2026-04-14 16:12:20.066351 -1130 opp-pending 439 498 2026-04-14 16:12:20.07314 2026-04-14 16:12:20.07314 -1131 opp-pending 444 498 2026-04-14 16:12:20.077384 2026-04-14 16:12:20.077384 -1132 opp-active 455 498 2026-04-14 16:12:20.081556 2026-04-14 16:12:20.081556 -1133 opp-pending 461 498 2026-04-14 16:12:20.085885 2026-04-14 16:12:20.085885 -1134 opp-pending 464 498 2026-04-14 16:12:20.090327 2026-04-14 16:12:20.090327 -1135 opp-pending 486 498 2026-04-14 16:12:20.094517 2026-04-14 16:12:20.094517 -1136 opp-pending 497 498 2026-04-14 16:12:20.098953 2026-04-14 16:12:20.098953 -1137 opp-active 587 498 2026-04-14 16:12:20.103083 2026-04-14 16:12:20.103083 -1138 opp-active 638 498 2026-04-14 16:12:20.107316 2026-04-14 16:12:20.107316 -1139 opp-active 672 498 2026-04-14 16:12:20.111562 2026-04-14 16:12:20.111562 -1140 opp-pending 420 499 2026-04-14 16:12:20.327142 2026-04-14 16:12:20.327142 -1141 opp-pending 423 499 2026-04-14 16:12:20.331255 2026-04-14 16:12:20.331255 -1142 opp-pending 427 499 2026-04-14 16:12:20.335335 2026-04-14 16:12:20.335335 -1143 opp-pending 539 499 2026-04-14 16:12:20.33928 2026-04-14 16:12:20.33928 -1144 opp-pending 501 502 2026-04-14 16:12:20.726981 2026-04-14 16:12:20.726981 -1145 opp-pending 14 503 2026-04-14 16:12:20.904136 2026-04-14 16:12:20.904136 -1146 opp-pending 239 503 2026-04-14 16:12:20.908246 2026-04-14 16:12:20.908246 -1147 opp-matched 423 503 2026-04-14 16:12:20.912206 2026-04-14 16:12:20.912206 -1148 opp-pending 307 504 2026-04-14 16:12:21.057988 2026-04-14 16:12:21.057988 -1149 opp-pending 416 504 2026-04-14 16:12:21.062172 2026-04-14 16:12:21.062172 -1150 opp-pending 475 504 2026-04-14 16:12:21.066285 2026-04-14 16:12:21.066285 -1151 opp-pending 51 505 2026-04-14 16:12:21.343928 2026-04-14 16:12:21.343928 -1152 opp-pending 373 505 2026-04-14 16:12:21.348326 2026-04-14 16:12:21.348326 -1153 opp-pending 431 505 2026-04-14 16:12:21.353418 2026-04-14 16:12:21.353418 -1154 opp-pending 427 506 2026-04-14 16:12:21.628703 2026-04-14 16:12:21.628703 -1155 opp-pending 437 506 2026-04-14 16:12:21.632934 2026-04-14 16:12:21.632934 -1156 opp-pending 570 507 2026-04-14 16:12:21.854494 2026-04-14 16:12:21.854494 -1157 opp-pending 623 507 2026-04-14 16:12:21.858578 2026-04-14 16:12:21.858578 -1158 opp-pending 328 508 2026-04-14 16:12:22.081567 2026-04-14 16:12:22.081567 -1159 opp-pending 447 509 2026-04-14 16:12:22.264597 2026-04-14 16:12:22.264597 -1160 opp-pending 224 511 2026-04-14 16:12:22.63698 2026-04-14 16:12:22.63698 -1161 opp-pending 222 512 2026-04-14 16:12:22.782015 2026-04-14 16:12:22.782015 -1162 opp-pending 589 512 2026-04-14 16:12:22.786131 2026-04-14 16:12:22.786131 -1163 opp-pending 318 513 2026-04-14 16:12:22.955415 2026-04-14 16:12:22.955415 -1164 opp-pending 307 514 2026-04-14 16:12:23.163938 2026-04-14 16:12:23.163938 -1165 opp-pending 442 514 2026-04-14 16:12:23.176533 2026-04-14 16:12:23.176533 -1166 opp-pending 452 514 2026-04-14 16:12:23.181055 2026-04-14 16:12:23.181055 -1167 opp-pending 453 514 2026-04-14 16:12:23.185933 2026-04-14 16:12:23.185933 -1168 opp-pending 438 518 2026-04-14 16:12:23.774264 2026-04-14 16:12:23.774264 -1169 opp-pending 486 518 2026-04-14 16:12:23.778687 2026-04-14 16:12:23.778687 -1170 opp-pending 488 518 2026-04-14 16:12:23.782938 2026-04-14 16:12:23.782938 -1171 opp-pending 531 518 2026-04-14 16:12:23.78708 2026-04-14 16:12:23.78708 -1172 opp-pending 654 518 2026-04-14 16:12:23.791083 2026-04-14 16:12:23.791083 -1173 opp-pending 710 518 2026-04-14 16:12:23.795218 2026-04-14 16:12:23.795218 -1174 opp-pending 444 522 2026-04-14 16:12:24.684461 2026-04-14 16:12:24.684461 -1175 opp-pending 494 522 2026-04-14 16:12:24.68863 2026-04-14 16:12:24.68863 -1176 opp-pending 531 522 2026-04-14 16:12:24.692588 2026-04-14 16:12:24.692588 -1177 opp-pending 437 524 2026-04-14 16:12:24.95287 2026-04-14 16:12:24.95287 -1178 opp-pending 452 529 2026-04-14 16:12:25.610476 2026-04-14 16:12:25.610476 -1179 opp-pending 681 530 2026-04-14 16:12:25.825738 2026-04-14 16:12:25.825738 -1180 opp-active 414 532 2026-04-14 16:12:26.198292 2026-04-14 16:12:26.198292 -1181 opp-pending 415 532 2026-04-14 16:12:26.202636 2026-04-14 16:12:26.202636 -1182 opp-active 452 533 2026-04-14 16:12:26.491478 2026-04-14 16:12:26.491478 -1183 opp-pending 453 533 2026-04-14 16:12:26.495239 2026-04-14 16:12:26.495239 -1184 opp-pending 577 533 2026-04-14 16:12:26.499257 2026-04-14 16:12:26.499257 -1185 opp-pending 593 533 2026-04-14 16:12:26.503106 2026-04-14 16:12:26.503106 -1186 opp-pending 469 534 2026-04-14 16:12:26.668638 2026-04-14 16:12:26.668638 -1187 opp-matched 406 535 2026-04-14 16:12:26.793147 2026-04-14 16:12:26.793147 -1188 opp-pending 453 535 2026-04-14 16:12:26.797283 2026-04-14 16:12:26.797283 -1189 opp-pending 482 538 2026-04-14 16:12:27.306175 2026-04-14 16:12:27.306175 -1190 opp-pending 486 538 2026-04-14 16:12:27.310055 2026-04-14 16:12:27.310055 -1191 opp-pending 488 538 2026-04-14 16:12:27.314424 2026-04-14 16:12:27.314424 -1192 opp-pending 494 538 2026-04-14 16:12:27.319661 2026-04-14 16:12:27.319661 -1193 opp-pending 510 538 2026-04-14 16:12:27.32389 2026-04-14 16:12:27.32389 -1194 opp-pending 531 538 2026-04-14 16:12:27.328011 2026-04-14 16:12:27.328011 -1195 opp-pending 553 538 2026-04-14 16:12:27.332123 2026-04-14 16:12:27.332123 -1196 opp-pending 653 538 2026-04-14 16:12:27.336129 2026-04-14 16:12:27.336129 -1197 opp-pending 698 538 2026-04-14 16:12:27.340128 2026-04-14 16:12:27.340128 -1198 opp-pending 707 538 2026-04-14 16:12:27.343895 2026-04-14 16:12:27.343895 -1199 opp-pending 482 539 2026-04-14 16:12:27.542906 2026-04-14 16:12:27.542906 -1200 opp-pending 486 539 2026-04-14 16:12:27.546992 2026-04-14 16:12:27.546992 -1201 opp-pending 482 540 2026-04-14 16:12:27.646103 2026-04-14 16:12:27.646103 -1202 opp-pending 486 540 2026-04-14 16:12:27.649996 2026-04-14 16:12:27.649996 -1203 opp-pending 488 540 2026-04-14 16:12:27.65455 2026-04-14 16:12:27.65455 -1204 opp-pending 491 540 2026-04-14 16:12:27.658556 2026-04-14 16:12:27.658556 -1205 opp-pending 503 540 2026-04-14 16:12:27.662589 2026-04-14 16:12:27.662589 -1206 opp-pending 525 540 2026-04-14 16:12:27.666752 2026-04-14 16:12:27.666752 -1207 opp-pending 527 540 2026-04-14 16:12:27.671027 2026-04-14 16:12:27.671027 -1208 opp-pending 541 540 2026-04-14 16:12:27.675331 2026-04-14 16:12:27.675331 -1209 opp-active 564 540 2026-04-14 16:12:27.680044 2026-04-14 16:12:27.680044 -1210 opp-pending 574 540 2026-04-14 16:12:27.684584 2026-04-14 16:12:27.684584 -1211 opp-pending 715 540 2026-04-14 16:12:27.689114 2026-04-14 16:12:27.689114 -1212 opp-pending 737 540 2026-04-14 16:12:27.693775 2026-04-14 16:12:27.693775 -1213 opp-pending 486 541 2026-04-14 16:12:27.91725 2026-04-14 16:12:27.91725 -1214 opp-pending 634 541 2026-04-14 16:12:27.922503 2026-04-14 16:12:27.922503 -1215 opp-pending 531 544 2026-04-14 16:12:28.408583 2026-04-14 16:12:28.408583 -1216 opp-pending 536 544 2026-04-14 16:12:28.413038 2026-04-14 16:12:28.413038 -1217 opp-pending 593 544 2026-04-14 16:12:28.419501 2026-04-14 16:12:28.419501 -1218 opp-pending 687 544 2026-04-14 16:12:28.423888 2026-04-14 16:12:28.423888 -1219 opp-pending 482 545 2026-04-14 16:12:28.683804 2026-04-14 16:12:28.683804 -1220 opp-pending 488 545 2026-04-14 16:12:28.687887 2026-04-14 16:12:28.687887 -1221 opp-pending 491 545 2026-04-14 16:12:28.692564 2026-04-14 16:12:28.692564 -1222 opp-pending 510 545 2026-04-14 16:12:28.69658 2026-04-14 16:12:28.69658 -1223 opp-pending 653 545 2026-04-14 16:12:28.700617 2026-04-14 16:12:28.700617 -1224 opp-pending 413 547 2026-04-14 16:12:28.969334 2026-04-14 16:12:28.969334 -1225 opp-pending 520 547 2026-04-14 16:12:28.973366 2026-04-14 16:12:28.973366 -1226 opp-pending 466 549 2026-04-14 16:12:29.458148 2026-04-14 16:12:29.458148 -1227 opp-pending 467 549 2026-04-14 16:12:29.462485 2026-04-14 16:12:29.462485 -1228 opp-pending 536 549 2026-04-14 16:12:29.466706 2026-04-14 16:12:29.466706 -1229 opp-pending 482 550 2026-04-14 16:12:29.633287 2026-04-14 16:12:29.633287 -1230 opp-pending 486 550 2026-04-14 16:12:29.637854 2026-04-14 16:12:29.637854 -1231 opp-pending 521 550 2026-04-14 16:12:29.642134 2026-04-14 16:12:29.642134 -1232 opp-pending 524 550 2026-04-14 16:12:29.646244 2026-04-14 16:12:29.646244 -1233 opp-pending 525 550 2026-04-14 16:12:29.650615 2026-04-14 16:12:29.650615 -1234 opp-pending 553 550 2026-04-14 16:12:29.654739 2026-04-14 16:12:29.654739 -1235 opp-pending 653 550 2026-04-14 16:12:29.658701 2026-04-14 16:12:29.658701 -1237 opp-pending 482 554 2026-04-14 16:12:30.552376 2026-04-14 16:12:30.552376 -1238 opp-pending 486 554 2026-04-14 16:12:30.556107 2026-04-14 16:12:30.556107 -1239 opp-pending 491 554 2026-04-14 16:12:30.560178 2026-04-14 16:12:30.560178 -1240 opp-pending 601 554 2026-04-14 16:12:30.564178 2026-04-14 16:12:30.564178 -1241 opp-pending 605 554 2026-04-14 16:12:30.568435 2026-04-14 16:12:30.568435 -1242 opp-pending 658 554 2026-04-14 16:12:30.572761 2026-04-14 16:12:30.572761 -1243 opp-pending 707 554 2026-04-14 16:12:30.578144 2026-04-14 16:12:30.578144 -1244 opp-pending 752 554 2026-04-14 16:12:30.582467 2026-04-14 16:12:30.582467 -1245 opp-pending 481 556 2026-04-14 16:12:30.909664 2026-04-14 16:12:30.909664 -1247 opp-pending 472 559 2026-04-14 16:12:31.464943 2026-04-14 16:12:31.464943 -1248 opp-pending 476 559 2026-04-14 16:12:31.469037 2026-04-14 16:12:31.469037 -1249 opp-pending 645 559 2026-04-14 16:12:31.473038 2026-04-14 16:12:31.473038 -1250 opp-pending 472 561 2026-04-14 16:12:31.720319 2026-04-14 16:12:31.720319 -1251 opp-pending 476 561 2026-04-14 16:12:31.724241 2026-04-14 16:12:31.724241 -1252 opp-pending 478 561 2026-04-14 16:12:31.728287 2026-04-14 16:12:31.728287 -1253 opp-pending 511 561 2026-04-14 16:12:31.732669 2026-04-14 16:12:31.732669 -1254 opp-pending 572 561 2026-04-14 16:12:31.736822 2026-04-14 16:12:31.736822 -1255 opp-pending 645 561 2026-04-14 16:12:31.740951 2026-04-14 16:12:31.740951 -1256 opp-pending 489 562 2026-04-14 16:12:32.109067 2026-04-14 16:12:32.109067 -1257 opp-pending 536 562 2026-04-14 16:12:32.113411 2026-04-14 16:12:32.113411 -1258 opp-pending 487 564 2026-04-14 16:12:32.390521 2026-04-14 16:12:32.390521 -1259 opp-pending 314 566 2026-04-14 16:12:32.704704 2026-04-14 16:12:32.704704 -1260 opp-pending 491 566 2026-04-14 16:12:32.708605 2026-04-14 16:12:32.708605 -1261 opp-pending 728 569 2026-04-14 16:12:33.282475 2026-04-14 16:12:33.282475 -1262 opp-pending 278 570 2026-04-14 16:12:33.449555 2026-04-14 16:12:33.449555 -1263 opp-pending 413 572 2026-04-14 16:12:33.920206 2026-04-14 16:12:33.920206 -1264 opp-pending 480 573 2026-04-14 16:12:34.121081 2026-04-14 16:12:34.121081 -1265 opp-pending 539 574 2026-04-14 16:12:34.387471 2026-04-14 16:12:34.387471 -1266 opp-pending 593 574 2026-04-14 16:12:34.392063 2026-04-14 16:12:34.392063 -1267 opp-pending 504 575 2026-04-14 16:12:34.725046 2026-04-14 16:12:34.725046 -1268 opp-pending 575 577 2026-04-14 16:12:35.216324 2026-04-14 16:12:35.216324 -1269 opp-pending 531 578 2026-04-14 16:12:35.376431 2026-04-14 16:12:35.376431 -1270 opp-pending 531 579 2026-04-14 16:12:35.545654 2026-04-14 16:12:35.545654 -1271 opp-pending 478 580 2026-04-14 16:12:35.720741 2026-04-14 16:12:35.720741 -1272 opp-pending 539 581 2026-04-14 16:12:35.952601 2026-04-14 16:12:35.952601 -1273 opp-pending 613 581 2026-04-14 16:12:35.956512 2026-04-14 16:12:35.956512 -1274 opp-pending 675 581 2026-04-14 16:12:35.960441 2026-04-14 16:12:35.960441 -1275 opp-pending 677 581 2026-04-14 16:12:35.964562 2026-04-14 16:12:35.964562 -1276 opp-pending 679 581 2026-04-14 16:12:35.968664 2026-04-14 16:12:35.968664 -1277 opp-pending 766 581 2026-04-14 16:12:35.972747 2026-04-14 16:12:35.972747 -1278 opp-pending 198 582 2026-04-14 16:12:36.17058 2026-04-14 16:12:36.17058 -1279 opp-pending 471 582 2026-04-14 16:12:36.175018 2026-04-14 16:12:36.175018 -1280 opp-pending 575 582 2026-04-14 16:12:36.179051 2026-04-14 16:12:36.179051 -1281 opp-pending 502 583 2026-04-14 16:12:36.447293 2026-04-14 16:12:36.447293 -1282 opp-pending 554 583 2026-04-14 16:12:36.451875 2026-04-14 16:12:36.451875 -1283 opp-pending 752 583 2026-04-14 16:12:36.45615 2026-04-14 16:12:36.45615 -1284 opp-pending 413 585 2026-04-14 16:12:36.796532 2026-04-14 16:12:36.796532 -1285 opp-pending 531 585 2026-04-14 16:12:36.801775 2026-04-14 16:12:36.801775 -1286 opp-pending 576 585 2026-04-14 16:12:36.806124 2026-04-14 16:12:36.806124 -1287 opp-pending 610 585 2026-04-14 16:12:36.810349 2026-04-14 16:12:36.810349 -1288 opp-pending 531 587 2026-04-14 16:12:37.204546 2026-04-14 16:12:37.204546 -1289 opp-pending 271 588 2026-04-14 16:12:37.416232 2026-04-14 16:12:37.416232 -1290 opp-pending 428 588 2026-04-14 16:12:37.421653 2026-04-14 16:12:37.421653 -1291 opp-pending 492 588 2026-04-14 16:12:37.426772 2026-04-14 16:12:37.426772 -1292 opp-pending 506 588 2026-04-14 16:12:37.431382 2026-04-14 16:12:37.431382 -1293 opp-pending 198 589 2026-04-14 16:12:37.602155 2026-04-14 16:12:37.602155 -1294 opp-pending 690 589 2026-04-14 16:12:37.607147 2026-04-14 16:12:37.607147 -1295 opp-pending 478 591 2026-04-14 16:12:37.925659 2026-04-14 16:12:37.925659 -1296 opp-pending 415 592 2026-04-14 16:12:38.185107 2026-04-14 16:12:38.185107 -1297 opp-pending 500 592 2026-04-14 16:12:38.189552 2026-04-14 16:12:38.189552 -1298 opp-pending 428 593 2026-04-14 16:12:38.361251 2026-04-14 16:12:38.361251 -1299 opp-pending 356 594 2026-04-14 16:12:38.509254 2026-04-14 16:12:38.509254 -1300 opp-pending 478 598 2026-04-14 16:12:39.191465 2026-04-14 16:12:39.191465 -1301 opp-active 222 599 2026-04-14 16:12:39.391364 2026-04-14 16:12:39.391364 -1302 opp-pending 624 599 2026-04-14 16:12:39.395621 2026-04-14 16:12:39.395621 -1303 opp-pending 631 599 2026-04-14 16:12:39.400146 2026-04-14 16:12:39.400146 -1304 opp-matched 11 600 2026-04-14 16:12:39.666588 2026-04-14 16:12:39.666588 -1305 opp-pending 531 601 2026-04-14 16:12:39.810957 2026-04-14 16:12:39.810957 -1306 opp-pending 575 601 2026-04-14 16:12:39.815234 2026-04-14 16:12:39.815234 -1307 opp-pending 230 603 2026-04-14 16:12:40.039589 2026-04-14 16:12:40.039589 -1308 opp-pending 471 603 2026-04-14 16:12:40.043428 2026-04-14 16:12:40.043428 -1309 opp-pending 222 606 2026-04-14 16:12:40.442764 2026-04-14 16:12:40.442764 -1310 opp-pending 539 606 2026-04-14 16:12:40.448159 2026-04-14 16:12:40.448159 -1311 opp-pending 414 608 2026-04-14 16:12:40.702071 2026-04-14 16:12:40.702071 -1312 opp-pending 541 608 2026-04-14 16:12:40.706265 2026-04-14 16:12:40.706265 -1313 opp-pending 551 608 2026-04-14 16:12:40.710313 2026-04-14 16:12:40.710313 -1314 opp-pending 601 608 2026-04-14 16:12:40.714416 2026-04-14 16:12:40.714416 -1315 opp-pending 612 608 2026-04-14 16:12:40.718457 2026-04-14 16:12:40.718457 -1316 opp-pending 640 608 2026-04-14 16:12:40.722319 2026-04-14 16:12:40.722319 -1317 opp-pending 642 608 2026-04-14 16:12:40.726454 2026-04-14 16:12:40.726454 -1318 opp-pending 539 609 2026-04-14 16:12:40.900222 2026-04-14 16:12:40.900222 -1319 opp-pending 588 609 2026-04-14 16:12:40.904471 2026-04-14 16:12:40.904471 -1320 opp-pending 606 609 2026-04-14 16:12:40.90883 2026-04-14 16:12:40.90883 -1321 opp-pending 525 611 2026-04-14 16:12:41.186252 2026-04-14 16:12:41.186252 -1322 opp-pending 527 611 2026-04-14 16:12:41.190642 2026-04-14 16:12:41.190642 -1323 opp-pending 606 611 2026-04-14 16:12:41.194753 2026-04-14 16:12:41.194753 -1324 opp-pending 632 611 2026-04-14 16:12:41.198711 2026-04-14 16:12:41.198711 -1325 opp-pending 642 611 2026-04-14 16:12:41.202644 2026-04-14 16:12:41.202644 -1326 opp-pending 647 611 2026-04-14 16:12:41.206739 2026-04-14 16:12:41.206739 -1327 opp-pending 786 611 2026-04-14 16:12:41.21087 2026-04-14 16:12:41.21087 -1328 opp-pending 524 612 2026-04-14 16:12:41.427484 2026-04-14 16:12:41.427484 -1329 opp-pending 525 613 2026-04-14 16:12:41.647212 2026-04-14 16:12:41.647212 -1330 opp-pending 527 613 2026-04-14 16:12:41.651705 2026-04-14 16:12:41.651705 -1331 opp-pending 524 614 2026-04-14 16:12:41.846447 2026-04-14 16:12:41.846447 -1332 opp-pending 541 614 2026-04-14 16:12:41.850988 2026-04-14 16:12:41.850988 -1333 opp-pending 544 614 2026-04-14 16:12:41.855273 2026-04-14 16:12:41.855273 -1334 opp-pending 588 614 2026-04-14 16:12:41.859382 2026-04-14 16:12:41.859382 -1335 opp-pending 644 614 2026-04-14 16:12:41.863666 2026-04-14 16:12:41.863666 -1336 opp-pending 648 614 2026-04-14 16:12:41.867869 2026-04-14 16:12:41.867869 -1337 opp-pending 676 614 2026-04-14 16:12:41.871939 2026-04-14 16:12:41.871939 -1338 opp-pending 717 614 2026-04-14 16:12:41.875941 2026-04-14 16:12:41.875941 -1339 opp-pending 755 614 2026-04-14 16:12:41.879939 2026-04-14 16:12:41.879939 -1340 opp-pending 551 615 2026-04-14 16:12:42.020544 2026-04-14 16:12:42.020544 -1341 opp-active 564 615 2026-04-14 16:12:42.02509 2026-04-14 16:12:42.02509 -1342 opp-pending 574 615 2026-04-14 16:12:42.02929 2026-04-14 16:12:42.02929 -1343 opp-pending 740 616 2026-04-14 16:12:42.165494 2026-04-14 16:12:42.165494 -1344 opp-pending 578 618 2026-04-14 16:12:42.544424 2026-04-14 16:12:42.544424 -1345 opp-pending 617 618 2026-04-14 16:12:42.548336 2026-04-14 16:12:42.548336 -1346 opp-pending 623 618 2026-04-14 16:12:42.552597 2026-04-14 16:12:42.552597 -1347 opp-pending 726 618 2026-04-14 16:12:42.556655 2026-04-14 16:12:42.556655 -1348 opp-pending 524 620 2026-04-14 16:12:42.826669 2026-04-14 16:12:42.826669 -1349 opp-pending 588 620 2026-04-14 16:12:42.832729 2026-04-14 16:12:42.832729 -1350 opp-pending 640 620 2026-04-14 16:12:42.837401 2026-04-14 16:12:42.837401 -1351 opp-pending 641 620 2026-04-14 16:12:42.842073 2026-04-14 16:12:42.842073 -1352 opp-pending 646 620 2026-04-14 16:12:42.84621 2026-04-14 16:12:42.84621 -1353 opp-pending 665 620 2026-04-14 16:12:42.850295 2026-04-14 16:12:42.850295 -1354 opp-pending 686 620 2026-04-14 16:12:42.854657 2026-04-14 16:12:42.854657 -1355 opp-pending 698 620 2026-04-14 16:12:42.858969 2026-04-14 16:12:42.858969 -1356 opp-pending 715 620 2026-04-14 16:12:42.863105 2026-04-14 16:12:42.863105 -1357 opp-pending 717 620 2026-04-14 16:12:42.867384 2026-04-14 16:12:42.867384 -1358 opp-pending 737 620 2026-04-14 16:12:42.872522 2026-04-14 16:12:42.872522 -1359 opp-pending 706 624 2026-04-14 16:12:43.444527 2026-04-14 16:12:43.444527 -1360 opp-pending 712 624 2026-04-14 16:12:43.452771 2026-04-14 16:12:43.452771 -1246 opp-active 478 557 2026-04-14 16:12:31.061775 2026-04-22 08:32:11.261356 -1361 opp-pending 729 624 2026-04-14 16:12:43.456979 2026-04-14 16:12:43.456979 -1362 opp-pending 730 624 2026-04-14 16:12:43.461166 2026-04-14 16:12:43.461166 -1363 opp-pending 531 625 2026-04-14 16:12:43.693834 2026-04-14 16:12:43.693834 -1364 opp-pending 222 626 2026-04-14 16:12:43.820317 2026-04-14 16:12:43.820317 -1365 opp-pending 594 626 2026-04-14 16:12:43.824376 2026-04-14 16:12:43.824376 -1366 opp-pending 531 627 2026-04-14 16:12:44.026092 2026-04-14 16:12:44.026092 -1367 opp-pending 573 627 2026-04-14 16:12:44.030476 2026-04-14 16:12:44.030476 -1368 opp-pending 277 631 2026-04-14 16:12:44.900497 2026-04-14 16:12:44.900497 -1369 opp-pending 624 631 2026-04-14 16:12:44.904253 2026-04-14 16:12:44.904253 -1370 opp-pending 219 633 2026-04-14 16:12:45.232817 2026-04-14 16:12:45.232817 -1371 opp-pending 500 633 2026-04-14 16:12:45.23769 2026-04-14 16:12:45.23769 -1372 opp-pending 360 635 2026-04-14 16:12:45.466247 2026-04-14 16:12:45.466247 -1373 opp-pending 610 638 2026-04-14 16:12:45.849017 2026-04-14 16:12:45.849017 -1374 opp-pending 538 640 2026-04-14 16:12:46.069338 2026-04-14 16:12:46.069338 -1375 opp-pending 307 642 2026-04-14 16:12:46.486904 2026-04-14 16:12:46.486904 -1376 opp-pending 558 642 2026-04-14 16:12:46.490681 2026-04-14 16:12:46.490681 -1377 opp-pending 213 643 2026-04-14 16:12:46.774419 2026-04-14 16:12:46.774419 -1378 opp-pending 515 645 2026-04-14 16:12:47.043228 2026-04-14 16:12:47.043228 -1379 opp-active 574 645 2026-04-14 16:12:47.047343 2026-04-14 16:12:47.047343 -1380 opp-active 580 645 2026-04-14 16:12:47.051439 2026-04-14 16:12:47.051439 -1381 opp-pending 586 645 2026-04-14 16:12:47.055641 2026-04-14 16:12:47.055641 -1382 opp-pending 592 645 2026-04-14 16:12:47.059865 2026-04-14 16:12:47.059865 -1383 opp-pending 597 645 2026-04-14 16:12:47.063904 2026-04-14 16:12:47.063904 -1384 opp-pending 598 645 2026-04-14 16:12:47.068034 2026-04-14 16:12:47.068034 -1385 opp-pending 604 645 2026-04-14 16:12:47.072242 2026-04-14 16:12:47.072242 -1386 opp-pending 607 645 2026-04-14 16:12:47.076607 2026-04-14 16:12:47.076607 -1387 opp-pending 608 645 2026-04-14 16:12:47.080944 2026-04-14 16:12:47.080944 -1388 opp-active 611 645 2026-04-14 16:12:47.085119 2026-04-14 16:12:47.085119 -1389 opp-pending 614 645 2026-04-14 16:12:47.089155 2026-04-14 16:12:47.089155 -1390 opp-pending 632 645 2026-04-14 16:12:47.093078 2026-04-14 16:12:47.093078 -1392 opp-pending 640 645 2026-04-14 16:12:47.100989 2026-04-14 16:12:47.100989 -1393 opp-pending 641 645 2026-04-14 16:12:47.104935 2026-04-14 16:12:47.104935 -1394 opp-pending 642 645 2026-04-14 16:12:47.108946 2026-04-14 16:12:47.108946 -1395 opp-pending 643 645 2026-04-14 16:12:47.112844 2026-04-14 16:12:47.112844 -1396 opp-pending 655 645 2026-04-14 16:12:47.116892 2026-04-14 16:12:47.116892 -1397 opp-pending 754 645 2026-04-14 16:12:47.120872 2026-04-14 16:12:47.120872 -1398 opp-pending 755 645 2026-04-14 16:12:47.124919 2026-04-14 16:12:47.124919 -1400 opp-pending 765 645 2026-04-14 16:12:47.132972 2026-04-14 16:12:47.132972 -1401 opp-pending 791 645 2026-04-14 16:12:47.136854 2026-04-14 16:12:47.136854 -1402 opp-pending 792 645 2026-04-14 16:12:47.140888 2026-04-14 16:12:47.140888 -1403 opp-pending 519 649 2026-04-14 16:12:47.815276 2026-04-14 16:12:47.815276 -1404 opp-active 618 649 2026-04-14 16:12:47.819561 2026-04-14 16:12:47.819561 -1405 opp-pending 619 649 2026-04-14 16:12:47.823962 2026-04-14 16:12:47.823962 -1406 opp-pending 3 650 2026-04-14 16:12:47.970516 2026-04-14 16:12:47.970516 -1407 opp-pending 576 653 2026-04-14 16:12:48.330226 2026-04-14 16:12:48.330226 -1408 opp-pending 700 654 2026-04-14 16:12:48.4975 2026-04-14 16:12:48.4975 -1409 opp-pending 579 655 2026-04-14 16:12:48.668228 2026-04-14 16:12:48.668228 -1410 opp-pending 256 658 2026-04-14 16:12:49.22545 2026-04-14 16:12:49.22545 -1411 opp-pending 538 659 2026-04-14 16:12:49.458906 2026-04-14 16:12:49.458906 -1412 opp-pending 557 660 2026-04-14 16:12:49.620593 2026-04-14 16:12:49.620593 -1413 opp-pending 597 660 2026-04-14 16:12:49.624978 2026-04-14 16:12:49.624978 -1414 opp-pending 632 660 2026-04-14 16:12:49.629026 2026-04-14 16:12:49.629026 -1415 opp-pending 307 661 2026-04-14 16:12:49.728345 2026-04-14 16:12:49.728345 -1416 opp-pending 628 662 2026-04-14 16:12:49.85254 2026-04-14 16:12:49.85254 -1417 opp-pending 667 662 2026-04-14 16:12:49.856434 2026-04-14 16:12:49.856434 -1418 opp-pending 670 662 2026-04-14 16:12:49.860432 2026-04-14 16:12:49.860432 -1419 opp-pending 673 662 2026-04-14 16:12:49.864198 2026-04-14 16:12:49.864198 -1420 opp-pending 688 662 2026-04-14 16:12:49.867986 2026-04-14 16:12:49.867986 -1421 opp-pending 699 662 2026-04-14 16:12:49.871859 2026-04-14 16:12:49.871859 -1422 opp-pending 732 662 2026-04-14 16:12:49.875786 2026-04-14 16:12:49.875786 -1423 opp-pending 767 662 2026-04-14 16:12:49.87977 2026-04-14 16:12:49.87977 -1424 opp-pending 175 664 2026-04-14 16:12:50.477926 2026-04-14 16:12:50.477926 -1425 opp-pending 498 665 2026-04-14 16:12:50.672261 2026-04-14 16:12:50.672261 -1426 opp-pending 596 667 2026-04-14 16:12:51.082445 2026-04-14 16:12:51.082445 -1427 opp-pending 631 669 2026-04-14 16:12:51.485465 2026-04-14 16:12:51.485465 -1428 opp-pending 271 670 2026-04-14 16:12:51.674139 2026-04-14 16:12:51.674139 -1429 opp-pending 687 670 2026-04-14 16:12:51.678209 2026-04-14 16:12:51.678209 -1430 opp-pending 729 673 2026-04-14 16:12:52.320506 2026-04-14 16:12:52.320506 -1431 opp-pending 577 674 2026-04-14 16:12:52.416142 2026-04-14 16:12:52.416142 -1432 opp-pending 668 675 2026-04-14 16:12:52.618924 2026-04-14 16:12:52.618924 -1433 opp-pending 678 675 2026-04-14 16:12:52.622911 2026-04-14 16:12:52.622911 -1434 opp-pending 749 675 2026-04-14 16:12:52.627599 2026-04-14 16:12:52.627599 -1435 opp-pending 517 676 2026-04-14 16:12:52.858394 2026-04-14 16:12:52.858394 -1436 opp-pending 516 677 2026-04-14 16:12:52.951199 2026-04-14 16:12:52.951199 -1437 opp-pending 619 679 2026-04-14 16:12:53.315708 2026-04-14 16:12:53.315708 -1438 opp-pending 624 679 2026-04-14 16:12:53.320084 2026-04-14 16:12:53.320084 -1439 opp-pending 490 681 2026-04-14 16:12:53.786542 2026-04-14 16:12:53.786542 -1440 opp-pending 727 683 2026-04-14 16:12:54.104569 2026-04-14 16:12:54.104569 -1441 opp-pending 469 684 2026-04-14 16:12:54.393072 2026-04-14 16:12:54.393072 -1443 opp-pending 621 685 2026-04-14 16:12:54.59603 2026-04-14 16:12:54.59603 -1444 opp-pending 500 687 2026-04-14 16:12:54.884212 2026-04-14 16:12:54.884212 -1445 opp-pending 543 687 2026-04-14 16:12:54.888469 2026-04-14 16:12:54.888469 -1446 opp-pending 14 691 2026-04-14 16:12:55.644394 2026-04-14 16:12:55.644394 -1447 opp-pending 625 691 2026-04-14 16:12:55.648436 2026-04-14 16:12:55.648436 -1448 opp-pending 630 691 2026-04-14 16:12:55.652452 2026-04-14 16:12:55.652452 -1449 opp-pending 639 692 2026-04-14 16:12:55.818162 2026-04-14 16:12:55.818162 -1450 opp-pending 219 693 2026-04-14 16:12:56.076818 2026-04-14 16:12:56.076818 -1451 opp-pending 362 696 2026-04-14 16:12:56.34038 2026-04-14 16:12:56.34038 -1452 opp-pending 594 696 2026-04-14 16:12:56.344341 2026-04-14 16:12:56.344341 -1453 opp-pending 577 699 2026-04-14 16:12:57.115082 2026-04-14 16:12:57.115082 -1454 opp-pending 639 699 2026-04-14 16:12:57.119014 2026-04-14 16:12:57.119014 -1455 opp-pending 14 700 2026-04-14 16:12:57.410464 2026-04-14 16:12:57.410464 -1456 opp-pending 656 700 2026-04-14 16:12:57.415684 2026-04-14 16:12:57.415684 -1457 opp-matched 522 702 2026-04-14 16:12:57.807296 2026-04-14 16:12:57.807296 -1458 opp-pending 594 703 2026-04-14 16:12:57.960418 2026-04-14 16:12:57.960418 -1459 opp-pending 658 705 2026-04-14 16:12:58.458902 2026-04-14 16:12:58.458902 -1460 opp-pending 680 705 2026-04-14 16:12:58.464 2026-04-14 16:12:58.464 -1461 opp-pending 739 705 2026-04-14 16:12:58.468276 2026-04-14 16:12:58.468276 -1462 opp-pending 758 705 2026-04-14 16:12:58.472351 2026-04-14 16:12:58.472351 -1464 opp-pending 634 707 2026-04-14 16:12:58.828171 2026-04-14 16:12:58.828171 -1465 opp-pending 647 707 2026-04-14 16:12:58.832119 2026-04-14 16:12:58.832119 -1466 opp-pending 653 707 2026-04-14 16:12:58.836188 2026-04-14 16:12:58.836188 -1467 opp-pending 677 707 2026-04-14 16:12:58.840185 2026-04-14 16:12:58.840185 -1468 opp-pending 680 707 2026-04-14 16:12:58.844247 2026-04-14 16:12:58.844247 -1469 opp-pending 771 707 2026-04-14 16:12:58.848254 2026-04-14 16:12:58.848254 -1470 opp-pending 589 711 2026-04-14 16:12:59.510596 2026-04-14 16:12:59.510596 -1471 opp-pending 577 713 2026-04-14 16:12:59.81337 2026-04-14 16:12:59.81337 -1472 opp-pending 659 715 2026-04-14 16:13:00.343407 2026-04-14 16:13:00.343407 -1473 opp-pending 675 715 2026-04-14 16:13:00.348229 2026-04-14 16:13:00.348229 -1474 opp-pending 715 715 2026-04-14 16:13:00.352331 2026-04-14 16:13:00.352331 -1475 opp-pending 739 715 2026-04-14 16:13:00.356121 2026-04-14 16:13:00.356121 -1476 opp-pending 770 715 2026-04-14 16:13:00.360004 2026-04-14 16:13:00.360004 -1477 opp-pending 528 716 2026-04-14 16:13:00.675363 2026-04-14 16:13:00.675363 -1479 opp-pending 102 719 2026-04-14 16:13:01.168651 2026-04-14 16:13:01.168651 -1480 opp-pending 222 719 2026-04-14 16:13:01.172772 2026-04-14 16:13:01.172772 -1481 opp-pending 688 719 2026-04-14 16:13:01.176758 2026-04-14 16:13:01.176758 -1482 opp-pending 708 719 2026-04-14 16:13:01.180851 2026-04-14 16:13:01.180851 -1483 opp-pending 714 719 2026-04-14 16:13:01.185094 2026-04-14 16:13:01.185094 -1484 opp-pending 791 719 2026-04-14 16:13:01.189341 2026-04-14 16:13:01.189341 -1485 opp-pending 557 721 2026-04-14 16:13:02.018426 2026-04-14 16:13:02.018426 -1486 opp-pending 559 721 2026-04-14 16:13:02.033624 2026-04-14 16:13:02.033624 -1487 opp-pending 560 721 2026-04-14 16:13:02.039986 2026-04-14 16:13:02.039986 -1488 opp-pending 614 721 2026-04-14 16:13:02.046765 2026-04-14 16:13:02.046765 -1489 opp-pending 666 721 2026-04-14 16:13:02.057959 2026-04-14 16:13:02.057959 -1490 opp-pending 737 721 2026-04-14 16:13:02.066863 2026-04-14 16:13:02.066863 -1491 opp-pending 739 721 2026-04-14 16:13:02.079823 2026-04-14 16:13:02.079823 -1492 opp-pending 766 721 2026-04-14 16:13:02.092283 2026-04-14 16:13:02.092283 -1493 opp-pending 651 722 2026-04-14 16:13:02.296266 2026-04-14 16:13:02.296266 -1494 opp-pending 654 723 2026-04-14 16:13:02.324886 2026-04-14 16:13:02.324886 -1495 opp-pending 516 724 2026-04-14 16:13:02.505256 2026-04-14 16:13:02.505256 -1496 opp-pending 691 724 2026-04-14 16:13:02.509961 2026-04-14 16:13:02.509961 -1478 opp-matched 652 717 2026-04-14 16:13:00.864121 2026-04-16 07:48:06.151924 -1463 opp-past 792 705 2026-04-14 16:12:58.476373 2026-04-23 14:11:15.748521 -1442 opp-active 618 685 2026-04-14 16:12:54.592196 2026-04-23 14:41:32.864645 -1497 opp-matched 560 725 2026-04-14 16:13:02.677557 2026-04-14 16:13:02.677557 -1498 opp-pending 698 726 2026-04-14 16:13:03.062084 2026-04-14 16:13:03.062084 -1499 opp-pending 732 726 2026-04-14 16:13:03.068457 2026-04-14 16:13:03.068457 -1500 opp-pending 767 726 2026-04-14 16:13:03.076026 2026-04-14 16:13:03.076026 -1501 opp-pending 594 727 2026-04-14 16:13:03.220957 2026-04-14 16:13:03.220957 -1502 opp-pending 709 727 2026-04-14 16:13:03.225917 2026-04-14 16:13:03.225917 -1503 opp-pending 668 728 2026-04-14 16:13:03.396925 2026-04-14 16:13:03.396925 -1504 opp-pending 728 728 2026-04-14 16:13:03.401601 2026-04-14 16:13:03.401601 -1505 opp-pending 219 729 2026-04-14 16:13:03.572168 2026-04-14 16:13:03.572168 -1506 opp-pending 319 729 2026-04-14 16:13:03.577012 2026-04-14 16:13:03.577012 -1507 opp-pending 364 729 2026-04-14 16:13:03.581508 2026-04-14 16:13:03.581508 -1508 opp-pending 621 730 2026-04-14 16:13:03.814431 2026-04-14 16:13:03.814431 -1509 opp-pending 364 731 2026-04-14 16:13:04.044236 2026-04-14 16:13:04.044236 -1510 opp-pending 567 734 2026-04-14 16:13:04.484795 2026-04-14 16:13:04.484795 -1511 opp-matched 651 734 2026-04-14 16:13:04.488881 2026-04-14 16:13:04.488881 -1512 opp-pending 639 735 2026-04-14 16:13:04.647424 2026-04-14 16:13:04.647424 -1513 opp-pending 730 735 2026-04-14 16:13:04.651518 2026-04-14 16:13:04.651518 -1514 opp-pending 222 737 2026-04-14 16:13:05.067473 2026-04-14 16:13:05.067473 -1515 opp-pending 589 737 2026-04-14 16:13:05.073641 2026-04-14 16:13:05.073641 -1516 opp-pending 610 737 2026-04-14 16:13:05.077766 2026-04-14 16:13:05.077766 -1517 opp-pending 560 738 2026-04-14 16:13:05.231817 2026-04-14 16:13:05.231817 -1518 opp-pending 668 738 2026-04-14 16:13:05.235838 2026-04-14 16:13:05.235838 -1521 opp-pending 104 740 2026-04-14 16:13:05.474191 2026-04-14 16:13:05.474191 -1522 opp-pending 425 740 2026-04-14 16:13:05.478222 2026-04-14 16:13:05.478222 -1523 opp-pending 567 740 2026-04-14 16:13:05.482169 2026-04-14 16:13:05.482169 -1524 opp-pending 651 740 2026-04-14 16:13:05.486241 2026-04-14 16:13:05.486241 -1525 opp-pending 705 740 2026-04-14 16:13:05.490306 2026-04-14 16:13:05.490306 -1526 opp-pending 724 740 2026-04-14 16:13:05.494284 2026-04-14 16:13:05.494284 -1528 opp-pending 505 743 2026-04-14 16:13:06.016553 2026-04-14 16:13:06.016553 -1529 opp-pending 538 743 2026-04-14 16:13:06.020636 2026-04-14 16:13:06.020636 -1530 opp-pending 602 743 2026-04-14 16:13:06.024772 2026-04-14 16:13:06.024772 -1531 opp-pending 609 743 2026-04-14 16:13:06.028922 2026-04-14 16:13:06.028922 -1532 opp-pending 610 743 2026-04-14 16:13:06.032832 2026-04-14 16:13:06.032832 -1533 opp-pending 723 743 2026-04-14 16:13:06.036795 2026-04-14 16:13:06.036795 -1534 opp-pending 724 743 2026-04-14 16:13:06.040978 2026-04-14 16:13:06.040978 -1535 opp-pending 731 743 2026-04-14 16:13:06.044866 2026-04-14 16:13:06.044866 -1536 opp-pending 749 743 2026-04-14 16:13:06.048862 2026-04-14 16:13:06.048862 -1537 opp-pending 693 744 2026-04-14 16:13:06.172023 2026-04-14 16:13:06.172023 -1538 opp-pending 217 746 2026-04-14 16:13:06.451385 2026-04-14 16:13:06.451385 -1539 opp-pending 478 746 2026-04-14 16:13:06.456012 2026-04-14 16:13:06.456012 -1540 opp-pending 572 746 2026-04-14 16:13:06.461097 2026-04-14 16:13:06.461097 -1541 opp-pending 693 746 2026-04-14 16:13:06.472504 2026-04-14 16:13:06.472504 -1542 opp-pending 716 746 2026-04-14 16:13:06.477047 2026-04-14 16:13:06.477047 -1543 opp-pending 213 748 2026-04-14 16:13:06.837893 2026-04-14 16:13:06.837893 -1544 opp-pending 616 748 2026-04-14 16:13:06.842002 2026-04-14 16:13:06.842002 -1545 opp-pending 731 748 2026-04-14 16:13:06.846223 2026-04-14 16:13:06.846223 -1546 opp-pending 691 749 2026-04-14 16:13:06.942457 2026-04-14 16:13:06.942457 -1547 opp-pending 14 750 2026-04-14 16:13:07.133029 2026-04-14 16:13:07.133029 -1548 opp-pending 585 750 2026-04-14 16:13:07.137775 2026-04-14 16:13:07.137775 -1549 opp-pending 682 750 2026-04-14 16:13:07.142453 2026-04-14 16:13:07.142453 -1550 opp-pending 362 751 2026-04-14 16:13:07.29604 2026-04-14 16:13:07.29604 -1552 opp-pending 749 752 2026-04-14 16:13:07.410746 2026-04-14 16:13:07.410746 -1553 opp-pending 14 753 2026-04-14 16:13:07.557833 2026-04-14 16:13:07.557833 -1554 opp-pending 522 753 2026-04-14 16:13:07.562442 2026-04-14 16:13:07.562442 -1555 opp-pending 585 753 2026-04-14 16:13:07.566547 2026-04-14 16:13:07.566547 -1556 opp-pending 682 753 2026-04-14 16:13:07.570686 2026-04-14 16:13:07.570686 -1557 opp-pending 690 753 2026-04-14 16:13:07.574947 2026-04-14 16:13:07.574947 -1558 opp-pending 700 754 2026-04-14 16:13:07.85822 2026-04-14 16:13:07.85822 -1559 opp-pending 705 754 2026-04-14 16:13:07.863121 2026-04-14 16:13:07.863121 -1560 opp-pending 759 754 2026-04-14 16:13:07.867731 2026-04-14 16:13:07.867731 -1561 opp-pending 20 755 2026-04-14 16:13:08.08374 2026-04-14 16:13:08.08374 -1562 opp-pending 693 755 2026-04-14 16:13:08.093201 2026-04-14 16:13:08.093201 -1563 opp-pending 730 755 2026-04-14 16:13:08.098253 2026-04-14 16:13:08.098253 -1565 opp-pending 760 756 2026-04-14 16:13:08.328193 2026-04-14 16:13:08.328193 -1566 opp-pending 774 756 2026-04-14 16:13:08.332683 2026-04-14 16:13:08.332683 -1567 opp-pending 668 757 2026-04-14 16:13:08.733371 2026-04-14 16:13:08.733371 -1568 opp-pending 213 758 2026-04-14 16:13:08.869509 2026-04-14 16:13:08.869509 -1569 opp-pending 318 758 2026-04-14 16:13:08.87444 2026-04-14 16:13:08.87444 -1570 opp-pending 478 759 2026-04-14 16:13:09.091845 2026-04-14 16:13:09.091845 -1571 opp-pending 557 759 2026-04-14 16:13:09.098874 2026-04-14 16:13:09.098874 -1572 opp-pending 774 759 2026-04-14 16:13:09.104976 2026-04-14 16:13:09.104976 -1574 opp-pending 557 761 2026-04-14 16:13:09.475854 2026-04-14 16:13:09.475854 -1575 opp-pending 774 761 2026-04-14 16:13:09.480535 2026-04-14 16:13:09.480535 -1576 opp-pending 775 761 2026-04-14 16:13:09.485798 2026-04-14 16:13:09.485798 -1577 opp-pending 104 763 2026-04-14 16:13:09.820359 2026-04-14 16:13:09.820359 -1578 opp-pending 105 763 2026-04-14 16:13:09.824503 2026-04-14 16:13:09.824503 -1579 opp-pending 106 763 2026-04-14 16:13:09.828519 2026-04-14 16:13:09.828519 -1580 opp-pending 584 763 2026-04-14 16:13:09.832556 2026-04-14 16:13:09.832556 -1581 opp-pending 478 764 2026-04-14 16:13:09.920435 2026-04-14 16:13:09.920435 -1582 opp-pending 729 765 2026-04-14 16:13:10.100243 2026-04-14 16:13:10.100243 -1583 opp-pending 14 766 2026-04-14 16:13:10.246987 2026-04-14 16:13:10.246987 -1584 opp-pending 585 766 2026-04-14 16:13:10.251059 2026-04-14 16:13:10.251059 -1585 opp-pending 682 766 2026-04-14 16:13:10.255089 2026-04-14 16:13:10.255089 -1587 opp-pending 499 769 2026-04-14 16:13:10.715803 2026-04-14 16:13:10.715803 -1588 opp-pending 595 769 2026-04-14 16:13:10.72024 2026-04-14 16:13:10.72024 -1589 opp-pending 668 769 2026-04-14 16:13:10.725005 2026-04-14 16:13:10.725005 -1590 opp-pending 430 770 2026-04-14 16:13:10.812759 2026-04-14 16:13:10.812759 -1591 opp-pending 572 770 2026-04-14 16:13:10.817205 2026-04-14 16:13:10.817205 -1592 opp-pending 709 770 2026-04-14 16:13:10.821488 2026-04-14 16:13:10.821488 -1594 opp-pending 775 776 2026-04-14 16:13:11.853253 2026-04-14 16:13:11.853253 -1595 opp-pending 622 777 2026-04-14 16:13:11.953931 2026-04-14 16:13:11.953931 -1596 opp-pending 650 777 2026-04-14 16:13:11.958313 2026-04-14 16:13:11.958313 -1597 opp-pending 217 778 2026-04-14 16:13:12.184054 2026-04-14 16:13:12.184054 -1598 opp-pending 362 778 2026-04-14 16:13:12.188307 2026-04-14 16:13:12.188307 -1599 opp-pending 650 778 2026-04-14 16:13:12.192436 2026-04-14 16:13:12.192436 -1600 opp-pending 706 778 2026-04-14 16:13:12.196597 2026-04-14 16:13:12.196597 -1601 opp-pending 723 778 2026-04-14 16:13:12.200939 2026-04-14 16:13:12.200939 -1602 opp-pending 362 780 2026-04-14 16:13:12.654647 2026-04-14 16:13:12.654647 -1603 opp-pending 622 780 2026-04-14 16:13:12.658951 2026-04-14 16:13:12.658951 -1604 opp-pending 746 783 2026-04-15 10:39:44.352472 2026-04-15 10:39:44.352472 -1605 opp-matched 746 783 2026-04-15 10:40:02.755869 2026-04-15 10:40:22.598563 -1631 opp-matched 745 669 2026-04-21 07:59:21.924751 2026-04-23 14:41:55.808971 -1391 opp-active 636 645 2026-04-14 16:12:47.097021 2026-04-15 12:42:13.310504 -1608 opp-matched 652 782 2026-04-16 07:47:05.716662 2026-04-16 07:47:20.956956 -1609 opp-pending 777 792 2026-04-16 07:50:17.673045 2026-04-16 07:50:17.673045 -1611 opp-pending 602 790 2026-04-16 09:20:46.115585 2026-04-16 09:20:46.115585 -1614 opp-pending 222 786 2026-04-16 09:34:52.566057 2026-04-16 09:34:52.566057 -1527 opp-active 602 742 2026-04-14 16:13:05.841964 2026-04-16 09:21:07.306552 -1612 opp-pending 322 790 2026-04-16 09:25:15.051965 2026-04-16 09:25:15.051965 -1564 opp-matched 705 756 2026-04-14 16:13:08.323427 2026-04-16 09:41:21.096874 -1615 opp-matched 705 781 2026-04-16 09:42:19.332243 2026-04-16 11:44:44.672821 -1617 opp-pending 793 658 2026-04-16 14:56:24.438355 2026-04-16 14:56:24.438355 -1618 opp-pending 793 432 2026-04-16 14:58:00.427137 2026-04-16 14:58:00.427137 -1621 opp-pending 807 504 2026-04-17 12:59:39.422879 2026-04-17 12:59:39.422879 -1620 opp-active 787 792 2026-04-17 10:12:54.564613 2026-04-17 10:13:08.183785 -1622 opp-matched 800 322 2026-04-17 13:30:27.769497 2026-04-17 13:30:37.958723 -1624 opp-matched 809 751 2026-04-20 07:57:45.349613 2026-04-20 07:57:51.669605 -1610 opp-matched 713 790 2026-04-16 09:19:58.224858 2026-04-20 10:52:37.901386 -1626 opp-matched 693 789 2026-04-20 11:06:06.820866 2026-04-20 14:30:46.30481 -1628 opp-matched 799 156 2026-04-20 14:32:42.933391 2026-04-20 14:32:49.198387 -1629 opp-matched 696 789 2026-04-20 14:35:18.188443 2026-04-20 14:35:53.829588 -1630 opp-pending 609 669 2026-04-21 07:58:18.520523 2026-04-21 07:58:18.520523 -1573 opp-matched 105 760 2026-04-14 16:13:09.26279 2026-04-21 08:45:35.101277 -1632 opp-pending 537 766 2026-04-21 09:07:05.580743 2026-04-21 09:07:05.580743 -1520 opp-past 762 738 2026-04-14 16:13:05.243644 2026-04-21 09:24:26.163093 -1519 opp-past 761 738 2026-04-14 16:13:05.239785 2026-04-21 09:24:46.631935 -1399 opp-past 757 645 2026-04-14 16:12:47.128924 2026-04-21 09:27:25.9715 -1593 opp-matched 711 776 2026-04-14 16:13:11.848896 2026-04-21 11:02:22.21213 -1616 opp-matched 793 630 2026-04-16 14:39:33.54794 2026-04-23 10:16:39.246267 -1551 opp-active 616 752 2026-04-14 16:13:07.406253 2026-04-23 09:37:26.721352 -1613 opp-matched 594 786 2026-04-16 09:33:16.607314 2026-04-23 14:01:05.132025 -1586 opp-matched 538 767 2026-04-14 16:13:10.461954 2026-04-23 14:57:27.263252 -1633 opp-matched 711 751 2026-04-21 11:02:08.994717 2026-04-21 11:02:13.297651 -1635 opp-pending 478 794 2026-04-22 08:31:43.311773 2026-04-22 08:31:43.311773 -1236 opp-active 478 553 2026-04-14 16:12:30.305813 2026-04-22 08:32:01.580645 -1636 opp-matched 814 721 2026-04-22 13:24:37.783208 2026-04-22 13:24:46.483457 -1637 opp-pending 804 761 2026-04-22 14:00:50.848853 2026-04-22 14:00:50.848853 -1639 opp-pending 810 32 2026-04-22 14:09:07.602826 2026-04-22 14:09:07.602826 -1640 opp-pending 794 126 2026-04-22 14:24:19.708026 2026-04-22 14:24:19.708026 -1641 opp-pending 813 583 2026-04-22 14:42:09.027347 2026-04-22 14:42:09.027347 -1643 opp-pending 443 786 2026-04-23 08:05:17.443924 2026-04-23 08:05:17.443924 -1644 opp-pending 572 786 2026-04-23 08:22:35.604495 2026-04-23 08:22:35.604495 -1645 opp-pending 693 729 2026-04-23 09:13:32.521761 2026-04-23 09:13:32.521761 -1647 opp-pending 716 768 2026-04-23 09:31:17.116316 2026-04-23 09:31:17.116316 -960 opp-matched 319 401 2026-04-14 16:12:02.900255 2026-04-23 09:46:36.73394 -1648 opp-pending 319 796 2026-04-23 09:46:39.119451 2026-04-23 09:46:39.119451 -1649 opp-pending 691 796 2026-04-23 09:53:12.004103 2026-04-23 09:53:12.004103 -1634 opp-matched 802 322 2026-04-21 12:37:05.734923 2026-04-23 13:00:35.124581 -691 opp-matched 594 280 2026-04-14 16:11:45.106298 2026-04-23 14:14:28.294593 -1651 opp-pending 788 786 2026-04-23 15:10:04.932209 2026-04-23 15:10:04.932209 -1652 opp-pending 788 766 2026-04-23 15:10:22.634848 2026-04-23 15:10:22.634848 -1653 opp-pending 788 785 2026-04-23 15:10:42.710047 2026-04-23 15:10:42.710047 -1654 opp-pending 788 762 2026-04-23 15:11:02.976769 2026-04-23 15:11:02.976769 -1655 opp-pending 788 783 2026-04-23 15:12:45.595618 2026-04-23 15:12:45.595618 -1656 opp-pending 788 801 2026-04-23 15:12:59.61318 2026-04-23 15:12:59.61318 -1657 opp-pending 788 793 2026-04-23 15:13:32.190504 2026-04-23 15:13:32.190504 -1658 opp-pending 818 798 2026-04-24 08:31:17.1957 2026-04-24 08:31:17.1957 -1659 opp-pending 813 85 2026-04-24 08:42:06.969289 2026-04-24 08:42:06.969289 -1660 opp-matched 804 475 2026-04-24 13:29:21.369384 2026-04-24 13:30:09.322693 -1661 opp-pending 810 312 2026-04-24 14:34:44.759971 2026-04-24 14:34:44.759971 -1662 opp-pending 810 238 2026-04-24 14:37:21.100388 2026-04-24 14:37:21.100388 -1663 opp-pending 817 662 2026-04-24 14:39:18.655589 2026-04-24 14:39:18.655589 -1664 opp-pending 819 726 2026-04-24 14:49:21.392366 2026-04-24 14:49:21.392366 -1646 opp-matched 652 799 2026-04-23 09:22:02.543656 2026-04-27 08:09:33.486292 -1665 opp-pending 557 778 2026-04-27 09:05:19.662148 2026-04-27 09:05:19.662148 -1666 opp-pending 650 778 2026-04-27 09:05:49.140235 2026-04-27 09:05:49.140235 -1667 opp-pending 711 778 2026-04-27 09:08:01.254426 2026-04-27 09:08:01.254426 -1668 opp-pending 712 778 2026-04-27 09:08:50.072659 2026-04-27 09:08:50.072659 -1669 opp-pending 538 778 2026-04-27 09:10:36.467374 2026-04-27 09:10:36.467374 -1670 opp-pending 538 778 2026-04-27 09:14:05.773665 2026-04-27 09:14:05.773665 -1671 opp-pending 537 778 2026-04-27 09:15:22.777535 2026-04-27 09:15:22.777535 -1672 opp-matched 788 779 2026-04-27 14:40:23.879951 2026-04-27 14:41:43.498324 -1673 opp-matched 776 779 2026-04-27 14:41:31.327281 2026-04-27 14:41:45.296712 -1674 opp-past 795 802 2026-04-27 16:06:32.568389 2026-04-27 16:06:48.647254 -\. - - --- --- Data for Name: option; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.option (id, item_type, item_id) FROM stdin; -1 language 345 -2 language 618 -3 language 1200 -4 language 1215 -5 language 1230 -6 language 1482 -7 language 1540 -8 language 1807 -9 language 1833 -10 language 1910 -11 language 1954 -12 language 2366 -13 language 2388 -14 language 2521 -15 language 2665 -16 language 2854 -17 language 3151 -18 language 4698 -19 language 5140 -20 language 5351 -21 language 5445 -22 language 5641 -23 language 5642 -24 language 5677 -25 language 5998 -26 language 6011 -27 language 6059 -28 language 6148 -29 language 6644 -30 language 6769 -31 language 6819 -32 language 6894 -33 language 7790 -34 language 7922 -35 activity 1 -36 activity 2 -37 activity 3 -38 activity 4 -39 activity 5 -40 activity 6 -41 activity 7 -42 activity 8 -43 activity 9 -44 activity 10 -45 activity 11 -46 activity 12 -47 activity 13 -48 activity 14 -49 activity 15 -50 activity 16 -51 activity 17 -52 activity 18 -53 activity 19 -54 activity 20 -55 activity 21 -56 activity 22 -57 district 1 -58 district 2 -59 district 3 -60 district 4 -61 district 5 -62 district 6 -63 district 7 -64 district 8 -65 district 9 -66 district 10 -67 district 11 -68 district 12 -69 lead_from 1 -70 lead_from 2 -71 lead_from 3 -72 lead_from 4 -73 lead_from 5 -74 lead_from 6 -75 lead_from 7 -76 skill 1 -77 skill 2 -78 skill 3 -79 skill 4 -80 skill 5 -81 skill 6 -82 skill 7 -83 skill 8 -84 skill 9 -85 skill 10 -86 skill 11 -87 skill 12 -88 skill 13 -89 skill 14 -90 skill 15 -91 skill 16 -92 skill 17 -93 skill 18 -94 skill 19 -95 skill 20 -96 skill 21 -97 skill 22 -98 skill 23 -99 skill 24 -100 skill 25 -101 skill 26 -102 skill 27 -103 skill 28 -104 skill 29 -105 skill 30 -106 skill 31 -107 skill 32 -108 skill 33 -\. - - --- --- Data for Name: organization; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.organization (id, title, email, phone, created_at, updated_at, address_id, person_id, website) FROM stdin; -\. - - --- --- Data for Name: person; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.person (id, first_name, middle_name, last_name, email, phone, avatar_url, created_at, updated_at, address_id, preferred_communication_type, landline) FROM stdin; -3 Qffq Xltk Rgt qffq.rgt@fttr2rttr.gku \N \N 2026-04-14 16:09:52.349132 2026-04-14 16:09:52.349132 1 {mobilePhone} \N -4 \N \N tleitfqsstt@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:52.610212 2026-04-14 16:09:52.610212 1 {mobilePhone} \N -5 Pxsoqft \N Dtzm pxsoqft.dtzm@syu-w.rt 5797 9970 3774 all_genders_avatar.png 2026-04-14 16:09:52.622927 2026-04-14 16:09:52.622927 1 {mobilePhone} \N -6 \N \N qvg-ktyxuoxd-iqxlcqztkvtu@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:52.697842 2026-04-14 16:09:52.697842 1 {mobilePhone} \N -7 Ukoz \N Sqfuwtif sqfuwtif@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:52.710348 2026-04-14 16:09:52.710348 1 {mobilePhone} \N -8 Eikolzghi \N Wkqxf qvg-ktyxuoxd-soeiztfwtku@qvg-dozzt.rt 5701 175 56 56 all_genders_avatar.png 2026-04-14 16:09:52.797815 2026-04-14 16:09:52.797815 1 {mobilePhone} \N -9 Froqwts \N Rotfu tiktfqdz-kioflzkqllt@qvg-dozzt.rt 571560021804 all_genders_avatar.png 2026-04-14 16:09:52.810462 2026-04-14 16:09:52.810462 1 {mobilePhone} \N -10 Ik. \N Vtzztk vtzztk@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:52.929523 2026-04-14 16:09:52.929523 1 {mobilePhone} \N -11 Lodgf \N Lztofoeat lztofoeat@rka-dxtuutslhktt.rt 5708 1490 232 all_genders_avatar.png 2026-04-14 16:09:52.939598 2026-04-14 16:09:52.939598 1 {mobilePhone} \N -12 \N \N lgmoqsrotflz.rofugsyofutk@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:52.949566 2026-04-14 16:09:52.949566 1 {mobilePhone} \N -14 Ctkq \N Qsuttk ctkq.qsuttk@itkgtxkght.egd +26799 17157343 all_genders_avatar.png 2026-04-14 16:09:53.144014 2026-04-14 16:09:53.144014 1 {mobilePhone} \N -15 Solq \N Wqxtk lgmoqsztqd.wsxdwtkutkrqdd@itkgtxkght.egd \N all_genders_avatar.png 2026-04-14 16:09:53.154468 2026-04-14 16:09:53.154468 1 {mobilePhone} \N -16 Ik. \N Qs-Qzonnqz ofyg@ux-ofcqsortflzk.rt \N all_genders_avatar.png 2026-04-14 16:09:53.360569 2026-04-14 16:09:53.360569 1 {mobilePhone} \N -17 Snroq \N Pqxydqff pqxydqff@ux-ofcqsortflzk.rt \N all_genders_avatar.png 2026-04-14 16:09:53.374493 2026-04-14 16:09:53.374493 1 {mobilePhone} \N -18 \N \N hqkaigzts@etfzkg-igztsl.rt \N all_genders_avatar.png 2026-04-14 16:09:53.509576 2026-04-14 16:09:53.509576 1 {mobilePhone} \N -20 Yk. \N Uümtsrqs loctklzgkhlzkqllt.wtksof@epr.rt 5705 682 65 73 all_genders_avatar.png 2026-04-14 16:09:53.682534 2026-04-14 16:09:53.682534 1 {mobilePhone} \N -21 Qswkteiz \N Yüklzt qswkteiz.yxtklzt@epr.rt 5705 1512019 all_genders_avatar.png 2026-04-14 16:09:53.697307 2026-04-14 16:09:53.697307 1 {mobilePhone} \N -22 Yk. \N Cossvgea qt-uel@dosqq-wtksof.rt 5790 00166493 all_genders_avatar.png 2026-04-14 16:09:53.746421 2026-04-14 16:09:53.746421 1 {mobilePhone} \N -23 Lqkq \N Bitfug tiktfqdz-uel@dosqq-wtksof.rt 5790 001 664 97 all_genders_avatar.png 2026-04-14 16:09:53.75643 2026-04-14 16:09:53.75643 1 {mobilePhone} \N -24 Itkk \N Cotzm qt-qlaqfotkkofu@qswqzkgluudwi.rt 5796 5 283 67 73 all_genders_avatar.png 2026-04-14 16:09:53.78609 2026-04-14 16:09:53.78609 1 {mobilePhone} \N -25 Pqldof \N Aqdiont lgmoqsrotflz-qlaqfotkkofu@qswqzkgluudwi.rt 579049551697 all_genders_avatar.png 2026-04-14 16:09:53.797276 2026-04-14 16:09:53.797276 1 {mobilePhone} \N -26 \N \N stozxfu-alr@tx-igdteqkt.egd \N all_genders_avatar.png 2026-04-14 16:09:53.830742 2026-04-14 16:09:53.830742 1 {mobilePhone} \N -27 Yqzodq \N Ikgxmq tiktfqdz-alr@tx-igdteqkt.egd +26 797 02892914 all_genders_avatar.png 2026-04-14 16:09:53.840433 2026-04-14 16:09:53.840433 1 {mobilePhone} \N -28 \N \N wtzktxxfu-alr@tx-igdteqkt.egd 579702893122 all_genders_avatar.png 2026-04-14 16:09:53.852934 2026-04-14 16:09:53.852934 1 {mobilePhone} \N -29 \N \N iteatligkf.wtksof@epr.rt \N all_genders_avatar.png 2026-04-14 16:09:54.004921 2026-04-14 16:09:54.004921 1 {mobilePhone} \N -30 Püku \N Leivqkm pxtku.leivqkm@epr.rt 5703-4266162 all_genders_avatar.png 2026-04-14 16:09:54.020257 2026-04-14 16:09:54.020257 1 {mobilePhone} \N -31 \N \N xfztkaxfyz-ziy@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:54.045157 2026-04-14 16:09:54.045157 1 {mobilePhone} \N -32 Kgwtkz \N Motustk xfztkaxfyz-ziy@qvg-dozzt.rt 5797 3803 2913 all_genders_avatar.png 2026-04-14 16:09:54.06763 2026-04-14 16:09:54.06763 1 {mobilePhone} \N -33 Dofft \N Iquts tiktfqdzlaggkrofqzogf-ziy@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:54.083209 2026-04-14 16:09:54.083209 1 {mobilePhone} \N -34 \N \N leivqswtfvtu.szu@tx-igdteqkt.egd \N all_genders_avatar.png 2026-04-14 16:09:54.170461 2026-04-14 16:09:54.170461 1 {mobilePhone} \N -35 Tcutfon \N Qkztdntc leivqswtfvtu.tiktf@tx-igdteqkt.egd 57979 9458211 all_genders_avatar.png 2026-04-14 16:09:54.181008 2026-04-14 16:09:54.181008 1 {mobilePhone} \N -36 Qffq \N Ltoytkz aotyigsmlzkqllt3@syu-w.rt +26 797 79502200 all_genders_avatar.png 2026-04-14 16:09:54.250533 2026-04-14 16:09:54.250533 1 {mobilePhone} \N -37 Aqziqkofq \N Leiqqrt aqziqkofq.leiqqrt@syu-w.rt 5797 795 011 27 all_genders_avatar.png 2026-04-14 16:09:54.260857 2026-04-14 16:09:54.260857 1 {mobilePhone} \N -38 \N \N \N +26 85 378566-592 all_genders_avatar.png 2026-04-14 16:09:54.272331 2026-04-14 16:09:54.272331 1 {mobilePhone} \N -39 \N \N jxozztfvtu.wtksof@epr.rt \N all_genders_avatar.png 2026-04-14 16:09:54.332197 2026-04-14 16:09:54.332197 1 {mobilePhone} \N -40 Offq \N Leitfwto offq.leitfwto@epr.rt \N all_genders_avatar.png 2026-04-14 16:09:54.346428 2026-04-14 16:09:54.346428 1 {mobilePhone} \N -41 Ik. \N Eqwktkq lzqfrgkzstozxfu.uxlg@zqdqpq-ux.rt 5701 386 869 76 all_genders_avatar.png 2026-04-14 16:09:54.393923 2026-04-14 16:09:54.393923 1 {mobilePhone} \N -42 Eikolzofq \N Lztofiäxltk ​tiktfqdz.uxlg@zqdqpq.rt 5701 - 370 274 20 all_genders_avatar.png 2026-04-14 16:09:54.405667 2026-04-14 16:09:54.405667 1 {mobilePhone} \N -43 Lgmoqsrotflz \N \N lgmoqsqkwtoz.uxlg@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:09:54.415623 2026-04-14 16:09:54.415623 1 {mobilePhone} \N -44 \N \N ykozm-vosrxfu-lzkqllt.37@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:54.45771 2026-04-14 16:09:54.45771 1 {mobilePhone} \N -45 Foegst \N Leivtoutk foegst.leivtoutk@syu-w.rt 5797 03048242 all_genders_avatar.png 2026-04-14 16:09:54.467221 2026-04-14 16:09:54.467221 1 {mobilePhone} \N -46 Lxqrq \N Rgsgcqe wkqwqfztk-lzkqllt.77-73@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:54.500199 2026-04-14 16:09:54.500199 1 {mobilePhone} \N -2 Lqkqi Eggkrofqzgk Rgt lqkqi.rgt@fttr2rttr.gku \N \N 2026-04-14 16:09:52.349132 2026-04-14 16:09:52.349132 155 {mobilePhone} \N -19 Dgiqdtr \N Tsaqztw tsaqztw@qvg-dozzt.rt +2679082409767 all_genders_avatar.png 2026-04-14 16:09:53.522401 2026-04-14 16:09:53.522401 1 {email} \N -1 Pgif Qrdof Rgt \N 2026-04-14 16:09:52.349132 2026-04-14 16:09:52.349132 \N {mobilePhone} \N -47 \N \N ykozm-vosrxfu-lzkqllt.35@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:54.538737 2026-04-14 16:09:54.538737 1 {mobilePhone} \N -48 Yk. \N Uxfltfitodtk vgifitod.mtxuigy@roqagfot-lzqrzdozzt.rt 5718 995 14 77 all_genders_avatar.png 2026-04-14 16:09:54.566044 2026-04-14 16:09:54.566044 1 {mobilePhone} \N -49 Lghiot \N Esqqlltf tiktfqdz.mtxuigy@roqagfot-lzqrzdozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:54.578055 2026-04-14 16:09:54.578055 1 {mobilePhone} \N -50 Okofq \N Dtorgv qszt-pqagwlzkqllt.2@syu-w.rt 5797 79 50 11 81 all_genders_avatar.png 2026-04-14 16:09:54.604967 2026-04-14 16:09:54.604967 1 {mobilePhone} \N -51 \N \N lzqssleiktowtk@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:54.630954 2026-04-14 16:09:54.630954 1 {mobilePhone} \N -52 Zitktlq \N Wkqxf tiktfqdz-lzqssleiktowtk@hkolgr-vgiftf.rt 5708 4358035 all_genders_avatar.png 2026-04-14 16:09:54.64083 2026-04-14 16:09:54.64083 1 {mobilePhone} \N -53 \N \N lzqssleiktowtk-lr@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:54.650491 2026-04-14 16:09:54.650491 1 {mobilePhone} \N -54 Yk. \N Ligkgv rtuftk@hkolgr-vgiftf.rt 5793 52 34 79 26 all_genders_avatar.png 2026-04-14 16:09:54.728583 2026-04-14 16:09:54.728583 1 {mobilePhone} \N -55 Pqejxtsoft \N Stlei tiktfqdz-rtuftk@hkolgr-vgiftf.rt 5793 827 986 19 all_genders_avatar.png 2026-04-14 16:09:54.738896 2026-04-14 16:09:54.738896 1 {mobilePhone} \N -56 Ik. \N Wüeiftk-Ytfftk wgkfozm@rka-dxtuutslhktt.rt 5790/ 88 36 86 31 all_genders_avatar.png 2026-04-14 16:09:54.791383 2026-04-14 16:09:54.791383 1 {mobilePhone} \N -57 Ktyoa \N Qrqn qrqn@rka-dxtuutslhktt.rt 570183123855 all_genders_avatar.png 2026-04-14 16:09:54.800768 2026-04-14 16:09:54.800768 1 {mobilePhone} \N -58 Xskoat \N Lhstzzlzößtk dqb-wkxffgv@hkolgr-vgiftf.rt 5793 30 96 01 59 all_genders_avatar.png 2026-04-14 16:09:54.83988 2026-04-14 16:09:54.83988 1 {mobilePhone} \N -59 Dqkopq \N Lqkoe tiktfqdz-dqb-wkxffgv@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:54.849252 2026-04-14 16:09:54.849252 1 {mobilePhone} \N -60 Lqsgdt \N Eiqfaltsoqfo avl21@cgsallgsorqkozqtz.rt 5799 79544066 all_genders_avatar.png 2026-04-14 16:09:54.885342 2026-04-14 16:09:54.885342 1 {mobilePhone} \N -61 Iqsq \N Qs-Aiqsqy avl21-tiktfqdz@cgsallgsorqkozqtz.rt 5797 79544064 all_genders_avatar.png 2026-04-14 16:09:54.895138 2026-04-14 16:09:54.895138 1 {mobilePhone} \N -62 \N \N ux-vgl@dosqq-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:54.926078 2026-04-14 16:09:54.926078 1 {mobilePhone} \N -63 \N \N wtoltk@dosqq-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:54.935532 2026-04-14 16:09:54.935532 1 {mobilePhone} \N -64 \N \N ux.utiktflttlzk@qswqzkgluudwi.rt 5796 52 92 331 all_genders_avatar.png 2026-04-14 16:09:54.965804 2026-04-14 16:09:54.965804 1 {mobilePhone} \N -65 Ik. \N Nxlxhgc ux.iqutfgvtk-kofu@qswqzkgluudwi.rt 5705 29 45 849 all_genders_avatar.png 2026-04-14 16:09:55.02633 2026-04-14 16:09:55.02633 1 {mobilePhone} \N -66 Fofq \N Wtoptk f.wtoptk@qswqzkgluudwi.rt +26793 99785374 all_genders_avatar.png 2026-04-14 16:09:55.038516 2026-04-14 16:09:55.038516 1 {mobilePhone} \N -67 \N \N ux-vwl@dosqq-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:55.12686 2026-04-14 16:09:55.12686 1 {mobilePhone} \N -68 Akolzofq \N Soeiftk soeiftk@dosqq-wtksof.rt 5790 00162927 all_genders_avatar.png 2026-04-14 16:09:55.135786 2026-04-14 16:09:55.135786 1 {mobilePhone} \N -69 Ocg \N Agrqs ukqytfqxtk-vtu.84-22@syu-w.rt 5797 03 04 82 06 all_genders_avatar.png 2026-04-14 16:09:55.158248 2026-04-14 16:09:55.158248 1 {mobilePhone} \N -70 Hioakoq \N Atlqfqlicoso lil20@cgsallgsorqkozqtz.rt 5797 74 54 46 10 all_genders_avatar.png 2026-04-14 16:09:55.179154 2026-04-14 16:09:55.179154 1 {mobilePhone} \N -71 Oknfq \N Sqfrtl oknfq.sqfrtl@cgsallgsorqkozqtz.rt 5797 79544498 all_genders_avatar.png 2026-04-14 16:09:55.190034 2026-04-14 16:09:55.190034 1 {mobilePhone} \N -72 Fqzqsooq \N Squxzofq lil20-lgmoqsztqd@cgsallgsorqkozqtz.rt 585 25811 7363 all_genders_avatar.png 2026-04-14 16:09:55.200099 2026-04-14 16:09:55.200099 1 {mobilePhone} \N -73 \N \N dqbot-vqfrtk-lzkqllt.04@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:55.308954 2026-04-14 16:09:55.308954 1 {mobilePhone} \N -74 Ltwqlzoqf \N Iqkiqxltf ltwqlzoqf.iqkiqxltf@syu-w.rt +26 797 71 39 89 40 all_genders_avatar.png 2026-04-14 16:09:55.318896 2026-04-14 16:09:55.318896 1 {mobilePhone} \N -75 Yokofeq \N Yoleitk ux.wozztkytsrtklzk@itkgtxkght.egd 5701 215 231 70 all_genders_avatar.png 2026-04-14 16:09:55.374705 2026-04-14 16:09:55.374705 1 {mobilePhone} \N -76 Mqaqkoq \N Uquq mqaqkoq.uquq@itkgtxkght.egd +26 79917966520 all_genders_avatar.png 2026-04-14 16:09:55.384863 2026-04-14 16:09:55.384863 1 {mobilePhone} \N -77 \N \N lzqfrgkzstozxfu.uxvl@zqdqpq.rt 5701 154 576 85 all_genders_avatar.png 2026-04-14 16:09:55.417054 2026-04-14 16:09:55.417054 1 {mobilePhone} \N -78 \N \N tiktfqdz.uxvl@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:09:55.426701 2026-04-14 16:09:55.426701 1 {mobilePhone} \N -79 \N \N uxhqxs.leivtfalzk@itkgtxkght.egd \N all_genders_avatar.png 2026-04-14 16:09:55.44638 2026-04-14 16:09:55.44638 1 {mobilePhone} \N -80 \N \N ksl78@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:09:55.484692 2026-04-14 16:09:55.484692 1 {mobilePhone} \N -81 Hiqfzofq \N Ligso ksl78-tiktfqdz@cgsallgsorqkozqtz.rt 5797 79544411 all_genders_avatar.png 2026-04-14 16:09:55.493917 2026-04-14 16:09:55.493917 1 {mobilePhone} \N -82 Lgmoqsztqd \N \N ksl78-lgmoqsztqd@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:09:55.503479 2026-04-14 16:09:55.503479 1 {mobilePhone} \N -83 Itoat \N Ztfut ux-qal@dosqq-wtksof.rt 5701 279 490 77 all_genders_avatar.png 2026-04-14 16:09:55.561989 2026-04-14 16:09:55.561989 1 {mobilePhone} \N -84 \N \N mglltftk-lzkqllt.792-791@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:55.60001 2026-04-14 16:09:55.60001 1 {mobilePhone} \N -85 Dqke \N Itsytkl dqke.itsytkl@epr.rt 5797 95447604 all_genders_avatar.png 2026-04-14 16:09:55.621554 2026-04-14 16:09:55.621554 1 {mobilePhone} \N -86 \N \N iqxlstg@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:09:55.674946 2026-04-14 16:09:55.674946 1 {mobilePhone} \N -87 Dqsof \N Dtszmtk cgfdtszmtk@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:09:55.685456 2026-04-14 16:09:55.685456 1 {mobilePhone} \N -88 \N \N ktyxuoxd@hullgmoqstl.rt \N all_genders_avatar.png 2026-04-14 16:09:55.712265 2026-04-14 16:09:55.712265 1 {mobilePhone} \N -89 Tsolqwtzi \N Egfzti tsolqwtzi.egfzti@hullgmoqstl.rt \N all_genders_avatar.png 2026-04-14 16:09:55.721185 2026-04-14 16:09:55.721185 1 {mobilePhone} \N -90 Yk. \N Rtuokdtfeo ofyg@eozn92.rt \N all_genders_avatar.png 2026-04-14 16:09:55.741539 2026-04-14 16:09:55.741539 1 {mobilePhone} \N -91 Qfutsoaq \N Lhtss lgmoqsqkwtoztk@eozn92.rt \N all_genders_avatar.png 2026-04-14 16:09:55.751552 2026-04-14 16:09:55.751552 1 {mobilePhone} \N -92 \N \N icui@eqkozql-wtksof.rt 5700 935 36 94 all_genders_avatar.png 2026-04-14 16:09:55.796785 2026-04-14 16:09:55.796785 1 {mobilePhone} \N -93 Eikolzofq \N Iqfftdqff ux-qsz-dgqwoz@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:55.816638 2026-04-14 16:09:55.816638 1 {mobilePhone} \N -94 Zgd \N Vtoeitkz z.vtoeitkz@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:55.825974 2026-04-14 16:09:55.825974 1 {mobilePhone} \N -95 \N \N iqqkstdtklzkqllt.46-67@syu-w.rt 5797 03 04 82 00 all_genders_avatar.png 2026-04-14 16:09:55.871357 2026-04-14 16:09:55.871357 1 {mobilePhone} \N -96 Dqkoq-Wtktfoat \N Iäxlstk dqkoq-wtktfoat.iqtxlstk@syu-w.rt +26 7977 950 118 2 all_genders_avatar.png 2026-04-14 16:09:55.880644 2026-04-14 16:09:55.880644 1 {mobilePhone} \N -97 \N \N aotyigsmlzkqllt.07@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:55.936247 2026-04-14 16:09:55.936247 1 {mobilePhone} \N -98 Aqziqkofq \N Leiqqrt ail.tiktfqdz@syu-w.rt 5797 79 50 11 27 all_genders_avatar.png 2026-04-14 16:09:55.945172 2026-04-14 16:09:55.945172 1 {mobilePhone} \N -99 Ik. \N Dgxzqgxats lzqfrgkzstozxfu.uxad@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:09:55.995973 2026-04-14 16:09:55.995973 1 {mobilePhone} \N -100 Eikolzofq \N Lztofiäxltk tiktfqdz.uxad@zqdqpq.rt +2679045183982 all_genders_avatar.png 2026-04-14 16:09:56.006209 2026-04-14 16:09:56.006209 1 {mobilePhone} \N -101 \N \N lzqfrgkzstozxfu.uxzv@zqdqpq-ux.rt \N all_genders_avatar.png 2026-04-14 16:09:56.063448 2026-04-14 16:09:56.063448 1 {mobilePhone} \N -102 Dqkot \N Exexktssq tiktfqdz.uxzv@zqdqpq.rt 579045183748 all_genders_avatar.png 2026-04-14 16:09:56.07519 2026-04-14 16:09:56.07519 1 {mobilePhone} \N -103 \N \N lgmoqsqkwtoz.uxzv@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:09:56.084807 2026-04-14 16:09:56.084807 1 {mobilePhone} \N -104 Igsutk \N Ykqfm yqsatfwtkutk-lzkqllt.792@syu-w.rt 5797 79 50 22 41 all_genders_avatar.png 2026-04-14 16:09:56.135522 2026-04-14 16:09:56.135522 1 {mobilePhone} \N -105 \N \N ofyg@lza774.rt \N all_genders_avatar.png 2026-04-14 16:09:56.156798 2026-04-14 16:09:56.156798 1 {mobilePhone} \N -106 Qfpq \N \N qfpq.rtiuiqf@gfhxkhglt.wtksof 5718 – 3639 104 all_genders_avatar.png 2026-04-14 16:09:56.166966 2026-04-14 16:09:56.166966 1 {mobilePhone} \N -107 \N \N lgmoqstqkwtoz774@lza774.rt \N all_genders_avatar.png 2026-04-14 16:09:56.17798 2026-04-14 16:09:56.17798 1 {mobilePhone} \N -108 \N \N dxtist@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:56.271689 2026-04-14 16:09:56.271689 1 {mobilePhone} \N -109 Qsoft \N Vtfrleitea tiktfqdz-dxtist@hkolgr-vgiftf.rt 5793/ 528 09 780 all_genders_avatar.png 2026-04-14 16:09:56.280958 2026-04-14 16:09:56.280958 1 {mobilePhone} \N -110 \N \N rqfotsq.afxzi@itkgtxkght.egd 5799 1796 4159 all_genders_avatar.png 2026-04-14 16:09:56.301943 2026-04-14 16:09:56.301943 1 {mobilePhone} \N -111 Pgqffq \N Sxfrz pgqffq.sxfrz@itkgtxkght.egd 5701 16050 943 all_genders_avatar.png 2026-04-14 16:09:56.311557 2026-04-14 16:09:56.311557 1 {mobilePhone} \N -112 Aqloq \N Łnpqa aqloq.snpqa@itkgtxkght.egd \N all_genders_avatar.png 2026-04-14 16:09:56.3207 2026-04-14 16:09:56.3207 1 {mobilePhone} \N -113 Zqzoqfq \N Kgzz zqzoqfq.kgzz@itkgtxkght.egd +26 799 179 667 24 all_genders_avatar.png 2026-04-14 16:09:56.397426 2026-04-14 16:09:56.397426 1 {mobilePhone} \N -114 Grosoq \N Cgouz grosoq.cgouz@itkgtxkght.egd +26 79 913 198 219 all_genders_avatar.png 2026-04-14 16:09:56.407122 2026-04-14 16:09:56.407122 1 {mobilePhone} \N -115 \N \N ux.lzgkagvtklzk@qswqzkgluudwi.rt \N all_genders_avatar.png 2026-04-14 16:09:56.451004 2026-04-14 16:09:56.451004 1 {mobilePhone} \N -116 \N \N \N 585 258 184 all_genders_avatar.png 2026-04-14 16:09:56.460117 2026-04-14 16:09:56.460117 1 {mobilePhone} \N -117 \N \N zktlagvlzkqllt.79-71@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:56.479966 2026-04-14 16:09:56.479966 1 {mobilePhone} \N -118 \N \N ux-vil@dosqq-wtksof.rt 5701 279 490 73 all_genders_avatar.png 2026-04-14 16:09:56.498118 2026-04-14 16:09:56.498118 1 {mobilePhone} \N -119 \N \N sofrtfwtkutk-vtu.39@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:56.518252 2026-04-14 16:09:56.518252 1 {mobilePhone} \N -120 Tdosn \N Tkrdqff tdosn.tkrdqff@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:56.527383 2026-04-14 16:09:56.527383 1 {mobilePhone} \N -121 \N \N ktffwqiflzkqllt.40@syu-w.rt 5797 79 50 22 41 all_genders_avatar.png 2026-04-14 16:09:56.547083 2026-04-14 16:09:56.547083 1 {mobilePhone} \N -122 \N \N \N +26 797 795 041 94 all_genders_avatar.png 2026-04-14 16:09:56.555705 2026-04-14 16:09:56.555705 1 {mobilePhone} \N -123 \N \N ktffwqiflzkqllt.07-02@syu-w.rt 5797 795 022 41 all_genders_avatar.png 2026-04-14 16:09:56.574849 2026-04-14 16:09:56.574849 1 {mobilePhone} \N -124 Yk. \N Vqlostvlao dqkot-leisto-iqxl@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:56.595762 2026-04-14 16:09:56.595762 1 {mobilePhone} \N -125 Ftst \N Wtkuit cqfrtfwtkuit@qvg-dozzt.rt 5797 03242355 all_genders_avatar.png 2026-04-14 16:09:56.604671 2026-04-14 16:09:56.604671 1 {mobilePhone} \N -126 \N \N ux.ltfyztfwtkutkkofu@qswqzkgluudwi.rt 5701 764 873 67 all_genders_avatar.png 2026-04-14 16:09:56.641842 2026-04-14 16:09:56.641842 1 {mobilePhone} \N -127 Ftpkq \N Usqdge f.usqdge@qswqzkgluudwi.rt 5701 - 764 873 19 all_genders_avatar.png 2026-04-14 16:09:56.651111 2026-04-14 16:09:56.651111 1 {mobilePhone} \N -128 \N \N hglzlztsst@sqy.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:56.67151 2026-04-14 16:09:56.67151 1 {mobilePhone} \N -129 Itkk \N Oldqoso hoeitslvtkrtk@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:56.691381 2026-04-14 16:09:56.691381 1 {mobilePhone} \N -130 \N \N tiktfqdz-hoeitslvtkrtk@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:09:56.700392 2026-04-14 16:09:56.700392 1 {mobilePhone} \N -131 Ykqx \N Lqiqkaiom ofyg@ux-yktxrlzk.rt \N all_genders_avatar.png 2026-04-14 16:09:56.737502 2026-04-14 16:09:56.737502 1 {mobilePhone} \N -132 Tscokq \N Dösstk dgtsstk@ux-yktxrlzk.rt \N all_genders_avatar.png 2026-04-14 16:09:56.747658 2026-04-14 16:09:56.747658 1 {mobilePhone} \N -133 Vossoqd \N Fpofuqfu fpofuqfu@ux-yktxrlzk.rt 585 3883 7617 76 all_genders_avatar.png 2026-04-14 16:09:56.757713 2026-04-14 16:09:56.757713 1 {mobilePhone} \N -134 \N \N ux-lhqfrqxtklzkqllt@lof-tc.rt 5793 964 522 85 all_genders_avatar.png 2026-04-14 16:09:56.798751 2026-04-14 16:09:56.798751 1 {mobilePhone} \N -135 Ftuof \N Qflqko f.qflqko@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:56.80748 2026-04-14 16:09:56.80748 1 {mobilePhone} \N -136 \N \N ofyg@eozntstctf.rt \N all_genders_avatar.png 2026-04-14 16:09:56.826866 2026-04-14 16:09:56.826866 1 {mobilePhone} \N -137 Kqshi \N Tiksoei tiktfqdz@eozntstctf.rt 57047468338 all_genders_avatar.png 2026-04-14 16:09:56.836702 2026-04-14 16:09:56.836702 1 {mobilePhone} \N -138 Dqfrn \N Xkwqf egfzqez@eozntstctf.rt 585 3556 31 68 all_genders_avatar.png 2026-04-14 16:09:56.845796 2026-04-14 16:09:56.845796 1 {mobilePhone} \N -139 \N \N ofyg@ux-kqxeilzk.rt \N all_genders_avatar.png 2026-04-14 16:09:56.93313 2026-04-14 16:09:56.93313 1 {mobilePhone} \N -140 \N \N izl30@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:09:56.95434 2026-04-14 16:09:56.95434 1 {mobilePhone} \N -141 Qrqd \N Qxuxlznf qrqd.qxuxlznf@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:09:56.96404 2026-04-14 16:09:56.96404 1 {mobilePhone} \N -142 \N \N qvg-ktyxuoxd-glzhktxlltfrqdd@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:09:57.051416 2026-04-14 16:09:57.051416 1 {mobilePhone} \N -143 Yk. \N Lqxfqk dqrtstoft.lqxfqk@epr.rt 5797 77143566 all_genders_avatar.png 2026-04-14 16:09:57.071902 2026-04-14 16:09:57.071902 1 {mobilePhone} \N -144 \N \N ux-stgfgktflzkqllt@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:57.091232 2026-04-14 16:09:57.091232 1 {mobilePhone} \N -145 Iqfl \N Itffofu i.itffofu@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:57.099877 2026-04-14 16:09:57.099877 1 {mobilePhone} \N -146 Ykotrtkoat \N Vtlzhiqs ykotrtkoat.vtlzhiqs@itkgtxkght.egd \N all_genders_avatar.png 2026-04-14 16:09:57.121596 2026-04-14 16:09:57.121596 1 {mobilePhone} \N -147 Mqaqkoq \N Uquq mqaqkoq.uquq@itkgtxkght.egd +26 799 17 96 65 20 all_genders_avatar.png 2026-04-14 16:09:57.136328 2026-04-14 16:09:57.136328 1 {mobilePhone} \N -148 Ik. \N Mvossofu ux-glv@dosqq-wtksof.rt 5790 001 673 24 all_genders_avatar.png 2026-04-14 16:09:57.173645 2026-04-14 16:09:57.173645 1 {mobilePhone} \N -149 Dtidtz \N Qsodgusx qsodgusx@dosqq-wtksof.rt 5790 00167395 all_genders_avatar.png 2026-04-14 16:09:57.184448 2026-04-14 16:09:57.184448 1 {mobilePhone} \N -150 Ik. \N Gzzg vi-w-zkqeitfwtkukofu@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.240797 2026-04-14 16:09:57.240797 1 {mobilePhone} \N -151 Ptffoytk \N Yotrstk ptffoytk.yotrstk@ow.rt 57031689961 all_genders_avatar.png 2026-04-14 16:09:57.250345 2026-04-14 16:09:57.250345 1 {mobilePhone} \N -152 \N \N vi-w-dqkotfytsrt@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.290079 2026-04-14 16:09:57.290079 1 {mobilePhone} \N -153 Rgkgzq \N Iqstagzzt dqurqstfq.iqstagzzt@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.301014 2026-04-14 16:09:57.301014 1 {mobilePhone} \N -154 Yk. \N Uxtkkqmmo lzqfrgkzstozxfu.uxar@zqdqpq-ux.rt \N all_genders_avatar.png 2026-04-14 16:09:57.340142 2026-04-14 16:09:57.340142 1 {mobilePhone} \N -155 \N \N tiktfqdz.uxar@zqdqpq-ux.rt \N all_genders_avatar.png 2026-04-14 16:09:57.350293 2026-04-14 16:09:57.350293 1 {mobilePhone} \N -156 Ik. \N Iqpttk ux.egsrozmlzk@qswqzkgluudwi.rt 57904 955 16 94 all_genders_avatar.png 2026-04-14 16:09:57.37559 2026-04-14 16:09:57.37559 1 {mobilePhone} \N -157 Htztk \N Aqfng h.aqfng@qswqzkgluudwi.rt \N all_genders_avatar.png 2026-04-14 16:09:57.385578 2026-04-14 16:09:57.385578 1 {mobilePhone} \N -158 Lgmoqsrotflz \N \N lgmoqsrotflz.uxegsr@qswqzkgluudwi.rt \N all_genders_avatar.png 2026-04-14 16:09:57.395358 2026-04-14 16:09:57.395358 1 {mobilePhone} \N -159 Sxe \N Pgof-Sqdwtkz ukgllwttktflzkqllt.82-25@syu-w.rt 5797 79504196 all_genders_avatar.png 2026-04-14 16:09:57.465833 2026-04-14 16:09:57.465833 1 {mobilePhone} \N -160 Rgkgzitq \N Agsleitvlao rgkgzitq.agsleitvlao@syu-w.rt 5797 03 04 53 31 all_genders_avatar.png 2026-04-14 16:09:57.475804 2026-04-14 16:09:57.475804 1 {mobilePhone} \N -161 Yk. \N Usgxyzlo xfztkaxfyzlstozxfu@ux-fotrlzk.rt \N all_genders_avatar.png 2026-04-14 16:09:57.495751 2026-04-14 16:09:57.495751 1 {mobilePhone} \N -162 Ztgfq \N Zeiqfzxkoq-Aüiftdqff xfztkaxfyz-iqfrptkn@fwil.rt \N all_genders_avatar.png 2026-04-14 16:09:57.529097 2026-04-14 16:09:57.529097 1 {mobilePhone} \N -163 Lztyyo \N Dtztsdqff lztyyo.dtztsdqff@fwil.rt \N all_genders_avatar.png 2026-04-14 16:09:57.538497 2026-04-14 16:09:57.538497 1 {mobilePhone} \N -164 Dqkzof \N Lzkgiytsrz egsxdwoqrqdd.42@syu-w.rt 5797 79501180 all_genders_avatar.png 2026-04-14 16:09:57.558162 2026-04-14 16:09:57.558162 1 {mobilePhone} \N -165 Sqxkq \N Wtktmfqo sqxkq.wtktmfqo@syu-w.rt +26 797 71398993 all_genders_avatar.png 2026-04-14 16:09:57.567474 2026-04-14 16:09:57.567474 1 {mobilePhone} \N -166 \N \N dqkzofq.uqrrgfo@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:09:57.578164 2026-04-14 16:09:57.578164 1 {mobilePhone} \N -167 \N \N lgmoqstrotflzt@xfogfiosylvtka.rt \N all_genders_avatar.png 2026-04-14 16:09:57.660178 2026-04-14 16:09:57.660178 1 {mobilePhone} \N -168 Yk. \N Cossvgea kqr@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:57.744095 2026-04-14 16:09:57.744095 1 {mobilePhone} \N -169 Lsyqfq \N Axkwqu axkwqu@rka-dxtuutslhktt.rt 57081490587 all_genders_avatar.png 2026-04-14 16:09:57.753334 2026-04-14 16:09:57.753334 1 {mobilePhone} \N -170 \N \N ux-agthtfoeatk-ww@ow.rt 585 235 77 444 all_genders_avatar.png 2026-04-14 16:09:57.804202 2026-04-14 16:09:57.804202 1 {mobilePhone} \N -171 Hiosgdofq \N Zqdwt hiosgdofq.wtlgfu.zqdwt@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.814308 2026-04-14 16:09:57.814308 1 {mobilePhone} \N -172 Dqrstf \N Vosdl ux-euq20-ww@ow.rt \N all_genders_avatar.png 2026-04-14 16:09:57.835515 2026-04-14 16:09:57.835515 1 {mobilePhone} \N -173 Dqfrn \N Iqfpgts dqfrn.qsnllq.iqfpgts@ow.rt 5797 33732232 all_genders_avatar.png 2026-04-14 16:09:57.844869 2026-04-14 16:09:57.844869 1 {mobilePhone} \N -174 \N \N vlh@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:57.888159 2026-04-14 16:09:57.888159 1 {mobilePhone} \N -175 Aofqfq \N Ltodxqq ltodxqq@rka-dxtuutslhktt.rt \N all_genders_avatar.png 2026-04-14 16:09:57.903452 2026-04-14 16:09:57.903452 1 {mobilePhone} \N -176 Eqkdtf \N Wäeatk lql46@cgsallgsorqkozqtz.rt 5797 795 444 73 all_genders_avatar.png 2026-04-14 16:09:57.942625 2026-04-14 16:09:57.942625 1 {mobilePhone} \N -177 Iqffqi \N Kofrstk lql46-tiktfqdz@cgsallgsorqkozqtz.rt 5797 79544403 all_genders_avatar.png 2026-04-14 16:09:57.95124 2026-04-14 16:09:57.95124 1 {mobilePhone} \N -178 Uxorg \N Leivqkm iqllgvtu.87@syu-w.rt 5797 795 011 89 all_genders_avatar.png 2026-04-14 16:09:57.982437 2026-04-14 16:09:57.982437 1 {mobilePhone} \N -179 Yk. \N Dqlxei aqwsgvtk@rka-dxtuutslhktt.rt 5708 141 78 84 all_genders_avatar.png 2026-04-14 16:09:58.003033 2026-04-14 16:09:58.003033 1 {mobilePhone} \N -180 Lsyqfq \N Axkwqu axkwqu@rka-dxtuutslhktt.rt 579396309030 all_genders_avatar.png 2026-04-14 16:09:58.013448 2026-04-14 16:09:58.013448 1 {mobilePhone} \N -181 \N \N ofyg@w-w-t.rt \N all_genders_avatar.png 2026-04-14 16:09:58.064259 2026-04-14 16:09:58.064259 1 {mobilePhone} \N -182 \N \N agfzqaz@yvq-di.rt \N all_genders_avatar.png 2026-04-14 16:09:58.094085 2026-04-14 16:09:58.094085 1 {mobilePhone} \N -183 \N \N ofyg@oaiwtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.115023 2026-04-14 16:09:58.115023 1 {mobilePhone} \N -184 \N \N ztqd@wgxstcqkr-aqlzqfotfqsstt.rt \N all_genders_avatar.png 2026-04-14 16:09:58.134758 2026-04-14 16:09:58.134758 1 {mobilePhone} \N -185 \N \N qykgzqa@enwtkfgdqrl.rt \N all_genders_avatar.png 2026-04-14 16:09:58.155885 2026-04-14 16:09:58.155885 1 {mobilePhone} \N -186 \N \N sqsgaq@hqr-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.18115 2026-04-14 16:09:58.18115 1 {mobilePhone} \N -187 \N \N ofyg@qkkocqslxhhgkz.wtksof \N all_genders_avatar.png 2026-04-14 16:09:58.202938 2026-04-14 16:09:58.202938 1 {mobilePhone} \N -188 \N \N eqyt-hofa@hyi-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.22861 2026-04-14 16:09:58.22861 1 {mobilePhone} \N -189 \N \N ofyg@esxw-roqsgu.rt \N all_genders_avatar.png 2026-04-14 16:09:58.253846 2026-04-14 16:09:58.253846 1 {mobilePhone} \N -190 \N \N wtksof@rqdoukq.rt \N all_genders_avatar.png 2026-04-14 16:09:58.284871 2026-04-14 16:09:58.284871 1 {mobilePhone} \N -191 \N \N ofyg@lxlo-ykqxtf-mtfzkxd.egd \N all_genders_avatar.png 2026-04-14 16:09:58.31027 2026-04-14 16:09:58.31027 1 {mobilePhone} \N -192 \N \N vrl.fqeiwqkleiqyz@coq-of-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.336867 2026-04-14 16:09:58.336867 1 {mobilePhone} \N -193 \N \N egfzqez@tsoaoq-tc.gku \N all_genders_avatar.png 2026-04-14 16:09:58.357069 2026-04-14 16:09:58.357069 1 {mobilePhone} \N -194 \N \N agfzqaz@ymd-wtksof.egd \N all_genders_avatar.png 2026-04-14 16:09:58.391541 2026-04-14 16:09:58.391541 1 {mobilePhone} \N -195 \N \N hkgqlns@hkgqlns.rt \N all_genders_avatar.png 2026-04-14 16:09:58.423955 2026-04-14 16:09:58.423955 1 {mobilePhone} \N -196 \N \N utgkuoleitliqxl@nqigg.rt \N all_genders_avatar.png 2026-04-14 16:09:58.449801 2026-04-14 16:09:58.449801 1 {mobilePhone} \N -197 \N \N wkoleikq@qgs.egd \N all_genders_avatar.png 2026-04-14 16:09:58.478863 2026-04-14 16:09:58.478863 1 {mobilePhone} \N -198 \N \N agfzqaz@utltssleiqyzllhotst.wtksof \N all_genders_avatar.png 2026-04-14 16:09:58.502463 2026-04-14 16:09:58.502463 1 {mobilePhone} \N -199 \N \N ofyg@usqrz.rt \N all_genders_avatar.png 2026-04-14 16:09:58.532661 2026-04-14 16:09:58.532661 1 {mobilePhone} \N -200 \N \N ofyg@ufuwtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.561827 2026-04-14 16:09:58.561827 1 {mobilePhone} \N -201 \N \N ofyg@olo-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:58.606056 2026-04-14 16:09:58.606056 1 {mobilePhone} \N -202 \N \N ofyg@ofllqf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.635022 2026-04-14 16:09:58.635022 1 {mobilePhone} \N -203 \N \N ktrqazogf@aotmlhofft.rt \N all_genders_avatar.png 2026-04-14 16:09:58.660151 2026-04-14 16:09:58.660151 1 {mobilePhone} \N -204 \N \N qfft.ptkmqa@wq-di.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.690405 2026-04-14 16:09:58.690405 1 {mobilePhone} \N -205 \N \N hiosohh.kitof@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.720018 2026-04-14 16:09:58.720018 1 {mobilePhone} \N -206 \N \N pxsoq.lzqrzytsr@ktofoeatfrgky.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.7486 2026-04-14 16:09:58.7486 1 {mobilePhone} \N -207 \N \N eqkgsnf.aqfpq@wq-dozzt.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.774742 2026-04-14 16:09:58.774742 1 {mobilePhone} \N -208 \N \N sxolt.wxrqtxl@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.803284 2026-04-14 16:09:58.803284 1 {mobilePhone} \N -209 \N \N \N 5702 715 09 98 all_genders_avatar.png 2026-04-14 16:09:58.828589 2026-04-14 16:09:58.828589 1 {mobilePhone} \N -210 \N \N yqwoqf.wgka@wq-za.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.837269 2026-04-14 16:09:58.837269 1 {mobilePhone} \N -211 \N \N ofztukqzogf@wq-za.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.861249 2026-04-14 16:09:58.861249 1 {mobilePhone} \N -212 \N \N hktlltlztsst@ltfqluocq.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.882143 2026-04-14 16:09:58.882143 1 {mobilePhone} \N -213 \N \N wtkqzxfu@ofzdou.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.910413 2026-04-14 16:09:58.910413 1 {mobilePhone} \N -214 \N \N tsat.doeiqxa@wq-lhqfrqx.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:58.936421 2026-04-14 16:09:58.936421 1 {mobilePhone} \N -215 \N \N uxtftk.wqseo@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.960184 2026-04-14 16:09:58.960184 1 {mobilePhone} \N -216 \N \N xakqoft-iosyt-ztqd@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:09:58.982857 2026-04-14 16:09:58.982857 1 {mobilePhone} \N -217 \N \N tiktfqdzlwxtkg@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.008904 2026-04-14 16:09:59.008904 1 {mobilePhone} \N -218 \N \N wxtkg@ofztkysxul.rt \N all_genders_avatar.png 2026-04-14 16:09:59.035334 2026-04-14 16:09:59.035334 1 {mobilePhone} \N -219 \N \N qstbqfrtk.rqn@ktlext.gku \N all_genders_avatar.png 2026-04-14 16:09:59.058907 2026-04-14 16:09:59.058907 1 {mobilePhone} \N -220 \N \N ofyg@pxdtf.gku \N all_genders_avatar.png 2026-04-14 16:09:59.090819 2026-04-14 16:09:59.090819 1 {mobilePhone} \N -221 \N \N us@aqkxfq-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:59.121182 2026-04-14 16:09:59.121182 1 {mobilePhone} \N -222 \N \N ofyg@aga-wxtkg.rt \N all_genders_avatar.png 2026-04-14 16:09:59.148538 2026-04-14 16:09:59.148538 1 {mobilePhone} \N -223 \N \N agfzqaz@axw-wtksof.gku \N all_genders_avatar.png 2026-04-14 16:09:59.175646 2026-04-14 16:09:59.175646 1 {mobilePhone} \N -224 \N \N agfzqaz@sqkxitshlxakqoft.egd \N all_genders_avatar.png 2026-04-14 16:09:59.203094 2026-04-14 16:09:59.203094 1 {mobilePhone} \N -225 \N \N io@ktyxuttl-vtsegdt.ftz \N all_genders_avatar.png 2026-04-14 16:09:59.224506 2026-04-14 16:09:59.224506 1 {mobilePhone} \N -226 \N \N agfzqaz@dofukx-pohtf.egd \N all_genders_avatar.png 2026-04-14 16:09:59.249555 2026-04-14 16:09:59.249555 1 {mobilePhone} \N -227 \N \N ofyg@doz-dqei-dxloa.rt \N all_genders_avatar.png 2026-04-14 16:09:59.274834 2026-04-14 16:09:59.274834 1 {mobilePhone} \N -228 \N \N agfzqaz@dozztsigy.gku \N all_genders_avatar.png 2026-04-14 16:09:59.304579 2026-04-14 16:09:59.304579 1 {mobilePhone} \N -229 \N \N ofyg@dgqwoz-iosyz.egd \N all_genders_avatar.png 2026-04-14 16:09:59.331138 2026-04-14 16:09:59.331138 1 {mobilePhone} \N -230 \N \N zkoj@zkqflofztkjxttk.gku \N all_genders_avatar.png 2026-04-14 16:09:59.356157 2026-04-14 16:09:59.356157 1 {mobilePhone} \N -231 \N \N ustoeiztosiqwtf@dgctusgwqs.rt \N all_genders_avatar.png 2026-04-14 16:09:59.382439 2026-04-14 16:09:59.382439 1 {mobilePhone} \N -232 \N \N hqkozqtzoleit@qaqrtdot.gku \N all_genders_avatar.png 2026-04-14 16:09:59.407403 2026-04-14 16:09:59.407403 1 {mobilePhone} \N -233 \N \N ofyg@htqet-zkqof-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.427382 2026-04-14 16:09:59.427382 1 {mobilePhone} \N -234 \N \N ofyg@voagwxtlm.wtksof \N all_genders_avatar.png 2026-04-14 16:09:59.452352 2026-04-14 16:09:59.452352 1 {mobilePhone} \N -235 \N \N utleiqtyzllztsst@hofts.rt \N all_genders_avatar.png 2026-04-14 16:09:59.47859 2026-04-14 16:09:59.47859 1 {mobilePhone} \N -236 \N \N ofyg@jxqkzttkq.rt \N all_genders_avatar.png 2026-04-14 16:09:59.498858 2026-04-14 16:09:59.498858 1 {mobilePhone} \N -237 \N \N ktyxuog@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:09:59.524732 2026-04-14 16:09:59.524732 1 {mobilePhone} \N -238 \N \N ofyg@ktolzkgddts-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:59.549553 2026-04-14 16:09:59.549553 1 {mobilePhone} \N -239 \N \N iqmtd.qwrtskqidqf@le-igkxl.egd \N all_genders_avatar.png 2026-04-14 16:09:59.57091 2026-04-14 16:09:59.57091 1 {mobilePhone} \N -240 \N \N agfzqaz@iqfuqk7.rt \N all_genders_avatar.png 2026-04-14 16:09:59.59442 2026-04-14 16:09:59.59442 1 {mobilePhone} \N -241 \N \N agfzqaz@lhkqeieqyt-hgsfolei.gku \N all_genders_avatar.png 2026-04-14 16:09:59.620423 2026-04-14 16:09:59.620423 1 {mobilePhone} \N -242 \N \N ofyg@zoa-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.640212 2026-04-14 16:09:59.640212 1 {mobilePhone} \N -243 \N \N ofyg@fqeiwqkleiqyyz-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:59.667231 2026-04-14 16:09:59.667231 1 {mobilePhone} \N -244 \N \N ofyg@zxtkaoleitkykqxtfctktof-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.692347 2026-04-14 16:09:59.692347 1 {mobilePhone} \N -245 \N \N ztqd@xtwtkrtfztsstkkqfr.gku \N all_genders_avatar.png 2026-04-14 16:09:59.721725 2026-04-14 16:09:59.721725 1 {mobilePhone} \N -246 \N \N ofyg@btfogf.gku \N all_genders_avatar.png 2026-04-14 16:09:59.74108 2026-04-14 16:09:59.74108 1 {mobilePhone} \N -247 \N \N dqos@bgeioexoeqzs.rt \N all_genders_avatar.png 2026-04-14 16:09:59.770917 2026-04-14 16:09:59.770917 1 {mobilePhone} \N -248 \N \N sq-ktr@sq-ktr.tx \N all_genders_avatar.png 2026-04-14 16:09:59.794525 2026-04-14 16:09:59.794525 1 {mobilePhone} \N -249 \N \N ofyg@nqqkwtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.813253 2026-04-14 16:09:59.813253 1 {mobilePhone} \N -250 \N \N ofyg@mqao-tc.rt \N all_genders_avatar.png 2026-04-14 16:09:59.837335 2026-04-14 16:09:59.837335 1 {mobilePhone} \N -251 \N \N ofyg-mcxr@xak.ftz \N all_genders_avatar.png 2026-04-14 16:09:59.866245 2026-04-14 16:09:59.866245 1 {mobilePhone} \N -252 \N \N agfzqaz@k-soeiztfwtku.rt \N all_genders_avatar.png 2026-04-14 16:09:59.885286 2026-04-14 16:09:59.885286 1 {mobilePhone} \N -253 \N \N stozxfu.lhqet3ukgv@ykqxtfaktolt-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.909121 2026-04-14 16:09:59.909121 1 {mobilePhone} \N -254 \N \N zigdql.wknqfz@wq-di.ctkvqsz-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.933131 2026-04-14 16:09:59.933131 1 {mobilePhone} \N -255 \N \N leixst@rka-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:09:59.952286 2026-04-14 16:09:59.952286 1 {mobilePhone} \N -256 \N \N ktazgkqz@qli-wtksof.tx \N all_genders_avatar.png 2026-04-14 16:09:59.97125 2026-04-14 16:09:59.97125 1 {mobilePhone} \N -257 \N \N ofyg@qxlwosrxfu-gzq.rt \N all_genders_avatar.png 2026-04-14 16:09:59.99109 2026-04-14 16:09:59.99109 1 {mobilePhone} \N -258 \N \N vtsegdt-qssoqfet@hkgptezzgutzitk.gku \N all_genders_avatar.png 2026-04-14 16:10:00.146462 2026-04-14 16:10:00.146462 1 {mobilePhone} \N -259 \N \N iqssg@r-l-t-t.rt \N all_genders_avatar.png 2026-04-14 16:10:00.203403 2026-04-14 16:10:00.203403 1 {mobilePhone} \N -260 \N \N ofyg@tqlntkdqf.gku \N all_genders_avatar.png 2026-04-14 16:10:00.235474 2026-04-14 16:10:00.235474 1 {mobilePhone} \N -261 \N \N gtmstd.eofqk@hyi-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:00.268387 2026-04-14 16:10:00.268387 1 {mobilePhone} \N -262 \N \N lzqrzqeatk@htuqlxludwi.rt \N all_genders_avatar.png 2026-04-14 16:10:00.301445 2026-04-14 16:10:00.301445 1 {mobilePhone} \N -263 \N \N q.leidtrrofu@lzoyzxfu-wtksoftk-stwtf.rt \N all_genders_avatar.png 2026-04-14 16:10:00.327549 2026-04-14 16:10:00.327549 1 {mobilePhone} \N -264 \N \N ofyg@cglzts.rt \N all_genders_avatar.png 2026-04-14 16:10:00.354276 2026-04-14 16:10:00.354276 1 {mobilePhone} \N -265 \N \N qla@qla-rguqf.rt \N all_genders_avatar.png 2026-04-14 16:10:00.373892 2026-04-14 16:10:00.373892 1 {mobilePhone} \N -266 \N \N ofyg@pxdq-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:00.400212 2026-04-14 16:10:00.400212 1 {mobilePhone} \N -267 \N \N dqos@roqagfotvtka-lodtgf.rt \N all_genders_avatar.png 2026-04-14 16:10:00.429563 2026-04-14 16:10:00.429563 1 {mobilePhone} \N -268 \N \N wtksof@uktfmuqtfut.ftz \N all_genders_avatar.png 2026-04-14 16:10:00.458824 2026-04-14 16:10:00.458824 1 {mobilePhone} \N -269 \N \N qyuiqfolzqf-agdoztt-wtksof@gxzsgga.rt grtk ofyg@qyuiqfolzqfagdoztt.rt / lqrtd.uqwwqkq37@udqos.egd / kqiodlqyo@z-gfsoft.rt \N all_genders_avatar.png 2026-04-14 16:10:00.483266 2026-04-14 16:10:00.483266 1 {mobilePhone} \N -270 \N \N qaqrtdot@tiktfqdz.rt \N all_genders_avatar.png 2026-04-14 16:10:00.508272 2026-04-14 16:10:00.508272 1 {mobilePhone} \N -271 \N \N qaofrq@btfogf.gku \N all_genders_avatar.png 2026-04-14 16:10:00.53371 2026-04-14 16:10:00.53371 1 {mobilePhone} \N -272 \N \N ofyg@qdqkgygkg.rt \N all_genders_avatar.png 2026-04-14 16:10:00.560033 2026-04-14 16:10:00.560033 1 {mobilePhone} \N -273 \N \N tcq.sotweitf@udb.ftz \N all_genders_avatar.png 2026-04-14 16:10:00.590875 2026-04-14 16:10:00.590875 1 {mobilePhone} \N -274 \N \N ofyg@qdxwtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:00.617998 2026-04-14 16:10:00.617998 1 {mobilePhone} \N -275 \N \N wrw@wrw-utkdqfn.rt \N all_genders_avatar.png 2026-04-14 16:10:00.64469 2026-04-14 16:10:00.64469 1 {mobilePhone} \N -276 \N \N ofyg@wtksof-iosyz.egd \N all_genders_avatar.png 2026-04-14 16:10:00.665779 2026-04-14 16:10:00.665779 1 {mobilePhone} \N -277 \N \N stuqs@wtksofzgwgkrtkl.gku \N all_genders_avatar.png 2026-04-14 16:10:00.694487 2026-04-14 16:10:00.694487 1 {mobilePhone} \N -278 \N \N ofyg@wtulhg.rt \N all_genders_avatar.png 2026-04-14 16:10:00.723093 2026-04-14 16:10:00.723093 1 {mobilePhone} \N -279 \N \N tiktfqdz@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:10:00.751816 2026-04-14 16:10:00.751816 1 {mobilePhone} \N -280 \N \N wquyq@wquyq.rt \N all_genders_avatar.png 2026-04-14 16:10:00.781948 2026-04-14 16:10:00.781948 1 {mobilePhone} \N -281 \N \N ofyg@wqyy-mtfzktf.gku \N all_genders_avatar.png 2026-04-14 16:10:00.822001 2026-04-14 16:10:00.822001 1 {mobilePhone} \N -282 \N \N ztqd@wxfzaoeazuxz.rt \N all_genders_avatar.png 2026-04-14 16:10:00.890946 2026-04-14 16:10:00.890946 1 {mobilePhone} \N -283 \N \N ytkql.qwgxlqsti@ofztkaxsqk.rt \N all_genders_avatar.png 2026-04-14 16:10:00.922619 2026-04-14 16:10:00.922619 1 {mobilePhone} \N -284 \N \N ofyg@eqkozql-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:00.966377 2026-04-14 16:10:00.966377 1 {mobilePhone} \N -285 \N \N ofyg@eiqwtksof.gku \N all_genders_avatar.png 2026-04-14 16:10:00.994978 2026-04-14 16:10:00.994978 1 {mobilePhone} \N -286 \N \N agfzqaz@sfgw.ftz \N all_genders_avatar.png 2026-04-14 16:10:01.017213 2026-04-14 16:10:01.017213 1 {mobilePhone} \N -287 \N \N ofyg@rqal-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:01.046382 2026-04-14 16:10:01.046382 1 {mobilePhone} \N -288 \N \N ofyg@rtaqwkolztf.gku \N all_genders_avatar.png 2026-04-14 16:10:01.07698 2026-04-14 16:10:01.07698 1 {mobilePhone} \N -289 \N \N ofyg@hqkozqtz.gku \N all_genders_avatar.png 2026-04-14 16:10:01.107561 2026-04-14 16:10:01.107561 1 {mobilePhone} \N -290 \N \N ofyg@rpg-iosyz.rt \N all_genders_avatar.png 2026-04-14 16:10:01.133308 2026-04-14 16:10:01.133308 1 {mobilePhone} \N -291 \N \N mui@mui-ykotrtfqx.rt \N all_genders_avatar.png 2026-04-14 16:10:01.183309 2026-04-14 16:10:01.183309 1 {mobilePhone} \N -292 \N \N ofyg@yqwkoa-glsgtk-lzkqllt.rt \N all_genders_avatar.png 2026-04-14 16:10:01.370808 2026-04-14 16:10:01.370808 1 {mobilePhone} \N -293 \N \N wxtkg@ysxteizsofulkqz-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:01.485343 2026-04-14 16:10:01.485343 1 {mobilePhone} \N -294 \N \N agfzqaz@dod-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:01.5473 2026-04-14 16:10:01.5473 1 {mobilePhone} \N -295 \N \N ofyg@yktovossoutfqutfzxk.ofyg \N all_genders_avatar.png 2026-04-14 16:10:01.580129 2026-04-14 16:10:01.580129 1 {mobilePhone} \N -296 \N \N egtftf@ugsrftzm-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:01.609904 2026-04-14 16:10:01.609904 1 {mobilePhone} \N -297 \N \N ofyg@uyh-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:01.63271 2026-04-14 16:10:01.63271 1 {mobilePhone} \N -298 \N \N ofyg@ugcgsxfzttk.egd \N all_genders_avatar.png 2026-04-14 16:10:01.664543 2026-04-14 16:10:01.664543 1 {mobilePhone} \N -299 \N \N ofyg@rtxzleisqfr.io.gku \N all_genders_avatar.png 2026-04-14 16:10:01.698894 2026-04-14 16:10:01.698894 1 {mobilePhone} \N -300 \N \N wqwts-wtksof@z-gfsoft.rt \N all_genders_avatar.png 2026-04-14 16:10:01.725426 2026-04-14 16:10:01.725426 1 {mobilePhone} \N -301 \N \N wtksof-lxtrvtlz@itoslqkdtt.rt \N all_genders_avatar.png 2026-04-14 16:10:01.754035 2026-04-14 16:10:01.754035 1 {mobilePhone} \N -302 \N \N utleiqtyzllztsst@vok-ftzmvtka.rt \N all_genders_avatar.png 2026-04-14 16:10:01.820025 2026-04-14 16:10:01.820025 1 {mobilePhone} \N -303 \N \N agfzqaz@igxlt-gy-ktlgxketl.wtksof \N all_genders_avatar.png 2026-04-14 16:10:01.888712 2026-04-14 16:10:01.888712 1 {mobilePhone} \N -304 \N \N ofyg@icr-ww.rt \N all_genders_avatar.png 2026-04-14 16:10:01.990146 2026-04-14 16:10:01.990146 1 {mobilePhone} \N -305 \N \N ofyg@gsqdqor.gku \N all_genders_avatar.png 2026-04-14 16:10:02.141629 2026-04-14 16:10:02.141629 1 {mobilePhone} \N -306 \N \N ofyg@pgiqffoztk.rt \N all_genders_avatar.png 2026-04-14 16:10:02.197322 2026-04-14 16:10:02.197322 1 {mobilePhone} \N -307 \N \N ofyg@awv.rt \N all_genders_avatar.png 2026-04-14 16:10:02.281927 2026-04-14 16:10:02.281927 1 {mobilePhone} \N -308 \N \N ofyg@squyq.wtksof \N all_genders_avatar.png 2026-04-14 16:10:02.325797 2026-04-14 16:10:02.325797 1 {mobilePhone} \N -309 \N \N owkqiodgcq@sqfrtlyktovossoutfqutfzxk.wtksof \N all_genders_avatar.png 2026-04-14 16:10:02.355551 2026-04-14 16:10:02.355551 1 {mobilePhone} \N -310 \N \N agkdqffg@rka-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:02.384992 2026-04-14 16:10:02.384992 1 {mobilePhone} \N -311 \N \N wtkqzxfu@sqkq-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:02.447895 2026-04-14 16:10:02.447895 1 {mobilePhone} \N -312 \N \N ofyg@stkfsqwgk.wtksof \N all_genders_avatar.png 2026-04-14 16:10:02.501913 2026-04-14 16:10:02.501913 1 {mobilePhone} \N -313 \N \N ofyg@stzlqez.rt \N all_genders_avatar.png 2026-04-14 16:10:02.540129 2026-04-14 16:10:02.540129 1 {mobilePhone} \N -314 \N \N vow@vow-pxutfr.rt \N all_genders_avatar.png 2026-04-14 16:10:02.576873 2026-04-14 16:10:02.576873 1 {mobilePhone} \N -315 \N \N ofyg.wtksof@dqsztltk.gku \N all_genders_avatar.png 2026-04-14 16:10:02.628373 2026-04-14 16:10:02.628373 1 {mobilePhone} \N -316 \N \N ofygkdqzogf@fwil.rt \N all_genders_avatar.png 2026-04-14 16:10:02.659055 2026-04-14 16:10:02.659055 1 {mobilePhone} \N -317 \N \N ofyg@ftm-ftxagtssf.rt; lxtfftdqff@ftm-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:10:02.716141 2026-04-14 16:10:02.716141 1 {mobilePhone} \N -318 \N \N ofyg@glaqk.wtksof \N all_genders_avatar.png 2026-04-14 16:10:02.76581 2026-04-14 16:10:02.76581 1 {mobilePhone} \N -319 \N \N hktkfq@htghstwtngfrwgkrtkl.gku \N all_genders_avatar.png 2026-04-14 16:10:02.811581 2026-04-14 16:10:02.811581 1 {mobilePhone} \N -320 \N \N qfft@ktro-leiggs.gku \N all_genders_avatar.png 2026-04-14 16:10:02.84172 2026-04-14 16:10:02.84172 1 {mobilePhone} \N -321 \N \N ofyg@kse-wtksof.gku \N all_genders_avatar.png 2026-04-14 16:10:02.866999 2026-04-14 16:10:02.866999 1 {mobilePhone} \N -322 \N \N ofyg@lqctziteiosrktf.rt \N all_genders_avatar.png 2026-04-14 16:10:02.906591 2026-04-14 16:10:02.906591 1 {mobilePhone} \N -323 \N \N cgklzqfr@leigtftwtku-iosyz.rt \N all_genders_avatar.png 2026-04-14 16:10:02.93465 2026-04-14 16:10:02.93465 1 {mobilePhone} \N -324 \N \N lhgkzwxfr@slw-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:02.98343 2026-04-14 16:10:02.98343 1 {mobilePhone} \N -325 \N \N lzm-itsstklrgky-glz@tc-dozztfrkof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.018568 2026-04-14 16:10:03.018568 1 {mobilePhone} \N -326 \N \N ofyg@ziyvtsegdt.rt \N all_genders_avatar.png 2026-04-14 16:10:03.052206 2026-04-14 16:10:03.052206 1 {mobilePhone} \N -327 \N \N ofyg@xsdt89.rt \N all_genders_avatar.png 2026-04-14 16:10:03.083084 2026-04-14 16:10:03.083084 1 {mobilePhone} \N -328 \N \N ofyg@coq-of-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.116977 2026-04-14 16:10:03.116977 1 {mobilePhone} \N -329 \N \N ofyg@vtsswtofu2tctkngft.egd \N all_genders_avatar.png 2026-04-14 16:10:03.140977 2026-04-14 16:10:03.140977 1 {mobilePhone} \N -330 \N \N qktmg.iqorqko@zxtkgtyyftk-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:03.168436 2026-04-14 16:10:03.168436 1 {mobilePhone} \N -331 \N \N uvcwsf@qgs.egd \N all_genders_avatar.png 2026-04-14 16:10:03.204763 2026-04-14 16:10:03.204763 1 {mobilePhone} \N -332 \N \N wtff-vosdtklrgky@dzl-lgeoqsrtlouf.egd \N all_genders_avatar.png 2026-04-14 16:10:03.227854 2026-04-14 16:10:03.227854 1 {mobilePhone} \N -333 \N \N wtff@lgmroq.rt \N all_genders_avatar.png 2026-04-14 16:10:03.260564 2026-04-14 16:10:03.260564 1 {mobilePhone} \N -334 \N \N wtff.ytffhyxis.wtksof@epr.rt \N all_genders_avatar.png 2026-04-14 16:10:03.283834 2026-04-14 16:10:03.283834 1 {mobilePhone} \N -335 \N \N wtff@qsz-ili.rt \N all_genders_avatar.png 2026-04-14 16:10:03.309357 2026-04-14 16:10:03.309357 1 {mobilePhone} \N -336 \N \N wtff.vqkztfwtku@lgmroq.rt \N all_genders_avatar.png 2026-04-14 16:10:03.3425 2026-04-14 16:10:03.3425 1 {mobilePhone} \N -337 \N \N ofyg@wtff-wsxdwtkutkrqdd.rt \N all_genders_avatar.png 2026-04-14 16:10:03.366019 2026-04-14 16:10:03.366019 1 {mobilePhone} \N -338 \N \N wtff-ssl@lzthiqfxl.gku \N all_genders_avatar.png 2026-04-14 16:10:03.391163 2026-04-14 16:10:03.391163 1 {mobilePhone} \N -339 \N \N wtff@dqkmqif-lxtr.rt \N all_genders_avatar.png 2026-04-14 16:10:03.427495 2026-04-14 16:10:03.427495 1 {mobilePhone} \N -340 \N \N wtff-vozztfwtkutk@vttwtkhqkzftk.rt \N all_genders_avatar.png 2026-04-14 16:10:03.455999 2026-04-14 16:10:03.455999 1 {mobilePhone} \N -341 \N \N wtff.hsxl@rka-wtksof-fgkrglz.rt \N all_genders_avatar.png 2026-04-14 16:10:03.481861 2026-04-14 16:10:03.481861 1 {mobilePhone} \N -342 \N \N wtff-wkozm@dzl-lgeoqsrtlouf.egd \N all_genders_avatar.png 2026-04-14 16:10:03.511762 2026-04-14 16:10:03.511762 1 {mobilePhone} \N -343 \N \N agfzqaz@wtff-wxei.rt \N all_genders_avatar.png 2026-04-14 16:10:03.53632 2026-04-14 16:10:03.53632 1 {mobilePhone} \N -344 \N \N vtolltfltt@qu-lhql.rt \N all_genders_avatar.png 2026-04-14 16:10:03.559642 2026-04-14 16:10:03.559642 1 {mobilePhone} \N -345 \N \N ofyg@wtffoddc.rt \N all_genders_avatar.png 2026-04-14 16:10:03.583383 2026-04-14 16:10:03.583383 1 {mobilePhone} \N -346 \N \N agfzqaz@wtff-ztutslxtr.rt \N all_genders_avatar.png 2026-04-14 16:10:03.608563 2026-04-14 16:10:03.608563 1 {mobilePhone} \N -347 \N \N wtff@vozztfqx-lxtr.rt \N all_genders_avatar.png 2026-04-14 16:10:03.633435 2026-04-14 16:10:03.633435 1 {mobilePhone} \N -348 \N \N wtff-iqatfytsrt@dzl-lgeoqsrtlouf.egd \N all_genders_avatar.png 2026-04-14 16:10:03.655522 2026-04-14 16:10:03.655522 1 {mobilePhone} \N -349 \N \N wtff-lzqqatf@uvc-ittklzkqllt.rt \N all_genders_avatar.png 2026-04-14 16:10:03.679505 2026-04-14 16:10:03.679505 1 {mobilePhone} \N -350 \N \N wtff-iofrtfwxkurqdd@solz-udwi.rt \N all_genders_avatar.png 2026-04-14 16:10:03.708579 2026-04-14 16:10:03.708579 1 {mobilePhone} \N -351 \N \N wtff.dq-zt@qu-lhql.rt \N all_genders_avatar.png 2026-04-14 16:10:03.731955 2026-04-14 16:10:03.731955 1 {mobilePhone} \N -352 \N \N wtff-qsstfrt-cotkzts@solz-udwi.rt \N all_genders_avatar.png 2026-04-14 16:10:03.753864 2026-04-14 16:10:03.753864 1 {mobilePhone} \N -353 \N \N ofyg@wtff-qszusotfoeat.rt \N all_genders_avatar.png 2026-04-14 16:10:03.780088 2026-04-14 16:10:03.780088 1 {mobilePhone} \N -354 \N \N ofztukqzogf@wq-lm.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.81318 2026-04-14 16:10:03.81318 1 {mobilePhone} \N -355 \N \N fofq.leigsm@wq-lm.wtksof.rt; tfuqutdtfz@wq-lm.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.83945 2026-04-14 16:10:03.83945 1 {mobilePhone} \N -356 \N \N ofztukqzogflwtqxyzkquztk@eiqksgzztfwxku-vosdtklrgky.rt \N all_genders_avatar.png 2026-04-14 16:10:03.863071 2026-04-14 16:10:03.863071 1 {mobilePhone} \N -357 \N \N hkoleq.dqkzquxtz@eiqksgzztfwxku-vosdtklrgky.rt \N all_genders_avatar.png 2026-04-14 16:10:03.893094 2026-04-14 16:10:03.893094 1 {mobilePhone} \N -358 \N \N lqikq.ftss@wq-ya.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.921123 2026-04-14 16:10:03.921123 1 {mobilePhone} \N -359 \N \N ygkgxmqf.ygkgxui@wq-ya.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.948089 2026-04-14 16:10:03.948089 1 {mobilePhone} \N -360 \N \N pgiqffq.agtlztkl@wq-dozzt.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:03.976654 2026-04-14 16:10:03.976654 1 {mobilePhone} \N -361 \N \N fgtdo.dqptk@wq-dozzt.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.012141 2026-04-14 16:10:04.012141 1 {mobilePhone} \N -362 \N \N yqwoqf.ftikofu@soeiztfwtku.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.045327 2026-04-14 16:10:04.045327 1 {mobilePhone} \N -363 \N \N okofq.hsqz@soeiztfwtku.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.0768 2026-04-14 16:10:04.0768 1 {mobilePhone} \N -364 \N \N miqffq.akqdtk@soeiztfwtku.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.110078 2026-04-14 16:10:04.110078 1 {mobilePhone} \N -365 \N \N aqziqkofq.lzgteas@wq-za.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.165871 2026-04-14 16:10:04.165871 1 {mobilePhone} \N -366 \N \N ofztukqzogflwtqxyzkquzt@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.197028 2026-04-14 16:10:04.197028 1 {mobilePhone} \N -367 \N \N kgdn.hgvosl@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.232232 2026-04-14 16:10:04.232232 1 {mobilePhone} \N -368 \N \N qkoqft.gkzdqff@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.259971 2026-04-14 16:10:04.259971 1 {mobilePhone} \N -369 \N \N dqb.dtotk@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.289163 2026-04-14 16:10:04.289163 1 {mobilePhone} \N -370 \N \N dqkzof.htztkl@wq-lhqfrqx.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.324786 2026-04-14 16:10:04.324786 1 {mobilePhone} \N -371 \N \N ei.laokrt@wq-lhqfrqx.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.355095 2026-04-14 16:10:04.355095 1 {mobilePhone} \N -372 \N \N pxsoqfq.kqdd@ktofoeatfrgky.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.385967 2026-04-14 16:10:04.385967 1 {mobilePhone} \N -373 \N \N \N 5797 71398687 all_genders_avatar.png 2026-04-14 16:10:04.414736 2026-04-14 16:10:04.414736 1 {mobilePhone} \N -374 \N \N qfft.lhtea@wq-hqfagv.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.425696 2026-04-14 16:10:04.425696 1 {mobilePhone} \N -375 \N \N ofyg@zww-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.454207 2026-04-14 16:10:04.454207 1 {mobilePhone} \N -376 \N \N ofyg@atof-qwltozl.rt \N all_genders_avatar.png 2026-04-14 16:10:04.485153 2026-04-14 16:10:04.485153 1 {mobilePhone} \N -377 \N \N ofyg@zgkiqxlwtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.515225 2026-04-14 16:10:04.515225 1 {mobilePhone} \N -378 \N \N iqssg@ofztkaxsqk.rt \N all_genders_avatar.png 2026-04-14 16:10:04.544071 2026-04-14 16:10:04.544071 1 {mobilePhone} \N -379 \N \N ygkgxui.uioqlo@wq-lm.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.568446 2026-04-14 16:10:04.568446 1 {mobilePhone} \N -380 \N \N ofyg@sosohqrsowkqkn.gku \N all_genders_avatar.png 2026-04-14 16:10:04.590906 2026-04-14 16:10:04.590906 1 {mobilePhone} \N -381 \N \N wtkxy@hqfagv-iosyz.rt \N all_genders_avatar.png 2026-04-14 16:10:04.615623 2026-04-14 16:10:04.615623 1 {mobilePhone} \N -382 \N \N hglz@estqfxhzkthfoea.rt \N all_genders_avatar.png 2026-04-14 16:10:04.641397 2026-04-14 16:10:04.641397 1 {mobilePhone} \N -383 \N \N dozdqeitf@ugcgsxfzttk.egd \N all_genders_avatar.png 2026-04-14 16:10:04.6624 2026-04-14 16:10:04.6624 1 {mobilePhone} \N -384 \N \N ofyg@okqfoleitutdtofrt.rt, ofztukqzogflsgzltf@okqfoleitutdtofrt.rt \N all_genders_avatar.png 2026-04-14 16:10:04.702229 2026-04-14 16:10:04.702229 1 {mobilePhone} \N -385 \N \N dqos@ghtfzofn.rt \N all_genders_avatar.png 2026-04-14 16:10:04.784373 2026-04-14 16:10:04.784373 1 {mobilePhone} \N -386 \N \N hqlistn@sqfrtlyktovossoutfqutfzxk.wtksof \N all_genders_avatar.png 2026-04-14 16:10:04.811915 2026-04-14 16:10:04.811915 1 {mobilePhone} \N -387 \N \N qrrol.utwktaorqf@ow.rt, qrkoqf.rt.lgxmq.dqkzofl@ow.rt, lqkqi.yqrzat@ow.rt \N all_genders_avatar.png 2026-04-14 16:10:04.842137 2026-04-14 16:10:04.842137 1 {mobilePhone} \N -388 \N \N aqdqfr.qlqro@plr.rt \N all_genders_avatar.png 2026-04-14 16:10:04.869613 2026-04-14 16:10:04.869613 1 {mobilePhone} \N -389 \N \N dqos@xtwtkstwtf.gku \N all_genders_avatar.png 2026-04-14 16:10:04.895522 2026-04-14 16:10:04.895522 1 {mobilePhone} \N -390 \N \N wtksof@qsth-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:04.933743 2026-04-14 16:10:04.933743 1 {mobilePhone} \N -391 \N \N hkxtylzqfr@ktykqz.ix-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:04.968136 2026-04-14 16:10:04.968136 1 {mobilePhone} \N -392 Iqfftl \N Wqkzm qvg-ktyxuoxd-ukxtfqx@qvg-dozzt.rt 5797 107 833 79 all_genders_avatar.png 2026-04-14 16:10:05.098495 2026-04-14 16:10:05.098495 1 {mobilePhone} \N -393 Iqfftl \N Wqkzm wqkzm@qvg-dozzt.rt 5797 107 833 79 all_genders_avatar.png 2026-04-14 16:10:05.110258 2026-04-14 16:10:05.110258 1 {mobilePhone} \N -394 \N \N tiktfqdz@aofrtkaxszxkdgfqz.rt \N all_genders_avatar.png 2026-04-14 16:10:05.156962 2026-04-14 16:10:05.156962 1 {mobilePhone} \N -395 \N \N wtksof@ktygkxd.og \N all_genders_avatar.png 2026-04-14 16:10:05.179944 2026-04-14 16:10:05.179944 1 {mobilePhone} \N -396 \N \N cil@soeiztfwtku.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.21518 2026-04-14 16:10:05.21518 1 {mobilePhone} \N -397 \N \N hglz@cilhqfagv.rt \N all_genders_avatar.png 2026-04-14 16:10:05.236148 2026-04-14 16:10:05.236148 1 {mobilePhone} \N -398 \N \N ofyg@cil-lhqfrqx.rt \N all_genders_avatar.png 2026-04-14 16:10:05.257427 2026-04-14 16:10:05.257427 1 {mobilePhone} \N -399 \N \N cil@ktofoeatfrgky.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.278319 2026-04-14 16:10:05.278319 1 {mobilePhone} \N -400 \N \N ofygcil@wq-di.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.299004 2026-04-14 16:10:05.299004 1 {mobilePhone} \N -401 \N \N hglz@cilza.rt \N all_genders_avatar.png 2026-04-14 16:10:05.320506 2026-04-14 16:10:05.320506 1 {mobilePhone} \N -402 \N \N cilofyg@wtmokalqdz-ftxagtssf.rt \N all_genders_avatar.png 2026-04-14 16:10:05.340493 2026-04-14 16:10:05.340493 1 {mobilePhone} \N -403 \N \N cil@wq-zl.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.361397 2026-04-14 16:10:05.361397 1 {mobilePhone} \N -404 \N \N dokoqd.sxeiztkiqfrz@hqkqukqy7.rt \N all_genders_avatar.png 2026-04-14 16:10:05.388782 2026-04-14 16:10:05.388782 1 {mobilePhone} \N -405 Qkzqf \N Mtaq ux-wtlltdtk-ww@ow.rt 5793 318 991 53 all_genders_avatar.png 2026-04-14 16:10:05.445774 2026-04-14 16:10:05.445774 1 {mobilePhone} \N -406 \N \N ux-kgtwsofulzkqllt@lof-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:05.472904 2026-04-14 16:10:05.472904 1 {mobilePhone} \N -407 \N \N yqeiqxyloeiz.tiktfqdz@zqdqpq.rt \N all_genders_avatar.png 2026-04-14 16:10:05.499898 2026-04-14 16:10:05.499898 1 {mobilePhone} \N -408 \N \N vgifitod-itortk@igzdqos.rt 5703 434 9759 all_genders_avatar.png 2026-04-14 16:10:05.537667 2026-04-14 16:10:05.537667 1 {mobilePhone} \N -409 \N \N ofyg@wtregf.ftz \N all_genders_avatar.png 2026-04-14 16:10:05.563521 2026-04-14 16:10:05.563521 1 {mobilePhone} \N -410 \N \N igdt.q.wtngfr@udqos.egd \N all_genders_avatar.png 2026-04-14 16:10:05.591072 2026-04-14 16:10:05.591072 1 {mobilePhone} \N -411 \N \N ofyg@aokeitfqlns.rt \N all_genders_avatar.png 2026-04-14 16:10:05.618181 2026-04-14 16:10:05.618181 1 {mobilePhone} \N -412 \N \N ofyg@qazogf-yi.rt \N all_genders_avatar.png 2026-04-14 16:10:05.644977 2026-04-14 16:10:05.644977 1 {mobilePhone} \N -413 \N \N wsqolt.ytktz-hgagl@wtksof-qorliosyt.rt \N all_genders_avatar.png 2026-04-14 16:10:05.671152 2026-04-14 16:10:05.671152 1 {mobilePhone} \N -414 \N \N ofyg@wva-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.697475 2026-04-14 16:10:05.697475 1 {mobilePhone} \N -415 \N \N ctktofokqfoleitkysxteizsofut@udb.rt \N all_genders_avatar.png 2026-04-14 16:10:05.720009 2026-04-14 16:10:05.720009 1 {mobilePhone} \N -416 \N \N ofyg@wgfq-htoltk.rt \N all_genders_avatar.png 2026-04-14 16:10:05.748235 2026-04-14 16:10:05.748235 1 {mobilePhone} \N -417 \N \N qlzkteatkz@wosrxfuldqkaz.gku; qkkocg-iglhozqsozn@wosrxfuldqkaz.rt \N all_genders_avatar.png 2026-04-14 16:10:05.773703 2026-04-14 16:10:05.773703 1 {mobilePhone} \N -418 \N \N ofyg@l30.rt \N all_genders_avatar.png 2026-04-14 16:10:05.794669 2026-04-14 16:10:05.794669 1 {mobilePhone} \N -419 \N \N f.cotz-wtksof@udb.rt \N all_genders_avatar.png 2026-04-14 16:10:05.836932 2026-04-14 16:10:05.836932 1 {mobilePhone} \N -420 \N \N agfzqaz@lgdqsol-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:05.863988 2026-04-14 16:10:05.863988 1 {mobilePhone} \N -421 \N \N iqxl-aghtkfoaxl@wtksoftk-lzqrzdollogf.rt \N all_genders_avatar.png 2026-04-14 16:10:05.910406 2026-04-14 16:10:05.910406 1 {mobilePhone} \N -422 Yosom \N Iqbiqp iqbiqp@wtksoftk-lzqrzdollogf.rt 5705 3590161 all_genders_avatar.png 2026-04-14 16:10:05.920697 2026-04-14 16:10:05.920697 1 {mobilePhone} \N -423 Esqkq \N Gldq gldq@qvg-dozzt.rt 57152861332 all_genders_avatar.png 2026-04-14 16:10:05.993777 2026-04-14 16:10:05.993777 1 {mobilePhone} \N -424 Ptffo \N Dozzqu dozzqu@qvg-dozzt.rt 579703495688 all_genders_avatar.png 2026-04-14 16:10:06.009441 2026-04-14 16:10:06.009441 1 {mobilePhone} \N -425 Okofq \N Sgyofa sqfrlwtkutk-qsstt.357-359@syu-w.rt 5797 03 04 82 69 all_genders_avatar.png 2026-04-14 16:10:06.093843 2026-04-14 16:10:06.093843 1 {mobilePhone} \N -426 Ykqfetleq \N Leqkqyoq swq.tiktfqdz@syu-w.rt +26 797 71398220 all_genders_avatar.png 2026-04-14 16:10:06.104143 2026-04-14 16:10:06.104143 1 {mobilePhone} \N -427 Uxorg \N Leivqkm wgiflrgkytk-vtu.757@syu-w.rt 5797 795 011 89 all_genders_avatar.png 2026-04-14 16:10:06.192501 2026-04-14 16:10:06.192501 1 {mobilePhone} \N -428 \N \N qvg-ktyxuoxd-ugztfwxkutk@qvg-dozzt.rt \N all_genders_avatar.png 2026-04-14 16:10:06.228203 2026-04-14 16:10:06.228203 1 {mobilePhone} \N -429 \N \N vgzqf@rka-dxtuutslhktt.rt 5708 14 90 455 all_genders_avatar.png 2026-04-14 16:10:06.250368 2026-04-14 16:10:06.250368 1 {mobilePhone} \N -430 Dqurqstfq \N Lmqdh qd-kxrgsyhsqzm.8-2@syu-w.rt 5797 038 618 12 all_genders_avatar.png 2026-04-14 16:10:06.324687 2026-04-14 16:10:06.324687 1 {mobilePhone} \N -431 Doeitst \N Wgkmo qlaqfotkkofu.05@syu-w.rt 5797 03 04 53 38 all_genders_avatar.png 2026-04-14 16:10:06.346178 2026-04-14 16:10:06.346178 1 {mobilePhone} \N -432 Yk. \N Dqkb p.dqkb@fgcxd-iglhozqsozn.egd \N all_genders_avatar.png 2026-04-14 16:10:06.368722 2026-04-14 16:10:06.368722 1 {mobilePhone} \N -433 Ktfqzt \N Rmoxa ktfqzt.rmoxa@ow.rt 57904 9923701 all_genders_avatar.png 2026-04-14 16:10:06.379119 2026-04-14 16:10:06.379119 1 {mobilePhone} \N -434 \N \N dqkzofq.agtift@rgkdtkg.rt \N all_genders_avatar.png 2026-04-14 16:10:06.400681 2026-04-14 16:10:06.400681 1 {mobilePhone} \N -435 Uvtfinyqk \N Wüeiftk uvtfinyqk.wüeiftk@ow.rt 5797 337 364 95 all_genders_avatar.png 2026-04-14 16:10:06.410818 2026-04-14 16:10:06.410818 1 {mobilePhone} \N -436 Ik. \N Itif k.itif@qstelq-igzts.rt 5707 984 3773 all_genders_avatar.png 2026-04-14 16:10:06.436283 2026-04-14 16:10:06.436283 1 {mobilePhone} \N -437 Qdn \N Moddtkdqff moddtkdqff@qvg-dozzt.rt 5797 96388990 all_genders_avatar.png 2026-04-14 16:10:06.450205 2026-04-14 16:10:06.450205 1 {mobilePhone} \N -438 Ik. \N Hkqriqf hkqriqf@udb.rt \N all_genders_avatar.png 2026-04-14 16:10:06.506566 2026-04-14 16:10:06.506566 1 {mobilePhone} \N -439 Uvtfinyqk \N Wüeiftk uvtfinyqk.wxteiftk@ow.rt 5797 337 364 95 all_genders_avatar.png 2026-04-14 16:10:06.521317 2026-04-14 16:10:06.521317 1 {mobilePhone} \N -440 Uvtfinyqk \N Wüeiftk uvtfinyqk.wxteiftk@ow.rt 5797 337 364 95 all_genders_avatar.png 2026-04-14 16:10:06.56709 2026-04-14 16:10:06.56709 1 {mobilePhone} \N -441 Uvtfinyqk \N Wüeiftk uvtfinyqk.wüeiftk@ow.rt 5797 337 364 95 all_genders_avatar.png 2026-04-14 16:10:06.600368 2026-04-14 16:10:06.600368 1 {mobilePhone} \N -442 \N \N ud@igzts-qd-ustolrktotea.rt \N all_genders_avatar.png 2026-04-14 16:10:06.633428 2026-04-14 16:10:06.633428 1 {mobilePhone} \N -443 \N \N aqkof.wqkfqkr@plr.rt \N all_genders_avatar.png 2026-04-14 16:10:06.674147 2026-04-14 16:10:06.674147 1 {mobilePhone} \N -444 Lctzsqfq \N Tcrgaodgcq lctzsqfq.tcrgaodgcq@plr.rt 57935 2091853 all_genders_avatar.png 2026-04-14 16:10:06.685015 2026-04-14 16:10:06.685015 1 {mobilePhone} \N -445 \N \N ofyg@ux-jxtrsofwxkutk.rt \N all_genders_avatar.png 2026-04-14 16:10:06.715201 2026-04-14 16:10:06.715201 1 {mobilePhone} \N -446 Qwrxssqi \N Pgfqor tiktfqdzlaggkrofqzogf@ux-jxtrsofwxkutk.rt 585 3883 7617 – 21 all_genders_avatar.png 2026-04-14 16:10:06.725722 2026-04-14 16:10:06.725722 1 {mobilePhone} \N -447 Yqkkgai \N Dqirqcoliqiko lgmoqsqkwtoz@ux-jxtrsofwxkutk.rt \N all_genders_avatar.png 2026-04-14 16:10:06.736147 2026-04-14 16:10:06.736147 1 {mobilePhone} \N -448 \N \N dqfqutk@tfpgnigzts.rt \N all_genders_avatar.png 2026-04-14 16:10:06.757443 2026-04-14 16:10:06.757443 1 {mobilePhone} \N -449 Yk. \N Wqxduqkztf z.wqxduqkztf@ystbhktll.ofyg 5707 144 69 95 all_genders_avatar.png 2026-04-14 16:10:06.798373 2026-04-14 16:10:06.798373 1 {mobilePhone} \N -450 Yk. \N Wqxduqkztf z.wqxduqkztf@ystbhktll.ofyg 5707 144 69 95 all_genders_avatar.png 2026-04-14 16:10:06.821221 2026-04-14 16:10:06.821221 1 {mobilePhone} \N -451 Ik. \N Dgsst zktlagvlzkqllt.72@syu-w.rt 5797 030 453 76 all_genders_avatar.png 2026-04-14 16:10:06.844971 2026-04-14 16:10:06.844971 1 {mobilePhone} \N -452 Ftsso \N Akqxlt ftsso.akqxlt@syu-w.rt +26 797 795 022 14 all_genders_avatar.png 2026-04-14 16:10:06.855268 2026-04-14 16:10:06.855268 1 {mobilePhone} \N -453 Aqziqkofq \N Hgis aqziqkofq.hgis@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:10:06.865241 2026-04-14 16:10:06.865241 1 {mobilePhone} \N -454 Trkoll \N Wtikqp wtikqp@qvg-dozzt.rt 57050202443 all_genders_avatar.png 2026-04-14 16:10:06.921721 2026-04-14 16:10:06.921721 1 {mobilePhone} \N -455 Qstlloq \N Qkwxlzofo qstlloq.qkwxlzofo@ow.rt +26 79049990859 all_genders_avatar.png 2026-04-14 16:10:06.932089 2026-04-14 16:10:06.932089 1 {mobilePhone} \N -456 \N \N lzl757@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:10:07.312491 2026-04-14 16:10:07.312491 1 {mobilePhone} \N -457 Cqstfzofq \N Egssq cqstfzofq.egssq@cgsallgsorqkozqtz.rt 5797 79544432 all_genders_avatar.png 2026-04-14 16:10:07.323015 2026-04-14 16:10:07.323015 1 {mobilePhone} \N -458 \N \N kxrgvtk-lzkqllt.742@syu-w.rt 5797 713 98 224 all_genders_avatar.png 2026-04-14 16:10:07.390249 2026-04-14 16:10:07.390249 1 {mobilePhone} \N -459 Cogsq \N Vofztklztof of-rtf-wqxtkfuqtkztf.3@syu-w.rt 5797 71398224 all_genders_avatar.png 2026-04-14 16:10:07.413546 2026-04-14 16:10:07.413546 1 {mobilePhone} \N -460 \N \N \N 5797 7139 8224 all_genders_avatar.png 2026-04-14 16:10:07.425023 2026-04-14 16:10:07.425023 1 {mobilePhone} \N -461 \N \N agfzqaz@rrqeqrtdn.rt \N all_genders_avatar.png 2026-04-14 16:10:07.458156 2026-04-14 16:10:07.458156 1 {mobilePhone} \N -462 \N \N o.cnlitdoklaqnq@axszxkleiqyyz.rt \N all_genders_avatar.png 2026-04-14 16:10:07.490172 2026-04-14 16:10:07.490172 1 {mobilePhone} \N -463 \N \N agvleitm@lza774.rt ugkkol@lza744.rt \N all_genders_avatar.png 2026-04-14 16:10:07.524392 2026-04-14 16:10:07.524392 1 {mobilePhone} \N -464 \N \N ofyg@axszxkstwtf-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.555147 2026-04-14 16:10:07.555147 1 {mobilePhone} \N -465 \N \N qfqlzqloq.lxrmosgclaqnq@wckt.rt \N all_genders_avatar.png 2026-04-14 16:10:07.585452 2026-04-14 16:10:07.585452 1 {mobilePhone} \N -466 \N \N lzqrzztosdxtzztk@wtziqfoq.rt \N all_genders_avatar.png 2026-04-14 16:10:07.621458 2026-04-14 16:10:07.621458 1 {mobilePhone} \N -467 \N \N ofyg@aotmzqfrtd.rt \N all_genders_avatar.png 2026-04-14 16:10:07.654109 2026-04-14 16:10:07.654109 1 {mobilePhone} \N -468 \N \N ofyg@wxfz-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.693087 2026-04-14 16:10:07.693087 1 {mobilePhone} \N -469 \N \N dqeiwqk@leiosrakgtzt-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.724454 2026-04-14 16:10:07.724454 1 {mobilePhone} \N -470 \N \N leixst@zog-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.75388 2026-04-14 16:10:07.75388 1 {mobilePhone} \N -471 \N \N ts-dqiro@qutfl-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.782907 2026-04-14 16:10:07.782907 1 {mobilePhone} \N -472 \N \N ofyg@lztkftfyoleitk.gku \N all_genders_avatar.png 2026-04-14 16:10:07.81566 2026-04-14 16:10:07.81566 1 {mobilePhone} \N -473 \N \N btfoq.ukxtfofu@ow.rt \N all_genders_avatar.png 2026-04-14 16:10:07.844834 2026-04-14 16:10:07.844834 1 {mobilePhone} \N -474 \N \N ofyg@uwm-utkdqfn.gku \N all_genders_avatar.png 2026-04-14 16:10:07.875694 2026-04-14 16:10:07.875694 1 {mobilePhone} \N -475 \N \N ofyg@tztiqrwtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.905171 2026-04-14 16:10:07.905171 1 {mobilePhone} \N -476 \N \N d.uqkrolo@ohlgegfztbz.gku \N all_genders_avatar.png 2026-04-14 16:10:07.932247 2026-04-14 16:10:07.932247 1 {mobilePhone} \N -477 \N \N dqos@cgklhots-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:07.963161 2026-04-14 16:10:07.963161 1 {mobilePhone} \N -478 \N \N ofyg@qkzocolztf.gku \N all_genders_avatar.png 2026-04-14 16:10:07.994976 2026-04-14 16:10:07.994976 1 {mobilePhone} \N -479 \N \N wwa-sofrt@lqsqdaxszxkesxw.rt \N all_genders_avatar.png 2026-04-14 16:10:08.02774 2026-04-14 16:10:08.02774 1 {mobilePhone} \N -480 \N \N wtff-dotktfrgkyyoflts@dzl-lgeoqsrtlouf.egd \N all_genders_avatar.png 2026-04-14 16:10:08.076118 2026-04-14 16:10:08.076118 1 {mobilePhone} \N -481 \N \N ofyg@gyytftzxtk.ftz \N all_genders_avatar.png 2026-04-14 16:10:08.168016 2026-04-14 16:10:08.168016 1 {mobilePhone} \N -482 \N \N dokpqd.tatsdqff@vokutlzqsztftc.rt \N all_genders_avatar.png 2026-04-14 16:10:08.199603 2026-04-14 16:10:08.199603 1 {mobilePhone} \N -483 \N \N kxealqea@qvg-lhktt-vxist.rt \N all_genders_avatar.png 2026-04-14 16:10:08.235471 2026-04-14 16:10:08.235471 1 {mobilePhone} \N -484 \N \N tiktfqdz@hlc-zkthzgv.rt \N all_genders_avatar.png 2026-04-14 16:10:08.259078 2026-04-14 16:10:08.259078 1 {mobilePhone} \N -485 \N \N ofyg@wtkqzxfulftzm-doukqzogf.rt \N all_genders_avatar.png 2026-04-14 16:10:08.298486 2026-04-14 16:10:08.298486 1 {mobilePhone} \N -486 \N \N ofyg@mxaxfyz-dtdgkoqs.gku \N all_genders_avatar.png 2026-04-14 16:10:08.370118 2026-04-14 16:10:08.370118 1 {mobilePhone} \N -487 \N \N ofyg@esqcol-leixst.rt \N all_genders_avatar.png 2026-04-14 16:10:08.403494 2026-04-14 16:10:08.403494 1 {mobilePhone} \N -1351 Fqrqc \N Fok \N \N \N 2026-04-20 13:44:53.208722 2026-04-20 13:44:53.208722 \N {mobilePhone} \N -488 \N \N vqkleiqxtk-hsqzm.1@syu-w.rt 5797 79 50 41 91 all_genders_avatar.png 2026-04-14 16:10:08.428834 2026-04-14 16:10:08.428834 1 {mobilePhone} \N -489 \N \N ofyg@kovvts.tx \N all_genders_avatar.png 2026-04-14 16:10:08.457005 2026-04-14 16:10:08.457005 1 {mobilePhone} \N -490 \N \N ofyg@utzldqkzqaqrtdot.rt \N all_genders_avatar.png 2026-04-14 16:10:08.48875 2026-04-14 16:10:08.48875 1 {mobilePhone} \N -491 \N \N qxlwosrxfu@zxtkgtyyftk-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:08.517217 2026-04-14 16:10:08.517217 1 {mobilePhone} \N -492 \N \N lqkqi.xssdqff@ofrqtr-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:08.545332 2026-04-14 16:10:08.545332 1 {mobilePhone} \N -493 Nqldof \N Sqfutfoea lgfftfqsstt.20-26@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:10:08.582216 2026-04-14 16:10:08.582216 1 {mobilePhone} \N -494 Votwat \N Yofatfvokzi lgq.tiktfqdz@syu-w.rt 579703861890 all_genders_avatar.png 2026-04-14 16:10:08.593536 2026-04-14 16:10:08.593536 1 {mobilePhone} \N -495 Xskoat \N Leiközztk leikgtzztk@dozztsigy.gku 57023277168 all_genders_avatar.png 2026-04-14 16:10:08.633099 2026-04-14 16:10:08.633099 1 {mobilePhone} \N -496 Ik. \N Qbfoea ykotrtkoat@lgmoqstl-wtksof.egd \N all_genders_avatar.png 2026-04-14 16:10:08.658956 2026-04-14 16:10:08.658956 1 {mobilePhone} \N -497 Yk. \N Leifthy ittklzk.stozxfu@tx-igdteqkt.egd 5797 028 951 41 all_genders_avatar.png 2026-04-14 16:10:08.7275 2026-04-14 16:10:08.7275 1 {mobilePhone} \N -498 \N \N ittklzk.tiktf@tx-igdteqkt.egd \N all_genders_avatar.png 2026-04-14 16:10:08.739432 2026-04-14 16:10:08.739432 1 {mobilePhone} \N -499 \N \N ittklzk.lgmoqs@tx-igdteqkt.egd 57097702733 all_genders_avatar.png 2026-04-14 16:10:08.753933 2026-04-14 16:10:08.753933 1 {mobilePhone} \N -500 Ykqx \N Wqxduqkztf z.wqxduqkztf@ystbhktll.ofyg 5707 – 144 69 95 all_genders_avatar.png 2026-04-14 16:10:08.798194 2026-04-14 16:10:08.798194 1 {mobilePhone} \N -501 \N \N hgzlrqdtk@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:10:08.82322 2026-04-14 16:10:08.82322 1 {mobilePhone} \N -502 \N \N ul792-stozxfu@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:10:08.847483 2026-04-14 16:10:08.847483 1 {mobilePhone} \N -503 Tsomqctzq \N Vosstkz tsomqctzq.vosstkz@cgsallgsorqkozqtz.rt 579779544459 all_genders_avatar.png 2026-04-14 16:10:08.859507 2026-04-14 16:10:08.859507 1 {mobilePhone} \N -504 \N \N rotlztkvtulzkqllt.33-31@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:10:08.881539 2026-04-14 16:10:08.881539 1 {mobilePhone} \N -505 \N \N lzkqllt-783.78@syu-w.rt \N all_genders_avatar.png 2026-04-14 16:10:08.912965 2026-04-14 16:10:08.912965 1 {mobilePhone} \N -506 \N \N agzzodgwos@agzzowtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:08.969314 2026-04-14 16:10:08.969314 1 {mobilePhone} \N -507 \N \N gyyoet@axszxkftlz.gku \N all_genders_avatar.png 2026-04-14 16:10:08.996869 2026-04-14 16:10:08.996869 1 {mobilePhone} \N -508 \N \N hkgsolga84@udqos.egd \N all_genders_avatar.png 2026-04-14 16:10:09.037783 2026-04-14 16:10:09.037783 1 {mobilePhone} \N -509 \N \N ftzmvtka@iqfrwggautkdqfn.rt \N all_genders_avatar.png 2026-04-14 16:10:09.064447 2026-04-14 16:10:09.064447 1 {mobilePhone} \N -510 \N \N ofyg@ysgzzt-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.127513 2026-04-14 16:10:09.127513 1 {mobilePhone} \N -511 \N \N agfzqaz@igxlt-gy-ktlgxetl.wtksof \N all_genders_avatar.png 2026-04-14 16:10:09.15781 2026-04-14 16:10:09.15781 1 {mobilePhone} \N -512 Yk. \N Ligkgv yqsatfwtkutk@hkolgr-vgiftf.rt 5793 523 479 26 all_genders_avatar.png 2026-04-14 16:10:09.184602 2026-04-14 16:10:09.184602 1 {mobilePhone} \N -513 \N \N yqeilztsst@yqokdotztf-yqokvgiftf.rt \N all_genders_avatar.png 2026-04-14 16:10:09.221985 2026-04-14 16:10:09.221985 1 {mobilePhone} \N -514 \N \N vyk@uom.wtksof \N all_genders_avatar.png 2026-04-14 16:10:09.2524 2026-04-14 16:10:09.2524 1 {mobilePhone} \N -515 \N \N ofyg@dxloe-ygk-ortfzozn.egd qsqfowkqiod.uzk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:10:09.28642 2026-04-14 16:10:09.28642 1 {mobilePhone} \N -516 \N \N qrfw@zww-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.321669 2026-04-14 16:10:09.321669 1 {mobilePhone} \N -517 \N \N ofyg@esqod-qssoqfm.rt \N all_genders_avatar.png 2026-04-14 16:10:09.352074 2026-04-14 16:10:09.352074 1 {mobilePhone} \N -518 \N \N wtkqzxfu@qrql-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.383076 2026-04-14 16:10:09.383076 1 {mobilePhone} \N -519 \N \N ofyg@yqdosotfwxtkg-soeiztfwtku.rt \N all_genders_avatar.png 2026-04-14 16:10:09.412375 2026-04-14 16:10:09.412375 1 {mobilePhone} \N -520 \N \N wosofuxqsozqtzqsleiqfet@udqos.egd \N all_genders_avatar.png 2026-04-14 16:10:09.440481 2026-04-14 16:10:09.440481 1 {mobilePhone} \N -521 \N \N wtksof@cgsallgsorqkozqtz.rt \N all_genders_avatar.png 2026-04-14 16:10:09.494004 2026-04-14 16:10:09.494004 1 {mobilePhone} \N -522 \N \N ofyg@aokeitutdtofrt-lzqqatf.rt \N all_genders_avatar.png 2026-04-14 16:10:09.532014 2026-04-14 16:10:09.532014 1 {mobilePhone} \N -523 \N \N colzq@colzqwtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.560515 2026-04-14 16:10:09.560515 1 {mobilePhone} \N -524 \N \N agfzqaz@axfutkaotm.rt \N all_genders_avatar.png 2026-04-14 16:10:09.589738 2026-04-14 16:10:09.589738 1 {mobilePhone} \N -525 \N \N agfzqaz@aotmasxw-qsstfrt-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:09.619201 2026-04-14 16:10:09.619201 1 {mobilePhone} \N -526 \N \N tiktfqdz@wq-dozzt.wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.648542 2026-04-14 16:10:09.648542 1 {mobilePhone} \N -527 \N \N ofyg@wdwylypltkcoet.wxfr.rt \N all_genders_avatar.png 2026-04-14 16:10:09.682384 2026-04-14 16:10:09.682384 1 {mobilePhone} \N -528 \N \N ztqd@egddxfozntdhgvtkdtfz.rt \N all_genders_avatar.png 2026-04-14 16:10:09.706257 2026-04-14 16:10:09.706257 1 {mobilePhone} \N -529 \N \N ofyg@fqeiiosy-lhkqeitf-wtksof.rt \N all_genders_avatar.png 2026-04-14 16:10:09.733251 2026-04-14 16:10:09.733251 1 {mobilePhone} \N -530 \N \N vtkalzqzz@iqxlrtklzqzolzoa.gku \N all_genders_avatar.png 2026-04-14 16:10:09.756302 2026-04-14 16:10:09.756302 1 {mobilePhone} \N -531 \N \N ofyg@dgdtfz-dqs.gku \N all_genders_avatar.png 2026-04-14 16:10:09.784465 2026-04-14 16:10:09.784465 1 {mobilePhone} \N -532 \N \N ofyg@axszxkleiqyyz.rt \N all_genders_avatar.png 2026-04-14 16:10:09.813031 2026-04-14 16:10:09.813031 1 {mobilePhone} \N -533 \N \N ofyg@hqfrq-hsqzygkdq.wtksof \N all_genders_avatar.png 2026-04-14 16:10:09.861175 2026-04-14 16:10:09.861175 1 {mobilePhone} \N -534 \N \N odhktllxd@utlgwqx.rt \N all_genders_avatar.png 2026-04-14 16:10:09.889142 2026-04-14 16:10:09.889142 1 {mobilePhone} \N -535 \N \N ofyg@agdhtztfm-vqlltk.rt \N all_genders_avatar.png 2026-04-14 16:10:09.917517 2026-04-14 16:10:09.917517 1 {mobilePhone} \N -536 \N \N y.fqtitk@apli.rt, q.kothtk@apic.rt \N all_genders_avatar.png 2026-04-14 16:10:09.946789 2026-04-14 16:10:09.946789 1 {mobilePhone} \N -537 \N \N t-dqos: agfzqaz@zitllq-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:09.992134 2026-04-14 16:10:09.992134 1 {mobilePhone} \N -538 \N \N dqos@eiteaxh-ofyg.rt \N all_genders_avatar.png 2026-04-14 16:10:10.039539 2026-04-14 16:10:10.039539 1 {mobilePhone} \N -539 \N \N iw@xfogfiosylvtka.rt \N all_genders_avatar.png 2026-04-14 16:10:10.072187 2026-04-14 16:10:10.072187 1 {mobilePhone} \N -540 \N \N agfzqaz@hkolgr-vgiftf.rt \N all_genders_avatar.png 2026-04-14 16:10:10.147595 2026-04-14 16:10:10.147595 1 {mobilePhone} \N -541 \N \N roqsgu@xfogfiosylvtka.rt \N all_genders_avatar.png 2026-04-14 16:10:10.177186 2026-04-14 16:10:10.177186 1 {mobilePhone} \N -542 \N \N raiv@raiv.rt \N all_genders_avatar.png 2026-04-14 16:10:10.226151 2026-04-14 16:10:10.226151 1 {mobilePhone} \N -543 \N \N ofyg@eiosrktfgyuxztfwtku.rt \N all_genders_avatar.png 2026-04-14 16:10:10.25535 2026-04-14 16:10:10.25535 1 {mobilePhone} \N -544 \N \N ofyg@agl-jxqsozqtz.rt \N all_genders_avatar.png 2026-04-14 16:10:10.28667 2026-04-14 16:10:10.28667 1 {mobilePhone} \N -545 \N \N t-dqos agfzqaz@gyytfloc67.rt \N all_genders_avatar.png 2026-04-14 16:10:10.336683 2026-04-14 16:10:10.336683 1 {mobilePhone} \N -546 \N \N ofyg@lnsctlztk-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:10.366814 2026-04-14 16:10:10.366814 1 {mobilePhone} \N -547 \N \N ofyg@zxtkgtyyftk-tc.rt \N all_genders_avatar.png 2026-04-14 16:10:10.39461 2026-04-14 16:10:10.39461 1 {mobilePhone} \N -548 \N \N etktf.wgsqz@lgmoqstl-wtksof.egd \N all_genders_avatar.png 2026-04-14 16:10:10.47497 2026-04-14 16:10:10.47497 1 {mobilePhone} \N -549 \N \N pqfrtea@lzxtzmkqr.rt 5799 11528850 all_genders_avatar.png 2026-04-14 16:10:10.50832 2026-04-14 16:10:10.50832 1 {mobilePhone} \N -551 \N \N q.leidorz@rpg-ww.rt \N all_genders_avatar.png 2026-04-14 16:10:10.622952 2026-04-14 16:10:10.622952 1 {mobilePhone} \N -552 Ykqx \N Züdhzftk zxtdhzftk@ktofigsr-wxkutk-leixst.rt 57069613054 all_genders_avatar.png 2026-04-14 16:10:10.650903 2026-04-14 16:10:10.650903 1 {mobilePhone} \N -553 Qdn \N Moddtkdqff moddtkdqff@qvg-dozzt.rt 579040177422 all_genders_avatar.png 2026-04-14 16:10:10.81095 2026-04-14 16:10:10.81095 1 {mobilePhone} \N -554 Lgyoq \N Utsyqfr lgutsyqfr@udqos.egd +2679356931412 all_genders_avatar.png 2026-04-14 16:11:18.202345 2026-04-14 16:11:18.202345 2 {mobilePhone} \N -555 Tsolqwtzi \N \N tsolqwtzi_kgltfakqfm@z-gfsoft.rt \N all_genders_avatar.png 2026-04-14 16:11:18.498506 2026-04-14 16:11:18.498506 2 {mobilePhone} \N -556 Eikolzoft \N \N zofgxlittf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.551852 2026-04-14 16:11:18.551852 2 {mobilePhone} \N -557 LqattfqZqsqz \N \N lqattfq.zqsqz@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.60714 2026-04-14 16:11:18.60714 2 {mobilePhone} \N -558 Tsstft \N \N tsstft.iqkzgxfoqf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.655022 2026-04-14 16:11:18.655022 2 {mobilePhone} \N -559 Qstpqfrkg \N Wgfqzzg qstpqfrkg_wgfqzzg@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:18.720375 2026-04-14 16:11:18.720375 2 {mobilePhone} \N -560 Dnziko \N \N dnziko.eiqfrkqdgiqf77@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.812957 2026-04-14 16:11:18.812957 2 {mobilePhone} \N -561 Qsoft \N \N qsoftk.tcqfutsolzq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.871433 2026-04-14 16:11:18.871433 2 {mobilePhone} \N -562 Doq \N \N doqlrqkdqvqf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:18.940183 2026-04-14 16:11:18.940183 2 {mobilePhone} \N -563 Csqrolsqc \N Zodglitfag aorqsc3573@udqos.egd 57040910234 all_genders_avatar.png 2026-04-14 16:11:19.012129 2026-04-14 16:11:19.012129 2 {mobilePhone} \N -564 Tsoqfq \N Egleioufqfg tso.egleioufqfg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.280355 2026-04-14 16:11:19.280355 2 {mobilePhone} \N -565 Qffq \N Aqkqhohtkorol qffqaqkqhohtkorol@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.344068 2026-04-14 16:11:19.344068 2 {mobilePhone} \N -566 Hqxsq \N Wktxeadqff hqxsq.wktxeadqff@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.409275 2026-04-14 16:11:19.409275 2 {mobilePhone} \N -567 Lqkq \N Htktug htktuglqkq51@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:19.551554 2026-04-14 16:11:19.551554 2 {mobilePhone} \N -568 Iqliqqd \N Qidtr l.qidtr.iqliqqd@udqos.egd 57189702177 all_genders_avatar.png 2026-04-14 16:11:19.633472 2026-04-14 16:11:19.633472 2 {mobilePhone} \N -569 Wqkol \N Aqkqsqk aqkqsqkwqkol@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.730711 2026-04-14 16:11:19.730711 2 {mobilePhone} \N -570 Qstai \N Qfos qstaiqfos7@udqos.egd 70183934784 all_genders_avatar.png 2026-04-14 16:11:19.803387 2026-04-14 16:11:19.803387 2 {mobilePhone} \N -571 Dqkotsq \N Mtfrtpql dqkotsq.mtfrtpql@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:19.879086 2026-04-14 16:11:19.879086 2 {mobilePhone} \N -572 Aqzofaq \N Hod aqzofaqhod37@oesgxr.egd \N all_genders_avatar.png 2026-04-14 16:11:19.939958 2026-04-14 16:11:19.939958 2 {mobilePhone} \N -573 Ykqfao \N Ptfaofl yuptfaofl@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.02694 2026-04-14 16:11:20.02694 2 {mobilePhone} \N -574 Pxsoq \N Kxlzgf pxsoqkxlzgf7666@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.087046 2026-04-14 16:11:20.087046 2 {mobilePhone} \N -575 Foea \N Ctkitxs foeactkitxs@soct.fs +87122241023 all_genders_avatar.png 2026-04-14 16:11:20.205932 2026-04-14 16:11:20.205932 2 {mobilePhone} \N -576 Foagsq \N Říigcá foagsq.koigcq71@ltmfqd.em +235 033091341 all_genders_avatar.png 2026-04-14 16:11:20.275056 2026-04-14 16:11:20.275056 2 {mobilePhone} \N -577 Twkx \N Rxiqf t.rxklf@igzdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.385224 2026-04-14 16:11:20.385224 2 {mobilePhone} \N -578 Ykqfetleq \N \N dtnykqfetleq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.462294 2026-04-14 16:11:20.462294 2 {mobilePhone} \N -579 Eqdosst \N Sxe eqdosstdsxe@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.525392 2026-04-14 16:11:20.525392 2 {mobilePhone} \N -580 Soff \N Wsgdacolz soff.d.wsgdacolz@udqos.egd +2064470198 all_genders_avatar.png 2026-04-14 16:11:20.592653 2026-04-14 16:11:20.592653 2 {mobilePhone} \N -581 Uxn \N Fgkzgf uxnfgkzgf@hkgzgf.dt 579738195413 all_genders_avatar.png 2026-04-14 16:11:20.686547 2026-04-14 16:11:20.686547 2 {mobilePhone} \N -582 Sxpqof \N Dqflgxk iqmtd_sxpqof@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:20.749152 2026-04-14 16:11:20.749152 2 {mobilePhone} \N -583 Nqktf \N Qçıauöm lxrt.qeoaugm@igzdqos.egd +26 7182988325 all_genders_avatar.png 2026-04-14 16:11:20.817818 2026-04-14 16:11:20.817818 2 {mobilePhone} \N -584 Eqkgsoft \N \N el.dqftfg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:20.937316 2026-04-14 16:11:20.937316 2 {mobilePhone} \N -585 Fqpow \N Lqrqqz fqpttw.lmx@udqos.egd 579082756039 all_genders_avatar.png 2026-04-14 16:11:21.110401 2026-04-14 16:11:21.110401 2 {mobilePhone} \N -586 Odkqf \N Dgiqddqr litoaiodkqflok@udqos.egd 579373437886 all_genders_avatar.png 2026-04-14 16:11:21.257479 2026-04-14 16:11:21.257479 2 {mobilePhone} \N -587 Ftst \N Rotzkoei fbrotzkoei@udqos.egd +26 793 98868811 all_genders_avatar.png 2026-04-14 16:11:21.331631 2026-04-14 16:11:21.331631 2 {mobilePhone} \N -588 Qstpqfrkq \N Dgkof qstpqfrkqcopos@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.444918 2026-04-14 16:11:21.444918 2 {mobilePhone} \N -589 Pttz \N Ziqaaqk pttz.ziqaaqkk@udqos.egd 5708 9882286 all_genders_avatar.png 2026-04-14 16:11:21.513288 2026-04-14 16:11:21.513288 2 {mobilePhone} \N -590 Fqkutl \N Zgnltkaqfo fqkutll.dz@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.580097 2026-04-14 16:11:21.580097 2 {mobilePhone} \N -591 Qrqd \N \N qrqd.qfrzkqgkt@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.662209 2026-04-14 16:11:21.662209 2 {mobilePhone} \N -592 Qwiodqfnx \N Lofui qwiodqfnx7lofui57@udqos.egd +26 70148816212 all_genders_avatar.png 2026-04-14 16:11:21.752073 2026-04-14 16:11:21.752073 2 {mobilePhone} \N -593 Cqstfzofq \N Wgrofo cqstfzofq.wgrofo68@udqos.egd +2670185112899 all_genders_avatar.png 2026-04-14 16:11:21.811925 2026-04-14 16:11:21.811925 2 {mobilePhone} \N -594 Xdqok \N Lqkykqm qjxqrtlzkxezgk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.876975 2026-04-14 16:11:21.876975 2 {mobilePhone} \N -595 Tkuof \N Tutso tutsotkuof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:21.966037 2026-04-14 16:11:21.966037 2 {mobilePhone} \N -596 Foegsq \N Dtssgk foaao.dtssgk7@udqos.egd +220646536032 all_genders_avatar.png 2026-04-14 16:11:22.052315 2026-04-14 16:11:22.052315 2 {mobilePhone} \N -597 pgltyofq \N tkkqmaof pgltyofq.tkkqmaof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:22.144682 2026-04-14 16:11:22.144682 2 {mobilePhone} \N -598 Ltsof \N Wqs ltsoffwqs60@udqos.egd 579095196954 all_genders_avatar.png 2026-04-14 16:11:22.215094 2026-04-14 16:11:22.215094 2 {mobilePhone} \N -599 Coezgk \N Lgffzqu kqhiqtslgffzqu@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:22.37141 2026-04-14 16:11:22.37141 2 {mobilePhone} \N -600 Fqriossq \N Dqmqnq fqriossqdqmqnq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:22.441862 2026-04-14 16:11:22.441862 2 {mobilePhone} \N -601 Fqfr \N Liqkdq fqfrxxhqrinqn64@udqos.egd 570134937279 all_genders_avatar.png 2026-04-14 16:11:22.554666 2026-04-14 16:11:22.554666 2 {mobilePhone} \N -602 Qfrktq \N Gkzom qfrktqgkxom71@udqos.egd +82 176014767 all_genders_avatar.png 2026-04-14 16:11:22.736208 2026-04-14 16:11:22.736208 2 {mobilePhone} \N -603 Hios \N Eqzzqfo hios_eqzzqfo@lzqkzdqos.egd +267004457074 all_genders_avatar.png 2026-04-14 16:11:22.813341 2026-04-14 16:11:22.813341 2 {mobilePhone} \N -604 Lgyot \N Dxfei lgyot_ipgkzlagcdxfei@igzdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:22.901904 2026-04-14 16:11:22.901904 2 {mobilePhone} \N -605 Uvnfozi \N Zxeatk uvnfoziz@udqos.egd +2670196700935 all_genders_avatar.png 2026-04-14 16:11:22.971041 2026-04-14 16:11:22.971041 2 {mobilePhone} \N -606 Zqdolq \N Igfrq lttagigfrq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.069472 2026-04-14 16:11:23.069472 2 {mobilePhone} \N -607 Koeiqkr \N Vqftatnq koeiqkr.vqftatnq@udqos.egd +2679092487808 all_genders_avatar.png 2026-04-14 16:11:23.116795 2026-04-14 16:11:23.116795 2 {mobilePhone} \N -608 Kqixs \N Hkglhtk kqixsptklgfd@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.276808 2026-04-14 16:11:23.276808 2 {mobilePhone} \N -609 Qsuiqozi \N Qsqlql \N +2670111471871 all_genders_avatar.png 2026-04-14 16:11:23.361782 2026-04-14 16:11:23.361782 2 {mobilePhone} \N -610 Ptffoytk \N \N ptffoytkpqolgf58@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.459919 2026-04-14 16:11:23.459919 2 {mobilePhone} \N -611 Dqrrn \N Wsqea dpwsqea3535@gxzsgga.egd 50083346578 all_genders_avatar.png 2026-04-14 16:11:23.55096 2026-04-14 16:11:23.55096 2 {mobilePhone} \N -612 Fgédot \N Jxoflgf fgtdot.jxoflgf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.658933 2026-04-14 16:11:23.658933 2 {mobilePhone} \N -613 Lodgf \N Trvqkrl lotrvqkrl1@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.725867 2026-04-14 16:11:23.725867 2 {mobilePhone} \N -614 Nqfq \N Ocqfgcq ocqfgcqnqfq@igzdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.789392 2026-04-14 16:11:23.789392 2 {mobilePhone} \N -615 wqrkot \N aiqsoso wqrkoeie@dgslq.ugc.os 5951377788 all_genders_avatar.png 2026-04-14 16:11:23.862317 2026-04-14 16:11:23.862317 2 {mobilePhone} \N -616 Ztllq \N \N ztllq.lhqd@hglztg.rt \N all_genders_avatar.png 2026-04-14 16:11:23.91055 2026-04-14 16:11:23.91055 2 {mobilePhone} \N -617 Qszqï \N \N qszqorqkkotx@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:23.982434 2026-04-14 16:11:23.982434 2 {mobilePhone} \N -618 Qffq \N Wtmwgkgrgcq qffqwtmwgkgrgcq65@udqos.egd 570180786272 all_genders_avatar.png 2026-04-14 16:11:24.053345 2026-04-14 16:11:24.053345 2 {mobilePhone} \N -619 Cozgkoq \N dqotsg cozgkoqdqotsgwqkktzgdqeiqrg@udqos.egd +26 70133136297 all_genders_avatar.png 2026-04-14 16:11:24.175902 2026-04-14 16:11:24.175902 2 {mobilePhone} \N -620 Uoqfhotzkg \N Wqzzolzxzzo wkouitst@oesgxr.egd +2679799799414 all_genders_avatar.png 2026-04-14 16:11:24.361382 2026-04-14 16:11:24.361382 2 {mobilePhone} \N -621 Lqdok \N Qs-Dqqdggkn lqdok.dle.48@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:24.46903 2026-04-14 16:11:24.46903 2 {mobilePhone} \N -622 Qsolq \N Foaozofq qs.hkofztdhg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:24.66639 2026-04-14 16:11:24.66639 2 {mobilePhone} \N -623 Lofrxpq \N Eiqfrkqltaqkqf lofrxeiqfrkx63@udqos.egd +2679358607216 all_genders_avatar.png 2026-04-14 16:11:24.797053 2026-04-14 16:11:24.797053 3 {mobilePhone} \N -624 Ustw \N Wtsgwgkgrgc wtsuqfustw@udqos.egd +2670113110228 all_genders_avatar.png 2026-04-14 16:11:24.888335 2026-04-14 16:11:24.888335 2 {mobilePhone} \N -625 Ztcrgkt \N Qcqsolicoso ztcrgktqcqsolicoso@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:24.970476 2026-04-14 16:11:24.970476 2 {mobilePhone} \N -626 Dqilior \N Litkqyqz litkqyqz.dqilior@udqos.egd 57067706597 all_genders_avatar.png 2026-04-14 16:11:25.015709 2026-04-14 16:11:25.015709 2 {mobilePhone} \N -627 Qnltuxs \N Gmdtf qnltuxsgmdtf.ox@udqos.egd 570132652576 all_genders_avatar.png 2026-04-14 16:11:25.115663 2026-04-14 16:11:25.115663 2 {mobilePhone} \N -628 Rdozkoo \N \N rcligkmi@udqos.egd +2679358627452 all_genders_avatar.png 2026-04-14 16:11:25.20373 2026-04-14 16:11:25.20373 2 {mobilePhone} \N -629 Iqwow \N olqdos iqwow.oldqts8@udqos.egd +26 701 42843908 all_genders_avatar.png 2026-04-14 16:11:25.313523 2026-04-14 16:11:25.313523 2 {mobilePhone} \N -630 Lqfrkq \N Pqnqdqiq lqfrkqpqnqdqiq255@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:25.496365 2026-04-14 16:11:25.496365 2 {mobilePhone} \N -631 Dqkoq \N Ugdtm dqkoq.ytkfqfrq.ugdtm@mqsqfrg.rt \N all_genders_avatar.png 2026-04-14 16:11:25.581407 2026-04-14 16:11:25.581407 2 {mobilePhone} \N -632 Hqdtsq \N (eggkrofqzgk) hqdtsq.ptlktos@pgofrttr.egd \N all_genders_avatar.png 2026-04-14 16:11:25.658237 2026-04-14 16:11:25.658237 2 {mobilePhone} \N -633 Dosqf \N Qswsofutk doqdoeq7664@igzdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:25.739178 2026-04-14 16:11:25.739178 2 {mobilePhone} \N -634 Qswq \N Dtsuxomg qswqdtsuqh@udqos.egd 5582107489926 all_genders_avatar.png 2026-04-14 16:11:25.857251 2026-04-14 16:11:25.857251 2 {mobilePhone} \N -635 Hqgsq \N Utuq h-utuq@soct.rt +267183719046 all_genders_avatar.png 2026-04-14 16:11:25.921028 2026-04-14 16:11:25.921028 2 {mobilePhone} \N -636 Qstbqfrkq \N Lqliq) l.qstbqfrkq.gksgcq@udqos.egd 579712115502 all_genders_avatar.png 2026-04-14 16:11:26.023702 2026-04-14 16:11:26.023702 2 {mobilePhone} \N -637 Ptlloeq \N rtfItntk ptll.rtfitntk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:26.179611 2026-04-14 16:11:26.179611 2 {mobilePhone} \N -638 Dqkooq \N Ztktlieitfag xfsqwts77@udqos.egd +2671561356797 all_genders_avatar.png 2026-04-14 16:11:26.262087 2026-04-14 16:11:26.262087 2 {mobilePhone} \N -639 Eqksgzzq \N Uttkrl sgzzq.uttkrl@udqos.egd 57028898873 all_genders_avatar.png 2026-04-14 16:11:26.412537 2026-04-14 16:11:26.412537 2 {mobilePhone} \N -640 Dqkcof \N Ioeat ziololdqkcofi@udqos.egd 7 (419) 152- 0269 all_genders_avatar.png 2026-04-14 16:11:26.488168 2026-04-14 16:11:26.488168 2 {mobilePhone} \N -641 Aktšodok \N Ykqfof akykqfof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:26.683176 2026-04-14 16:11:26.683176 2 {mobilePhone} \N -642 Qffq \N Voflsgv ytsoealb@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:26.727508 2026-04-14 16:11:26.727508 2 {mobilePhone} \N -643 Lxlqf \N Vtkt lxlqfvtkt79@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:26.807278 2026-04-14 16:11:26.807278 2 {mobilePhone} \N -644 Olqwts \N \N olqwts.hqzzxmmo@udqos.egd 579084359303 all_genders_avatar.png 2026-04-14 16:11:26.843448 2026-04-14 16:11:26.843448 2 {mobilePhone} \N -645 Etsofq \N Leidorzat etsofqleidorzat@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:26.915397 2026-04-14 16:11:26.915397 2 {mobilePhone} \N -646 Fqrpq \N Lofutk flofutk@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:26.981466 2026-04-14 16:11:26.981466 2 {mobilePhone} \N -647 Lqdlgfrttf \N Rqkt rlqdlgfrttf@udqos.egd 570189689361 all_genders_avatar.png 2026-04-14 16:11:27.043993 2026-04-14 16:11:27.043993 2 {mobilePhone} \N -648 Qrkoqf \N Ktoeigv qrkoqfktoeigv@uggustdqos.egd \N all_genders_avatar.png 2026-04-14 16:11:27.10172 2026-04-14 16:11:27.10172 2 {mobilePhone} \N -649 Qfpq \N Ygkrgf qygkrgf@hglztg.rt \N all_genders_avatar.png 2026-04-14 16:11:27.179588 2026-04-14 16:11:27.179588 2 {mobilePhone} \N -650 DGK \N TOFO dgk.tofo85@udqos.egd 570137290601 all_genders_avatar.png 2026-04-14 16:11:27.253286 2026-04-14 16:11:27.253286 2 {mobilePhone} \N -651 Rqfoos \N \N rqfoos.ugfoadqf.5850@udqos.egd +2679089052229 all_genders_avatar.png 2026-04-14 16:11:27.338023 2026-04-14 16:11:27.338023 2 {mobilePhone} \N -652 Vqpoi \N \N vqpoie73576@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:27.50916 2026-04-14 16:11:27.50916 2 {mobilePhone} \N -653 Pqlgf \N Vggrl vggrl.pql@dt.egd 57030397993 all_genders_avatar.png 2026-04-14 16:11:27.691047 2026-04-14 16:11:27.691047 2 {mobilePhone} \N -654 Aqn \N Ztxwtk aqnztxwtk26@udqos.egd 579357874603 all_genders_avatar.png 2026-04-14 16:11:27.773208 2026-04-14 16:11:27.773208 2 {mobilePhone} \N -655 Dqkoqd \N Qats dqkoqdqwgxqats@udqos.egd 57044687918 all_genders_avatar.png 2026-04-14 16:11:27.835811 2026-04-14 16:11:27.835811 4 {mobilePhone} \N -656 Tsgïlt \N Lofgx tsgolt.lofgx@leotfetlhg.yk 5588 0 22 25 57 20 all_genders_avatar.png 2026-04-14 16:11:27.920012 2026-04-14 16:11:27.920012 2 {mobilePhone} \N -657 Lqwoft \N mtsqfrg lqwoft.ighdqff.sghtm@mqsqfrg.rt \N all_genders_avatar.png 2026-04-14 16:11:27.962091 2026-04-14 16:11:27.962091 2 {mobilePhone} \N -658 dqzo \N \N dqzzuqddot@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.008912 2026-04-14 16:11:28.008912 2 {mobilePhone} \N -659 Kqiqy \N \N kqiqy.qslqwqqui@udqos.egd ‏‪552679728845138‬‏ all_genders_avatar.png 2026-04-14 16:11:28.049002 2026-04-14 16:11:28.049002 2 {mobilePhone} \N -660 lgxaqofq \N ltyyqk ltyyqk.laf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.11137 2026-04-14 16:11:28.11137 2 {mobilePhone} \N -661 Zgwoql \N Zqkfgv zgwo.zqkfgv@udb.rt 55267042977653 all_genders_avatar.png 2026-04-14 16:11:28.233618 2026-04-14 16:11:28.233618 2 {mobilePhone} \N -662 Todqs \N Rqjoj qodqsrqjoj041@udqos.egd +26 790 98335644 all_genders_avatar.png 2026-04-14 16:11:28.310181 2026-04-14 16:11:28.310181 2 {mobilePhone} \N -663 Qstllqfrkq \N Esqka qstllqfrkq.esqka@igzdqos.egd +22 0205553618 all_genders_avatar.png 2026-04-14 16:11:28.484738 2026-04-14 16:11:28.484738 2 {mobilePhone} \N -664 Dtkct \N Quof dtkctquof@udqos.egd +26 7935 2956818 all_genders_avatar.png 2026-04-14 16:11:28.566186 2026-04-14 16:11:28.566186 2 {mobilePhone} \N -665 Lqkq \N Qligxk lqkq.lqdok.46@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.630935 2026-04-14 16:11:28.630935 2 {mobilePhone} \N -666 Yggmont \N Liqnaimqrt litnaimqrt.yq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.743 2026-04-14 16:11:28.743 2 {mobilePhone} \N -667 Dqoiqf \N \N doiqftaiztnqko22@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.849057 2026-04-14 16:11:28.849057 2 {mobilePhone} \N -668 Lxf \N Dxf dxfpgqfft@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:28.919996 2026-04-14 16:11:28.919996 2 {mobilePhone} \N -669 Hqxs \N Rxstniq hqxs.rxstniq@udqos.egd +88 1 58 42 77 32 all_genders_avatar.png 2026-04-14 16:11:29.013352 2026-04-14 16:11:29.013352 2 {mobilePhone} \N -670 Zodg \N \N qwqzod@vtw.rt 570129838170 all_genders_avatar.png 2026-04-14 16:11:29.112174 2026-04-14 16:11:29.112174 5 {mobilePhone} \N -671 Ykqfetleq \N Wkqxtk ykqffowk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:29.214334 2026-04-14 16:11:29.214334 2 {mobilePhone} \N -672 Taof \N Qazqkoeo qazqkoeotaof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:29.311661 2026-04-14 16:11:29.311661 2 {mobilePhone} \N -673 Dqzosrq \N Uxlzqyllgf dqzosrq.uxlzqyllgf@udb.egd 70115744247 all_genders_avatar.png 2026-04-14 16:11:29.395066 2026-04-14 16:11:29.395066 2 {mobilePhone} \N -674 Eqdosq \N \N eqdtfrgmqcorqs@udqos.egd +267131221249 all_genders_avatar.png 2026-04-14 16:11:29.455578 2026-04-14 16:11:29.455578 2 {mobilePhone} \N -675 Gdqk \N \N gdqk.ad67d@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:29.531311 2026-04-14 16:11:29.531311 2 {mobilePhone} \N -676 Gsuq \N \N cqsstfq999@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:29.604256 2026-04-14 16:11:29.604256 2 {mobilePhone} \N -677 Dqkotsq \N Mtfrtpql hqxsqvxkeit@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:29.675388 2026-04-14 16:11:29.675388 2 {mobilePhone} \N -678 Fqzoq \N Dqaolicoso dqaolicosofqzoq646@udqos.egd 570142022846 all_genders_avatar.png 2026-04-14 16:11:29.779242 2026-04-14 16:11:29.779242 2 {mobilePhone} \N -679 Altfopq \N LxfrtptcQ altfopq.lxfrtptcq@hglztg.ftz \N all_genders_avatar.png 2026-04-14 16:11:29.82597 2026-04-14 16:11:29.82597 2 {mobilePhone} \N -680 Ctkq \N Lieitsaofq odozqzgk@udqos.egd +267043514747 all_genders_avatar.png 2026-04-14 16:11:29.961454 2026-04-14 16:11:29.961454 2 {mobilePhone} \N -681 Hgsofq \N \N hgsvtnr@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.12275 2026-04-14 16:11:30.12275 2 {mobilePhone} \N -682 qffq \N \N zxaqeixsq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.183912 2026-04-14 16:11:30.183912 2 {mobilePhone} \N -683 Dqkoq \N Ugsxwtcq dqkoq.ltkuttcfq.ugsxwtcq@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.234749 2026-04-14 16:11:30.234749 2 {mobilePhone} \N -684 Ltkioo \N \N dqeiqokgrxl3573@udqos.egd +26 701 412 62 359 all_genders_avatar.png 2026-04-14 16:11:30.409459 2026-04-14 16:11:30.409459 2 {mobilePhone} \N -685 Wktfrz \N \N yotrstk_wtkfr@nqigg.rt \N all_genders_avatar.png 2026-04-14 16:11:30.550638 2026-04-14 16:11:30.550638 2 {mobilePhone} \N -686 Gfrktp \N Lxkgcte g.lxkgcte@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.658127 2026-04-14 16:11:30.658127 2 {mobilePhone} \N -687 Tmuo \N Roarxk tmuoroarxk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.725589 2026-04-14 16:11:30.725589 2 {mobilePhone} \N -688 Sqowq \N Dqsoa sqowqdqsoa664@udqos.egd 570131921807 all_genders_avatar.png 2026-04-14 16:11:30.814151 2026-04-14 16:11:30.814151 2 {mobilePhone} \N -689 Kqyqts \N Extzg kqyq.wtdwoq@udqos.egd +267032353806 all_genders_avatar.png 2026-04-14 16:11:30.890548 2026-04-14 16:11:30.890548 2 {mobilePhone} \N -690 Iqylq \N Wtffol iqylq.wtffol@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:30.956189 2026-04-14 16:11:30.956189 2 {mobilePhone} \N -691 Qddqk \N \N qddqkkqsqidqr@udqos.egd 57000370993 all_genders_avatar.png 2026-04-14 16:11:31.065938 2026-04-14 16:11:31.065938 2 {mobilePhone} \N -692 Qolivqknq \N Dxkqso qqolivqknqdxkqso@udqos.egd 57132036535 all_genders_avatar.png 2026-04-14 16:11:31.124737 2026-04-14 16:11:31.124737 2 {mobilePhone} \N -693 Lqfrkq \N Lggdkt lqfffxi@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.171623 2026-04-14 16:11:31.171623 2 {mobilePhone} \N -694 Ltkioo \N \N ltkioo.liztofoagc@udb.rt \N all_genders_avatar.png 2026-04-14 16:11:31.239362 2026-04-14 16:11:31.239362 2 {mobilePhone} \N -695 Qffq \N Doaiqsgclaqoq qffqdoai@ltmfqd.em 570127785660 all_genders_avatar.png 2026-04-14 16:11:31.373434 2026-04-14 16:11:31.373434 2 {mobilePhone} \N -696 Dqkn-Rgkq \N Wsgei-Iqfltf dqknrgkqwi@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.45781 2026-04-14 16:11:31.45781 2 {mobilePhone} \N -697 Ktwteeq \N Ioss kp.ioss32@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.5454 2026-04-14 16:11:31.5454 2 {mobilePhone} \N -698 Qdtsot \N Teatklstn qdtsot.teatklstn@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.639578 2026-04-14 16:11:31.639578 2 {mobilePhone} \N -699 Lqkq \N Ligakqco lqkqligakqco@nqigg.egd \N all_genders_avatar.png 2026-04-14 16:11:31.718425 2026-04-14 16:11:31.718425 2 {mobilePhone} \N -700 Tkof \N Atslg tkof.dqkoq.atslg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.815918 2026-04-14 16:11:31.815918 2 {mobilePhone} \N -701 Itstf \N Yqsstk itstf.yqsstk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:31.909888 2026-04-14 16:11:31.909888 2 {mobilePhone} \N -702 Lnscoq \N Eitf lnscoq.n.eitf@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:32.03042 2026-04-14 16:11:32.03042 2 {mobilePhone} \N -703 Pxsotz \N Atslg pxsotzdatslg@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:32.121539 2026-04-14 16:11:32.121539 2 {mobilePhone} \N -704 Rqfots \N Sghtm aktdtkrqfots@nqigg.rt \N all_genders_avatar.png 2026-04-14 16:11:32.200293 2026-04-14 16:11:32.200293 2 {mobilePhone} \N -705 Qkoqffq \N Rqstkeo qkoqffq.rqstkeo@udqos.egd 552670115222723 all_genders_avatar.png 2026-04-14 16:11:32.282575 2026-04-14 16:11:32.282575 2 {mobilePhone} \N -706 EIKOLZOQF \N IQVATN eikolzoqfiqvatn@udqos.egd 570112331166 all_genders_avatar.png 2026-04-14 16:11:32.369189 2026-04-14 16:11:32.369189 2 {mobilePhone} \N -707 Zkqen \N Yxqr zkqendqnyxqr@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:32.427376 2026-04-14 16:11:32.427376 2 {mobilePhone} \N -708 Iqsq \N Dqkrofo iqsqdqkrofo666@igzdqos.egd 57048946929 all_genders_avatar.png 2026-04-14 16:11:32.486438 2026-04-14 16:11:32.486438 2 {mobilePhone} \N -709 Qffq \N Likqtk qffqlikqtk@udqos.egd 57062354416 all_genders_avatar.png 2026-04-14 16:11:32.583939 2026-04-14 16:11:32.583939 6 {mobilePhone} \N -710 Qffq \N Rofvggrot qffqsgct2@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:32.797589 2026-04-14 16:11:32.797589 2 {mobilePhone} \N -711 Ftqdq \N Aiqstr ftqdqqaqistrdqflgxk738@udqos.egd +357559873009 all_genders_avatar.png 2026-04-14 16:11:32.851528 2026-04-14 16:11:32.851528 2 {mobilePhone} \N -712 Hqxsq \N Gsoctokq hqxsqtddtksofu@udqos.egd 579391927767 all_genders_avatar.png 2026-04-14 16:11:32.965157 2026-04-14 16:11:32.965157 7 {mobilePhone} \N -713 Odqft \N Qsqgxo tsgd.odqft@udqos.egd +2670181314971 all_genders_avatar.png 2026-04-14 16:11:33.04456 2026-04-14 16:11:33.04456 2 {mobilePhone} \N -714 Wgeikq \N Dtafg wgeikq.dtafo@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:33.103268 2026-04-14 16:11:33.103268 2 {mobilePhone} \N -715 Yázodq \N Sqkq yqzn000kog@igzdqos.egd 579087117000 all_genders_avatar.png 2026-04-14 16:11:33.201317 2026-04-14 16:11:33.201317 2 {mobilePhone} \N -716 Rqoln \N \N rqolnvtssl76@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:33.298108 2026-04-14 16:11:33.298108 2 {mobilePhone} \N -717 Qnsq \N Dxftd qnsq.dxftd@udqos.egd 579099076105 all_genders_avatar.png 2026-04-14 16:11:33.350407 2026-04-14 16:11:33.350407 2 {mobilePhone} \N -718 Lqdoq \N \N dqiqdlqttr756@udqos.egd 570125237910 all_genders_avatar.png 2026-04-14 16:11:33.494459 2026-04-14 16:11:33.494459 2 {mobilePhone} \N -719 Fqzqsoq \N (rtn/lot) fqzqliga7954@udqos.egd @fqzqsoleiag all_genders_avatar.png 2026-04-14 16:11:33.554493 2026-04-14 16:11:33.554493 2 {mobilePhone} \N -720 İros \N Şqaqk orosrtfomlqaqk7664@udqos.egd +267026779537 all_genders_avatar.png 2026-04-14 16:11:33.693532 2026-04-14 16:11:33.693532 2 {mobilePhone} \N -721 Fqxkttf \N Dxlzqyq fqxkttfdxlzqyq9@udqos.egd +2679390247890 all_genders_avatar.png 2026-04-14 16:11:33.918339 2026-04-14 16:11:33.918339 2 {mobilePhone} \N -722 Hofqk \N \N emhofqk@igzdqos.egd 57157425573 all_genders_avatar.png 2026-04-14 16:11:34.100898 2026-04-14 16:11:34.100898 2 {mobilePhone} \N -723 Yqztdt \N Yqkkgai yqztdq999twkqiodo@udqos.egd +2679387241589 all_genders_avatar.png 2026-04-14 16:11:34.221176 2026-04-14 16:11:34.221176 2 {mobilePhone} \N -724 Dgiltf \N cqtmo d_cqtmo04@nqigg.egd 579003257562 all_genders_avatar.png 2026-04-14 16:11:34.275059 2026-04-14 16:11:34.275059 2 {mobilePhone} \N -725 Sxdo \N \N sxdosqxlql@udqos.egd 57041833327 all_genders_avatar.png 2026-04-14 16:11:34.421233 2026-04-14 16:11:34.421233 2 {mobilePhone} \N -726 Lqaofq \N Squmqtt l.sqamqtt@udqos.egd 579652411883 all_genders_avatar.png 2026-04-14 16:11:34.527532 2026-04-14 16:11:34.527532 2 {mobilePhone} \N -727 Kqxfqj \N Dqsigzkq kgftn.7676@udqos.egd +2679975592687 all_genders_avatar.png 2026-04-14 16:11:34.606234 2026-04-14 16:11:34.606234 2 {mobilePhone} \N -728 Sorq \N \N sttrq.twkqiodo@udqos.egd @Mtwkq7775 all_genders_avatar.png 2026-04-14 16:11:34.791469 2026-04-14 16:11:34.791469 2 {mobilePhone} \N -729 Uökqf \N Aüustk ugtkqf.axtustk@udb.rt +2670185975771 all_genders_avatar.png 2026-04-14 16:11:34.935125 2026-04-14 16:11:34.935125 2 {mobilePhone} \N -730 Doeiqts \N Uxtkof doatbuxtkof@udqos.egd 570100240320 all_genders_avatar.png 2026-04-14 16:11:35.014159 2026-04-14 16:11:35.014159 2 {mobilePhone} \N -731 Sqxkéf \N Astolz sqxktfastolz777@udqos.egd +2670191665188 all_genders_avatar.png 2026-04-14 16:11:35.100603 2026-04-14 16:11:35.100603 2 {mobilePhone} \N -732 Lghiot \N Vofyotsr-Hxlz lghiot.vh3550@udqos.egd +26 7935 6581258 all_genders_avatar.png 2026-04-14 16:11:35.148649 2026-04-14 16:11:35.148649 2 {mobilePhone} \N -733 Dqzztg \N \N eqzzqwsqea@udqos.egd +26 70180431386 all_genders_avatar.png 2026-04-14 16:11:35.242927 2026-04-14 16:11:35.242927 2 {mobilePhone} \N -734 Htuun \N \N htuunixuitl809@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:35.304043 2026-04-14 16:11:35.304043 2 {mobilePhone} \N -735 Koeeqkrg \N \N kkoeiqkrl50@igzdqos.egd +26 702 0835460 all_genders_avatar.png 2026-04-14 16:11:35.33212 2026-04-14 16:11:35.33212 2 {mobilePhone} \N -736 Ltfnq \N \N qkltfoo.zgslzoagc@fttr2rttr.gku 579333043179 all_genders_avatar.png 2026-04-14 16:11:35.382511 2026-04-14 16:11:35.382511 2 {mobilePhone} \N -737 Aqziqkofq \N Zozzts aqziqkofq.zozzts@leotfetlhg.yk +267180475511 / @azfwx all_genders_avatar.png 2026-04-14 16:11:35.478689 2026-04-14 16:11:35.478689 2 {mobilePhone} \N -738 Qsqlrqok \N DqeStgr zortvqztk27556@dt.egd 57043818749 all_genders_avatar.png 2026-04-14 16:11:35.558954 2026-04-14 16:11:35.558954 2 {mobilePhone} \N -739 Ctkgfoeq \N Dqozkt dqozkt.ctkgfoeq@udqos.egd 267188031581 all_genders_avatar.png 2026-04-14 16:11:35.61494 2026-04-14 16:11:35.61494 2 {mobilePhone} \N -740 Rtffol \N Vtfrz rtffolvtfrz8@oesgxr.egd 55267073511817 all_genders_avatar.png 2026-04-14 16:11:35.702661 2026-04-14 16:11:35.702661 2 {mobilePhone} \N -741 Lofq \N Dqidggro lofq.dqidggro.el@udqos.egd 579045630135 all_genders_avatar.png 2026-04-14 16:11:35.770355 2026-04-14 16:11:35.770355 2 {mobilePhone} \N -742 Qrtsoft \N \N qrtsoftyc@hglztg.rt QrtsoftTdosn all_genders_avatar.png 2026-04-14 16:11:35.89494 2026-04-14 16:11:35.89494 2 {mobilePhone} \N -743 Ckxliof \N \N ckxliof46@udqos.egd z.dt/Ckxliof all_genders_avatar.png 2026-04-14 16:11:35.970551 2026-04-14 16:11:35.970551 2 {mobilePhone} \N -744 Pxsotzzt \N Dtnllgffotk pxsotzztdtllg@udqos.egd +88013921405 all_genders_avatar.png 2026-04-14 16:11:36.042305 2026-04-14 16:11:36.042305 2 {mobilePhone} \N -745 Dosqr \N Dqporo dqporodosqr810@udqos.egd +26 701 48243104 all_genders_avatar.png 2026-04-14 16:11:36.143268 2026-04-14 16:11:36.143268 2 {mobilePhone} \N -746 Qniqd \N Pqz qspqzqniqd@udqos.egd 570199281311 all_genders_avatar.png 2026-04-14 16:11:36.353959 2026-04-14 16:11:36.353959 2 {mobilePhone} \N -747 Iqliqqd \N Qidtr dgssotsqctkn@soct.eg.xa ‭+82170800962‬ all_genders_avatar.png 2026-04-14 16:11:36.488165 2026-04-14 16:11:36.488165 2 {mobilePhone} \N -748 Ofukor \N Iqkrn ukorgx.89@igzdqos.yk +88 108388550 all_genders_avatar.png 2026-04-14 16:11:36.69583 2026-04-14 16:11:36.69583 2 {mobilePhone} \N -749 LqattfqZqsqz \N \N qnqqspq366@udqos.egd +26 7180287367 all_genders_avatar.png 2026-04-14 16:11:36.787607 2026-04-14 16:11:36.787607 2 {mobilePhone} \N -750 Qsoq \N Qwrtsiqdor qsoq.dqkmgxa@igzdqos.egd 57131182756 all_genders_avatar.png 2026-04-14 16:11:36.871177 2026-04-14 16:11:36.871177 2 {mobilePhone} \N -751 Fosxyqkaigf \N Qaospgfgcq fqaospqfgcq@udqos.egd 579081142184 all_genders_avatar.png 2026-04-14 16:11:36.96647 2026-04-14 16:11:36.96647 2 {mobilePhone} \N -752 RTFOM \N LEIXSMT rtfom.leixsmt@udqos.egd 579657875711 all_genders_avatar.png 2026-04-14 16:11:37.142479 2026-04-14 16:11:37.142479 2 {mobilePhone} \N -753 Fouts \N Vqsegz fgkygsaqfright@oesgxr.egd 579797670093 all_genders_avatar.png 2026-04-14 16:11:37.236442 2026-04-14 16:11:37.236442 2 {mobilePhone} \N -754 mtnfth \N \N mtnfthlqzok89@udqos.egd +2679352486813 all_genders_avatar.png 2026-04-14 16:11:37.344925 2026-04-14 16:11:37.344925 2 {mobilePhone} \N -755 Lqsqvx \N gsqvxfdo lqga3576@nqigg.egd +3824593328362 all_genders_avatar.png 2026-04-14 16:11:37.769024 2026-04-14 16:11:37.769024 2 {mobilePhone} \N -756 Ltccqs \N Dokiqf ltccqs.dokiqf@udqos.egd 579093657036 all_genders_avatar.png 2026-04-14 16:11:37.847707 2026-04-14 16:11:37.847707 2 {mobilePhone} \N -757 Ustw \N \N ustwdqk3557@udqos.egd @ustwdqkof all_genders_avatar.png 2026-04-14 16:11:37.924577 2026-04-14 16:11:37.924577 2 {mobilePhone} \N -758 Osqf \N Vggrvqkr dk.pgftl709@udqos.egd +88157227610 gk @ngsg730 all_genders_avatar.png 2026-04-14 16:11:38.019237 2026-04-14 16:11:38.019237 2 {mobilePhone} \N -759 Pglthioft \N Rkqhtk pglthioft.rkqhtk@udqos.egd 57188145909 all_genders_avatar.png 2026-04-14 16:11:38.122444 2026-04-14 16:11:38.122444 2 {mobilePhone} \N -760 Fqzqsoq \N Egflzqfzof fqzqsoqzegflzqfzof@udqos.egd +26 701 45098539 all_genders_avatar.png 2026-04-14 16:11:38.234955 2026-04-14 16:11:38.234955 2 {mobilePhone} \N -761 Qfrktql \N Fotsltf utnltkj@udqos.egd 579334585066 all_genders_avatar.png 2026-04-14 16:11:38.286421 2026-04-14 16:11:38.286421 2 {mobilePhone} \N -762 Wkggp \N \N wkggpntdtf@udqos.egd 570125960096 all_genders_avatar.png 2026-04-14 16:11:38.359931 2026-04-14 16:11:38.359931 2 {mobilePhone} \N -763 Qdof \N Kqlizo qdof.dfk@udqos.egd +2679794407794 all_genders_avatar.png 2026-04-14 16:11:38.491868 2026-04-14 16:11:38.491868 2 {mobilePhone} \N -764 Woutz \N Xsxzqş woutzxsxzql61@udqos.egd 570138176483 all_genders_avatar.png 2026-04-14 16:11:38.584257 2026-04-14 16:11:38.584257 2 {mobilePhone} \N -765 Qrqd \N Aiqoqxko aiqnkoqrqd313958@udqos.egd +26 718 2228160 all_genders_avatar.png 2026-04-14 16:11:38.674489 2026-04-14 16:11:38.674489 2 {mobilePhone} \N -766 zükaqf \N rtdokrqu zxkaqfrtdokrqugyyoeoqs@udqos.egd 70181689382 all_genders_avatar.png 2026-04-14 16:11:38.805487 2026-04-14 16:11:38.805487 2 {mobilePhone} \N -767 Owziqs \N Iqfqyo owziqs.iqfqyo@udqos.egd +26 7971 2193206 all_genders_avatar.png 2026-04-14 16:11:38.949392 2026-04-14 16:11:38.949392 2 {mobilePhone} \N -768 Nqseof \N \N nqseof@tkstwstwoeo.ftz 579915325890 all_genders_avatar.png 2026-04-14 16:11:38.999853 2026-04-14 16:11:38.999853 2 {mobilePhone} \N -1341 Coezgk \N Dqkzofl hgugcgp698@lobghsxl.egd 73822910465 \N 2026-04-15 14:28:24.862014 2026-04-15 14:28:24.862014 152 {mobilePhone} \N -769 Dxzqiqk \N Iqfoyo dxzqiqk.iqfoyo@udqos.egd +26 704 2865068 all_genders_avatar.png 2026-04-14 16:11:39.150528 2026-04-14 16:11:39.150528 8 {mobilePhone} \N -770 Qdtsot \N Kotrtlts qdtsot-kotrtlts@vtw.rt 579775065422 all_genders_avatar.png 2026-04-14 16:11:39.207481 2026-04-14 16:11:39.207481 2 {mobilePhone} \N -771 Fofq \N Sozat fsozat@dt.egd 570147712280 all_genders_avatar.png 2026-04-14 16:11:39.272023 2026-04-14 16:11:39.272023 2 {mobilePhone} \N -772 Ysgkq \N Vossoqdl ysgkqvossoqdl746@udqos.egd +2679727340440 all_genders_avatar.png 2026-04-14 16:11:39.403136 2026-04-14 16:11:39.403136 2 {mobilePhone} \N -773 Dostfq \N Dqngkrgdg dostfq.dqngkrgdg@igzdqos.egd +267073022763 all_genders_avatar.png 2026-04-14 16:11:39.46258 2026-04-14 16:11:39.46258 2 {mobilePhone} \N -774 tssq \N lzgft tssqykqfetleqlzgft@udqos.egd 570187797660 all_genders_avatar.png 2026-04-14 16:11:39.539977 2026-04-14 16:11:39.539977 2 {mobilePhone} \N -775 Dgiqddqr \N Iqllqf d.liqvan.iqllqf@udqos.egd 579332745053 all_genders_avatar.png 2026-04-14 16:11:39.608468 2026-04-14 16:11:39.608468 2 {mobilePhone} \N -776 Dqkoaq \N \N dqklqcnei@udqos.egd dqklqcnei all_genders_avatar.png 2026-04-14 16:11:39.690134 2026-04-14 16:11:39.690134 2 {mobilePhone} \N -777 Qidqr \N Wqarqr wqarqr.rt@udqos.egd 552679089918938 all_genders_avatar.png 2026-04-14 16:11:39.798506 2026-04-14 16:11:39.798506 2 {mobilePhone} \N -778 Qanq \N Zxukqf qanqrtfomzxukqf@udqos.egd 55267060274022 all_genders_avatar.png 2026-04-14 16:11:39.865085 2026-04-14 16:11:39.865085 2 {mobilePhone} \N -779 Fuvt \N Pgkrqf fuvtwqstwq738@udqos.egd +88159093996 all_genders_avatar.png 2026-04-14 16:11:39.950616 2026-04-14 16:11:39.950616 2 {mobilePhone} \N -780 Qfmitsq \N \N qfutsq.mqnetcq@igzdqos.egd 57061676497 all_genders_avatar.png 2026-04-14 16:11:40.123972 2026-04-14 16:11:40.123972 2 {mobilePhone} \N -781 QDTRT \N FONGFUTKT qdtrt.fongfutkt@udqos.egd +267157954587 all_genders_avatar.png 2026-04-14 16:11:40.170962 2026-04-14 16:11:40.170962 2 {mobilePhone} \N -782 Yqwotfft \N Wxeiftk yqwotfft.wefk@udqos.egd +2679796288659 all_genders_avatar.png 2026-04-14 16:11:40.336147 2026-04-14 16:11:40.336147 2 {mobilePhone} \N -783 Csqrnlsqcq \N \N csqrqitaqs@udqos.egd 570101328233 all_genders_avatar.png 2026-04-14 16:11:40.398159 2026-04-14 16:11:40.398159 2 {mobilePhone} \N -784 Aqkolidq \N \N aqkolidqwixuxs@udqos.egd +26 793 52876475 all_genders_avatar.png 2026-04-14 16:11:40.478915 2026-04-14 16:11:40.478915 2 {mobilePhone} \N -785 Dqfqk \N Wqliqqow dqfqkwqliqqow@udqos.egd +26 706 2784058 all_genders_avatar.png 2026-04-14 16:11:40.560233 2026-04-14 16:11:40.560233 9 {mobilePhone} \N -786 Kqfagw \N \N kqfagc7617@udqos.egd 570135898067 all_genders_avatar.png 2026-04-14 16:11:40.690084 2026-04-14 16:11:40.690084 2 {mobilePhone} \N -787 Aiqstr \N \N atkrpqaiqstr3@udqos.egd 5114733005 all_genders_avatar.png 2026-04-14 16:11:40.7661 2026-04-14 16:11:40.7661 2 {mobilePhone} \N -788 kgxqo \N oietft kgxqorioakqoietft@udqos.egd 5161206748 all_genders_avatar.png 2026-04-14 16:11:40.926123 2026-04-14 16:11:40.926123 2 {mobilePhone} \N -789 Dqknfq \N \N kqrg2aq3575@udqos.egd *267096058930 all_genders_avatar.png 2026-04-14 16:11:41.094924 2026-04-14 16:11:41.094924 2 {mobilePhone} \N -790 Qdok \N Utkqfdqnti qdok.i.utkqfdqnti@udqos.egd 579040857152 all_genders_avatar.png 2026-04-14 16:11:41.180929 2026-04-14 16:11:41.180929 2 {mobilePhone} \N -791 Tdok \N Tkeqf tdokhtfrkqugf@udqos.egd 570142467270 all_genders_avatar.png 2026-04-14 16:11:41.302956 2026-04-14 16:11:41.302956 2 {mobilePhone} \N -792 Ptffn \N Moddtkdqff moddtkdqff.ptffn.7@vtw.rt 570190485173 (o qd fgz gyztf gf ztstukqd) all_genders_avatar.png 2026-04-14 16:11:41.371444 2026-04-14 16:11:41.371444 2 {mobilePhone} \N -793 Dqkot \N Aqoltk dqkot.w.aqoltk@hglztg.rt 57062485110 all_genders_avatar.png 2026-04-14 16:11:41.463358 2026-04-14 16:11:41.463358 2 {mobilePhone} \N -794 Qfo \N \N qffotwqkwqaqrmt@udqos.egd +267157277192 all_genders_avatar.png 2026-04-14 16:11:41.541573 2026-04-14 16:11:41.541573 2 {mobilePhone} \N -795 Ykqfetleq \N Iqkkolgf ykqfetleq_iqkkolgf@igzdqos.eg.xa 57082314085 all_genders_avatar.png 2026-04-14 16:11:41.617353 2026-04-14 16:11:41.617353 2 {mobilePhone} \N -796 Ирина \N \N okofqgstu5378@udqos.egd 579398312540 all_genders_avatar.png 2026-04-14 16:11:41.694235 2026-04-14 16:11:41.694235 2 {mobilePhone} \N -797 Gstfq \N Qckqdtfag stfqqckqdtfag@udqos.egd 57021119187 all_genders_avatar.png 2026-04-14 16:11:41.74218 2026-04-14 16:11:41.74218 2 {mobilePhone} \N -798 Qltfq \N Nqmroe ugaet.nqmroe@udqos.egd 70100417963 all_genders_avatar.png 2026-04-14 16:11:41.805013 2026-04-14 16:11:41.805013 2 {mobilePhone} \N -799 Tilqf \N Qsoqwqro tilqf.t.qsoqwqro@udqos.egd 57187306677 all_genders_avatar.png 2026-04-14 16:11:41.87335 2026-04-14 16:11:41.87335 2 {mobilePhone} \N -800 Ixwtkz \N Sqxfgol ixwtkz.sqxfgol@leotfetlhg.yk +88 0 43 46 16 89 all_genders_avatar.png 2026-04-14 16:11:41.956823 2026-04-14 16:11:41.956823 2 {mobilePhone} \N -801 Zitgrgkt \N Tcqfl zpretcqfl@udqos.egd +2670138089907 all_genders_avatar.png 2026-04-14 16:11:42.048612 2026-04-14 16:11:42.048612 2 {mobilePhone} \N -802 Dqmoqk \N \N dqmoqk.dgdtfoo@udqos.egd 570118837457 all_genders_avatar.png 2026-04-14 16:11:42.185331 2026-04-14 16:11:42.185331 2 {mobilePhone} \N -803 Qxlzof \N Eiqlt qxlzoflnrftneiqlt@oesgxr.egd QxlzofEiqlt all_genders_avatar.png 2026-04-14 16:11:42.340066 2026-04-14 16:11:42.340066 2 {mobilePhone} \N -804 Ugsmqk \N Qztyo qztyougsmqk@udqos.egd +88014888078 all_genders_avatar.png 2026-04-14 16:11:42.435975 2026-04-14 16:11:42.435975 2 {mobilePhone} \N -805 Iqrttk \N Iqllqf iqrttk.itliqd62@igzdqos.egd 57044536799 all_genders_avatar.png 2026-04-14 16:11:42.512547 2026-04-14 16:11:42.512547 2 {mobilePhone} \N -806 Itliqd \N Tsaqliqli iteiqd_qrts@igzdqos.egd +267048565138 all_genders_avatar.png 2026-04-14 16:11:42.599277 2026-04-14 16:11:42.599277 2 {mobilePhone} \N -807 Qidtr \N \N qidtr366744@udqos.egd 579041812665 all_genders_avatar.png 2026-04-14 16:11:42.688654 2026-04-14 16:11:42.688654 2 {mobilePhone} \N -808 Tddq \N Hkmnwossq hkmnwossq.tddq@udqos.egd Oflzq tddq.dosqq all_genders_avatar.png 2026-04-14 16:11:42.78375 2026-04-14 16:11:42.78375 2 {mobilePhone} \N -809 Zqfpq \N Zolltf zqfpq.zolltf@udqos.egd 579356262990 all_genders_avatar.png 2026-04-14 16:11:42.83737 2026-04-14 16:11:42.83737 2 {mobilePhone} \N -810 Sqxkq \N Lzxistk sqxkq.lzxistk64@udqos.egd +2671560991600 all_genders_avatar.png 2026-04-14 16:11:42.951791 2026-04-14 16:11:42.951791 2 {mobilePhone} \N -811 Gstfq \N Ldtzqfofq g.ldtzqfaq@oesgxr.egd @g_ldtzqfaq all_genders_avatar.png 2026-04-14 16:11:43.028946 2026-04-14 16:11:43.028946 2 {mobilePhone} \N -812 Fqpdti \N Yqkiqroqf fqpdtiyqkiqroqf838@nqigg.egd 570142578013 all_genders_avatar.png 2026-04-14 16:11:43.148173 2026-04-14 16:11:43.148173 2 {mobilePhone} \N -1352 Cgsxfzttk \N Fttr2Rttr \N \N \N 2026-04-20 13:51:46.335674 2026-04-20 13:51:46.335674 \N {mobilePhone} \N -813 Yqkqrof \N Qlsofqlqw yqkrofqlsofqlqw@nqigg.rt 570137168661 all_genders_avatar.png 2026-04-14 16:11:43.212211 2026-04-14 16:11:43.212211 2 {mobilePhone} \N -814 Nqlloft \N Wtsqd wtsqdnqlloft@udqos.egd 55868240429383 all_genders_avatar.png 2026-04-14 16:11:43.277729 2026-04-14 16:11:43.277729 2 {mobilePhone} \N -815 Qkzxkg \N Ysgkog ysgkogqkzxkg@udqos.egd +26 704677 4807 all_genders_avatar.png 2026-04-14 16:11:43.378515 2026-04-14 16:11:43.378515 2 {mobilePhone} \N -816 Lqkqi \N Sotrzat lqk.sotrzat@udqos.egd 57003642585 all_genders_avatar.png 2026-04-14 16:11:43.460533 2026-04-14 16:11:43.460533 2 {mobilePhone} \N -817 Qklionqi \N Agzgvqkgg qklionqiagzgvqkgg@udqos.egd +26 70111121100 all_genders_avatar.png 2026-04-14 16:11:43.551395 2026-04-14 16:11:43.551395 2 {mobilePhone} \N -818 Iqkggf \N \N lqntriqkggflqrqz@igzdqos.egd +2670102163691 all_genders_avatar.png 2026-04-14 16:11:43.639953 2026-04-14 16:11:43.639953 2 {mobilePhone} \N -819 Lztyqfoq \N \N lztyq.wqwqoqfzl@udqos.egd 57099622132 all_genders_avatar.png 2026-04-14 16:11:43.720618 2026-04-14 16:11:43.720618 2 {mobilePhone} \N -820 Ltsdq \N Tkrgğrx ltsdqfxktkrgurx@udqos.egd +26 701 13738883 all_genders_avatar.png 2026-04-14 16:11:43.831882 2026-04-14 16:11:43.831882 2 {mobilePhone} \N -821 Dgiqfqr \N Dqwkgxa dgiqfqr.dqwkgxa@udqos.egd +2679975125789 all_genders_avatar.png 2026-04-14 16:11:43.98925 2026-04-14 16:11:43.98925 2 {mobilePhone} \N -822 Esqxroq \N Mqhqzq esqxroqmqhqzqhgfet@udqos.egd 579087117065 all_genders_avatar.png 2026-04-14 16:11:44.04256 2026-04-14 16:11:44.04256 2 {mobilePhone} \N -823 Lzthiqfot \N Sxfr lzthsxfr@udqos.egd 579338269993 all_genders_avatar.png 2026-04-14 16:11:44.136416 2026-04-14 16:11:44.136416 2 {mobilePhone} \N -824 Quqzit \N Sqfrts quqzit.sqfrts7@igzdqos.yk +88101756707 all_genders_avatar.png 2026-04-14 16:11:44.188741 2026-04-14 16:11:44.188741 2 {mobilePhone} \N -825 Pxsoq \N Lmqwg pxsoqsxeqlmqwg@udqos.egd 55851603156255 all_genders_avatar.png 2026-04-14 16:11:44.245993 2026-04-14 16:11:44.245993 2 {mobilePhone} \N -826 Dr \N Olsqd qkliqr.xadqos@udqos.egd +267068293324 all_genders_avatar.png 2026-04-14 16:11:44.351021 2026-04-14 16:11:44.351021 2 {mobilePhone} \N -827 Lzqfolsql \N Eitlfgn eitlfgn.lzqfolsql@udqos.egd +88183913255 all_genders_avatar.png 2026-04-14 16:11:44.509844 2026-04-14 16:11:44.509844 2 {mobilePhone} \N -828 Sosooq \N Gmiqktclaq h.sos2oa@udqos.egd +845609021034 all_genders_avatar.png 2026-04-14 16:11:44.61212 2026-04-14 16:11:44.61212 2 {mobilePhone} \N -829 Gofqdg \N \N gofq.litk@udqos.egd +2670101275852 all_genders_avatar.png 2026-04-14 16:11:44.66805 2026-04-14 16:11:44.66805 2 {mobilePhone} \N -830 Tsolq \N \N tsolq.yqegfrofo.69@udqos.egd 55868267775427 all_genders_avatar.png 2026-04-14 16:11:44.744961 2026-04-14 16:11:44.744961 2 {mobilePhone} \N -831 Qqkgf \N Vgtlzt qpvgtlzt@udqos.egd 579380104290 all_genders_avatar.png 2026-04-14 16:11:44.859976 2026-04-14 16:11:44.859976 2 {mobilePhone} \N -832 Qfrkol \N Wkqtxtk qfrowkqtxtk73@udqos.egd +26 713 9845795 all_genders_avatar.png 2026-04-14 16:11:44.987287 2026-04-14 16:11:44.987287 2 {mobilePhone} \N -833 qffq \N \N qffwkozcofq@udqos.egd 26 709 4075174 all_genders_avatar.png 2026-04-14 16:11:45.114153 2026-04-14 16:11:45.114153 2 {mobilePhone} \N -834 Doaq \N \N doaq.yxudqff@udqos.egd 5715 060 9903 all_genders_avatar.png 2026-04-14 16:11:45.19959 2026-04-14 16:11:45.19959 2 {mobilePhone} \N -835 Qufotlmaq \N Hoteifoa hoteifoaqufotlmaq@udqos.egd 5524112947275 all_genders_avatar.png 2026-04-14 16:11:45.291409 2026-04-14 16:11:45.291409 2 {mobilePhone} \N -836 Miqfé \N Inszgf miqft-inszgf7662@igzdqos.eg.xa 57082589232 all_genders_avatar.png 2026-04-14 16:11:45.378944 2026-04-14 16:11:45.378944 2 {mobilePhone} \N -837 Zqsoq \N Nüets zqsoznxets@udqos.egd 570143552951 @Zqsoqnes all_genders_avatar.png 2026-04-14 16:11:45.441622 2026-04-14 16:11:45.441622 2 {mobilePhone} \N -838 Lansqk \N Lzkqfut cotffqlansqk@nqigg.egd +2679097717796 all_genders_avatar.png 2026-04-14 16:11:45.595578 2026-04-14 16:11:45.595578 2 {mobilePhone} \N -839 Qnq \N Rgxwq qnqrgxwq@udqos.egd Wqqzqqzqq all_genders_avatar.png 2026-04-14 16:11:45.668411 2026-04-14 16:11:45.668411 2 {mobilePhone} \N -840 Uogkuoq \N \N uogkuoq.jxqkzqkgso7@udqos.egd 55267158897150 all_genders_avatar.png 2026-04-14 16:11:45.738751 2026-04-14 16:11:45.738751 2 {mobilePhone} \N -841 Dgfoeq \N Gwtkleitsh dgfoeq.gwtkleitsh@vtw.rt 579659328425 all_genders_avatar.png 2026-04-14 16:11:45.792094 2026-04-14 16:11:45.792094 2 {mobilePhone} \N -842 Pqldofq \N \N nqldofq.iqrpolzgnqfgcq@udqos.egd +896644696873 all_genders_avatar.png 2026-04-14 16:11:45.861612 2026-04-14 16:11:45.861612 2 {mobilePhone} \N -843 Eiqksgzzt \N Ugxrgxftob eiqksgzzt.ugxrgxftob@nqigg.yk +88003797721 all_genders_avatar.png 2026-04-14 16:11:45.93093 2026-04-14 16:11:45.93093 2 {mobilePhone} \N -844 mitfpq \N \N ytnus.ph@udqos.egd 579737861341 all_genders_avatar.png 2026-04-14 16:11:46.035552 2026-04-14 16:11:46.035552 2 {mobilePhone} \N -845 Sqxkq \N \N sqxkq.roqmdqkxuqf@udqos.egd 55267052644858 all_genders_avatar.png 2026-04-14 16:11:46.088912 2026-04-14 16:11:46.088912 2 {mobilePhone} \N -846 qffq \N \N aqmqkofq.qffq371@udqos.egd +26 701 29192873 all_genders_avatar.png 2026-04-14 16:11:46.136077 2026-04-14 16:11:46.136077 2 {mobilePhone} \N -847 Qlistoui \N Viozt lgxzi_qli@igzdqos.eg.xa 570128332868 all_genders_avatar.png 2026-04-14 16:11:46.303604 2026-04-14 16:11:46.303604 2 {mobilePhone} \N -848 Sícoq \N Kgdãg socoqkdqetrg7@udqos.egd +2670184421023 all_genders_avatar.png 2026-04-14 16:11:46.365664 2026-04-14 16:11:46.365664 2 {mobilePhone} \N -849 Fxkorrof \N \N lqorgcfxkorrof@udqos.egd +267023873147 all_genders_avatar.png 2026-04-14 16:11:46.443067 2026-04-14 16:11:46.443067 2 {mobilePhone} \N -850 Kqyqts \N Eqkrglg kqyqtseqkrglg.tdqos@udqos.egd 570190413917 all_genders_avatar.png 2026-04-14 16:11:46.571375 2026-04-14 16:11:46.571375 2 {mobilePhone} \N -851 Koeqkrg \N Uqkeoq koeqkrgugfmqstmuqk@udqos.egd +2679089737276 all_genders_avatar.png 2026-04-14 16:11:46.668074 2026-04-14 16:11:46.668074 2 {mobilePhone} \N -852 Uoxsoq \N \N uoxsoq_mqfoftsso@igzdqos.oz 5586 8264428773 all_genders_avatar.png 2026-04-14 16:11:46.727007 2026-04-14 16:11:46.727007 2 {mobilePhone} \N -853 Utxdqi \N Stt kfqalsqa@udqos.egd +2670183969314 all_genders_avatar.png 2026-04-14 16:11:46.796753 2026-04-14 16:11:46.796753 2 {mobilePhone} \N -854 Kgsq \N Iqddqr kgsq.iqddqr@nqigg.rt 570145860928 all_genders_avatar.png 2026-04-14 16:11:46.856514 2026-04-14 16:11:46.856514 2 {mobilePhone} \N -855 Lghiot \N Okztfaqxy lghiot.okztfaqxy@xfo-tkyxkz.rt 570175479293 all_genders_avatar.png 2026-04-14 16:11:46.916884 2026-04-14 16:11:46.916884 2 {mobilePhone} \N -856 Pqft \N Lqnftk pleewtksof@udqos.egd 55267181347786 all_genders_avatar.png 2026-04-14 16:11:46.978452 2026-04-14 16:11:46.978452 2 {mobilePhone} \N -857 Yktrtkoat \N Itsdat yktrtkoat.itsdat@vtw.rt 579396909332 all_genders_avatar.png 2026-04-14 16:11:47.113937 2026-04-14 16:11:47.113937 2 {mobilePhone} \N -858 Dxzqiqk \N Iqfoyo dxzqiqk.iqfoyo@udqos.egd +2679088224692 all_genders_avatar.png 2026-04-14 16:11:47.175423 2026-04-14 16:11:47.175423 8 {mobilePhone} \N -859 Rohzio \N Eiqeag eigasgzo1@udqos.egd 579336926876 all_genders_avatar.png 2026-04-14 16:11:47.246234 2026-04-14 16:11:47.246234 10 {mobilePhone} \N -860 Uoqrq \N Dqfoleqseg dqfoleqseguoqrq@udqos.egd 57004010106 all_genders_avatar.png 2026-04-14 16:11:47.330373 2026-04-14 16:11:47.330373 11 {mobilePhone} \N -861 sqxkq \N eqlzosg sqxkqkqjxtseql@udqos.egd 579005381737 all_genders_avatar.png 2026-04-14 16:11:47.467551 2026-04-14 16:11:47.467551 2 {mobilePhone} \N -862 Cqkxmiqf \N Aqkqhtznqf cqkxmiqf.aqkqhtznqf38@udqos.egd +2670102652024 all_genders_avatar.png 2026-04-14 16:11:47.53241 2026-04-14 16:11:47.53241 2 {mobilePhone} \N -863 Ptffoytk \N \N dttzptffn33@nqigg.egd 57970 9867315 all_genders_avatar.png 2026-04-14 16:11:47.632058 2026-04-14 16:11:47.632058 12 {mobilePhone} \N -864 Qluqko \N \N kgbqqluiqko@udqos.egd 57181346173 all_genders_avatar.png 2026-04-14 16:11:47.713269 2026-04-14 16:11:47.713269 13 {mobilePhone} \N -865 Itstfq \N Ugsrtktk itstfqugsrtktk@udb.rt 579086277547 all_genders_avatar.png 2026-04-14 16:11:47.828033 2026-04-14 16:11:47.828033 14 {mobilePhone} \N -866 Qnq \N Dgi qnq.tknqfo@udqos.egd 579738700476 all_genders_avatar.png 2026-04-14 16:11:47.98534 2026-04-14 16:11:47.98534 15 {mobilePhone} \N -867 Pgléhioft \N Cozqsol pglthioft.cozqsol@ohx-wtksof.rt 57183193895 all_genders_avatar.png 2026-04-14 16:11:48.066392 2026-04-14 16:11:48.066392 16 {mobilePhone} \N -868 Osnq \N \N ytlztsgjj@udqos.egd z.dt/ytlztsg all_genders_avatar.png 2026-04-14 16:11:48.272592 2026-04-14 16:11:48.272592 17 {mobilePhone} \N -869 gk \N \N gkaqof@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:48.431157 2026-04-14 16:11:48.431157 2 {mobilePhone} \N -870 Qkoqffq \N Htzkxsso htzkxsso.qko@udqos.egd +2670135680607 all_genders_avatar.png 2026-04-14 16:11:48.487687 2026-04-14 16:11:48.487687 18 {mobilePhone} \N -871 Aqziknf \N Ugkdqf aqziknfdqktt000@udqos.egd 7037120008 all_genders_avatar.png 2026-04-14 16:11:48.587699 2026-04-14 16:11:48.587699 19 {mobilePhone} \N -872 Qmésoft \N Wgxeitk qmtsoft.wgxeitk@zxzqfgzq.egd 79975014393 all_genders_avatar.png 2026-04-14 16:11:48.670968 2026-04-14 16:11:48.670968 20 {mobilePhone} \N -873 Qsomt \N Xfqs rtfom.qsomt@igzdqos.egd 579082420614 all_genders_avatar.png 2026-04-14 16:11:48.796725 2026-04-14 16:11:48.796725 21 {mobilePhone} \N -874 Tstfq \N Hgeioflaqoq t.hgeioflaqpq@udqos.egd +2679090678103 all_genders_avatar.png 2026-04-14 16:11:48.997404 2026-04-14 16:11:48.997404 22 {mobilePhone} \N -875 Fuxntf \N Aigq vtqayxfzodtyktrrn358@udqos.egd +26 718 3698400 all_genders_avatar.png 2026-04-14 16:11:49.26207 2026-04-14 16:11:49.26207 23 {mobilePhone} \N -876 Ugadtf \N Gm ugadtfgm46@udqos.egd +2671563254208 all_genders_avatar.png 2026-04-14 16:11:49.371744 2026-04-14 16:11:49.371744 24 {mobilePhone} \N -877 Qffq \N Ygfzqfofo ygfzqfofoqf@udqos.egd +26 701 34293364 all_genders_avatar.png 2026-04-14 16:11:49.476594 2026-04-14 16:11:49.476594 25 {mobilePhone} \N -878 Ntcitfooq \N Ixwtfag 3875hg@udqos.egd +2679351437736 all_genders_avatar.png 2026-04-14 16:11:49.64351 2026-04-14 16:11:49.64351 26 {mobilePhone} \N -879 Fosuxf \N Lqroa fosufwnkark@udqos.egd 579003043147 all_genders_avatar.png 2026-04-14 16:11:49.743999 2026-04-14 16:11:49.743999 27 {mobilePhone} \N -880 Qfq \N Hqxsq qfqhqxsqmgssoatk@udlos.egd 79337939274 all_genders_avatar.png 2026-04-14 16:11:49.867496 2026-04-14 16:11:49.867496 4 {mobilePhone} \N -881 Wtfpqdof \N Geil wtfpqdof.geil@dqoswgb.gku 57052200363 all_genders_avatar.png 2026-04-14 16:11:49.983674 2026-04-14 16:11:49.983674 28 {mobilePhone} \N -882 Stlsot \N Lqsqmqk stlsot.z.lqsqmqk@udqos.egd +26 718 5551461 all_genders_avatar.png 2026-04-14 16:11:50.068568 2026-04-14 16:11:50.068568 29 {mobilePhone} \N -883 Pgkol \N Hotfofu pgkolhotfofu7666@udqos.egd 579082609678 all_genders_avatar.png 2026-04-14 16:11:50.352907 2026-04-14 16:11:50.352907 30 {mobilePhone} \N -884 Qsoft \N \N stfodgkk@wtffofuzgf.trx +7 873 828 7352 all_genders_avatar.png 2026-04-14 16:11:50.633426 2026-04-14 16:11:50.633426 25 {mobilePhone} \N -885 Xskoat \N Eqkkossg xskoateqkkossg@nqigg.rt 579099978378 all_genders_avatar.png 2026-04-14 16:11:50.931249 2026-04-14 16:11:50.931249 31 {mobilePhone} \N -886 Ptqfftzzt \N Uktctf pyu3737@udqos.egd 57063868320 all_genders_avatar.png 2026-04-14 16:11:51.049341 2026-04-14 16:11:51.049341 32 {mobilePhone} \N -887 Mqwoxssqi \N \N mfggko687@udqos.egd 579378230969 all_genders_avatar.png 2026-04-14 16:11:51.28328 2026-04-14 16:11:51.28328 33 {mobilePhone} \N -888 qidtr \N iqfofg qidrifnfv769@udqos.egd 570133700347 all_genders_avatar.png 2026-04-14 16:11:51.424185 2026-04-14 16:11:51.424185 34 {mobilePhone} \N -889 Hotkkt \N Ktfqkr hotkkt@ktfqkrktfqkr.egd 57087603636 all_genders_avatar.png 2026-04-14 16:11:51.549037 2026-04-14 16:11:51.549037 35 {mobilePhone} \N -890 Lodqs \N \N lodqshqksqa@udqos.egd +267009264553 all_genders_avatar.png 2026-04-14 16:11:51.650584 2026-04-14 16:11:51.650584 36 {mobilePhone} \N -891 Dxrqk \N Zxsqodqz dxrqkzxsodqz7664@udqos.egd +26 701 96110767 all_genders_avatar.png 2026-04-14 16:11:51.790742 2026-04-14 16:11:51.790742 37 {mobilePhone} \N -892 Sosn \N Vqfu sosn.dqnq.vqfu@udqos.egd +2679080322794 all_genders_avatar.png 2026-04-14 16:11:51.886927 2026-04-14 16:11:51.886927 38 {mobilePhone} \N -893 Rqfotst \N Dxldqkkq dxldqkkqr@udqos.egd +2670189953542 all_genders_avatar.png 2026-04-14 16:11:52.035213 2026-04-14 16:11:52.035213 39 {mobilePhone} \N -894 Qffq \N Yozmixui qffqqyozmixui@udqos.egd +72283664509 all_genders_avatar.png 2026-04-14 16:11:52.170768 2026-04-14 16:11:52.170768 40 {mobilePhone} \N -895 Aqksq \N Koeqxkzt ackc36@udqos.egd +26 793 81662472 all_genders_avatar.png 2026-04-14 16:11:52.315186 2026-04-14 16:11:52.315186 41 {mobilePhone} \N -896 Lztyqf \N StYtwckt lztyqfstytwckt@nqigg.egd +26 70114626030 all_genders_avatar.png 2026-04-14 16:11:52.447927 2026-04-14 16:11:52.447927 42 {mobilePhone} \N -897 Lztct \N \N lkkguxt@udqos.egd 99999999999 all_genders_avatar.png 2026-04-14 16:11:52.580273 2026-04-14 16:11:52.580273 42 {mobilePhone} \N -898 Pqfqn \N Lxaaqkoti pqfqnlxaaqkoti@udqos.egd +267138682746 all_genders_avatar.png 2026-04-14 16:11:52.731111 2026-04-14 16:11:52.731111 35 {mobilePhone} \N -899 Qnq \N Psqgxs psqgxsqnq3@udqos.egd +26 702 1272872 all_genders_avatar.png 2026-04-14 16:11:52.880543 2026-04-14 16:11:52.880543 39 {mobilePhone} \N -900 Tsolq \N Ytkkqko t.ytkkqko4376@udqos.egd 579717170938 all_genders_avatar.png 2026-04-14 16:11:53.177058 2026-04-14 16:11:53.177058 17 {mobilePhone} \N -901 Tsoy \N Dxfuqf tsoydxfuqff60@udqos.egd +267136135133 all_genders_avatar.png 2026-04-14 16:11:53.342907 2026-04-14 16:11:53.342907 43 {mobilePhone} \N -902 Qdtsot \N Igkfxfu qdtsot.igkfxfu769@udqos.egd 579086927888 all_genders_avatar.png 2026-04-14 16:11:53.519112 2026-04-14 16:11:53.519112 44 {mobilePhone} \N -903 Rqfots \N Axhytkwtku ra@rqfotsaxhytkwtku.ra 57003249884 all_genders_avatar.png 2026-04-14 16:11:53.614508 2026-04-14 16:11:53.614508 31 {mobilePhone} \N -904 Lghioq \N Zosltf wtptfq3955@udqos.egd @ixowxxxi all_genders_avatar.png 2026-04-14 16:11:53.731605 2026-04-14 16:11:53.731605 45 {mobilePhone} \N -905 Osnql \N \N osnql.uxt@udqos.egd +88197548477 all_genders_avatar.png 2026-04-14 16:11:53.893369 2026-04-14 16:11:53.893369 35 {mobilePhone} \N -906 Ldqkz \N Uqyqk uqyqkldqkz@udqos.egd 79711775223 all_genders_avatar.png 2026-04-14 16:11:54.047071 2026-04-14 16:11:54.047071 46 {mobilePhone} \N -907 Wtkaqn \N Ageqa ageqawtkaqnn@udqos.egd 579093370492 all_genders_avatar.png 2026-04-14 16:11:54.134765 2026-04-14 16:11:54.134765 47 {mobilePhone} \N -908 Qfq \N Esédtfz qfqfoegestdtfz@udqos.egd +88010321053 all_genders_avatar.png 2026-04-14 16:11:54.2707 2026-04-14 16:11:54.2707 48 {mobilePhone} \N -909 Moqr \N Qsdqkquio moqr.dqkquio@igzdqos.egd 570145060244 all_genders_avatar.png 2026-04-14 16:11:54.431841 2026-04-14 16:11:54.431841 49 {mobilePhone} \N -910 Uqkktz \N Uggrixt uqkktzuggrixt@udqos.egd 2657063701198 all_genders_avatar.png 2026-04-14 16:11:54.626432 2026-04-14 16:11:54.626432 25 {mobilePhone} \N -911 Wtfpqdof \N Lqsgf wtfpqdof.lqsgf7@udqos.egd +88119165459 all_genders_avatar.png 2026-04-14 16:11:54.739938 2026-04-14 16:11:54.739938 50 {mobilePhone} \N -912 Sxmoq \N Hsqolqfz sxmohsqolqfz@vtw.rt \N all_genders_avatar.png 2026-04-14 16:11:54.816174 2026-04-14 16:11:54.816174 51 {mobilePhone} \N -913 Ptstfq \N Kolzoe kptstfq3578@udqos.egd 570101379957 all_genders_avatar.png 2026-04-14 16:11:54.989581 2026-04-14 16:11:54.989581 52 {mobilePhone} \N -914 Zqzpqfq \N Liouqosgv liouqosgvz@udqos.egd +2670191036655 all_genders_avatar.png 2026-04-14 16:11:55.122705 2026-04-14 16:11:55.122705 19 {mobilePhone} \N -915 Nqdtf \N Mqqzqko nqdtf.mqqzqko@igzdqos.egd +2670118114379 all_genders_avatar.png 2026-04-14 16:11:55.413896 2026-04-14 16:11:55.413896 53 {mobilePhone} \N -916 Pgqfq \N Qzqwãg pgqfq.qzqwqg@udqos.egd +897673122512 all_genders_avatar.png 2026-04-14 16:11:55.688862 2026-04-14 16:11:55.688862 54 {mobilePhone} \N -917 (Qfqiozq)Yqztdti \N Litnai yqztdt.uitnlqko4141@udqos.egd 79083776659 all_genders_avatar.png 2026-04-14 16:11:55.812848 2026-04-14 16:11:55.812848 55 {mobilePhone} \N -918 lgsdqm \N liqkoqzo lgsdqm.liqkoqzo3@udqos.egd 5701 89471898 all_genders_avatar.png 2026-04-14 16:11:56.018628 2026-04-14 16:11:56.018628 56 {mobilePhone} \N -919 Eikol \N Rkghhq eikol.rkghhq@udqos.egd +2670106482987 all_genders_avatar.png 2026-04-14 16:11:56.144017 2026-04-14 16:11:56.144017 57 {mobilePhone} \N -920 GFXK \N QKOEO qkoeogfxkztlz@udqos.egd +220284623028 all_genders_avatar.png 2026-04-14 16:11:56.351415 2026-04-14 16:11:56.351415 2 {mobilePhone} \N -921 Qxzxdf \N Legzz legzzqxzxdf71@udqos.egd legzzxdf all_genders_avatar.png 2026-04-14 16:11:56.409491 2026-04-14 16:11:56.409491 42 {mobilePhone} \N -922 Aokq \N Sosptuktf aokq.soltkt@udqos.egd +71534588922 all_genders_avatar.png 2026-04-14 16:11:56.560237 2026-04-14 16:11:56.560237 58 {mobilePhone} \N -923 Coezgkoq \N \N coeanvollrgky@udqos.egd +267080820807 all_genders_avatar.png 2026-04-14 16:11:56.731613 2026-04-14 16:11:56.731613 44 {mobilePhone} \N -924 Doq \N Aftmtcoe doqolqwtsqa@udqos.egd +71956211178 all_genders_avatar.png 2026-04-14 16:11:56.878512 2026-04-14 16:11:56.878512 40 {mobilePhone} \N -925 Pqdot \N Rxkqfz pqdotrxkqfz@egsstut.iqkcqkr.trx 170-466-7930 all_genders_avatar.png 2026-04-14 16:11:57.007887 2026-04-14 16:11:57.007887 40 {mobilePhone} \N -926 Dtkeozq \N Wtfpqdof dtkeozqpwtfpqdof@udqos.egd 173995748 all_genders_avatar.png 2026-04-14 16:11:57.115557 2026-04-14 16:11:57.115557 40 {mobilePhone} \N -927 Wqlltd \N Owkqiod wqlltddgiqdtr7662@udqos.egd 70107016835 all_genders_avatar.png 2026-04-14 16:11:57.25143 2026-04-14 16:11:57.25143 59 {mobilePhone} \N -928 Dosq \N Ixtztk ixtztk.dosq@udqos.egd 79792425190 all_genders_avatar.png 2026-04-14 16:11:57.365539 2026-04-14 16:11:57.365539 58 {mobilePhone} \N -929 Lqkq \N Uxsrwkqfrz lqkq.uxsrwkqfrz@udqos.egd +2915074905 all_genders_avatar.png 2026-04-14 16:11:57.493039 2026-04-14 16:11:57.493039 60 {mobilePhone} \N -930 Qidqr \N Qdk dgxkoqdkb@udqos.egd 55267134132638 all_genders_avatar.png 2026-04-14 16:11:57.712615 2026-04-14 16:11:57.712615 61 {mobilePhone} \N -931 Qsqq \N Owkqiod qsqq_owkqiod_@gxzsgga.egd +26 7933 792 729 5 all_genders_avatar.png 2026-04-14 16:11:58.035487 2026-04-14 16:11:58.035487 62 {mobilePhone} \N -932 Mqaoq \N Lggdqxkgg l.mqaoq@hd.dt 579720590131 all_genders_avatar.png 2026-04-14 16:11:58.281232 2026-04-14 16:11:58.281232 18 {mobilePhone} \N -933 Aiqsor \N \N aiqsor.fqlin@udqos.egd 579915355976 all_genders_avatar.png 2026-04-14 16:11:58.448037 2026-04-14 16:11:58.448037 10 {mobilePhone} \N -934 Zigdql \N Rtseiqdwkt rtseiqdwktzigdql@udqos.egd 5583202890997 all_genders_avatar.png 2026-04-14 16:11:58.562177 2026-04-14 16:11:58.562177 63 {mobilePhone} \N -935 Qffq \N Wkggal-Aqlztts qfqwa@hglztg.rt 570184886798 all_genders_avatar.png 2026-04-14 16:11:58.684606 2026-04-14 16:11:58.684606 6 {mobilePhone} \N -936 Nxjofu \N Sto stlsotsto76@udqos.egd 5705 7494733 all_genders_avatar.png 2026-04-14 16:11:58.821818 2026-04-14 16:11:58.821818 64 {mobilePhone} \N -937 \N \N ygbghxlegfftk@udqos.egd \N all_genders_avatar.png 2026-04-14 16:11:58.917442 2026-04-14 16:11:58.917442 2 {mobilePhone} \N -938 Pqldof \N Owkqiod pqldofowkqiod5@udqos.egd +26 7900 8377664 all_genders_avatar.png 2026-04-14 16:11:58.955194 2026-04-14 16:11:58.955194 42 {mobilePhone} \N -939 Pqnqlxknq \N Dgiqf pqnqlxknqdgiqf.32@udqos.egd +26 79975452198 all_genders_avatar.png 2026-04-14 16:11:59.215888 2026-04-14 16:11:59.215888 3 {mobilePhone} \N -940 Lztyqfot \N Dqkjxqkrz lztyqfotdqkjxqkrz@udqos.egd 579004340323 all_genders_avatar.png 2026-04-14 16:11:59.455126 2026-04-14 16:11:59.455126 65 {mobilePhone} \N -941 Fgkq \N Ytkdgk f.ytkdgk@udb.rt 570120857846 all_genders_avatar.png 2026-04-14 16:11:59.614937 2026-04-14 16:11:59.614937 28 {mobilePhone} \N -942 Htztk \N Kostn wwktb@igzdqos.eg.xa 57038416094 all_genders_avatar.png 2026-04-14 16:11:59.757231 2026-04-14 16:11:59.757231 66 {mobilePhone} \N -943 Higtwt \N Wqss higtwt_wqss@igzdqos.egd Hkw_hw all_genders_avatar.png 2026-04-14 16:11:59.894989 2026-04-14 16:11:59.894989 67 {mobilePhone} \N -944 Qffq \N Vosaoflgf qffqsomvosaoflgf@udqos.egd +267046839520 all_genders_avatar.png 2026-04-14 16:12:00.321069 2026-04-14 16:12:00.321069 68 {mobilePhone} \N -945 Hiosohh \N Eiqhagclao eiqhagclao@udqos.egd 579738905533 all_genders_avatar.png 2026-04-14 16:12:00.568242 2026-04-14 16:12:00.568242 69 {mobilePhone} \N -946 Hgsofq \N \N hgsofq.mctmr@udqos.egd 579386927898 all_genders_avatar.png 2026-04-14 16:12:00.753469 2026-04-14 16:12:00.753469 5 {mobilePhone} \N -947 Pxqf \N Uqstqfg pxqfg.jxofgftl@udqos.egd +26 718 9769538 all_genders_avatar.png 2026-04-14 16:12:00.967297 2026-04-14 16:12:00.967297 62 {mobilePhone} \N -948 Qcq \N Zvgiou qcq@sosohqrsowkqkn.gku +72792325711 all_genders_avatar.png 2026-04-14 16:12:01.196968 2026-04-14 16:12:01.196968 25 {mobilePhone} \N -949 Sqalido \N F sqalido4346@udqos.egd 57044725349 all_genders_avatar.png 2026-04-14 16:12:01.539269 2026-04-14 16:12:01.539269 70 {mobilePhone} \N -950 qsoet \N \N qsoet_dqllqd@igzdqos.egd +267024358219 all_genders_avatar.png 2026-04-14 16:12:01.82442 2026-04-14 16:12:01.82442 2 {mobilePhone} \N -951 Dqrtstoft \N Lzthiqf dqrtstoft.lzthiqf@gxzsgga.egd 57977 9330613 all_genders_avatar.png 2026-04-14 16:12:02.333367 2026-04-14 16:12:02.333367 71 {mobilePhone} \N -952 Igo \N Fu qfutsigoeiofu@udqos.egd +26 79093296147 all_genders_avatar.png 2026-04-14 16:12:02.52296 2026-04-14 16:12:02.52296 72 {mobilePhone} \N -953 Dokoqd \N Roqssg dokoqd.dwqsgx@udqos.egd @roq_doko all_genders_avatar.png 2026-04-14 16:12:02.653547 2026-04-14 16:12:02.653547 72 {mobilePhone} \N -954 Dqkuitkozq \N Egfeofq dqkuitkozqtstfqegfeofq@udqos.egd +26 7133009416 all_genders_avatar.png 2026-04-14 16:12:02.915343 2026-04-14 16:12:02.915343 73 {mobilePhone} \N -955 Lqtor \N Wtiwqiqfofoq lwtiw67@udqos.egd 570142672198 all_genders_avatar.png 2026-04-14 16:12:03.184973 2026-04-14 16:12:03.184973 3 {mobilePhone} \N -956 Noyqf \N Miqfu miqfu.yy@igzdqos.egd Uxgwtfbd all_genders_avatar.png 2026-04-14 16:12:03.38842 2026-04-14 16:12:03.38842 18 {mobilePhone} \N -957 Gxwtrq \N \N gxwtrq-qszqstw@gxzsgga.egd 570129131070 all_genders_avatar.png 2026-04-14 16:12:03.549114 2026-04-14 16:12:03.549114 74 {mobilePhone} \N -958 Qatlo \N Qldqi qatlo74.qldqi@udqos.egd 79084004879 all_genders_avatar.png 2026-04-14 16:12:03.902299 2026-04-14 16:12:03.902299 57 {mobilePhone} \N -959 Hqxsoft \N Sotwtf-Ltxzztk hsotwtf@udqos.egd 5705 7211977 all_genders_avatar.png 2026-04-14 16:12:04.045326 2026-04-14 16:12:04.045326 69 {mobilePhone} \N -960 Ykotrkoei \N Utoutk itkk@utoutk.wtksof @Ykotrkoei_Wsf all_genders_avatar.png 2026-04-14 16:12:04.222257 2026-04-14 16:12:04.222257 36 {mobilePhone} \N -961 Pxsoqft \N Wtagx hqlzgkofpxsoqft@qgs.rt 57068453064 all_genders_avatar.png 2026-04-14 16:12:04.320987 2026-04-14 16:12:04.320987 2 {mobilePhone} \N -962 Hqxsoft \N Wkxfofb sqkq.wkxfofb@udb.rt +281052519944 all_genders_avatar.png 2026-04-14 16:12:04.406976 2026-04-14 16:12:04.406976 3 {mobilePhone} \N -963 Stq \N Mtsstk s.mtsstk382@udqos.egd +2679795052117 all_genders_avatar.png 2026-04-14 16:12:04.540582 2026-04-14 16:12:04.540582 40 {mobilePhone} \N -964 Dqkqs \N Cqyqto dq.cqyqto63@udqos.egd 70130296424 all_genders_avatar.png 2026-04-14 16:12:04.759093 2026-04-14 16:12:04.759093 69 {mobilePhone} \N -965 Mxfqokq \N Lorrojxt mxfqokq974@udqos.egd +2679396171285 all_genders_avatar.png 2026-04-14 16:12:04.912451 2026-04-14 16:12:04.912451 75 {mobilePhone} \N -966 Nqliqk \N \N nqq1qqk@udqos.egd 552679092536797 all_genders_avatar.png 2026-04-14 16:12:05.095675 2026-04-14 16:12:05.095675 76 {mobilePhone} \N -967 Sqosq \N Yqagko sqosq.yqagkn@udqos.egd 570127099224 all_genders_avatar.png 2026-04-14 16:12:05.31124 2026-04-14 16:12:05.31124 77 {mobilePhone} \N -968 Ustfrq \N Kgdqfg ustfrq.fqgl64@udqos.egd +86 887 200 8232 all_genders_avatar.png 2026-04-14 16:12:05.467036 2026-04-14 16:12:05.467036 31 {mobilePhone} \N -969 Pgltyoft \N Qswkteiz pgltyoft.qswkteiz@hglztg.rt 57186349874 all_genders_avatar.png 2026-04-14 16:12:05.581418 2026-04-14 16:12:05.581418 47 {mobilePhone} \N -970 Ngqffq \N Nqfagcq ngqffqnqfagcq3555@udqos.egd 579357545406 all_genders_avatar.png 2026-04-14 16:12:05.708998 2026-04-14 16:12:05.708998 70 {mobilePhone} \N -971 Lztyqfot \N Lgfftdqff lgfftdqff@wtksof.rt 570199781131 all_genders_avatar.png 2026-04-14 16:12:05.915995 2026-04-14 16:12:05.915995 78 {mobilePhone} \N -972 Dqkot \N Lzqisigytf dqkot.lzqisigytf@hglztg.rt 579095309413 all_genders_avatar.png 2026-04-14 16:12:05.987941 2026-04-14 16:12:05.987941 18 {mobilePhone} \N -973 Aqzko \N Fnaäftf aqzko.fnaqftf@udqos.egd 70103231477 all_genders_avatar.png 2026-04-14 16:12:06.145421 2026-04-14 16:12:06.145421 51 {mobilePhone} \N -974 Lghiot \N Cqfrnea ldcqfrnea7@udqos.egd @mghioot all_genders_avatar.png 2026-04-14 16:12:06.354741 2026-04-14 16:12:06.354741 6 {mobilePhone} \N -975 Owkqiod \N Qswqaaqk owkqiodqswqaaqk5@udqos.egd 570145739539 all_genders_avatar.png 2026-04-14 16:12:06.652682 2026-04-14 16:12:06.652682 59 {mobilePhone} \N -976 pgltyofq \N \N pgltyofq.tkkqmaof@udqos.egd 7137022141 all_genders_avatar.png 2026-04-14 16:12:06.777106 2026-04-14 16:12:06.777106 79 {mobilePhone} \N -977 Fqun \N Mókq fqunpxsoqmgkq@udqos.egd 51052786513 all_genders_avatar.png 2026-04-14 16:12:06.95031 2026-04-14 16:12:06.95031 43 {mobilePhone} \N -978 Dqkstft \N Lgfftdqff lgfftdqff.dqkstft3551@udqos.egd 570190642711 all_genders_avatar.png 2026-04-14 16:12:07.085598 2026-04-14 16:12:07.085598 78 {mobilePhone} \N -979 Liqnft \N Vtfmts liqnft.vtfmts33@udqos.egd +2670181114936 all_genders_avatar.png 2026-04-14 16:12:07.267862 2026-04-14 16:12:07.267862 3 {mobilePhone} \N -980 Glaqk \N Wxkdqff glaqk.wxkdqff@udb.rt 7004968887 all_genders_avatar.png 2026-04-14 16:12:07.491101 2026-04-14 16:12:07.491101 80 {mobilePhone} \N -981 Tdofq \N Rptsos tdofqrptsos@uggustdqos.egd 579712941916 all_genders_avatar.png 2026-04-14 16:12:07.636442 2026-04-14 16:12:07.636442 81 {mobilePhone} \N -982 DR. \N DOQPTT kqidqfygkiqr550@udqos.egd +4457128823398 all_genders_avatar.png 2026-04-14 16:12:07.776495 2026-04-14 16:12:07.776495 30 {mobilePhone} \N -983 Uoxsoq \N Kxllg kxllg.uoxsoq.68@igzdqos.oz +2679337504457 all_genders_avatar.png 2026-04-14 16:12:08.198667 2026-04-14 16:12:08.198667 82 {mobilePhone} \N -984 Fqzqsooq \N Aqsnfgclaq fqzq.so@dt.egd +26 702 1926246 all_genders_avatar.png 2026-04-14 16:12:08.419259 2026-04-14 16:12:08.419259 83 {mobilePhone} \N -985 Lgyoq \N Dgiqdtr lgyoqmqan9@udqos.egd 570148256844 all_genders_avatar.png 2026-04-14 16:12:08.662472 2026-04-14 16:12:08.662472 29 {mobilePhone} \N -986 htzkq \N loff 7vqifloff@udb.rt 57979 9156066 all_genders_avatar.png 2026-04-14 16:12:08.868587 2026-04-14 16:12:08.868587 36 {mobilePhone} \N -987 Aqmxnxao \N Dxkhitn aqm.oogaqdxkhitn@udqos.egd +7 8828885170 all_genders_avatar.png 2026-04-14 16:12:09.007546 2026-04-14 16:12:09.007546 40 {mobilePhone} \N -988 Cqrnd \N Dqlsgclano dqlsgclaon.c.d@udqos.egd +2679725711465 all_genders_avatar.png 2026-04-14 16:12:09.235629 2026-04-14 16:12:09.235629 81 {mobilePhone} \N -989 Tddq \N Usqpeitf usqpeitftddq@udqos.egd +76724026966 all_genders_avatar.png 2026-04-14 16:12:09.368469 2026-04-14 16:12:09.368469 39 {mobilePhone} \N -990 Ysgkol \N Qshitf ysgkol.qshitf@gxzsgga.rt 570138313204 all_genders_avatar.png 2026-04-14 16:12:09.5989 2026-04-14 16:12:09.5989 84 {mobilePhone} \N -1354 Ltfnq \N Fttr2Rttr \N \N \N 2026-04-20 13:52:50.312741 2026-04-20 13:52:50.312741 \N {mobilePhone} \N -991 Atklzof \N Sqkllgf atklzofsqklf@udqos.egd +21017525279 all_genders_avatar.png 2026-04-14 16:12:09.890204 2026-04-14 16:12:09.890204 35 {mobilePhone} \N -992 Gsocoq \N Fgll gsoctfgll@udqos.egd @gsoctfgll all_genders_avatar.png 2026-04-14 16:12:10.075497 2026-04-14 16:12:10.075497 48 {mobilePhone} \N -993 Ofuq \N \N ofuqkorrtk@vtw.rt Ofuqk4 all_genders_avatar.png 2026-04-14 16:12:10.293091 2026-04-14 16:12:10.293091 82 {mobilePhone} \N -994 Zqkq \N Igkqf zqkqigkqf7606@udqos.egd 579381812409 all_genders_avatar.png 2026-04-14 16:12:10.384854 2026-04-14 16:12:10.384854 85 {mobilePhone} \N -995 Ptyy \N Ioflgf ptyydwlk@udqos.egd +26 70115491552 all_genders_avatar.png 2026-04-14 16:12:10.601483 2026-04-14 16:12:10.601483 61 {mobilePhone} \N -996 Tssq \N Pxfuitofkoei tssq.pxfuitofkoei@udb.rt +2671568334265 all_genders_avatar.png 2026-04-14 16:12:10.814287 2026-04-14 16:12:10.814287 21 {mobilePhone} \N -997 Qrkoqfq \N Etkcqfztl dokqfrqetkcqfztl.qrkoqfq@udqos.egd 570182163910 all_genders_avatar.png 2026-04-14 16:12:11.01009 2026-04-14 16:12:11.01009 86 {mobilePhone} \N -998 Doeiqts \N Qeizmtif doeiqtsqeizmtif@udqos.egd 5701 87805080 all_genders_avatar.png 2026-04-14 16:12:11.170779 2026-04-14 16:12:11.170779 35 {mobilePhone} \N -999 Aqziqkofq \N Rotwqss aqziqkofqrotwqss@z-gfsoft.rt +2670186657815 all_genders_avatar.png 2026-04-14 16:12:11.315568 2026-04-14 16:12:11.315568 87 {mobilePhone} \N -1000 Sqosq \N Wofzftk sqosqwo@oesgxr.egd 55893167878755 all_genders_avatar.png 2026-04-14 16:12:11.46478 2026-04-14 16:12:11.46478 48 {mobilePhone} \N -1001 Zqs \N stcn zqstco755@udqos.egd 579728233486 all_genders_avatar.png 2026-04-14 16:12:11.617178 2026-04-14 16:12:11.617178 18 {mobilePhone} \N -1002 Qstbqfrkq \N Axrsta qstbqfrkq-axrsta@vtw.rt 57036845093 all_genders_avatar.png 2026-04-14 16:12:11.755354 2026-04-14 16:12:11.755354 53 {mobilePhone} \N -1003 Ytsoeoq \N Motlqa ytsoeoq.motlqa@udb.rt 579652410213 all_genders_avatar.png 2026-04-14 16:12:11.905898 2026-04-14 16:12:11.905898 41 {mobilePhone} \N -1004 Ktwteeq \N Wnkft wteanstouiqfftwnkft@oesgxr.egd +898406027176 all_genders_avatar.png 2026-04-14 16:12:12.070182 2026-04-14 16:12:12.070182 6 {mobilePhone} \N -1005 Kqús \N \N kqrqkgqj@udqos.egd kqrqkgqj7 all_genders_avatar.png 2026-04-14 16:12:12.160037 2026-04-14 16:12:12.160037 50 {mobilePhone} \N -1006 Yogfq \N Kgwoe yogfq.ctkkqf@igzdqos.eg.xa +220094160578 all_genders_avatar.png 2026-04-14 16:12:12.236166 2026-04-14 16:12:12.236166 87 {mobilePhone} \N -1007 Dqnq \N Legzz dqnqlegzz11@udqos.egd +26 79915352456 all_genders_avatar.png 2026-04-14 16:12:12.401659 2026-04-14 16:12:12.401659 54 {mobilePhone} \N -1008 Eqf \N Qlqs qlqs.eqf@udqos.egd +267003800066 all_genders_avatar.png 2026-04-14 16:12:12.584533 2026-04-14 16:12:12.584533 48 {mobilePhone} \N -1009 Loscoq \N Mqftzzo loscoq.mqftzzo.60@igzdqos.egd 5790 9252 8787 all_genders_avatar.png 2026-04-14 16:12:12.744472 2026-04-14 16:12:12.744472 88 {mobilePhone} \N -1010 Gsocoq \N \N amb@udb.rt 570133685814 all_genders_avatar.png 2026-04-14 16:12:12.936409 2026-04-14 16:12:12.936409 58 {mobilePhone} \N -1011 Qnq \N Agxqdé qnq.avqdt@udb.ftz 5708 1595005 all_genders_avatar.png 2026-04-14 16:12:13.107644 2026-04-14 16:12:13.107644 48 {mobilePhone} \N -1012 Itfuqdti \N Litfro itfuqdtiaigrqrqro@udqos.egd 79773894658 all_genders_avatar.png 2026-04-14 16:12:13.282184 2026-04-14 16:12:13.282184 89 {mobilePhone} \N -1013 Altfooq \N \N dqrqdwquqtcq@udqos.egd Ztstukqd/ViqzlQhh: +845689320218 all_genders_avatar.png 2026-04-14 16:12:13.384111 2026-04-14 16:12:13.384111 90 {mobilePhone} \N -1014 Dqn \N Qs-Iqddqro dqnqfvqk86@udqos.egd +26 701 00415365 all_genders_avatar.png 2026-04-14 16:12:13.595967 2026-04-14 16:12:13.595967 91 {mobilePhone} \N -1015 Yqkmqd \N Hqkcqlo yqkmqdhqkcqlo@udqos.egd +2679918847687 all_genders_avatar.png 2026-04-14 16:12:13.724701 2026-04-14 16:12:13.724701 12 {mobilePhone} \N -1016 Wtrtft \N Ukttflhqf wtrtftu@qgs.egd 57021499535 all_genders_avatar.png 2026-04-14 16:12:13.813343 2026-04-14 16:12:13.813343 42 {mobilePhone} \N -1017 Aqmxnxao \N Dxkhitn aqm.oogaqdxkhitn@udqos.egd +78828885170 all_genders_avatar.png 2026-04-14 16:12:13.916102 2026-04-14 16:12:13.916102 40 {mobilePhone} \N -1018 Dgiqdtraiqstr \N \N dgiqdtraiqstrlqkty65@udqos.egd 57357438662 all_genders_avatar.png 2026-04-14 16:12:14.124644 2026-04-14 16:12:14.124644 2 {mobilePhone} \N -1019 Lzthiqfot \N Enwxssq lzthiqfot.enwxssq@udb.rt +2679352566298 all_genders_avatar.png 2026-04-14 16:12:14.260127 2026-04-14 16:12:14.260127 92 {mobilePhone} \N -1020 Lmtelqfgc \N Wxao wxaoeoeq@udqos.egd 356449017 all_genders_avatar.png 2026-04-14 16:12:14.476043 2026-04-14 16:12:14.476043 48 {mobilePhone} \N -1021 Qdqkq \N \N qdqkq51@igzdqos.rt 57092195026 all_genders_avatar.png 2026-04-14 16:12:14.633848 2026-04-14 16:12:14.633848 93 {mobilePhone} \N -1022 Wqkzglm \N Hsgzaq wqkzglm.hsgzaq7@udqos.egd 579718282067 all_genders_avatar.png 2026-04-14 16:12:14.817476 2026-04-14 16:12:14.817476 61 {mobilePhone} \N -1023 Rqdsq \N \N rqdsqeqsoa7@udqos.egd +2670142389910 all_genders_avatar.png 2026-04-14 16:12:14.973252 2026-04-14 16:12:14.973252 54 {mobilePhone} \N -1024 Iqffq \N Eqksllgf iqffqeqk@lzqfygkr.trx +7 0782844873 all_genders_avatar.png 2026-04-14 16:12:15.21622 2026-04-14 16:12:15.21622 81 {mobilePhone} \N -1025 Cqstkoq \N Gksgcq stkq8573@nqigg.rt +2679009507670 all_genders_avatar.png 2026-04-14 16:12:15.390283 2026-04-14 16:12:15.390283 94 {mobilePhone} \N -1026 Qdtsoq \N Lmndqńlaq qdtsqeil5@udqos.egd +26 701 21088770 all_genders_avatar.png 2026-04-14 16:12:15.580157 2026-04-14 16:12:15.580157 10 {mobilePhone} \N -1028 qro \N \N qroznqpqnqlxkonq@udqos.egd @qrnz_816 all_genders_avatar.png 2026-04-14 16:12:15.876123 2026-04-14 16:12:15.876123 2 {mobilePhone} \N -1029 Dqikttf \N Mqoro dqiklqfdouxts@udqos.egd +26 700 7691393 all_genders_avatar.png 2026-04-14 16:12:16.013954 2026-04-14 16:12:16.013954 6 {mobilePhone} \N -1030 Pxrà \N Yqoutf yqoutfpxrq@udqos.egd 570145779113 all_genders_avatar.png 2026-04-14 16:12:16.216693 2026-04-14 16:12:16.216693 61 {mobilePhone} \N -1031 Qfqdqkoq \N Agkormt agkormt.qfqdqkoq@udqos.egd +2670105881909 all_genders_avatar.png 2026-04-14 16:12:16.312894 2026-04-14 16:12:16.312894 96 {mobilePhone} \N -1032 Kqfoq \N Yqzzgxd kqfoqwtfyqzzgxd@udqos.egd +26 7071689651 all_genders_avatar.png 2026-04-14 16:12:16.465471 2026-04-14 16:12:16.465471 97 {mobilePhone} \N -1033 Tstfq \N Lgsgffoagc tlgsgffoagc@qgs.rt +2679008901943 all_genders_avatar.png 2026-04-14 16:12:16.68029 2026-04-14 16:12:16.68029 98 {mobilePhone} \N -1034 Qkoqft \N Utolstk utolstk.qkoqft@udqos.egd @pqrmoq23 all_genders_avatar.png 2026-04-14 16:12:17.076288 2026-04-14 16:12:17.076288 10 {mobilePhone} \N -1035 Nqldttf \N Wqzggs nqldttf.wqzggs80@udqos.egd +267043616072 all_genders_avatar.png 2026-04-14 16:12:17.362941 2026-04-14 16:12:17.362941 99 {mobilePhone} \N -1036 Lqkqi \N Ftxutwqxtk lqkqi.ftxutwqxtk@udb.ftz 579087415654 all_genders_avatar.png 2026-04-14 16:12:17.515849 2026-04-14 16:12:17.515849 18 {mobilePhone} \N -1037 Qdok \N Ixutnkqz ixutnkqz.qdok@udqos.egd +2670114562748 all_genders_avatar.png 2026-04-14 16:12:17.732712 2026-04-14 16:12:17.732712 49 {mobilePhone} \N -1038 Ptffoytk \N Yofa ptffoytk.yofa@gfsoft.rt +26 79334023809 all_genders_avatar.png 2026-04-14 16:12:17.858907 2026-04-14 16:12:17.858907 100 {mobilePhone} \N -1039 Fqzqsoq \N Ugfmqstm fquxugf@udqos.egd 57036626510 all_genders_avatar.png 2026-04-14 16:12:18.111979 2026-04-14 16:12:18.111979 27 {mobilePhone} \N -1040 Jofu \N Sox jofusox5350@udqos.egd 570103416915 all_genders_avatar.png 2026-04-14 16:12:18.25601 2026-04-14 16:12:18.25601 31 {mobilePhone} \N -1041 Ctkq \N Leidorz ctkqdqkoqleidorz@udqos.egd 55267180194173 all_genders_avatar.png 2026-04-14 16:12:18.519286 2026-04-14 16:12:18.519286 47 {mobilePhone} \N -1042 Utgkut \N Sqftzl utgkut.sqftzl@udqos.egd @UtgkutSqftzm all_genders_avatar.png 2026-04-14 16:12:18.70014 2026-04-14 16:12:18.70014 101 {mobilePhone} \N -1043 Dqsofq \N Iqortk iqortk.dqsofq@vtw.rt 570120725051 all_genders_avatar.png 2026-04-14 16:12:18.92785 2026-04-14 16:12:18.92785 102 {mobilePhone} \N -1044 Qfzgfoq \N \N qfzgfoq.stegxk@udqos.egd 579734317049 all_genders_avatar.png 2026-04-14 16:12:19.092741 2026-04-14 16:12:19.092741 51 {mobilePhone} \N -1045 htokol \N \N fokgliqf.htokol@vtw.rt 570182398732 all_genders_avatar.png 2026-04-14 16:12:19.201149 2026-04-14 16:12:19.201149 103 {mobilePhone} \N -1046 Qstbqfrtk \N Ukxif qstbqfrtk.ukxif@udqos.egd +2679397010548 all_genders_avatar.png 2026-04-14 16:12:19.281579 2026-04-14 16:12:19.281579 30 {mobilePhone} \N -1047 Qflixs \N Wqflqs wqflixs31@udqos.egd +267183542750 / Ztstukqd - @qflixswqflqs31 all_genders_avatar.png 2026-04-14 16:12:19.467047 2026-04-14 16:12:19.467047 104 {mobilePhone} \N -1048 Qfrktllq \N Ktmt rkt.ktmt@udqos.egd +2679333607876 all_genders_avatar.png 2026-04-14 16:12:19.677634 2026-04-14 16:12:19.677634 57 {mobilePhone} \N -1049 Dozkq \N Ztodggkmqrti dozkq5375@udqos.egd 57003787885 all_genders_avatar.png 2026-04-14 16:12:19.82489 2026-04-14 16:12:19.82489 105 {mobilePhone} \N -1050 Loscoq \N Agei loswq.agei@vtw.rt +26 701 03449645 all_genders_avatar.png 2026-04-14 16:12:19.939018 2026-04-14 16:12:19.939018 106 {mobilePhone} \N -1051 Wxsof \N \N yogfqwxsof@udqos.egd +2679098258438 all_genders_avatar.png 2026-04-14 16:12:20.123464 2026-04-14 16:12:20.123464 107 {mobilePhone} \N -1052 Hqwsg \N \N hqwsglxqfq37@igzdqos.egd +82106123591 all_genders_avatar.png 2026-04-14 16:12:20.34712 2026-04-14 16:12:20.34712 86 {mobilePhone} \N -1053 Qqlixzgli \N \N qqlixzgliaxdqkliqi3@udqos.egd 579975509566 all_genders_avatar.png 2026-04-14 16:12:20.505349 2026-04-14 16:12:20.505349 12 {mobilePhone} \N -1054 Dtroiq \N Ixloe d.ixloe@udb.rt 570129112989 all_genders_avatar.png 2026-04-14 16:12:20.605798 2026-04-14 16:12:20.605798 43 {mobilePhone} \N -1055 Dgxfq \N Iqddgxro dgxfqiqddgxro4@udqos.egd +26 701 45499711 all_genders_avatar.png 2026-04-14 16:12:20.734625 2026-04-14 16:12:20.734625 29 {mobilePhone} \N -1056 Fomqk \N Aqmqs yqwoqf.aqmqs@udqos.egd 579091968536 all_genders_avatar.png 2026-04-14 16:12:20.919718 2026-04-14 16:12:20.919718 71 {mobilePhone} \N -1057 Aqztkofq \N Ktlta aqztkofq.ktlta@udqos.egd +26 701 37254100 all_genders_avatar.png 2026-04-14 16:12:21.075216 2026-04-14 16:12:21.075216 3 {mobilePhone} \N -1058 RGDOFOE \N VQZTKIGXLT rzdv0330@udqos.egd @AkglltftkLz all_genders_avatar.png 2026-04-14 16:12:21.362526 2026-04-14 16:12:21.362526 6 {mobilePhone} \N -1059 Uoqf \N Qwrxssq uoqf.qwrxssq@udqos.egd 570148343302 all_genders_avatar.png 2026-04-14 16:12:21.640946 2026-04-14 16:12:21.640946 105 {mobilePhone} \N -1060 eioqkq \N \N eioqkqsqfmo68@udqos.egd 5526 70117628340 all_genders_avatar.png 2026-04-14 16:12:21.866915 2026-04-14 16:12:21.866915 35 {mobilePhone} \N -1061 Dqkot \N Dofrtkpqif dqkotdofrtkpqif@udqos.egd +267180549270 all_genders_avatar.png 2026-04-14 16:12:22.098528 2026-04-14 16:12:22.098528 108 {mobilePhone} \N -1062 Qfq \N Uqsofrg kxzi@ysgvtk.qo +26 708 4415798 all_genders_avatar.png 2026-04-14 16:12:22.272597 2026-04-14 16:12:22.272597 12 {mobilePhone} \N -1063 Pxsoq \N Dggu pxsoq-dggu@vtw.rt 579727426510 all_genders_avatar.png 2026-04-14 16:12:22.442006 2026-04-14 16:12:22.442006 35 {mobilePhone} \N -1064 Esédtfet \N EQKKT estdtfet.3609@udqos.egd +88174351838 all_genders_avatar.png 2026-04-14 16:12:22.64326 2026-04-14 16:12:22.64326 2 {mobilePhone} \N -1065 Zitktlq \N Yktozqu zitktlq.yktozqu@udb.ftz 579382753293 all_genders_avatar.png 2026-04-14 16:12:22.793994 2026-04-14 16:12:22.793994 28 {mobilePhone} \N -1066 Ltstfq \N Uqkeoq ltstfq.uqkeoq.dqozq@udqos.egd +2670181193043 all_genders_avatar.png 2026-04-14 16:12:22.968857 2026-04-14 16:12:22.968857 109 {mobilePhone} \N -1067 Qlso \N Nosdqm lgsdqmm.qlso@udqos.egd izzhl://z.dt/lgsdqmmqlso all_genders_avatar.png 2026-04-14 16:12:23.193547 2026-04-14 16:12:23.193547 7 {mobilePhone} \N -1068 Tsolq \N Tleqwoq tsolq.tleqwoq@udqos.egd 2679098308419 all_genders_avatar.png 2026-04-14 16:12:23.297568 2026-04-14 16:12:23.297568 47 {mobilePhone} \N -1069 Qlnq \N Qsroko lqkqnqkq028@udqos.egd 57036141802 all_genders_avatar.png 2026-04-14 16:12:23.505297 2026-04-14 16:12:23.505297 110 {mobilePhone} \N -1070 Ytkxmq \N Geiosgcq ytkxmmaqgeiosgcq@udqos.egd 570105557308 all_genders_avatar.png 2026-04-14 16:12:23.576037 2026-04-14 16:12:23.576037 111 {mobilePhone} \N -1071 Liokdqiroti \N \N dglzqyq.liokdqiroti@udqos.egd +2679085016869 all_genders_avatar.png 2026-04-14 16:12:23.803191 2026-04-14 16:12:23.803191 46 {mobilePhone} \N -1072 Sqxkq \N Lotkkq lotkkqsqxkq868@udqos.egd +267133163931 all_genders_avatar.png 2026-04-14 16:12:23.911893 2026-04-14 16:12:23.911893 17 {mobilePhone} \N -1073 Ytrtkoeq \N \N ytrtku.64.yk@udqos.egd +868828833962 all_genders_avatar.png 2026-04-14 16:12:24.177292 2026-04-14 16:12:24.177292 58 {mobilePhone} \N -1074 Mtdyokq \N \N mtdyokt66@udqos.egd +26 709 7231346 all_genders_avatar.png 2026-04-14 16:12:24.443961 2026-04-14 16:12:24.443961 2 {mobilePhone} \N -1075 Eqkgsoft \N Igsstn eqkgsoftsigsstn@udqos.egd 79092808488 all_genders_avatar.png 2026-04-14 16:12:24.700452 2026-04-14 16:12:24.700452 4 {mobilePhone} \N -1076 Qyqliot \N Stzlx qyqliot@igzdqos.egd +26 790 91254036 all_genders_avatar.png 2026-04-14 16:12:24.828919 2026-04-14 16:12:24.828919 32 {mobilePhone} \N -1077 Zqodgk \N Iqlitdo zqodgkliqi77iqlitdo@udqos.egd 579007292429 all_genders_avatar.png 2026-04-14 16:12:24.964658 2026-04-14 16:12:24.964658 112 {mobilePhone} \N -1078 Qosof \N Ygkdoq qosofygkdoq@udqos.egd 579094078037 all_genders_avatar.png 2026-04-14 16:12:25.046319 2026-04-14 16:12:25.046319 61 {mobilePhone} \N -1079 Iqkliozq \N \N woliz.iq@udqos.egd 570181255165 all_genders_avatar.png 2026-04-14 16:12:25.221269 2026-04-14 16:12:25.221269 61 {mobilePhone} \N -1080 Tsolt \N Ktiwtof tsolt@rtldgxsof.rt 579357879043 all_genders_avatar.png 2026-04-14 16:12:25.329041 2026-04-14 16:12:25.329041 56 {mobilePhone} \N -1081 Aqzitkoft \N Hgkkql aqzin_hh75@igzdqos.egd 57060235400 all_genders_avatar.png 2026-04-14 16:12:25.44392 2026-04-14 16:12:25.44392 36 {mobilePhone} \N -1082 Zkqfu \N \N ntfzkqfu@soct.rt 579091188438 all_genders_avatar.png 2026-04-14 16:12:25.618197 2026-04-14 16:12:25.618197 61 {mobilePhone} \N -1083 Yqkqu \N qidtr y.qwrxqidty@udqos.egd +26 701 87290047 all_genders_avatar.png 2026-04-14 16:12:25.833897 2026-04-14 16:12:25.833897 76 {mobilePhone} \N -1084 Foasql \N Rktotk foasql.8tk@dt.egd 570123524952 all_genders_avatar.png 2026-04-14 16:12:25.980669 2026-04-14 16:12:25.980669 113 {mobilePhone} \N -1085 Qwkqiqd \N Rtsuqrg q_rtsuqrg57@igzdqos.egd +267004305683 all_genders_avatar.png 2026-04-14 16:12:26.214277 2026-04-14 16:12:26.214277 114 {mobilePhone} \N -1086 Rqfots \N Itffqvo rqfotsdoeiqtsuiqsn@udqos.egd +267022399024 all_genders_avatar.png 2026-04-14 16:12:26.514416 2026-04-14 16:12:26.514416 115 {mobilePhone} \N -1087 Pqcotk \N \N pqco.eqlzst73@udqos.egd +2679705918946 all_genders_avatar.png 2026-04-14 16:12:26.683105 2026-04-14 16:12:26.683105 116 {mobilePhone} \N -1088 Kqeits \N Rnat kqrnat@udqos.egd Kqr_8888 all_genders_avatar.png 2026-04-14 16:12:26.805817 2026-04-14 16:12:26.805817 81 {mobilePhone} \N -1089 Qffoaq \N \N thitdtkq@hglztg.rt 570137299185 all_genders_avatar.png 2026-04-14 16:12:27.002348 2026-04-14 16:12:27.002348 11 {mobilePhone} \N -1090 Qfqlzqlooq \N \N xlzofgcq.qfqlzqlopq3575@udqos.egd +845604631315 all_genders_avatar.png 2026-04-14 16:12:27.127556 2026-04-14 16:12:27.127556 31 {mobilePhone} \N -1091 Qffq \N Zlqktfag eqktfagqfaq@udqos.egd +26 702 119 7044/ @qffotkt6 all_genders_avatar.png 2026-04-14 16:12:27.355263 2026-04-14 16:12:27.355263 117 {mobilePhone} \N -1092 Qssq \N Hknaigrag soaqk.qssq78@udqos.egd +2671569562090 all_genders_avatar.png 2026-04-14 16:12:27.555391 2026-04-14 16:12:27.555391 10 {mobilePhone} \N -1093 Nqkglsqcq \N \N sqyqtzaq88@udqos.egd 571563220740 all_genders_avatar.png 2026-04-14 16:12:27.70245 2026-04-14 16:12:27.70245 87 {mobilePhone} \N -1094 Hqfztq \N Wqikqdqsoqwiqko hqfztq.wqikqdqsoqwiqko@udqos.egd 570122212157 all_genders_avatar.png 2026-04-14 16:12:27.930979 2026-04-14 16:12:27.930979 86 {mobilePhone} \N -1095 Köddstk \N Pqf pk2vgksr@oesgxr.egd 70137254213 all_genders_avatar.png 2026-04-14 16:12:28.087692 2026-04-14 16:12:28.087692 118 {mobilePhone} \N -1096 Lghiot \N Igsdtl lghiotfigsdtl@udqos.egd +26 793 53790327 all_genders_avatar.png 2026-04-14 16:12:28.205125 2026-04-14 16:12:28.205125 58 {mobilePhone} \N -1097 Fqzqsoq \N Cnaiknlzoxa rgefqzqsoq75@udqos.egd +267057436073 all_genders_avatar.png 2026-04-14 16:12:28.432041 2026-04-14 16:12:28.432041 21 {mobilePhone} \N -1098 Pxf \N Aod qloqrtag@udqos.egd +26 7977 5434272 all_genders_avatar.png 2026-04-14 16:12:28.708706 2026-04-14 16:12:28.708706 64 {mobilePhone} \N -1099 Pqfq \N Vqllgfu pqfq.vqllgfu@udb.rt 579084737371 all_genders_avatar.png 2026-04-14 16:12:28.828688 2026-04-14 16:12:28.828688 61 {mobilePhone} \N -1100 Lqo \N Aqsqhxkqaaqs lqoliqkqf7452@udqos.egd +2679381089180 all_genders_avatar.png 2026-04-14 16:12:28.98601 2026-04-14 16:12:28.98601 119 {mobilePhone} \N -1101 Pgqfq \N Vtosqfr pgqfq.vtosqfr.wtksof@udqos.egd 570181883597 all_genders_avatar.png 2026-04-14 16:12:29.132942 2026-04-14 16:12:29.132942 102 {mobilePhone} \N -1102 Ntcitfooq \N Axsna tcutfnq.axsna@udqos.egd 579792587065 all_genders_avatar.png 2026-04-14 16:12:29.475621 2026-04-14 16:12:29.475621 80 {mobilePhone} \N -1103 Gsuq \N Hgfgdqkngcq gsuqfgcqnqlosq@udqos.egd izzhl://z.dt/Ysgktfetnq44 all_genders_avatar.png 2026-04-14 16:12:29.670348 2026-04-14 16:12:29.670348 120 {mobilePhone} \N -1104 Aqnzot \N Ftvwn aqnzot.ftvwn@udqos.egd +2679394655360 all_genders_avatar.png 2026-04-14 16:12:29.840431 2026-04-14 16:12:29.840431 35 {mobilePhone} \N -1105 Rqfq \N Dttlztkl rqfqzd73@udqos.egd +267060803108 all_genders_avatar.png 2026-04-14 16:12:30.022686 2026-04-14 16:12:30.022686 18 {mobilePhone} \N -1106 Ztzoqfq \N Dtroflao dtrofztz@udqos.egd 57067713765 all_genders_avatar.png 2026-04-14 16:12:30.315901 2026-04-14 16:12:30.315901 41 {mobilePhone} \N -1107 Lqfrkq \N Lzqka lqfrkqqfutsq.lzqka@udqos.egd +26579098882749 all_genders_avatar.png 2026-04-14 16:12:30.590962 2026-04-14 16:12:30.590962 51 {mobilePhone} \N -1108 Esqkq \N Leiöhyts esqkq.leigthyts@hglztg.rt 57151828233 all_genders_avatar.png 2026-04-14 16:12:30.734988 2026-04-14 16:12:30.734988 121 {mobilePhone} \N -1109 Solq \N Iöif solq.igtif@gxzsgga.egd 570104118199 all_genders_avatar.png 2026-04-14 16:12:30.922777 2026-04-14 16:12:30.922777 122 {mobilePhone} \N -1110 Dtkts \N Wtkatfiqutf dtktswtkatfiqutf@igzdqos.egd 57001165931 all_genders_avatar.png 2026-04-14 16:12:31.072062 2026-04-14 16:12:31.072062 66 {mobilePhone} \N -1111 Tfctk \N Zxfetk tfctk@udb.yk 570166475357 all_genders_avatar.png 2026-04-14 16:12:31.203809 2026-04-14 16:12:31.203809 116 {mobilePhone} \N -1112 Wtzzofq \N Lfnrtk wtzzofqlfnrtk@igzdqos.egd 5713 4165898 all_genders_avatar.png 2026-04-14 16:12:31.484408 2026-04-14 16:12:31.484408 123 {mobilePhone} \N -1113 Ltcos \N Qzoaro qzoaroltcos@udb.rt 57036533090 all_genders_avatar.png 2026-04-14 16:12:31.572365 2026-04-14 16:12:31.572365 12 {mobilePhone} \N -1114 Qkkqf \N Ysgnr) io.ysgnr@gxzsgga.egd +22 0035 000394 all_genders_avatar.png 2026-04-14 16:12:31.748604 2026-04-14 16:12:31.748604 7 {mobilePhone} \N -1115 Qfrktq \N Ukqfrt dlukqfrt.eg@udqos.egd +267138650286 all_genders_avatar.png 2026-04-14 16:12:32.12136 2026-04-14 16:12:32.12136 105 {mobilePhone} \N -1116 Loftd \N Ømwqs loftd.gmwqs@udqos.egd +2020331144 all_genders_avatar.png 2026-04-14 16:12:32.249745 2026-04-14 16:12:32.249745 87 {mobilePhone} \N -1117 Dtkntd \N Dquiktwo dtkntd.dquiktwo@udqos.egd 57054546569 all_genders_avatar.png 2026-04-14 16:12:32.399725 2026-04-14 16:12:32.399725 119 {mobilePhone} \N -1118 Fqzqsnq \N Uqckostfag fqzqsnquqckostfag@igzdqos.egd 57036054291 all_genders_avatar.png 2026-04-14 16:12:32.544094 2026-04-14 16:12:32.544094 105 {mobilePhone} \N -1119 Çqğsq \N Uümtsuüf equsq3774@udqos.egd 579975625786 all_genders_avatar.png 2026-04-14 16:12:32.717532 2026-04-14 16:12:32.717532 2 {mobilePhone} \N -1120 Qndqf \N Tllq qndqftllq34@udqos.egd 326738808061 all_genders_avatar.png 2026-04-14 16:12:32.962162 2026-04-14 16:12:32.962162 86 {mobilePhone} \N -1121 Fgxk \N \N fgxkzititqstk@udqos.egd 57053887799 all_genders_avatar.png 2026-04-14 16:12:33.147931 2026-04-14 16:12:33.147931 58 {mobilePhone} \N -1122 Dqfgsg \N Kgrkouxtm dqfgsgrtvoftk@udqos.egd +82116331449 all_genders_avatar.png 2026-04-14 16:12:33.290171 2026-04-14 16:12:33.290171 20 {mobilePhone} \N -1123 Qkgio \N Hkqwix hglz.qkgio@udqos.egd 57023047195 all_genders_avatar.png 2026-04-14 16:12:33.457776 2026-04-14 16:12:33.457776 54 {mobilePhone} \N -1124 Eqdosst \N Sotwolei eqdosstsotwolei@udqos.egd +26 718 8207692 all_genders_avatar.png 2026-04-14 16:12:33.677942 2026-04-14 16:12:33.677942 86 {mobilePhone} \N -1344 Sgktlq \N \N sgktlq59@igzdqos.rt +2679657815072 \N 2026-04-17 15:15:32.742127 2026-04-17 15:15:32.742127 156 {mobilePhone} \N -1125 Rtwwot \N Vtollofutk rtwwot.vtollofutk@igzdqos.rt 579080692343 all_genders_avatar.png 2026-04-14 16:12:33.927576 2026-04-14 16:12:33.927576 18 {mobilePhone} \N -1126 Gsuq \N Zkgzltfag itsssuqz@igzdqos.egd 571567289449 all_genders_avatar.png 2026-04-14 16:12:34.129035 2026-04-14 16:12:34.129035 86 {mobilePhone} \N -1127 Kxlxrqf \N Htzkoqlicoso kxlxrqfhtzkoqlicoso@nqigg.egd 57046482929 all_genders_avatar.png 2026-04-14 16:12:34.406572 2026-04-14 16:12:34.406572 124 {mobilePhone} \N -1128 Lqsgdt \N \N lqsgdt_vquftk@igzdqos.rt 57058919117 all_genders_avatar.png 2026-04-14 16:12:34.733651 2026-04-14 16:12:34.733651 79 {mobilePhone} \N -1129 Eqkgst \N Sqcossgffoèkt eqkgst.sqcossgffotkt@udqos.egd 57096592630 all_genders_avatar.png 2026-04-14 16:12:35.00673 2026-04-14 16:12:35.00673 125 {mobilePhone} \N -1130 Ocgffq \N \N kgdqfnxaocgffq@udqos.egd @ocqpocq all_genders_avatar.png 2026-04-14 16:12:35.223945 2026-04-14 16:12:35.223945 48 {mobilePhone} \N -1131 Dqkoq \N \N dqkoqi.ugkwxfgcq@udqos.egd 57046130520 all_genders_avatar.png 2026-04-14 16:12:35.383984 2026-04-14 16:12:35.383984 58 {mobilePhone} \N -1132 Qfft \N Pxfudqff qfft.pxfudqff@udqos.egd 570187294687 all_genders_avatar.png 2026-04-14 16:12:35.553773 2026-04-14 16:12:35.553773 44 {mobilePhone} \N -1133 Cqlosollq \N Päälatsäoftf cqlopqqla2@udqos.egd +26 790 99340674 all_genders_avatar.png 2026-04-14 16:12:35.728476 2026-04-14 16:12:35.728476 119 {mobilePhone} \N -1134 Coezgkoq \N Htklgfft coe.htklgfft@udqos.egd 579387542670 all_genders_avatar.png 2026-04-14 16:12:35.99871 2026-04-14 16:12:35.99871 113 {mobilePhone} \N -1135 Rqkoq \N Stikdqff rqkoq_7150@nqigg.rt 57086073763 all_genders_avatar.png 2026-04-14 16:12:36.186958 2026-04-14 16:12:36.186958 51 {mobilePhone} \N -1136 Lztyqfg \N \N lztyqfgsgdwqkrg@hglztg.rt lzy99 / 57007458262 all_genders_avatar.png 2026-04-14 16:12:36.47212 2026-04-14 16:12:36.47212 6 {mobilePhone} \N -1137 Ykorq \N Wkqfrz ykorqlwkqfrz@udqos.egd +2938750007 all_genders_avatar.png 2026-04-14 16:12:36.56328 2026-04-14 16:12:36.56328 100 {mobilePhone} \N -1138 Qxlqy \N \N qilqfqxlqyy@udqos.egd +26 701 03949699 all_genders_avatar.png 2026-04-14 16:12:36.819048 2026-04-14 16:12:36.819048 40 {mobilePhone} \N -1139 Púsoq \N \N pxsoqlqfeig.6@udqos.egd +82 171 71 52 43 all_genders_avatar.png 2026-04-14 16:12:36.924846 2026-04-14 16:12:36.924846 124 {mobilePhone} \N -1140 Pqf \N Hxkzmts pqfhxkzmts@udqos.egd 57031259572 all_genders_avatar.png 2026-04-14 16:12:37.212296 2026-04-14 16:12:37.212296 62 {mobilePhone} \N -1141 Iqffqi \N Usqolztk iqffqi.usqolztk@mqsqfrg.rt 57132837054 all_genders_avatar.png 2026-04-14 16:12:37.44107 2026-04-14 16:12:37.44107 3 {mobilePhone} \N -1142 Zod \N Pqfeat zodpqfeat@udb.rt 7036349607 all_genders_avatar.png 2026-04-14 16:12:37.622386 2026-04-14 16:12:37.622386 126 {mobilePhone} \N -1143 Sxolq \N Kqx sxolqkqx@igzdqos.rt +2679658012758 all_genders_avatar.png 2026-04-14 16:12:37.768511 2026-04-14 16:12:37.768511 82 {mobilePhone} \N -1144 Dqbodosoqf \N Hxszm dqbodosoqf.hxszm@udqos.egd 570137984299 all_genders_avatar.png 2026-04-14 16:12:37.935356 2026-04-14 16:12:37.935356 102 {mobilePhone} \N -1145 Orq \N Agkzi orq.agkzi@vtw.rt 570105592099 all_genders_avatar.png 2026-04-14 16:12:38.198763 2026-04-14 16:12:38.198763 60 {mobilePhone} \N -1146 Ktrq \N Qsaiqsqy aqsqykrqq@udqos.egd 570132606689 all_genders_avatar.png 2026-04-14 16:12:38.370127 2026-04-14 16:12:38.370127 16 {mobilePhone} \N -1147 Pqktr \N Zkossiqqlt pzkossiqqlt@udqos.egd +2670130692611 all_genders_avatar.png 2026-04-14 16:12:38.518548 2026-04-14 16:12:38.518548 27 {mobilePhone} \N -1148 Rqcor \N Hotkofo hotkofo.rqcor@udb.rt +2679703105101 all_genders_avatar.png 2026-04-14 16:12:38.713623 2026-04-14 16:12:38.713623 84 {mobilePhone} \N -1149 Lqkqi \N Uqst lqkqilztksofuuqst@udqos.egd +2679710649023 all_genders_avatar.png 2026-04-14 16:12:38.842573 2026-04-14 16:12:38.842573 95 {mobilePhone} \N -1150 Rqfots \N \N rqfotssggltk60@udqos.egd +2670185712765 all_genders_avatar.png 2026-04-14 16:12:39.04517 2026-04-14 16:12:39.04517 82 {mobilePhone} \N -1151 Qfqlzqlooq \N \N fqlhtli@udqos.egd 57047048642 all_genders_avatar.png 2026-04-14 16:12:39.205287 2026-04-14 16:12:39.205287 124 {mobilePhone} \N -1152 Eiqksgzzt \N Htsk ewtphtsz@udqos.egd 55267130048163 all_genders_avatar.png 2026-04-14 16:12:39.408367 2026-04-14 16:12:39.408367 116 {mobilePhone} \N -1153 Ofèl \N Wtkaigxvtk oftl.wtkaigxvtk@leotfetlhg.yk 57034142440 all_genders_avatar.png 2026-04-14 16:12:39.674547 2026-04-14 16:12:39.674547 25 {mobilePhone} \N -1154 Sxqfq \N Gsoctokq youxtoktrg.sxqfq@udqos.egd 57043860906 all_genders_avatar.png 2026-04-14 16:12:39.823226 2026-04-14 16:12:39.823226 69 {mobilePhone} \N -1155 Iqffqi \N Hstozutf hstozutfiqffqi@udqos.egd 55 26 709 0455677 all_genders_avatar.png 2026-04-14 16:12:39.920964 2026-04-14 16:12:39.920964 89 {mobilePhone} \N -1156 qffq \N \N qffqsxeot@udb.ftz 570110381625 all_genders_avatar.png 2026-04-14 16:12:40.050975 2026-04-14 16:12:40.050975 125 {mobilePhone} \N -1157 Pgif \N Eixq eixqpgifsxat@udqos.egd +15736554539. all_genders_avatar.png 2026-04-14 16:12:40.181478 2026-04-14 16:12:40.181478 18 {mobilePhone} \N -1158 Dqkukéz \N Wsöfrqs wsgfrqsdqkuktz@udqos.egd +8924106658 all_genders_avatar.png 2026-04-14 16:12:40.280033 2026-04-14 16:12:40.280033 37 {mobilePhone} \N -1159 Ktrotz \N \N utmtktr@udqos.egd +2670185983217 all_genders_avatar.png 2026-04-14 16:12:40.457018 2026-04-14 16:12:40.457018 84 {mobilePhone} \N -1160 Ktiqzo \N Dqrofq dqrofqktiqzo@udqos.egd 579387195639 all_genders_avatar.png 2026-04-14 16:12:40.555432 2026-04-14 16:12:40.555432 60 {mobilePhone} \N -1161 Aqztknfq \N Zqsqliga zqsqligaa@udqos.egd 579772864494 all_genders_avatar.png 2026-04-14 16:12:40.739229 2026-04-14 16:12:40.739229 127 {mobilePhone} \N -1162 Aqknfq \N Lqctfag aqkofaqlqctfag@udqos.egd 579339608843 all_genders_avatar.png 2026-04-14 16:12:40.916933 2026-04-14 16:12:40.916933 119 {mobilePhone} \N -1163 Dosq \N \N zqkozlq907@udqos.egd 579651770153 all_genders_avatar.png 2026-04-14 16:12:41.054911 2026-04-14 16:12:41.054911 128 {mobilePhone} \N -1164 Soxrdnsq \N \N soxrqeiqoaq71@udqos.egd 57031093268 all_genders_avatar.png 2026-04-14 16:12:41.222923 2026-04-14 16:12:41.222923 129 {mobilePhone} \N -1165 Htzktfag \N Soxrdnsq htzktfag.dosq@udb.rt +267021107290 all_genders_avatar.png 2026-04-14 16:12:41.435591 2026-04-14 16:12:41.435591 129 {mobilePhone} \N -1166 Gstalqfrkq \N \N agsgdotzlfoll@udqos.egd +2679712850764 all_genders_avatar.png 2026-04-14 16:12:41.664051 2026-04-14 16:12:41.664051 130 {mobilePhone} \N -1167 Aqdosq \N Mqaikqwtagcq mqaikqwtagcqaqdosq@udqos.egd 5642463939 Ztstukqdd all_genders_avatar.png 2026-04-14 16:12:41.891794 2026-04-14 16:12:41.891794 131 {mobilePhone} \N -1168 Gsiq \N \N einiosgcqgsuqwgb@xak.ftz +845666152806 all_genders_avatar.png 2026-04-14 16:12:42.040717 2026-04-14 16:12:42.040717 97 {mobilePhone} \N -1169 Fqzqsonq \N \N f951511806@udqos.egd +26 715 61324665 all_genders_avatar.png 2026-04-14 16:12:42.176878 2026-04-14 16:12:42.176878 11 {mobilePhone} \N -1170 Kqfoq \N Gzidqf wgkqfoq66@udqos.egd 57052619237 all_genders_avatar.png 2026-04-14 16:12:42.323984 2026-04-14 16:12:42.323984 38 {mobilePhone} \N -1171 Uogkuog \N Sxhg uog.sxhg0@udqos.egd 55868826009031 all_genders_avatar.png 2026-04-14 16:12:42.564409 2026-04-14 16:12:42.564409 3 {mobilePhone} \N -1172 Ctkgfoaq \N \N cqaifgclaqctkgfoaq@udqos.egd +2670142307775 all_genders_avatar.png 2026-04-14 16:12:42.670979 2026-04-14 16:12:42.670979 27 {mobilePhone} \N -1173 Nxsooq \N Yofoxa pxsoqyofnxa@udqos.egd +2679094580932 all_genders_avatar.png 2026-04-14 16:12:42.880727 2026-04-14 16:12:42.880727 39 {mobilePhone} \N -1174 Asqkq \N Ptlln asqkqptlln7@udqos.egd 570103939936 all_genders_avatar.png 2026-04-14 16:12:43.050733 2026-04-14 16:12:43.050733 84 {mobilePhone} \N -1175 Dqkot \N Iqxtol-Kgwoflgf dqkotiqxkgw@oesgxr.egd +26 7001200410 all_genders_avatar.png 2026-04-14 16:12:43.155956 2026-04-14 16:12:43.155956 124 {mobilePhone} \N -1176 Aqzofq \N Leivqkm aqzofq.leivqkm@hglztg.rt 570183198534 all_genders_avatar.png 2026-04-14 16:12:43.276617 2026-04-14 16:12:43.276617 65 {mobilePhone} \N -1177 Tcq \N Ziodltf tcqziodltf@nqigg.egd 57000778870 all_genders_avatar.png 2026-04-14 16:12:43.468671 2026-04-14 16:12:43.468671 3 {mobilePhone} \N -1178 Sqxkq \N Zgkg sqxkqzgkg102@udqos.egd +908782047533 all_genders_avatar.png 2026-04-14 16:12:43.707431 2026-04-14 16:12:43.707431 132 {mobilePhone} \N -1179 Ntigk \N Dxrkno ntigk_dxrkno@nqigg.egd 552679712862885 all_genders_avatar.png 2026-04-14 16:12:43.832485 2026-04-14 16:12:43.832485 16 {mobilePhone} \N -1180 Qroznq \N Dqzqst dqzqst.qroznq@udqos.egd +26 700 092 1441 all_genders_avatar.png 2026-04-14 16:12:44.038744 2026-04-14 16:12:44.038744 45 {mobilePhone} \N -1181 Sqkollq \N Cgssiqkrz c.sqk.ollq@udb.rt @w_ollq50 all_genders_avatar.png 2026-04-14 16:12:44.226122 2026-04-14 16:12:44.226122 133 {mobilePhone} \N -1182 Lgyoq \N Yxleg yxleg.lgyoq@udb.rt 57130341188 all_genders_avatar.png 2026-04-14 16:12:44.513782 2026-04-14 16:12:44.513782 33 {mobilePhone} \N -1183 Doq \N Zqitko doq.z2itko@udqos.egd 57089165937 all_genders_avatar.png 2026-04-14 16:12:44.769869 2026-04-14 16:12:44.769869 12 {mobilePhone} \N -1184 Wqnq \N Gxqrio wqnq.gxqrio@udqos.egd +2670133866257 all_genders_avatar.png 2026-04-14 16:12:44.91198 2026-04-14 16:12:44.91198 43 {mobilePhone} \N -1185 Kgwtkz \N Solftn kgwtkzsolftn@udqos.egd 579081743793 all_genders_avatar.png 2026-04-14 16:12:45.034254 2026-04-14 16:12:45.034254 47 {mobilePhone} \N -1186 Dqnlt \N Wqatk dqnltwqatk@udqos.egd 570139514142 all_genders_avatar.png 2026-04-14 16:12:45.246195 2026-04-14 16:12:45.246195 69 {mobilePhone} \N -1187 Pgqffq \N Vosaqfl pgqffqvosaqfl@udqos.egd 57049540642 all_genders_avatar.png 2026-04-14 16:12:45.363103 2026-04-14 16:12:45.363103 82 {mobilePhone} \N -1188 Dgiqddtr \N Tsquwqli dgiqddtrtsquwqli@udqos.egd 7068627132 all_genders_avatar.png 2026-04-14 16:12:45.475102 2026-04-14 16:12:45.475102 58 {mobilePhone} \N -1189 Ptffn \N Sgidtotk ptffnsgidtotk@igzdqos.egd 79703790483 all_genders_avatar.png 2026-04-14 16:12:45.634428 2026-04-14 16:12:45.634428 116 {mobilePhone} \N -1190 Qhkostt \N Ftslgf qhkosttftslgf79@udqos.egd 5701 33496541 all_genders_avatar.png 2026-04-14 16:12:45.753966 2026-04-14 16:12:45.753966 122 {mobilePhone} \N -1191 Sqgolt \N Uqztsn sqgoltu@udqos.egd +898493583604 all_genders_avatar.png 2026-04-14 16:12:45.857198 2026-04-14 16:12:45.857198 7 {mobilePhone} \N -1192 Lghioq \N Wküddtfrgky l.wkxddtfrgky@wzofztkftz.egd +2934762231 all_genders_avatar.png 2026-04-14 16:12:45.962519 2026-04-14 16:12:45.962519 134 {mobilePhone} \N -1193 Eiqksgzzt \N Vqkft evqkft075@udqos.egd +267031037618 all_genders_avatar.png 2026-04-14 16:12:46.076928 2026-04-14 16:12:46.076928 21 {mobilePhone} \N -1194 Lofq \N Uktlldqff lofq.uktlldqff@z-gfsoft.rt 579399172747 all_genders_avatar.png 2026-04-14 16:12:46.242952 2026-04-14 16:12:46.242952 134 {mobilePhone} \N -1195 Iqmqs \N Lgntk iqmqs.lgntk@igzdqos.egd +2679975408005 all_genders_avatar.png 2026-04-14 16:12:46.498216 2026-04-14 16:12:46.498216 124 {mobilePhone} \N -1196 Fqmqfof \N Fquiohgxk fqmqff.fk@udqos.egd 579657182853 all_genders_avatar.png 2026-04-14 16:12:46.786186 2026-04-14 16:12:46.786186 135 {mobilePhone} \N -1197 Tstfq \N Utkwts tstfq.utkwts79@udqos.egd 579381014996 all_genders_avatar.png 2026-04-14 16:12:46.952152 2026-04-14 16:12:46.952152 136 {mobilePhone} \N -1198 Gnqfxk \N Wttutk gnqfxkgmaqf@udqos.egd +2670147284461 all_genders_avatar.png 2026-04-14 16:12:47.148549 2026-04-14 16:12:47.148549 32 {mobilePhone} \N -1199 Htkoiqf \N Gkiqf htkoiqfgkiqf236@udqos.egd 7133921088 all_genders_avatar.png 2026-04-14 16:12:47.284639 2026-04-14 16:12:47.284639 61 {mobilePhone} \N -1200 Eqkdtsofq \N Eqygkog eqkdtsofq.eqygkog@vtw.rt 570183104519 all_genders_avatar.png 2026-04-14 16:12:47.513081 2026-04-14 16:12:47.513081 21 {mobilePhone} \N -1201 Ltuxf \N Lxst ltuxf.l.eiqkstl@udqos.egd 79396187447 all_genders_avatar.png 2026-04-14 16:12:47.633106 2026-04-14 16:12:47.633106 25 {mobilePhone} \N -1202 Hqkcofq \N \N hqkcofq.jqlodgcq@udqos.egd 57008100005 all_genders_avatar.png 2026-04-14 16:12:47.832417 2026-04-14 16:12:47.832417 38 {mobilePhone} \N -1203 Aknlznfq \N Dgmgsnxa a.dgmgsnxa@gxzsgga.rt 579099197985 all_genders_avatar.png 2026-04-14 16:12:47.983626 2026-04-14 16:12:47.983626 137 {mobilePhone} \N -1204 Eikolzofq \N Wkouqzo eikolzofq.wkouqzo@udqos.egd 570199617725 all_genders_avatar.png 2026-04-14 16:12:48.110196 2026-04-14 16:12:48.110196 7 {mobilePhone} \N -1205 Sqkq \N Uqtkwtk sqkq.sqosq.uqtkwtk@mqsqfrg.rt 57136263229 all_genders_avatar.png 2026-04-14 16:12:48.233373 2026-04-14 16:12:48.233373 7 {mobilePhone} \N -1206 Qlloq \N Aqrrqeit qlloq.aqrrqeit52@udqos.egd 7935 9874519 all_genders_avatar.png 2026-04-14 16:12:48.338003 2026-04-14 16:12:48.338003 47 {mobilePhone} \N -1207 Lqfst \N Zgfu lqfst.zgfu@gxzsgga.egd 579391744669 all_genders_avatar.png 2026-04-14 16:12:48.505377 2026-04-14 16:12:48.505377 40 {mobilePhone} \N -1208 Qlzkor \N \N qlzkor.fgnq.eol@udqos.egd +26 701 34835201 all_genders_avatar.png 2026-04-14 16:12:48.676572 2026-04-14 16:12:48.676572 6 {mobilePhone} \N -1209 Atolxat \N Guqvq guqvq.atolxat.7738@udqos.egd +26 700 3820017 all_genders_avatar.png 2026-04-14 16:12:48.779596 2026-04-14 16:12:48.779596 79 {mobilePhone} \N -1210 Dqkzq \N Axwoemta dqkzq.axwoemta1@udqos.egd +24156274596 all_genders_avatar.png 2026-04-14 16:12:48.989208 2026-04-14 16:12:48.989208 138 {mobilePhone} \N -1211 Sofrlqn \N Ukqiqd sofrlqndukqiqd@udqos.egd +2679735397206 all_genders_avatar.png 2026-04-14 16:12:49.233145 2026-04-14 16:12:49.233145 10 {mobilePhone} \N -1212 Qffq \N Dtlieitknqagcq q.dtlieitknqagcq@soct.rt 57047237872 all_genders_avatar.png 2026-04-14 16:12:49.466385 2026-04-14 16:12:49.466385 60 {mobilePhone} \N -1213 Lodgft \N Wqrofu 6qxlltr9dqk@vtw.rt 585-10431371 all_genders_avatar.png 2026-04-14 16:12:49.640844 2026-04-14 16:12:49.640844 139 {mobilePhone} \N -1345 Sgktlq \N \N sgktlq59@igzdqos.rt +2679657815072 \N 2026-04-17 15:21:02.326297 2026-04-17 15:21:02.326297 157 {mobilePhone} \N -1214 Fqzqsoq \N Akqei fqzqsoq.akqei@udb.rt 579799126996 all_genders_avatar.png 2026-04-14 16:12:49.736087 2026-04-14 16:12:49.736087 136 {mobilePhone} \N -1215 Qstbqfrtk \N Dsxrta qstbqfrtkdsxrta@qkegk.rt +2679915749521 all_genders_avatar.png 2026-04-14 16:12:49.88731 2026-04-14 16:12:49.88731 139 {mobilePhone} \N -1216 Mqofqw \N Okxd mqofo.okgfqrroez@udqos.egd 579099112811 all_genders_avatar.png 2026-04-14 16:12:50.127915 2026-04-14 16:12:50.127915 64 {mobilePhone} \N -1217 QFQ \N SQWKQ qfqaqktfzgkktlrtsqwkq79@udqos.egd +267181649224 all_genders_avatar.png 2026-04-14 16:12:50.485397 2026-04-14 16:12:50.485397 65 {mobilePhone} \N -1218 Woqfeq \N Leifozmstk woqfeqleifozmstk@oesgxr.egd +25 (073) 897 353 all_genders_avatar.png 2026-04-14 16:12:50.679515 2026-04-14 16:12:50.679515 20 {mobilePhone} \N -1219 Dtkntd \N Nosrokod dtkntdqnrofeg@udqos.egd 57046141103 all_genders_avatar.png 2026-04-14 16:12:50.869812 2026-04-14 16:12:50.869812 38 {mobilePhone} \N -1220 Qwiolita \N Wqwwqk qwiolitawqwwqk753@udqos.egd 570117172226 all_genders_avatar.png 2026-04-14 16:12:51.094218 2026-04-14 16:12:51.094218 140 {mobilePhone} \N -1221 ssoq \N Mqhh nsnq.0@vtw.rt 57023575564 all_genders_avatar.png 2026-04-14 16:12:51.302924 2026-04-14 16:12:51.302924 51 {mobilePhone} \N -1222 Yqsag \N Väiftk yqsag.vqtiftk@udqos.egd +267048326876 all_genders_avatar.png 2026-04-14 16:12:51.495938 2026-04-14 16:12:51.495938 58 {mobilePhone} \N -1223 Hxpqf \N Pglio hxpqfp53@udqos.egd @Hggii45 all_genders_avatar.png 2026-04-14 16:12:51.686274 2026-04-14 16:12:51.686274 109 {mobilePhone} \N -1224 Qodqf \N Qkliqr qodqfqkliqr308@udqos.egd 57182904879 all_genders_avatar.png 2026-04-14 16:12:51.948537 2026-04-14 16:12:51.948537 13 {mobilePhone} \N -1225 Atfoq \N Cossqsgwgl atfoq.hqolqpt@udqos.egd 57044574771 all_genders_avatar.png 2026-04-14 16:12:52.139365 2026-04-14 16:12:52.139365 141 {mobilePhone} \N -1226 Dgiqddqr \N Iqppqk qsiqppqk.dgiqddqr@udqos.egd 570119381753 all_genders_avatar.png 2026-04-14 16:12:52.328239 2026-04-14 16:12:52.328239 29 {mobilePhone} \N -1227 Rqfots \N Ldozi rqfldozib3@oesgxr.egd +22(5)0948866607 all_genders_avatar.png 2026-04-14 16:12:52.423552 2026-04-14 16:12:52.423552 68 {mobilePhone} \N -1228 Dqkot \N Cgos dertcgos@udqos.egd 579094856242 all_genders_avatar.png 2026-04-14 16:12:52.635833 2026-04-14 16:12:52.635833 36 {mobilePhone} \N -1229 Lqzinq \N Kqd lqzinqkqd06@udqos.egd 579088192664 all_genders_avatar.png 2026-04-14 16:12:52.867692 2026-04-14 16:12:52.867692 42 {mobilePhone} \N -1230 Lqkq \N Tssoea lqkqetssoea@udqos.egd +26 701 79077651 all_genders_avatar.png 2026-04-14 16:12:52.958983 2026-04-14 16:12:52.958983 116 {mobilePhone} \N -1231 Rgkol \N \N rgkknvx@udqos.egd 570130263440 all_genders_avatar.png 2026-04-14 16:12:53.129117 2026-04-14 16:12:53.129117 35 {mobilePhone} \N -1232 Kqdof \N Yquioio ktqskqdofduhgh@udqos.egd +2670113601351 all_genders_avatar.png 2026-04-14 16:12:53.32788 2026-04-14 16:12:53.32788 79 {mobilePhone} \N -1233 Mtofqw \N Ntazq mtofqw.k.ntazq@udqos.egd 57180509153 all_genders_avatar.png 2026-04-14 16:12:53.486131 2026-04-14 16:12:53.486131 142 {mobilePhone} \N -1234 Sxaql \N Fösstk sxaql.t.fgtsstk@udqos.egd +2679081230330 all_genders_avatar.png 2026-04-14 16:12:53.796107 2026-04-14 16:12:53.796107 102 {mobilePhone} \N -1235 Pxsoq \N Lmgsuntdn pagsuntdn@udqos.egd +26 793 96912588 all_genders_avatar.png 2026-04-14 16:12:53.900493 2026-04-14 16:12:53.900493 140 {mobilePhone} \N -1236 Sqxknf \N DeFqdtt defqdtts@hkgzgf.dt +898 406586790 all_genders_avatar.png 2026-04-14 16:12:54.112652 2026-04-14 16:12:54.112652 44 {mobilePhone} \N -1237 Qdtsot \N \N ateaqdtsot@udqos.egd +2670103392820 all_genders_avatar.png 2026-04-14 16:12:54.400741 2026-04-14 16:12:54.400741 25 {mobilePhone} \N -1238 Nqkq \N \N nqkqiqfrleiof54@udqos.egd +76046691931 all_genders_avatar.png 2026-04-14 16:12:54.604028 2026-04-14 16:12:54.604028 20 {mobilePhone} \N -1239 Utgku \N Dqlthixs u.dqlthixs@gxzsgga.rt 57099901326 all_genders_avatar.png 2026-04-14 16:12:54.7781 2026-04-14 16:12:54.7781 143 {mobilePhone} \N -1240 Dqzoql \N Agloa dwtetr@udqos.egd 579333552321 all_genders_avatar.png 2026-04-14 16:12:54.896351 2026-04-14 16:12:54.896351 112 {mobilePhone} \N -1241 Kqidgxfq \N Aktrodo aktrodokqidgxfq@udqos.egd 579356203568 all_genders_avatar.png 2026-04-14 16:12:55.031893 2026-04-14 16:12:55.031893 124 {mobilePhone} \N -1242 Dokoqd \N Dqsta dokoqddqsta68@udqos.egd +26 790 001 998 81 all_genders_avatar.png 2026-04-14 16:12:55.364359 2026-04-14 16:12:55.364359 11 {mobilePhone} \N -1243 Yqkqi \N Agkkq yqkqiagkkq@oesgxr.egd 5701 09661663 all_genders_avatar.png 2026-04-14 16:12:55.527403 2026-04-14 16:12:55.527403 80 {mobilePhone} \N -1244 Fol \N Atosiqxtk atosiqxtkfol@udqos.egd 57184030894 all_genders_avatar.png 2026-04-14 16:12:55.661542 2026-04-14 16:12:55.661542 37 {mobilePhone} \N -1245 Mtnfth \N Yokrtclgusx mtnfth.yokrtclgusx@dqsztltk.gku 57154232552 all_genders_avatar.png 2026-04-14 16:12:55.825417 2026-04-14 16:12:55.825417 79 {mobilePhone} \N -1246 Zod \N \N zodgzinwtntk295@igzdqos.egd 579381252062 all_genders_avatar.png 2026-04-14 16:12:56.113319 2026-04-14 16:12:56.113319 96 {mobilePhone} \N -1247 Olgwts \N Ugkdqf-Wxeastn olgwts.uw@udqos.egd +220480963232 all_genders_avatar.png 2026-04-14 16:12:56.260557 2026-04-14 16:12:56.260557 29 {mobilePhone} \N -1248 Olq \N Ldozi olqldozi2@udqos.egd +26 701 44264783 all_genders_avatar.png 2026-04-14 16:12:56.352279 2026-04-14 16:12:56.352279 20 {mobilePhone} \N -1249 Iqfoft \N \N iqfoftsqso02@udqos.egd 579083805055 all_genders_avatar.png 2026-04-14 16:12:56.635364 2026-04-14 16:12:56.635364 132 {mobilePhone} \N -1250 Ysgkoqf \N Yqqwtk ysgkoqf.yqqwtk@yx-wtksof.rt 570191696996 all_genders_avatar.png 2026-04-14 16:12:56.903992 2026-04-14 16:12:56.903992 79 {mobilePhone} \N -1251 Sxeot \N Mns sxeotcqfmns@hglztg.rt 552670140623339 all_genders_avatar.png 2026-04-14 16:12:57.126935 2026-04-14 16:12:57.126935 79 {mobilePhone} \N -1252 Qaqroq \N Dqsao qaqroq.dqsao@gxzsgga.rt 5701/29002313 all_genders_avatar.png 2026-04-14 16:12:57.423848 2026-04-14 16:12:57.423848 69 {mobilePhone} \N -1253 Lgyot \N Iggutfwgtmtd lgyot.qrkoqfq@udqos.egd 579727845175 all_genders_avatar.png 2026-04-14 16:12:57.591242 2026-04-14 16:12:57.591242 3 {mobilePhone} \N -1254 Offq \N \N asohlq7074@udqos.egd +845685549023 all_genders_avatar.png 2026-04-14 16:12:57.815389 2026-04-14 16:12:57.815389 80 {mobilePhone} \N -1255 Coazgkooq \N \N zxlpqaq@udqos.egd @co_allll all_genders_avatar.png 2026-04-14 16:12:57.971875 2026-04-14 16:12:57.971875 144 {mobilePhone} \N -1256 Fqzqsoq \N Fnmifnagclaq fomifoagclaqfc@udqos.egd 579797262887 all_genders_avatar.png 2026-04-14 16:12:58.200142 2026-04-14 16:12:58.200142 66 {mobilePhone} \N -1257 qffq \N \N wgwkqagcqqffq61@udqos.egd 715 68221990 all_genders_avatar.png 2026-04-14 16:12:58.484477 2026-04-14 16:12:58.484477 99 {mobilePhone} \N -1258 Lzqfolsqc \N Lidqusg lidqusg.lzql7@udqos.egd +267158393544 all_genders_avatar.png 2026-04-14 16:12:58.57514 2026-04-14 16:12:58.57514 36 {mobilePhone} \N -1259 Lzthqf \N Hghgc lzthqfhghgc59@oesgxr.egd 579779016828 all_genders_avatar.png 2026-04-14 16:12:58.855911 2026-04-14 16:12:58.855911 99 {mobilePhone} \N -1260 Qkltf \N \N wqkl1927@udqos.egd 579776221191 all_genders_avatar.png 2026-04-14 16:12:59.002381 2026-04-14 16:12:59.002381 40 {mobilePhone} \N -1261 Qlso \N Rxkx qlsorxkx@igzdqos.egd 579332786979 all_genders_avatar.png 2026-04-14 16:12:59.124201 2026-04-14 16:12:59.124201 58 {mobilePhone} \N -1262 Qfxhdq \N Nqrqc nqrqcqfxhdq78@udqos.egd 579370615767 all_genders_avatar.png 2026-04-14 16:12:59.235951 2026-04-14 16:12:59.235951 145 {mobilePhone} \N -1263 Aqznq \N \N cgcaqztknfq@udqos.egd +267096904874 all_genders_avatar.png 2026-04-14 16:12:59.518734 2026-04-14 16:12:59.518734 17 {mobilePhone} \N -1264 Hqzkoea \N Leidor hqzkoea.leidor@hglztg.rt 579354965212 all_genders_avatar.png 2026-04-14 16:12:59.703878 2026-04-14 16:12:59.703878 3 {mobilePhone} \N -1265 Qstbqfrkq \N \N eikolzqfrs.qstbqfrkq@udqos.egd +2679727845061 all_genders_avatar.png 2026-04-14 16:12:59.820753 2026-04-14 16:12:59.820753 40 {mobilePhone} \N -1266 Dnanzq \N \N fzxslaoi46@udqos.egd 579732745074 ( ygk ztstukqd gk ViqzlQhh +24 954265096) all_genders_avatar.png 2026-04-14 16:12:59.952797 2026-04-14 16:12:59.952797 114 {mobilePhone} \N -1267 Somqctzq \N Dqiqktcoei tsomqctzq.dqu59@udqos.egd +2679089944709 all_genders_avatar.png 2026-04-14 16:13:00.368 2026-04-14 16:13:00.368 130 {mobilePhone} \N -1268 Sqkq \N Kqlirqf sqkqvdkqlirqf@udqos.egd +2679098324182 all_genders_avatar.png 2026-04-14 16:13:00.682979 2026-04-14 16:13:00.682979 18 {mobilePhone} \N -1269 Cqstfzofq \N Stgft cqstfzofq.ytsofq@udqos.egd 579045449513 all_genders_avatar.png 2026-04-14 16:13:00.871611 2026-04-14 16:13:00.871611 25 {mobilePhone} \N -1270 Qfqlzqloq \N Wqwqfleqoq qfqetkfgcqdr@udqos.egd +2657077699248 all_genders_avatar.png 2026-04-14 16:13:00.984949 2026-04-14 16:13:00.984949 17 {mobilePhone} \N -1271 Aqkgsof \N Akgeatk akgeatk@hglztg.rt +2670117569719 all_genders_avatar.png 2026-04-14 16:13:01.202274 2026-04-14 16:13:01.202274 146 {mobilePhone} \N -1272 Sxrdossq \N \N sxwgdoklaq@vtw.rt 57004995347 all_genders_avatar.png 2026-04-14 16:13:01.596107 2026-04-14 16:13:01.596107 73 {mobilePhone} \N -1273 Sofq \N Aössftk sofq.agssftk@udqos.egd 57031519031 all_genders_avatar.png 2026-04-14 16:13:02.120759 2026-04-14 16:13:02.120759 6 {mobilePhone} \N -1274 Uömrt \N Tkrguqf ugtmrt.tkrguqf37@igzdqos.rt 570105343168 all_genders_avatar.png 2026-04-14 16:13:02.333883 2026-04-14 16:13:02.333883 11 {mobilePhone} \N -1275 Aqztknfq \N Ntkdqa tkdqa.taqztkofq46@oesgxr.egd 7024017475 all_genders_avatar.png 2026-04-14 16:13:02.519065 2026-04-14 16:13:02.519065 90 {mobilePhone} \N -1276 Nxsooq \N Litceitfag pxs7agekohzg@udqos.egd +845109903010 Ztstukqd all_genders_avatar.png 2026-04-14 16:13:02.694781 2026-04-14 16:13:02.694781 14 {mobilePhone} \N -1277 Qsofq \N \N qsofqaqrkn@xak.ftz +845602580064 all_genders_avatar.png 2026-04-14 16:13:03.095724 2026-04-14 16:13:03.095724 114 {mobilePhone} \N -1278 Qneq \N Tsom aqneqtsom@udqos.egd 57134991842 all_genders_avatar.png 2026-04-14 16:13:03.238112 2026-04-14 16:13:03.238112 15 {mobilePhone} \N -1279 Tddqfgxos \N Aqzqhgzol aqzqhgzol@oesgxr.egd 26579353176429 all_genders_avatar.png 2026-04-14 16:13:03.411185 2026-04-14 16:13:03.411185 29 {mobilePhone} \N -1280 Stq \N Sqdwtkz stq.sqdwtkz@yktt.yk 5588154780306 all_genders_avatar.png 2026-04-14 16:13:03.590328 2026-04-14 16:13:03.590328 45 {mobilePhone} \N -1281 Lqdtk \N Yqitr lqdtk.yqitr46@udqos.egd 570107337487 all_genders_avatar.png 2026-04-14 16:13:03.823423 2026-04-14 16:13:03.823423 7 {mobilePhone} \N -1282 dofubof \N dq dofubof.dq@tldz.wtksof 267184017471 all_genders_avatar.png 2026-04-14 16:13:04.052008 2026-04-14 16:13:04.052008 10 {mobilePhone} \N -1283 Ougk \N \N ougklkz@nqigg.egd +2679712832565 all_genders_avatar.png 2026-04-14 16:13:04.220566 2026-04-14 16:13:04.220566 147 {mobilePhone} \N -1284 Pqorq \N Tsfquuqk pqorqtsfquuqk2@udqos.egd 570108662945 all_genders_avatar.png 2026-04-14 16:13:04.348625 2026-04-14 16:13:04.348625 35 {mobilePhone} \N -1285 Xsql \N Qnnosdqm xsqlqnnosdqm@udqos.egd +2679975449764 all_genders_avatar.png 2026-04-14 16:13:04.496463 2026-04-14 16:13:04.496463 73 {mobilePhone} \N -1286 Hgsofq \N Wsglieiozenfq hgsofqwsgli@udqos.egd +2679332003878 all_genders_avatar.png 2026-04-14 16:13:04.659266 2026-04-14 16:13:04.659266 142 {mobilePhone} \N -1287 Dqkzofq \N Leoqkkqwwq leoqkkqwwqdqkzofq7@udqos.egd +868218290587 all_genders_avatar.png 2026-04-14 16:13:04.854002 2026-04-14 16:13:04.854002 10 {mobilePhone} \N -1288 Oknfq \N Hknndqagcq o.hknndqagcq@vtw.rt +267009795144 all_genders_avatar.png 2026-04-14 16:13:05.086021 2026-04-14 16:13:05.086021 115 {mobilePhone} \N -1289 Ykqfetleq \N Jxqzzkgft ykqfetleqjxqzzkgft@nqigg.oz 579352833632 all_genders_avatar.png 2026-04-14 16:13:05.251491 2026-04-14 16:13:05.251491 32 {mobilePhone} \N -1290 Pxko \N Yotrstk pxko.yotrstk@udqos.egd +2670189249620 all_genders_avatar.png 2026-04-14 16:13:05.342999 2026-04-14 16:13:05.342999 31 {mobilePhone} \N -1291 Fqxkttf \N Dxlzqyq fqxkttfdxlzqyq9@udqos.egd 570136143927 all_genders_avatar.png 2026-04-14 16:13:05.50219 2026-04-14 16:13:05.50219 20 {mobilePhone} \N -1292 Aqziqkofq \N Sthh aqziqkofq.sthh@uggustdqos.egd 570114619923 all_genders_avatar.png 2026-04-14 16:13:05.649339 2026-04-14 16:13:05.649339 51 {mobilePhone} \N -1293 Qfzgfoq \N Leixsmt qfzgfoqleixsmt.wtksof@udqos.egd 570142216774 all_genders_avatar.png 2026-04-14 16:13:05.849568 2026-04-14 16:13:05.849568 4 {mobilePhone} \N -1294 Tdosonq \N Uxmoo tdosoq.uxmoo34@udqos.egd +26 797 79516943 all_genders_avatar.png 2026-04-14 16:13:06.056358 2026-04-14 16:13:06.056358 121 {mobilePhone} \N -1295 Wktsnqfzoaq \N ptlq wktsnqfzoaqofrkq@udqos.egd +2679378695035 all_genders_avatar.png 2026-04-14 16:13:06.179959 2026-04-14 16:13:06.179959 46 {mobilePhone} \N -1296 Lqsgdt \N Agystk lqsgdtagystk@vtw.rt 552679351899263 all_genders_avatar.png 2026-04-14 16:13:06.31788 2026-04-14 16:13:06.31788 81 {mobilePhone} \N -1297 Dqpq \N Lmvqpagvlaq dqpq.lmvqpagvlaq@udqos.egd 570120132653 all_genders_avatar.png 2026-04-14 16:13:06.485924 2026-04-14 16:13:06.485924 95 {mobilePhone} \N -1298 Pqcotkq \N Pgftl wtstfpgftl3@udqos.egd +267032927861 all_genders_avatar.png 2026-04-14 16:13:06.700088 2026-04-14 16:13:06.700088 61 {mobilePhone} \N -1299 Zlokq \N Dqfpqcormt zlokqdqfpqcormt@udqos.egd +2679393586830 all_genders_avatar.png 2026-04-14 16:13:06.854367 2026-04-14 16:13:06.854367 35 {mobilePhone} \N -1300 Woqfeq \N Gkogs woqfeq.wtftfzo@udqos.egd 570187004452 all_genders_avatar.png 2026-04-14 16:13:06.950455 2026-04-14 16:13:06.950455 25 {mobilePhone} \N -1301 Uoxsoqfq \N Lhtkqfmq uoxsolhtkqfmq@udqos.egd 579652167382 all_genders_avatar.png 2026-04-14 16:13:07.150984 2026-04-14 16:13:07.150984 141 {mobilePhone} \N -1302 Iqo \N Fuxntf iqontf3875@nqigg.rt 579396180573 all_genders_avatar.png 2026-04-14 16:13:07.303825 2026-04-14 16:13:07.303825 125 {mobilePhone} \N -1303 Sommn \N \N som.z.ltss@udqos.egd 57069853495 all_genders_avatar.png 2026-04-14 16:13:07.419549 2026-04-14 16:13:07.419549 82 {mobilePhone} \N -1304 Doeiqts \N Ltsocqfgc doeiqts-ltsocqfgc@gxzsgga.rt 570117060631 all_genders_avatar.png 2026-04-14 16:13:07.585023 2026-04-14 16:13:07.585023 26 {mobilePhone} \N -1305 Ktwteeq \N Wkqxf wkqxfktwteeq@igzdqos.rt 571564350839 all_genders_avatar.png 2026-04-14 16:13:07.878376 2026-04-14 16:13:07.878376 62 {mobilePhone} \N -1306 Trozi \N Iqodwtkutk iqodwtkutt30@mtrqz.yx-wtksof.rt +26 706 9563896 all_genders_avatar.png 2026-04-14 16:13:08.108602 2026-04-14 16:13:08.108602 102 {mobilePhone} \N -1307 Uüsltktf \N \N uxslo.ql.3551@udqos.egd +26 793 58699597 all_genders_avatar.png 2026-04-14 16:13:08.341085 2026-04-14 16:13:08.341085 57 {mobilePhone} \N -1308 Vqfu \N \N uggggust35325273@udqos.egd 579372566349 all_genders_avatar.png 2026-04-14 16:13:08.747448 2026-04-14 16:13:08.747448 148 {mobilePhone} \N -1309 Xdq \N Dolaofnqk xdolaofnqk@udqos.egd +76268333037 all_genders_avatar.png 2026-04-14 16:13:08.883768 2026-04-14 16:13:08.883768 113 {mobilePhone} \N -1310 Nggfltg \N Ixk nggfltgixk39@udqos.egd +2679350676501 all_genders_avatar.png 2026-04-14 16:13:09.11654 2026-04-14 16:13:09.11654 45 {mobilePhone} \N -1311 dtsoaq \N dgxlqco dtsoaq.dxlqco48@udqos.egd 57188697521 all_genders_avatar.png 2026-04-14 16:13:09.271815 2026-04-14 16:13:09.271815 80 {mobilePhone} \N -1312 Yqwoqf \N Aquodx aqykqfa71@udqos.egd +267181600689 all_genders_avatar.png 2026-04-14 16:13:09.496249 2026-04-14 16:13:09.496249 10 {mobilePhone} \N -1313 Ofq \N Cqsrocotlg ofqrotflzc@gxzsgga.egd 579330461524 all_genders_avatar.png 2026-04-14 16:13:09.693254 2026-04-14 16:13:09.693254 149 {mobilePhone} \N -1314 Leityytk \N Qfrktq leityytk-wtksof@vtw.rt 57909 2274962 all_genders_avatar.png 2026-04-14 16:13:09.840179 2026-04-14 16:13:09.840179 11 {mobilePhone} \N -1315 Dqkoqfft \N Lotctkl dqkoqfftlotctkl@nqigg.rt 571568736062 all_genders_avatar.png 2026-04-14 16:13:09.932502 2026-04-14 16:13:09.932502 150 {mobilePhone} \N -1316 Stgfqkrg \N Rtdqkeio stgrtdq64@udqos.egd +868267198979 all_genders_avatar.png 2026-04-14 16:13:10.108651 2026-04-14 16:13:10.108651 6 {mobilePhone} \N -1317 Qxktsot \N Gglz qxktsot_cqfgglz@igzdqos.egd 579735321274 all_genders_avatar.png 2026-04-14 16:13:10.26234 2026-04-14 16:13:10.26234 86 {mobilePhone} \N -1318 pqean \N \N agpqel@udb.rt 5701-2931 3726 all_genders_avatar.png 2026-04-14 16:13:10.471022 2026-04-14 16:13:10.471022 42 {mobilePhone} \N -1319 Tddq \N Vofmtf vofmtf.tddq@udqos.egd 579085787208 all_genders_avatar.png 2026-04-14 16:13:10.61539 2026-04-14 16:13:10.61539 145 {mobilePhone} \N -1320 Dqkot \N Vtofat dqkot-eteosoq@hglztg.rt 579791673099 all_genders_avatar.png 2026-04-14 16:13:10.73325 2026-04-14 16:13:10.73325 39 {mobilePhone} \N -1321 qffq \N \N qffqltdtfetfag9@udqos.egd +267133046332 all_genders_avatar.png 2026-04-14 16:13:10.830281 2026-04-14 16:13:10.830281 119 {mobilePhone} \N -1322 Stfq \N Vquftk stfq75vquftk@udqos.egd 57022333331 all_genders_avatar.png 2026-04-14 16:13:11.107456 2026-04-14 16:13:11.107456 21 {mobilePhone} \N -1323 Tsolq \N \N tsolqleikgrtk9@udqos.egd 570117791561 all_genders_avatar.png 2026-04-14 16:13:11.222745 2026-04-14 16:13:11.222745 57 {mobilePhone} \N -1324 Qdn \N Pgli q.pgli@igzdqos.egd 57021736614 all_genders_avatar.png 2026-04-14 16:13:11.384683 2026-04-14 16:13:11.384683 44 {mobilePhone} \N -1325 Iqdlq \N Lkoaqfzi iqdlqlkoaqfzi@hkgzgfdqos.egd +267183899538 all_genders_avatar.png 2026-04-14 16:13:11.540674 2026-04-14 16:13:11.540674 31 {mobilePhone} \N -1326 Qoliq \N Iqkq qoliq.iqkq@gxzsgga.egd +26 799 10301182 all_genders_avatar.png 2026-04-14 16:13:11.764165 2026-04-14 16:13:11.764165 84 {mobilePhone} \N -1327 Stfo \N Pqkkl stfo.pqkkl@udqos.egd 5701 21580392 all_genders_avatar.png 2026-04-14 16:13:11.970356 2026-04-14 16:13:11.970356 151 {mobilePhone} \N -1328 Cqolifqco \N Ugztzo cqolifqcoaqhhquqfzx7664@udqos.egd 7003296632 all_genders_avatar.png 2026-04-14 16:13:12.208831 2026-04-14 16:13:12.208831 58 {mobilePhone} \N -1329 Olqwtssq \N Qwor olqwtssqcqstfzofqmqikq@gxzsgga.rt 70117956507 all_genders_avatar.png 2026-04-14 16:13:12.539994 2026-04-14 16:13:12.539994 39 {mobilePhone} \N -1330 Gzosoq \N Rkxux grtsoqdokoqd@udqos.egd 570163176625 all_genders_avatar.png 2026-04-14 16:13:12.666732 2026-04-14 16:13:12.666732 112 {mobilePhone} \N -1331 Wqrk \N Woi wqrk.woi@gxzsgga.egd 579723545018 all_genders_avatar.png 2026-04-14 16:13:12.787275 2026-04-14 16:13:12.787275 51 {mobilePhone} \N -1332 Igllqd \N Rqgxr igllqd.rqgxr40@udqos.egd 570105301032 all_genders_avatar.png 2026-04-14 16:13:12.97247 2026-04-14 16:13:12.97247 119 {mobilePhone} \N -1333 Lxdqnq \N Qwrts-Iqytm lxdqnq.mtor@udqos.egd +2670117413862 all_genders_avatar.png 2026-04-14 16:13:13.16347 2026-04-14 16:13:13.16347 63 {mobilePhone} \N -1334 Ytffq \N Cgutsmqfu ytffqcgutsmqfu@igzdqos.egd ytffqcguts all_genders_avatar.png 2026-04-14 16:13:13.29879 2026-04-14 16:13:13.29879 114 {mobilePhone} \N -1335 Mqofqw \N Gfoaglo wqaqkt_mqffn@nqigg.egd 579373280305 all_genders_avatar.png 2026-04-14 16:13:13.509538 2026-04-14 16:13:13.509538 92 {mobilePhone} \N -1336 Yokql \N Yqaoi yokqlqsyqaoi@gxzsgga.egd 57138134263 all_genders_avatar.png 2026-04-14 16:13:13.745358 2026-04-14 16:13:13.745358 8 {mobilePhone} \N -1337 Aqzot \N Dosft aqzot.dosft7668@udqos.egd +26 79977 815506 all_genders_avatar.png 2026-04-14 16:13:13.937684 2026-04-14 16:13:13.937684 3 {mobilePhone} \N -1338 Hotzkg \N Moctko h.moctko@udqos.egd 579381350107 all_genders_avatar.png 2026-04-14 16:13:14.164216 2026-04-14 16:13:14.164216 67 {mobilePhone} \N -1339 Esqxrog \N Atos esqxrogatos76@udqos.egd 579354319644 all_genders_avatar.png 2026-04-14 16:13:14.358562 2026-04-14 16:13:14.358562 27 {mobilePhone} \N -1340 Esqkq \N Tcqfl esqkqqsdxz@oesgxr.egd +2679725595529 all_genders_avatar.png 2026-04-14 16:13:14.569179 2026-04-14 16:13:14.569179 19 {mobilePhone} \N -13 Pgqfq \N Aqzlqkql pgqfq.aqzlqkql@itkgtxkght.egd +26 799 171 577 80 all_genders_avatar.png 2026-04-14 16:09:53.134202 2026-04-14 16:09:53.134202 1 {email} \N -1342 Cqlosoao \N Zitgrkorgx cqlosoaozitgrkorgx8@udqos.egd +851650190875 \N 2026-04-16 13:00:19.040375 2026-04-16 13:00:19.040375 153 {mobilePhone} \N -1343 Eioqkq Dqkoqdq Lzkteatkz eioqkqlzkteatkz@udb.rt +26 702 1621673 \N 2026-04-16 14:05:11.323451 2026-04-16 14:05:11.323451 154 {mobilePhone} \N -1346 Fqrqc \N F lqkqi.rgt@fttr2rttr.gku 579399881896 \N 2026-04-17 16:49:55.085792 2026-04-17 16:49:55.085792 158 {mobilePhone} \N -1347 Doeqtsq \N Ugsrlztof doeq.ugzzvqsrz@z-gfsoft.rt 579352634787 \N 2026-04-17 17:17:07.742546 2026-04-17 17:17:07.742546 159 {mobilePhone} \N -1348 Qnsof \N Kxll qnsof.kxll@udb.rt 579796447752 \N 2026-04-18 08:30:03.686864 2026-04-18 08:30:03.686864 160 {mobilePhone} \N -1349 Liodkoz \N Fqzoc Egfzqez@liodkozfqzoc.egd 570128927274 \N 2026-04-18 09:55:47.331667 2026-04-18 09:55:47.331667 161 {mobilePhone} \N -1350 Lgzokol Yosohhghgxsgl \N lgzokolyosohhghgxsgl80@udqos.egd +851603218741 \N 2026-04-20 09:39:23.116145 2026-04-20 09:39:23.116145 162 {mobilePhone} \N -1355 Qeegdhqfnofu \N Fttr2Rttr \N \N \N 2026-04-20 13:53:39.797795 2026-04-20 13:53:39.797795 \N {mobilePhone} \N -1356 Egddxfozn \N Fttr2Rttr \N \N \N 2026-04-20 13:54:15.918467 2026-04-20 13:54:15.918467 \N {mobilePhone} \N -1357 Ztzoqfq \N Ntkligcq zqzoqfqntkligcq717@udqos.egd 579771200817 \N 2026-04-21 13:39:09.291299 2026-04-21 13:39:09.291299 163 {mobilePhone} \N -1358 Ftt2Rttr \N Lzqyy \N \N \N 2026-04-21 17:29:32.835752 2026-04-21 17:29:32.835752 \N {mobilePhone} \N -1360 Aqngrê \N Hqllgl aqngrthqllgl46@udqos.egd +26 701 798 15351 \N 2026-04-22 08:04:20.524926 2026-04-22 08:04:20.524926 165 {mobilePhone} \N -1361 Qkltfoo \N Zgslzoagc \N \N \N 2026-04-22 08:46:41.165159 2026-04-22 08:46:41.165159 \N {mobilePhone} \N -1362 Atfmq \N Kqrn \N \N \N 2026-04-22 08:52:17.254145 2026-04-22 08:52:17.254145 \N {mobilePhone} \N -1363 Fqrqc \N Fok \N \N \N 2026-04-22 08:52:17.254145 2026-04-22 08:52:17.254145 \N {mobilePhone} \N -1364 Pglt Eqsksgl \N Dqngkuq \N \N \N 2026-04-22 08:52:17.254145 2026-04-22 08:52:17.254145 \N {mobilePhone} \N -1365 Tstfq \N Utkwts \N \N \N 2026-04-22 08:52:17.254145 2026-04-22 08:52:17.254145 \N {mobilePhone} \N -1366 Ktwteeq \N Ioss kp.ioss32@udqos.egd +267057790407 \N 2026-04-22 14:29:53.466416 2026-04-22 14:29:53.466416 166 {mobilePhone} \N -1027 Dqzof Igltofhqfqi ihqfqi.d@udqos.egd 579736977598 all_genders_avatar.png 2026-04-14 16:12:15.721951 2026-04-14 16:12:15.721951 95 {mobilePhone} \N -1359 LVQZO ATDHQFFQ FQOA FQOALVQZOW@UDQOS.EGD 54033802133 \N 2026-04-21 19:32:20.41088 2026-04-21 19:32:20.41088 164 {mobilePhone} \N -550 Soxrdosq Qcrgfofq soxrdosq.qcrgfofq@dq.pqg-wtksof.rt +2679652240338 all_genders_avatar.png 2026-04-14 16:10:10.540795 2026-04-14 16:10:10.540795 1 {} +40123412341244 -1367 Rqkkns \N Fgkgfiq rqkknsfgkgfiq3537@udqos.egd 579008180033 \N 2026-04-25 08:25:14.762699 2026-04-25 08:25:14.762699 167 {mobilePhone} \N -\. - - --- --- Data for Name: postcode; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.postcode (id, longitude, latitude, value) FROM stdin; -1 \N \N 12345 -2 13.3846074 52.5322530 10115 -3 13.3872223 52.5169655 10117 -4 13.4053209 52.5304772 10119 -5 13.4096284 52.5213124 10178 -6 13.4163353 52.5121934 10179 -7 13.4393827 52.5123063 10243 -8 13.4647553 52.5006585 10245 -9 13.4655536 52.5161596 10247 -10 13.4427724 52.5237626 10249 -11 13.5147644 52.5132299 10315 -12 13.4907669 52.4979014 10317 -13 13.5286872 52.4834850 10318 -14 13.5188024 52.4991936 10319 -15 13.4968621 52.5206131 10365 -16 13.4820993 52.5246229 10367 -17 13.4694499 52.5294756 10369 -18 13.4257038 52.5351824 10405 -19 13.4491709 52.5336070 10407 -20 13.4413572 52.5443185 10409 -21 13.4111863 52.5377637 10435 -22 13.4125808 52.5448532 10437 -23 13.4121146 52.5521596 10439 -24 13.3371634 52.5307202 10551 -25 13.3214655 52.5305064 10553 -26 13.3354570 52.5215317 10555 -27 13.3594370 52.5233235 10557 -28 13.3499203 52.5301232 10559 -29 13.3056876 52.5151965 10585 -30 13.3195166 52.5184473 10587 -31 13.3057090 52.5275504 10589 -32 13.3273638 52.5088240 10623 -33 13.3146866 52.5094582 10625 -34 13.3029957 52.5079844 10627 -35 13.3085871 52.5027952 10629 -36 13.3137529 52.4966568 10707 -37 13.3031166 52.4938818 10709 -38 13.2904513 52.4981211 10711 -39 13.3132726 52.4850887 10713 -40 13.3288773 52.4824450 10715 -41 13.3275478 52.4907978 10717 -42 13.3256787 52.4988463 10719 -43 13.3427020 52.4974551 10777 -44 13.3394753 52.4921119 10779 -45 13.3529141 52.4935684 10781 -46 13.3623702 52.4964239 10783 -47 13.3642499 52.5073096 10785 -48 13.3438693 52.5077800 10787 -49 13.3377037 52.5016673 10789 -50 13.3508815 52.4873089 10823 -51 13.3412437 52.4837595 10825 -52 13.3542578 52.4837764 10827 -53 13.3607965 52.4761881 10829 -54 13.3974708 52.4926228 10961 -55 13.3812583 52.5001610 10963 -56 13.3948846 52.4853754 10965 -57 13.4164153 52.4905026 10967 -58 13.4011321 52.5024880 10969 -59 13.4355579 52.5009216 10997 -60 13.4265585 52.4969173 10999 -61 13.4370598 52.4798983 12043 -62 13.4392319 52.4854637 12045 -63 13.4284746 52.4905245 12047 -64 13.4220096 52.4763489 12049 -65 13.4298765 52.4669011 12051 -66 13.4325289 52.4768383 12053 -67 13.4485985 52.4712085 12055 -68 13.4632834 52.4683988 12057 -69 13.4512862 52.4809198 12059 -70 13.4023350 52.4644018 12099 -71 13.3790681 52.4784948 12101 -72 13.3746916 52.4640553 12103 -73 13.3713783 52.4492183 12105 -74 13.3916956 52.4312234 12107 -75 13.3993547 52.4464376 12109 -76 13.3461930 52.4653194 12157 -77 13.3369177 52.4736776 12159 -78 13.3269683 52.4703786 12161 -79 13.3184588 52.4626412 12163 -80 13.3148381 52.4556652 12165 -81 13.3337921 52.4485942 12167 -82 13.3435329 52.4547905 12169 -83 13.3095486 52.4443763 12203 -84 13.2945233 52.4339729 12205 -85 13.3132013 52.4198864 12207 -86 13.3290974 52.4179166 12209 -87 13.3462165 52.4394748 12247 -88 13.3518131 52.4263655 12249 -89 13.3750326 52.4133955 12277 -90 13.3530530 52.4106265 12279 -91 13.4020728 52.4032700 12305 -92 13.3906968 52.3886300 12307 -93 13.4171451 52.3904869 12309 -94 13.4281341 52.4508702 12347 -95 13.4220802 52.4252545 12349 -96 13.4555127 52.4327583 12351 -97 13.4589222 52.4227378 12353 -98 13.4978282 52.4109915 12355 -99 13.4905231 52.4293003 12357 -100 13.4531345 52.4473339 12359 -101 13.4671837 52.4865593 12435 -102 13.4816810 52.4623959 12437 -103 13.5280824 52.4655687 12459 -104 13.5051497 52.4437059 12487 -105 13.5431533 52.4356043 12489 -106 13.5416543 52.4128329 12524 -107 13.5642097 52.3976388 12526 -108 13.6338820 52.3856250 12527 -109 13.5790983 52.4626736 12555 -110 13.5917549 52.4303434 12557 -111 13.6632729 52.4148970 12559 -112 13.6361643 52.4586110 12587 -113 13.7033607 52.4438132 12589 -114 13.5882914 52.5234890 12619 -115 13.5878077 52.5027261 12621 -116 13.6164940 52.5025915 12623 -117 13.6134938 52.5372253 12627 -118 13.5901148 52.5413115 12629 -119 13.5659854 52.5501377 12679 -120 13.5366916 52.5369038 12681 -121 13.5590592 52.5075193 12683 -122 13.5650082 52.5390868 12685 -123 13.5644734 52.5564134 12687 -124 13.5675161 52.5664762 12689 -125 13.4908448 52.5815103 13051 -126 13.5045996 52.5500144 13053 -127 13.4959966 52.5400851 13055 -128 13.5414743 52.5710531 13057 -129 13.5216911 52.5808522 13059 -130 13.4481848 52.5564791 13086 -131 13.4707988 52.5603234 13088 -132 13.4409974 52.5706802 13089 -133 13.4829397 52.6328592 13125 -134 13.4380363 52.6199998 13127 -135 13.4579275 52.5920578 13129 -136 13.3996793 52.5823594 13156 -137 13.3834822 52.5931990 13158 -138 13.3978193 52.6229802 13159 -139 13.4084067 52.5695443 13187 -140 13.4219228 52.5642815 13189 -141 13.3654554 52.5490604 13347 -142 13.3473385 52.5579884 13349 -143 13.3328290 52.5506527 13351 -144 13.3494934 52.5415929 13353 -145 13.3905844 52.5417740 13355 -146 13.3825454 52.5502547 13357 -147 13.3850886 52.5598757 13359 -148 13.3223947 52.5739096 13403 -149 13.2967157 52.5595627 13405 -150 13.3511527 52.5726566 13407 -151 13.3713614 52.5678750 13409 -152 13.3455836 52.6020476 13435 -153 13.3284333 52.5904606 13437 -154 13.3583654 52.5976339 13439 -155 13.2895520 52.6398939 13465 -156 13.3074771 52.6171050 13467 -157 13.3421701 52.6118861 13469 -158 13.2487547 52.6121623 13503 -159 13.2404369 52.5839011 13505 -160 13.2717063 52.5765026 13507 -161 13.3005851 52.5891876 13509 -162 13.1793722 52.5310243 13581 -163 13.1823535 52.5436597 13583 -164 13.2049129 52.5477271 13585 -165 13.1854257 52.5767180 13587 -166 13.1675593 52.5570279 13589 -167 13.1404510 52.5344700 13591 -168 13.1672052 52.5148261 13593 -169 13.1962245 52.5116147 13595 -170 13.2194947 52.5272474 13597 -171 13.2350066 52.5462937 13599 -172 13.2990918 52.5398280 13627 -173 13.2661218 52.5421736 13629 -174 13.2683381 52.5208268 14050 -175 13.2568588 52.5155892 14052 -176 13.2386960 52.5159052 14053 -177 13.2365122 52.4831290 14193 -178 13.2879138 52.5072502 14057 -179 13.2877739 52.5205239 14059 -180 13.1516432 52.4707850 14089 -181 13.1439867 52.4197352 14109 -182 13.2025783 52.4462865 14129 -183 13.2385050 52.4368309 14163 -184 13.2535592 52.4175191 14165 -185 13.2764669 52.4211709 14167 -186 13.2573183 52.4496179 14169 -187 13.2365122 52.4831290 14193 -188 13.2828670 52.4588830 14195 -189 13.3117896 52.4733586 14197 -190 13.2950710 52.4776610 14199 -191 13.5286443 52.4527703 12439 -192 13.2447320 52.5019509 14055 -193 13.6873885 52.3857080 15537 -194 13.7053667 52.4597828 15566 -195 13.7560579 52.4459538 15569 -196 \N \N 11111 -197 \N \N 13505 -198 \N \N 10099 -199 \N \N 45678 -200 \N \N 12243 -201 \N \N 10439 -\. - - --- --- Data for Name: profile; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.profile (id, info, category_id) FROM stdin; -1 \N \N -13 \N \N -14 \N \N -15 \N \N -18 \N \N -19 \N \N -20 \N \N -22 \N \N -24 \N \N -26 \N \N -27 \N \N -28 \N \N -35 \N \N -36 \N \N -39 \N \N -40 \N \N -41 \N \N -42 \N \N -43 \N \N -44 \N \N -45 \N \N -46 \N \N -47 \N \N -48 \N \N -49 \N \N -52 \N \N -53 \N \N -54 \N \N -58 \N \N -60 \N \N -61 \N \N -62 \N \N -65 \N \N -66 \N \N -68 \N \N -70 \N \N -71 \N \N -72 \N \N -75 \N \N -76 \N \N -77 \N \N -78 \N \N -79 \N \N -80 \N \N -81 \N \N -82 \N \N -87 \N \N -88 \N \N -89 \N \N -93 \N \N -94 \N \N -95 \N \N -96 \N \N -97 \N \N -98 \N \N -99 \N \N -100 \N \N -101 \N \N -102 \N \N -103 \N \N -104 \N \N -105 \N \N -106 \N \N -107 \N \N -109 \N \N -113 \N \N -114 \N \N -115 \N \N -116 \N \N -117 \N \N -118 \N \N -119 \N \N -120 \N \N -121 \N \N -122 \N \N -123 \N \N -124 \N \N -125 \N \N -126 \N \N -127 \N \N -129 \N \N -130 \N \N -131 \N \N -132 \N \N -134 \N \N -135 \N \N -136 \N \N -137 \N \N -138 \N \N -139 \N \N -140 \N \N -141 \N \N -143 \N \N -144 \N \N -145 \N \N -146 \N \N -147 \N \N -148 \N \N -149 \N \N -150 \N \N -151 \N \N -152 \N \N -153 \N \N -155 \N \N -156 \N \N -157 \N \N -158 \N \N -159 \N \N -160 \N \N -161 \N \N -162 \N \N -163 \N \N -164 \N \N -165 \N \N -166 \N \N -167 \N \N -169 \N \N -170 \N \N -171 \N \N -172 \N \N -173 \N \N -174 \N \N -175 \N \N -176 \N \N -177 \N \N -178 \N \N -180 \N \N -181 \N \N -183 \N \N -184 \N \N -185 \N \N -186 \N \N -187 \N \N -188 \N \N -189 \N \N -190 \N \N -191 \N \N -192 \N \N -193 \N \N -194 \N \N -196 \N \N -197 \N \N -198 \N \N -199 \N \N -200 \N \N -201 \N \N -202 \N \N -203 \N \N -204 \N \N -205 \N \N -206 \N \N -207 \N \N -208 \N \N -209 \N \N -210 \N \N -211 \N \N -212 \N \N -213 \N \N -214 \N \N -215 \N \N -216 \N \N -217 \N \N -218 \N \N -219 \N \N -222 \N \N -223 \N \N -225 \N \N -226 \N \N -69 \N 6 -112 \N 6 -16 \N 2 -17 \N 1 -224 \N 3 -34 \N 1 -142 \N 1 -57 \N 1 -110 \N 1 -111 \N 2 -220 \N 2 -56 \N 3 -55 \N 3 -221 \N 3 -168 \N 6 -37 \N 3 -63 \N 6 -64 \N 2 -67 \N 6 -73 \N 6 -133 \N 1 -154 \N 1 -195 \N 1 -74 \N 6 -84 \N 6 -21 \N 3 -51 \N 5 -128 \N 3 -108 \N 3 -182 \N 3 -83 \N 1 -91 \N 6 -85 \N 1 -90 \N 1 -92 \N 6 -86 \N 1 -25 \N 1 -33 \N 6 -31 \N 1 -32 \N 1 -30 \N 1 -29 \N 3 -59 \N 2 -179 \N 2 -38 \N 3 -50 \N 3 -23 \N 3 -230 \N \N -231 \N \N -232 \N \N -233 \N \N -234 \N \N -235 \N \N -236 \N \N -237 \N \N -240 \N \N -241 \N \N -243 \N \N -244 \N \N -245 \N \N -246 \N \N -247 \N \N -248 \N \N -249 \N \N -250 \N \N -251 \N \N -252 \N \N -253 \N \N -254 \N \N -255 \N \N -256 \N \N -257 \N \N -258 \N \N -259 \N \N -261 \N \N -262 \N \N -264 \N \N -265 \N \N -267 \N \N -268 \N \N -269 \N \N -270 \N \N -271 \N \N -272 \N \N -274 \N \N -275 \N \N -276 \N \N -277 \N \N -280 \N \N -281 \N \N -283 \N \N -284 \N \N -286 \N \N -287 \N \N -288 \N \N -289 \N \N -290 \N \N -291 \N \N -292 \N \N -293 \N \N -294 \N \N -295 \N \N -297 \N \N -298 \N \N -300 \N \N -302 \N \N -303 \N \N -304 \N \N -305 \N \N -306 \N \N -307 \N \N -308 \N \N -309 \N \N -310 \N \N -311 \N \N -312 \N \N -313 \N \N -314 \N \N -317 \N \N -318 \N \N -319 \N \N -320 \N \N -321 \N \N -322 \N \N -323 \N \N -324 \N \N -325 \N \N -328 \N \N -329 \N \N -331 \N \N -332 \N \N -333 \N \N -334 \N \N -335 \N \N -336 \N \N -337 \N \N -339 \N \N -340 \N \N -341 \N \N -343 \N \N -344 \N \N -345 \N \N -346 \N \N -347 \N \N -348 \N \N -349 \N \N -350 \N \N -352 \N \N -353 \N \N -355 \N \N -356 \N \N -357 \N \N -358 \N \N -359 \N \N -360 \N \N -361 \N \N -362 \N \N -363 \N \N -365 \N \N -366 \N \N -369 \N \N -371 \N \N -373 \N \N -375 \N \N -376 \N \N -377 \N \N -378 \N \N -379 \N \N -382 \N \N -383 \N \N -384 \N \N -385 \N \N -386 \N \N -387 \N \N -388 \N \N -390 \N \N -391 \N \N -392 \N \N -393 \N \N -394 \N \N -395 \N \N -396 \N \N -398 \N \N -399 \N \N -400 \N \N -401 \N \N -402 \N \N -403 \N \N -404 \N \N -405 \N \N -410 \N \N -411 \N \N -412 \N \N -413 \N \N -414 \N \N -416 \N \N -417 \N \N -418 \N \N -419 \N \N -421 \N \N -422 \N \N -424 \N \N -425 \N \N -429 \N \N -430 \N \N -434 \N \N -435 \N \N -437 \N \N -440 \N \N -442 \N \N -443 \N \N -444 \N \N -445 \N \N -447 \N \N -448 \N \N -449 \N \N -450 \N \N -451 \N \N -229 \N 3 -426 \N 6 -316 \N 6 -315 \N 1 -372 \N 5 -438 \N 1 -278 \N 1 -326 \N 2 -239 \N 1 -433 \N 1 -330 \N 1 -266 \N 1 -279 \N 3 -301 \N 1 -432 \N 6 -260 \N 6 -354 \N 6 -406 \N 6 -407 \N 6 -296 \N 3 -368 \N 3 -423 \N 3 -367 \N 2 -242 \N 6 -364 \N 3 -227 \N 3 -370 \N 2 -273 \N 3 -389 \N 6 -299 \N 1 -238 \N 1 -452 \N 1 -338 \N 3 -436 \N 1 -381 \N 3 -446 \N 4 -439 \N 4 -415 \N 4 -397 \N 4 -380 \N 4 -228 \N 3 -285 \N 2 -408 \N 1 -441 \N 3 -342 \N 3 -453 \N \N -455 \N \N -456 \N \N -457 \N \N -458 \N \N -459 \N \N -460 \N \N -461 \N \N -462 \N \N -463 \N \N -465 \N \N -466 \N \N -467 \N \N -470 \N \N -471 \N \N -472 \N \N -473 \N \N -474 \N \N -475 \N \N -476 \N \N -478 \N \N -479 \N \N -480 \N \N -481 \N \N -482 \N \N -483 \N \N -485 \N \N -486 \N \N -491 \N \N -492 \N \N -495 \N \N -500 \N \N -501 \N \N -502 \N \N -503 \N \N -506 \N \N -508 \N \N -511 \N \N -512 \N \N -515 \N \N -516 \N \N -517 \N \N -518 \N \N -519 \N \N -520 \N \N -521 \N \N -522 \N \N -523 \N \N -524 \N \N -525 \N \N -527 \N \N -528 \N \N -529 \N \N -532 \N \N -534 \N \N -535 \N \N -536 \N \N -538 \N \N -539 \N \N -542 \N \N -544 \N \N -545 \N \N -548 \N \N -549 \N \N -550 \N \N -551 \N \N -553 \N \N -554 \N \N -555 \N \N -556 \N \N -557 \N \N -558 \N \N -559 \N \N -560 \N \N -561 \N \N -563 \N \N -565 \N \N -567 \N \N -568 \N \N -570 \N \N -571 \N \N -572 \N \N -575 \N \N -577 \N \N -578 \N \N -579 \N \N -583 \N \N -584 \N \N -589 \N \N -590 \N \N -591 \N \N -592 \N \N -595 \N \N -596 \N \N -599 \N \N -601 \N \N -602 \N \N -605 \N \N -608 \N \N -609 \N \N -612 \N \N -616 \N \N -617 \N \N -620 \N \N -622 \N \N -624 \N \N -626 \N \N -628 \N \N -632 \N \N -638 \N \N -641 \N \N -643 \N \N -644 \N \N -645 \N \N -648 \N \N -651 \N \N -652 \N \N -654 \N \N -655 \N \N -656 \N \N -657 \N \N -658 \N \N -660 \N \N -663 \N \N -664 \N \N -665 \N \N -668 \N \N -669 \N \N -672 \N \N -675 \N \N -676 \N \N -514 \N 1 -670 \N 6 -504 \N 6 -634 \N 6 -464 \N 6 -671 \N 6 -650 \N 6 -667 \N 6 -653 \N 6 -613 \N 6 -507 \N 5 -647 \N 6 -585 \N 4 -487 \N 1 -661 \N 2 -627 \N 5 -618 \N 5 -631 \N 3 -581 \N 1 -600 \N 1 -509 \N 1 -477 \N 1 -541 \N 1 -611 \N 3 -635 \N 1 -636 \N 2 -576 \N 1 -604 \N 2 -566 \N 2 -547 \N 2 -603 \N 2 -537 \N 3 -640 \N 4 -468 \N 6 -621 \N 6 -494 \N 3 -497 \N 6 -510 \N 6 -530 \N 6 -533 \N 6 -642 \N 6 -646 \N 6 -586 \N 5 -582 \N 3 -489 \N 1 -673 \N 6 -615 \N 6 -607 \N 6 -580 \N 3 -552 \N 3 -593 \N 3 -531 \N 3 -666 \N 5 -639 \N 6 -659 \N 1 -630 \N 5 -562 \N 1 -490 \N 2 -488 \N 2 -546 \N 2 -674 \N 6 -574 \N 6 -564 \N 6 -484 \N 6 -594 \N 2 -679 \N \N -681 \N \N -682 \N \N -683 \N \N -684 \N \N -685 \N \N -686 \N \N -688 \N \N -689 \N \N -690 \N \N -691 \N \N -692 \N \N -694 \N \N -698 \N \N -707 \N \N -708 \N \N -709 \N \N -712 \N \N -717 \N \N -719 \N \N -723 \N \N -724 \N \N -731 \N \N -736 \N \N -755 \N \N -759 \N \N -770 \N \N -771 \N \N -775 \N \N -778 \N \N -802 \N \N -806 Contacted for post-match followup \N -807 Ich bin seit fast einem Jahr in der Unterkunft Columbiadamm 84 engagiert, dies wurde von Bevos vermittelt, aber dann sind alle Kontakte zu Bevos eingeschlafen, weil die e-Mail-Adressen nicht mehr funktionierten etc. Das hat mich doch sehr enttäuscht und ich war auf meine eigene Initiative angewiesen. Ich bin jweiter an einem Austausch mit andereren Sprachhelfern interessiert \N -808 \N \N -809 \N \N -810 \N \N -811 \N \N -812 Contacted for post-match followup \N -813 Contacted for post-match followup \N -814 Monday - Thursday might be hard for me as I need to work at 9 am \N -815 \N \N -816 \N \N -817 \N \N -818 Contacted for post-match followup \N -819 \N \N -820 \N \N -821 I will probably start working as a freelancer / full time and/or German classes in near future so i don't know about my available times yet \N -822 \N \N -823 \N \N -824 \N \N -825 I work full weekdays but can do m \N -826 \N \N -827 - \N -828 I am a working student and my schedule changes every semester so I would have to modify it according to that. \N -829 Contacted for post-match followup \N -830 can be flexible \N -831 \N \N -832 \N \N -833 \N \N -834 I will have wisdom teeth surgery on 05.03 so I expect to be able to start volunteering in mid-march. and to fit my schedule I would like to volunteer 1-3 days a week \N -835 \N \N -836 The schedule can change depending on the week but this is generally, with advance notice, can make it. \N -837 \N \N -838 Actually im not into regular volunteering as im working whenever im free i do volunteering \N -839 As I am a student and have a mini job as well, my availability might change throughout the next months because of possible classes or be subject to meetings scheduled for my job. I think I still have to figure out how to best integrate volunteer work into my usual schedule. / Contacted for post-match followup.\n \N -840 Contacted for post-match followup \N -841 Contacted for post-match followup \N -842 \N \N -843 Hello,\nMy name is Adam. I have read this position with interest. \nI am unemployed at the moment with loads of free time.\nI used to babysit and would like to become an Erzieher. / Contacted for post-match followup. \N -844 Nope / Contacted for post-match followup \N -845 \N \N -846 Contacted for post-match followup \N -847 \N \N -848 \N \N -849 \N \N -967 \N \N -1054 \N \N -795 \N 6 -794 \N 6 -787 \N 3 -785 \N 3 -781 \N 3 -773 \N 2 -772 \N 2 -769 \N 1 -766 \N 6 -765 \N 6 -748 \N 6 -746 \N 6 -726 \N 6 -696 \N 6 -767 \N 6 -796 \N 3 -793 \N 1 -789 \N 1 -784 \N 2 -783 \N 5 -758 \N 2 -744 \N 2 -742 \N 4 -739 \N 3 -737 \N 3 -792 \N 6 -790 \N 6 -791 \N 6 -786 \N 6 -788 \N 6 -782 \N 6 -741 \N 6 -697 \N 6 -695 \N 6 -693 \N 6 -777 \N 1 -757 \N 6 -779 \N 6 -780 \N 6 -776 \N 6 -774 \N 6 -768 \N 1 -764 \N 6 -754 \N 5 -704 \N 5 -761 \N 6 -756 \N 6 -745 \N 6 -715 \N 2 -750 \N 1 -730 \N 1 -725 \N 1 -722 \N 1 -762 \N 6 -714 \N 1 -733 \N 1 -727 \N 2 -751 \N 2 -763 \N 6 -752 \N 1 -747 \N 6 -716 \N 6 -705 \N 3 -702 \N 1 -735 \N 6 -710 \N 6 -740 \N 2 -732 \N 3 -720 \N 2 -703 \N 6 -699 \N 2 -706 \N 1 -687 \N 5 -749 \N 6 -713 \N 2 -711 \N 3 -700 \N 2 -718 \N 1 -760 \N 6 -753 \N 6 -743 \N 2 -738 \N 3 -701 \N 5 -734 \N 6 -850 My schedule changes every week/month because of my work. / Contacted for post-match followup \N -851 \N \N -852 I might need to adjust my schedule if I get hired by an employer. \N -853 Contacted for post-match followup \N -854 \N \N -855 I work in the evenings during the weekday. Currently need to be home by 4pm. \N -856 \N \N -857 For now I'm available 7 days a week but in 4 weeks time I'll be starting German language classes, from then I'll only be available evenings and weekends \N -858 Half of the month I'm available on Monday from 4pm, the other half I'm available 6pm. \N -859 \N \N -860 \N \N -861 \N \N -862 i am \N -863 \N \N -864 \N \N -865 I am allowed to take 1 day for volunteering each month. Fridays would work best with my work schedule. If possible. \N -866 n/a \N -867 i am a social worker working with young ofender \N -868 \N \N -869 I have a full time job during the weekday (8 to 6pm) so I can only work outside of these hours \N -870 \N \N -871 \N \N -872 \N \N -873 \N \N -874 \N \N -875 \N \N -876 My personal schedule could change, as I am a student and I don’t always have fixed schedule. As of now I’m relatively free, however that may change, of which I would let you know in advance. \N -877 \N \N -878 \N \N -879 \N \N -880 I will try to be consistant however the schedule will depend on my job interview schedule. \N -881 \N \N -882 \N \N -883 \N \N -884 \N \N -885 \N \N -886 No \N -887 i'm mostly very flexible due to work, sometimes i have to work on weekends but then i'm free during the week, this can vary from week to week \N -888 \N \N -889 \N \N -890 Available time as it is for now, but I would have to make changes to it in the future due to different reasons \N -891 \N \N -892 Dear Need4Deed team,Me and 2 of my close friends are coming from Tennessee to Berlin from May 26-June 2 in search of potential volunteering opportunities. We are specifically searching for ones assisting Ukrainian refugees in Berlin because one of my friends is Ukrainian and has much family still in Ukraine. He is fluent in Ukrainian and I am fluent in German. Please let me know if there are any opportunities, specifically ones helping Ukrainians.Thank you, Marvin \N -893 \N \N -894 \N \N -895 \N \N -896 \N \N -897 Ich kann bei Bedarf auch an anderen Tagen einspringen aber den Mittwoch Nachmittag habe ich immer frei und kann dementsprechend zu dieser Zeit regelmäßig. \N -898 \N \N -899 \N \N -900 \N \N -901 \N \N -902 \N \N -903 No \N -904 \N \N -905 \N \N -906 \N \N -907 \N \N -908 Canceled volunteering Praktikum because marzahn was the only option and it was too far for her \N -909 they want to have a company day on 24.6 they are ca. 9 people. \N -910 \N \N -911 Nein \N -912 \N \N -913 I am applying for payed jobs at the moment which is why my schedule could change by a bit in the next month or so. But then I should still be available for at least 10 hours a week for the next months. \N -914 - 28.05.2024: Dear Mohammad Hassan, I don't Führungszeugnis but I have Anmeldung in Berlin, I'm also living in a immigrants Heim and I don't have permit, even I don't have refugee permit but my permit is in process,  it will take months, I'm waiting for appointment so I don't know it's possible for me to take Führungszeugnis when I don't have permit?Best regards \N -915 no \N -916 \N \N -917 \N \N -918 \N \N -919 \N \N -920 \N \N -921 \N \N -922 Werktags keine verbindl. Festlegungen im Vorhinein wg. Arbeit. Jedoch relativ gute Schancen bei spontanen Anfragen für Treptow bzw. Rudow vormittags. \N -923 sometimes I have work on Fridays from 13.30 \N -924 \N \N -925 \N \N -926 \N \N -927 \N \N -928 \N \N -929 Bei mir variieren meien Verfügbarkeiten stark, da ich gerade keine wirklich geregelte Woche habe. Gebt mir aber gerne Bescheid wann und wo ihr Menschen benötigt, ich unterstütze euch gerne! \N -930 Nein \N -931 I work freelance and have two kids, so my availability changes from week to week. She is out of Berlin until June 23rd. \N -932 My schedule changes from day to day, so I might be able to help more or less depending on the schedule \N -933 \N \N -934 \N \N -935 \N \N -936 \N \N -937 \N \N -938 \N \N -939 \N \N -940 \N \N -941 \N \N -942 It all depends on my kids' schedule, so when the school or Kita are closed, I won't be available. \N -943 \N \N -944 \N \N -945 \N \N -946 \N \N -947 \N \N -948 \N \N -949 \N \N -950 \N \N -951 \N \N -952 \N \N -953 I'm very busy but would like to help with translation when I can. I had measles when I was a small child. \N -954 \N \N -955 I’m in town for 3 months doing research and am flexible in my schedule, though will be busy at different times for different meetings \N -956 \N \N -957 I am usually available Mon-Fri after 18:00 since I work full-time. I am free on the weekends. \N -958 \N \N -959 \N \N -960 Generally flexible for anytime \N -961 flexible but not always avilable- need to ask \N -962 \N \N -963 \N \N -964 Ich bin nur jede zweite Woche in Berlin \N -965 \N \N -966 I can be sometimes available in more time slots \N -968 I often work one week on one week off in my regular job so some at times I would be available during the week and other weeks I would not be available when working my regular job. When Im not working my hours can be flexible \N -969 \N \N -970 \N \N -971 My schedule is very irregular, so it is truly impossible to estimate availability. But if I'm notified about the event in advance (at least 2 weeks), then I can manage to fit in volunteering \N -972 \N \N -973 \N \N -974 \N \N -975 It changes the next month. \N -976 \N \N -977 I travel a lot so I cannot guarantee availability every week. \N -978 \N \N -979 \N \N -980 I could be available on other days. Please ask! \N -981 I am available from July 22 on and then for a couple of weeks as indicated above. After that I enter back into a tighter work schedule. \N -982 I'm flexible - all depends on how often I'm volunteering. Also Tempelhof is an option, just need more time to get there and back. \N -983 \N \N -984 I will be on vacation outside of Berlin until the 28th of June, but afterwards, I will be in Berlin and can commit to the hours marked above. \N -985 I finish my work every day at 15 mon-fri \N -986 \N \N -987 \N \N -988 \N \N -989 Flexible \N -990 Maybe I’ll only be available until the end of September \N -991 Earlier rather later in the day \N -992 Full availability at the moment however this may change upon employment / Experience working with kids, Pediatric occupational therapist in Australia, film and photography. A1.2 language course. Experience in arts/crafts with kids -Vostel. \N -993 \N \N -994 \N \N -995 \N \N -996 \N \N -997 \N \N -998 I am studying my my Deutsch Cours and it start at 9 o'clock morning up to 13 Afternoon and it’s from Monday to Friday \N -999 \N \N -1000 \N \N -1001 \N \N -1002 I can only work until October \N -1003 To be after working hours \N -1004 \N \N -1005 \N \N -1006 \N \N -1007 von 9-17 bin ich nicht verfügbar unter der Woche aber danach und am Wochenende ziemlich flexibel \N -1008 \N \N -1009 I live in Wilmersdorf that is why I only selected 2 options but I can also do other locations if needed \N -1010 I work full-time, but it's pretty flexible:) \N -1011 I will start studying in the middle of September and don't know yet what the schedule will be, but I will naturally be much less available. \N -1012 It can sometimes change but, in principle, I am relatively flexible as I work from home, but I will be fitting various other things in. It also somewhat depends on the location in question. As for locations, I could also potentially travel further afield, and have done in the past when going to accommodation centres to provide assistance, but my preference would be for around Neukölln, so I only ticked the actual preferences. It also perhaps depends on the time of the errand. In principle though, for a couple of hours a week/a couple of times a month, I should be rather flexible. \N -1013 \N \N -1014 Ich bin eigentlich flexibel aber dass sind doch meine Präferenzen \N -1015 Shawky 01.08.2024: She used to be a school teacher for math and physics back in Yemen\n\nSenya 19.01.2026: She works full time, but remotely, so she has some flexibility with her schedule. \N -1016 \N \N -1017 On October I will start school so my schedule might change and I won’t be in Germany for the last two weeks of August \N -1018 \N \N -1019 \N \N -1020 \N \N -1021 \N \N -1022 No \N -1023 Unfortuntaley I work full time, so after 6 would only work for me. \N -1024 In the end, availability depends on the workload, so it's difficult to say what would be possible during the week. \N -1025 I am very flexible, I can volunteer when most convenient for you! \N -1026 \N \N -1027 Ich bin bis September weg. Ich fange dann mit einem neuen Job an. Bin mir nicht sicher wie viele Energie ich danach haben wird. Hab daher nur donnerstags frei gemacht für jetzt. \N -1028 Schedule changes. Happy to help when needed, just let me know. \N -1029 I am only available for the rest of August \N -1030 \N \N -1031 I may have additional availability during the weekdays, however it depends on my work schedule and meetings, therefore it is difficult to commit to a slot on a regular basis. \N -1032 \N \N -1033 \N \N -1034 I prefer to volunteer in weekends \N -1035 Ich habe leider noch nicht meinen Stundenplan für die Uni bekommen deswegen kann es gut sein, dass die Zeiten an welchen ich Zeit habe sich nochmal verändern. Und ich kann erst ab dem 6.10 wieder weil ich dann erst zurück nach Berlin komme \N -1036 \N \N -1037 I am in my semester break so I am very flexible \N -1038 After choosing the schedule will I be able to change it later. \N -1039 Omaha pro Woche \N -1040 No i dont have \N -1041 nein \N -1042 Ja \N -1043 - Senya 17.10.25: He was initially volunteering in Buschkrugallee doing Sprachcafé there in 2023. Has not responded to any of my emails about accompanying recently. \N -1044 About my schedule right now my school is on vacation but it's gonna start October when it's started my schedule can be changed and I might have to do this preferances again thank you for understanding. 🙏 \N -1045 Hello! In the past I was volunteering in a cafe where we were taking care of refugee kids while their parents were attending a german course. Something like this or something like doing arts or crafts / leisure time activities with the kids, would be awesome. I habe basic skills in arabic. And I would like to volunteer approx 2h a week. Kind regards, Jenny \N -1046 I am unemployed at the moment. As soon as I find a job my volunteering opportunities will change. \N -1047 \N \N -1048 Ab Oktober bin ich werktags frei \N -1049 \N \N -1050 Ich habe von Montag bis Donnerstag einen Deutschkurs. Am liebsten die restlichen drei Tage nachmittags und abends. \N -1051 no \N -1052 \N \N -1053 I don’t have my university schedule yet, so I will have to adjust \N -1055 \N \N -1056 I may need to change it in the future as I intend to take German language classes (I am roughly B1 level). As of now I only want to do at most 20 hours per week. \N -1057 \N \N -1058 \N \N -1059 \N \N -1060 Contact me via whatsapp if needed whenever and I will see my availability \N -1061 \N \N -1062 I‘m also available for flexible/one time translations at different times \N -1063 \N \N -1064 \N \N -1065 \N \N -1066 \N \N -1067 \N \N -1068 I would probably need to adapt and update my schedule once i get the confirmation for my german classes schedule. \N -1069 \N \N -1070 My schedule might chance as from the next week \N -1071 \N \N -1072 I am working full time job, so unfortunately can support mostly on the weekends \N -1073 Ich wohne in Alt Buckow 12349. Ich hoffe, dass ich in der Nähe hier arbeiten kann. \N -1074 \N \N -1075 \N \N -1076 \N \N -1077 I am working shifts (early, late or night) so it really depends on my work schedule. Usually I am off monday and tuesday, so would be available in the afternoon (but again that can change from to week) \N -1078 \N \N -1079 I would mostly prefer the weekend. However, If that is not possible all the time, I can avail myself during the afternoon on some weekdays with prior notice. I live in Frankfurt (Oder). \N -1080 \N \N -1081 \N \N -1082 \N \N -1083 \N \N -1084 During the week generally available after 17 due to work obligations. Earlier may be possible on certain days. \N -1085 \N \N -1086 \N \N -1087 \N \N -1088 \N \N -1089 \N \N -1090 I am also working and studying therefore I am not available on Mondays, Tuesdays and Wednesdays originally, but in case of an urgent need I would work to make it possible \N -1091 \N \N -1092 My schedule will change in the next weeks \N -1093 I can be available most of the time between 9h-16h (with some exceptions) if I know in advance \N -1094 \N \N -1095 \N \N -1096 \N \N -1097 \N \N -1098 I have a disability related to my menstrual cycle. Because if this I can only guarantee I can participate between 1-2 a month. For Saturdays, I might be flexible and can do it either from 4-6 pm or 6-8pm \N -1099 \N \N -1100 \N \N -1101 I work as a model and I have a flexible routine. I never really know when I’m going to have work so I checked most times and days. \N -1102 \N \N -1103 My schedule is flexible. I can accommodate different time periods, if agreed in advance. \N -1104 \N \N -1105 I work on shift base, so I am not available for sure saturdays and sundays, during the week I could have some free days and different shifts. If you add me to a group with a planned and shared calendar I can join any location according to my shifts. \N -1106 I’d most preferably to have on Tuesdays but other days are also fine! \N -1107 \N \N -1108 Grundkenntnisse Arabisch ist auch sehr hochgegriffen; \N -1109 \N \N -1110 \N \N -1111 \N \N -1112 \N \N -1113 \N \N -1114 \N \N -1115 \N \N -1116 \N \N -1117 \N \N -1118 \N \N -1119 \N \N -1120 Picking Spanish up again. Soccer, May Thai, Lindy hop, Capoeira. \N -1121 \N \N -1122 \N \N -1123 \N \N -1124 \N \N -1125 \N \N -1126 \N \N -1127 \N \N -1128 \N \N -1129 A1.2 level German \N -1130 \N \N -1131 Mein Deutschniveau ist A2. Ich setze mein weiteres Studium fort \N -1132 \N \N -1133 \N \N -1134 \N \N -1135 \N \N -1136 \N \N -1137 \N \N -1138 \N \N -1139 \N \N -1140 \N \N -1141 \N \N -1142 I usually work in the cultural field as an event producer. \N -1143 \N \N -1144 \N \N -1145 \N \N -1146 I work on shifts, that Is why I did not select some time frames \N -1147 I speak A2/B1 German. \N -1148 \N \N -1149 \N \N -1150 \N \N -1151 Am available weekends at any time or early in the morning on weekdays or later in the day on weekdays. \N -1152 I also play american football, I like to create content.. \N -1153 I am good at small talk but of course in German is still a bit slow. Vielen Dank Elisa Ferrari \N -1154 \N \N -1155 \N \N -1156 As a freelancer with a patchwork of different dayjobs, my schedule varies from week to week. My main interest / thing I would currently like to offer is a set of art/sculpture workshop ideas for kids/youth, which I currently facilitate at Atrium Kunstschule in Reinickendorf. These workshop concepts can be adopted to various circumstances. \N -1157 \N \N -1158 I would like to have more information on how to help with translating from French to English. \N -1159 \N \N -1160 Hello dear community, I have a 5 volunteering day paid leave from my work that I want to use for a good cause this year with volunteering. I saw this opportunity that I thought I might be a good fit but I am also open for other opportunities. What is important for me is that I can commit to it for only 10 weeks in half days and preferably on Friday afternoon as I need to submit these days to my manager as soon as possible for approval. I would also appreciate if I could get somehow a participation letter that could be a proof. Please let me know if you can provide me these and if I need to do anything else to become a volunteer starting from February 7th until April 11th on Fridays in the afternoons. \N -1161 \N \N -1162 \N \N -1163 \N \N -1277 \N \N -1278 Ich bin erstmal nicht in Berlin, aber ungefähr ab Mitte August erreichbar. \N -1279 \N \N -1280 \N \N -1281 \N \N -1164 Hi, I am a young professional in IT. I have every friday free from the end of February to the end of March, I would love to help and support at the Tempelhof refugee center. I think I am quite good with children and I would really enjoy supporting the day care and committing to create and organize some fun activities for the children to do. On the side I can also help with anyone in need of programming or IT support! My skills in german are currently around A2/B1 but I am improving every day. Best, Benjamin \N -1165 \N \N -1166 \N \N -1167 I am working full time but am available most days during my lunch break (12-2pm), so could be available then for appointments for example. \N -1168 Hello, \N -1169 \N \N -1170 \N \N -1171 Please just email or message me to contact me. \N -1172 Ultimate Frisbee - i also put things i am not expert at but down to do (: \N -1173 This is a test from Onur ARICI \N -1174 Happy to teach self defence! \N -1175 My availability on Mondays & Fridays depends on the week--more often than not I am available, but sometimes I'm not in Berlin. I will also be gone from 17.04-25.04 (Easter holidays). Other than that, I have a lot of experience with theatre/acting in addition to the other ones I listed above. \N -1176 \N \N -1177 \N \N -1178 N/a \N -1179 \N \N -1180 Chess Football, basketball, chess, Support with \N -1181 \N \N -1182 I'm really good at playing the clarinet and sing so I can help and volunteer in teaching music \N -1183 \N \N -1184 \N \N -1185 I have a yoga teacher for children certification and would be happy to work with children. \N -1186 \N \N -1187 \N \N -1188 \N \N -1189 \N \N -1190 \N \N -1191 - Shawky 18.03.2024: She helped during the Iftar. She wants to do only accompanying, because her schedule is not clear (doing her MA) \N -1192 \N \N -1193 \N \N -1194 \N \N -1195 \N \N -1196 \N \N -1197 \N \N -1198 Liebes Need4Deed-Team, ich bin Vater von zwei kleinen Kindern (4 und 7 Jahre alt), lebe in Schöneberg, Berlin und arbeite an einer Universität. Ich komme ursprünglich aus Russland, spreche Russisch als Muttersprache und habe etwa B2-Niveau in Deutsch. Da ich selbst viel Freude daran habe, Zeit mit Kindern zu verbringen, würde ich mich sehr freuen, geflüchtete Kinder in der Gemeinschaftsunterkunft zu unterstützen – sei es beim Spielen, Basteln oder einfach im gemeinsamen Alltag. Es wäre schön, einen kleinen Beitrag zu ihrem Wohlbefinden leisten zu können. Ich freue mich auf Ihre Rückmeldung! Herzliche Grüße, Philipp Chapkovski, Ph.D https://chapkovski.github.io/ +4915123570022 \N -1199 ok with bein translation on the list for appointments but not a priority she is into regular volunteering and close to her place so in radickestrs RAC is 22 min bus. \N -1200 \N \N -1201 \N \N -1202 \N \N -1203 Hey! I would love to help out. I currently work at an NGO which does an online 'sprachcafé' and I would be more than happy to use what I have learned through organising this:) Or generally would be keen to help. \N -1204 \N \N -1205 I am Angela from Hong Kong, wanted to participate as a volunteer to help people, I did it many time since teenager. \N -1206 Hello! I've selected all the time frames that would fit in my schedule, however, since I am still studying and working, I can only volunteer regularly (bi-weekly preferred but every week also works) in ONE of these time frames. On thursdays I have a bi-weekly uni class, so for those timeframes (except the 17-20) I could only do every other thursday! \N -1207 Hi! I would love to get involved in your activities, especially creative ones. I have some experience from a few years ago in arts&crafts for 1-3 year olds for KiezOase Schöneberg, which was very fun, and with adults with disabilities. My Führungszeugnis is unfortunately not up to date. \N -1208 I would like to preferably work with kids and queer refugees. \N -1209 \N \N -1210 \N \N -1211 \N \N -1212 \N \N -1213 Gegen Masern bin ich bin aufgrund einer Masernerkrankung während meiner Kindheit immun \N -1214 not registered for regular, just asked to do one time translation \N -1215 \N \N -1216 I'm a fully qualified fitness coach \N -1217 \N \N -1218 I am software engineer and can teach programming \N -1219 \N \N -1220 \N \N -1221 Hello! I'm a certificated yoga teacher, I will be happy to volunteering offering some lessons. \N -1222 \N \N -1223 Hey Team, I am Yoanna and am a native Bulgarian speaker (German & English C1). I am a student working part-time and am generally flexible Thursday and Friday either mornings/afternoons as well as evenings (17-20h) and sometimes on the weekend. I am open to any activities and would love to also engage in organizing some events like Sprachcafe or Festivals. Let me know how I can be helpful! \N -1224 Ich arbeite selbst in einer Behörde und kann daher bei Antragstellungen ggf. unterstützen. \N -1225 Preferred time frame would be either fridays (any time) or on the weekend. \N -1226 \N \N -1227 \N \N -1228 Ich fahre schon lange Skateboard und mach Kickboxen. Diese kann ich den Kindern beibringen. \N -1229 \N \N -1230 I am from Hungary, and i would like to volunteer for two weeks in June! \N -1231 I can also crochet and braid hairstyles from series and movies, I don't know whether that is relevant or even helpful. \N -1232 \N \N -1233 \N \N -1234 \N \N -1235 I can speak Bengali, English, and basic German (A2 level). I am flexible with working times and willing to work on weekdays and weekends if needed. I am open to working in any location in Germany where accommodation is available. I am interested in healthcare, elderly care, working with people with disabilities, and helping in hospitals or care homes. \N -1236 I have long experience working with children, both due to professional activities (summer schools, baby sitting) and as a volunteer, more recently worked with an association offering after school activities of an underserved community in the amazons in Peru. \N -1237 \N \N -1238 \N \N -1239 \N \N -1240 \N \N -1282 \N \N -1283 \N \N -1284 \N \N -1285 \N \N -1345 \N \N -1241 Hello here, I am currently looking for an opportunity to volunteer and realize myself in this need. I am from Ukraine and have been living and working in Berlin for over a year, studying the language. I am fluent in Ukrainian and Russian. A little worse in English and at an intermediate level in German. But I am constantly working on it. I work in the IT field, but in the past, while studying at the university, I worked part-time as a tutor in mathematics, Ukrainian language and history mostly with young people. If you suddenly have a need, I can find free time after 6 pm (Monday, Wednesday, and also up to 3 hours on weekends). Best wishes, Vadym \N -1242 I am a classically trained flautist and am comfortable teaching the recorder. Also can read sheet music. I am also involved at a basketball club in Berlin so can potentially organize an event through that. \N -1243 \N \N -1244 Hello, My name is Kerstin Larsson and I am a student pursuing my master's degree in Paris in International Development. I will be going to Berlin over the summer from June 22 for at least a month, probably longer. I will be studying German each day from 9-12.30 during the weeks and the hours after that I would like to help out and volunteer. I am also available during the weekends. Please let me know if you need any additional information about me and my experiences. Best regards/ Kerstin Larsson \N -1245 \N \N -1246 \N \N -1247 \N \N -1248 I'm also a meditation and mindfulness teacher, and happy to volunteer to teach that to children or adults. \N -1249 \N \N -1250 \N \N -1251 \N \N -1252 \N \N -1253 \N \N -1254 Times are flexible. Preference would be teaching kids chess/guitar \N -1255 \N \N -1256 \N \N -1257 \N \N -1258 I'd like to work in gardening, planting trees, etc., and I can also help sort clothes. I'm a teacher with 15 years of experience in Venezuela, but I've only been here in Germany for a short time. \N -1259 \N \N -1260 \N \N -1261 \N \N -1262 \N \N -1263 \N \N -1264 \N \N -1265 \N \N -1266 \N \N -1267 \N \N -1268 \N \N -1269 \N \N -1270 \N \N -1271 \N \N -1272 \N \N -1273 \N \N -1274 \N \N -1275 \N \N -1276 \N \N -1286 I can write. I can do writing Workshops. \N -1287 Valid from 21st July 2025 until 30th July. Before starting my new job I have 2 weeks off. I have worked in big companies as Executive Assistant and also in a ministry recently, so I know German bureaucracy and also real estate agents etc. Very well and would like to help. Lots of experience in Hospitality & Event Management, Star Trek, Architecture / Guide Tours, Club Culture, Chaos Computer Club \N -1288 \N \N -1289 \N \N -1290 \N \N -1291 \N \N -1292 \N \N -1293 \N \N -1294 hi, zu den Zeiten: ich habe eine Auswahl angegeben, die für mich grundsätzlich regelmäßig möglich sind. Insgesamt kann ich mir so 4-8h pro Woche vorstellen. Machmal muss ich wegen des Studiums ist Arbeit über mehrere Tage wegfahren. Ich habe eine Schauspielausbildung und kann gerne, was mit Sprechen und Vorlesen machen. Außerdem Interesse an schulischer Mathematik. Gruppen geleitet habe ich noch nicht und ist mir möglicherweise zu schwierig. Ich habe ein Führungszeugnis von 2021/2022, ist das aktuell genug? Freue mich über ein Kennenlernen. \N -1295 I've heard good things of your team and activity, so I'm inspired to join. \N -1296 \N \N -1297 \N \N -1298 nice to hear \N -1299 \N \N -1300 \N \N -1301 My mother tongue is brazilian portuguese. \N -1302 \N \N -1303 \N \N -1304 Ich habe einen Minijob, wo ich sehr unterschiedliche Zeiten habe, ich kann also jede Woche unterschiedlich. An den angegebenen Zeiten sollte ich (hoffentlich) immer können und manchmal auch an den anderen Tagen:) \N -1305 \N \N -1306 \N \N -1307 \N \N -1308 \N \N -1309 \N \N -1310 I speak fluent Portuguese and am currently learning Russian. \N -1311 \N \N -1312 \N \N -1313 \N \N -1314 \N \N -1315 \N \N -1316 Ich habe die Trainer C-Linzenz fürs Jugendfussball. Würde gerne Kindern, wenn Interesse da ist Tennis beibringen. Ich spiele selbst erst ein halbes Jahr, aber finde den Sport sowohl sehr gut für den Körper als auch um Fähigkeiten fürs Leben zu erlernen. \N -1317 \N \N -1318 \N \N -1319 \N \N -1320 \N \N -1321 \N \N -1322 Arabic \N -1323 \N \N -1324 \N \N -1325 \N \N -1326 \N \N -1327 I live near to Berlin but going to Berlin is not a problem for me, especially if it's 2-3 times per week.Also it's been a long time since I haven't played piano so I'm not sure about this skill.I also have another instrument like ukulele, kalimba und Blockflaute \N -1328 \N \N -1329 I am looking for vollunteer opportunity’s for coming week. I am flexibel and have a lot of time \N -1330 \N \N -1331 \N \N -1332 \N \N -1333 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N -1334 \N \N -1335 \N \N -1336 Ich heiße Faraj Ahmed, bin 43 Jahre alt und treibe täglich Sport. Ich arbeite als Telekommunikationsingenieur. Ich spreche Arabisch, Französisch und Englisch und lerne derzeit Deutsch. Ich möchte gerne an diesem Programm teilnehmen, weil ich Kinder sehr mag. \N -1337 \N \N -1338 \N \N -1339 \N \N -1340 \N \N -1341 \N \N -1342 \N \N -1343 Also native russian speaker \N -1344 I am highly motivated and truly eager to join your volunteer team. For me, this is a chance to contribute to something meaningful, grow through new experiences, and connect with people who share the same values. Since I haven’t received my school schedule yet, I am not entirely sure about my availability on weekdays, but I am confident I can commit on weekends and dedicate myself fully. I believe my energy and genuine desire to help could be a valuable addition to your team. \N -1346 My name is Yaroslava and I came from Ukraine. I am a journalist by education. I am 39 years old. I am currently preparing for the German language exam, level B1. I plan to continue my studies to level C1. Since I am currently looking for a job, I have free time. I would be happy to help people. I have experience volunteering in the OlamAid organization, as well as in Diakonie Krefeld und Viersen. I also have experience accompanying Ukrainians to appointments with doctors, to government agencies, to viewing apartments and signing rental contracts. \N -1347 \N \N -1348 \N \N -1349 After ten years working as a physician in the UK, I moved to Berlin to work as a medical editor at digital education platform AMBOSS. I recently passed Telc C1 German with “Sehr gut.” I am interested in finding out more about opportunities to volunteer with you. \N -1350 \N \N -1351 \N \N -1352 \N \N -1353 \N \N -1354 Staatlich anerkannte Sozialassistentin, Betreuungsassistentin sowie Altenpflegehelferin. \N -1355 \N \N -1356 \N \N -1357 \N \N -1358 I'm really looking forward to working with Need4Deed, and to contribute to supporting migrants in their journey of integrating in Germany. I want them to know that they are seen and heard, and that they don't have to go through this challenging process by themselves. \N -1359 \N \N -1360 \N \N -1361 Basic Level Kiswahili \N -1362 Ehrenamtsspaziergang Neukölln \N -1363 \N \N -1364 LGBTIQ+ \N -1365 \N \N -1366 \N \N -1367 \N \N -1368 \N \N -1369 I know Norwegian, English and Turkish fluently. Because of this I can also communicate with most Swedish people because the language is very similar. I know a bit french as well, A2 level. I study full-time, so for me the weekends are best. However, I would love to help with projects or festivals whenever that happens. I like to be with children and be active, so maybe football or basketball with the young and girls particularly. \N -1370 \N \N -1371 \N \N -1372 \N \N -1373 Iam outside Germany .iam looking forward to have an online interview.please just give me the chance. \N -1374 i cook delicious egyptian food and would love to make meals for the refugees \N -1375 \N \N -1376 I speak Marathi fluently as well. I would like to add that i would be available to do online volunteering as well. Such as tutoring online. \N -1377 I am available most days of the week since I have a very flexible job at the moment! I recently moved to Berlin so I'd like to participate and help with any activities that still need support. \N -1378 \N \N -1379 \N \N -1380 \N \N -1381 Im starting to learn arabic, but just started now \N -1382 \N \N -1383 \N \N -1384 \N \N -1385 \N \N -1386 Fluent Finnish (second language), basic German (A2). Generally, I’m open to any location depending on the day and time. I have a business degree with major in marketing and work experience in digital marketing. \N -1387 \N \N -1388 \N \N -1389 Hello there, a friend of mine told me you are looking for programmes knowing TS/Next.js to help out for a couple of hours/week. I'm a graduate of 42 Berlin and happy to help. \N -1390 I speak native danish \N -1391 \N \N -1392 I also speak catalan and I'm willed to help with everything i can \N -1393 ich komme auch von ALEF \N -1394 Ich wäre Donnerstags oder noch lieber Freitags verfügbar für ein paar Stunden auszuhelfen. Was gibt es für Standorte? Ich wohne in Neukölln und arbeite in Friedrichshain, bin also flexibel. Ich habe schon seit vielen Jahren mit Kindern gearbeitet, von Babysitten bis spachhilfe.  \N -1395 ich habe euer Engagementangebot zur Nachhilfe und Hausaufgabenhilfe für geflüchtete Kinder gesehen und würde mich gerne beteiligen. Ich habe Freude daran, mit Kindern zu arbeiten und sie beim Lernen zu unterstützen, insbesondere beim Deutschlernen (Muttersprache).Ich wohne in Wilmersdorf-Charlottenburg und wäre zeitlich flexibel an Wochentagen, sowohl tagsüber als auch abends. Ein erweitertes Führungszeugnis müsste ich noch beantragen. \N -1396 Sprachcafe Sonnenallee \N -1397 \N \N -1398 Hello, I'm part of the ALEF Team at the Student Forum for Participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/star \N -1399 Bitte per Mail antworten - ich verstehe noch kein Deutsch oder Englisch \N -1400 \N \N -1401 \N \N -1402 \N \N -1403 Sprach Café -Sonnenallee \N -1404 \N \N -1405 \N \N -1406 On Tuesdays I am available until max 19:00. I play the violin. \N -1407 Instagram: Hallo, guten Tag!\n\nMein Name ist Luana, auch Luah genannt, und ich bin Fotografin und Illustratorin. Ich würde mich sehr freuen, mich in kreativen Projekten mit Frauen und Kindern zu engagieren. Ich habe 6 Stunden pro Woche Zeit und helfe euch auch gerne bei allen anderen Anliegen.\nIch bin Brasilianerin, 45 Jahre alt, Mutter von zwei wundervollen Kindern und lebe seit 12 Jahren in Berlin. Ich verstehe und spreche +- gut Deutsch. Außerdem spreche ich durchschnittlich Englisch. Trotz meiner Schüchternheit bin ich sehr engagiert und motiviert und kann viele kreative Ideen einbringen. Es wäre mir eine Ehre, mich ehrenamtlich zu engagieren!\nLiebe Grüße\nLuana de Figueiredo \N -1408 \N \N -1409 I‘d like to work with women and Kids :) \N -1410 \N \N -1411 Native language is Icelandic. I also know some Danish and a little bit Arabic. \N -1412 \N \N -1413 \N \N -1414 \N \N -1415 \N \N -1416 \N \N -1417 \N \N -1418 \N \N -1419 \N \N -1420 \N \N -1421 Deutschkenntnisse B1 \N -1422 \N \N -1423 \N \N -1424 \N \N -1425 \N \N -1426 Ich wohne in Düsseldorf, gibt es auch hier die Einsatzmöglichkeiten oder nur in Berlin? \N -1427 \N \N -1428 \N \N -1429 \N \N -1430 danish \N -1431 Hello! I am a Colombian social worker with a little experience working with migrants, I am also currently studying a master in human rights so I hope maybe some of my knowledge could help \N -1432 \N \N -1433 \N \N -1434 I also know some Soranî \N -1435 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N -1436 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N -1437 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N -1438 \N \N -1439 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N -1440 \N \N -1441 \N \N -1442 I used to work as a legal aid at a refugee organization in Cairo, Egypt. I don’t know German, so I’m limited, but I’d love to help where needed. \N -1443 \N \N -1444 \N \N -1445 \N \N -1446 \N \N -1447 \N \N -1448 I graduated from Fine Arts in Ceramics and I am currently interning at a ceramics studio. This creative background helps me bring a hands-on and engaging approach to my volunteer work. \N -1449 \N \N -1450 \N \N -1451 \N \N -1452 \N \N -1453 \N \N -1454 I speak Italian at a bilingual level, and French and German at an intermediate level. \N -1455 \N \N -1456 \N \N -1457 my German is only A2, but I'm happy to muddle through. \N -1458 Thanks for this \N -1459 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N -1460 Hey, I'm a certified yoga teacher and would love to give yoga lessons :) \N -1461 \N \N -1462 \N \N -1463 I would be happy to work with children but I’m open to alll your suggestions :) \N -1464 \N \N -1465 \N \N -1466 \N \N -1467 \N \N -1468 \N \N -1469 My name is Zainab Irum, and I’m a certified fitness and physique coach with hands-on experience in well-known gyms in Dubai. I’m especially passionate about working with women and helping them build strength, confidence, and healthier lifestyles. I enjoy combining fitness, nutrition, and an understanding of people to create changes that truly last, and I’m always eager to keep learning and growing in this field. I‘m fluent in English, Dari, and Urdu/Hindi. I prefer afternoon timings as i am studying in the Mornings. I am living in District Pankow. \N -1470 \N \N -1471 \N \N -1472 \N \N -1473 \N \N -1474 \N \N -1475 \N \N -1476 I am ready for any opportunities till 1st March 2026 \N -1477 I am a PhD student and would like to support children with homework and learning activities. I am available in the afternoons and weekends. I can communicate in English and Urdu, and I am excited to help children improve their Math skills and enjoy learning. \N -1478 \N \N -1479 Friday is currently the most free day for me, but I do get some time free on thursday sporadically \N -1480 \N \N -1481 \N \N -1482 I have worked as a teacher in school and volunteered in a welcome class. I would like volunteer with refugees. I am currently unemployed so I have availability during the day, however once I get a job I would then be available to volunteer after 6pm. I look forward to hearing from you! \N -1483 \N \N -1484 I founded climb2connect and would be keen to also do collabs outside of volunteering :) \N -1485 \N \N -1486 \N \N -1487 I'm applying as a Back-End Developer volunteer \N -1488 I can also speak fluent Hungarian. \N -1489 \N \N -1490 \N \N -1491 \N \N -1492 I dont know, weather or not i need to reapply for my certificates \N -1493 \N \N -1494 I can start on mai 2026 \N -1495 I am talking with Fiore about potentially helping them \N -1496 \N \N -1497 other sports: table tennis, climbing and bouldering, (aggressive) inline skating; preferred school subjects: math, physics, biology (my skill in that order :) ) \N -1498 Hallo, Mein Name ist Zeynep Firdevsoglu. Ich bin Ehrenamtskoordinatorin beim Malteser Integrationsdienst und leite ein Integrationsprojekt, in dem wir mit zahlreichen Angeboten Migrantinnen sowie geflüchtete Menschen unterstützen. Obwohl ich mehrfach versucht habe, unsere Angebote in den Unterkünften bekannt zu machen und die Menschen zu unseren Unterstützungsangeboten einzuladen, ist dies bisher leider nicht gelungen. Daher möchte ich mich und unsere Angebote über diese Plattform vorstellen. Wir bieten folgende Angebote an und freuen uns sehr, wenn wir für die Zielgruppen hilfreich sein können: Deutschkurse von A1 bis C1 sowie Sprachcafés Individuelle Sprachlernunterstützung Englisch-Sprachcafé Frauentheater Sportprojekte (derzeit Bouldern) Kulturprojekte Kochprojekt Yoga-Projekt Kunstprojekt Unsere Ehrenamtlichen sprechen unter anderem folgende Sprachen: Deutsch, Englisch, Türkisch, Arabisch, Persisch, Armenisch, Spanisch, Ukrainisch u. v. m. Ich freue mich sehr auf Ihre Rückmeldungen. \N -1499 \N \N -1500 I am keen to work with young children (I am primary carer for my own) and would be happy to get hold of any necessary documentation \N -1501 Hallo! Mein Name ist Izzy. Ich bin 27 Jahre alt und lebe in Neukölln. Ich kann 3–5 Stunden pro Woche Zeit investieren. Ich bin kontaktfreudig und habe bereits ehrenamtlich Erfahrung gesammelt, unter anderem beim Kochen und Ausgeben von Essen in einer Tafel. \N -1502 \N \N -1503 \N \N -1504 \N \N -1505 The times are more flexible during the semester break. \N -1506 \N \N -12 \N 2 -469 \N 6 -427 \N 6 -351 \N 6 -680 \N 6 -662 \N 6 -649 \N 6 -513 \N 6 -493 \N 6 -729 \N 4 -728 \N 1 -721 \N 2 -1598 \N 6 -1597 \N 6 -1599 \N \N -1600 \N \N -1601 \N \N -1602 \N 3 -1603 \N 6 -505 \N 5 -1507 Hello Need4Deed Team! I'd love to help out whilst I am unemployed and looking for a new full-time job. I'd love to help out with sewing and arts&crafts, since I've got a lot of experience in running a fashion label and organizing arts&craft workshops for friends. Sharing my Instagram here, so that you can get an idea of my sewing projects: https://www.instagram.com/sophi.sets. If you like, I can also share some pictures of the ceramics and tie-dye workshops I organized. In addition, I am also very up for accompanying men and women with all sorts of things (also very experienced in organizing excursions, games and events). I am available during all weekdays and Sundays in February, and maybe March too. Once I start working again, I can continue to help out on Sundays. Wishing you a lovely day, and looking forward to hearing from you! \N -1508 \N \N -1509 \N \N -1510 \N \N -1511 \N \N -1512 I am more flexible w locations \N -1513 \N \N -1514 \N \N -1515 I am a trainee psychoanalyst and expressive arts facilitator; formerly an academic in urban studies. I'm a mother. I don't drive. I have passive German skills; can read and understand with lower ability to speak it. \N -1516 \N \N -1517 \N \N -1518 Times are just filled in with a first thought, can be discussed/adapted to needs :) \N -1519 \N \N -1520 \N \N -1521 I would love to help as a volunteer :) \N -1522 I'm starting a psychology masters starting September and I would love to have more social work - supervised, if possible. \N -1523 \N \N -1524 \N \N -1525 \N \N -1526 \N \N -1527 \N \N -1528 \N \N -1529 \N \N -1530 \N \N -1531 \N \N -1532 \N \N -1533 \N \N -1534 \N \N -1535 \N \N -1536 \N \N -1537 \N \N -1538 Guten Abend sehr geehrte Damen und Herren, mein Name ist Igor. Ich komme aus der Ukraine und wohne schon seit 2019 im Berlin. Liebe Grüße Igor \N -1539 \N \N -1540 Hi! I am a Master's Student at TU Berlin, with good background in math. I also play these sports in high level: Volleyball, table tennis, iceskating, gymnastics, hiphop dance and Turkish cultural dance, swimming. \N -1541 \N \N -1542 Hello! I just wanted to mention that I am currently working in a cafe and my shifts vary from week to week. Although I can ask my manager to schedule me according to my volunteer activities, in exceptional cases this may not be possible. \N -1543 \N \N -1544 \N \N -1545 \N \N -1546 \N \N -1547 \N \N -1548 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N -1549 I have a full time job (9-5) at a tech company, so I’ll only be available in the evenings on the weekdays. \N -1550 I would like to apply as Erasmus Internship, currently I am doing my PhD in social work and will send the rest of the documents through email \N -1551 \N \N -1552 \N \N -1553 I am also learning German (currently at A2 and actively learning), so happy to work with children who speak german! \N -1554 I can communicate well with children. I can also help in the kitchen.I am a nurse but my language skills are not good enough to help you with my profession. \N -1555 \N \N -1556 \N \N -1557 \N \N -1558 I teach natural dyeing and eco printing as well, and have a variable, but flexible schedule \N -1559 \N \N -1560 \N \N -1561 \N \N -1562 \N \N -1563 Ich hatte in den letzten Monaten etwas freie Zeit, um mich ehrenamtlich zu engagieren. Letztes Jahr habe ich während der Universitätsweltspiele im Volleyballstadion als Freiwilliger mitgeholfen. \N -1564 \N \N -1565 I speak some Japanese too. \N -1566 \N \N -1567 Still learning Deutsche . A2 \N -1568 \N \N -1569 \N \N -1570 I'm working 9-5pm so i could only support before or after \N -1571 \N \N -1572 \N \N -1573 bin ohne Träger seit 4 Jahren aktiv in der Unterstützung beim Ankommen ..und... auf dem Weg zum Abitur \N -1574 \N \N -1575 \N \N -1576 \N \N -1577 \N \N -1578 \N \N -1579 \N \N -1580 \N \N -1581 \N \N -1582 \N \N -1583 Hello, I'm part of the ALEF Team at the student forum for participation at Free University Berlin. Mail: info@studentisches-forum.de, website: https://www.alef-berlin.de/start \N -1584 \N \N -1585 Deutsch spreche ich auch fließend! My schedule is often changing from week to week. I am a banqueting and restaurant manager. I would love to help out with children, although I don’t have too much professional experience working with young children, I am an older sister and have helped out teenagers before with homework when I was younger. I do have some basic understanding of the Cyrillic alphabet. In my free time I like to cook and paint. I’m very creative and caring as a person and would really like to help in any way that I can. I really look forward to being involved. I also studied social policy with government when I was at university. \N -1586 \N \N -1587 I became jobless recently and would like to use my time to give something back to the community if possible. Besides the German language courses I am taking from Monday to Thursday in the morning, I am free and flexible the rest of the time. \N -1588 \N \N -1589 \N \N -1590 K-Fetisch café \N -1591 \N \N -1592 \N \N -1593 \N \N -1594 \N \N -1595 \N \N -1596 Freie Universität \N -805 \N 6 -804 \N 6 -803 \N 6 -801 \N 6 -800 \N 6 -799 \N 6 -798 \N 6 -797 \N 4 -2 \N 1 -3 \N 2 -4 \N 2 -5 \N 2 -6 \N 1 -7 \N 1 -8 \N 1 -9 \N 5 -10 \N 3 -11 \N 5 -1604 \N 3 -409 \N 1 -327 \N 1 -263 \N 1 -619 \N 3 -598 \N 3 -1605 \N 6 -1606 \N \N -1607 \N \N -1608 \N \N -587 \N 6 -597 \N 6 -606 \N 6 -610 \N 6 -623 \N 6 -637 \N 6 -1609 \N 6 -1610 \N 6 -1611 \N 6 -1612 \N 3 -1613 \N \N -1614 \N \N -1615 \N \N -1616 \N \N -1617 \N \N -1618 \N \N -1619 \N \N -282 \N 3 -1620 \N \N -1621 \N 6 -1622 \N \N -1623 \N \N -1624 \N 6 -1625 \N 1 -1626 \N 6 -1627 \N 6 -1628 \N \N -569 \N 3 -526 \N 1 -543 \N 1 -677 \N 2 -614 \N 6 -678 \N 3 -573 \N 6 -454 \N 6 -588 \N 5 -625 \N 2 -431 \N 4 -428 \N 4 -374 \N 2 -420 \N 4 -1629 \N 6 -1630 \N 5 -1631 \N 6 -1632 \N 1 -1633 \N 6 -1635 \N 3 -1634 \N 2 -1636 \N \N -540 \N 3 -629 \N 1 -499 \N 3 -498 \N 4 -496 \N 4 -633 \N 2 -1637 \N 6 -1638 \N 6 -\. - - --- --- Data for Name: profile_activity; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.profile_activity (id, profile_id, activity_id) FROM stdin; -1 2 4 -2 3 1 -3 4 1 -4 5 1 -5 6 4 -6 7 3 -7 7 13 -8 8 3 -9 9 2 -10 10 14 -11 11 2 -12 12 1 -13 13 3 -14 14 1 -15 16 6 -16 17 4 -17 18 14 -18 19 14 -19 20 4 -20 21 17 -21 22 1 -22 23 7 -23 24 4 -24 25 4 -25 26 4 -26 28 1 -27 29 17 -28 30 4 -29 31 21 -30 31 4 -31 32 21 -32 32 4 -33 33 21 -34 34 3 -35 35 2 -36 36 13 -37 37 7 -38 38 17 -39 41 4 -40 42 10 -41 44 3 -42 46 1 -43 47 6 -44 48 21 -45 48 1 -46 48 4 -47 49 6 -48 50 7 -49 51 15 -50 51 17 -51 52 21 -52 53 3 -53 55 14 -54 56 14 -55 57 3 -56 58 2 -57 59 1 -58 60 21 -59 61 21 -60 62 21 -61 63 21 -62 64 6 -63 65 21 -64 66 21 -65 67 21 -66 68 21 -67 69 21 -68 70 21 -69 71 17 -70 72 21 -71 73 21 -72 74 21 -73 75 21 -74 76 21 -75 78 4 -76 79 13 -77 80 6 -78 80 1 -79 80 2 -80 81 2 -81 82 21 -82 83 4 -83 84 21 -84 84 4 -85 85 4 -86 86 4 -87 87 7 -88 88 14 -89 89 21 -90 89 6 -91 89 1 -92 90 4 -93 91 21 -94 92 21 -95 93 6 -96 95 17 -97 97 7 -98 98 13 -99 99 1 -100 100 13 -101 101 13 -102 102 17 -103 103 6 -104 103 1 -105 104 4 -106 105 1 -107 106 1 -108 108 17 -109 109 13 -110 110 13 -111 111 1 -112 112 21 -113 112 15 -114 114 17 -115 115 3 -116 115 17 -117 116 21 -118 120 13 -119 121 17 -120 122 17 -121 123 1 -122 124 21 -123 125 17 -124 126 8 -125 127 14 -126 128 15 -127 128 17 -128 129 3 -129 130 5 -130 131 13 -131 133 4 -132 134 2 -133 135 14 -134 136 8 -135 137 1 -136 138 4 -137 139 13 -138 140 15 -139 141 13 -140 142 3 -141 143 1 -142 144 1 -143 145 13 -144 146 21 -145 147 21 -146 148 2 -147 149 17 -148 150 13 -149 151 3 -150 151 13 -151 152 3 -152 152 13 -153 154 4 -154 157 22 -155 157 4 -156 159 19 -157 166 22 -158 168 21 -159 168 20 -160 169 22 -161 169 4 -162 170 21 -163 172 22 -164 172 4 -165 176 21 -166 178 21 -167 179 1 -168 180 22 -169 182 11 -170 190 21 -171 193 1 -172 194 13 -173 195 4 -174 196 4 -175 199 1 -176 200 3 -177 203 21 -178 203 22 -179 203 4 -180 205 1 -181 206 1 -182 207 21 -183 208 1 -184 211 17 -185 212 13 -186 217 21 -187 217 4 -188 219 13 -189 220 1 -190 221 14 -191 222 22 -192 222 4 -193 224 11 -194 224 3 -195 225 13 -196 226 3 -197 227 12 -198 228 11 -199 229 14 -200 231 1 -201 233 2 -202 234 1 -203 235 2 -204 236 13 -205 237 13 -206 238 4 -207 239 13 -208 241 16 -209 242 22 -210 245 21 -211 245 4 -212 246 3 -213 249 21 -214 249 22 -215 249 1 -216 250 21 -217 250 22 -218 250 1 -219 251 21 -220 251 22 -221 251 1 -222 252 1 -223 253 13 -224 255 21 -225 255 4 -226 256 21 -227 256 22 -228 257 13 -229 258 21 -230 258 4 -231 259 1 -232 260 21 -233 260 4 -234 263 13 -235 264 13 -236 265 22 -237 266 13 -238 267 3 -239 268 16 -240 269 13 -241 271 21 -242 272 22 -243 272 4 -244 273 12 -245 275 1 -246 276 21 -247 277 3 -248 278 13 -249 279 14 -250 280 2 -251 282 12 -252 283 2 -253 284 13 -254 285 6 -255 286 21 -256 286 4 -257 287 21 -258 288 22 -259 288 4 -260 289 22 -261 289 4 -262 291 22 -263 291 4 -264 293 3 -265 293 4 -266 296 17 -267 297 22 -268 298 22 -269 298 4 -270 299 4 -271 300 13 -272 301 13 -273 303 1 -274 305 16 -275 309 21 -276 310 21 -277 311 4 -278 312 22 -279 312 4 -280 315 5 -281 316 22 -282 316 4 -283 317 22 -284 322 15 -285 323 1 -286 324 22 -287 325 22 -288 326 1 -289 327 13 -290 329 16 -291 330 13 -292 332 22 -293 332 4 -294 333 13 -295 335 1 -296 336 2 -297 337 16 -298 338 11 -299 339 16 -300 340 13 -301 342 7 -302 345 16 -303 346 21 -304 348 3 -305 349 2 -306 350 22 -307 351 18 -308 351 4 -309 352 22 -310 353 22 -311 354 22 -312 354 4 -313 355 17 -314 356 17 -315 357 21 -316 357 4 -317 358 21 -318 358 4 -319 359 18 -320 360 2 -321 361 7 -322 362 22 -323 363 22 -324 364 12 -325 365 21 -326 366 1 -327 367 1 -328 368 17 -329 369 22 -330 370 1 -331 371 13 -332 372 2 -333 373 20 -334 374 1 -335 375 21 -336 377 4 -337 379 6 -338 380 8 -339 381 11 -340 382 15 -341 383 21 -342 383 20 -343 384 22 -344 385 8 -345 387 22 -346 388 4 -347 389 20 -348 390 18 -349 391 4 -350 392 8 -351 393 8 -352 394 22 -353 395 22 -354 396 22 -355 397 8 -356 398 22 -357 399 22 -358 400 4 -359 401 22 -360 402 22 -361 403 1 -362 404 22 -363 405 22 -364 406 18 -365 407 18 -366 408 3 -367 409 13 -368 410 22 -369 411 5 -370 412 1 -371 413 3 -372 414 12 -373 415 8 -374 416 22 -375 417 18 -376 418 21 -377 419 22 -378 420 8 -379 421 1 -380 422 3 -381 423 16 -382 424 21 -383 425 21 -384 425 22 -385 426 18 -386 427 22 -387 428 8 -388 429 22 -389 430 18 -390 431 8 -391 432 22 -392 433 13 -393 434 22 -394 435 8 -395 436 3 -396 437 1 -397 438 3 -398 439 8 -399 440 22 -400 441 7 -401 442 16 -402 443 18 -403 444 22 -404 445 18 -405 446 8 -406 447 22 -407 448 22 -408 449 22 -409 450 4 -410 451 21 -411 452 3 -412 453 22 -413 454 22 -414 455 18 -415 456 6 -416 457 22 -417 458 22 -418 459 22 -419 460 22 -420 461 22 -421 462 22 -422 463 22 -423 464 18 -424 465 22 -425 466 13 -426 467 22 -427 468 22 -428 469 22 -429 470 22 -430 471 22 -431 472 22 -432 473 22 -433 474 8 -434 475 8 -435 476 8 -436 477 3 -437 478 12 -438 479 13 -439 480 13 -440 481 22 -441 482 22 -442 483 22 -443 484 22 -444 485 22 -445 486 18 -446 487 3 -447 488 1 -448 489 3 -449 490 1 -450 493 22 -451 494 16 -452 495 22 -453 496 8 -454 497 18 -455 498 8 -456 499 16 -457 500 18 -458 501 13 -459 502 22 -460 504 18 -461 505 2 -462 506 22 -463 507 2 -464 508 9 -465 509 3 -466 510 18 -467 511 22 -468 512 22 -469 513 22 -470 514 3 -471 515 13 -472 516 16 -473 517 1 -474 518 18 -475 519 22 -476 520 22 -477 522 22 -478 523 22 -479 524 22 -480 525 13 -481 526 3 -482 527 13 -483 528 15 -484 529 8 -485 530 18 -486 531 16 -487 532 18 -488 533 18 -489 534 22 -490 535 18 -491 536 22 -492 537 14 -493 538 22 -494 539 22 -495 540 16 -496 541 13 -497 542 22 -498 543 13 -499 544 5 -500 545 22 -501 546 1 -502 546 2 -503 547 1 -504 548 22 -505 549 22 -506 550 18 -507 551 13 -508 552 17 -509 553 22 -510 554 21 -511 554 22 -512 555 22 -513 556 21 -514 556 22 -515 556 18 -516 556 19 -517 557 22 -518 558 21 -519 559 13 -520 560 22 -521 561 15 -522 562 4 -523 563 22 -524 564 22 -525 565 8 -526 566 6 -527 567 16 -528 568 13 -529 569 11 -530 570 17 -531 571 11 -532 572 22 -533 573 22 -534 574 22 -535 575 8 -536 576 13 -537 577 22 -538 578 22 -539 579 18 -540 580 12 -541 581 3 -542 582 16 -543 583 22 -544 584 4 -545 585 8 -546 586 2 -547 587 18 -548 588 2 -549 589 22 -550 590 22 -551 591 3 -552 592 1 -553 593 16 -554 594 1 -555 595 22 -556 596 22 -557 597 18 -558 598 14 -559 599 22 -560 600 3 -561 601 22 -562 602 22 -563 603 1 -564 604 6 -565 605 1 -566 606 18 -567 607 22 -568 608 18 -569 609 22 -570 610 18 -571 611 17 -572 611 13 -573 612 22 -574 613 22 -575 614 22 -576 615 22 -577 616 22 -578 617 22 -579 618 2 -580 619 14 -581 620 22 -582 621 18 -583 622 8 -584 623 18 -585 624 18 -586 625 6 -587 625 1 -588 626 21 -589 626 18 -590 627 2 -591 628 16 -592 629 11 -593 629 3 -594 629 13 -595 630 1 -596 630 16 -597 630 2 -598 631 1 -599 631 16 -600 633 1 -601 634 18 -602 635 1 -603 635 13 -604 636 1 -605 636 2 -606 636 13 -607 637 18 -608 638 4 -609 639 22 -610 640 14 -611 640 8 -612 641 22 -613 642 18 -614 643 4 -615 644 16 -616 645 22 -617 646 18 -618 647 18 -619 648 2 -620 649 22 -621 650 22 -622 651 18 -623 652 22 -624 653 18 -625 654 22 -626 655 22 -627 656 22 -628 657 22 -629 658 22 -630 659 1 -631 659 4 -632 660 13 -633 661 1 -634 661 2 -635 661 4 -636 662 18 -637 663 22 -638 664 22 -639 665 3 -640 666 2 -641 667 18 -642 668 22 -643 669 18 -644 670 18 -645 671 22 -646 672 21 -647 673 18 -648 674 22 -649 675 18 -650 676 22 -651 677 11 -652 677 6 -653 677 3 -654 678 3 -655 678 16 -656 679 22 -657 680 18 -658 681 22 -659 682 18 -660 683 18 -661 684 22 -662 685 22 -663 686 22 -664 687 2 -665 688 18 -666 689 18 -667 690 22 -668 691 1 -669 693 18 -670 694 22 -671 695 22 -672 696 18 -673 697 22 -674 698 22 -675 699 6 -676 699 1 -677 699 7 -678 699 9 -679 700 6 -680 700 1 -681 700 15 -682 700 16 -683 700 9 -684 700 10 -685 700 2 -686 700 13 -687 701 1 -688 701 2 -689 702 3 -690 702 9 -691 703 22 -692 704 11 -693 704 2 -694 705 12 -695 705 3 -696 705 17 -697 705 9 -698 706 3 -699 707 18 -700 709 4 -701 709 13 -702 710 18 -703 710 19 -704 711 1 -705 711 7 -706 711 17 -707 711 8 -708 711 13 -709 712 7 -710 712 3 -711 712 2 -712 713 6 -713 713 1 -714 714 4 -715 715 6 -716 715 1 -717 715 9 -718 716 22 -719 717 22 -720 718 11 -721 718 6 -722 718 3 -723 718 13 -724 719 22 -725 720 6 -726 720 1 -727 720 7 -728 720 3 -729 720 16 -730 721 11 -731 721 1 -732 722 3 -733 723 22 -734 724 18 -735 725 3 -736 726 18 -737 727 1 -738 727 13 -739 728 16 -740 728 8 -741 728 4 -742 729 1 -743 729 16 -744 729 8 -745 729 2 -746 730 12 -747 730 11 -748 730 6 -749 730 3 -750 730 16 -751 730 8 -752 730 9 -753 730 10 -754 730 4 -755 730 13 -756 731 16 -757 732 1 -758 732 15 -759 732 16 -760 733 17 -761 733 4 -762 733 13 -763 734 22 -764 735 22 -765 737 16 -766 737 8 -767 738 12 -768 738 11 -769 738 6 -770 738 15 -771 738 5 -772 738 3 -773 738 17 -774 738 16 -775 738 9 -776 738 10 -777 738 13 -778 739 12 -779 739 11 -780 739 16 -781 739 8 -782 739 2 -783 739 4 -784 740 6 -785 740 1 -786 740 9 -787 740 10 -788 741 18 -789 742 8 -790 743 6 -791 743 1 -792 743 16 -793 743 2 -794 743 13 -795 744 6 -796 744 1 -797 744 8 -798 744 2 -799 745 22 -800 746 18 -801 747 18 -802 748 18 -803 749 21 -804 750 4 -805 751 11 -806 751 1 -807 751 3 -808 752 7 -809 752 3 -810 753 22 -811 754 2 -812 756 22 -813 757 22 -814 758 11 -815 758 6 -816 758 1 -817 758 2 -818 759 2 -819 760 22 -820 761 22 -821 762 22 -822 763 22 -823 764 22 -824 765 18 -825 766 18 -826 767 22 -827 768 13 -828 769 1 -829 769 17 -830 769 2 -831 769 13 -832 772 1 -833 773 6 -834 773 16 -835 774 22 -836 776 18 -837 777 3 -838 779 22 -839 780 22 -840 781 11 -841 781 7 -842 781 3 -843 782 18 -844 783 15 -845 783 7 -846 783 3 -847 783 2 -848 784 1 -849 785 7 -850 786 18 -851 787 11 -852 788 18 -853 789 3 -854 790 22 -855 791 22 -856 792 22 -857 793 4 -858 794 22 -859 795 22 -860 796 12 -861 796 17 -862 796 16 -863 797 8 -864 798 22 -865 799 21 -866 800 18 -867 801 22 -868 803 22 -869 804 22 -870 805 22 -871 806 1 -872 809 1 -873 810 1 -874 811 1 -875 812 1 -876 813 1 -877 815 1 -878 818 1 -879 819 1 -880 820 1 -881 823 1 -882 824 1 -883 825 1 -884 826 1 -885 827 1 -886 828 1 -887 830 1 -888 831 1 -889 832 1 -890 834 1 -891 836 1 -892 838 1 -893 840 1 -894 843 1 -895 844 1 -896 845 1 -897 847 1 -898 848 1 -899 849 1 -900 852 1 -901 853 1 -902 856 1 -903 857 1 -904 861 1 -905 862 1 -906 863 1 -907 864 1 -908 865 1 -909 866 1 -910 868 1 -911 870 1 -912 871 1 -913 871 7 -914 872 1 -915 874 1 -916 875 1 -917 876 7 -918 878 1 -919 879 7 -920 880 1 -921 880 7 -922 881 1 -923 881 7 -924 882 1 -925 882 7 -926 884 7 -927 885 1 -928 886 1 -929 886 7 -930 887 1 -931 887 7 -932 888 1 -933 889 1 -934 889 7 -935 891 7 -936 892 1 -937 892 7 -938 902 7 -939 903 1 -940 904 1 -941 904 7 -942 906 7 -943 911 7 -944 912 1 -945 912 7 -946 913 1 -947 913 7 -948 914 1 -949 914 7 -950 915 1 -951 915 7 -952 917 7 -953 918 7 -954 919 7 -955 920 1 -956 923 7 -957 924 1 -958 924 7 -959 925 1 -960 925 7 -961 926 1 -962 926 7 -963 928 7 -964 936 7 -965 937 1 -966 938 7 -967 939 1 -968 939 7 -969 940 1 -970 940 7 -971 943 7 -972 945 7 -973 947 1 -974 947 7 -975 948 1 -976 948 7 -977 949 7 -978 950 7 -979 951 1 -980 951 7 -981 952 1 -982 952 7 -983 954 1 -984 954 7 -985 955 1 -986 955 7 -987 956 1 -988 957 7 -989 958 7 -990 959 1 -991 959 7 -992 960 1 -993 960 7 -994 965 1 -995 966 1 -996 966 7 -997 967 1 -998 967 7 -999 968 1 -1000 968 7 -1001 969 1 -1002 969 7 -1003 970 1 -1004 974 1 -1005 974 7 -1006 984 1 -1007 984 7 -1008 990 7 -1009 991 7 -1010 992 1 -1011 992 7 -1012 996 1 -1013 996 7 -1014 998 1 -1015 998 7 -1016 1000 1 -1017 1000 7 -1018 1001 1 -1019 1001 7 -1020 1002 1 -1021 1003 1 -1022 1008 1 -1023 1008 7 -1024 1009 7 -1025 1010 1 -1026 1010 7 -1027 1011 1 -1028 1011 7 -1029 1012 1 -1030 1012 7 -1031 1015 7 -1032 1017 1 -1033 1018 1 -1034 1019 1 -1035 1021 1 -1036 1025 1 -1037 1027 7 -1038 1029 7 -1039 1030 7 -1040 1031 7 -1041 1033 7 -1042 1035 7 -1043 1036 1 -1044 1037 1 -1045 1037 7 -1046 1038 11 -1047 1038 6 -1048 1038 8 -1049 1038 4 -1050 1040 1 -1051 1040 7 -1052 1041 1 -1053 1041 7 -1054 1044 7 -1055 1045 1 -1056 1045 7 -1057 1046 1 -1058 1046 7 -1059 1047 1 -1060 1049 1 -1061 1050 1 -1062 1050 7 -1063 1051 1 -1064 1052 1 -1065 1052 7 -1066 1053 1 -1067 1054 1 -1068 1054 7 -1069 1056 1 -1070 1056 7 -1071 1057 7 -1072 1058 1 -1073 1059 7 -1074 1064 7 -1075 1065 1 -1076 1065 7 -1077 1066 1 -1078 1066 7 -1079 1067 7 -1080 1069 1 -1081 1070 1 -1082 1070 7 -1083 1071 7 -1084 1072 1 -1085 1072 7 -1086 1074 7 -1087 1075 1 -1088 1077 1 -1089 1081 1 -1090 1082 7 -1091 1085 1 -1092 1085 7 -1093 1087 1 -1094 1087 7 -1095 1088 1 -1096 1088 7 -1097 1089 1 -1098 1090 7 -1099 1092 7 -1100 1095 7 -1101 1096 1 -1102 1100 7 -1103 1101 1 -1104 1103 7 -1105 1104 1 -1106 1105 7 -1107 1106 1 -1108 1109 1 -1109 1109 7 -1110 1110 7 -1111 1111 14 -1112 1112 3 -1113 1113 1 -1114 1114 3 -1115 1118 1 -1116 1118 2 -1117 1119 1 -1118 1120 7 -1119 1120 2 -1120 1122 1 -1121 1123 1 -1122 1123 7 -1123 1124 1 -1124 1124 2 -1125 1125 1 -1126 1125 2 -1127 1126 1 -1128 1126 7 -1129 1128 2 -1130 1129 1 -1131 1129 7 -1132 1129 2 -1133 1130 1 -1134 1131 1 -1135 1133 1 -1136 1135 7 -1137 1136 1 -1138 1136 2 -1139 1137 1 -1140 1137 7 -1141 1138 1 -1142 1140 2 -1143 1141 2 -1144 1144 1 -1145 1144 2 -1146 1146 1 -1147 1146 7 -1148 1147 1 -1149 1147 7 -1150 1147 2 -1151 1148 1 -1152 1148 7 -1153 1150 7 -1154 1151 1 -1155 1152 1 -1156 1152 7 -1157 1152 2 -1158 1153 2 -1159 1154 1 -1160 1154 7 -1161 1154 2 -1162 1155 1 -1163 1157 1 -1164 1157 2 -1165 1159 1 -1166 1161 1 -1167 1162 1 -1168 1162 7 -1169 1162 2 -1170 1163 2 -1171 1164 1 -1172 1165 1 -1173 1165 7 -1174 1168 1 -1175 1168 2 -1176 1169 7 -1177 1169 2 -1178 1170 2 -1179 1172 7 -1180 1172 2 -1181 1173 2 -1182 1174 2 -1183 1176 1 -1184 1176 2 -1185 1177 1 -1186 1178 2 -1187 1179 1 -1188 1180 2 -1189 1181 1 -1190 1181 2 -1191 1182 11 -1192 1182 6 -1193 1182 1 -1194 1182 9 -1195 1182 10 -1196 1182 2 -1197 1183 21 -1198 1183 12 -1199 1183 11 -1200 1183 1 -1201 1183 16 -1202 1183 8 -1203 1183 10 -1204 1183 4 -1205 1184 11 -1206 1184 6 -1207 1184 16 -1208 1184 8 -1209 1184 9 -1210 1184 10 -1211 1184 2 -1212 1184 4 -1213 1185 21 -1214 1185 11 -1215 1185 8 -1216 1185 10 -1217 1185 4 -1218 1186 2 -1219 1187 21 -1220 1187 11 -1221 1187 16 -1222 1188 11 -1223 1188 4 -1224 1189 1 -1225 1191 21 -1226 1191 11 -1227 1191 6 -1228 1191 1 -1229 1191 8 -1230 1191 9 -1231 1191 10 -1232 1192 12 -1233 1192 6 -1234 1192 1 -1235 1192 7 -1236 1192 8 -1237 1192 9 -1238 1192 2 -1239 1193 21 -1240 1193 11 -1241 1193 6 -1242 1193 9 -1243 1194 11 -1244 1194 6 -1245 1194 1 -1246 1194 7 -1247 1194 8 -1248 1194 4 -1249 1195 12 -1250 1195 6 -1251 1195 7 -1252 1195 16 -1253 1195 8 -1254 1197 21 -1255 1197 11 -1256 1197 6 -1257 1197 7 -1258 1197 9 -1259 1197 10 -1260 1197 2 -1261 1198 6 -1262 1198 1 -1263 1198 7 -1264 1198 2 -1265 1198 4 -1266 1199 11 -1267 1199 7 -1268 1199 16 -1269 1199 10 -1270 1200 21 -1271 1200 16 -1272 1200 8 -1273 1201 11 -1274 1201 6 -1275 1201 8 -1276 1201 9 -1277 1202 16 -1278 1202 10 -1279 1203 21 -1280 1203 11 -1281 1203 6 -1282 1203 4 -1283 1204 11 -1284 1204 1 -1285 1204 7 -1286 1204 16 -1287 1204 8 -1288 1205 6 -1289 1205 1 -1290 1205 8 -1291 1206 8 -1292 1206 2 -1293 1207 6 -1294 1207 1 -1295 1207 7 -1296 1207 8 -1297 1207 10 -1298 1208 21 -1299 1208 6 -1300 1208 1 -1301 1208 16 -1302 1208 2 -1303 1208 4 -1304 1209 9 -1305 1209 10 -1306 1209 4 -1307 1210 21 -1308 1210 12 -1309 1210 11 -1310 1210 6 -1311 1210 1 -1312 1210 7 -1313 1210 16 -1314 1210 8 -1315 1210 9 -1316 1210 10 -1317 1210 2 -1318 1210 4 -1319 1211 11 -1320 1211 6 -1321 1211 1 -1322 1212 6 -1323 1212 8 -1324 1212 9 -1325 1212 10 -1326 1213 21 -1327 1213 1 -1328 1213 8 -1329 1213 10 -1330 1214 16 -1331 1215 11 -1332 1215 7 -1333 1215 9 -1334 1215 10 -1335 1216 11 -1336 1216 8 -1337 1216 9 -1338 1216 10 -1339 1216 2 -1340 1217 11 -1341 1217 1 -1342 1217 8 -1343 1217 10 -1344 1218 6 -1345 1218 1 -1346 1218 7 -1347 1218 2 -1348 1219 6 -1349 1219 8 -1350 1219 9 -1351 1219 2 -1352 1220 11 -1353 1220 2 -1354 1220 4 -1355 1221 8 -1356 1221 2 -1357 1222 11 -1358 1222 6 -1359 1222 1 -1360 1222 10 -1361 1223 11 -1362 1223 6 -1363 1223 1 -1364 1223 16 -1365 1223 8 -1366 1223 9 -1367 1223 10 -1368 1224 21 -1369 1225 11 -1370 1225 6 -1371 1225 1 -1372 1225 9 -1373 1225 10 -1374 1225 2 -1375 1226 6 -1376 1227 21 -1377 1227 11 -1378 1227 6 -1379 1227 1 -1380 1227 7 -1381 1227 16 -1382 1227 10 -1383 1227 2 -1384 1227 4 -1385 1228 1 -1386 1228 2 -1387 1229 11 -1388 1229 6 -1389 1229 1 -1390 1229 10 -1391 1230 6 -1392 1230 1 -1393 1230 7 -1394 1231 11 -1395 1231 6 -1396 1231 9 -1397 1231 10 -1398 1232 12 -1399 1232 6 -1400 1232 7 -1401 1232 16 -1402 1232 9 -1403 1233 21 -1404 1233 8 -1405 1234 6 -1406 1234 1 -1407 1234 7 -1408 1234 8 -1409 1234 9 -1410 1234 2 -1411 1235 21 -1412 1235 12 -1413 1235 1 -1414 1235 7 -1415 1235 2 -1416 1236 21 -1417 1236 11 -1418 1236 1 -1419 1236 8 -1420 1236 9 -1421 1236 10 -1422 1236 4 -1423 1237 7 -1424 1237 10 -1425 1237 4 -1426 1238 11 -1427 1238 6 -1428 1238 1 -1429 1238 9 -1430 1239 21 -1431 1240 12 -1432 1240 6 -1433 1240 1 -1434 1240 7 -1435 1240 16 -1436 1240 8 -1437 1240 9 -1438 1240 10 -1439 1240 2 -1440 1242 11 -1441 1242 6 -1442 1242 1 -1443 1242 7 -1444 1242 8 -1445 1242 10 -1446 1242 2 -1447 1243 6 -1448 1243 9 -1449 1243 2 -1450 1244 11 -1451 1244 6 -1452 1244 1 -1453 1244 9 -1454 1245 11 -1455 1245 6 -1456 1245 7 -1457 1245 9 -1458 1245 10 -1459 1245 2 -1460 1246 21 -1461 1246 12 -1462 1246 11 -1463 1246 16 -1464 1246 2 -1465 1247 21 -1466 1247 11 -1467 1247 7 -1468 1247 16 -1469 1247 8 -1470 1247 4 -1471 1248 6 -1472 1248 7 -1473 1248 16 -1474 1248 2 -1475 1249 11 -1476 1249 6 -1477 1249 1 -1478 1249 8 -1479 1250 11 -1480 1250 6 -1481 1250 1 -1482 1250 16 -1483 1250 8 -1484 1250 10 -1485 1251 12 -1486 1251 6 -1487 1251 7 -1488 1251 10 -1489 1252 11 -1490 1252 8 -1491 1253 11 -1492 1253 6 -1493 1253 7 -1494 1253 10 -1495 1253 4 -1496 1254 6 -1497 1254 8 -1498 1254 9 -1499 1255 21 -1500 1255 11 -1501 1255 6 -1502 1255 1 -1503 1255 9 -1504 1255 10 -1505 1256 1 -1506 1256 7 -1507 1256 13 -1508 1257 3 -1509 1257 8 -1510 1257 10 -1511 1257 13 -1512 1258 14 -1513 1258 7 -1514 1259 11 -1515 1259 1 -1516 1259 16 -1517 1260 6 -1518 1260 14 -1519 1260 1 -1520 1260 7 -1521 1261 5 -1522 1261 3 -1523 1261 17 -1524 1261 8 -1525 1261 2 -1526 1261 4 -1527 1262 3 -1528 1262 8 -1529 1262 9 -1530 1262 2 -1531 1263 11 -1532 1263 6 -1533 1263 1 -1534 1263 15 -1535 1263 5 -1536 1263 3 -1537 1263 17 -1538 1263 16 -1539 1263 8 -1540 1263 9 -1541 1263 10 -1542 1263 2 -1543 1263 4 -1544 1263 13 -1545 1264 11 -1546 1264 1 -1547 1264 10 -1548 1264 2 -1549 1264 4 -1550 1264 13 -1551 1265 11 -1552 1265 14 -1553 1265 2 -1554 1266 6 -1555 1266 15 -1556 1266 3 -1557 1266 8 -1558 1266 9 -1559 1266 10 -1560 1266 2 -1561 1266 13 -1562 1267 11 -1563 1267 1 -1564 1267 7 -1565 1267 4 -1566 1268 9 -1567 1268 10 -1568 1269 22 -1569 1269 18 -1570 1269 5 -1571 1269 8 -1572 1269 4 -1573 1270 21 -1574 1270 12 -1575 1270 19 -1576 1270 14 -1577 1270 1 -1578 1270 17 -1579 1270 16 -1580 1270 8 -1581 1270 9 -1582 1270 10 -1583 1270 20 -1584 1270 2 -1585 1270 13 -1586 1271 12 -1587 1271 3 -1588 1271 10 -1589 1271 20 -1590 1271 2 -1591 1272 14 -1592 1272 7 -1593 1272 8 -1594 1273 11 -1595 1273 6 -1596 1273 1 -1597 1273 9 -1598 1273 10 -1599 1273 13 -1600 1274 18 -1601 1274 11 -1602 1274 1 -1603 1274 17 -1604 1274 20 -1605 1274 4 -1606 1274 13 -1607 1275 15 -1608 1275 3 -1609 1275 8 -1610 1275 2 -1611 1276 11 -1612 1276 4 -1613 1276 13 -1614 1277 11 -1615 1277 6 -1616 1277 14 -1617 1277 3 -1618 1277 8 -1619 1277 9 -1620 1278 21 -1621 1278 22 -1622 1278 18 -1623 1278 11 -1624 1278 19 -1625 1278 14 -1626 1278 1 -1627 1278 5 -1628 1278 16 -1629 1278 10 -1630 1278 20 -1631 1278 4 -1632 1279 11 -1633 1279 6 -1634 1279 3 -1635 1279 17 -1636 1279 8 -1637 1279 9 -1638 1280 21 -1639 1280 22 -1640 1280 18 -1641 1280 19 -1642 1280 14 -1643 1280 1 -1644 1280 5 -1645 1280 7 -1646 1280 8 -1647 1280 4 -1648 1280 13 -1649 1281 7 -1650 1281 3 -1651 1281 8 -1652 1282 11 -1653 1282 6 -1654 1282 14 -1655 1282 1 -1656 1282 15 -1657 1282 7 -1658 1282 17 -1659 1282 8 -1660 1282 9 -1661 1282 10 -1662 1282 13 -1663 1283 5 -1664 1283 4 -1665 1284 11 -1666 1284 19 -1667 1284 5 -1668 1284 8 -1669 1284 10 -1670 1284 20 -1671 1284 13 -1672 1285 11 -1673 1285 6 -1674 1285 9 -1675 1285 10 -1676 1285 2 -1677 1286 21 -1678 1286 22 -1679 1286 18 -1680 1286 12 -1681 1286 11 -1682 1286 19 -1683 1286 6 -1684 1286 14 -1685 1286 1 -1686 1286 15 -1687 1286 5 -1688 1286 3 -1689 1286 17 -1690 1286 8 -1691 1286 9 -1692 1286 10 -1693 1286 20 -1694 1286 4 -1695 1286 13 -1696 1287 21 -1697 1287 22 -1698 1287 18 -1699 1287 19 -1700 1287 6 -1701 1287 15 -1702 1287 5 -1703 1287 7 -1704 1287 3 -1705 1287 17 -1706 1287 16 -1707 1287 8 -1708 1287 20 -1709 1287 13 -1710 1288 11 -1711 1288 14 -1712 1288 15 -1713 1288 4 -1714 1289 18 -1715 1289 11 -1716 1289 6 -1717 1289 1 -1718 1289 5 -1719 1289 9 -1720 1289 10 -1721 1289 20 -1722 1289 2 -1723 1289 4 -1724 1289 13 -1725 1290 6 -1726 1290 1 -1727 1290 7 -1728 1290 3 -1729 1290 8 -1730 1290 2 -1731 1291 21 -1732 1291 11 -1733 1291 6 -1734 1291 14 -1735 1291 1 -1736 1291 3 -1737 1291 8 -1738 1291 10 -1739 1291 20 -1740 1291 13 -1741 1292 11 -1742 1292 14 -1743 1292 1 -1744 1292 3 -1745 1292 17 -1746 1292 8 -1747 1292 10 -1748 1293 21 -1749 1293 22 -1750 1293 18 -1751 1293 11 -1752 1293 19 -1753 1293 15 -1754 1293 5 -1755 1293 3 -1756 1293 17 -1757 1293 16 -1758 1293 10 -1759 1293 20 -1760 1293 4 -1761 1294 22 -1762 1294 5 -1763 1294 10 -1764 1294 20 -1765 1294 2 -1766 1294 13 -1767 1295 12 -1768 1295 6 -1769 1295 14 -1770 1295 7 -1771 1295 8 -1772 1295 9 -1773 1295 10 -1774 1295 2 -1775 1295 13 -1776 1296 11 -1777 1296 6 -1778 1296 1 -1779 1296 7 -1780 1296 17 -1781 1296 8 -1782 1296 9 -1783 1296 10 -1784 1296 20 -1785 1296 13 -1786 1297 17 -1787 1297 13 -1788 1298 3 -1789 1298 2 -1790 1299 18 -1791 1299 12 -1792 1299 1 -1793 1299 15 -1794 1299 5 -1795 1299 3 -1796 1299 17 -1797 1299 10 -1798 1299 13 -1799 1300 11 -1800 1300 6 -1801 1300 14 -1802 1300 1 -1803 1300 15 -1804 1300 5 -1805 1300 17 -1806 1300 8 -1807 1300 9 -1808 1300 10 -1809 1300 13 -1810 1301 11 -1811 1301 8 -1812 1301 2 -1813 1302 3 -1814 1303 18 -1815 1303 5 -1816 1303 3 -1817 1303 17 -1818 1303 13 -1819 1304 11 -1820 1304 6 -1821 1304 14 -1822 1304 1 -1823 1304 15 -1824 1304 7 -1825 1304 3 -1826 1304 8 -1827 1304 9 -1828 1304 10 -1829 1304 13 -1830 1305 6 -1831 1305 14 -1832 1305 17 -1833 1305 8 -1834 1305 10 -1835 1305 2 -1836 1305 13 -1837 1306 18 -1838 1306 13 -1839 1307 4 -1840 1308 7 -1841 1308 3 -1842 1308 8 -1843 1308 2 -1844 1308 4 -1845 1308 13 -1846 1309 18 -1847 1309 5 -1848 1309 4 -1849 1310 21 -1850 1310 22 -1851 1310 11 -1852 1310 6 -1853 1310 5 -1854 1310 3 -1855 1310 17 -1856 1310 16 -1857 1310 8 -1858 1310 9 -1859 1310 10 -1860 1310 20 -1861 1310 4 -1862 1311 21 -1863 1311 12 -1864 1311 6 -1865 1311 14 -1866 1311 15 -1867 1311 7 -1868 1311 17 -1869 1311 16 -1870 1311 8 -1871 1311 9 -1872 1311 10 -1873 1311 2 -1874 1311 4 -1875 1311 13 -1876 1312 11 -1877 1312 6 -1878 1312 1 -1879 1312 7 -1880 1312 3 -1881 1312 8 -1882 1312 9 -1883 1312 10 -1884 1312 2 -1885 1313 11 -1886 1313 6 -1887 1313 2 -1888 1314 21 -1889 1314 22 -1890 1314 18 -1891 1314 19 -1892 1314 6 -1893 1314 14 -1894 1314 1 -1895 1314 5 -1896 1314 7 -1897 1314 8 -1898 1314 9 -1899 1314 20 -1900 1314 2 -1901 1315 6 -1902 1315 1 -1903 1315 7 -1904 1315 8 -1905 1315 9 -1906 1315 10 -1907 1315 2 -1908 1316 1 -1909 1316 9 -1910 1316 2 -1911 1316 13 -1912 1317 11 -1913 1317 6 -1914 1317 14 -1915 1317 1 -1916 1317 7 -1917 1317 8 -1918 1317 9 -1919 1317 2 -1920 1318 11 -1921 1318 14 -1922 1318 1 -1923 1318 15 -1924 1318 7 -1925 1318 3 -1926 1318 8 -1927 1318 9 -1928 1318 10 -1929 1318 13 -1930 1319 18 -1931 1319 11 -1932 1319 19 -1933 1319 14 -1934 1319 15 -1935 1319 5 -1936 1319 17 -1937 1319 16 -1938 1319 20 -1939 1319 4 -1940 1320 6 -1941 1320 7 -1942 1320 8 -1943 1321 11 -1944 1321 6 -1945 1321 14 -1946 1321 1 -1947 1321 15 -1948 1321 7 -1949 1321 17 -1950 1321 16 -1951 1321 8 -1952 1321 9 -1953 1321 10 -1954 1321 13 -1955 1322 4 -1956 1323 21 -1957 1323 22 -1958 1323 18 -1959 1323 19 -1960 1323 5 -1961 1323 9 -1962 1323 10 -1963 1323 20 -1964 1323 2 -1965 1323 4 -1966 1324 3 -1967 1324 8 -1968 1324 4 -1969 1325 18 -1970 1325 11 -1971 1325 6 -1972 1325 14 -1973 1325 1 -1974 1325 15 -1975 1325 17 -1976 1325 8 -1977 1325 20 -1978 1325 2 -1979 1325 4 -1980 1326 21 -1981 1326 11 -1982 1326 19 -1983 1326 14 -1984 1326 1 -1985 1326 15 -1986 1326 7 -1987 1326 17 -1988 1326 8 -1989 1326 9 -1990 1326 13 -1991 1327 11 -1992 1327 6 -1993 1327 14 -1994 1327 15 -1995 1327 17 -1996 1327 16 -1997 1327 8 -1998 1327 10 -1999 1327 20 -2000 1327 4 -2001 1327 13 -2002 1328 11 -2003 1328 14 -2004 1328 17 -2005 1328 16 -2006 1328 8 -2007 1329 11 -2008 1329 1 -2009 1329 8 -2010 1329 2 -2011 1330 3 -2012 1331 6 -2013 1331 8 -2014 1332 21 -2015 1332 22 -2016 1332 11 -2017 1332 5 -2018 1332 13 -2019 1333 11 -2020 1333 3 -2021 1333 9 -2022 1334 21 -2023 1334 22 -2024 1334 18 -2025 1334 11 -2026 1334 3 -2027 1334 17 -2028 1334 9 -2029 1335 21 -2030 1335 22 -2031 1335 18 -2032 1335 11 -2033 1335 1 -2034 1335 15 -2035 1335 5 -2036 1335 17 -2037 1335 16 -2038 1335 10 -2039 1335 2 -2040 1335 4 -2041 1335 13 -2042 1336 3 -2043 1336 10 -2044 1336 2 -2045 1337 21 -2046 1337 18 -2047 1337 12 -2048 1337 11 -2049 1337 5 -2050 1337 3 -2051 1337 17 -2052 1337 8 -2053 1337 9 -2054 1337 13 -2055 1338 21 -2056 1338 22 -2057 1338 18 -2058 1338 12 -2059 1338 11 -2060 1338 19 -2061 1338 14 -2062 1338 5 -2063 1338 17 -2064 1338 16 -2065 1338 8 -2066 1338 20 -2067 1338 2 -2068 1339 14 -2069 1339 3 -2070 1339 8 -2071 1339 9 -2072 1339 10 -2073 1339 2 -2074 1339 13 -2075 1340 19 -2076 1340 15 -2077 1340 7 -2078 1340 9 -2079 1340 2 -2080 1341 11 -2081 1341 6 -2082 1341 14 -2083 1341 1 -2084 1341 3 -2085 1341 8 -2086 1341 2 -2087 1342 6 -2088 1342 15 -2089 1342 3 -2090 1342 8 -2091 1342 13 -2092 1343 18 -2093 1343 11 -2094 1343 3 -2095 1343 8 -2096 1343 10 -2097 1343 2 -2098 1343 13 -2099 1344 6 -2100 1344 1 -2101 1344 5 -2102 1344 7 -2103 1344 8 -2104 1344 2 -2105 1344 4 -2106 1345 22 -2107 1346 22 -2108 1346 18 -2109 1346 11 -2110 1346 6 -2111 1346 14 -2112 1346 15 -2113 1346 7 -2114 1346 8 -2115 1346 10 -2116 1346 20 -2117 1346 2 -2118 1346 13 -2119 1347 11 -2120 1347 5 -2121 1347 7 -2122 1347 4 -2123 1348 6 -2124 1348 1 -2125 1348 15 -2126 1348 7 -2127 1348 10 -2128 1349 22 -2129 1349 11 -2130 1349 6 -2131 1349 1 -2132 1349 5 -2133 1349 3 -2134 1349 8 -2135 1349 9 -2136 1349 10 -2137 1349 13 -2138 1350 22 -2139 1350 18 -2140 1350 11 -2141 1350 19 -2142 1350 1 -2143 1350 3 -2144 1350 9 -2145 1350 10 -2146 1350 4 -2147 1351 6 -2148 1352 6 -2149 1353 3 -2150 1353 8 -2151 1353 10 -2152 1353 13 -2153 1354 21 -2154 1354 22 -2155 1354 18 -2156 1354 11 -2157 1354 19 -2158 1354 1 -2159 1354 15 -2160 1354 5 -2161 1354 7 -2162 1354 3 -2163 1354 17 -2164 1354 8 -2165 1354 9 -2166 1354 10 -2167 1354 20 -2168 1354 13 -2169 1355 5 -2170 1355 3 -2171 1355 10 -2172 1355 2 -2173 1355 4 -2174 1356 11 -2175 1356 14 -2176 1356 7 -2177 1356 16 -2178 1356 8 -2179 1356 9 -2180 1357 11 -2181 1357 6 -2182 1357 14 -2183 1357 1 -2184 1357 15 -2185 1357 7 -2186 1357 16 -2187 1357 8 -2188 1357 10 -2189 1357 20 -2190 1357 13 -2191 1358 18 -2192 1358 19 -2193 1358 6 -2194 1358 1 -2195 1358 15 -2196 1358 3 -2197 1358 8 -2198 1358 9 -2199 1358 10 -2200 1358 13 -2201 1359 22 -2202 1359 18 -2203 1359 11 -2204 1359 19 -2205 1359 6 -2206 1359 15 -2207 1359 5 -2208 1359 3 -2209 1359 10 -2210 1359 4 -2211 1360 6 -2212 1360 7 -2213 1360 3 -2214 1361 11 -2215 1361 6 -2216 1361 1 -2217 1361 3 -2218 1361 8 -2219 1361 9 -2220 1361 10 -2221 1361 2 -2222 1362 5 -2223 1362 7 -2224 1362 3 -2225 1362 8 -2226 1362 4 -2227 1363 1 -2228 1364 21 -2229 1364 22 -2230 1364 18 -2231 1364 12 -2232 1364 19 -2233 1364 14 -2234 1364 1 -2235 1364 5 -2236 1364 3 -2237 1364 17 -2238 1364 20 -2239 1364 4 -2240 1364 13 -2241 1365 11 -2242 1365 3 -2243 1365 10 -2244 1365 13 -2245 1366 6 -2246 1366 1 -2247 1366 5 -2248 1366 7 -2249 1366 3 -2250 1366 8 -2251 1366 2 -2252 1366 4 -2253 1367 21 -2254 1367 19 -2255 1367 6 -2256 1367 14 -2257 1367 1 -2258 1367 15 -2259 1367 7 -2260 1367 17 -2261 1367 16 -2262 1367 9 -2263 1367 10 -2264 1367 2 -2265 1367 13 -2266 1368 11 -2267 1368 19 -2268 1368 15 -2269 1368 8 -2270 1368 4 -2271 1369 11 -2272 1369 6 -2273 1369 17 -2274 1369 8 -2275 1370 1 -2276 1370 17 -2277 1370 10 -2278 1371 22 -2279 1371 18 -2280 1371 11 -2281 1371 19 -2282 1371 14 -2283 1371 3 -2284 1371 8 -2285 1371 9 -2286 1371 2 -2287 1371 4 -2288 1371 13 -2289 1372 11 -2290 1372 10 -2291 1372 20 -2292 1372 13 -2293 1373 1 -2294 1373 3 -2295 1373 2 -2296 1373 4 -2297 1374 11 -2298 1374 6 -2299 1374 15 -2300 1374 10 -2301 1374 2 -2302 1375 12 -2303 1375 17 -2304 1375 2 -2305 1375 13 -2306 1376 17 -2307 1376 13 -2308 1377 21 -2309 1377 22 -2310 1377 11 -2311 1377 19 -2312 1377 6 -2313 1377 14 -2314 1377 1 -2315 1377 15 -2316 1377 7 -2317 1377 3 -2318 1377 8 -2319 1377 9 -2320 1377 20 -2321 1377 2 -2322 1378 22 -2323 1378 18 -2324 1378 11 -2325 1378 6 -2326 1378 1 -2327 1378 7 -2328 1378 3 -2329 1378 8 -2330 1378 9 -2331 1378 10 -2332 1378 20 -2333 1378 2 -2334 1378 13 -2335 1379 21 -2336 1379 22 -2337 1379 18 -2338 1379 19 -2339 1379 6 -2340 1379 5 -2341 1379 3 -2342 1379 4 -2343 1380 21 -2344 1380 11 -2345 1380 19 -2346 1380 6 -2347 1380 14 -2348 1380 1 -2349 1380 15 -2350 1380 5 -2351 1380 7 -2352 1380 3 -2353 1380 8 -2354 1380 10 -2355 1380 20 -2356 1380 4 -2357 1380 13 -2358 1381 21 -2359 1381 22 -2360 1381 18 -2361 1381 11 -2362 1381 19 -2363 1381 6 -2364 1381 14 -2365 1381 1 -2366 1381 5 -2367 1381 3 -2368 1381 17 -2369 1381 16 -2370 1381 8 -2371 1381 9 -2372 1381 10 -2373 1381 20 -2374 1381 13 -2375 1382 21 -2376 1382 22 -2377 1382 11 -2378 1382 19 -2379 1382 6 -2380 1382 5 -2381 1382 7 -2382 1382 8 -2383 1382 10 -2384 1382 20 -2385 1382 4 -2386 1382 13 -2387 1383 11 -2388 1383 6 -2389 1383 17 -2390 1383 8 -2391 1384 11 -2392 1384 6 -2393 1384 8 -2394 1384 10 -2395 1384 2 -2396 1385 19 -2397 1385 14 -2398 1385 1 -2399 1385 15 -2400 1385 7 -2401 1385 3 -2402 1385 8 -2403 1385 10 -2404 1385 20 -2405 1385 4 -2406 1385 13 -2407 1386 6 -2408 1386 1 -2409 1386 8 -2410 1386 9 -2411 1386 10 -2412 1387 11 -2413 1387 6 -2414 1387 1 -2415 1387 5 -2416 1387 9 -2417 1387 10 -2418 1387 20 -2419 1387 2 -2420 1388 22 -2421 1388 18 -2422 1388 11 -2423 1388 6 -2424 1388 14 -2425 1388 1 -2426 1388 5 -2427 1388 3 -2428 1388 8 -2429 1388 9 -2430 1388 4 -2431 1388 13 -2432 1389 7 -2433 1389 3 -2434 1389 16 -2435 1390 11 -2436 1390 6 -2437 1390 14 -2438 1390 1 -2439 1390 15 -2440 1390 7 -2441 1390 17 -2442 1390 9 -2443 1390 10 -2444 1390 2 -2445 1390 13 -2446 1391 19 -2447 1391 1 -2448 1391 5 -2449 1391 7 -2450 1391 17 -2451 1391 10 -2452 1392 21 -2453 1392 22 -2454 1392 12 -2455 1392 11 -2456 1392 6 -2457 1392 14 -2458 1392 1 -2459 1392 15 -2460 1392 7 -2461 1392 3 -2462 1392 8 -2463 1392 20 -2464 1392 2 -2465 1392 13 -2466 1393 5 -2467 1393 3 -2468 1393 17 -2469 1393 2 -2470 1393 13 -2471 1394 22 -2472 1394 11 -2473 1394 19 -2474 1394 17 -2475 1394 10 -2476 1394 20 -2477 1395 3 -2478 1395 8 -2479 1395 9 -2480 1395 2 -2481 1395 4 -2482 1395 13 -2483 1396 11 -2484 1396 15 -2485 1396 3 -2486 1396 17 -2487 1396 8 -2488 1396 9 -2489 1396 2 -2490 1397 21 -2491 1397 1 -2492 1397 15 -2493 1397 7 -2494 1397 3 -2495 1397 17 -2496 1397 8 -2497 1398 19 -2498 1398 5 -2499 1398 3 -2500 1398 9 -2501 1398 10 -2502 1398 20 -2503 1398 13 -2504 1399 12 -2505 1399 1 -2506 1399 7 -2507 1399 2 -2508 1400 22 -2509 1400 12 -2510 1400 19 -2511 1400 6 -2512 1400 14 -2513 1400 1 -2514 1400 15 -2515 1400 5 -2516 1400 7 -2517 1400 3 -2518 1400 17 -2519 1400 8 -2520 1400 10 -2521 1400 2 -2522 1400 13 -2523 1401 9 -2524 1401 10 -2525 1401 20 -2526 1401 2 -2527 1401 13 -2528 1402 11 -2529 1402 6 -2530 1402 7 -2531 1402 3 -2532 1402 16 -2533 1402 10 -2534 1402 2 -2535 1403 21 -2536 1403 19 -2537 1403 5 -2538 1403 7 -2539 1403 3 -2540 1404 1 -2541 1404 8 -2542 1404 2 -2543 1405 21 -2544 1405 11 -2545 1405 1 -2546 1405 15 -2547 1405 17 -2548 1405 8 -2549 1405 9 -2550 1405 10 -2551 1405 2 -2552 1405 13 -2553 1406 11 -2554 1406 6 -2555 1406 10 -2556 1407 11 -2557 1407 6 -2558 1408 22 -2559 1408 6 -2560 1408 9 -2561 1408 10 -2562 1409 11 -2563 1409 7 -2564 1409 3 -2565 1409 10 -2566 1409 2 -2567 1409 13 -2568 1410 12 -2569 1410 17 -2570 1410 2 -2571 1410 13 -2572 1411 6 -2573 1411 1 -2574 1411 2 -2575 1412 14 -2576 1412 1 -2577 1413 18 -2578 1413 11 -2579 1413 19 -2580 1413 3 -2581 1413 2 -2582 1413 4 -2583 1414 18 -2584 1414 19 -2585 1414 6 -2586 1414 3 -2587 1414 2 -2588 1415 21 -2589 1415 22 -2590 1415 18 -2591 1415 8 -2592 1415 10 -2593 1415 2 -2594 1416 1 -2595 1417 18 -2596 1417 19 -2597 1417 6 -2598 1417 1 -2599 1417 5 -2600 1417 3 -2601 1417 4 -2602 1418 11 -2603 1418 3 -2604 1418 17 -2605 1418 10 -2606 1418 20 -2607 1418 13 -2608 1419 21 -2609 1419 22 -2610 1419 18 -2611 1419 11 -2612 1419 19 -2613 1419 3 -2614 1419 17 -2615 1419 2 -2616 1419 4 -2617 1420 6 -2618 1421 21 -2619 1421 14 -2620 1421 7 -2621 1421 10 -2622 1422 3 -2623 1422 2 -2624 1423 21 -2625 1423 6 -2626 1423 7 -2627 1423 8 -2628 1423 9 -2629 1423 10 -2630 1423 2 -2631 1424 14 -2632 1424 1 -2633 1424 7 -2634 1424 16 -2635 1424 8 -2636 1425 21 -2637 1425 22 -2638 1425 18 -2639 1425 11 -2640 1425 15 -2641 1425 3 -2642 1425 17 -2643 1425 8 -2644 1425 9 -2645 1425 10 -2646 1425 2 -2647 1426 21 -2648 1426 22 -2649 1426 18 -2650 1426 19 -2651 1426 5 -2652 1427 1 -2653 1428 17 -2654 1428 4 -2655 1428 13 -2656 1429 11 -2657 1429 6 -2658 1429 3 -2659 1429 8 -2660 1429 9 -2661 1429 10 -2662 1430 21 -2663 1430 11 -2664 1430 6 -2665 1430 1 -2666 1430 15 -2667 1430 5 -2668 1430 3 -2669 1430 17 -2670 1430 10 -2671 1430 13 -2672 1431 11 -2673 1431 8 -2674 1431 9 -2675 1432 21 -2676 1432 12 -2677 1432 6 -2678 1432 3 -2679 1432 10 -2680 1433 12 -2681 1433 14 -2682 1433 1 -2683 1433 3 -2684 1433 17 -2685 1433 8 -2686 1433 2 -2687 1433 13 -2688 1434 22 -2689 1434 18 -2690 1434 19 -2691 1434 5 -2692 1434 3 -2693 1434 9 -2694 1434 10 -2695 1434 4 -2696 1434 13 -2697 1435 21 -2698 1435 22 -2699 1435 18 -2700 1435 11 -2701 1435 6 -2702 1435 7 -2703 1435 3 -2704 1435 8 -2705 1435 9 -2706 1435 10 -2707 1435 20 -2708 1435 4 -2709 1435 13 -2710 1436 6 -2711 1436 1 -2712 1436 5 -2713 1436 3 -2714 1436 9 -2715 1436 10 -2716 1436 13 -2717 1437 6 -2718 1437 1 -2719 1437 3 -2720 1437 9 -2721 1437 10 -2722 1438 5 -2723 1438 3 -2724 1438 9 -2725 1438 10 -2726 1438 4 -2727 1438 13 -2728 1439 6 -2729 1439 1 -2730 1439 3 -2731 1439 9 -2732 1439 10 -2733 1440 6 -2734 1441 22 -2735 1441 18 -2736 1441 6 -2737 1441 15 -2738 1441 4 -2739 1442 1 -2740 1442 15 -2741 1442 8 -2742 1442 10 -2743 1442 2 -2744 1443 11 -2745 1443 14 -2746 1443 15 -2747 1444 21 -2748 1444 22 -2749 1444 18 -2750 1444 11 -2751 1444 14 -2752 1444 1 -2753 1444 15 -2754 1445 1 -2755 1445 10 -2756 1446 11 -2757 1446 14 -2758 1446 1 -2759 1446 7 -2760 1446 17 -2761 1446 8 -2762 1446 10 -2763 1446 13 -2764 1447 21 -2765 1447 22 -2766 1447 18 -2767 1447 12 -2768 1447 11 -2769 1447 19 -2770 1447 6 -2771 1447 14 -2772 1447 1 -2773 1447 15 -2774 1447 5 -2775 1447 17 -2776 1447 16 -2777 1447 8 -2778 1447 9 -2779 1447 10 -2780 1447 20 -2781 1447 2 -2782 1447 13 -2783 1448 11 -2784 1448 6 -2785 1448 14 -2786 1448 1 -2787 1448 7 -2788 1448 16 -2789 1448 8 -2790 1448 9 -2791 1449 22 -2792 1449 18 -2793 1449 11 -2794 1449 6 -2795 1449 8 -2796 1449 10 -2797 1449 4 -2798 1450 22 -2799 1450 18 -2800 1450 20 -2801 1451 6 -2802 1451 14 -2803 1451 10 -2804 1451 2 -2805 1452 11 -2806 1452 6 -2807 1452 14 -2808 1452 1 -2809 1452 15 -2810 1452 5 -2811 1452 7 -2812 1452 17 -2813 1452 9 -2814 1452 10 -2815 1452 2 -2816 1452 13 -2817 1453 22 -2818 1453 11 -2819 1453 10 -2820 1453 20 -2821 1453 13 -2822 1454 18 -2823 1454 6 -2824 1454 1 -2825 1454 5 -2826 1454 10 -2827 1454 2 -2828 1454 4 -2829 1455 11 -2830 1455 6 -2831 1455 1 -2832 1455 7 -2833 1455 10 -2834 1456 5 -2835 1457 11 -2836 1457 6 -2837 1457 14 -2838 1457 1 -2839 1457 15 -2840 1457 8 -2841 1457 10 -2842 1458 8 -2843 1459 6 -2844 1459 15 -2845 1459 8 -2846 1459 9 -2847 1459 13 -2848 1460 2 -2849 1461 11 -2850 1461 3 -2851 1461 17 -2852 1462 6 -2853 1462 14 -2854 1462 8 -2855 1462 2 -2856 1463 21 -2857 1463 11 -2858 1463 6 -2859 1463 1 -2860 1463 7 -2861 1463 17 -2862 1463 16 -2863 1463 9 -2864 1463 20 -2865 1463 13 -2866 1464 21 -2867 1464 11 -2868 1464 6 -2869 1464 1 -2870 1464 7 -2871 1464 10 -2872 1464 2 -2873 1464 13 -2874 1465 21 -2875 1465 6 -2876 1465 5 -2877 1465 8 -2878 1466 5 -2879 1466 3 -2880 1467 21 -2881 1467 18 -2882 1467 19 -2883 1467 1 -2884 1467 15 -2885 1467 3 -2886 1467 20 -2887 1467 2 -2888 1468 22 -2889 1468 12 -2890 1468 11 -2891 1468 19 -2892 1468 14 -2893 1468 1 -2894 1468 15 -2895 1468 7 -2896 1468 3 -2897 1468 17 -2898 1468 8 -2899 1468 10 -2900 1468 20 -2901 1468 2 -2902 1468 13 -2903 1469 11 -2904 1469 1 -2905 1469 8 -2906 1469 10 -2907 1469 2 -2908 1470 21 -2909 1470 11 -2910 1470 6 -2911 1470 1 -2912 1470 15 -2913 1470 10 -2914 1470 2 -2915 1471 11 -2916 1471 6 -2917 1471 14 -2918 1471 1 -2919 1471 15 -2920 1471 7 -2921 1471 9 -2922 1471 10 -2923 1472 11 -2924 1472 6 -2925 1472 14 -2926 1472 1 -2927 1472 15 -2928 1472 7 -2929 1472 8 -2930 1472 13 -2931 1473 6 -2932 1473 7 -2933 1473 3 -2934 1473 17 -2935 1473 8 -2936 1473 9 -2937 1473 2 -2938 1473 4 -2939 1474 6 -2940 1474 3 -2941 1474 8 -2942 1474 2 -2943 1475 21 -2944 1475 18 -2945 1475 5 -2946 1475 3 -2947 1475 8 -2948 1475 2 -2949 1476 21 -2950 1476 22 -2951 1476 12 -2952 1476 11 -2953 1476 19 -2954 1476 14 -2955 1476 1 -2956 1476 7 -2957 1476 17 -2958 1476 8 -2959 1476 10 -2960 1476 2 -2961 1476 13 -2962 1477 11 -2963 1477 1 -2964 1477 8 -2965 1477 13 -2966 1478 11 -2967 1478 19 -2968 1478 6 -2969 1478 14 -2970 1478 15 -2971 1478 7 -2972 1478 3 -2973 1478 8 -2974 1479 6 -2975 1479 10 -2976 1479 2 -2977 1480 21 -2978 1480 22 -2979 1480 1 -2980 1480 7 -2981 1480 16 -2982 1480 13 -2983 1481 22 -2984 1481 18 -2985 1481 1 -2986 1481 15 -2987 1481 5 -2988 1481 3 -2989 1481 8 -2990 1481 9 -2991 1481 10 -2992 1481 13 -2993 1482 13 -2994 1483 11 -2995 1483 6 -2996 1483 1 -2997 1483 15 -2998 1483 7 -2999 1483 16 -3000 1483 8 -3001 1483 10 -3002 1483 2 -3003 1484 11 -3004 1484 14 -3005 1484 15 -3006 1484 7 -3007 1484 16 -3008 1484 8 -3009 1484 9 -3010 1484 10 -3011 1484 2 -3012 1484 13 -3013 1485 5 -3014 1485 3 -3015 1485 9 -3016 1485 10 -3017 1486 11 -3018 1486 6 -3019 1486 14 -3020 1486 1 -3021 1486 5 -3022 1486 7 -3023 1486 3 -3024 1486 8 -3025 1486 9 -3026 1486 10 -3027 1486 4 -3028 1486 13 -3029 1487 16 -3030 1488 6 -3031 1488 1 -3032 1488 5 -3033 1488 3 -3034 1488 8 -3035 1488 10 -3036 1488 4 -3037 1488 13 -3038 1489 11 -3039 1489 6 -3040 1489 14 -3041 1489 1 -3042 1489 15 -3043 1489 7 -3044 1489 16 -3045 1489 8 -3046 1489 9 -3047 1489 10 -3048 1489 13 -3049 1490 21 -3050 1490 22 -3051 1490 18 -3052 1490 19 -3053 1490 6 -3054 1490 15 -3055 1490 5 -3056 1490 7 -3057 1490 3 -3058 1490 17 -3059 1490 8 -3060 1490 9 -3061 1490 2 -3062 1490 13 -3063 1491 6 -3064 1491 7 -3065 1491 9 -3066 1491 10 -3067 1491 13 -3068 1492 12 -3069 1492 19 -3070 1492 7 -3071 1492 3 -3072 1492 8 -3073 1492 9 -3074 1492 4 -3075 1493 6 -3076 1493 7 -3077 1493 2 -3078 1494 21 -3079 1494 18 -3080 1494 19 -3081 1494 6 -3082 1494 1 -3083 1494 7 -3084 1494 9 -3085 1494 10 -3086 1494 2 -3087 1494 4 -3088 1494 13 -3089 1495 6 -3090 1495 1 -3091 1495 9 -3092 1495 2 -3093 1496 22 -3094 1496 18 -3095 1496 11 -3096 1496 15 -3097 1496 4 -3098 1497 2 -3099 1497 13 -3100 1498 11 -3101 1498 15 -3102 1498 3 -3103 1498 16 -3104 1498 8 -3105 1498 2 -3106 1500 1 -3107 1500 10 -3108 1500 13 -3109 1501 6 -3110 1501 1 -3111 1502 11 -3112 1502 14 -3113 1502 1 -3114 1502 7 -3115 1502 8 -3116 1502 9 -3117 1502 10 -3118 1503 22 -3119 1503 18 -3120 1503 19 -3121 1503 1 -3122 1503 15 -3123 1503 10 -3124 1504 12 -3125 1504 11 -3126 1504 6 -3127 1504 14 -3128 1504 1 -3129 1504 15 -3130 1504 7 -3131 1504 3 -3132 1504 17 -3133 1504 8 -3134 1504 9 -3135 1504 10 -3136 1504 2 -3137 1505 21 -3138 1505 11 -3139 1505 19 -3140 1505 6 -3141 1505 14 -3142 1505 1 -3143 1505 15 -3144 1505 5 -3145 1505 7 -3146 1505 3 -3147 1505 8 -3148 1505 9 -3149 1505 10 -3150 1505 2 -3151 1505 13 -3152 1506 10 -3153 1506 13 -3154 1507 21 -3155 1507 12 -3156 1507 11 -3157 1507 6 -3158 1507 15 -3159 1507 9 -3160 1508 6 -3161 1508 3 -3162 1508 8 -3163 1508 10 -3164 1509 11 -3165 1509 6 -3166 1509 7 -3167 1509 17 -3168 1509 16 -3169 1509 9 -3170 1509 2 -3171 1509 4 -3172 1510 21 -3173 1510 22 -3174 1510 18 -3175 1510 12 -3176 1510 11 -3177 1510 19 -3178 1510 6 -3179 1510 14 -3180 1510 1 -3181 1510 15 -3182 1510 5 -3183 1510 7 -3184 1510 3 -3185 1510 17 -3186 1510 16 -3187 1510 8 -3188 1510 9 -3189 1510 10 -3190 1510 2 -3191 1510 4 -3192 1510 13 -3193 1511 3 -3194 1511 8 -3195 1511 2 -3196 1512 21 -3197 1512 22 -3198 1512 18 -3199 1512 12 -3200 1512 5 -3201 1512 3 -3202 1512 8 -3203 1512 4 -3204 1513 21 -3205 1513 22 -3206 1513 18 -3207 1513 12 -3208 1513 19 -3209 1513 5 -3210 1513 16 -3211 1513 8 -3212 1514 22 -3213 1514 18 -3214 1515 11 -3215 1515 6 -3216 1515 17 -3217 1516 21 -3218 1516 22 -3219 1516 18 -3220 1516 11 -3221 1516 19 -3222 1516 6 -3223 1516 14 -3224 1516 1 -3225 1516 15 -3226 1516 7 -3227 1516 17 -3228 1516 16 -3229 1516 8 -3230 1516 9 -3231 1516 10 -3232 1517 22 -3233 1517 18 -3234 1517 11 -3235 1517 19 -3236 1517 1 -3237 1517 5 -3238 1517 3 -3239 1517 8 -3240 1517 9 -3241 1517 10 -3242 1517 13 -3243 1518 7 -3244 1518 10 -3245 1518 2 -3246 1518 13 -3247 1519 11 -3248 1519 19 -3249 1519 6 -3250 1519 9 -3251 1519 10 -3252 1519 13 -3253 1520 18 -3254 1520 15 -3255 1520 5 -3256 1520 2 -3257 1520 4 -3258 1520 13 -3259 1521 21 -3260 1521 11 -3261 1521 6 -3262 1521 14 -3263 1521 1 -3264 1521 15 -3265 1521 7 -3266 1521 17 -3267 1521 16 -3268 1521 8 -3269 1521 9 -3270 1521 10 -3271 1521 13 -3272 1522 18 -3273 1522 17 -3274 1523 1 -3275 1523 10 -3276 1524 6 -3277 1524 1 -3278 1524 5 -3279 1524 3 -3280 1524 8 -3281 1525 22 -3282 1525 18 -3283 1525 19 -3284 1525 5 -3285 1526 18 -3286 1526 19 -3287 1526 1 -3288 1526 15 -3289 1526 5 -3290 1526 4 -3291 1527 13 -3292 1529 11 -3293 1529 6 -3294 1529 1 -3295 1529 15 -3296 1529 17 -3297 1529 8 -3298 1529 9 -3299 1529 2 -3300 1529 13 -3301 1530 11 -3302 1530 6 -3303 1530 1 -3304 1530 9 -3305 1530 10 -3306 1530 2 -3307 1531 22 -3308 1531 18 -3309 1531 11 -3310 1531 19 -3311 1531 5 -3312 1531 17 -3313 1531 8 -3314 1531 4 -3315 1532 11 -3316 1532 1 -3317 1533 19 -3318 1533 6 -3319 1533 1 -3320 1533 5 -3321 1533 3 -3322 1533 10 -3323 1533 4 -3324 1533 13 -3325 1534 22 -3326 1534 19 -3327 1534 3 -3328 1534 17 -3329 1534 9 -3330 1534 2 -3331 1535 11 -3332 1535 6 -3333 1535 1 -3334 1535 15 -3335 1535 17 -3336 1535 8 -3337 1535 9 -3338 1535 10 -3339 1535 2 -3340 1536 22 -3341 1536 18 -3342 1536 12 -3343 1536 11 -3344 1536 19 -3345 1536 14 -3346 1536 3 -3347 1536 17 -3348 1536 8 -3349 1536 10 -3350 1536 4 -3351 1537 6 -3352 1537 3 -3353 1537 2 -3354 1538 18 -3355 1538 19 -3356 1538 5 -3357 1539 22 -3358 1539 18 -3359 1539 11 -3360 1539 19 -3361 1539 2 -3362 1539 4 -3363 1539 13 -3364 1540 6 -3365 1540 1 -3366 1540 3 -3367 1540 2 -3368 1540 4 -3369 1541 6 -3370 1541 3 -3371 1541 10 -3372 1541 13 -3373 1542 21 -3374 1542 11 -3375 1542 19 -3376 1542 6 -3377 1542 14 -3378 1542 15 -3379 1542 16 -3380 1542 8 -3381 1542 4 -3382 1543 3 -3383 1543 16 -3384 1543 10 -3385 1544 11 -3386 1544 1 -3387 1544 10 -3388 1544 2 -3389 1545 13 -3390 1546 1 -3391 1546 5 -3392 1546 3 -3393 1547 21 -3394 1547 11 -3395 1547 1 -3396 1547 7 -3397 1547 3 -3398 1547 17 -3399 1547 8 -3400 1547 9 -3401 1547 10 -3402 1547 2 -3403 1547 13 -3404 1548 11 -3405 1548 15 -3406 1548 5 -3407 1548 3 -3408 1548 10 -3409 1548 13 -3410 1549 4 -3411 1550 11 -3412 1550 17 -3413 1551 3 -3414 1552 11 -3415 1552 6 -3416 1552 7 -3417 1552 3 -3418 1552 10 -3419 1552 4 -3420 1552 13 -3421 1553 11 -3422 1553 6 -3423 1553 1 -3424 1553 10 -3425 1553 2 -3426 1554 1 -3427 1555 6 -3428 1555 1 -3429 1556 11 -3430 1556 3 -3431 1556 9 -3432 1556 4 -3433 1557 6 -3434 1557 9 -3435 1557 10 -3436 1557 2 -3437 1557 13 -3438 1558 6 -3439 1558 14 -3440 1558 7 -3441 1558 10 -3442 1559 12 -3443 1559 1 -3444 1559 3 -3445 1559 8 -3446 1559 10 -3447 1559 4 -3448 1560 11 -3449 1560 6 -3450 1560 14 -3451 1560 15 -3452 1560 5 -3453 1560 7 -3454 1560 17 -3455 1560 8 -3456 1560 9 -3457 1560 2 -3458 1561 22 -3459 1561 18 -3460 1561 19 -3461 1561 14 -3462 1561 5 -3463 1561 3 -3464 1561 4 -3465 1561 13 -3466 1562 22 -3467 1562 18 -3468 1562 11 -3469 1562 6 -3470 1562 14 -3471 1562 1 -3472 1562 15 -3473 1562 5 -3474 1562 3 -3475 1562 17 -3476 1562 8 -3477 1562 9 -3478 1562 10 -3479 1562 13 -3480 1563 1 -3481 1563 3 -3482 1563 8 -3483 1563 2 -3484 1564 5 -3485 1564 3 -3486 1564 10 -3487 1564 4 -3488 1564 13 -3489 1565 11 -3490 1565 17 -3491 1565 8 -3492 1565 9 -3493 1565 13 -3494 1566 11 -3495 1566 6 -3496 1566 7 -3497 1566 8 -3498 1567 21 -3499 1567 1 -3500 1567 15 -3501 1567 17 -3502 1567 16 -3503 1567 8 -3504 1567 10 -3505 1568 11 -3506 1568 14 -3507 1568 1 -3508 1568 8 -3509 1568 10 -3510 1569 3 -3511 1570 11 -3512 1570 6 -3513 1570 14 -3514 1570 15 -3515 1570 5 -3516 1570 7 -3517 1570 8 -3518 1570 9 -3519 1570 2 -3520 1570 4 -3521 1571 13 -3522 1572 11 -3523 1572 6 -3524 1572 14 -3525 1572 7 -3526 1572 16 -3527 1572 8 -3528 1572 9 -3529 1572 10 -3530 1572 2 -3531 1572 13 -3532 1573 21 -3533 1573 11 -3534 1573 15 -3535 1573 17 -3536 1574 6 -3537 1574 1 -3538 1574 10 -3539 1575 5 -3540 1575 7 -3541 1575 3 -3542 1576 21 -3543 1576 22 -3544 1576 18 -3545 1576 11 -3546 1576 19 -3547 1576 1 -3548 1576 5 -3549 1576 3 -3550 1576 17 -3551 1576 16 -3552 1576 9 -3553 1576 10 -3554 1576 2 -3555 1576 4 -3556 1577 11 -3557 1577 19 -3558 1577 6 -3559 1577 10 -3560 1577 13 -3561 1578 6 -3562 1578 1 -3563 1578 7 -3564 1578 3 -3565 1578 8 -3566 1578 2 -3567 1579 11 -3568 1579 6 -3569 1579 1 -3570 1579 7 -3571 1579 3 -3572 1579 17 -3573 1579 8 -3574 1579 9 -3575 1579 10 -3576 1579 2 -3577 1580 11 -3578 1580 6 -3579 1580 1 -3580 1580 15 -3581 1580 7 -3582 1580 17 -3583 1580 16 -3584 1580 10 -3585 1580 2 -3586 1581 11 -3587 1581 6 -3588 1581 8 -3589 1582 6 -3590 1582 3 -3591 1582 9 -3592 1583 21 -3593 1583 22 -3594 1583 18 -3595 1583 11 -3596 1583 19 -3597 1583 6 -3598 1583 14 -3599 1583 1 -3600 1583 15 -3601 1583 5 -3602 1583 7 -3603 1583 3 -3604 1583 9 -3605 1583 10 -3606 1583 2 -3607 1583 4 -3608 1583 13 -3609 1584 11 -3610 1584 6 -3611 1584 14 -3612 1584 15 -3613 1584 7 -3614 1584 3 -3615 1584 17 -3616 1584 16 -3617 1584 8 -3618 1584 10 -3619 1584 13 -3620 1585 6 -3621 1585 14 -3622 1585 1 -3623 1585 9 -3624 1585 10 -3625 1585 13 -3626 1586 16 -3627 1587 12 -3628 1587 14 -3629 1587 7 -3630 1587 17 -3631 1587 2 -3632 1587 13 -3633 1588 12 -3634 1588 11 -3635 1588 19 -3636 1588 6 -3637 1588 7 -3638 1588 3 -3639 1588 8 -3640 1588 9 -3641 1588 2 -3642 1588 4 -3643 1588 13 -3644 1589 22 -3645 1589 11 -3646 1589 10 -3647 1589 4 -3648 1589 13 -3649 1590 11 -3650 1590 6 -3651 1590 14 -3652 1590 1 -3653 1590 7 -3654 1590 9 -3655 1590 10 -3656 1591 21 -3657 1591 22 -3658 1591 18 -3659 1591 11 -3660 1591 19 -3661 1591 14 -3662 1591 1 -3663 1591 15 -3664 1591 3 -3665 1591 16 -3666 1591 10 -3667 1591 4 -3668 1592 21 -3669 1592 22 -3670 1592 12 -3671 1592 11 -3672 1592 19 -3673 1592 14 -3674 1592 1 -3675 1592 5 -3676 1592 3 -3677 1592 16 -3678 1592 8 -3679 1592 10 -3680 1592 13 -3681 1593 21 -3682 1593 22 -3683 1593 18 -3684 1593 11 -3685 1593 19 -3686 1593 6 -3687 1593 1 -3688 1593 15 -3689 1593 7 -3690 1593 3 -3691 1593 17 -3692 1593 9 -3693 1593 10 -3694 1593 2 -3695 1593 13 -3696 1594 11 -3697 1594 1 -3698 1594 15 -3699 1594 5 -3700 1594 3 -3701 1594 17 -3702 1594 8 -3703 1594 9 -3704 1594 10 -3705 1594 2 -3706 1594 13 -3707 1595 21 -3708 1595 22 -3709 1595 18 -3710 1595 19 -3711 1595 5 -3712 1595 7 -3713 1595 3 -3714 1595 17 -3715 1595 16 -3716 1595 9 -3717 1595 2 -3718 1595 4 -3719 1595 13 -3720 1596 21 -3721 1596 18 -3722 1596 5 -3723 1596 3 -3724 1596 13 -3725 1597 18 -3726 1598 18 -3727 1599 2 -3728 1602 12 -3729 1603 22 -3730 1604 3 -3731 1604 16 -3732 1605 22 -3733 1607 1 -3734 1607 2 -3735 1607 4 -3736 1607 6 -3737 1607 7 -3738 1607 8 -3739 1607 9 -3740 1607 10 -3741 1607 11 -3742 1607 12 -3743 1607 15 -3744 1607 16 -3745 1607 17 -3746 1607 21 -3747 1607 22 -3753 1609 22 -3754 1610 18 -3755 1611 18 -3756 1612 16 -3757 1612 17 -3758 1613 5 -3759 1613 6 -3760 1613 7 -3761 1613 8 -3762 1613 9 -3763 1613 10 -3764 1613 11 -3765 1613 13 -3766 1613 14 -3767 1613 15 -3768 1614 4 -3769 1614 5 -3770 1614 6 -3771 1614 7 -3772 1614 8 -3773 1614 9 -3774 1614 13 -3775 1614 14 -3776 1614 15 -3783 1616 3 -3784 1616 6 -3785 1616 8 -3786 1616 9 -3787 1616 10 -3788 1616 11 -3789 1616 15 -3790 1617 2 -3791 1617 4 -3792 1617 7 -3793 1617 18 -3794 1617 19 -3795 1617 21 -3796 1617 22 -3797 1618 1 -3798 1618 2 -3799 1618 6 -3800 1618 7 -3801 1618 8 -3802 1618 9 -3803 1618 10 -3804 1618 11 -3805 1618 14 -3806 1618 16 -3807 1618 17 -3812 1620 2 -3813 1620 8 -3814 1620 11 -3815 1621 18 -3816 1622 11 -3817 1619 2 -3818 1619 6 -3819 1619 8 -3820 1619 12 -3821 1608 1 -3822 1608 4 -3823 1608 6 -3824 1608 10 -3825 1608 11 -3826 1623 2 -3827 1623 8 -3828 1623 12 -3829 1624 18 -3830 1625 3 -3831 1626 22 -3832 1627 18 -3840 1629 22 -3841 1630 2 -3842 1628 7 -3843 1628 8 -3844 1628 10 -3845 1628 11 -3846 1628 14 -3847 1628 16 -3848 1628 21 -3849 1631 22 -3850 1632 13 -3851 1633 22 -3852 1615 6 -3853 1615 8 -3854 1615 16 -3855 1634 1 -3856 1635 2 -3857 1635 12 -3858 1636 2 -3859 1636 3 -3860 1636 8 -3861 1636 16 -3862 1637 22 -3863 1638 22 -\. - - --- --- Data for Name: profile_language; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.profile_language (id, proficiency, profile_id, language_id, purpose) FROM stdin; -1 advanced 1 1833 general -2 advanced 1 1540 general -3 advanced 2 1833 general -4 advanced 2 1540 general -5 advanced 2 1910 general -6 advanced 2 5677 general -7 advanced 3 345 general -8 advanced 3 5392 general -9 advanced 3 1833 general -10 advanced 3 1910 general -11 advanced 3 1954 general -12 advanced 3 1540 general -13 advanced 3 6644 general -14 advanced 4 345 general -15 advanced 4 1540 general -16 advanced 4 1910 general -17 advanced 4 5677 general -18 advanced 6 1954 general -19 advanced 6 5444 general -20 advanced 7 1540 general -21 advanced 8 1540 general -22 advanced 8 1910 general -23 advanced 8 6644 general -24 advanced 10 1833 general -25 advanced 10 1540 general -26 advanced 10 7922 general -27 advanced 11 345 general -28 advanced 11 5392 general -29 advanced 11 1910 general -30 advanced 11 6644 general -31 advanced 12 1833 general -32 advanced 12 1540 general -33 advanced 12 5677 general -34 advanced 12 6644 general -35 advanced 12 6769 general -36 advanced 13 1540 general -37 advanced 14 345 general -38 advanced 14 1833 general -39 advanced 14 1540 general -40 advanced 14 5677 general -41 advanced 14 6644 general -42 advanced 17 2854 general -43 advanced 17 1540 general -44 advanced 17 6644 general -45 advanced 18 1833 general -46 advanced 18 1540 general -47 advanced 18 7922 general -48 advanced 20 2854 general -49 advanced 20 1910 general -50 advanced 20 6059 general -51 advanced 20 6644 general -52 advanced 21 1540 general -53 advanced 22 345 general -54 advanced 22 1540 general -55 advanced 22 7922 general -56 advanced 22 1910 general -57 advanced 24 1833 general -58 advanced 24 1540 general -59 advanced 24 6644 general -60 advanced 25 5641 general -61 advanced 26 345 general -62 advanced 26 2854 general -63 advanced 26 1910 general -64 advanced 26 5677 general -65 advanced 26 6011 general -66 advanced 27 1540 general -67 advanced 27 6644 general -68 advanced 28 7922 general -69 advanced 29 1833 general -70 advanced 29 1954 general -71 advanced 29 1540 general -72 advanced 30 1540 general -73 advanced 30 1910 general -74 advanced 31 345 general -75 advanced 31 2854 general -76 advanced 31 1540 general -77 advanced 31 1910 general -78 advanced 31 5677 general -79 advanced 31 6644 general -80 advanced 32 345 general -81 advanced 32 1833 general -82 advanced 32 2854 general -83 advanced 32 1540 general -84 advanced 32 1910 general -85 advanced 32 5677 general -86 advanced 33 345 general -87 advanced 33 1954 general -88 advanced 33 1540 general -89 advanced 33 1910 general -90 advanced 33 5677 general -91 advanced 34 1540 general -92 advanced 35 345 general -93 advanced 35 1833 general -94 advanced 35 1540 general -95 advanced 35 7922 general -96 advanced 35 1910 general -97 advanced 35 6644 general -98 advanced 36 345 general -99 advanced 36 1540 general -100 advanced 36 1910 general -101 advanced 36 5677 general -102 advanced 36 6644 general -103 advanced 37 1540 general -104 advanced 38 345 general -105 advanced 38 1540 general -106 advanced 39 345 general -107 advanced 39 1540 general -108 advanced 39 1910 general -109 advanced 39 5677 general -110 advanced 40 1833 general -111 advanced 40 1540 general -112 advanced 41 1954 general -113 advanced 41 1540 general -114 advanced 42 1540 general -115 advanced 43 1833 general -116 advanced 43 1540 general -117 advanced 44 1540 general -118 advanced 45 1540 general -119 advanced 46 7922 general -120 advanced 47 1833 general -121 advanced 47 1540 general -122 advanced 47 1910 general -123 advanced 48 1833 general -124 advanced 48 1954 general -125 advanced 48 1540 general -126 advanced 49 345 general -127 advanced 49 1833 general -128 advanced 49 2854 general -129 advanced 49 1540 general -130 advanced 49 1910 general -131 advanced 49 6644 general -132 advanced 50 1833 general -133 advanced 50 1540 general -134 advanced 51 345 general -135 advanced 51 1833 general -136 advanced 51 1540 general -137 advanced 51 1910 general -138 advanced 51 6644 general -139 advanced 52 345 general -140 advanced 52 1833 general -141 advanced 52 1540 general -142 advanced 52 1910 general -143 advanced 52 5677 general -144 advanced 52 6644 general -145 advanced 53 1540 general -146 advanced 54 345 general -147 advanced 54 1833 general -148 advanced 54 1540 general -149 advanced 54 1910 general -150 advanced 54 6644 general -151 advanced 55 1833 general -152 advanced 55 1540 general -153 advanced 56 1833 general -154 advanced 56 1540 general -155 advanced 57 1540 general -156 advanced 58 1833 general -157 advanced 58 1540 general -158 advanced 58 5677 general -159 advanced 59 345 general -160 advanced 59 1540 general -161 advanced 59 7922 general -162 advanced 60 2854 general -163 advanced 60 1540 general -164 advanced 60 5677 general -165 advanced 61 1954 general -166 advanced 61 1540 general -167 advanced 62 1833 general -168 advanced 62 1540 general -169 advanced 62 3348 general -170 advanced 62 6644 general -171 advanced 63 1540 general -172 advanced 63 5677 general -173 advanced 64 1833 general -174 advanced 64 1540 general -175 advanced 65 1540 general -176 advanced 65 1910 general -177 advanced 66 1833 general -178 advanced 66 1540 general -179 advanced 66 5677 general -180 advanced 67 1540 general -181 advanced 67 5677 general -182 advanced 68 1540 general -183 advanced 68 6644 general -184 advanced 69 1833 general -185 advanced 69 1540 general -186 advanced 69 1910 general -187 advanced 70 1833 general -188 advanced 70 1540 general -189 advanced 71 1833 general -190 advanced 71 1540 general -191 advanced 72 1833 general -192 advanced 72 1540 general -193 advanced 73 1540 general -194 advanced 73 5677 general -195 advanced 74 1540 general -196 advanced 74 5677 general -197 advanced 75 1540 general -198 advanced 75 5677 general -199 advanced 76 1540 general -200 advanced 76 5677 general -201 advanced 77 345 general -202 advanced 77 1833 general -203 advanced 77 1540 general -204 advanced 77 6644 general -205 advanced 78 3348 general -206 advanced 78 6644 general -207 advanced 79 345 general -208 advanced 79 1540 general -209 advanced 79 1910 general -210 advanced 80 345 general -211 advanced 80 1540 general -212 advanced 80 7922 general -213 advanced 80 1910 general -214 advanced 80 5677 general -215 advanced 80 6644 general -216 advanced 81 345 general -217 advanced 81 1833 general -218 advanced 81 1540 general -219 advanced 81 7922 general -220 advanced 81 5677 general -221 advanced 82 1910 general -222 advanced 83 5392 general -223 advanced 83 1910 general -224 advanced 84 1540 general -225 advanced 84 5677 general -226 advanced 85 6894 general -227 advanced 86 345 general -228 advanced 86 1540 general -229 advanced 86 6644 general -230 advanced 89 345 general -231 advanced 89 1833 general -232 advanced 89 1540 general -233 advanced 89 7922 general -234 advanced 89 1910 general -235 advanced 89 5677 general -236 advanced 89 6769 general -237 advanced 90 1540 general -238 advanced 90 5677 general -239 advanced 91 1540 general -240 advanced 91 5677 general -241 advanced 92 1540 general -242 advanced 92 5677 general -243 advanced 93 345 general -244 advanced 93 1833 general -245 advanced 93 1540 general -246 advanced 93 1910 general -247 advanced 93 5677 general -248 advanced 94 1833 general -249 advanced 94 1540 general -250 advanced 95 345 general -251 advanced 95 1540 general -252 advanced 95 1910 general -253 advanced 95 5677 general -254 advanced 96 345 general -255 advanced 96 1833 general -256 advanced 96 1540 general -257 advanced 96 7922 general -258 advanced 96 1910 general -259 advanced 96 5677 general -260 advanced 97 1833 general -261 advanced 97 1540 general -262 advanced 98 1540 general -263 advanced 98 6644 general -264 advanced 99 345 general -265 advanced 99 1833 general -266 advanced 99 1540 general -267 advanced 99 7922 general -268 advanced 99 1910 general -269 advanced 99 5677 general -270 advanced 100 5392 general -271 advanced 100 1540 general -272 advanced 100 1910 general -273 advanced 101 1540 general -274 advanced 101 5677 general -275 advanced 101 6769 general -276 advanced 102 345 general -277 advanced 102 1833 general -278 advanced 102 1540 general -279 advanced 104 5392 general -280 advanced 104 1540 general -281 advanced 104 1910 general -282 advanced 105 345 general -283 advanced 105 1833 general -284 advanced 105 1540 general -285 advanced 105 7922 general -286 advanced 105 1910 general -287 advanced 105 5677 general -288 advanced 106 345 general -289 advanced 106 1833 general -290 advanced 106 2854 general -291 advanced 106 1540 general -292 advanced 106 7922 general -293 advanced 106 1910 general -294 advanced 106 5677 general -295 advanced 107 1833 general -296 advanced 107 1540 general -297 advanced 108 345 general -298 advanced 108 2854 general -299 advanced 108 1540 general -300 advanced 108 5677 general -301 advanced 108 6644 general -302 advanced 109 1540 general -303 advanced 110 345 general -304 advanced 110 1910 general -305 advanced 110 1540 general -306 advanced 110 6644 general -307 advanced 111 345 general -308 advanced 111 1833 general -309 advanced 111 1910 general -310 advanced 111 2854 general -311 advanced 111 1540 general -312 advanced 111 5677 general -313 advanced 111 6644 general -314 advanced 112 1540 general -315 advanced 113 1833 general -316 advanced 113 1540 general -317 advanced 114 345 general -318 advanced 114 1540 general -319 advanced 114 1910 general -320 advanced 114 6644 general -321 advanced 115 345 general -322 advanced 115 1540 general -323 advanced 115 1910 general -324 advanced 115 6644 general -325 advanced 116 1833 general -326 advanced 116 1540 general -327 advanced 117 1833 general -328 advanced 117 1540 general -329 advanced 118 1833 general -330 advanced 118 1540 general -331 advanced 119 1833 general -332 advanced 119 1540 general -333 advanced 120 1540 general -334 advanced 121 345 general -335 advanced 121 1540 general -336 advanced 122 345 general -337 advanced 122 5392 general -338 advanced 122 1833 general -339 advanced 122 1910 general -340 advanced 122 1540 general -341 advanced 122 5677 general -342 advanced 122 6644 general -343 advanced 123 345 general -344 advanced 123 1833 general -345 advanced 123 1540 general -346 advanced 123 6644 general -347 advanced 124 1833 general -348 advanced 124 1540 general -349 advanced 124 6644 general -350 advanced 125 1540 general -351 advanced 126 1833 general -352 advanced 126 1540 general -353 advanced 126 7922 general -354 advanced 127 7922 general -355 advanced 127 1833 general -356 advanced 127 1540 general -357 advanced 127 7922 general -358 advanced 128 345 general -359 advanced 128 1833 general -360 advanced 128 1910 general -361 advanced 128 1540 general -362 advanced 129 345 general -363 advanced 129 5392 general -364 advanced 129 1910 general -365 advanced 129 1540 general -366 advanced 129 6644 general -367 advanced 130 345 general -368 advanced 130 5392 general -369 advanced 130 1910 general -370 advanced 130 2854 general -371 advanced 130 1540 general -372 advanced 130 5677 general -373 advanced 130 6644 general -374 advanced 131 1540 general -375 advanced 132 7922 general -376 advanced 132 1833 general -377 advanced 132 1540 general -378 advanced 133 1954 general -379 advanced 133 1540 general -380 advanced 134 345 general -381 advanced 134 5392 general -382 advanced 134 1833 general -383 advanced 134 1540 general -384 advanced 134 7922 general -385 advanced 134 5677 general -386 advanced 134 6644 general -387 advanced 135 1833 general -388 advanced 135 1540 general -389 advanced 136 7922 general -390 advanced 137 7922 general -391 advanced 137 5677 general -392 advanced 138 5392 general -393 advanced 138 1910 general -394 advanced 138 1954 general -395 advanced 138 6644 general -396 advanced 139 7922 general -397 advanced 139 1540 general -398 advanced 140 345 general -399 advanced 140 1833 general -400 advanced 140 1910 general -401 advanced 140 6644 general -402 advanced 141 1540 general -403 advanced 141 6644 general -404 advanced 146 7922 general -405 advanced 147 7922 general -406 advanced 148 7922 general -407 advanced 149 5392 general -408 advanced 149 1910 general -409 advanced 149 1540 general -410 advanced 149 7922 general -411 advanced 149 6644 general -412 advanced 150 345 general -413 advanced 151 345 general -414 advanced 151 5392 general -415 advanced 151 1910 general -416 advanced 151 5677 general -417 advanced 151 6644 general -418 advanced 152 345 general -419 advanced 152 5392 general -420 advanced 152 1910 general -421 advanced 152 5677 general -422 advanced 152 6644 general -423 advanced 153 345 general -424 advanced 153 5392 general -425 advanced 153 1910 general -426 advanced 153 5677 general -427 advanced 153 6644 general -428 advanced 154 3348 general -429 advanced 154 6644 general -430 advanced 155 1910 general -431 advanced 156 5392 general -432 advanced 156 1910 general -433 advanced 157 5642 general -434 advanced 157 5677 general -435 advanced 158 345 general -436 advanced 159 1954 general -437 advanced 160 5677 general -438 advanced 161 5677 general -439 advanced 162 5677 general -440 advanced 163 2521 general -441 advanced 163 5677 general -442 advanced 164 2521 general -443 advanced 164 5677 general -444 advanced 165 2521 general -445 advanced 165 5677 general -446 advanced 166 2521 general -447 advanced 166 5677 general -448 advanced 167 5677 general -449 advanced 168 5392 general -450 advanced 168 1910 general -451 advanced 169 5392 general -452 advanced 169 1910 general -453 advanced 170 5642 general -454 advanced 170 5677 general -455 advanced 171 5677 general -456 advanced 171 6769 general -457 advanced 172 1833 general -458 advanced 173 5642 general -459 advanced 173 5677 general -460 advanced 174 3348 general -461 advanced 174 6644 general -462 advanced 175 5677 general -463 advanced 176 5677 general -464 advanced 177 345 general -465 advanced 178 6644 general -466 advanced 179 345 general -467 advanced 179 1833 general -468 advanced 179 1540 general -469 advanced 179 7922 general -470 advanced 179 1910 general -471 advanced 180 5392 general -472 advanced 180 1910 general -473 advanced 180 6644 general -474 advanced 181 5392 general -475 advanced 181 1910 general -476 advanced 182 345 general -477 advanced 182 5392 general -478 advanced 182 1910 general -479 advanced 182 1954 general -480 advanced 182 3348 general -481 advanced 182 5677 general -482 advanced 182 6644 general -483 advanced 183 6644 general -484 advanced 184 2521 general -485 advanced 184 5677 general -486 advanced 185 2521 general -487 advanced 185 5677 general -488 advanced 186 345 general -489 advanced 187 5677 general -490 advanced 189 5677 general -491 advanced 191 5677 general -492 advanced 191 6769 general -493 advanced 192 1954 general -494 advanced 193 5677 general -495 advanced 193 6769 general -496 advanced 194 5677 general -497 advanced 194 6769 general -498 advanced 195 5677 general -499 advanced 195 6769 general -500 advanced 196 2854 general -501 advanced 196 5677 general -502 advanced 197 5677 general -503 advanced 198 345 general -504 advanced 198 1540 general -505 advanced 198 1910 general -506 advanced 198 6644 general -507 advanced 200 5677 general -508 advanced 200 6769 general -509 advanced 201 5677 general -510 advanced 202 2521 general -511 advanced 202 5677 general -512 advanced 203 2521 general -513 advanced 203 5677 general -514 advanced 204 5392 general -515 advanced 204 1910 general -516 advanced 204 6644 general -517 advanced 205 5392 general -518 advanced 205 1954 general -519 advanced 205 2854 general -520 advanced 205 6644 general -521 advanced 206 345 general -522 advanced 206 5392 general -523 advanced 206 6644 general -524 advanced 207 345 general -525 advanced 207 5392 general -526 advanced 207 6644 general -527 advanced 208 5392 general -528 advanced 208 5641 general -529 advanced 208 5677 general -530 advanced 208 6644 general -531 advanced 210 1910 general -532 advanced 211 345 general -533 advanced 211 5392 general -534 advanced 211 1833 general -535 advanced 211 1910 general -536 advanced 211 2854 general -537 advanced 211 6011 general -538 advanced 211 6644 general -539 advanced 212 345 general -540 advanced 212 1954 general -541 advanced 212 2854 general -542 advanced 212 1540 general -543 advanced 212 6644 general -544 advanced 213 6644 general -545 advanced 214 5677 general -546 advanced 215 345 general -547 advanced 216 345 general -548 advanced 216 1833 general -549 advanced 216 1540 general -550 advanced 216 1910 general -551 advanced 216 6644 general -552 advanced 217 345 general -553 advanced 217 7922 general -554 advanced 218 1954 general -555 advanced 219 1540 general -556 advanced 220 345 general -557 advanced 220 1833 general -558 advanced 220 1954 general -559 advanced 220 2854 general -560 advanced 220 1540 general -561 advanced 220 1910 general -562 advanced 220 5677 general -563 advanced 220 6644 general -564 advanced 220 6769 general -565 advanced 220 6894 general -566 advanced 221 345 general -567 advanced 221 1833 general -568 advanced 221 1540 general -569 advanced 221 1910 general -570 advanced 221 6644 general -571 advanced 222 6644 general -572 advanced 223 345 general -573 advanced 224 345 general -574 advanced 224 1540 general -575 advanced 224 1910 general -576 advanced 224 6644 general -577 advanced 225 345 general -578 advanced 225 1540 general -579 advanced 225 1910 general -580 advanced 225 6644 general -581 advanced 226 345 general -582 advanced 226 1540 general -583 advanced 226 1910 general -584 advanced 226 6644 general -585 advanced 227 345 general -586 advanced 227 1540 general -587 advanced 227 1910 general -588 advanced 227 6644 general -589 advanced 228 345 general -590 advanced 228 1540 general -591 advanced 228 1910 general -592 advanced 228 6644 general -593 advanced 229 345 general -594 advanced 229 2854 general -595 advanced 229 1540 general -596 advanced 229 1910 general -597 advanced 229 5677 general -598 advanced 230 5677 general -599 advanced 231 345 general -600 advanced 231 1540 general -601 advanced 231 5677 general -602 advanced 231 6644 general -603 advanced 232 6644 general -604 advanced 233 345 general -605 advanced 233 1540 general -606 advanced 233 1910 general -607 advanced 233 5677 general -608 advanced 233 6644 general -609 advanced 234 345 general -610 advanced 234 1540 general -611 advanced 234 1910 general -612 advanced 234 6644 general -613 advanced 235 345 general -614 advanced 235 1540 general -615 advanced 235 1910 general -616 advanced 235 6644 general -617 advanced 236 1540 general -618 advanced 237 1540 general -619 advanced 237 6644 general -620 advanced 238 5392 general -621 advanced 238 1540 general -622 advanced 238 1910 general -623 advanced 239 1540 general -624 advanced 240 5677 general -625 advanced 240 6769 general -626 advanced 241 345 general -627 advanced 241 1833 general -628 advanced 241 1954 general -629 advanced 241 1540 general -630 advanced 241 6644 general -631 advanced 242 6644 general -632 advanced 243 345 general -633 advanced 243 5392 general -634 advanced 243 1540 general -635 advanced 243 1910 general -636 advanced 243 5677 general -637 advanced 243 6644 general -638 advanced 244 5677 general -639 advanced 244 6769 general -640 advanced 245 345 general -641 advanced 246 345 general -642 advanced 246 1833 general -643 advanced 246 2854 general -644 advanced 246 1540 general -645 advanced 246 5444 general -646 advanced 246 1910 general -647 advanced 246 5677 general -648 advanced 246 6644 general -649 advanced 248 5392 general -650 advanced 248 1910 general -651 advanced 249 3348 general -652 advanced 249 6644 general -653 advanced 250 3348 general -654 advanced 250 6644 general -655 advanced 251 3348 general -656 advanced 251 6644 general -657 advanced 253 5677 general -658 advanced 253 6769 general -659 advanced 254 5677 general -660 advanced 255 1910 general -661 advanced 256 5677 general -662 advanced 257 1540 general -663 advanced 258 5392 general -664 advanced 259 345 general -665 advanced 259 2521 general -666 advanced 259 2854 general -667 advanced 259 1540 general -668 advanced 260 1910 general -669 advanced 261 5677 general -670 advanced 261 6644 general -671 advanced 262 5677 general -672 advanced 262 6769 general -673 advanced 263 1540 general -674 advanced 264 5392 general -675 advanced 264 1540 general -676 advanced 265 1910 general -677 advanced 266 1540 general -678 advanced 266 5677 general -679 advanced 267 1540 general -680 advanced 267 5677 general -681 advanced 268 345 general -682 advanced 268 1833 general -683 advanced 268 1954 general -684 advanced 268 1540 general -685 advanced 268 1910 general -686 advanced 268 5677 general -687 advanced 268 6644 general -688 advanced 268 6769 general -689 advanced 269 345 general -690 advanced 269 1833 general -691 advanced 269 1954 general -692 advanced 269 2854 general -693 advanced 269 1540 general -694 advanced 269 3348 general -695 advanced 269 1910 general -696 advanced 269 5677 general -697 advanced 269 6644 general -698 advanced 269 6769 general -699 advanced 269 6894 general -700 advanced 270 345 general -701 advanced 271 2854 general -702 advanced 272 6644 general -703 advanced 275 345 general -704 advanced 275 1833 general -705 advanced 275 1540 general -706 advanced 275 1910 general -707 advanced 275 5677 general -708 advanced 275 6644 general -709 advanced 276 345 general -710 advanced 276 1833 general -711 advanced 277 1540 general -712 advanced 278 1540 general -713 advanced 279 1833 general -714 advanced 279 1540 general -715 advanced 279 5677 general -716 advanced 279 6769 general -717 advanced 280 345 general -718 advanced 280 1833 general -719 advanced 280 1954 general -720 advanced 280 1540 general -721 advanced 280 1910 general -722 advanced 280 5677 general -723 advanced 280 6644 general -724 advanced 281 5677 general -725 advanced 282 1833 general -726 advanced 282 1540 general -727 advanced 282 1910 general -728 advanced 283 345 general -729 advanced 283 1540 general -730 advanced 283 1910 general -731 advanced 284 1540 general -732 advanced 285 1833 general -733 advanced 285 1540 general -734 advanced 286 5677 general -735 advanced 287 1910 general -736 advanced 288 6644 general -737 advanced 289 5392 general -738 advanced 289 1910 general -739 advanced 290 345 general -740 advanced 291 6644 general -741 advanced 292 5392 general -742 advanced 292 1910 general -743 advanced 293 5642 general -744 advanced 293 5677 general -745 advanced 294 5677 general -746 advanced 295 5392 general -747 advanced 295 1910 general -748 advanced 296 1540 general -749 advanced 297 6644 general -750 advanced 298 6644 general -751 advanced 299 7922 general -752 advanced 299 1910 general -753 advanced 299 6644 general -754 advanced 301 1540 general -755 advanced 302 6059 general -756 advanced 303 345 general -757 advanced 303 1540 general -758 advanced 303 1910 general -759 advanced 303 5677 general -760 advanced 303 6644 general -761 advanced 304 345 general -762 advanced 305 345 general -763 advanced 305 1833 general -764 advanced 305 1540 general -765 advanced 305 1910 general -766 advanced 305 5677 general -767 advanced 305 6644 general -768 advanced 307 5677 general -769 advanced 308 1910 general -770 advanced 309 5641 general -771 advanced 309 5677 general -772 advanced 310 1833 general -773 advanced 310 1910 general -774 advanced 311 5677 general -775 advanced 312 5677 general -776 advanced 312 6769 general -777 advanced 313 5677 general -778 advanced 313 6769 general -779 advanced 314 1910 general -780 advanced 315 345 general -781 advanced 315 1833 general -782 advanced 315 1954 general -783 advanced 315 1540 general -784 advanced 315 1910 general -785 advanced 315 5677 general -786 advanced 315 6644 general -787 advanced 316 1910 general -788 advanced 317 5677 general -789 advanced 318 1910 general -790 advanced 319 5677 general -791 advanced 320 5677 general -792 advanced 322 1540 general -793 advanced 322 5677 general -794 advanced 322 6769 general -795 advanced 323 1540 general -796 advanced 323 5677 general -797 advanced 323 6769 general -798 advanced 324 5677 general -799 advanced 324 6769 general -800 advanced 325 1954 general -801 advanced 326 1833 general -802 advanced 326 1954 general -803 advanced 326 1540 general -804 advanced 326 5677 general -805 advanced 326 6644 general -806 advanced 327 1540 general -807 advanced 327 5677 general -808 advanced 327 6769 general -809 advanced 328 5677 general -810 advanced 328 6769 general -811 advanced 329 345 general -812 advanced 329 1540 general -813 advanced 329 1910 general -814 advanced 329 5677 general -815 advanced 329 6644 general -816 advanced 329 6769 general -817 advanced 330 1833 general -818 advanced 330 1540 general -819 advanced 330 1910 general -820 advanced 331 345 general -821 advanced 331 3348 general -822 advanced 332 1910 general -823 advanced 333 1540 general -824 advanced 334 5642 general -825 advanced 334 5641 general -826 advanced 335 1833 general -827 advanced 335 1540 general -828 advanced 336 1833 general -829 advanced 336 1540 general -830 advanced 336 1910 general -831 advanced 337 1833 general -832 advanced 337 1540 general -833 advanced 337 1910 general -834 advanced 338 1833 general -835 advanced 338 1540 general -836 advanced 338 1910 general -837 advanced 339 345 general -838 advanced 339 1833 general -839 advanced 339 1540 general -840 advanced 339 1910 general -841 advanced 340 1540 general -842 advanced 341 5677 general -843 advanced 342 345 general -844 advanced 342 1833 general -845 advanced 342 1540 general -846 advanced 342 1910 general -847 advanced 342 6644 general -848 advanced 344 345 general -849 advanced 345 1540 general -850 advanced 346 2854 general -851 advanced 346 5677 general -852 advanced 347 1910 general -853 advanced 348 1540 general -854 advanced 348 5677 general -855 advanced 348 6769 general -856 advanced 349 1540 general -857 advanced 349 5677 general -858 advanced 349 6769 general -859 advanced 350 5677 general -860 advanced 350 6769 general -861 advanced 351 1910 general -862 advanced 352 2521 general -863 advanced 353 1954 general -864 advanced 354 5677 general -865 advanced 354 6769 general -866 advanced 355 1910 general -867 advanced 356 345 general -868 advanced 357 7922 general -869 advanced 358 5677 general -870 advanced 359 1910 general -871 advanced 360 345 general -872 advanced 360 1540 general -873 advanced 360 1910 general -874 advanced 361 345 general -875 advanced 361 1540 general -876 advanced 361 1910 general -877 advanced 361 6644 general -878 advanced 362 6644 general -879 advanced 363 1954 general -880 advanced 364 345 general -881 advanced 364 1833 general -882 advanced 364 1540 general -883 advanced 364 1910 general -884 advanced 364 5677 general -885 advanced 364 6644 general -886 advanced 365 1954 general -887 advanced 366 1540 general -888 advanced 367 1540 general -889 advanced 368 345 general -890 advanced 368 1954 general -891 advanced 368 1540 general -892 advanced 368 1910 general -893 advanced 368 5677 general -894 advanced 368 6644 general -895 advanced 368 6769 general -896 advanced 369 5677 general -897 advanced 370 1833 general -898 advanced 370 1540 general -899 advanced 371 345 general -900 advanced 371 2854 general -901 advanced 371 1540 general -902 advanced 371 1910 general -903 advanced 371 6644 general -904 advanced 371 6894 general -905 advanced 372 345 general -906 advanced 372 1833 general -907 advanced 372 1540 general -908 advanced 372 1910 general -909 advanced 372 5351 general -910 advanced 372 6011 general -911 advanced 373 5677 general -912 advanced 373 6769 general -913 advanced 374 345 general -914 advanced 374 1540 general -915 advanced 374 1910 general -916 advanced 374 5677 general -917 advanced 375 1833 general -918 advanced 375 1954 general -919 advanced 376 5677 general -920 advanced 377 1954 general -921 advanced 379 1833 general -922 advanced 379 1540 general -923 advanced 379 6644 general -924 advanced 380 1540 general -925 advanced 381 1540 general -926 advanced 381 6644 general -927 advanced 382 345 general -928 advanced 382 1833 general -929 advanced 382 1540 general -930 advanced 382 1910 general -931 advanced 382 5351 general -932 advanced 382 6011 general -933 advanced 383 5677 general -934 advanced 383 6769 general -935 advanced 384 5677 general -936 advanced 385 345 general -937 advanced 385 1833 general -938 advanced 385 1540 general -939 advanced 385 1910 general -940 advanced 385 6644 general -941 advanced 386 345 general -942 advanced 386 1954 general -943 advanced 386 1910 general -944 advanced 386 5677 general -945 advanced 386 6644 general -946 advanced 387 5677 general -947 advanced 388 2521 general -948 advanced 389 6769 general -949 advanced 390 5677 general -950 advanced 391 1833 general -951 advanced 391 1540 general -952 advanced 391 6011 general -953 advanced 392 345 general -954 advanced 392 1833 general -955 advanced 392 1540 general -956 advanced 392 1910 general -957 advanced 393 345 general -958 advanced 393 1833 general -959 advanced 393 1540 general -960 advanced 393 1910 general -961 advanced 394 5677 general -962 advanced 394 6769 general -963 advanced 395 1910 general -964 advanced 396 6644 general -965 advanced 397 1833 general -966 advanced 397 1954 general -967 advanced 397 1540 general -968 advanced 398 5677 general -969 advanced 398 6769 general -970 advanced 399 345 general -971 advanced 400 1833 general -972 advanced 400 2854 general -973 advanced 400 1540 general -974 advanced 401 5677 general -975 advanced 402 5677 general -976 advanced 402 6769 general -977 advanced 403 5392 general -978 advanced 403 1833 general -979 advanced 403 1540 general -980 advanced 403 6644 general -981 advanced 404 5677 general -982 advanced 405 5677 general -983 advanced 406 5677 general -984 advanced 406 6769 general -985 advanced 407 5677 general -986 advanced 407 6769 general -987 advanced 408 345 general -988 advanced 408 1540 general -989 advanced 408 3151 general -990 advanced 408 1910 general -991 advanced 408 5677 general -992 advanced 408 6059 general -993 advanced 408 6644 general -994 advanced 409 1833 general -995 advanced 409 7922 general -996 advanced 410 5677 general -997 advanced 410 6769 general -998 advanced 411 345 general -999 advanced 411 2521 general -1000 advanced 411 1910 general -1001 advanced 411 1954 general -1002 advanced 411 2854 general -1003 advanced 411 1540 general -1004 advanced 411 5677 general -1005 advanced 412 345 general -1006 advanced 412 1540 general -1007 advanced 412 1910 general -1008 advanced 412 5677 general -1009 advanced 412 6644 general -1010 advanced 413 345 general -1011 advanced 413 2521 general -1012 advanced 413 1910 general -1013 advanced 413 1954 general -1014 advanced 413 2854 general -1015 advanced 413 1540 general -1016 advanced 413 5677 general -1017 advanced 414 345 general -1018 advanced 414 1833 general -1019 advanced 414 1954 general -1020 advanced 414 1540 general -1021 advanced 414 1910 general -1022 advanced 414 5677 general -1023 advanced 414 6644 general -1024 advanced 415 345 general -1025 advanced 415 1833 general -1026 advanced 415 1540 general -1027 advanced 415 3151 general -1028 advanced 415 1910 general -1029 advanced 415 5677 general -1030 advanced 415 6644 general -1031 advanced 416 5677 general -1032 advanced 416 6769 general -1033 advanced 417 5677 general -1034 advanced 417 6769 general -1035 advanced 418 2854 general -1036 advanced 418 5677 general -1037 advanced 419 3151 general -1038 advanced 419 6644 general -1039 advanced 420 345 general -1040 advanced 420 1833 general -1041 advanced 420 1540 general -1042 advanced 420 1910 general -1043 advanced 420 6644 general -1044 advanced 421 345 general -1045 advanced 421 1833 general -1046 advanced 421 1954 general -1047 advanced 421 1540 general -1048 advanced 421 1910 general -1049 advanced 421 5677 general -1050 advanced 421 6644 general -1051 advanced 421 6769 general -1052 advanced 422 1540 general -1053 advanced 423 345 general -1054 advanced 423 1954 general -1055 advanced 423 1540 general -1056 advanced 423 1910 general -1057 advanced 423 6644 general -1058 advanced 423 6769 general -1059 advanced 425 5641 general -1060 advanced 425 5677 general -1061 advanced 426 1910 general -1062 advanced 427 1910 general -1063 advanced 428 345 general -1064 advanced 428 1540 general -1065 advanced 428 7922 general -1066 advanced 428 1910 general -1067 advanced 428 5677 general -1068 advanced 428 6644 general -1069 advanced 428 6769 general -1070 advanced 429 1910 general -1071 advanced 430 5677 general -1072 advanced 430 6769 general -1073 advanced 431 345 general -1074 advanced 431 1833 general -1075 advanced 431 1540 general -1076 advanced 431 1910 general -1077 advanced 431 5677 general -1078 advanced 431 6644 general -1079 advanced 432 5677 general -1080 advanced 433 1540 general -1081 advanced 434 3348 general -1082 advanced 435 1833 general -1083 advanced 435 1540 general -1084 advanced 436 345 general -1085 advanced 436 1540 general -1086 advanced 437 345 general -1087 advanced 437 1833 general -1088 advanced 437 1540 general -1089 advanced 437 1910 general -1090 advanced 437 5677 general -1091 advanced 437 6644 general -1092 advanced 438 1540 general -1093 advanced 438 5677 general -1094 advanced 438 6769 general -1095 advanced 439 345 general -1096 advanced 439 1540 general -1097 advanced 439 1910 general -1098 advanced 439 5677 general -1099 advanced 439 6644 general -1100 advanced 440 2854 general -1101 advanced 441 345 general -1102 advanced 441 1833 general -1103 advanced 441 1954 general -1104 advanced 441 1540 general -1105 advanced 441 5677 general -1106 advanced 442 1833 general -1107 advanced 442 1540 general -1108 advanced 442 5677 general -1109 advanced 443 3348 general -1110 advanced 444 2854 general -1111 advanced 445 1833 general -1112 advanced 446 345 general -1113 advanced 446 1833 general -1114 advanced 446 1954 general -1115 advanced 446 1540 general -1116 advanced 446 5677 general -1117 advanced 446 6644 general -1118 advanced 447 5677 general -1119 advanced 447 6769 general -1120 advanced 448 5677 general -1121 advanced 449 5677 general -1122 advanced 450 1540 general -1123 advanced 450 3151 general -1124 advanced 450 6644 general -1125 advanced 451 6011 general -1126 advanced 452 345 general -1127 advanced 452 1833 general -1128 advanced 452 1954 general -1129 advanced 452 2854 general -1130 advanced 452 1540 general -1131 advanced 452 1910 general -1132 advanced 452 5677 general -1133 advanced 452 6644 general -1134 advanced 452 6769 general -1135 advanced 452 6894 general -1136 advanced 453 5677 general -1137 advanced 454 5641 general -1138 advanced 454 5677 general -1139 advanced 455 5677 general -1140 advanced 455 6769 general -1141 advanced 456 345 general -1142 advanced 456 1833 general -1143 advanced 456 1540 general -1144 advanced 456 1910 general -1145 advanced 456 6644 general -1146 advanced 457 6644 general -1147 advanced 458 5677 general -1148 advanced 459 5677 general -1149 advanced 460 5677 general -1150 advanced 461 6011 general -1151 advanced 462 6011 general -1152 advanced 463 5677 general -1153 advanced 464 5677 general -1154 advanced 465 345 general -1155 advanced 466 1540 general -1156 advanced 468 6644 general -1157 advanced 469 1910 general -1158 advanced 470 5677 general -1159 advanced 470 6769 general -1160 advanced 471 5677 general -1161 advanced 471 6769 general -1162 advanced 472 2854 general -1163 advanced 472 6644 general -1164 advanced 473 5677 general -1165 advanced 473 6769 general -1166 advanced 474 1833 general -1167 advanced 474 1540 general -1168 advanced 475 345 general -1169 advanced 475 1833 general -1170 advanced 475 1540 general -1171 advanced 475 1910 general -1172 advanced 475 6644 general -1173 advanced 475 6769 general -1174 advanced 476 345 general -1175 advanced 476 1833 general -1176 advanced 476 1540 general -1177 advanced 476 1910 general -1178 advanced 476 6644 general -1179 advanced 476 6769 general -1180 advanced 477 1540 general -1181 advanced 478 345 general -1182 advanced 478 1833 general -1183 advanced 479 1540 general -1184 advanced 479 7922 general -1185 advanced 480 1540 general -1186 advanced 481 6644 general -1187 advanced 482 5677 general -1188 advanced 482 6769 general -1189 advanced 483 5677 general -1190 advanced 484 345 general -1191 advanced 485 6644 general -1192 advanced 486 5677 general -1193 advanced 487 1540 general -1194 advanced 487 5677 general -1195 advanced 487 6769 general -1196 advanced 488 345 general -1197 advanced 488 1833 general -1198 advanced 488 2854 general -1199 advanced 488 1540 general -1200 advanced 488 7922 general -1201 advanced 488 1910 general -1202 advanced 488 5677 general -1203 advanced 488 6644 general -1204 advanced 488 6769 general -1205 advanced 489 345 general -1206 advanced 489 2521 general -1207 advanced 489 618 general -1208 advanced 489 1833 general -1209 advanced 489 1954 general -1210 advanced 489 2854 general -1211 advanced 489 1540 general -1212 advanced 489 7922 general -1213 advanced 489 5444 general -1214 advanced 489 1910 general -1215 advanced 489 5677 general -1216 advanced 489 6059 general -1217 advanced 489 6644 general -1218 advanced 489 6769 general -1219 advanced 489 6819 general -1220 advanced 489 6894 general -1221 advanced 490 345 general -1222 advanced 490 1833 general -1223 advanced 490 1540 general -1224 advanced 490 7922 general -1225 advanced 490 1910 general -1226 advanced 490 5677 general -1227 advanced 490 6059 general -1228 advanced 490 6644 general -1229 advanced 490 6769 general -1230 advanced 491 6769 general -1231 advanced 492 2854 general -1232 advanced 492 5677 general -1233 advanced 493 2854 general -1234 advanced 493 6644 general -1235 advanced 494 1833 general -1236 advanced 494 1540 general -1237 advanced 494 6769 general -1238 advanced 495 6769 general -1239 advanced 496 345 general -1240 advanced 496 1833 general -1241 advanced 496 1954 general -1242 advanced 496 1540 general -1243 advanced 496 1910 general -1244 advanced 496 5351 general -1245 advanced 496 6644 general -1246 advanced 496 6769 general -1247 advanced 496 6894 general -1248 advanced 497 5677 general -1249 advanced 497 6769 general -1250 advanced 498 345 general -1251 advanced 498 1833 general -1252 advanced 498 1954 general -1253 advanced 498 1540 general -1254 advanced 498 1910 general -1255 advanced 498 5351 general -1256 advanced 498 6644 general -1257 advanced 498 6769 general -1258 advanced 498 6894 general -1259 advanced 499 345 general -1260 advanced 499 1833 general -1261 advanced 499 1954 general -1262 advanced 499 1540 general -1263 advanced 499 1910 general -1264 advanced 499 5351 general -1265 advanced 499 6644 general -1266 advanced 499 6769 general -1267 advanced 499 6894 general -1268 advanced 500 5677 general -1269 advanced 500 6769 general -1270 advanced 501 345 general -1271 advanced 501 1540 general -1272 advanced 501 1910 general -1273 advanced 501 5677 general -1274 advanced 501 6644 general -1275 advanced 501 6769 general -1276 advanced 501 6894 general -1277 advanced 502 345 general -1278 advanced 503 5677 general -1279 advanced 504 5444 general -1280 advanced 504 1910 general -1281 advanced 505 1833 general -1282 advanced 505 1954 general -1283 advanced 505 1540 general -1284 advanced 506 5677 general -1285 advanced 507 1833 general -1286 advanced 507 1540 general -1287 advanced 508 1833 general -1288 advanced 508 1540 general -1289 advanced 508 5677 general -1290 advanced 508 6769 general -1291 advanced 509 345 general -1292 advanced 509 1833 general -1293 advanced 509 1540 general -1294 advanced 509 1910 general -1295 advanced 509 5351 general -1296 advanced 509 5677 general -1297 advanced 509 6011 general -1298 advanced 509 6644 general -1299 advanced 509 6769 general -1300 advanced 510 1954 general -1301 advanced 511 5677 general -1302 advanced 512 5677 general -1303 advanced 512 6769 general -1304 advanced 513 2854 general -1305 advanced 513 5677 general -1306 advanced 514 345 general -1307 advanced 514 1540 general -1308 advanced 514 1910 general -1309 advanced 514 6644 general -1310 advanced 515 345 general -1311 advanced 515 1540 general -1312 advanced 515 1910 general -1313 advanced 516 1540 general -1314 advanced 517 345 general -1315 advanced 517 1540 general -1316 advanced 517 1910 general -1317 advanced 517 6644 general -1318 advanced 519 5677 general -1319 advanced 519 6769 general -1320 advanced 520 6644 general -1321 advanced 521 5677 general -1322 advanced 522 5677 general -1323 advanced 523 1910 general -1324 advanced 524 1230 general -1325 advanced 524 5677 general -1326 advanced 525 345 general -1327 advanced 525 2854 general -1328 advanced 525 1540 general -1329 advanced 525 1910 general -1330 advanced 525 5677 general -1331 advanced 525 6644 general -1332 advanced 526 1540 general -1333 advanced 527 345 general -1334 advanced 527 1540 general -1335 advanced 527 1910 general -1336 advanced 527 5677 general -1337 advanced 528 1540 general -1338 advanced 528 5677 general -1339 advanced 528 6769 general -1340 advanced 529 1540 general -1341 advanced 530 5677 general -1342 advanced 530 6769 general -1343 advanced 531 345 general -1344 advanced 531 1540 general -1345 advanced 531 1910 general -1346 advanced 531 5677 general -1347 advanced 532 1910 general -1348 advanced 533 5677 general -1349 advanced 533 6769 general -1350 advanced 534 5677 general -1351 advanced 535 1910 general -1352 advanced 536 5677 general -1353 advanced 536 6769 general -1354 advanced 537 345 general -1355 advanced 537 1833 general -1356 advanced 537 1540 general -1357 advanced 537 1910 general -1358 advanced 537 5677 general -1359 advanced 537 6644 general -1360 advanced 538 5641 general -1361 advanced 538 5677 general -1362 advanced 539 5641 general -1363 advanced 539 5677 general -1364 advanced 540 345 general -1365 advanced 540 1833 general -1366 advanced 540 1540 general -1367 advanced 540 1910 general -1368 advanced 540 5677 general -1369 advanced 540 6644 general -1370 advanced 541 1540 general -1371 advanced 541 1910 general -1372 advanced 542 5677 general -1373 advanced 542 6769 general -1374 advanced 543 1540 general -1375 advanced 543 1910 general -1376 advanced 543 6644 general -1377 advanced 543 6769 general -1378 advanced 544 345 general -1379 advanced 544 1540 general -1380 advanced 544 1910 general -1381 advanced 544 5677 general -1382 advanced 544 6644 general -1383 advanced 546 345 general -1384 advanced 546 1540 general -1385 advanced 546 3151 general -1386 advanced 546 1910 general -1387 advanced 546 5677 general -1388 advanced 546 6644 general -1389 advanced 546 6769 general -1390 advanced 547 1540 general -1391 advanced 547 5677 general -1392 advanced 547 6644 general -1393 advanced 547 6769 general -1394 advanced 549 345 general -1395 advanced 550 5677 general -1396 advanced 550 6769 general -1397 advanced 551 1540 general -1398 advanced 551 6644 general -1399 advanced 552 345 general -1400 advanced 552 2521 general -1401 advanced 552 1540 general -1402 advanced 552 1910 general -1403 advanced 552 5677 general -1404 advanced 552 6644 general -1405 advanced 552 6894 general -1406 advanced 553 5677 general -1407 advanced 553 6769 general -1408 advanced 554 5677 general -1409 advanced 554 6769 general -1410 advanced 555 345 general -1411 advanced 556 345 general -1412 advanced 556 1954 general -1413 advanced 556 2854 general -1414 advanced 556 1910 general -1415 advanced 556 5641 general -1416 advanced 556 6644 general -1417 advanced 556 6769 general -1418 advanced 556 6894 general -1419 advanced 557 5677 general -1420 advanced 557 6769 general -1421 advanced 558 5677 general -1422 advanced 558 6769 general -1423 advanced 559 1954 general -1424 advanced 560 5677 general -1425 advanced 561 1540 general -1426 advanced 562 5677 general -1427 advanced 563 5677 general -1428 advanced 564 345 general -1429 advanced 565 5677 general -1430 advanced 565 6769 general -1431 advanced 566 1540 general -1432 advanced 566 5677 general -1433 advanced 566 6769 general -1434 advanced 567 1833 general -1435 advanced 567 1540 general -1436 advanced 567 5677 general -1437 advanced 568 2521 general -1438 advanced 568 1540 general -1439 advanced 568 5677 general -1440 advanced 568 6769 general -1441 advanced 569 1833 general -1442 advanced 569 1540 general -1443 advanced 569 5677 general -1444 advanced 569 6769 general -1445 advanced 570 1833 general -1446 advanced 570 1954 general -1447 advanced 570 6011 general -1448 advanced 571 345 general -1449 advanced 571 1540 general -1450 advanced 572 5677 general -1451 advanced 573 5677 general -1452 advanced 574 5677 general -1453 advanced 575 1833 general -1454 advanced 575 1954 general -1455 advanced 575 1540 general -1456 advanced 576 1540 general -1457 advanced 576 3151 general -1458 advanced 576 5677 general -1459 advanced 577 345 general -1460 advanced 577 1833 general -1461 advanced 578 1910 general -1462 advanced 579 345 general -1463 advanced 579 3151 general -1464 advanced 580 345 general -1465 advanced 580 1833 general -1466 advanced 580 2854 general -1467 advanced 580 1540 general -1468 advanced 580 1910 general -1469 advanced 580 5677 general -1470 advanced 580 6644 general -1471 advanced 581 345 general -1472 advanced 581 1833 general -1473 advanced 581 1540 general -1474 advanced 581 1910 general -1475 advanced 581 5677 general -1476 advanced 581 6644 general -1477 advanced 582 345 general -1478 advanced 582 1540 general -1479 advanced 582 1910 general -1480 advanced 583 2854 general -1481 advanced 583 5677 general -1482 advanced 584 1954 general -1483 advanced 584 1540 general -1484 advanced 585 1540 general -1485 advanced 586 345 general -1486 advanced 586 1540 general -1487 advanced 586 1910 general -1488 advanced 587 345 general -1489 advanced 587 5998 general -1490 advanced 588 1833 general -1491 advanced 588 1540 general -1492 advanced 589 5641 general -1493 advanced 589 5677 general -1494 advanced 589 6769 general -1495 advanced 590 5677 general -1496 advanced 591 345 general -1497 advanced 591 1833 general -1498 advanced 591 1540 general -1499 advanced 592 1540 general -1500 advanced 593 345 general -1501 advanced 594 345 general -1502 advanced 594 1833 general -1503 advanced 594 1540 general -1504 advanced 594 1910 general -1505 advanced 594 5677 general -1506 advanced 594 6644 general -1507 advanced 594 6769 general -1508 advanced 595 5677 general -1509 advanced 596 5677 general -1510 advanced 596 6769 general -1511 advanced 597 5677 general -1512 advanced 597 6769 general -1513 advanced 598 345 general -1514 advanced 598 1833 general -1515 advanced 598 1954 general -1516 advanced 598 1540 general -1517 advanced 598 1910 general -1518 advanced 598 5641 general -1519 advanced 598 5677 general -1520 advanced 598 6644 general -1521 advanced 598 6769 general -1522 advanced 599 5677 general -1523 advanced 600 345 general -1524 advanced 600 5392 general -1525 advanced 600 1833 general -1526 advanced 600 1910 general -1527 advanced 600 1540 general -1528 advanced 600 5677 general -1529 advanced 601 2854 general -1530 advanced 601 5677 general -1531 advanced 602 5677 general -1532 advanced 602 6769 general -1533 advanced 603 1833 general -1534 advanced 603 1540 general -1535 advanced 604 345 general -1536 advanced 604 1833 general -1537 advanced 604 1954 general -1538 advanced 604 1540 general -1539 advanced 604 1910 general -1540 advanced 604 5677 general -1541 advanced 604 6644 general -1542 advanced 605 345 general -1543 advanced 605 1540 general -1544 advanced 605 1910 general -1545 advanced 605 6644 general -1546 advanced 606 5677 general -1547 advanced 606 6769 general -1548 advanced 607 5677 general -1549 advanced 607 6769 general -1550 advanced 608 6644 general -1551 advanced 609 7922 general -1552 advanced 610 5677 general -1553 advanced 610 6769 general -1554 advanced 611 345 general -1555 advanced 611 1910 general -1556 advanced 611 1540 general -1557 advanced 611 5677 general -1558 advanced 611 6644 general -1559 advanced 612 5677 general -1560 advanced 613 5677 general -1561 advanced 613 6769 general -1562 advanced 614 5677 general -1563 advanced 614 6769 general -1564 advanced 615 5677 general -1565 advanced 615 6769 general -1566 advanced 616 5677 general -1567 advanced 617 5677 general -1568 advanced 618 345 general -1569 advanced 618 1833 general -1570 advanced 618 2854 general -1571 advanced 618 1540 general -1572 advanced 618 1910 general -1573 advanced 618 5677 general -1574 advanced 618 6011 general -1575 advanced 618 6644 general -1576 advanced 619 345 general -1577 advanced 619 1833 general -1578 advanced 619 1954 general -1579 advanced 619 1540 general -1580 advanced 619 1910 general -1581 advanced 619 5677 general -1582 advanced 619 6011 general -1583 advanced 619 6644 general -1584 advanced 620 5677 general -1585 advanced 621 1540 general -1586 advanced 621 6769 general -1587 advanced 622 1833 general -1588 advanced 622 1540 general -1589 advanced 622 7922 general -1590 advanced 623 5677 general -1591 advanced 624 5677 general -1592 advanced 624 6769 general -1593 advanced 625 345 general -1594 advanced 625 1540 general -1595 advanced 625 1910 general -1596 advanced 625 5677 general -1597 advanced 625 6644 general -1598 advanced 625 6769 general -1599 advanced 626 345 general -1600 advanced 627 1833 general -1601 advanced 627 1540 general -1602 advanced 627 5677 general -1603 advanced 627 6769 general -1604 advanced 628 1833 general -1605 advanced 628 1540 general -1606 advanced 628 5677 general -1607 advanced 628 6769 general -1608 advanced 629 345 general -1609 advanced 629 1833 general -1610 advanced 629 1540 general -1611 advanced 629 1910 general -1612 advanced 629 5677 general -1613 advanced 630 345 general -1614 advanced 630 1833 general -1615 advanced 630 1540 general -1616 advanced 630 1910 general -1617 advanced 630 5677 general -1618 advanced 630 6644 general -1619 advanced 630 6769 general -1620 advanced 631 345 general -1621 advanced 631 1833 general -1622 advanced 631 1540 general -1623 advanced 631 1910 general -1624 advanced 631 5677 general -1625 advanced 631 6644 general -1626 advanced 631 6769 general -1627 advanced 632 345 general -1628 advanced 632 3151 general -1629 advanced 633 345 general -1630 advanced 633 1833 general -1631 advanced 633 1540 general -1632 advanced 633 5677 general -1633 advanced 633 6769 general -1634 advanced 634 345 general -1635 advanced 635 345 general -1636 advanced 635 1954 general -1637 advanced 635 1540 general -1638 advanced 635 1910 general -1639 advanced 635 5677 general -1640 advanced 635 6644 general -1641 advanced 635 6769 general -1642 advanced 636 345 general -1643 advanced 636 1540 general -1644 advanced 636 1910 general -1645 advanced 636 5677 general -1646 advanced 636 6644 general -1647 advanced 637 1833 general -1648 advanced 637 5677 general -1649 advanced 637 6769 general -1650 advanced 638 6644 general -1651 advanced 639 345 general -1652 advanced 640 1833 general -1653 advanced 640 1954 general -1654 advanced 640 1540 general -1655 advanced 641 5677 general -1656 advanced 642 1833 general -1657 advanced 643 1833 general -1658 advanced 643 1540 general -1659 advanced 643 5677 general -1660 advanced 643 6769 general -1661 advanced 644 1540 general -1662 advanced 644 6644 general -1663 advanced 645 5677 general -1664 advanced 646 345 general -1665 advanced 647 5677 general -1666 advanced 647 6769 general -1667 advanced 648 1833 general -1668 advanced 648 1540 general -1669 advanced 649 5677 general -1670 advanced 649 6769 general -1671 advanced 650 5677 general -1672 advanced 650 6769 general -1673 advanced 651 5677 general -1674 advanced 651 6769 general -1675 advanced 652 5677 general -1676 advanced 652 6769 general -1677 advanced 653 5677 general -1678 advanced 654 6644 general -1679 advanced 655 5677 general -1680 advanced 655 6769 general -1681 advanced 656 5677 general -1682 advanced 656 6769 general -1683 advanced 657 5677 general -1684 advanced 657 6769 general -1685 advanced 658 5677 general -1686 advanced 658 6769 general -1687 advanced 659 345 general -1688 advanced 659 1540 general -1689 advanced 659 5677 general -1690 advanced 660 345 general -1691 advanced 660 1540 general -1692 advanced 660 5677 general -1693 advanced 661 345 general -1694 advanced 661 1540 general -1695 advanced 661 5677 general -1696 advanced 661 6769 general -1697 advanced 662 5677 general -1698 advanced 662 6769 general -1699 advanced 663 5641 general -1700 advanced 663 5677 general -1701 advanced 664 5677 general -1702 advanced 665 1540 general -1703 advanced 666 345 general -1704 advanced 666 1833 general -1705 advanced 666 1954 general -1706 advanced 666 2854 general -1707 advanced 666 1540 general -1708 advanced 666 3151 general -1709 advanced 666 7922 general -1710 advanced 666 5444 general -1711 advanced 666 1910 general -1712 advanced 666 5677 general -1713 advanced 666 6011 general -1714 advanced 666 6644 general -1715 advanced 666 6769 general -1716 advanced 667 6769 general -1717 advanced 668 5677 general -1718 advanced 668 6769 general -1719 advanced 669 5677 general -1720 advanced 669 6769 general -1721 advanced 670 5677 general -1722 advanced 670 6769 general -1723 advanced 671 5677 general -1724 advanced 671 6769 general -1725 advanced 672 5677 general -1726 advanced 672 6769 general -1727 advanced 673 1833 general -1728 advanced 673 7922 general -1729 advanced 674 2854 general -1730 advanced 674 5677 general -1731 advanced 675 5677 general -1732 advanced 676 5677 general -1733 advanced 677 1540 general -1734 advanced 677 5677 general -1735 advanced 677 6769 general -1736 advanced 678 345 general -1737 advanced 678 1910 general -1738 advanced 678 5677 general -1739 advanced 679 5677 general -1740 advanced 680 5677 general -1741 advanced 680 6769 general -1742 advanced 681 5677 general -1743 advanced 682 5677 general -1744 advanced 683 5677 general -1745 advanced 683 6769 general -1746 advanced 684 5677 general -1747 advanced 684 6769 general -1748 advanced 685 5677 general -1749 advanced 685 6769 general -1750 advanced 686 5677 general -1751 advanced 686 6769 general -1752 advanced 687 1540 general -1753 advanced 687 5677 general -1754 advanced 687 6769 general -1755 advanced 688 5677 general -1756 advanced 688 6769 general -1757 advanced 689 5677 general -1758 advanced 690 6894 general -1759 advanced 691 1540 general -1760 advanced 692 5677 general -1761 advanced 693 1910 general -1762 advanced 694 5677 general -1763 advanced 695 5677 general -1764 advanced 696 1833 general -1765 advanced 697 5677 general -1766 advanced 697 6769 general -1767 advanced 698 5677 general -1768 advanced 698 6769 general -1769 advanced 699 1833 general -1770 advanced 699 1540 general -1771 advanced 699 5677 general -1772 advanced 699 6769 general -1773 advanced 700 345 general -1774 advanced 700 1833 general -1775 advanced 700 1540 general -1776 advanced 700 1910 general -1777 advanced 700 5677 general -1778 advanced 700 6644 general -1779 advanced 700 6769 general -1780 advanced 701 1540 general -1781 advanced 701 5677 general -1782 advanced 701 6769 general -1783 advanced 702 1540 general -1784 advanced 702 5677 general -1785 advanced 702 6769 general -1786 advanced 703 1910 general -1787 advanced 704 345 general -1788 advanced 704 1540 general -1789 advanced 704 1910 general -1790 advanced 704 6644 general -1791 advanced 705 345 general -1792 advanced 705 1540 general -1793 advanced 705 1910 general -1794 advanced 706 1540 general -1795 advanced 707 5677 general -1796 advanced 707 6769 general -1797 advanced 708 5677 general -1798 advanced 709 345 general -1799 advanced 709 1833 general -1800 advanced 709 1540 general -1801 advanced 709 1910 general -1802 advanced 709 5677 general -1803 advanced 709 6644 general -1804 advanced 710 345 general -1805 advanced 711 345 general -1806 advanced 711 1833 general -1807 advanced 711 1540 general -1808 advanced 712 345 general -1809 advanced 712 1833 general -1810 advanced 712 1540 general -1811 advanced 713 345 general -1812 advanced 713 1833 general -1813 advanced 713 1540 general -1814 advanced 713 1910 general -1815 advanced 713 5677 general -1816 advanced 713 6644 general -1817 advanced 714 345 general -1818 advanced 714 1540 general -1819 advanced 714 6644 general -1820 advanced 714 6769 general -1821 advanced 715 345 general -1822 advanced 715 1540 general -1823 advanced 715 3151 general -1824 advanced 715 6644 general -1825 advanced 716 5677 general -1826 advanced 716 6769 general -1827 advanced 717 5677 general -1828 advanced 717 6769 general -1829 advanced 718 1833 general -1830 advanced 718 1954 general -1831 advanced 718 2854 general -1832 advanced 718 1540 general -1833 advanced 718 1910 general -1834 advanced 718 5677 general -1835 advanced 718 6644 general -1836 advanced 719 5677 general -1837 advanced 719 6769 general -1838 advanced 720 345 general -1839 advanced 720 1833 general -1840 advanced 720 1540 general -1841 advanced 720 1910 general -1842 advanced 720 6644 general -1843 advanced 720 6769 general -1844 advanced 721 345 general -1845 advanced 721 1833 general -1846 advanced 721 1540 general -1847 advanced 721 1910 general -1848 advanced 721 6644 general -1849 advanced 721 6769 general -1850 advanced 722 345 general -1851 advanced 722 1540 general -1852 advanced 722 6769 general -1853 advanced 723 5677 general -1854 advanced 724 5677 general -1855 advanced 724 6769 general -1856 advanced 725 1540 general -1857 advanced 725 5677 general -1858 advanced 725 6769 general -1859 advanced 726 5677 general -1860 advanced 727 345 general -1861 advanced 727 1833 general -1862 advanced 727 1540 general -1863 advanced 727 5677 general -1864 advanced 727 6644 general -1865 advanced 728 1833 general -1866 advanced 728 1540 general -1867 advanced 729 1833 general -1868 advanced 729 1954 general -1869 advanced 729 1540 general -1870 advanced 730 345 general -1871 advanced 730 1833 general -1872 advanced 730 1954 general -1873 advanced 730 1540 general -1874 advanced 730 1910 general -1875 advanced 730 5677 general -1876 advanced 730 6644 general -1877 advanced 730 6769 general -1878 advanced 731 345 general -1879 advanced 731 1833 general -1880 advanced 731 1540 general -1881 advanced 731 1910 general -1882 advanced 732 345 general -1883 advanced 732 1833 general -1884 advanced 732 1540 general -1885 advanced 732 1910 general -1886 advanced 732 5677 general -1887 advanced 732 6644 general -1888 advanced 733 345 general -1889 advanced 733 1833 general -1890 advanced 733 1540 general -1891 advanced 733 1910 general -1892 advanced 733 5677 general -1893 advanced 733 6644 general -1894 advanced 734 5677 general -1895 advanced 734 6769 general -1896 advanced 735 345 general -1897 advanced 736 7922 general -1898 advanced 737 345 general -1899 advanced 737 1833 general -1900 advanced 737 1954 general -1901 advanced 737 1540 general -1902 advanced 737 3151 general -1903 advanced 737 1910 general -1904 advanced 737 5677 general -1905 advanced 737 6059 general -1906 advanced 737 6644 general -1907 advanced 738 345 general -1908 advanced 738 1833 general -1909 advanced 738 1954 general -1910 advanced 738 1540 general -1911 advanced 738 3151 general -1912 advanced 738 1910 general -1913 advanced 738 5677 general -1914 advanced 738 6644 general -1915 advanced 739 345 general -1916 advanced 739 1833 general -1917 advanced 739 1954 general -1918 advanced 739 1540 general -1919 advanced 739 1910 general -1920 advanced 739 5677 general -1921 advanced 739 6644 general -1922 advanced 739 6769 general -1923 advanced 740 1833 general -1924 advanced 740 1540 general -1925 advanced 740 5677 general -1926 advanced 741 5677 general -1927 advanced 742 345 general -1928 advanced 742 1833 general -1929 advanced 742 1540 general -1930 advanced 742 1910 general -1931 advanced 742 5677 general -1932 advanced 743 345 general -1933 advanced 743 1833 general -1934 advanced 743 2854 general -1935 advanced 743 1540 general -1936 advanced 743 1910 general -1937 advanced 743 5677 general -1938 advanced 743 6644 general -1939 advanced 744 345 general -1940 advanced 744 1833 general -1941 advanced 744 1540 general -1942 advanced 744 1910 general -1943 advanced 744 5677 general -1944 advanced 744 6644 general -1945 advanced 745 2854 general -1946 advanced 745 5677 general -1947 advanced 746 5677 general -1948 advanced 746 6769 general -1949 advanced 747 5677 general -1950 advanced 748 5677 general -1951 advanced 748 6769 general -1952 advanced 749 5677 general -1953 advanced 749 6769 general -1954 advanced 750 1540 general -1955 advanced 750 1910 general -1956 advanced 750 6894 general -1957 advanced 751 1540 general -1958 advanced 751 6644 general -1959 advanced 752 345 general -1960 advanced 752 1833 general -1961 advanced 752 2854 general -1962 advanced 752 1540 general -1963 advanced 752 1910 general -1964 advanced 752 6644 general -1965 advanced 752 6894 general -1966 advanced 753 5677 general -1967 advanced 753 6769 general -1968 advanced 754 1540 general -1969 advanced 755 7922 general -1970 advanced 756 5641 general -1971 advanced 756 5677 general -1972 advanced 757 5677 general -1973 advanced 758 345 general -1974 advanced 758 1230 general -1975 advanced 758 1833 general -1976 advanced 758 1540 general -1977 advanced 758 3151 general -1978 advanced 758 1910 general -1979 advanced 758 5677 general -1980 advanced 758 6644 general -1981 advanced 758 6769 general -1982 advanced 758 6894 general -1983 advanced 759 345 general -1984 advanced 759 5677 general -1985 advanced 760 5677 general -1986 advanced 761 5677 general -1987 advanced 761 6769 general -1988 advanced 762 2854 general -1989 advanced 762 5677 general -1990 advanced 763 5677 general -1991 advanced 763 6769 general -1992 advanced 764 5677 general -1993 advanced 765 5677 general -1994 advanced 766 5677 general -1995 advanced 767 5677 general -1996 advanced 768 1540 general -1997 advanced 769 345 general -1998 advanced 769 1833 general -1999 advanced 769 1540 general -2000 advanced 769 1910 general -2001 advanced 769 6644 general -2002 advanced 770 5677 general -2003 advanced 771 5677 general -2004 advanced 772 345 general -2005 advanced 772 1540 general -2006 advanced 772 1910 general -2007 advanced 772 6644 general -2008 advanced 773 345 general -2009 advanced 773 1833 general -2010 advanced 773 1954 general -2011 advanced 773 1540 general -2012 advanced 773 1910 general -2013 advanced 773 6644 general -2014 advanced 773 6769 general -2015 advanced 774 5677 general -2016 advanced 775 5677 general -2017 advanced 775 6769 general -2018 advanced 776 5677 general -2019 advanced 776 6769 general -2020 advanced 777 345 general -2021 advanced 777 1833 general -2022 advanced 777 1540 general -2023 advanced 777 5677 general -2024 advanced 777 6769 general -2025 advanced 778 5677 general -2026 advanced 779 5677 general -2027 advanced 779 6769 general -2028 advanced 780 6769 general -2029 advanced 781 345 general -2030 advanced 781 1540 general -2031 advanced 781 1910 general -2032 advanced 781 5677 general -2033 advanced 781 6644 general -2034 advanced 782 345 general -2035 advanced 783 1540 general -2036 advanced 783 5677 general -2037 advanced 783 6769 general -2038 advanced 784 1540 general -2039 advanced 785 345 general -2040 advanced 785 1833 general -2041 advanced 785 1540 general -2042 advanced 785 1910 general -2043 advanced 785 5677 general -2044 advanced 786 5677 general -2045 advanced 786 6769 general -2046 advanced 787 345 general -2047 advanced 787 1833 general -2048 advanced 787 1540 general -2049 advanced 787 1910 general -2050 advanced 787 6644 general -2051 advanced 787 6769 general -2052 advanced 788 5677 general -2053 advanced 788 6769 general -2054 advanced 789 1540 general -2055 advanced 790 2854 general -2056 advanced 791 5677 general -2057 advanced 792 5677 general -2058 advanced 793 1833 general -2059 advanced 793 1540 general -2060 advanced 793 6769 general -2061 advanced 794 1910 general -2062 advanced 795 5677 general -2063 advanced 795 6769 general -2064 advanced 796 345 general -2065 advanced 796 1833 general -2066 advanced 796 1540 general -2067 advanced 797 1833 general -2068 advanced 797 1954 general -2069 advanced 797 1540 general -2070 advanced 798 345 general -2071 advanced 800 5677 general -2072 advanced 801 5677 general -2073 advanced 802 5351 general -2075 advanced 804 5677 general -2076 advanced 805 2521 general -2077 advanced 805 5677 general -2081 intermediate 807 1833 general -2082 native 807 1540 general -2083 fluent 808 1833 general -2084 native 808 1540 general -2085 fluent 809 1833 general -2087 fluent 811 1833 general -2088 native 812 620 general -2089 fluent 812 1833 general -2090 native 813 620 general -2091 fluent 813 1833 general -2094 fluent 815 1833 general -2095 fluent 815 1540 general -2096 native 815 5677 general -2097 fluent 816 1833 general -2098 native 817 1833 general -2099 native 817 1540 general -2100 fluent 818 1833 general -2101 native 818 1540 general -2102 native 819 620 general -2103 native 819 1833 general -2104 native 820 1833 general -2105 fluent 821 1833 general -2106 native 821 6644 general -2107 native 822 1833 general -2108 native 823 620 general -2109 native 823 1833 general -2110 native 824 1833 general -2111 native 825 1833 general -2112 native 826 1833 general -2113 fluent 826 1540 general -2114 fluent 827 1833 general -2115 fluent 828 1833 general -2116 fluent 829 1833 general -2117 native 829 6644 general -2118 fluent 830 1833 general -2119 fluent 831 1833 general -2120 intermediate 832 345 general -2121 fluent 832 1833 general -2122 native 833 1833 general -2123 native 834 345 general -2124 native 834 1833 general -2125 fluent 835 1833 general -2126 native 835 6644 general -2127 fluent 836 1833 general -2128 fluent 837 1833 general -2129 native 837 1910 general -2130 intermediate 837 1540 general -2131 fluent 838 1833 general -2132 fluent 839 1833 general -2133 native 839 1540 general -2134 fluent 840 1833 general -2135 native 841 1833 general -2136 fluent 842 1833 general -2137 native 842 1910 general -2138 intermediate 842 1540 general -2139 native 843 620 general -2140 fluent 843 1833 general -2141 fluent 844 1833 general -2142 native 845 620 general -2143 fluent 845 1833 general -2144 fluent 846 1833 general -2145 native 847 1833 general -2146 native 847 6644 general -2147 native 848 620 general -2148 native 848 1833 general -2149 native 849 620 general -2150 fluent 849 1833 general -2151 fluent 850 1833 general -2152 fluent 850 3151 general -2153 native 850 6644 general -2154 fluent 851 1833 general -2155 native 851 1540 general -2156 fluent 852 1833 general -2157 fluent 853 1833 general -2158 intermediate 853 6769 general -2159 native 854 620 general -2160 native 854 1833 general -2161 native 855 1833 general -2162 fluent 856 1833 general -2163 fluent 856 1540 general -2164 native 857 1833 general -2165 fluent 858 1833 general -2166 native 859 1833 general -2167 intermediate 860 1833 general -2168 native 861 345 general -2169 native 861 620 general -2170 native 861 1833 general -2171 native 862 620 general -2172 native 862 1833 general -2173 native 863 1833 general -2174 fluent 864 1833 general -2175 native 865 1833 general -2176 native 866 620 general -2177 fluent 866 1833 general -2178 native 867 345 general -2179 fluent 867 1833 general -2180 fluent 868 1833 general -2181 native 868 1540 general -2182 native 869 1833 general -2183 fluent 870 1833 general -2184 fluent 870 1540 general -2185 native 870 5677 general -2186 fluent 871 1833 general -2187 fluent 872 1833 general -2188 fluent 872 1540 general -2189 intermediate 872 5677 general -2190 native 873 345 general -2191 intermediate 873 1833 general -2192 fluent 873 1540 general -2193 fluent 874 1833 general -2194 fluent 874 1540 general -2195 native 874 5677 general -2196 native 874 6769 general -2197 native 875 1833 general -2198 fluent 876 1833 general -2199 native 876 5677 general -2200 fluent 877 1833 general -2201 fluent 877 1540 general -2202 fluent 878 1833 general -2203 native 878 1910 general -2204 fluent 879 1833 general -2205 native 879 6644 general -2206 fluent 880 1833 general -2207 native 880 5677 general -2208 native 881 345 general -2209 fluent 881 1833 general -2210 fluent 882 1833 general -2211 fluent 883 1833 general -2212 fluent 883 1540 general -2213 native 884 345 general -2214 native 884 1910 general -2215 native 884 5677 general -2216 native 884 6644 general -2217 native 885 1833 general -2218 fluent 885 1540 general -2219 fluent 886 1833 general -2220 fluent 887 1833 general -2221 native 887 1540 general -2222 fluent 888 1833 general -2223 native 888 5677 general -2224 native 889 620 general -2225 native 889 1833 general -2226 fluent 890 1833 general -2227 native 890 5677 general -2228 native 890 6769 general -2229 fluent 891 1833 general -2230 native 891 1540 general -2231 native 892 1833 general -2232 fluent 892 1540 general -2233 fluent 893 1833 general -2234 fluent 893 6059 general -2235 intermediate 894 345 general -2236 fluent 894 1833 general -2237 intermediate 894 1910 general -2238 fluent 894 1540 general -2239 intermediate 894 5677 general -2240 intermediate 894 6769 general -2241 native 896 1833 general -2242 fluent 896 1540 general -2243 fluent 897 1833 general -2244 intermediate 897 1954 general -2245 native 897 1540 general -2246 fluent 898 1833 general -2247 native 898 1540 general -2248 native 899 620 general -2249 native 899 1833 general -2250 fluent 900 1833 general -2251 native 900 1540 general -2252 fluent 900 6011 general -2253 fluent 901 1833 general -2254 native 901 1540 general -2255 native 902 1833 general -2256 fluent 903 1833 general -2257 native 903 5677 general -2258 fluent 904 1833 general -2259 native 905 620 general -2260 native 905 1833 general -2261 fluent 906 1833 general -2262 native 906 1540 general -2263 native 907 345 general -2264 fluent 907 1833 general -2265 intermediate 907 1540 general -2266 fluent 909 1833 general -2267 native 911 345 general -2268 native 911 620 general -2269 native 912 345 general -2270 fluent 912 1833 general -2271 fluent 913 1833 general -2272 native 913 1540 general -2273 intermediate 914 1833 general -2274 native 914 1910 general -2275 native 915 620 general -2276 native 915 1833 general -2277 native 916 620 general -2278 fluent 916 1833 general -2279 native 916 6644 general -2280 native 917 345 general -2281 native 917 1833 general -2282 fluent 918 1833 general -2283 native 918 1910 general -2284 native 919 1910 general -2285 native 920 1833 general -2286 native 921 1954 general -2287 fluent 921 1540 general -2288 intermediate 922 1833 general -2289 native 922 1540 general -2290 native 922 5677 general -2291 intermediate 922 6769 general -2292 native 923 1833 general -2293 native 923 1540 general -2294 fluent 924 1833 general -2295 native 924 6644 general -2296 native 925 620 general -2297 fluent 925 1833 general -2298 native 926 1833 general -2299 native 927 1910 general -2300 fluent 927 5677 general -2301 fluent 928 1833 general -2302 native 928 5677 general -2303 fluent 929 1833 general -2304 native 929 1540 general -2305 native 930 620 general -2306 fluent 931 1833 general -2307 native 931 5677 general -2308 fluent 932 1833 general -2309 fluent 932 1540 general -2310 native 932 5677 general -2311 native 933 620 general -2312 fluent 933 1833 general -2313 native 933 5677 general -2314 intermediate 934 1833 general -2315 native 934 5677 general -2316 fluent 935 1833 general -2317 native 935 5677 general -2318 fluent 936 1833 general -2319 intermediate 936 1540 general -2320 native 936 5677 general -2321 native 936 6769 general -2322 fluent 937 1833 general -2323 fluent 937 1540 general -2324 fluent 937 5677 general -2325 fluent 937 6769 general -2326 native 938 620 general -2327 fluent 938 1833 general -2328 fluent 939 1833 general -2329 native 939 6644 general -2330 fluent 940 1833 general -2331 fluent 941 1833 general -2332 fluent 941 1954 general -2333 fluent 941 1540 general -2334 fluent 941 6011 general -2335 native 942 345 general -2336 fluent 942 1833 general -2337 native 944 1833 general -2338 fluent 945 1833 general -2339 native 946 5677 general -2340 native 946 6769 general -2341 fluent 947 1833 general -2342 native 947 5677 general -2343 fluent 948 1833 general -2344 fluent 949 1833 general -2345 fluent 949 1540 general -2346 fluent 950 1833 general -2347 fluent 950 1540 general -2348 fluent 951 1833 general -2349 fluent 951 1910 general -2350 fluent 952 1833 general -2351 fluent 952 1540 general -2352 fluent 953 1833 general -2353 fluent 953 1540 general -2354 fluent 953 5677 general -2355 fluent 954 1833 general -2356 fluent 955 1833 general -2357 fluent 955 1540 general -2358 fluent 956 1833 general -2359 fluent 956 1540 general -2360 fluent 957 1833 general -2361 fluent 957 1540 general -2362 fluent 958 1833 general -2363 fluent 959 1833 general -2364 fluent 960 345 general -2365 fluent 960 1833 general -2366 fluent 960 1540 general -2367 fluent 961 1833 general -2368 fluent 961 1540 general -2369 fluent 961 5677 general -2370 fluent 962 1833 general -2371 fluent 962 1540 general -2372 fluent 963 345 general -2373 fluent 963 1540 general -2374 fluent 964 1833 general -2375 fluent 964 1540 general -2376 fluent 965 345 general -2377 fluent 965 1833 general -2378 fluent 966 345 general -2379 fluent 966 1833 general -2380 fluent 967 1833 general -2381 fluent 967 1540 general -2382 fluent 968 1833 general -2383 fluent 969 345 general -2384 fluent 969 1833 general -2385 fluent 969 1540 general -2386 fluent 971 1833 general -2387 fluent 971 1540 general -2388 fluent 971 5677 general -2389 fluent 972 1833 general -2390 fluent 972 1540 general -2391 fluent 972 6644 general -2392 fluent 973 1833 general -2393 fluent 974 1833 general -2394 fluent 974 1540 general -2395 fluent 974 6644 general -2396 fluent 975 1833 general -2397 fluent 975 1910 general -2398 fluent 975 1540 general -2399 fluent 976 1833 general -2400 native 976 1910 general -2401 fluent 976 1540 general -2402 fluent 977 1833 general -2403 native 977 1954 general -2404 fluent 977 1540 general -2405 fluent 978 1833 general -2406 fluent 978 1910 general -2407 fluent 978 1540 general -2408 fluent 979 1833 general -2409 fluent 980 1833 general -2410 fluent 980 1910 general -2411 fluent 980 1540 general -2412 fluent 981 1833 general -2413 fluent 981 1540 general -2414 fluent 982 1833 general -2415 fluent 982 5677 general -2416 fluent 983 1833 general -2417 fluent 983 1540 general -2418 fluent 984 1833 general -2419 intermediate 985 1833 general -2420 fluent 989 1833 general -2421 fluent 989 1540 general -2422 fluent 989 5677 general -2423 fluent 990 1833 general -2424 fluent 990 1540 general -2425 fluent 991 1833 general -2426 fluent 991 1540 general -2427 fluent 992 1833 general -2428 fluent 993 1540 general -2429 fluent 994 1833 general -2430 fluent 994 1910 general -2431 fluent 994 1540 general -2432 fluent 995 1833 general -2433 fluent 995 1540 general -2434 fluent 996 1833 general -2435 fluent 996 1540 general -2436 fluent 997 1833 general -2437 fluent 998 1833 general -2438 fluent 998 1910 general -2439 fluent 998 6644 general -2440 fluent 999 345 general -2441 fluent 999 1540 general -2442 fluent 1000 1833 general -2443 fluent 1001 1833 general -2444 fluent 1002 345 general -2445 fluent 1002 1833 general -2446 fluent 1002 1540 general -2447 fluent 1003 345 general -2448 fluent 1003 1833 general -2449 fluent 1004 1833 general -2450 fluent 1004 1910 general -2451 fluent 1004 1540 general -2452 fluent 1004 5677 general -2453 fluent 1005 1833 general -2454 fluent 1005 1540 general -2455 fluent 1005 6644 general -2456 fluent 1006 1833 general -2457 fluent 1007 1833 general -2458 fluent 1007 1540 general -2459 fluent 1007 6644 general -2460 fluent 1008 1833 general -2461 fluent 1009 1833 general -2462 fluent 1009 6644 general -2463 fluent 1010 1833 general -2464 fluent 1010 5677 general -2465 fluent 1011 1833 general -2466 fluent 1011 1540 general -2467 fluent 1012 345 general -2468 fluent 1012 1833 general -2469 fluent 1012 1540 general -2470 fluent 1013 1833 general -2471 fluent 1014 1833 general -2472 fluent 1015 345 general -2473 fluent 1015 1833 general -2474 fluent 1016 1833 general -2475 fluent 1016 1910 general -2476 fluent 1017 1833 general -2477 fluent 1017 6644 general -2478 fluent 1018 5677 general -2479 fluent 1019 1833 general -2480 fluent 1019 6644 general -2481 fluent 1020 345 general -2482 fluent 1021 1833 general -2483 fluent 1021 6644 general -2484 fluent 1022 1833 general -2485 fluent 1022 1910 general -2486 fluent 1023 1833 general -2487 fluent 1023 1540 general -2488 fluent 1024 1833 general -2489 fluent 1024 1540 general -2490 fluent 1024 5677 general -2491 fluent 1025 1833 general -2492 fluent 1026 1833 general -2493 fluent 1026 1540 general -2494 fluent 1027 1833 general -2495 fluent 1028 345 general -2496 fluent 1028 1833 general -2497 fluent 1029 1833 general -2498 fluent 1029 5677 general -2499 fluent 1029 6769 general -2500 fluent 1030 345 general -2501 fluent 1030 1833 general -2502 fluent 1031 1833 general -2503 fluent 1031 6644 general -2504 fluent 1032 1833 general -2505 fluent 1032 1540 general -2506 fluent 1033 5677 general -2507 fluent 1034 1833 general -2508 fluent 1035 1833 general -2509 fluent 1035 1540 general -2510 fluent 1036 1833 general -2511 fluent 1036 5677 general -2512 fluent 1036 6769 general -2513 fluent 1037 1833 general -2514 native 1038 345 general -2515 fluent 1038 1833 general -2516 fluent 1039 5677 general -2517 fluent 1040 345 general -2518 fluent 1041 345 general -2519 fluent 1042 5677 general -2520 fluent 1042 6769 general -2521 fluent 1043 1833 general -2522 fluent 1043 1910 general -2523 fluent 1043 1540 general -2524 fluent 1044 1833 general -2525 fluent 1044 6644 general -2526 fluent 1045 1833 general -2527 fluent 1045 1540 general -2528 fluent 1046 1833 general -2529 fluent 1046 1540 general -2530 fluent 1047 1833 general -2531 fluent 1047 5677 general -2532 fluent 1048 1833 general -2533 fluent 1048 1540 general -2534 fluent 1049 5677 general -2535 fluent 1049 6769 general -2536 fluent 1050 5677 general -2537 fluent 1050 6769 general -2538 fluent 1051 1833 general -2539 fluent 1051 6644 general -2540 fluent 1052 1833 general -2541 fluent 1052 1910 general -2542 fluent 1053 1833 general -2543 fluent 1053 1540 general -2544 fluent 1054 1833 general -2545 fluent 1054 1540 general -2546 fluent 1055 1910 general -2547 fluent 1056 1833 general -2548 fluent 1057 1833 general -2549 fluent 1057 1910 general -2550 fluent 1058 345 general -2551 fluent 1058 1833 general -2552 fluent 1059 345 general -2553 fluent 1059 1833 general -2554 fluent 1060 345 general -2555 fluent 1060 1833 general -2556 fluent 1062 1833 general -2557 fluent 1062 1540 general -2558 fluent 1062 5677 general -2559 fluent 1063 1833 general -2560 fluent 1063 1540 general -2561 fluent 1064 1833 general -2562 fluent 1064 1540 general -2563 fluent 1064 5677 general -2564 fluent 1064 6769 general -2565 fluent 1065 1910 general -2566 fluent 1066 1910 general -2567 fluent 1067 345 general -2568 fluent 1067 1833 general -2569 fluent 1068 1833 general -2570 fluent 1069 1540 general -2571 fluent 1070 1833 general -2572 fluent 1071 1833 general -2573 fluent 1071 1910 general -2574 fluent 1072 1833 general -2575 fluent 1072 5677 general -2576 fluent 1072 6769 general -2577 fluent 1073 6644 general -2578 fluent 1074 345 general -2579 fluent 1074 1833 general -2580 fluent 1075 1833 general -2581 fluent 1076 1833 general -2582 fluent 1077 1833 general -2583 fluent 1078 1833 general -2584 fluent 1078 1540 general -2585 native 1079 620 general -2586 fluent 1079 1833 general -2587 fluent 1079 2388 general -2588 fluent 1079 6819 general -2589 fluent 1080 1833 general -2590 fluent 1081 1540 general -2591 fluent 1082 1833 general -2592 fluent 1082 1910 general -2593 fluent 1082 5677 general -2594 fluent 1083 1833 general -2595 fluent 1083 1540 general -2596 fluent 1084 1833 general -2597 fluent 1084 1540 general -2598 fluent 1085 1833 general -2599 fluent 1086 1833 general -2600 fluent 1086 5677 general -2601 fluent 1086 6769 general -2602 fluent 1087 1833 general -2603 fluent 1087 1540 general -2604 fluent 1088 1833 general -2605 native 1088 5351 general -2606 fluent 1089 1833 general -2607 fluent 1090 1833 general -2608 fluent 1090 1540 general -2609 fluent 1090 6644 general -2610 fluent 1091 1833 general -2611 fluent 1091 1540 general -2612 fluent 1092 345 general -2613 fluent 1092 1833 general -2614 fluent 1093 1833 general -2615 fluent 1094 1833 general -2616 fluent 1094 1540 general -2617 fluent 1095 1833 general -2618 fluent 1096 1833 general -2619 native 1096 1954 general -2620 native 1097 620 general -2621 fluent 1097 1833 general -2622 native 1097 5677 general -2623 fluent 1098 1833 general -2624 fluent 1099 1833 general -2625 fluent 1099 1540 general -2626 fluent 1099 5677 general -2627 fluent 1100 1833 general -2628 fluent 1101 1833 general -2629 fluent 1102 1833 general -2630 fluent 1102 1910 general -2631 native 1102 5677 general -2632 fluent 1103 1833 general -2633 fluent 1104 1833 general -2634 fluent 1105 1833 general -2635 fluent 1105 1540 general -2636 native 1105 2665 general -2637 fluent 1106 1833 general -2638 fluent 1106 1540 general -2639 fluent 1107 345 general -2640 fluent 1107 1833 general -2641 fluent 1107 1540 general -2642 fluent 1108 1833 general -2643 fluent 1108 1540 general -2644 fluent 1109 1833 general -2645 fluent 1109 1954 general -2646 fluent 1109 1540 general -2647 fluent 1110 1833 general -2648 fluent 1110 1540 general -2649 fluent 1111 1833 general -2650 intermediate 1111 5677 general -2651 fluent 1112 1833 general -2652 native 1112 1540 general -2653 fluent 1113 1833 general -2654 fluent 1113 1540 general -2655 native 1113 2665 general -2656 intermediate 1113 6644 general -2657 fluent 1114 1833 general -2658 fluent 1114 1540 general -2659 fluent 1115 2521 general -2660 fluent 1115 1833 general -2661 fluent 1115 1540 general -2662 fluent 1115 5677 general -2663 native 1116 1833 general -2664 native 1117 1910 general -2665 fluent 1117 1540 general -2666 fluent 1118 1833 general -2667 fluent 1118 1954 general -2668 native 1118 1540 general -2669 native 1119 345 general -2670 fluent 1119 1833 general -2671 intermediate 1120 345 general -2672 fluent 1120 1833 general -2673 native 1120 1954 general -2674 native 1120 1540 general -2675 fluent 1121 1833 general -2676 native 1121 5677 general -2677 fluent 1122 1833 general -2678 native 1123 620 general -2679 fluent 1123 1833 general -2680 native 1123 2665 general -2681 native 1124 1833 general -2682 fluent 1125 1833 general -2683 native 1125 1954 general -2684 fluent 1126 1833 general -2685 native 1126 6644 general -2686 fluent 1127 1540 general -2687 native 1127 5677 general -2688 fluent 1128 1833 general -2689 native 1128 6894 general -2690 fluent 1129 1833 general -2691 native 1129 6644 general -2692 fluent 1130 1833 general -2693 fluent 1130 1954 general -2694 native 1130 2665 general -2695 fluent 1130 6011 general -2696 fluent 1132 1833 general -2697 native 1132 6644 general -2698 native 1135 1833 general -2699 fluent 1135 1954 general -2700 native 1135 6011 general -2701 fluent 1136 1833 general -2702 native 1136 1540 general -2703 native 1137 1833 general -2704 native 1137 1540 general -2705 native 1138 1833 general -2706 native 1138 1540 general -2707 fluent 1138 6011 general -2708 fluent 1139 345 general -2709 native 1139 1833 general -2710 fluent 1139 1954 general -2711 fluent 1139 1540 general -2712 fluent 1139 6011 general -2713 fluent 1140 1833 general -2714 native 1140 1910 general -2715 fluent 1140 2388 general -2716 fluent 1140 6819 general -2717 native 1141 345 general -2718 native 1141 620 general -2719 intermediate 1141 1833 general -2720 fluent 1142 1833 general -2721 native 1142 1954 general -2722 fluent 1143 1833 general -2723 fluent 1143 1540 general -2724 native 1143 6644 general -2725 native 1144 345 general -2726 native 1145 7790 general -2727 native 1145 1833 general -2728 native 1145 1954 general -2729 fluent 1145 1540 general -2730 fluent 1145 6011 general -2731 fluent 1146 1833 general -2732 fluent 1146 1954 general -2733 native 1146 2665 general -2734 native 1147 1833 general -2735 fluent 1148 1833 general -2736 native 1148 6011 general -2737 native 1149 1833 general -2738 fluent 1149 1954 general -2739 native 1150 1833 general -2740 native 1151 1833 general -2741 native 1152 345 general -2742 fluent 1152 1833 general -2743 native 1152 1954 general -2744 fluent 1153 1833 general -2745 native 1153 2665 general -2746 fluent 1154 1833 general -2747 native 1154 6644 general -2748 fluent 1155 1833 general -2749 native 1155 1540 general -2750 fluent 1156 1833 general -2751 fluent 1156 1540 general -2752 native 1157 1833 general -2753 native 1157 1954 general -2754 native 1157 1540 general -2755 native 1157 2665 general -2756 fluent 1158 1833 general -2757 native 1158 1954 general -2758 native 1159 1833 general -2759 fluent 1160 1833 general -2760 fluent 1160 1540 general -2761 native 1160 6644 general -2762 native 1161 1954 general -2763 native 1162 345 general -2764 fluent 1162 1833 general -2765 fluent 1162 1540 general -2766 native 1163 1833 general -2767 native 1164 1954 general -2768 fluent 1167 1833 general -2769 intermediate 1167 1954 general -2770 native 1167 1540 general -2771 native 1167 5677 general -2772 native 1168 345 general -2773 native 1168 1833 general -2774 intermediate 1168 1540 general -2775 native 1169 6011 general -2776 native 1170 1910 general -2777 native 1170 1540 general -2778 native 1171 620 general -2779 native 1171 1910 general -2780 native 1172 620 general -2781 intermediate 1172 7790 general -2782 native 1172 1833 general -2783 native 1173 1833 general -2784 fluent 1174 1954 general -2785 native 1174 1540 general -2786 fluent 1174 2665 general -2787 native 1175 1833 general -2788 fluent 1175 1540 general -2789 native 1176 1833 general -2790 fluent 1176 1540 general -2791 intermediate 1176 6011 general -2792 native 1177 1833 general -2793 intermediate 1177 5677 general -2794 fluent 1177 6059 general -2795 native 1178 620 general -2796 native 1178 1833 general -2797 native 1179 1833 general -2798 fluent 1179 1954 general -2799 intermediate 1179 2665 general -2800 native 1180 345 general -2801 native 1180 620 general -2802 fluent 1180 1833 general -2803 native 1181 1833 general -2804 native 1181 1540 general -2805 native 1183 345 general -2806 fluent 1183 1833 general -2807 fluent 1183 1540 general -2808 native 1184 345 general -2809 fluent 1184 1833 general -2810 fluent 1185 1833 general -2811 native 1185 1540 general -2812 native 1186 345 general -2813 native 1186 620 general -2814 native 1186 1833 general -2815 fluent 1187 1833 general -2816 native 1188 1833 general -2817 fluent 1188 1540 general -2818 fluent 1188 6011 general -2819 native 1189 620 general -2820 native 1189 7790 general -2821 fluent 1189 1833 general -2822 native 1191 345 general -2823 fluent 1191 1833 general -2824 intermediate 1191 1954 general -2825 native 1191 1540 general -2826 native 1192 620 general -2827 native 1192 1833 general -2828 native 1192 7922 general -2829 fluent 1193 1833 general -2830 native 1193 1540 general -2831 intermediate 1193 2665 general -2832 fluent 1194 1833 general -2833 intermediate 1194 1954 general -2834 native 1194 1540 general -2835 native 1195 1833 general -2836 intermediate 1195 1954 general -2837 fluent 1195 1540 general -2838 native 1196 620 general -2839 native 1196 1833 general -2840 native 1197 1833 general -2841 fluent 1197 1540 general -2842 native 1198 620 general -2843 fluent 1198 1833 general -2844 native 1198 5677 general -2845 fluent 1199 1833 general -2846 fluent 1199 1540 general -2847 native 1199 5677 general -2848 native 1199 6769 general -2849 fluent 1200 1833 general -2850 fluent 1200 1540 general -2851 native 1200 6011 general -2852 native 1201 1833 general -2853 native 1202 620 general -2854 fluent 1202 1833 general -2855 native 1202 7922 general -2856 native 1203 1833 general -2857 fluent 1203 1540 general -2858 fluent 1204 1833 general -2859 native 1204 1540 general -2860 native 1205 620 general -2861 native 1205 7790 general -2862 fluent 1205 1833 general -2863 fluent 1206 1833 general -2864 intermediate 1206 1954 general -2865 native 1206 1540 general -2866 fluent 1207 1833 general -2867 intermediate 1207 1954 general -2868 fluent 1207 1540 general -2869 native 1207 2665 general -2870 native 1208 620 general -2871 fluent 1208 1833 general -2872 native 1208 1910 general -2873 native 1209 7790 general -2874 fluent 1209 1833 general -2875 fluent 1209 1540 general -2876 native 1210 345 general -2877 intermediate 1210 1833 general -2878 fluent 1210 1540 general -2879 native 1211 620 general -2880 native 1211 1833 general -2881 fluent 1212 1833 general -2882 native 1212 1540 general -2883 fluent 1213 1833 general -2884 native 1213 1540 general -2885 fluent 1214 1540 general -2886 native 1214 5677 general -2887 intermediate 1215 4698 general -2888 fluent 1215 1833 general -2889 intermediate 1215 1954 general -2890 native 1215 1540 general -2891 native 1216 1833 general -2892 native 1216 1540 general -2893 intermediate 1216 6011 general -2894 fluent 1217 1833 general -2895 fluent 1217 1540 general -2896 native 1217 1910 general -2897 fluent 1218 1833 general -2898 native 1218 6819 general -2899 native 1219 1833 general -2900 native 1219 1910 general -2901 native 1219 6148 general -2902 fluent 1220 1833 general -2903 native 1220 1910 general -2904 fluent 1221 1833 general -2905 native 1221 2665 general -2906 intermediate 1221 6011 general -2907 fluent 1222 1833 general -2908 native 1222 1540 general -2909 fluent 1223 1833 general -2910 fluent 1223 1540 general -2911 native 1223 7922 general -2912 intermediate 1223 5677 general -2913 intermediate 1224 1833 general -2914 native 1224 1540 general -2915 fluent 1225 1833 general -2916 native 1225 1540 general -2917 fluent 1226 1833 general -2918 intermediate 1226 1954 general -2919 fluent 1226 1540 general -2920 native 1226 7922 general -2921 fluent 1226 6148 general -2922 native 1227 1833 general -2923 fluent 1227 1954 general -2924 intermediate 1227 2665 general -2925 fluent 1227 5677 general -2926 intermediate 1227 6011 general -2927 native 1228 345 general -2928 intermediate 1228 1833 general -2929 fluent 1228 1540 general -2930 native 1229 620 general -2931 fluent 1229 1833 general -2932 native 1229 6011 general -2933 native 1230 620 general -2934 fluent 1230 1833 general -2935 native 1230 7922 general -2936 fluent 1231 1833 general -2937 native 1231 1540 general -2938 native 1232 1833 general -2939 fluent 1232 1540 general -2940 intermediate 1232 2665 general -2941 intermediate 1232 6011 general -2942 fluent 1233 1833 general -2943 intermediate 1233 1954 general -2944 native 1233 1540 general -2945 fluent 1234 1833 general -2946 intermediate 1234 1954 general -2947 native 1234 1540 general -2948 native 1235 620 general -2949 fluent 1235 1833 general -2950 native 1235 7922 general -2951 fluent 1236 1833 general -2952 intermediate 1236 1954 general -2953 fluent 1236 1540 general -2954 native 1236 2665 general -2955 intermediate 1236 6011 general -2956 fluent 1237 1833 general -2957 native 1237 1833 general -2958 fluent 1237 1540 general -2959 fluent 1237 5351 general -2960 native 1237 5677 general -2961 native 1237 6769 general -2962 native 1238 345 general -2963 intermediate 1238 1833 general -2964 fluent 1238 1540 general -2965 fluent 1239 1833 general -2966 native 1239 1540 general -2967 native 1240 1833 general -2968 fluent 1241 1833 general -2969 native 1241 5677 general -2970 native 1241 6769 general -2971 native 1242 1833 general -2972 fluent 1243 1833 general -2973 native 1243 1540 general -2974 native 1244 620 general -2975 fluent 1244 1833 general -2976 native 1244 6148 general -2977 native 1245 620 general -2978 native 1245 1833 general -2979 intermediate 1245 1954 general -2980 fluent 1245 6011 general -2981 fluent 1246 1833 general -2982 native 1246 1540 general -2983 native 1247 1833 general -2984 fluent 1247 1954 general -2985 fluent 1247 1540 general -2986 intermediate 1247 6011 general -2987 native 1248 620 general -2988 intermediate 1248 7790 general -2989 native 1248 1833 general -2990 fluent 1249 1833 general -2991 native 1249 1540 general -2992 fluent 1249 6011 general -2993 fluent 1250 1833 general -2994 intermediate 1250 1954 general -2995 fluent 1250 1540 general -2996 native 1250 6011 general -2997 native 1251 1833 general -2998 fluent 1251 1540 general -2999 fluent 1252 1833 general -3000 intermediate 1252 1954 general -3001 native 1252 1540 general -3002 intermediate 1252 6011 general -3003 fluent 1253 1833 general -3004 intermediate 1253 1954 general -3005 native 1253 1540 general -3006 fluent 1254 1833 general -3007 fluent 1254 1540 general -3008 native 1254 2366 general -3009 fluent 1255 1833 general -3010 native 1255 1540 general -3011 fluent 1256 1833 general -3012 intermediate 1256 1954 general -3013 native 1256 1540 general -3014 native 1257 1833 general -3015 intermediate 1257 1540 general -3016 fluent 1258 1833 general -3017 native 1258 6011 general -3018 native 1259 1833 general -3019 intermediate 1259 1540 general -3020 native 1260 1833 general -3021 intermediate 1260 1540 general -3022 fluent 1261 1833 general -3023 native 1261 1540 general -3024 fluent 1261 6644 general -3025 fluent 1262 1833 general -3026 intermediate 1262 1954 general -3027 fluent 1262 1540 general -3028 native 1262 2665 general -3029 fluent 1262 6011 general -3030 native 1263 1540 general -3031 intermediate 1264 1833 general -3032 native 1264 1954 general -3033 fluent 1264 1540 general -3034 intermediate 1265 1833 general -3035 native 1265 1910 general -3036 fluent 1266 1833 general -3037 intermediate 1266 1540 general -3038 native 1266 5677 general -3039 native 1266 6769 general -3040 native 1267 345 general -3041 intermediate 1267 1833 general -3042 fluent 1267 1540 general -3043 native 1268 1833 general -3044 intermediate 1268 1540 general -3045 native 1268 1910 general -3046 native 1269 1833 general -3047 fluent 1269 1540 general -3048 native 1270 1833 general -3049 fluent 1270 7922 general -3050 native 1271 345 general -3051 intermediate 1271 1833 general -3052 intermediate 1271 1540 general -3053 intermediate 1272 1833 general -3054 native 1272 1540 general -3055 fluent 1273 1833 general -3056 intermediate 1273 1540 general -3057 native 1273 7922 general -3058 fluent 1274 1833 general -3059 native 1274 1540 general -3060 native 1274 6644 general -3061 fluent 1275 1833 general -3062 fluent 1275 1540 general -3063 native 1275 5351 general -3064 fluent 1276 1833 general -3065 intermediate 1276 1540 general -3066 native 1276 6644 general -3067 native 1277 1833 general -3068 intermediate 1277 1540 general -3069 fluent 1278 1833 general -3070 native 1278 1540 general -3071 native 1278 5677 general -3072 native 1279 1833 general -3073 intermediate 1279 1540 general -3074 fluent 1279 5351 general -3075 fluent 1280 1833 general -3076 fluent 1280 1540 general -3077 native 1280 1910 general -3078 native 1281 1833 general -3079 fluent 1281 1540 general -3080 intermediate 1281 6819 general -3081 native 1282 1833 general -3082 intermediate 1282 1540 general -3083 native 1282 6011 general -3084 native 1283 1833 general -3085 native 1283 1540 general -3086 fluent 1283 6011 general -3087 fluent 1284 1833 general -3088 native 1284 2854 general -3089 fluent 1284 1540 general -3090 intermediate 1284 5677 general -3091 native 1285 345 general -3092 fluent 1285 1833 general -3093 intermediate 1285 1954 general -3094 native 1285 1540 general -3095 fluent 1286 1833 general -3096 fluent 1286 1540 general -3097 native 1286 5677 general -3098 fluent 1287 1833 general -3099 intermediate 1287 1954 general -3100 native 1287 1540 general -3101 intermediate 1287 5677 general -3102 intermediate 1287 6011 general -3103 fluent 1288 1833 general -3104 intermediate 1288 1540 general -3105 native 1288 1910 general -3106 fluent 1288 6819 general -3107 native 1289 1833 general -3108 intermediate 1289 1954 general -3109 native 1289 1540 general -3110 fluent 1289 2665 general -3111 intermediate 1289 7922 general -3112 fluent 1289 6011 general -3113 native 1290 345 general -3114 fluent 1290 1833 general -3115 intermediate 1290 1540 general -3116 fluent 1291 1833 general -3117 native 1291 1540 general -3118 intermediate 1291 5677 general -3119 fluent 1292 1833 general -3120 intermediate 1292 1540 general -3121 native 1292 6011 general -3122 native 1293 7790 general -3123 fluent 1293 1833 general -3124 intermediate 1293 1954 general -3125 fluent 1293 1540 general -3126 fluent 1294 1833 general -3127 intermediate 1294 1954 general -3128 native 1294 1540 general -3129 fluent 1294 6011 general -3130 fluent 1295 1833 general -3131 intermediate 1295 2366 general -3132 native 1295 5677 general -3133 intermediate 1295 6769 general -3134 intermediate 1296 1833 general -3135 native 1296 1540 general -3136 fluent 1297 1833 general -3137 native 1297 1540 general -3138 native 1298 1833 general -3139 native 1298 1540 general -3140 native 1299 1833 general -3141 native 1299 1540 general -3142 intermediate 1299 2665 general -3143 fluent 1300 1833 general -3144 native 1300 2388 general -3145 fluent 1301 1833 general -3146 intermediate 1301 1540 general -3147 native 1301 7922 general -3148 intermediate 1301 6011 general -3149 intermediate 1302 1833 general -3150 fluent 1302 1540 general -3151 native 1302 1910 general -3152 fluent 1303 1833 general -3153 native 1303 1540 general -3154 fluent 1303 5677 general -3155 fluent 1304 1833 general -3156 native 1304 1540 general -3157 fluent 1304 6011 general -3158 fluent 1305 1833 general -3159 intermediate 1305 1540 general -3160 native 1305 6011 general -3161 native 1306 1833 general -3162 fluent 1306 1540 general -3163 fluent 1307 1833 general -3164 fluent 1307 1954 general -3165 native 1307 1540 general -3166 fluent 1307 7922 general -3167 fluent 1307 6059 general -3168 native 1308 345 general -3169 native 1308 1833 general -3170 native 1308 1954 general -3171 fluent 1308 1540 general -3172 fluent 1308 6011 general -3173 fluent 1309 345 general -3174 native 1309 1540 general -3175 native 1310 1833 general -3176 intermediate 1310 1540 general -3177 fluent 1310 7922 general -3178 native 1310 6011 general -3179 native 1311 1833 general -3180 intermediate 1312 7790 general -3181 fluent 1312 1833 general -3182 native 1312 1540 general -3183 native 1312 3151 general -3184 fluent 1313 1833 general -3185 intermediate 1313 1540 general -3186 native 1313 2665 general -3187 intermediate 1313 5677 general -3188 fluent 1313 6011 general -3189 fluent 1314 1833 general -3190 native 1314 1540 general -3191 fluent 1315 1833 general -3192 native 1315 6011 general -3193 native 1316 1540 general -3194 fluent 1317 1833 general -3195 native 1317 1954 general -3196 fluent 1318 1833 general -3197 native 1318 1540 general -3198 intermediate 1318 7922 general -3199 fluent 1319 1833 general -3200 fluent 1319 1540 general -3201 native 1319 6011 general -3202 fluent 1320 1833 general -3203 native 1320 6644 general -3204 fluent 1321 1833 general -3205 native 1321 6011 general -3206 native 1322 1540 general -3207 fluent 1323 1833 general -3208 intermediate 1323 1540 general -3209 native 1323 7922 general -3210 fluent 1323 5677 general -3211 intermediate 1324 345 general -3212 fluent 1324 1833 general -3213 fluent 1324 1540 general -3214 native 1324 1910 general -3215 fluent 1325 1833 general -3216 intermediate 1325 1540 general -3217 native 1325 6011 general -3218 fluent 1326 1833 general -3219 fluent 1326 1954 general -3220 native 1326 2665 general -3221 native 1327 1230 general -3222 intermediate 1327 1833 general -3223 fluent 1327 5677 general -3224 intermediate 1327 6769 general -3225 native 1328 1833 general -3226 intermediate 1328 1540 general -3227 native 1329 4698 general -3228 intermediate 1329 1833 general -3229 intermediate 1329 1540 general -3230 native 1330 1910 general -3231 fluent 1331 1833 general -3232 intermediate 1331 1540 general -3233 native 1331 6011 general -3234 native 1332 1833 general -3235 intermediate 1332 1540 general -3236 native 1332 2388 general -3237 intermediate 1333 345 general -3238 fluent 1333 1954 general -3239 native 1333 1540 general -3240 fluent 1334 1833 general -3241 fluent 1334 1540 general -3242 native 1334 6011 general -3243 fluent 1335 1833 general -3244 native 1335 1540 general -3245 fluent 1335 6894 general -3246 native 1336 345 general -3247 intermediate 1336 1833 general -3248 fluent 1336 1954 general -3249 fluent 1337 1833 general -3250 native 1337 1540 general -3251 fluent 1338 1833 general -3252 intermediate 1338 1954 general -3253 intermediate 1338 1540 general -3254 native 1338 6011 general -3255 native 1339 345 general -3256 fluent 1339 1833 general -3257 intermediate 1339 1540 general -3258 fluent 1340 1833 general -3259 intermediate 1340 1540 general -3260 native 1340 6011 general -3261 native 1341 1833 general -3262 intermediate 1341 1540 general -3263 fluent 1342 1833 general -3264 fluent 1342 1954 general -3265 native 1342 1540 general -3266 fluent 1343 1833 general -3267 intermediate 1343 1540 general -3268 native 1343 5677 general -3269 native 1343 6769 general -3270 fluent 1344 1833 general -3271 intermediate 1344 1540 general -3272 native 1344 5677 general -3273 native 1344 6769 general -3274 fluent 1345 1540 general -3275 native 1345 5677 general -3276 native 1345 6769 general -3277 intermediate 1346 1833 general -3278 intermediate 1346 1540 general -3279 native 1346 5677 general -3280 native 1346 6769 general -3281 fluent 1347 1833 general -3282 fluent 1347 1540 general -3283 native 1347 1910 general -3284 native 1348 1540 general -3285 native 1349 1833 general -3286 fluent 1349 1540 general -3287 intermediate 1349 6011 general -3288 intermediate 1350 1833 general -3289 fluent 1350 1540 general -3290 native 1350 6769 general -3291 fluent 1351 1833 general -3292 fluent 1351 1540 general -3293 native 1351 7922 general -3294 intermediate 1352 4698 general -3295 fluent 1352 1833 general -3296 fluent 1352 1954 general -3297 native 1352 1540 general -3298 intermediate 1352 6011 general -3299 native 1353 1833 general -3300 intermediate 1353 1540 general -3301 native 1353 2388 general -3302 intermediate 1354 1833 general -3303 native 1354 1540 general -3304 fluent 1355 1833 general -3305 fluent 1355 1540 general -3306 native 1355 5677 general -3307 native 1355 6769 general -3308 fluent 1356 5677 general -3309 native 1356 6769 general -3310 native 1357 1833 general -3311 native 1358 4698 general -3312 fluent 1358 1833 general -3313 intermediate 1358 1540 general -3314 fluent 1359 1833 general -3315 fluent 1359 1540 general -3316 native 1359 5677 general -3317 native 1359 6769 general -3318 fluent 1360 1833 general -3319 native 1360 1540 general -3320 native 1361 1833 general -3321 intermediate 1361 1954 general -3322 native 1361 1540 general -3323 intermediate 1361 2665 general -3324 fluent 1362 1833 general -3325 native 1362 1540 general -3326 intermediate 1362 5677 general -3327 native 1363 4698 general -3328 native 1363 1833 general -3329 fluent 1364 1833 general -3330 native 1364 1540 general -3331 native 1364 6644 general -3332 fluent 1365 1833 general -3333 native 1365 1540 general -3334 native 1366 1540 general -3335 fluent 1366 6644 general -3336 native 1367 1833 general -3337 fluent 1368 1833 general -3338 fluent 1368 1540 general -3339 native 1368 6011 general -3340 fluent 1369 1833 general -3341 intermediate 1369 1954 general -3342 native 1369 7922 general -3343 intermediate 1369 6148 general -3344 fluent 1369 6644 general -3345 native 1370 345 general -3346 fluent 1370 1833 general -3347 native 1370 1954 general -3348 fluent 1370 1540 general -3349 fluent 1371 1833 general -3350 fluent 1371 1540 general -3351 intermediate 1371 2665 general -3352 native 1371 5677 general -3353 fluent 1372 1833 general -3354 native 1372 6644 general -3355 native 1373 345 general -3356 fluent 1373 1833 general -3357 fluent 1373 1540 general -3358 native 1374 345 general -3359 native 1374 1833 general -3360 fluent 1375 1833 general -3361 native 1375 6011 general -3362 native 1376 1833 general -3363 intermediate 1376 1954 general -3364 native 1376 1540 general -3365 fluent 1376 2388 general -3366 fluent 1376 7922 general -3367 fluent 1377 1833 general -3368 native 1377 1540 general -3369 native 1378 1833 general -3370 intermediate 1378 1954 general -3371 native 1378 1540 general -3372 fluent 1378 6011 general -3373 intermediate 1379 1833 general -3374 intermediate 1379 1540 general -3375 native 1379 5677 general -3376 fluent 1380 1833 general -3377 native 1380 2854 general -3378 fluent 1380 1540 general -3379 intermediate 1380 5677 general -3380 native 1381 1833 general -3381 native 1381 1954 general -3382 fluent 1382 1833 general -3383 native 1382 1954 general -3384 fluent 1382 1540 general -3385 fluent 1382 2665 general -3386 intermediate 1382 6011 general -3387 fluent 1383 1833 general -3388 intermediate 1383 1540 general -3389 intermediate 1383 5351 general -3390 fluent 1383 5677 general -3391 native 1383 6769 general -3392 fluent 1384 1833 general -3393 intermediate 1384 1540 general -3394 native 1384 5677 general -3395 fluent 1385 1833 general -3396 native 1385 1540 general -3397 fluent 1386 1833 general -3398 native 1386 7922 general -3399 native 1386 5677 general -3400 intermediate 1386 6011 general -3401 fluent 1387 1833 general -3402 native 1387 1954 general -3403 native 1387 1540 general -3404 fluent 1388 1833 general -3405 native 1388 1540 general -3406 native 1388 5677 general -3407 intermediate 1388 6769 general -3408 fluent 1389 1833 general -3409 fluent 1389 1540 general -3410 native 1389 2665 general -3411 fluent 1390 1833 general -3412 intermediate 1390 1540 general -3413 native 1390 7922 general -3414 native 1391 1833 general -3415 native 1391 1540 general -3416 fluent 1392 1833 general -3417 intermediate 1392 1540 general -3418 intermediate 1392 2665 general -3419 native 1392 6011 general -3420 intermediate 1393 345 general -3421 fluent 1393 1833 general -3422 native 1393 1540 general -3423 intermediate 1393 6011 general -3424 native 1394 1833 general -3425 intermediate 1394 1954 general -3426 native 1394 1540 general -3427 fluent 1395 1833 general -3428 native 1395 1540 general -3429 fluent 1396 1833 general -3430 native 1396 1540 general -3431 fluent 1396 6011 general -3432 fluent 1397 1833 general -3433 native 1397 1540 general -3434 fluent 1398 1833 general -3435 intermediate 1398 1954 general -3436 native 1398 1540 general -3437 native 1399 345 general -3438 native 1400 1833 general -3439 intermediate 1400 1540 general -3440 fluent 1401 1833 general -3441 native 1401 1540 general -3442 intermediate 1401 2665 general -3443 native 1402 1833 general -3444 intermediate 1402 1540 general -3445 fluent 1403 1833 general -3446 native 1403 1540 general -3447 fluent 1403 6011 general -3448 intermediate 1404 1833 general -3449 intermediate 1404 1540 general -3450 native 1404 5677 general -3451 native 1404 6769 general -3452 native 1405 4698 general -3453 fluent 1405 1833 general -3454 intermediate 1405 1540 general -3455 intermediate 1406 4698 general -3456 native 1406 1833 general -3457 native 1406 1954 general -3458 fluent 1406 1540 general -3459 intermediate 1406 6011 general -3460 intermediate 1407 1833 general -3461 intermediate 1407 1540 general -3462 native 1407 7922 general -3463 native 1408 1833 general -3464 native 1408 1540 general -3465 intermediate 1408 5351 general -3466 fluent 1409 1833 general -3467 native 1409 1540 general -3468 intermediate 1409 6011 general -3469 fluent 1410 7790 general -3470 native 1410 1833 general -3471 intermediate 1410 1540 general -3472 fluent 1411 1833 general -3473 intermediate 1411 1540 general -3474 native 1411 7922 general -3475 intermediate 1411 6011 general -3476 fluent 1412 1833 general -3477 intermediate 1412 1540 general -3478 native 1412 7922 general -3479 native 1413 7790 general -3480 fluent 1413 1540 general -3481 fluent 1413 5677 general -3482 fluent 1414 1540 general -3483 intermediate 1414 5677 general -3484 native 1414 6769 general -3485 intermediate 1415 1833 general -3486 fluent 1415 1540 general -3487 native 1415 5677 general -3488 native 1415 6769 general -3489 fluent 1416 1540 general -3490 native 1416 5677 general -3491 native 1416 6769 general -3492 intermediate 1417 1833 general -3493 fluent 1417 1540 general -3494 native 1417 5677 general -3495 native 1417 6769 general -3496 fluent 1418 1833 general -3497 fluent 1418 1540 general -3498 fluent 1418 5351 general -3499 native 1418 5677 general -3500 native 1418 6769 general -3501 fluent 1419 1833 general -3502 fluent 1419 1540 general -3503 native 1419 5677 general -3504 native 1419 6769 general -3505 fluent 1420 1540 general -3506 native 1420 5677 general -3507 fluent 1420 6769 general -3508 intermediate 1421 1540 general -3509 native 1421 5677 general -3510 native 1421 6769 general -3511 intermediate 1422 1833 general -3512 intermediate 1422 1540 general -3513 native 1422 5677 general -3514 native 1422 6769 general -3515 native 1423 345 general -3516 fluent 1423 1833 general -3517 intermediate 1423 1954 general -3518 native 1423 1540 general -3519 fluent 1424 1833 general -3520 intermediate 1424 1540 general -3521 native 1424 2665 general -3522 intermediate 1425 1833 general -3523 fluent 1425 1540 general -3524 native 1425 6769 general -3525 intermediate 1426 1833 general -3526 intermediate 1426 1954 general -3527 fluent 1426 1540 general -3528 native 1426 5677 general -3529 native 1426 6769 general -3530 fluent 1427 1833 general -3531 native 1427 1954 general -3532 native 1428 1833 general -3533 intermediate 1428 1954 general -3534 native 1428 1540 general -3535 fluent 1429 1833 general -3536 native 1429 1540 general -3537 fluent 1430 1833 general -3538 native 1430 1540 general -3539 fluent 1430 7922 general -3540 fluent 1431 1833 general -3541 intermediate 1431 1540 general -3542 native 1431 6011 general -3543 fluent 1432 1833 general -3544 fluent 1432 7922 general -3545 native 1432 5677 general -3546 native 1432 6769 general -3547 fluent 1433 1833 general -3548 native 1433 2388 general -3549 fluent 1434 1833 general -3550 intermediate 1434 1954 general -3551 native 1434 1540 general -3552 fluent 1434 6011 general -3553 intermediate 1434 6644 general -3554 native 1435 1833 general -3555 intermediate 1435 1954 general -3556 native 1435 1540 general -3557 fluent 1435 2665 general -3558 fluent 1435 5351 general -3559 intermediate 1436 1833 general -3560 native 1436 1540 general -3561 intermediate 1436 1910 general -3562 fluent 1437 1833 general -3563 intermediate 1437 1954 general -3564 native 1437 1540 general -3565 intermediate 1438 345 general -3566 native 1438 1833 general -3567 native 1438 1540 general -3568 native 1439 1833 general -3569 native 1439 1540 general -3570 fluent 1440 1833 general -3571 fluent 1440 1540 general -3572 fluent 1440 2665 general -3573 native 1440 5351 general -3574 native 1441 345 general -3575 fluent 1441 1833 general -3576 intermediate 1441 1540 general -3577 intermediate 1441 5677 general -3578 native 1442 1833 general -3579 native 1443 1833 general -3580 intermediate 1443 1540 general -3581 native 1444 1833 general -3582 native 1445 1833 general -3583 native 1445 1540 general -3584 intermediate 1445 2665 general -3585 native 1446 1833 general -3586 intermediate 1446 1540 general -3587 fluent 1447 1833 general -3588 native 1447 1540 general -3589 intermediate 1447 6011 general -3590 intermediate 1448 1833 general -3591 native 1448 6644 general -3592 fluent 1449 345 general -3593 native 1449 1833 general -3594 fluent 1449 1540 general -3595 advanced 1449 7922 general -3596 native 1449 1910 general -3597 fluent 1449 6644 general -3598 fluent 1450 1540 general -3599 native 1450 5677 general -3600 fluent 1451 1833 general -3601 intermediate 1451 1540 general -3602 native 1451 6644 general -3603 fluent 1452 1833 general -3604 intermediate 1452 1540 general -3605 native 1452 6644 general -3606 fluent 1453 1833 general -3607 native 1453 1540 general -3608 native 1454 1833 general -3609 intermediate 1454 1954 general -3610 intermediate 1454 1540 general -3611 fluent 1454 2665 general -3612 fluent 1455 1833 general -3613 intermediate 1455 1540 general -3614 native 1455 7922 general -3615 native 1455 5677 general -3616 fluent 1455 6644 general -3617 native 1456 1540 general -3618 fluent 1456 5677 general -3619 intermediate 1456 6769 general -3620 native 1457 1833 general -3621 fluent 1457 2665 general -3622 intermediate 1458 345 general -3623 native 1458 1833 general -3624 native 1458 1540 general -3625 intermediate 1459 345 general -3626 fluent 1459 1833 general -3627 native 1459 1540 general -3628 fluent 1460 1833 general -3629 native 1460 1540 general -3630 fluent 1461 1833 general -3631 fluent 1461 1540 general -3632 native 1461 6011 general -3633 fluent 1462 1833 general -3634 native 1462 7922 general -3635 fluent 1463 1833 general -3636 fluent 1463 1540 general -3637 native 1463 5351 general -3638 native 1464 1833 general -3639 intermediate 1464 1540 general -3640 fluent 1465 1833 general -3641 native 1465 1540 general -3642 native 1465 5677 general -3643 fluent 1466 1833 general -3644 intermediate 1466 1954 general -3645 native 1466 1540 general -3646 intermediate 1467 1833 general -3647 fluent 1467 1540 general -3648 native 1467 5677 general -3649 fluent 1468 1833 general -3650 native 1468 1540 general -3651 intermediate 1468 5351 general -3652 fluent 1469 1833 general -3653 fluent 1469 1910 general -3654 intermediate 1469 6819 general -3655 fluent 1470 1833 general -3656 fluent 1470 1954 general -3657 intermediate 1470 1540 general -3658 native 1470 6011 general -3659 native 1471 1833 general -3660 intermediate 1471 1540 general -3661 fluent 1471 2665 general -3662 fluent 1471 6011 general -3663 fluent 1472 1833 general -3664 intermediate 1472 1540 general -3665 native 1472 6644 general -3666 fluent 1473 1833 general -3667 fluent 1473 1540 general -3668 native 1473 2388 general -3669 fluent 1474 1833 general -3670 native 1474 1954 general -3671 native 1474 1540 general -3672 fluent 1475 1833 general -3673 native 1475 1540 general -3674 native 1476 1833 general -3675 fluent 1477 1833 general -3676 intermediate 1477 1540 general -3677 native 1477 2388 general -3678 native 1477 7922 general -3679 native 1477 6819 general -3680 fluent 1478 1540 general -3681 native 1478 6011 general -3682 native 1479 345 general -3683 fluent 1479 1833 general -3684 intermediate 1479 1540 general -3685 native 1480 1833 general -3686 intermediate 1480 1540 general -3687 native 1481 1833 general -3688 fluent 1481 1540 general -3689 native 1482 1833 general -3690 fluent 1482 1540 general -3691 native 1483 1833 general -3692 intermediate 1483 1954 general -3693 native 1484 1833 general -3694 intermediate 1485 1833 general -3695 intermediate 1485 1540 general -3696 native 1485 1910 general -3697 intermediate 1486 345 general -3698 fluent 1486 1833 general -3699 intermediate 1486 1540 general -3700 intermediate 1486 2388 general -3701 fluent 1486 2665 general -3702 native 1486 1910 general -3703 intermediate 1486 6644 general -3704 fluent 1486 6819 general -3705 native 1487 1833 general -3706 fluent 1487 1540 general -3707 intermediate 1487 6011 general -3708 native 1488 1833 general -3709 intermediate 1488 1954 general -3710 fluent 1488 1540 general -3711 native 1489 1833 general -3712 fluent 1490 1833 general -3713 intermediate 1490 1954 general -3714 native 1490 1540 general -3715 intermediate 1490 6011 general -3716 native 1491 1833 general -3717 native 1491 1540 general -3718 fluent 1491 6011 general -3719 fluent 1492 1833 general -3720 native 1492 1540 general -3721 fluent 1493 1833 general -3722 intermediate 1493 1540 general -3723 native 1493 6011 general -3724 native 1494 345 general -3725 fluent 1494 1833 general -3726 intermediate 1494 1540 general -3727 native 1495 1833 general -3728 fluent 1495 7922 general -3729 intermediate 1495 6011 general -3730 native 1496 345 general -3731 fluent 1496 1833 general -3732 fluent 1496 1540 general -3733 fluent 1497 1833 general -3734 intermediate 1497 1954 general -3735 native 1497 1540 general -3736 native 1498 345 general -3737 native 1498 2521 general -3738 native 1498 1833 general -3739 native 1498 1540 general -3740 native 1498 6644 general -3741 native 1500 1833 general -3742 fluent 1500 1954 general -3743 intermediate 1500 2665 general -3744 intermediate 1500 7922 general -3745 native 1501 1833 general -3746 intermediate 1501 1540 general -3747 native 1502 1833 general -3748 intermediate 1502 1540 general -3749 native 1503 345 general -3750 fluent 1503 1833 general -3751 native 1503 1540 general -3752 fluent 1504 1833 general -3753 intermediate 1504 1954 general -3754 native 1504 1540 general -3755 fluent 1505 1833 general -3756 intermediate 1505 1954 general -3757 native 1505 1540 general -3758 native 1506 7922 general -3759 fluent 1506 1833 general -3760 native 1506 1540 general -3761 native 1507 4698 general -3762 fluent 1507 1833 general -3763 fluent 1507 1540 general -3764 intermediate 1508 1540 general -3765 native 1508 5677 general -3766 fluent 1508 6769 general -3767 intermediate 1509 1833 general -3768 intermediate 1509 1540 general -3769 fluent 1509 5677 general -3770 native 1509 6769 general -3771 intermediate 1510 1540 general -3772 native 1510 5677 general -3773 native 1510 6769 general -3774 fluent 1511 1833 general -3775 intermediate 1511 1540 general -3776 native 1511 5677 general -3777 fluent 1512 1833 general -3778 fluent 1512 1540 general -3779 intermediate 1512 7922 general -3780 native 1512 5677 general -3781 native 1512 6769 general -3782 fluent 1513 1833 general -3783 fluent 1513 1540 general -3784 native 1513 5677 general -3785 native 1513 6769 general -3786 fluent 1514 1833 general -3787 intermediate 1514 1540 general -3788 native 1514 5677 general -3789 native 1514 6769 general -3790 fluent 1515 1833 general -3791 intermediate 1515 1540 general -3792 native 1515 6644 general -3793 native 1516 1833 general -3794 intermediate 1516 1540 general -3795 native 1516 2388 general -3796 native 1516 5140 general -3797 native 1516 6819 general -3798 fluent 1517 1833 general -3799 intermediate 1517 1540 general -3800 native 1517 5677 general -3801 native 1517 6769 general -3802 fluent 1518 1833 general -3803 intermediate 1518 1954 general -3804 native 1518 1540 general -3805 native 1519 1833 general -3806 intermediate 1519 1540 general -3807 fluent 1520 1833 general -3808 intermediate 1520 1540 general -3809 intermediate 1520 5351 general -3810 native 1520 5677 general -3811 native 1520 6769 general -3812 fluent 1521 1833 general -3813 intermediate 1521 1540 general -3814 native 1521 5677 general -3815 native 1522 345 general -3816 fluent 1522 1833 general -3817 intermediate 1522 1540 general -3818 intermediate 1522 1807 general -3819 fluent 1523 1833 general -3820 intermediate 1523 1954 general -3821 native 1523 1540 general -3822 fluent 1523 2665 general -3823 intermediate 1523 6011 general -3824 native 1524 1833 general -3825 fluent 1524 1540 general -3826 native 1524 5677 general -3827 fluent 1524 6769 general -3828 fluent 1525 1833 general -3829 intermediate 1525 1954 general -3830 native 1525 1540 general -3831 intermediate 1526 1540 general -3832 native 1526 5677 general -3833 fluent 1526 6769 general -3834 fluent 1527 1833 general -3835 intermediate 1527 1954 general -3836 native 1527 1540 general -3837 intermediate 1527 6011 general -3838 fluent 1529 1833 general -3839 native 1529 1540 general -3840 native 1529 6644 general -3841 intermediate 1530 1540 general -3842 fluent 1530 5677 general -3843 native 1530 6769 general -3844 intermediate 1531 1540 general -3845 native 1531 5677 general -3846 fluent 1531 6769 general -3847 intermediate 1532 1540 general -3848 native 1532 5677 general -3849 native 1532 6769 general -3850 fluent 1533 1833 general -3851 intermediate 1533 1540 general -3852 native 1533 6644 general -3853 fluent 1534 1833 general -3854 native 1534 1540 general -3855 intermediate 1534 1807 general -3856 fluent 1535 1833 general -3857 native 1535 1954 general -3858 intermediate 1535 1540 general -3859 fluent 1535 6011 general -3860 native 1536 345 general -3861 fluent 1536 1833 general -3862 fluent 1536 1540 general -3863 intermediate 1536 5677 general -3864 native 1537 7790 general -3865 fluent 1537 1833 general -3866 intermediate 1537 1540 general -3867 fluent 1538 5677 general -3868 native 1538 6769 general -3869 native 1539 345 general -3870 fluent 1539 1833 general -3871 intermediate 1539 1540 general -3872 native 1540 1833 general -3873 native 1540 6644 general -3874 intermediate 1541 1833 general -3875 intermediate 1541 1540 general -3876 native 1541 5677 general -3877 fluent 1542 1833 general -3878 intermediate 1542 1954 general -3879 intermediate 1542 1540 general -3880 native 1542 2665 general -3881 fluent 1543 1540 general -3882 native 1543 5677 general -3883 native 1543 6769 general -3884 fluent 1544 1833 general -3885 intermediate 1544 1954 general -3886 fluent 1544 1540 general -3887 native 1544 2665 general -3888 fluent 1545 1833 general -3889 intermediate 1545 1954 general -3890 native 1545 1540 general -3891 native 1546 1833 general -3892 fluent 1546 1540 general -3893 native 1546 2388 general -3894 intermediate 1546 7922 general -3895 native 1546 6819 general -3896 fluent 1547 1833 general -3897 native 1547 1540 general -3898 fluent 1548 1833 general -3899 native 1548 1540 general -3900 intermediate 1548 6011 general -3901 fluent 1549 1833 general -3902 fluent 1549 1540 general -3903 native 1549 5677 general -3904 native 1549 6769 general -3905 fluent 1550 1833 general -3906 intermediate 1550 1540 general -3907 native 1550 7922 general -3908 fluent 1551 1833 general -3909 intermediate 1551 1954 general -3910 native 1551 1540 general -3911 fluent 1552 1833 general -3912 native 1552 1540 general -3913 native 1552 5351 general -3914 native 1553 1833 general -3915 native 1553 6011 general -3916 intermediate 1554 1833 general -3917 native 1554 2854 general -3918 intermediate 1554 1540 general -3919 fluent 1555 1833 general -3920 fluent 1555 1954 general -3921 fluent 1555 1540 general -3922 native 1555 2665 general -3923 native 1555 6011 general -3924 native 1556 1833 general -3925 intermediate 1556 1540 general -3926 native 1556 6011 general -3927 fluent 1557 1833 general -3928 native 1557 1540 general -3929 intermediate 1557 6894 general -3930 native 1558 1833 general -3931 intermediate 1558 1954 general -3932 intermediate 1558 1540 general -3933 intermediate 1559 1833 general -3934 native 1559 1540 general -3935 native 1559 5677 general -3936 fluent 1560 1833 general -3937 native 1560 1540 general -3938 intermediate 1560 6011 general -3939 native 1561 1833 general -3940 fluent 1561 1954 general -3941 fluent 1561 1540 general -3942 intermediate 1561 1807 general -3943 intermediate 1561 6011 general -3944 intermediate 1562 1833 general -3945 native 1562 1540 general -3946 fluent 1562 6644 general -3947 native 1563 7790 general -3948 fluent 1563 1833 general -3949 intermediate 1563 1540 general -3950 intermediate 1564 345 general -3951 native 1564 1833 general -3952 fluent 1564 1540 general -3953 intermediate 1564 1910 general -3954 fluent 1565 1833 general -3955 intermediate 1565 1540 general -3956 native 1565 7922 general -3957 fluent 1566 1833 general -3958 fluent 1566 1540 general -3959 native 1566 1910 general -3960 native 1566 6644 general -3961 native 1567 1833 general -3962 intermediate 1567 1540 general -3963 fluent 1568 1833 general -3964 fluent 1568 1540 general -3965 native 1568 6011 general -3966 native 1569 1540 general -3967 intermediate 1570 345 general -3968 fluent 1570 1833 general -3969 native 1570 1540 general -3970 fluent 1571 1833 general -3971 fluent 1571 1954 general -3972 intermediate 1571 1540 general -3973 native 1571 2665 general -3974 intermediate 1571 6011 general -3975 native 1572 1833 general -3976 native 1572 1954 general -3977 intermediate 1572 1540 general -3978 intermediate 1572 6011 general -3979 fluent 1573 1833 general -3980 native 1573 1540 general -3981 native 1574 1833 general -3982 fluent 1574 1540 general -3983 fluent 1575 1833 general -3984 native 1575 1540 general -3985 fluent 1576 1833 general -3986 fluent 1576 1540 general -3987 native 1576 5677 general -3988 native 1576 6769 general -3989 fluent 1577 1833 general -3990 native 1577 1540 general -3991 native 1578 1833 general -3992 fluent 1578 1540 general -3993 intermediate 1578 6011 general -3994 native 1579 1833 general -3995 intermediate 1579 1540 general -3996 native 1580 1833 general -3997 native 1581 1833 general -3998 intermediate 1581 1540 general -3999 fluent 1582 1833 general -4000 intermediate 1582 1954 general -4001 native 1582 1540 general -4002 fluent 1583 1833 general -4003 native 1583 1540 general -4004 fluent 1583 6011 general -4005 native 1584 1833 general -4006 intermediate 1584 1540 general -4007 fluent 1584 2388 general -4008 intermediate 1584 2665 general -4009 native 1585 1833 general -4010 fluent 1585 1540 general -4011 intermediate 1585 2665 general -4012 intermediate 1585 6011 general -4013 fluent 1586 345 general -4014 fluent 1586 1833 general -4015 fluent 1586 1540 general -4016 fluent 1586 6011 general -4017 native 1587 345 general -4018 fluent 1587 1833 general -4019 fluent 1587 1954 general -4020 intermediate 1587 1540 general -4021 native 1588 345 general -4022 fluent 1588 1833 general -4023 intermediate 1588 1540 general -4024 fluent 1588 6148 general -4025 native 1589 345 general -4026 fluent 1589 1833 general -4027 fluent 1589 1540 general -4028 native 1590 4698 general -4029 fluent 1590 1833 general -4030 fluent 1590 1540 general -4031 intermediate 1590 6011 general -4032 native 1591 1833 general -4033 intermediate 1591 1540 general -4034 native 1591 7922 general -4035 native 1592 345 general -4036 fluent 1592 1833 general -4037 intermediate 1592 1540 general -4038 native 1593 1833 general -4039 fluent 1593 1540 general -4040 fluent 1594 1833 general -4041 fluent 1594 1540 general -4042 native 1594 2665 general -4043 intermediate 1594 6011 general -4044 fluent 1595 1833 general -4045 native 1595 1540 general -4046 intermediate 1595 7922 general -4047 fluent 1595 6011 general -4048 native 1596 1540 general -4049 advanced 1597 1540 general -4050 advanced 1597 1540 general -4051 advanced 1598 1910 general -4052 advanced 1598 1540 general -4053 native 1599 1 general -4054 advanced 1600 5677 general -4055 advanced 1600 6769 general -4056 advanced 1600 1540 general -4057 advanced 1600 1833 general -4058 advanced 1601 5677 general -4059 advanced 1601 6769 general -4060 advanced 1601 1540 general -4061 advanced 1601 1833 general -4062 advanced 1602 345 general -4063 advanced 1602 1540 general -4064 advanced 1603 5677 general -4065 advanced 1603 1540 general -4066 advanced 1604 1540 general -4067 advanced 1604 6769 general -4068 advanced 1604 1540 general -4069 advanced 1605 1910 general -4070 advanced 1605 1540 general -4071 advanced 1606 1540 general -4072 native 1607 1 general -4073 fluent 1607 1 general -4076 native 1608 1 general -4077 fluent 1608 1 general -4078 advanced 1609 5677 general -4079 advanced 1609 5641 general -4080 advanced 1609 1540 general -4081 advanced 1610 345 general -4082 advanced 1610 1540 general -4083 advanced 1611 2854 general -4084 advanced 1611 1540 general -4085 advanced 1612 1540 general -4086 advanced 1612 1833 general -4087 advanced 1612 1910 general -4088 advanced 1612 6644 general -4089 advanced 1612 1540 general -4090 native 1613 1 general -4091 fluent 1613 1 general -4092 intermediate 1613 1 general -4093 intermediate 1613 1 general -4094 native 1614 1 general -4095 fluent 1614 1 general -4096 intermediate 1614 1 general -4097 intermediate 1614 1 general -4098 native 1615 1 general -4100 native 1616 1 general -4101 fluent 1616 1 general -4102 native 1617 1 general -4103 fluent 1617 1 general -4104 fluent 1617 1 general -4105 intermediate 1617 1 general -4106 native 1618 1 general -4107 fluent 1618 1 general -4108 intermediate 1618 1 general -4109 native 1619 1 general -4110 native 1619 1 general -4119 native 1620 5677 general -4120 intermediate 1620 1540 general -4121 advanced 1621 1910 general -4122 advanced 1621 1540 general -4123 fluent 1622 1833 general -4124 native 810 1540 general -4125 native 810 1540 general -4126 fluent 803 1833 general -4127 fluent 803 1833 general -4128 fluent 1623 1833 general -4129 advanced 1624 1910 general -4130 advanced 1624 1540 general -4131 advanced 1624 1833 general -4132 advanced 1625 1540 general -4133 advanced 1625 5677 general -4134 advanced 1625 6769 general -4135 advanced 1625 1540 general -4136 advanced 1626 5677 general -4137 advanced 1626 1540 general -4138 advanced 1626 1833 general -4139 advanced 1627 5677 general -4140 advanced 1627 6769 general -4141 advanced 1627 1540 general -4142 native 1628 1833 general -4143 fluent 1628 1540 general -4144 advanced 1629 5677 general -4145 advanced 1629 1540 general -4146 advanced 1630 1540 general -4147 advanced 1630 5677 general -4148 advanced 1630 6769 general -4149 advanced 1630 1540 general -4150 fluent 814 1540 general -4151 native 814 345 general -4152 advanced 1631 5677 general -4153 advanced 1631 7922 general -4154 advanced 1631 1540 general -4155 advanced 1632 1540 general -4156 advanced 1632 1540 general -4157 advanced 1633 5677 general -4158 advanced 1633 2521 general -4159 advanced 1633 1540 general -4160 native 806 2366 general -4161 advanced 1634 1540 general -4162 advanced 1634 5677 general -4163 advanced 1634 6769 general -4164 advanced 1634 1540 general -4165 advanced 1635 1540 general -4166 advanced 1635 1540 general -4167 native 1636 1833 general -4168 fluent 1636 2388 general -4169 intermediate 1636 1540 general -4170 advanced 1637 5677 general -4171 advanced 1637 1540 general -4172 advanced 1638 1910 general -4173 advanced 1638 5445 general -4174 advanced 1638 1540 general -\. - - --- --- Data for Name: profile_skill; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.profile_skill (id, profile_id, skill_id) FROM stdin; -1 221 26 -2 224 20 -3 229 26 -4 233 21 -5 233 20 -6 235 23 -7 235 21 -8 235 20 -9 252 7 -10 273 23 -11 273 7 -12 273 2 -13 273 21 -14 273 22 -15 273 3 -16 277 8 -17 278 8 -18 280 29 -19 280 22 -20 283 20 -21 285 24 -22 285 14 -23 285 2 -24 285 21 -25 285 22 -26 285 3 -27 285 33 -28 285 20 -29 299 28 -30 300 8 -31 301 8 -32 315 29 -33 315 22 -34 323 2 -35 323 3 -36 326 3 -37 326 32 -38 326 8 -39 329 31 -40 329 32 -41 329 33 -42 333 8 -43 336 24 -44 336 21 -45 336 22 -46 337 4 -47 338 8 -48 342 11 -49 349 20 -50 360 23 -51 372 23 -52 372 21 -53 408 25 -54 408 7 -55 408 2 -56 408 11 -57 408 3 -58 409 8 -59 411 30 -60 412 23 -61 412 25 -62 412 24 -63 412 2 -64 412 22 -65 412 3 -66 413 8 -67 420 18 -68 421 2 -69 421 5 -70 421 4 -71 423 15 -72 423 13 -73 423 5 -74 423 6 -75 423 4 -76 423 1 -77 436 8 -78 439 18 -79 441 11 -80 441 12 -81 442 6 -82 446 18 -83 446 3 -84 452 10 -85 466 30 -86 466 21 -87 466 8 -88 475 14 -89 475 29 -90 476 14 -91 476 29 -92 477 8 -93 487 8 -94 489 8 -95 496 29 -96 496 26 -97 496 28 -98 496 10 -99 498 29 -100 498 26 -101 498 28 -102 498 10 -103 499 25 -104 499 7 -105 499 24 -106 499 14 -107 499 2 -108 499 29 -109 499 11 -110 499 31 -111 499 5 -112 499 26 -113 499 28 -114 499 3 -115 499 16 -116 499 10 -117 499 6 -118 499 4 -119 499 33 -120 499 8 -121 499 17 -122 501 30 -123 501 19 -124 501 28 -125 501 8 -126 505 14 -127 505 29 -128 505 10 -129 507 24 -130 517 8 -131 525 8 -132 526 8 -133 527 8 -134 529 10 -135 540 24 -136 540 2 -137 540 31 -138 540 18 -139 540 3 -140 540 32 -141 540 33 -142 541 8 -143 561 10 -144 565 29 -145 566 14 -146 566 2 -147 566 3 -148 566 10 -149 566 4 -150 567 2 -151 567 3 -152 567 16 -153 568 8 -154 569 10 -155 569 8 -156 576 8 -157 581 8 -158 582 15 -159 582 22 -160 585 14 -161 586 22 -162 588 20 -163 591 10 -164 591 8 -165 592 10 -166 594 15 -167 594 25 -168 594 7 -169 594 24 -170 594 14 -171 594 2 -172 594 5 -173 594 18 -174 594 3 -175 594 4 -176 594 33 -177 604 2 -178 604 3 -179 604 8 -180 605 14 -181 605 2 -182 605 3 -183 605 1 -184 618 23 -185 618 24 -186 618 29 -187 618 21 -188 618 22 -189 618 8 -190 618 20 -191 619 14 -192 619 26 -193 630 24 -194 631 31 -195 631 33 -196 635 24 -197 635 2 -198 635 28 -199 635 3 -200 635 33 -201 635 8 -202 636 24 -203 636 21 -204 636 3 -205 636 33 -206 643 10 -207 644 10 -208 648 22 -209 660 8 -210 661 23 -211 661 22 -212 666 20 -213 677 2 -214 677 3 -215 677 8 -216 691 23 -217 691 19 -218 691 24 -219 691 2 -220 691 22 -221 691 31 -222 691 3 -223 691 33 -224 691 1 -225 699 24 -226 699 14 -227 699 2 -228 699 11 -229 699 3 -230 699 4 -231 699 33 -232 702 8 -233 704 24 -234 704 21 -235 704 20 -236 706 8 -237 709 8 -238 711 2 -239 711 5 -240 711 3 -241 711 4 -242 712 31 -243 712 32 -244 712 33 -245 720 7 -246 720 2 -247 720 29 -248 720 5 -249 720 3 -250 720 4 -251 720 8 -252 721 7 -253 721 29 -254 721 10 -255 722 8 -256 725 8 -257 727 2 -258 727 21 -259 727 3 -260 727 16 -261 727 6 -262 727 4 -263 727 20 -264 728 29 -265 729 23 -266 729 29 -267 729 21 -268 729 22 -269 730 7 -270 730 19 -271 730 24 -272 730 14 -273 730 5 -274 730 3 -275 730 10 -276 730 8 -277 733 8 -278 737 14 -279 737 29 -280 738 25 -281 738 30 -282 738 7 -283 738 24 -284 738 14 -285 738 2 -286 738 29 -287 738 11 -288 738 5 -289 738 28 -290 738 3 -291 738 4 -292 738 33 -293 739 14 -294 739 29 -295 739 28 -296 739 16 -297 740 24 -298 740 2 -299 740 22 -300 740 3 -301 740 33 -302 742 7 -303 742 24 -304 742 14 -305 742 31 -306 744 2 -307 744 22 -308 744 3 -309 751 8 -310 752 11 -311 752 1 -312 768 8 -313 769 23 -314 769 24 -315 769 21 -316 769 22 -317 769 28 -318 769 9 -319 769 10 -320 769 27 -321 769 8 -322 772 29 -323 773 1 -324 781 11 -325 781 8 -326 783 23 -327 783 29 -328 783 21 -329 783 22 -330 783 11 -331 783 8 -332 784 23 -333 784 24 -334 784 2 -335 784 22 -336 784 31 -337 784 3 -338 784 33 -339 784 8 -340 784 1 -341 787 29 -342 787 26 -343 789 26 -344 796 31 -345 796 32 -346 796 33 -347 961 14 -348 961 2 -349 961 3 -350 961 20 -351 1038 2 -352 1038 5 -353 1038 3 -354 1038 17 -355 1111 8 -356 1113 26 -357 1113 8 -358 1113 20 -359 1116 30 -360 1116 8 -361 1117 7 -362 1117 8 -363 1118 13 -364 1118 31 -365 1118 33 -366 1118 1 -367 1120 25 -368 1120 30 -369 1120 7 -370 1120 2 -371 1120 21 -372 1120 22 -373 1120 3 -374 1120 16 -375 1120 20 -376 1121 25 -377 1121 9 -378 1124 8 -379 1126 19 -380 1126 2 -381 1126 11 -382 1126 3 -383 1127 7 -384 1127 9 -385 1128 23 -386 1128 25 -387 1128 2 -388 1128 32 -389 1129 7 -390 1129 6 -391 1130 14 -392 1130 21 -393 1130 9 -394 1130 20 -395 1131 14 -396 1131 26 -397 1132 5 -398 1133 24 -399 1135 19 -400 1135 5 -401 1135 16 -402 1135 4 -403 1135 20 -404 1136 23 -405 1136 30 -406 1136 21 -407 1136 32 -408 1136 8 -409 1137 14 -410 1137 2 -411 1137 5 -412 1137 18 -413 1137 28 -414 1137 3 -415 1137 16 -416 1137 10 -417 1137 8 -418 1137 17 -419 1138 19 -420 1138 9 -421 1138 10 -422 1139 19 -423 1139 26 -424 1139 8 -425 1140 14 -426 1140 26 -427 1140 16 -428 1143 33 -429 1144 23 -430 1144 21 -431 1144 22 -432 1144 3 -433 1145 25 -434 1145 24 -435 1145 28 -436 1147 30 -437 1147 7 -438 1147 19 -439 1147 16 -440 1147 10 -441 1147 8 -442 1147 20 -443 1148 7 -444 1148 24 -445 1149 30 -446 1149 26 -447 1150 7 -448 1150 19 -449 1150 11 -450 1150 16 -451 1150 6 -452 1150 17 -453 1151 13 -454 1151 7 -455 1151 14 -456 1151 1 -457 1152 23 -458 1152 30 -459 1152 7 -460 1152 24 -461 1152 14 -462 1152 21 -463 1152 22 -464 1152 18 -465 1152 26 -466 1152 8 -467 1152 20 -468 1153 7 -469 1153 18 -470 1154 25 -471 1154 7 -472 1154 19 -473 1154 21 -474 1154 16 -475 1154 27 -476 1154 17 -477 1154 20 -478 1155 7 -479 1155 8 -480 1156 3 -481 1156 16 -482 1156 17 -483 1157 14 -484 1157 4 -485 1157 33 -486 1157 8 -487 1157 20 -488 1159 7 -489 1161 9 -490 1161 10 -491 1162 23 -492 1162 25 -493 1162 7 -494 1162 21 -495 1162 9 -496 1162 8 -497 1162 20 -498 1163 7 -499 1163 2 -500 1163 21 -501 1164 25 -502 1164 9 -503 1165 14 -504 1165 2 -505 1165 11 -506 1165 5 -507 1165 18 -508 1165 3 -509 1165 16 -510 1165 32 -511 1165 6 -512 1165 20 -513 1166 7 -514 1166 31 -515 1166 3 -516 1166 16 -517 1167 21 -518 1167 9 -519 1168 23 -520 1168 25 -521 1168 21 -522 1168 31 -523 1168 26 -524 1168 16 -525 1168 9 -526 1168 10 -527 1168 8 -528 1168 17 -529 1169 7 -530 1169 2 -531 1169 21 -532 1169 11 -533 1169 3 -534 1169 6 -535 1169 4 -536 1170 7 -537 1170 24 -538 1170 2 -539 1170 21 -540 1170 5 -541 1170 28 -542 1170 3 -543 1170 9 -544 1170 20 -545 1171 14 -546 1171 2 -547 1171 18 -548 1171 3 -549 1171 16 -550 1171 8 -551 1172 25 -552 1172 7 -553 1172 2 -554 1172 16 -555 1172 6 -556 1172 4 -557 1172 1 -558 1173 1 -559 1174 24 -560 1174 21 -561 1174 10 -562 1174 33 -563 1174 20 -564 1175 24 -565 1175 21 -566 1175 10 -567 1175 33 -568 1175 8 -569 1175 20 -570 1176 7 -571 1176 14 -572 1176 18 -573 1176 3 -574 1177 16 -575 1177 10 -576 1177 8 -577 1177 20 -578 1178 30 -579 1178 22 -580 1178 9 -581 1178 8 -582 1179 24 -583 1179 8 -584 1180 25 -585 1180 30 -586 1180 9 -587 1181 7 -588 1181 2 -589 1181 5 -590 1181 3 -591 1181 6 -592 1181 4 -593 1181 8 -594 1181 1 -595 1182 11 -596 1182 10 -597 1182 33 -598 1182 8 -599 1182 20 -600 1183 23 -601 1183 25 -602 1183 22 -603 1183 26 -604 1183 16 -605 1183 10 -606 1183 8 -607 1184 14 -608 1184 2 -609 1184 29 -610 1184 18 -611 1184 26 -612 1184 3 -613 1184 10 -614 1184 8 -615 1185 15 -616 1185 19 -617 1185 20 -618 1187 21 -619 1187 16 -620 1187 10 -621 1187 8 -622 1188 30 -623 1188 26 -624 1188 28 -625 1189 18 -626 1189 8 -627 1191 23 -628 1191 7 -629 1191 14 -630 1191 29 -631 1191 18 -632 1191 8 -633 1192 23 -634 1192 25 -635 1192 30 -636 1192 7 -637 1192 19 -638 1192 2 -639 1192 29 -640 1192 21 -641 1192 11 -642 1192 26 -643 1192 28 -644 1192 3 -645 1192 16 -646 1192 9 -647 1192 6 -648 1192 17 -649 1192 20 -650 1193 7 -651 1193 2 -652 1193 22 -653 1193 3 -654 1194 11 -655 1194 5 -656 1195 11 -657 1195 16 -658 1196 2 -659 1196 31 -660 1196 3 -661 1196 4 -662 1196 17 -663 1197 23 -664 1197 19 -665 1197 2 -666 1197 11 -667 1197 28 -668 1197 3 -669 1197 16 -670 1197 8 -671 1197 17 -672 1197 20 -673 1198 7 -674 1198 14 -675 1198 2 -676 1198 11 -677 1198 3 -678 1198 9 -679 1198 6 -680 1198 8 -681 1199 7 -682 1199 11 -683 1199 5 -684 1199 16 -685 1199 20 -686 1200 7 -687 1200 24 -688 1200 28 -689 1200 16 -690 1200 10 -691 1200 17 -692 1201 7 -693 1201 14 -694 1201 2 -695 1201 21 -696 1201 11 -697 1201 18 -698 1201 3 -699 1201 16 -700 1201 9 -701 1201 10 -702 1201 6 -703 1201 8 -704 1201 20 -705 1202 7 -706 1202 29 -707 1203 19 -708 1203 5 -709 1205 7 -710 1205 5 -711 1205 4 -712 1206 7 -713 1206 21 -714 1206 20 -715 1207 19 -716 1207 29 -717 1208 16 -718 1208 8 -719 1208 17 -720 1208 20 -721 1209 7 -722 1209 8 -723 1210 23 -724 1210 15 -725 1210 13 -726 1210 25 -727 1210 30 -728 1210 7 -729 1210 19 -730 1210 24 -731 1210 14 -732 1210 2 -733 1210 29 -734 1210 21 -735 1210 22 -736 1210 11 -737 1210 31 -738 1210 5 -739 1210 12 -740 1210 18 -741 1210 26 -742 1210 28 -743 1210 3 -744 1210 16 -745 1210 32 -746 1210 9 -747 1210 10 -748 1210 6 -749 1210 27 -750 1210 4 -751 1210 33 -752 1210 8 -753 1210 17 -754 1210 1 -755 1210 20 -756 1211 14 -757 1211 3 -758 1211 16 -759 1211 27 -760 1211 17 -761 1212 14 -762 1212 2 -763 1212 3 -764 1215 32 -765 1215 33 -766 1215 8 -767 1215 20 -768 1216 21 -769 1216 10 -770 1217 29 -771 1217 8 -772 1218 23 -773 1218 7 -774 1218 14 -775 1218 3 -776 1218 9 -777 1218 8 -778 1219 23 -779 1219 25 -780 1219 30 -781 1219 7 -782 1219 2 -783 1219 29 -784 1219 22 -785 1219 26 -786 1219 28 -787 1219 3 -788 1219 10 -789 1219 33 -790 1219 8 -791 1219 20 -792 1220 30 -793 1220 7 -794 1220 29 -795 1220 26 -796 1220 16 -797 1220 10 -798 1221 20 -799 1223 7 -800 1223 14 -801 1223 2 -802 1223 29 -803 1223 21 -804 1223 18 -805 1223 3 -806 1225 24 -807 1225 5 -808 1226 30 -809 1226 14 -810 1226 2 -811 1226 29 -812 1226 18 -813 1226 26 -814 1226 3 -815 1226 8 -816 1227 7 -817 1227 19 -818 1227 2 -819 1227 21 -820 1227 28 -821 1227 3 -822 1227 10 -823 1227 8 -824 1227 20 -825 1228 25 -826 1228 30 -827 1228 7 -828 1228 8 -829 1229 29 -830 1229 16 -831 1229 10 -832 1229 8 -833 1229 20 -834 1230 14 -835 1230 2 -836 1230 5 -837 1230 3 -838 1230 4 -839 1231 2 -840 1231 5 -841 1231 16 -842 1231 4 -843 1232 23 -844 1232 25 -845 1232 7 -846 1232 2 -847 1232 29 -848 1232 11 -849 1232 12 -850 1232 3 -851 1232 20 -852 1233 15 -853 1233 19 -854 1233 29 -855 1233 32 -856 1235 15 -857 1235 7 -858 1235 21 -859 1235 22 -860 1235 11 -861 1235 6 -862 1235 33 -863 1235 8 -864 1236 30 -865 1236 29 -866 1236 26 -867 1236 8 -868 1237 7 -869 1237 11 -870 1237 8 -871 1238 2 -872 1238 3 -873 1239 11 -874 1239 8 -875 1240 23 -876 1240 25 -877 1240 30 -878 1240 7 -879 1240 29 -880 1240 26 -881 1241 22 -882 1241 8 -883 1241 20 -884 1242 23 -885 1242 30 -886 1242 21 -887 1242 10 -888 1242 8 -889 1242 20 -890 1243 23 -891 1243 25 -892 1243 30 -893 1243 7 -894 1243 19 -895 1243 2 -896 1243 29 -897 1243 21 -898 1243 22 -899 1243 31 -900 1243 5 -901 1243 26 -902 1243 32 -903 1243 9 -904 1243 10 -905 1243 6 -906 1243 8 -907 1243 17 -908 1243 20 -909 1244 24 -910 1244 2 -911 1244 29 -912 1244 18 -913 1244 3 -914 1244 16 -915 1245 23 -916 1245 15 -917 1245 7 -918 1245 14 -919 1245 2 -920 1245 11 -921 1245 31 -922 1245 5 -923 1245 18 -924 1245 3 -925 1245 16 -926 1245 4 -927 1245 8 -928 1245 20 -929 1247 7 -930 1247 32 -931 1247 8 -932 1248 23 -933 1248 15 -934 1248 25 -935 1248 7 -936 1248 24 -937 1248 2 -938 1248 21 -939 1248 28 -940 1248 3 -941 1248 8 -942 1248 1 -943 1249 7 -944 1249 24 -945 1249 2 -946 1249 3 -947 1249 16 -948 1249 10 -949 1249 8 -950 1250 29 -951 1250 8 -952 1251 11 -953 1252 7 -954 1252 8 -955 1253 7 -956 1253 28 -957 1254 25 -958 1254 22 -959 1254 31 -960 1254 9 -961 1255 7 -962 1255 2 -963 1255 3 -964 1255 8 -965 1258 8 -966 1259 19 -967 1259 29 -968 1259 9 -969 1259 10 -970 1259 8 -971 1260 25 -972 1260 7 -973 1260 2 -974 1260 5 -975 1260 3 -976 1260 4 -977 1260 8 -978 1261 21 -979 1261 20 -980 1262 30 -981 1262 29 -982 1262 21 -983 1262 16 -984 1262 10 -985 1262 8 -986 1264 8 -987 1264 20 -988 1265 7 -989 1265 28 -990 1265 20 -991 1266 7 -992 1266 14 -993 1266 21 -994 1266 18 -995 1266 4 -996 1266 8 -997 1267 7 -998 1267 5 -999 1267 4 -1000 1270 23 -1001 1270 7 -1002 1270 29 -1003 1270 22 -1004 1271 9 -1005 1272 7 -1006 1272 21 -1007 1272 20 -1008 1273 7 -1009 1273 16 -1010 1273 17 -1011 1274 7 -1012 1274 8 -1013 1275 24 -1014 1275 29 -1015 1275 9 -1016 1275 10 -1017 1275 8 -1018 1276 29 -1019 1276 31 -1020 1276 5 -1021 1276 26 -1022 1276 33 -1023 1277 16 -1024 1277 17 -1025 1279 9 -1026 1281 7 -1027 1281 6 -1028 1281 8 -1029 1281 1 -1030 1282 7 -1031 1282 8 -1032 1285 23 -1033 1285 24 -1034 1285 21 -1035 1285 22 -1036 1285 18 -1037 1285 16 -1038 1285 10 -1039 1285 8 -1040 1285 17 -1041 1286 19 -1042 1286 10 -1043 1287 30 -1044 1287 7 -1045 1287 19 -1046 1287 24 -1047 1287 14 -1048 1287 29 -1049 1287 11 -1050 1287 26 -1051 1287 32 -1052 1287 10 -1053 1287 8 -1054 1287 20 -1055 1288 7 -1056 1288 18 -1057 1288 4 -1058 1289 7 -1059 1289 24 -1060 1289 21 -1061 1289 10 -1062 1289 8 -1063 1289 20 -1064 1291 14 -1065 1291 2 -1066 1291 3 -1067 1291 16 -1068 1292 30 -1069 1292 28 -1070 1293 7 -1071 1293 2 -1072 1293 29 -1073 1293 21 -1074 1293 26 -1075 1293 3 -1076 1293 20 -1077 1294 19 -1078 1294 14 -1079 1294 16 -1080 1294 10 -1081 1294 17 -1082 1295 15 -1083 1295 7 -1084 1295 24 -1085 1295 21 -1086 1295 9 -1087 1295 6 -1088 1295 8 -1089 1296 11 -1090 1296 5 -1091 1296 6 -1092 1296 4 -1093 1296 8 -1094 1296 1 -1095 1297 30 -1096 1297 21 -1097 1297 26 -1098 1298 7 -1099 1299 30 -1100 1299 26 -1101 1299 28 -1102 1299 10 -1103 1299 8 -1104 1299 20 -1105 1300 30 -1106 1300 29 -1107 1300 26 -1108 1300 8 -1109 1300 20 -1110 1301 19 -1111 1301 21 -1112 1301 16 -1113 1301 27 -1114 1301 20 -1115 1302 18 -1116 1302 33 -1117 1303 8 -1118 1304 7 -1119 1305 15 -1120 1305 7 -1121 1305 26 -1122 1305 9 -1123 1305 8 -1124 1306 10 -1125 1306 8 -1126 1308 8 -1127 1309 29 -1128 1309 10 -1129 1310 30 -1130 1310 7 -1131 1310 19 -1132 1310 29 -1133 1310 26 -1134 1310 28 -1135 1310 10 -1136 1310 33 -1137 1310 8 -1138 1312 7 -1139 1312 2 -1140 1312 3 -1141 1312 4 -1142 1313 24 -1143 1313 11 -1144 1313 5 -1145 1313 3 -1146 1313 10 -1147 1313 4 -1148 1313 20 -1149 1314 7 -1150 1314 11 -1151 1314 5 -1152 1314 26 -1153 1315 7 -1154 1315 14 -1155 1315 2 -1156 1315 3 -1157 1316 30 -1158 1316 22 -1159 1316 26 -1160 1316 28 -1161 1317 7 -1162 1319 29 -1163 1319 16 -1164 1321 2 -1165 1321 3 -1166 1321 9 -1167 1322 2 -1168 1323 33 -1169 1324 7 -1170 1324 29 -1171 1324 21 -1172 1324 8 -1173 1325 30 -1174 1325 7 -1175 1325 29 -1176 1325 21 -1177 1325 22 -1178 1325 9 -1179 1326 30 -1180 1326 7 -1181 1326 19 -1182 1326 29 -1183 1326 18 -1184 1326 6 -1185 1327 25 -1186 1327 21 -1187 1327 3 -1188 1327 16 -1189 1327 32 -1190 1327 8 -1191 1331 24 -1192 1331 2 -1193 1331 29 -1194 1331 3 -1195 1331 16 -1196 1331 9 -1197 1331 17 -1198 1331 20 -1199 1332 14 -1200 1332 2 -1201 1332 3 -1202 1334 16 -1203 1335 29 -1204 1335 21 -1205 1335 9 -1206 1335 8 -1207 1335 17 -1208 1335 20 -1209 1336 21 -1210 1336 22 -1211 1336 16 -1212 1336 8 -1213 1336 17 -1214 1338 13 -1215 1338 30 -1216 1338 14 -1217 1338 2 -1218 1338 21 -1219 1338 22 -1220 1338 26 -1221 1338 3 -1222 1338 10 -1223 1338 6 -1224 1338 8 -1225 1339 25 -1226 1339 7 -1227 1339 21 -1228 1339 22 -1229 1339 9 -1230 1339 8 -1231 1342 7 -1232 1342 24 -1233 1342 2 -1234 1342 29 -1235 1342 8 -1236 1343 29 -1237 1343 21 -1238 1343 32 -1239 1343 8 -1240 1344 7 -1241 1344 2 -1242 1344 3 -1243 1346 29 -1244 1346 28 -1245 1346 20 -1246 1348 7 -1247 1349 32 -1248 1349 10 -1249 1349 8 -1250 1351 14 -1251 1352 14 -1252 1352 2 -1253 1352 29 -1254 1352 3 -1255 1352 1 -1256 1353 7 -1257 1353 16 -1258 1353 17 -1259 1354 7 -1260 1354 14 -1261 1354 29 -1262 1354 21 -1263 1354 11 -1264 1354 16 -1265 1354 10 -1266 1356 7 -1267 1356 29 -1268 1356 11 -1269 1356 10 -1270 1357 7 -1271 1357 29 -1272 1357 11 -1273 1357 9 -1274 1357 8 -1275 1357 20 -1276 1358 25 -1277 1358 7 -1278 1358 24 -1279 1358 14 -1280 1358 2 -1281 1358 29 -1282 1358 21 -1283 1358 26 -1284 1358 16 -1285 1358 10 -1286 1358 8 -1287 1359 7 -1288 1359 24 -1289 1359 14 -1290 1359 11 -1291 1359 5 -1292 1359 18 -1293 1359 28 -1294 1359 3 -1295 1359 4 -1296 1359 8 -1297 1359 20 -1298 1360 24 -1299 1360 2 -1300 1360 5 -1301 1360 16 -1302 1360 4 -1303 1360 8 -1304 1361 7 -1305 1361 24 -1306 1361 21 -1307 1361 22 -1308 1361 10 -1309 1361 8 -1310 1361 20 -1311 1362 7 -1312 1365 2 -1313 1366 19 -1314 1366 29 -1315 1366 28 -1316 1366 8 -1317 1366 20 -1318 1367 15 -1319 1367 14 -1320 1367 2 -1321 1367 29 -1322 1367 16 -1323 1367 8 -1324 1367 17 -1325 1367 1 -1326 1368 24 -1327 1368 14 -1328 1368 8 -1329 1369 7 -1330 1369 2 -1331 1369 18 -1332 1369 3 -1333 1369 16 -1334 1369 17 -1335 1370 7 -1336 1370 29 -1337 1370 8 -1338 1371 7 -1339 1371 2 -1340 1371 21 -1341 1371 18 -1342 1371 3 -1343 1371 6 -1344 1371 4 -1345 1371 20 -1346 1372 25 -1347 1372 7 -1348 1372 8 -1349 1373 2 -1350 1373 22 -1351 1373 8 -1352 1374 30 -1353 1374 7 -1354 1374 24 -1355 1374 29 -1356 1375 8 -1357 1376 25 -1358 1376 30 -1359 1376 7 -1360 1376 24 -1361 1376 14 -1362 1376 2 -1363 1376 29 -1364 1376 21 -1365 1376 11 -1366 1376 18 -1367 1376 26 -1368 1376 28 -1369 1376 3 -1370 1376 16 -1371 1376 9 -1372 1376 4 -1373 1376 8 -1374 1376 17 -1375 1377 14 -1376 1377 29 -1377 1377 11 -1378 1377 12 -1379 1377 28 -1380 1377 3 -1381 1377 16 -1382 1377 10 -1383 1377 4 -1384 1377 20 -1385 1378 21 -1386 1378 20 -1387 1380 7 -1388 1380 2 -1389 1380 29 -1390 1380 11 -1391 1380 12 -1392 1380 18 -1393 1380 26 -1394 1380 3 -1395 1380 16 -1396 1380 9 -1397 1380 17 -1398 1381 29 -1399 1381 26 -1400 1381 16 -1401 1381 17 -1402 1381 20 -1403 1382 5 -1404 1382 9 -1405 1382 4 -1406 1383 7 -1407 1383 24 -1408 1383 21 -1409 1383 31 -1410 1383 33 -1411 1383 8 -1412 1383 20 -1413 1384 25 -1414 1384 7 -1415 1384 24 -1416 1384 2 -1417 1384 21 -1418 1384 18 -1419 1384 32 -1420 1385 7 -1421 1385 14 -1422 1385 11 -1423 1385 28 -1424 1385 20 -1425 1386 29 -1426 1386 26 -1427 1386 10 -1428 1388 25 -1429 1388 7 -1430 1388 24 -1431 1388 14 -1432 1388 29 -1433 1388 21 -1434 1388 8 -1435 1388 20 -1436 1389 9 -1437 1390 7 -1438 1390 2 -1439 1390 21 -1440 1390 22 -1441 1390 31 -1442 1390 5 -1443 1390 18 -1444 1390 3 -1445 1390 4 -1446 1392 30 -1447 1392 7 -1448 1392 2 -1449 1392 29 -1450 1392 11 -1451 1392 31 -1452 1392 26 -1453 1392 3 -1454 1392 16 -1455 1392 10 -1456 1392 27 -1457 1392 20 -1458 1393 21 -1459 1393 22 -1460 1393 8 -1461 1394 7 -1462 1395 25 -1463 1395 22 -1464 1396 29 -1465 1396 10 -1466 1397 29 -1467 1397 28 -1468 1397 6 -1469 1397 20 -1470 1398 7 -1471 1398 24 -1472 1398 20 -1473 1399 22 -1474 1400 7 -1475 1400 11 -1476 1401 22 -1477 1402 24 -1478 1402 2 -1479 1402 21 -1480 1402 3 -1481 1402 16 -1482 1403 30 -1483 1403 7 -1484 1403 29 -1485 1403 11 -1486 1403 10 -1487 1403 20 -1488 1404 7 -1489 1404 19 -1490 1404 14 -1491 1404 21 -1492 1404 16 -1493 1404 27 -1494 1404 8 -1495 1404 17 -1496 1405 7 -1497 1405 14 -1498 1405 29 -1499 1405 21 -1500 1405 26 -1501 1405 6 -1502 1405 4 -1503 1405 20 -1504 1406 7 -1505 1406 2 -1506 1406 3 -1507 1406 10 -1508 1406 33 -1509 1406 20 -1510 1407 2 -1511 1407 3 -1512 1407 16 -1513 1408 2 -1514 1409 7 -1515 1409 2 -1516 1409 5 -1517 1409 3 -1518 1409 20 -1519 1410 21 -1520 1410 8 -1521 1411 23 -1522 1411 7 -1523 1411 5 -1524 1411 16 -1525 1411 4 -1526 1413 24 -1527 1413 26 -1528 1413 10 -1529 1414 14 -1530 1414 29 -1531 1415 19 -1532 1415 24 -1533 1415 29 -1534 1415 27 -1535 1415 8 -1536 1415 17 -1537 1417 30 -1538 1417 2 -1539 1417 3 -1540 1417 27 -1541 1418 8 -1542 1419 8 -1543 1420 7 -1544 1420 3 -1545 1420 16 -1546 1421 7 -1547 1421 11 -1548 1421 5 -1549 1421 4 -1550 1422 26 -1551 1423 23 -1552 1423 7 -1553 1423 14 -1554 1423 3 -1555 1424 8 -1556 1425 10 -1557 1426 7 -1558 1426 21 -1559 1426 18 -1560 1426 8 -1561 1426 20 -1562 1428 21 -1563 1428 16 -1564 1428 8 -1565 1429 7 -1566 1429 2 -1567 1429 21 -1568 1429 11 -1569 1429 5 -1570 1429 3 -1571 1430 7 -1572 1430 2 -1573 1430 33 -1574 1430 20 -1575 1432 15 -1576 1432 25 -1577 1432 30 -1578 1432 7 -1579 1432 2 -1580 1432 18 -1581 1432 3 -1582 1432 16 -1583 1432 32 -1584 1432 9 -1585 1432 17 -1586 1433 15 -1587 1433 7 -1588 1433 2 -1589 1433 29 -1590 1433 22 -1591 1433 26 -1592 1433 9 -1593 1433 6 -1594 1433 8 -1595 1434 7 -1596 1434 16 -1597 1434 8 -1598 1435 7 -1599 1435 2 -1600 1435 5 -1601 1435 18 -1602 1435 3 -1603 1435 8 -1604 1437 3 -1605 1437 8 -1606 1438 25 -1607 1439 2 -1608 1439 3 -1609 1439 8 -1610 1440 14 -1611 1440 2 -1612 1440 3 -1613 1440 32 -1614 1441 15 -1615 1441 7 -1616 1441 22 -1617 1441 26 -1618 1441 16 -1619 1441 9 -1620 1441 6 -1621 1441 8 -1622 1442 21 -1623 1443 7 -1624 1443 19 -1625 1443 21 -1626 1444 29 -1627 1446 21 -1628 1446 16 -1629 1446 17 -1630 1447 2 -1631 1447 21 -1632 1447 3 -1633 1448 7 -1634 1448 14 -1635 1448 2 -1636 1448 11 -1637 1448 18 -1638 1448 3 -1639 1448 4 -1640 1448 8 -1641 1449 14 -1642 1449 29 -1643 1449 26 -1644 1449 16 -1645 1449 4 -1646 1449 8 -1647 1449 17 -1648 1451 7 -1649 1451 2 -1650 1451 5 -1651 1451 3 -1652 1451 4 -1653 1452 25 -1654 1452 7 -1655 1452 21 -1656 1452 28 -1657 1452 20 -1658 1453 24 -1659 1453 29 -1660 1454 2 -1661 1454 22 -1662 1454 3 -1663 1454 10 -1664 1454 8 -1665 1455 7 -1666 1457 29 -1667 1457 21 -1668 1457 10 -1669 1458 2 -1670 1458 3 -1671 1458 8 -1672 1459 2 -1673 1459 3 -1674 1460 20 -1675 1461 30 -1676 1462 16 -1677 1462 17 -1678 1463 24 -1679 1463 3 -1680 1463 4 -1681 1464 23 -1682 1464 7 -1683 1464 29 -1684 1464 21 -1685 1464 11 -1686 1464 16 -1687 1464 4 -1688 1464 8 -1689 1464 20 -1690 1465 2 -1691 1465 3 -1692 1465 4 -1693 1467 28 -1694 1467 4 -1695 1467 20 -1696 1468 30 -1697 1468 7 -1698 1468 14 -1699 1468 29 -1700 1468 21 -1701 1468 22 -1702 1468 26 -1703 1468 28 -1704 1468 16 -1705 1468 6 -1706 1468 8 -1707 1469 30 -1708 1469 7 -1709 1469 2 -1710 1469 21 -1711 1469 5 -1712 1469 3 -1713 1469 10 -1714 1469 8 -1715 1470 23 -1716 1470 19 -1717 1470 24 -1718 1470 29 -1719 1470 21 -1720 1470 5 -1721 1470 18 -1722 1470 26 -1723 1470 10 -1724 1470 8 -1725 1471 7 -1726 1471 14 -1727 1471 29 -1728 1471 21 -1729 1471 16 -1730 1472 14 -1731 1472 29 -1732 1472 16 -1733 1472 27 -1734 1472 17 -1735 1473 7 -1736 1473 29 -1737 1473 26 -1738 1473 28 -1739 1474 23 -1740 1474 14 -1741 1474 2 -1742 1474 21 -1743 1474 22 -1744 1474 18 -1745 1474 26 -1746 1474 3 -1747 1475 23 -1748 1475 15 -1749 1475 25 -1750 1475 7 -1751 1475 21 -1752 1475 22 -1753 1475 16 -1754 1475 9 -1755 1475 10 -1756 1476 30 -1757 1476 2 -1758 1476 3 -1759 1476 16 -1760 1476 4 -1761 1476 8 -1762 1476 17 -1763 1476 20 -1764 1477 7 -1765 1477 14 -1766 1477 11 -1767 1477 5 -1768 1477 4 -1769 1477 8 -1770 1478 2 -1771 1478 11 -1772 1478 12 -1773 1479 21 -1774 1480 15 -1775 1480 7 -1776 1480 21 -1777 1480 22 -1778 1480 8 -1779 1481 7 -1780 1481 19 -1781 1481 2 -1782 1481 29 -1783 1481 21 -1784 1481 11 -1785 1481 18 -1786 1481 3 -1787 1481 10 -1788 1481 33 -1789 1483 24 -1790 1483 14 -1791 1483 21 -1792 1483 11 -1793 1483 33 -1794 1484 19 -1795 1484 24 -1796 1484 2 -1797 1484 29 -1798 1484 21 -1799 1484 3 -1800 1484 20 -1801 1486 29 -1802 1486 18 -1803 1486 26 -1804 1486 9 -1805 1486 8 -1806 1487 9 -1807 1488 7 -1808 1488 2 -1809 1488 21 -1810 1488 22 -1811 1488 18 -1812 1488 3 -1813 1488 10 -1814 1488 8 -1815 1489 25 -1816 1489 7 -1817 1489 14 -1818 1489 2 -1819 1489 5 -1820 1489 3 -1821 1489 16 -1822 1489 6 -1823 1489 4 -1824 1489 17 -1825 1489 1 -1826 1490 23 -1827 1490 25 -1828 1490 21 -1829 1490 8 -1830 1490 20 -1831 1491 25 -1832 1491 7 -1833 1491 2 -1834 1491 22 -1835 1491 11 -1836 1491 3 -1837 1491 10 -1838 1491 4 -1839 1491 8 -1840 1492 31 -1841 1492 33 -1842 1493 7 -1843 1493 2 -1844 1493 21 -1845 1493 11 -1846 1493 3 -1847 1494 7 -1848 1494 24 -1849 1494 14 -1850 1494 18 -1851 1494 26 -1852 1494 16 -1853 1494 9 -1854 1494 10 -1855 1494 8 -1856 1494 17 -1857 1495 25 -1858 1495 7 -1859 1495 19 -1860 1495 29 -1861 1495 21 -1862 1495 9 -1863 1497 23 -1864 1497 15 -1865 1497 1 -1866 1500 9 -1867 1502 19 -1868 1502 11 -1869 1502 12 -1870 1502 9 -1871 1503 14 -1872 1503 3 -1873 1503 16 -1874 1503 9 -1875 1503 17 -1876 1504 7 -1877 1504 22 -1878 1504 9 -1879 1505 13 -1880 1505 25 -1881 1505 2 -1882 1505 29 -1883 1505 21 -1884 1505 31 -1885 1505 5 -1886 1505 3 -1887 1505 4 -1888 1505 1 -1889 1506 2 -1890 1506 5 -1891 1506 3 -1892 1506 8 -1893 1507 7 -1894 1507 29 -1895 1507 4 -1896 1508 7 -1897 1508 3 -1898 1508 16 -1899 1508 27 -1900 1509 7 -1901 1509 21 -1902 1509 6 -1903 1509 20 -1904 1510 7 -1905 1510 24 -1906 1510 14 -1907 1510 2 -1908 1510 21 -1909 1510 11 -1910 1510 6 -1911 1510 20 -1912 1511 11 -1913 1512 7 -1914 1512 29 -1915 1512 26 -1916 1512 9 -1917 1512 10 -1918 1514 30 -1919 1516 7 -1920 1516 19 -1921 1516 24 -1922 1516 14 -1923 1516 2 -1924 1516 29 -1925 1516 21 -1926 1516 18 -1927 1516 3 -1928 1516 16 -1929 1516 10 -1930 1516 6 -1931 1516 4 -1932 1516 33 -1933 1516 8 -1934 1516 17 -1935 1516 20 -1936 1517 7 -1937 1517 8 -1938 1518 22 -1939 1520 8 -1940 1521 7 -1941 1521 19 -1942 1521 2 -1943 1521 5 -1944 1521 18 -1945 1521 3 -1946 1521 4 -1947 1521 8 -1948 1522 30 -1949 1522 7 -1950 1522 29 -1951 1522 21 -1952 1522 26 -1953 1522 10 -1954 1522 6 -1955 1522 8 -1956 1523 24 -1957 1523 2 -1958 1523 31 -1959 1523 3 -1960 1524 7 -1961 1524 19 -1962 1524 10 -1963 1525 10 -1964 1526 30 -1965 1526 29 -1966 1526 28 -1967 1527 7 -1968 1527 14 -1969 1527 26 -1970 1527 20 -1971 1529 30 -1972 1529 7 -1973 1529 24 -1974 1529 14 -1975 1529 29 -1976 1529 3 -1977 1529 16 -1978 1530 14 -1979 1530 29 -1980 1530 20 -1981 1532 7 -1982 1532 14 -1983 1533 32 -1984 1534 30 -1985 1534 21 -1986 1534 26 -1987 1534 10 -1988 1535 24 -1989 1535 21 -1990 1536 23 -1991 1536 7 -1992 1536 10 -1993 1536 8 -1994 1537 7 -1995 1537 2 -1996 1537 3 -1997 1537 4 -1998 1537 8 -1999 1540 24 -2000 1540 2 -2001 1540 3 -2002 1540 10 -2003 1540 8 -2004 1541 7 -2005 1541 14 -2006 1541 2 -2007 1541 29 -2008 1541 28 -2009 1541 3 -2010 1541 16 -2011 1541 32 -2012 1541 8 -2013 1542 7 -2014 1542 16 -2015 1542 8 -2016 1543 24 -2017 1545 25 -2018 1546 26 -2019 1546 10 -2020 1546 8 -2021 1548 7 -2022 1548 20 -2023 1549 18 -2024 1549 9 -2025 1549 8 -2026 1550 29 -2027 1550 10 -2028 1550 8 -2029 1551 11 -2030 1551 5 -2031 1551 4 -2032 1552 2 -2033 1552 3 -2034 1552 8 -2035 1553 7 -2036 1553 21 -2037 1553 28 -2038 1553 16 -2039 1553 20 -2040 1555 7 -2041 1555 2 -2042 1555 3 -2043 1555 4 -2044 1555 8 -2045 1556 29 -2046 1556 26 -2047 1556 10 -2048 1558 7 -2049 1558 11 -2050 1558 16 -2051 1558 6 -2052 1558 4 -2053 1558 33 -2054 1560 19 -2055 1560 29 -2056 1560 21 -2057 1560 26 -2058 1560 16 -2059 1560 27 -2060 1560 20 -2061 1561 32 -2062 1562 7 -2063 1562 14 -2064 1562 2 -2065 1562 29 -2066 1562 18 -2067 1562 3 -2068 1562 16 -2069 1562 32 -2070 1563 7 -2071 1563 17 -2072 1564 8 -2073 1565 8 -2074 1566 25 -2075 1566 7 -2076 1566 2 -2077 1566 3 -2078 1566 9 -2079 1567 7 -2080 1567 19 -2081 1567 26 -2082 1567 9 -2083 1567 8 -2084 1568 19 -2085 1569 8 -2086 1570 13 -2087 1570 16 -2088 1570 8 -2089 1571 9 -2090 1571 8 -2091 1572 19 -2092 1572 5 -2093 1572 26 -2094 1573 7 -2095 1573 29 -2096 1573 10 -2097 1573 8 -2098 1574 2 -2099 1574 31 -2100 1574 5 -2101 1574 32 -2102 1576 19 -2103 1576 24 -2104 1576 21 -2105 1576 10 -2106 1576 8 -2107 1576 20 -2108 1577 7 -2109 1577 21 -2110 1577 27 -2111 1577 8 -2112 1577 20 -2113 1578 2 -2114 1578 3 -2115 1578 8 -2116 1579 24 -2117 1579 20 -2118 1580 7 -2119 1580 14 -2120 1580 21 -2121 1580 11 -2122 1580 10 -2123 1580 6 -2124 1580 33 -2125 1580 8 -2126 1580 20 -2127 1581 2 -2128 1581 3 -2129 1583 8 -2130 1584 30 -2131 1584 7 -2132 1584 19 -2133 1584 24 -2134 1584 14 -2135 1584 29 -2136 1584 11 -2137 1584 28 -2138 1584 10 -2139 1584 33 -2140 1584 8 -2141 1584 20 -2142 1585 7 -2143 1585 29 -2144 1586 29 -2145 1586 21 -2146 1587 7 -2147 1587 21 -2148 1587 22 -2149 1587 11 -2150 1587 9 -2151 1588 15 -2152 1588 25 -2153 1588 7 -2154 1588 24 -2155 1588 22 -2156 1588 11 -2157 1588 6 -2158 1588 33 -2159 1588 8 -2160 1589 8 -2161 1590 14 -2162 1590 2 -2163 1590 3 -2164 1590 6 -2165 1590 4 -2166 1590 8 -2167 1590 20 -2168 1591 29 -2169 1591 26 -2170 1592 16 -2171 1592 10 -2172 1593 21 -2173 1593 8 -2174 1593 20 -2175 1594 29 -2176 1594 21 -2177 1594 16 -2178 1594 10 -2179 1594 6 -2180 1594 8 -2181 1595 7 -2182 1595 21 -2183 1595 8 -2184 1596 8 -2185 1599 1 -2186 1602 7 -2187 1602 13 -2188 1602 29 -2189 1604 8 -2190 1604 10 -2191 1604 29 -2192 1607 7 -2193 1607 21 -2194 1607 24 -2203 1613 7 -2204 1613 14 -2205 1613 18 -2206 1613 29 -2207 1614 7 -2208 1614 14 -2209 1614 18 -2210 1614 29 -2213 1616 7 -2214 1616 10 -2215 1616 24 -2216 1617 3 -2217 1617 8 -2218 1617 23 -2219 1617 26 -2220 1618 8 -2221 1618 10 -2222 1618 19 -2223 1618 23 -2224 1618 26 -2225 1618 29 -2226 1618 30 -2227 1618 31 -2228 1618 32 -2229 1618 33 -2235 1620 19 -2236 1620 21 -2237 1620 24 -2238 1622 8 -2239 1622 9 -2240 1619 33 -2241 1619 32 -2242 1619 31 -2243 1619 25 -2244 1619 23 -2245 1608 29 -2246 1608 24 -2247 1608 21 -2248 1608 18 -2249 1608 14 -2250 1608 7 -2251 1608 4 -2252 1608 2 -2253 1623 10 -2254 1623 17 -2255 1623 21 -2256 1623 22 -2257 1623 23 -2258 1623 31 -2259 1625 8 -2265 1630 21 -2266 1628 24 -2267 1628 19 -2268 1628 14 -2269 1628 8 -2270 1628 7 -2271 1615 1 -2272 1636 7 -2273 1636 21 -2274 1636 22 -\. - - --- --- Data for Name: skill; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.skill (id, title) FROM stdin; -1 Woodworking -2 Drawing -3 Painting -4 Sewing -5 Knitting -6 Repairs -7 Cooking -8 Teaching -9 Programming -10 Public speaking -11 Gardening -12 Landscaping -13 Carpentry -14 Decorating -15 Bike -16 Photography -17 Videography -18 Makeup -19 Copywriting -20 Yoga -21 Fitness -22 Football -23 Basketball -24 Dance -25 Chess -26 Management -27 SMM -28 Mediation -29 Event -30 Coaching -31 Guitar -32 Piano -33 Singing -\. - - --- --- Data for Name: testimonial; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.testimonial (id, is_active, name, pic, person_id, language_id) FROM stdin; -\. - - --- --- Data for Name: time; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public."time" (id, info) FROM stdin; -1 \N -2 \N -3 \N -4 \N -5 \N -6 \N -7 \N -8 \N -9 \N -10 \N -11 \N -12 \N -13 \N -14 \N -15 \N -16 \N -17 \N -18 \N -19 \N -20 \N -21 \N -22 \N -23 \N -24 \N -25 \N -26 \N -27 \N -28 \N -29 \N -30 \N -31 \N -32 \N -33 \N -34 \N -35 \N -36 \N -37 \N -38 \N -39 \N -40 \N -41 \N -42 \N -43 \N -44 \N -45 \N -46 \N -47 \N -48 \N -49 \N -50 \N -51 \N -52 \N -53 \N -54 \N -55 \N -56 \N -57 \N -58 \N -59 \N -60 \N -61 \N -62 \N -63 \N -64 \N -65 \N -66 \N -67 \N -68 \N -69 \N -70 \N -71 \N -72 \N -73 \N -74 \N -75 \N -76 \N -77 \N -78 \N -79 \N -80 \N -81 \N -82 \N -83 \N -84 \N -85 \N -86 \N -87 \N -88 \N -89 \N -90 \N -91 \N -92 \N -93 \N -94 \N -95 \N -96 \N -97 \N -98 \N -99 \N -100 \N -101 \N -102 \N -103 \N -104 \N -105 \N -106 \N -107 \N -108 \N -109 \N -110 \N -111 \N -112 \N -113 \N -114 \N -115 \N -116 \N -117 \N -118 \N -119 \N -120 \N -121 \N -122 \N -123 \N -124 \N -125 \N -126 \N -127 \N -128 \N -129 \N -130 \N -131 \N -132 \N -133 \N -134 \N -135 \N -136 \N -137 \N -138 \N -139 \N -140 \N -141 \N -142 \N -143 \N -144 \N -145 \N -146 \N -147 \N -148 \N -149 \N -150 \N -151 \N -152 \N -153 \N -154 \N -155 \N -156 \N -157 \N -158 \N -159 \N -160 \N -161 \N -162 \N -163 \N -164 \N -165 \N -166 \N -167 \N -168 \N -169 \N -170 \N -171 \N -172 \N -173 \N -174 \N -175 \N -176 \N -177 \N -178 \N -179 \N -180 \N -181 \N -182 \N -183 \N -184 \N -185 \N -186 \N -187 \N -188 \N -189 \N -190 \N -191 \N -192 \N -193 \N -194 \N -195 \N -196 \N -197 \N -198 \N -199 \N -200 \N -201 \N -202 \N -203 \N -204 \N -205 \N -206 \N -207 \N -208 \N -209 \N -210 \N -211 \N -212 \N -213 \N -214 \N -215 \N -216 \N -217 \N -218 \N -219 \N -220 \N -221 \N -222 \N -223 \N -224 \N -225 \N -226 \N -227 \N -228 \N -229 \N -230 \N -231 \N -232 \N -233 \N -234 \N -235 \N -236 \N -237 \N -238 \N -239 \N -240 \N -241 \N -242 \N -243 \N -244 \N -245 \N -246 \N -247 \N -248 \N -249 \N -250 \N -251 \N -252 \N -253 \N -254 \N -255 \N -256 \N -257 \N -258 \N -259 \N -260 \N -261 \N -262 \N -263 \N -264 \N -265 \N -266 \N -267 \N -268 \N -269 \N -270 \N -271 \N -272 \N -273 \N -274 \N -275 \N -276 \N -277 \N -278 \N -279 \N -280 \N -281 \N -282 \N -283 \N -284 \N -285 \N -286 \N -287 \N -288 \N -289 \N -290 \N -291 \N -292 \N -293 \N -294 \N -295 \N -296 \N -297 \N -298 \N -299 \N -300 \N -301 \N -302 \N -303 \N -304 \N -305 \N -306 \N -307 \N -308 \N -309 \N -310 \N -311 \N -312 \N -313 \N -314 \N -315 \N -316 \N -317 \N -318 \N -319 \N -320 \N -321 \N -322 \N -323 \N -324 \N -325 \N -326 \N -327 \N -328 \N -329 \N -330 \N -331 \N -332 \N -333 \N -334 \N -335 \N -336 \N -337 \N -338 \N -339 \N -340 \N -341 \N -342 \N -343 \N -344 \N -345 \N -346 \N -347 \N -348 \N -349 \N -350 \N -351 \N -352 \N -353 \N -354 \N -355 \N -356 \N -357 \N -358 \N -359 \N -360 \N -361 \N -362 \N -363 \N -364 \N -365 \N -366 \N -367 \N -368 \N -369 \N -370 \N -371 \N -372 \N -373 \N -374 \N -375 \N -376 \N -377 \N -378 \N -379 \N -380 \N -381 \N -382 \N -383 \N -384 \N -385 \N -386 \N -387 \N -388 \N -389 \N -390 \N -391 \N -392 \N -393 \N -394 \N -395 \N -396 \N -397 \N -398 \N -399 \N -400 \N -401 \N -402 \N -403 \N -404 \N -405 \N -406 \N -407 \N -408 \N -409 \N -410 \N -411 \N -412 \N -413 \N -414 \N -415 \N -416 \N -417 \N -418 \N -419 \N -420 \N -421 \N -422 \N -423 \N -424 \N -425 \N -426 \N -427 \N -428 \N -429 \N -430 \N -431 \N -432 \N -433 \N -434 \N -435 \N -436 \N -437 \N -438 \N -439 \N -440 \N -441 \N -442 \N -443 \N -444 \N -445 \N -446 \N -447 \N -448 \N -449 \N -450 \N -451 \N -452 \N -453 \N -454 \N -455 \N -456 \N -457 \N -458 \N -459 \N -460 \N -461 \N -462 \N -463 \N -464 \N -465 \N -466 \N -467 \N -468 \N -469 \N -470 \N -471 \N -472 \N -473 \N -474 \N -475 \N -476 \N -477 \N -478 \N -479 \N -480 \N -481 \N -482 \N -483 \N -484 \N -485 \N -486 \N -487 \N -488 \N -489 \N -490 \N -491 \N -492 \N -493 \N -494 \N -495 \N -496 \N -497 \N -498 \N -499 \N -500 \N -501 \N -502 \N -503 \N -504 \N -505 \N -506 \N -507 \N -508 \N -509 \N -510 \N -511 \N -512 \N -513 \N -514 \N -515 \N -516 \N -517 \N -518 \N -519 \N -520 \N -521 \N -522 \N -523 \N -524 \N -525 \N -526 \N -527 \N -528 \N -529 \N -530 \N -531 \N -532 \N -533 \N -534 \N -535 \N -536 \N -537 \N -538 \N -539 \N -540 \N -541 \N -542 \N -543 \N -544 \N -545 \N -546 \N -547 \N -548 \N -549 \N -550 \N -551 \N -552 \N -553 \N -554 \N -555 \N -556 \N -557 \N -558 \N -559 \N -560 \N -561 \N -562 \N -563 \N -564 \N -565 \N -566 \N -567 \N -568 \N -569 \N -570 \N -571 \N -572 \N -573 \N -574 \N -575 \N -576 \N -577 \N -578 \N -579 \N -580 \N -581 \N -582 \N -583 \N -584 \N -585 \N -586 \N -587 \N -588 \N -589 \N -590 \N -591 \N -592 \N -593 \N -594 \N -595 \N -596 \N -597 \N -598 \N -599 \N -600 \N -601 \N -602 \N -603 \N -604 \N -605 \N -606 \N -607 \N -608 \N -609 \N -610 \N -611 \N -612 \N -613 \N -614 \N -615 \N -616 \N -617 \N -618 \N -619 \N -620 \N -621 \N -622 \N -623 \N -624 \N -625 \N -626 \N -627 \N -628 \N -629 \N -630 \N -631 \N -632 \N -633 \N -634 \N -635 \N -636 \N -637 \N -638 \N -639 \N -640 \N -641 \N -642 \N -643 \N -644 \N -645 \N -646 \N -647 \N -648 \N -649 \N -650 \N -651 \N -652 \N -653 \N -654 \N -655 \N -656 \N -657 \N -658 \N -659 \N -660 \N -661 \N -662 \N -663 \N -664 \N -665 \N -666 \N -667 \N -668 \N -669 \N -670 \N -671 \N -672 \N -673 \N -674 \N -675 \N -676 \N -677 \N -678 \N -679 \N -680 \N -681 \N -682 \N -683 \N -684 \N -685 \N -686 \N -687 \N -688 \N -689 \N -690 \N -691 \N -692 \N -693 \N -694 \N -695 \N -696 \N -697 \N -698 \N -699 \N -700 \N -701 \N -702 \N -703 \N -704 \N -705 \N -706 \N -707 \N -708 \N -709 \N -710 \N -711 \N -712 \N -713 \N -714 \N -715 \N -716 \N -717 \N -718 \N -719 \N -720 \N -721 \N -722 \N -723 \N -724 \N -725 \N -726 \N -727 \N -728 \N -729 \N -730 \N -731 \N -732 \N -733 \N -734 \N -735 \N -736 \N -737 \N -738 \N -739 \N -740 \N -741 \N -742 \N -743 \N -744 \N -745 \N -746 \N -747 \N -748 \N -749 \N -750 \N -751 \N -752 \N -753 \N -754 \N -755 \N -756 \N -757 \N -758 \N -759 \N -760 \N -761 \N -762 \N -763 \N -764 \N -765 \N -766 \N -767 \N -768 \N -769 \N -770 \N -771 \N -772 \N -773 \N -774 \N -775 \N -776 \N -777 \N -778 \N -779 \N -780 \N -781 \N -782 \N -783 \N -784 \N -785 \N -786 \N -787 \N -788 \N -789 \N -790 \N -791 \N -792 \N -793 \N -794 \N -795 \N -796 \N -797 \N -798 \N -799 \N -800 \N -801 \N -802 \N -803 \N -804 \N -805 \N -806 \N -807 \N -808 \N -809 \N -810 \N -811 \N -812 \N -813 \N -814 \N -815 \N -816 \N -817 \N -818 \N -819 \N -820 \N -821 \N -822 \N -823 \N -824 \N -825 \N -826 \N -827 \N -828 \N -829 \N -830 \N -831 \N -832 \N -833 \N -834 \N -835 \N -836 \N -837 \N -838 \N -839 \N -840 \N -841 \N -842 \N -843 \N -844 \N -845 \N -846 \N -847 \N -848 \N -849 \N -850 \N -851 \N -852 \N -853 \N -854 \N -855 \N -856 \N -857 \N -858 \N -859 \N -860 \N -861 \N -862 \N -863 \N -864 \N -865 \N -866 \N -867 \N -868 \N -869 \N -870 \N -871 \N -872 \N -873 \N -874 \N -875 \N -876 \N -877 \N -878 \N -879 \N -880 \N -881 \N -882 \N -883 \N -884 \N -885 \N -886 \N -887 \N -888 \N -889 \N -890 \N -891 \N -892 \N -893 \N -894 \N -895 \N -896 \N -897 \N -898 \N -899 \N -900 \N -901 \N -902 \N -903 \N -904 \N -905 \N -906 \N -907 \N -908 \N -909 \N -910 \N -911 \N -912 \N -913 \N -914 \N -915 \N -916 \N -917 \N -918 \N -919 \N -920 \N -921 \N -922 \N -923 \N -924 \N -925 \N -926 \N -927 \N -928 \N -929 \N -930 \N -931 \N -932 \N -933 \N -934 \N -935 \N -936 \N -937 \N -938 \N -939 \N -940 \N -941 \N -942 \N -943 \N -944 \N -945 \N -946 \N -947 \N -948 \N -949 \N -950 \N -951 \N -952 \N -953 \N -954 \N -955 \N -956 \N -957 \N -958 \N -959 \N -960 \N -961 \N -962 \N -963 \N -964 \N -965 \N -966 \N -967 \N -968 \N -969 \N -970 \N -971 \N -972 \N -973 \N -974 \N -975 \N -976 \N -977 \N -978 \N -979 \N -980 \N -981 \N -982 \N -983 \N -984 \N -985 \N -986 \N -987 \N -988 \N -989 \N -990 \N -991 \N -992 \N -993 \N -994 \N -995 \N -996 \N -997 \N -998 \N -999 \N -1000 \N -1001 \N -1002 \N -1003 \N -1004 \N -1005 \N -1006 \N -1007 \N -1008 \N -1009 \N -1010 \N -1011 \N -1012 \N -1013 \N -1014 \N -1015 \N -1016 \N -1017 \N -1018 \N -1019 \N -1020 \N -1021 \N -1022 \N -1023 \N -1024 \N -1025 \N -1026 \N -1027 \N -1028 \N -1029 \N -1030 \N -1031 \N -1032 \N -1033 \N -1034 \N -1035 \N -1036 \N -1037 \N -1038 \N -1039 \N -1040 \N -1041 \N -1042 \N -1043 \N -1044 \N -1045 \N -1046 \N -1047 \N -1048 \N -1049 \N -1050 \N -1051 \N -1052 \N -1053 \N -1054 \N -1055 \N -1056 \N -1057 \N -1058 \N -1059 \N -1060 \N -1061 \N -1062 \N -1063 \N -1064 \N -1065 \N -1066 \N -1067 \N -1068 \N -1069 \N -1070 \N -1071 \N -1072 \N -1073 \N -1074 \N -1075 \N -1076 \N -1077 \N -1078 \N -1079 \N -1080 \N -1081 \N -1082 \N -1083 \N -1084 \N -1085 \N -1086 \N -1087 \N -1088 \N -1089 \N -1090 \N -1091 \N -1092 \N -1093 \N -1094 \N -1095 \N -1096 \N -1097 \N -1098 \N -1099 \N -1100 \N -1101 \N -1102 \N -1103 \N -1104 \N -1105 \N -1106 \N -1107 \N -1108 \N -1109 \N -1110 \N -1111 \N -1112 \N -1113 \N -1114 \N -1115 \N -1116 \N -1117 \N -1118 \N -1119 \N -1120 \N -1121 \N -1122 \N -1123 \N -1124 \N -1125 \N -1126 \N -1127 \N -1128 \N -1129 \N -1130 \N -1131 \N -1132 \N -1133 \N -1134 \N -1135 \N -1136 \N -1137 \N -1138 \N -1139 \N -1140 \N -1141 \N -1142 \N -1143 \N -1144 \N -1145 \N -1146 \N -1147 \N -1148 \N -1149 \N -1150 \N -1151 \N -1152 \N -1153 \N -1154 \N -1155 \N -1156 \N -1157 \N -1158 \N -1159 \N -1160 \N -1161 \N -1162 \N -1163 \N -1164 \N -1165 \N -1166 \N -1167 \N -1168 \N -1169 \N -1170 \N -1171 \N -1172 \N -1173 \N -1174 \N -1175 \N -1176 \N -1177 \N -1178 \N -1179 \N -1180 \N -1181 \N -1182 \N -1183 \N -1184 \N -1185 \N -1186 \N -1187 \N -1188 \N -1189 \N -1190 \N -1191 \N -1192 \N -1193 \N -1194 \N -1195 \N -1196 \N -1197 \N -1198 \N -1199 \N -1200 \N -1201 \N -1202 \N -1203 \N -1204 \N -1205 \N -1206 \N -1207 \N -1208 \N -1209 \N -1210 \N -1211 \N -1212 \N -1213 \N -1214 \N -1215 \N -1216 \N -1217 \N -1218 \N -1219 \N -1220 \N -1221 \N -1222 \N -1223 \N -1224 \N -1225 \N -1226 \N -1227 \N -1228 \N -1229 \N -1230 \N -1231 \N -1232 \N -1233 \N -1234 \N -1235 \N -1236 \N -1237 \N -1238 \N -1239 \N -1240 \N -1241 \N -1242 \N -1243 \N -1244 \N -1245 \N -1246 \N -1247 \N -1248 \N -1249 \N -1250 \N -1251 \N -1252 \N -1253 \N -1254 \N -1255 \N -1256 \N -1257 \N -1258 \N -1259 \N -1260 \N -1261 \N -1262 \N -1263 \N -1264 \N -1265 \N -1266 \N -1267 \N -1268 \N -1269 \N -1270 \N -1271 \N -1272 \N -1273 \N -1274 \N -1275 \N -1276 \N -1277 \N -1278 \N -1279 \N -1280 \N -1281 \N -1282 \N -1283 \N -1284 \N -1285 \N -1286 \N -1287 \N -1288 \N -1289 \N -1290 \N -1291 \N -1292 \N -1293 \N -1294 \N -1295 \N -1296 \N -1297 \N -1298 \N -1299 \N -1300 \N -1301 \N -1302 \N -1303 \N -1304 \N -1305 \N -1306 \N -1307 \N -1308 \N -1309 \N -1310 \N -1311 \N -1312 \N -1313 \N -1314 \N -1315 \N -1316 \N -1317 \N -1318 \N -1319 \N -1320 \N -1321 \N -1322 \N -1323 \N -1324 \N -1325 \N -1326 \N -1327 \N -1328 \N -1329 \N -1330 \N -1331 \N -1332 \N -1333 \N -1334 \N -1335 \N -1336 \N -1337 \N -1338 \N -1339 \N -1340 \N -1341 \N -1342 \N -1343 \N -1344 \N -1345 \N -1346 \N -1347 \N -1348 \N -1349 \N -1350 \N -1351 \N -1352 \N -1353 \N -1354 \N -1355 \N -1356 \N -1357 \N -1358 \N -1359 \N -1360 \N -1361 \N -1362 \N -1363 \N -1364 \N -1365 \N -1366 \N -1367 \N -1368 \N -1369 \N -1370 \N -1371 \N -1372 \N -1373 \N -1374 \N -1375 \N -1376 \N -1377 \N -1378 \N -1379 \N -1380 \N -1381 \N -1382 \N -1383 \N -1384 \N -1385 \N -1386 \N -1387 \N -1388 \N -1389 \N -1390 \N -1391 \N -1392 \N -1393 \N -1394 \N -1395 \N -1396 \N -1397 \N -1398 \N -1399 \N -1400 \N -1401 \N -1402 \N -1403 \N -1404 \N -1405 \N -1406 \N -1407 \N -1408 \N -1409 \N -1410 \N -1411 \N -1412 \N -1413 \N -1414 \N -1415 \N -1416 \N -1417 \N -1418 \N -1419 \N -1420 \N -1421 \N -1422 \N -1423 \N -1424 \N -1425 \N -1426 \N -1427 \N -1428 \N -1429 \N -1430 \N -1431 \N -1432 \N -1433 \N -1434 \N -1435 \N -1436 \N -1437 \N -1438 \N -1439 \N -1440 \N -1441 \N -1442 \N -1443 \N -1444 \N -1445 \N -1446 \N -1447 \N -1448 \N -1449 \N -1450 \N -1451 \N -1452 \N -1453 \N -1454 \N -1455 \N -1456 \N -1457 \N -1458 \N -1459 \N -1460 \N -1461 \N -1462 \N -1463 \N -1464 \N -1465 \N -1466 \N -1467 \N -1468 \N -1469 \N -1470 \N -1471 \N -1472 \N -1473 \N -1474 \N -1475 \N -1476 \N -1477 \N -1478 \N -1479 \N -1480 \N -1481 \N -1482 \N -1483 \N -1484 \N -1485 \N -1486 \N -1487 \N -1488 \N -1489 \N -1490 \N -1491 \N -1492 \N -1493 \N -1494 \N -1495 \N -1496 \N -1497 \N -1498 \N -1499 \N -1500 \N -1501 \N -1502 \N -1503 \N -1504 \N -1505 \N -1506 \N -1507 \N -1508 \N -1509 \N -1510 \N -1511 \N -1512 \N -1513 \N -1514 \N -1515 \N -1516 \N -1517 \N -1518 \N -1519 \N -1520 \N -1521 \N -1522 \N -1523 \N -1524 \N -1525 \N -1526 \N -1527 \N -1528 \N -1529 \N -1530 \N -1531 \N -1532 \N -1533 \N -1534 \N -1535 \N -1536 \N -1537 \N -1538 \N -1539 \N -1540 \N -1541 \N -1542 \N -1543 \N -1544 \N -1545 \N -1546 \N -1547 \N -1548 \N -1549 \N -1550 \N -1551 \N -1552 \N -1553 \N -1554 \N -1555 \N -1556 \N -1557 \N -1558 \N -1559 \N -1560 \N -1561 \N -1562 \N -1563 \N -1564 \N -1565 \N -1566 \N -1567 \N -1568 \N -1569 \N -1570 \N -1571 \N -1572 \N -1573 \N -1574 \N -1575 \N -1576 \N -1577 \N -1578 \N -1579 \N -1580 \N -1581 \N -1582 \N -1583 \N -1584 \N -1585 \N -1586 \N -1587 \N -1588 \N -1589 \N -1590 \N -1591 \N -1592 \N -1593 \N -1594 \N -1595 \N -1596 \N -1597 \N -1598 \N -1599 \N -1600 \N -1601 \N -1602 \N -1603 \N -1604 \N -1605 \N -1606 \N -1607 \N -1608 \N -1609 \N -1610 \N -1611 \N -1612 \N -1613 \N -1614 \N -1615 \N -1616 \N -1617 \N -1618 \N -1619 \N -1620 \N -1621 \N -1622 \N -1623 \N -1624 \N -1625 \N -1626 \N -1627 \N -1628 \N -1629 \N -1630 \N -1631 \N -1632 \N -1633 \N -1634 \N -1635 \N -1636 \N -1637 \N -1638 \N -\. - - --- --- Data for Name: time_timeslot; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.time_timeslot (id, time_id, timeslot_id) FROM stdin; -1 3 19 -2 3 2 -3 3 15 -4 3 7 -5 3 11 -6 14 8 -7 14 12 -8 21 30 -9 42 19 -10 42 3 -11 42 15 -12 42 7 -13 42 11 -14 55 18 -15 55 6 -16 56 10 -17 108 7 -18 110 19 -19 110 3 -20 110 15 -21 110 7 -22 110 11 -23 111 19 -24 111 3 -25 111 15 -26 111 7 -27 111 11 -28 112 29 -29 120 19 -30 120 3 -31 120 15 -32 120 7 -33 120 11 -34 140 30 -35 155 31 -36 156 32 -37 157 33 -38 158 34 -39 159 35 -40 160 36 -41 161 37 -42 162 38 -43 163 39 -44 164 40 -45 165 41 -46 166 42 -47 167 43 -48 168 44 -49 169 45 -50 170 46 -51 171 47 -52 172 48 -53 173 49 -54 174 50 -55 175 51 -56 176 52 -57 177 53 -58 178 54 -59 180 55 -60 181 56 -61 182 4 -62 183 57 -63 184 58 -64 185 59 -65 186 60 -66 187 61 -67 188 62 -68 189 63 -69 190 64 -70 192 65 -71 195 18 -72 195 2 -73 195 14 -74 195 7 -75 195 11 -76 197 66 -77 201 67 -78 202 68 -79 203 69 -80 204 70 -81 205 15 -82 205 7 -83 205 11 -84 209 71 -85 210 72 -86 213 73 -87 214 74 -88 215 75 -89 216 20 -90 216 4 -91 217 76 -92 218 77 -93 219 19 -94 219 3 -95 219 29 -96 219 15 -97 219 7 -98 219 11 -99 220 19 -100 220 3 -101 220 15 -102 220 7 -103 220 11 -104 221 15 -105 221 7 -106 221 11 -107 222 78 -108 223 79 -109 224 18 -110 225 20 -111 225 8 -112 225 12 -113 226 20 -114 226 4 -115 226 29 -116 226 16 -117 226 8 -118 226 12 -119 227 29 -120 228 29 -121 229 9 -122 230 80 -123 231 29 -124 232 81 -125 233 19 -126 233 3 -127 233 15 -128 233 7 -129 233 11 -130 234 19 -131 234 3 -132 234 29 -133 234 15 -134 234 7 -135 234 11 -136 235 20 -137 235 4 -138 235 16 -139 235 8 -140 235 12 -141 236 20 -142 236 4 -143 236 29 -144 236 16 -145 236 8 -146 236 12 -147 237 1 -148 237 13 -149 237 5 -150 237 9 -151 238 19 -152 238 3 -153 238 15 -154 238 7 -155 238 11 -156 239 20 -157 239 4 -158 239 16 -159 239 8 -160 239 12 -161 240 82 -162 241 19 -163 241 3 -164 241 29 -165 241 15 -166 241 7 -167 241 11 -168 242 83 -169 243 20 -170 243 4 -171 243 16 -172 243 8 -173 243 12 -174 244 84 -175 245 85 -176 246 16 -177 247 86 -178 248 87 -179 249 88 -180 250 89 -181 251 90 -182 253 19 -183 253 3 -184 253 15 -185 253 7 -186 253 11 -187 254 91 -188 255 92 -189 256 93 -190 257 20 -191 257 4 -192 257 24 -193 257 16 -194 257 8 -195 257 12 -196 258 94 -197 259 4 -198 259 16 -199 259 8 -200 260 95 -201 261 96 -202 262 97 -203 263 20 -204 263 4 -205 263 29 -206 263 16 -207 263 8 -208 263 12 -209 264 3 -210 264 15 -211 264 7 -212 264 11 -213 265 98 -214 266 20 -215 266 4 -216 266 16 -217 266 8 -218 266 12 -219 267 17 -220 267 1 -221 267 13 -222 267 5 -223 267 9 -224 268 29 -225 269 20 -226 269 16 -227 269 8 -228 270 99 -229 271 100 -230 272 101 -231 273 19 -232 273 3 -233 273 15 -234 273 7 -235 273 11 -236 274 102 -237 275 18 -238 275 2 -239 275 14 -240 275 6 -241 275 10 -242 276 103 -243 277 19 -244 277 3 -245 277 15 -246 277 7 -247 277 11 -248 278 19 -249 278 3 -250 278 15 -251 278 7 -252 278 11 -253 279 14 -254 279 6 -255 280 29 -256 281 104 -257 282 29 -258 283 19 -259 283 3 -260 283 23 -261 283 27 -262 283 15 -263 283 7 -264 283 11 -265 284 3 -266 284 29 -267 284 15 -268 285 20 -269 285 4 -270 285 29 -271 285 16 -272 285 8 -273 285 12 -274 286 105 -275 287 106 -276 288 107 -277 289 108 -278 290 109 -279 291 110 -280 292 111 -281 293 112 -282 294 113 -283 295 114 -284 296 30 -285 297 115 -286 298 116 -287 299 18 -288 299 2 -289 299 14 -290 299 6 -291 300 20 -292 301 20 -293 301 4 -294 301 8 -295 301 12 -296 302 117 -297 303 20 -298 303 4 -299 303 16 -300 303 8 -301 303 12 -302 304 118 -303 305 30 -304 306 119 -305 307 120 -306 308 121 -307 309 122 -308 310 123 -309 312 124 -310 313 125 -311 314 126 -312 315 29 -313 316 127 -314 317 128 -315 318 129 -316 319 130 -317 320 131 -318 321 132 -319 322 30 -320 323 19 -321 323 3 -322 323 15 -323 323 7 -324 323 11 -325 324 133 -326 325 134 -327 326 19 -328 326 3 -329 326 15 -330 326 7 -331 326 11 -332 327 19 -333 327 4 -334 327 15 -335 327 8 -336 327 11 -337 328 135 -338 329 19 -339 329 3 -340 329 15 -341 329 7 -342 329 11 -343 330 19 -344 330 3 -345 330 15 -346 330 7 -347 330 11 -348 331 136 -349 332 137 -350 333 19 -351 333 3 -352 333 15 -353 333 7 -354 333 11 -355 334 138 -356 335 3 -357 335 29 -358 336 19 -359 336 3 -360 336 15 -361 336 7 -362 336 11 -363 337 19 -364 337 3 -365 337 15 -366 337 7 -367 337 11 -368 338 19 -369 338 3 -370 338 15 -371 338 7 -372 338 11 -373 339 19 -374 339 3 -375 339 15 -376 339 7 -377 339 11 -378 340 11 -379 341 139 -380 342 18 -381 342 2 -382 342 14 -383 342 6 -384 342 10 -385 343 140 -386 344 141 -387 345 17 -388 345 1 -389 345 14 -390 345 7 -391 346 18 -392 346 2 -393 346 29 -394 346 14 -395 346 6 -396 346 10 -397 347 142 -398 348 19 -399 348 3 -400 348 15 -401 348 7 -402 348 11 -403 349 19 -404 349 3 -405 349 15 -406 349 7 -407 349 11 -408 350 143 -409 351 144 -410 352 145 -411 353 146 -412 354 147 -413 355 30 -414 356 30 -415 357 148 -416 358 149 -417 359 150 -418 360 29 -419 361 29 -420 362 151 -421 363 152 -422 364 29 -423 365 153 -424 366 12 -425 367 3 -426 367 7 -427 367 11 -428 368 30 -429 369 154 -430 370 19 -431 370 15 -432 370 7 -433 371 4 -434 371 16 -435 371 8 -436 371 12 -437 372 20 -438 372 4 -439 372 16 -440 372 8 -441 372 12 -442 373 155 -443 374 19 -444 374 3 -445 374 23 -446 374 27 -447 374 15 -448 374 7 -449 374 11 -450 375 19 -451 375 3 -452 375 23 -453 375 27 -454 375 15 -455 375 7 -456 375 11 -457 376 156 -458 377 157 -459 378 158 -460 379 3 -461 379 15 -462 379 11 -463 380 159 -464 381 20 -465 381 4 -466 381 16 -467 381 8 -468 381 12 -469 382 3 -470 382 15 -471 382 7 -472 382 11 -473 383 160 -474 384 161 -475 385 162 -476 386 163 -477 387 164 -478 388 165 -479 389 166 -480 390 167 -481 391 29 -482 392 168 -483 393 169 -484 394 170 -485 395 171 -486 396 172 -487 397 173 -488 398 174 -489 399 175 -490 400 29 -491 401 176 -492 402 177 -493 403 17 -494 403 1 -495 403 21 -496 403 25 -497 403 13 -498 403 5 -499 403 9 -500 404 178 -501 405 179 -502 406 180 -503 407 181 -504 408 7 -505 408 10 -506 409 18 -507 409 2 -508 409 22 -509 409 26 -510 409 14 -511 409 6 -512 409 10 -513 410 182 -514 411 7 -515 411 11 -516 412 19 -517 412 11 -518 413 18 -519 413 2 -520 413 14 -521 413 6 -522 413 10 -523 414 29 -524 414 7 -525 415 183 -526 416 184 -527 417 185 -528 418 186 -529 419 187 -530 420 188 -531 421 17 -532 421 1 -533 421 29 -534 421 13 -535 421 5 -536 421 9 -537 422 17 -538 422 1 -539 422 29 -540 422 13 -541 422 5 -542 422 9 -543 423 16 -544 423 8 -545 423 12 -546 424 189 -547 425 190 -548 426 191 -549 427 192 -550 428 193 -551 429 194 -552 430 195 -553 431 196 -554 432 197 -555 433 30 -556 434 198 -557 435 199 -558 436 19 -559 436 3 -560 436 15 -561 436 7 -562 436 11 -563 437 4 -564 438 7 -565 439 200 -566 440 201 -567 441 202 -568 443 203 -569 444 204 -570 445 205 -571 446 206 -572 447 207 -573 448 208 -574 449 209 -575 450 210 -576 451 211 -577 452 19 -578 452 3 -579 452 29 -580 452 15 -581 452 7 -582 452 11 -583 453 212 -584 454 213 -585 455 214 -586 456 19 -587 456 3 -588 456 29 -589 456 23 -590 456 27 -591 456 15 -592 456 7 -593 456 11 -594 457 215 -595 458 216 -596 459 217 -597 460 218 -598 461 219 -599 462 220 -600 463 221 -601 464 222 -602 465 223 -603 466 20 -604 466 4 -605 466 16 -606 466 8 -607 466 12 -608 467 224 -609 468 225 -610 469 226 -611 470 227 -612 471 228 -613 472 229 -614 473 230 -615 474 231 -616 475 232 -617 476 233 -618 477 6 -619 478 18 -620 478 2 -621 478 30 -622 478 22 -623 478 26 -624 478 14 -625 478 6 -626 478 10 -627 479 20 -628 479 4 -629 479 24 -630 479 28 -631 479 16 -632 479 8 -633 479 12 -634 480 19 -635 480 3 -636 480 23 -637 480 27 -638 480 15 -639 480 7 -640 480 11 -641 481 234 -642 482 235 -643 483 236 -644 484 237 -645 485 238 -646 486 239 -647 487 18 -648 488 12 -649 489 16 -650 490 19 -651 490 3 -652 490 30 -653 490 22 -654 490 26 -655 490 15 -656 490 7 -657 490 11 -658 491 240 -659 492 241 -660 493 242 -661 494 30 -662 495 243 -663 496 244 -664 497 245 -665 498 246 -666 499 29 -667 499 16 -668 499 11 -669 500 247 -670 501 29 -671 502 248 -672 503 249 -673 504 250 -674 505 251 -675 506 252 -676 507 19 -677 507 3 -678 507 15 -679 507 7 -680 507 11 -681 508 2 -682 508 14 -683 508 6 -684 508 10 -685 509 11 -686 510 253 -687 511 254 -688 512 255 -689 513 256 -690 514 1 -691 514 13 -692 514 5 -693 514 9 -694 515 3 -695 515 15 -696 515 11 -697 516 17 -698 516 1 -699 516 13 -700 516 7 -701 516 9 -702 517 20 -703 517 4 -704 517 14 -705 517 7 -706 517 10 -707 518 257 -708 519 258 -709 520 259 -710 521 260 -711 522 261 -712 523 262 -713 524 263 -714 525 20 -715 525 4 -716 525 16 -717 525 8 -718 525 12 -719 526 19 -720 527 20 -721 527 4 -722 527 16 -723 527 8 -724 527 12 -725 528 20 -726 528 4 -727 528 16 -728 528 8 -729 528 12 -730 529 264 -731 530 265 -732 531 19 -733 531 3 -734 531 15 -735 531 7 -736 531 11 -737 532 266 -738 533 267 -739 534 268 -740 535 269 -741 536 270 -742 537 19 -743 537 29 -744 537 14 -745 538 271 -746 539 272 -747 540 273 -748 541 19 -749 541 3 -750 541 29 -751 541 15 -752 541 7 -753 541 11 -754 542 274 -755 543 15 -756 543 11 -757 544 29 -758 545 275 -759 546 3 -760 546 15 -761 547 4 -762 548 276 -763 549 277 -764 550 278 -765 551 17 -766 551 1 -767 551 13 -768 551 5 -769 551 9 -770 552 29 -771 553 279 -772 554 280 -773 555 281 -774 556 282 -775 557 283 -776 558 284 -777 559 19 -778 559 3 -779 559 11 -780 560 285 -781 561 30 -782 562 15 -783 562 7 -784 563 286 -785 564 287 -786 565 288 -787 566 29 -788 567 29 -789 567 7 -790 568 30 -791 569 30 -792 570 29 -793 571 29 -794 572 289 -795 573 290 -796 574 291 -797 575 292 -798 576 4 -799 576 22 -800 576 26 -801 576 16 -802 576 8 -803 576 12 -804 577 293 -805 578 294 -806 579 295 -807 580 17 -808 580 1 -809 580 30 -810 580 21 -811 580 25 -812 580 13 -813 580 5 -814 580 9 -815 581 10 -816 582 20 -817 582 4 -818 582 24 -819 582 28 -820 582 16 -821 582 8 -822 582 12 -823 583 296 -824 584 19 -825 584 3 -826 584 15 -827 584 7 -828 585 297 -829 586 29 -830 586 24 -831 586 28 -832 587 298 -833 588 18 -834 588 2 -835 588 14 -836 588 6 -837 588 10 -838 589 299 -839 590 300 -840 591 18 -841 591 2 -842 591 14 -843 591 6 -844 591 10 -845 592 3 -846 592 15 -847 592 7 -848 593 30 -849 594 19 -850 594 3 -851 594 23 -852 594 7 -853 594 11 -854 595 301 -855 596 302 -856 597 303 -857 598 18 -858 598 10 -859 599 304 -860 600 19 -861 600 3 -862 600 15 -863 600 7 -864 600 11 -865 601 305 -866 602 306 -867 603 2 -868 603 11 -869 604 19 -870 604 11 -871 605 20 -872 605 4 -873 605 16 -874 605 8 -875 605 12 -876 606 307 -877 607 308 -878 608 309 -879 609 310 -880 610 311 -881 611 30 -882 612 312 -883 613 313 -884 614 314 -885 615 315 -886 616 316 -887 617 317 -888 618 20 -889 618 16 -890 618 8 -891 618 12 -892 619 29 -893 620 318 -894 621 319 -895 622 320 -896 623 321 -897 624 322 -898 625 19 -899 625 3 -900 625 7 -901 625 11 -902 626 323 -903 627 19 -904 627 3 -905 627 7 -906 628 10 -907 629 30 -908 630 15 -909 630 7 -910 630 11 -911 631 15 -912 631 7 -913 631 11 -914 632 324 -915 633 19 -916 633 3 -917 633 15 -918 633 7 -919 633 11 -920 634 325 -921 635 19 -922 635 3 -923 636 11 -924 637 326 -925 638 18 -926 638 2 -927 638 14 -928 638 6 -929 638 10 -930 639 327 -931 640 328 -932 641 329 -933 642 330 -934 643 4 -935 643 29 -936 644 331 -937 645 332 -938 646 333 -939 647 334 -940 648 8 -941 649 335 -942 650 336 -943 651 337 -944 652 338 -945 653 339 -946 654 340 -947 655 341 -948 656 342 -949 657 343 -950 658 344 -951 659 19 -952 659 3 -953 659 15 -954 659 7 -955 659 11 -956 660 20 -957 660 4 -958 660 16 -959 660 8 -960 660 12 -961 661 19 -962 661 3 -963 661 15 -964 661 7 -965 661 11 -966 662 345 -967 663 346 -968 664 347 -969 665 20 -970 665 4 -971 665 22 -972 665 16 -973 665 8 -974 665 12 -975 666 20 -976 666 4 -977 666 22 -978 666 16 -979 666 8 -980 666 12 -981 667 348 -982 668 349 -983 669 350 -984 670 351 -985 671 352 -986 672 353 -987 673 354 -988 674 355 -989 675 356 -990 676 357 -991 677 1 -992 677 29 -993 677 13 -994 677 5 -995 677 9 -996 678 17 -997 678 1 -998 678 14 -999 678 5 -1000 678 9 -1001 679 358 -1002 680 359 -1003 681 360 -1004 682 361 -1005 683 362 -1006 684 363 -1007 685 364 -1008 686 365 -1009 687 17 -1010 687 1 -1011 687 29 -1012 687 13 -1013 687 5 -1014 687 9 -1015 688 366 -1016 689 367 -1017 690 368 -1018 691 20 -1019 691 29 -1020 691 12 -1021 692 369 -1022 693 370 -1023 694 371 -1024 695 372 -1025 696 373 -1026 697 374 -1027 698 375 -1028 699 18 -1029 699 2 -1030 699 14 -1031 699 6 -1032 699 10 -1033 700 30 -1034 700 22 -1035 700 26 -1036 701 26 -1037 702 4 -1038 703 376 -1039 704 24 -1040 704 28 -1041 704 16 -1042 704 8 -1043 705 20 -1044 705 4 -1045 705 12 -1046 706 20 -1047 706 24 -1048 706 28 -1049 706 8 -1050 706 12 -1051 707 377 -1052 708 378 -1053 709 29 -1054 710 379 -1055 711 1 -1056 711 30 -1057 711 14 -1058 711 6 -1059 712 380 -1060 713 20 -1061 713 4 -1062 713 16 -1063 713 8 -1064 713 12 -1065 714 3 -1066 714 22 -1067 714 11 -1068 715 18 -1069 715 2 -1070 715 14 -1071 715 6 -1072 715 10 -1073 716 381 -1074 717 382 -1075 718 19 -1076 718 3 -1077 718 15 -1078 718 7 -1079 718 11 -1080 719 383 -1081 720 19 -1082 721 384 -1083 722 17 -1084 722 1 -1085 722 13 -1086 722 5 -1087 722 9 -1088 723 385 -1089 724 386 -1090 725 20 -1091 725 4 -1092 725 30 -1093 725 16 -1094 725 8 -1095 725 12 -1096 726 387 -1097 727 20 -1098 727 4 -1099 727 16 -1100 727 8 -1101 727 12 -1102 728 388 -1103 729 389 -1104 730 12 -1105 731 3 -1106 731 7 -1107 731 11 -1108 732 18 -1109 732 2 -1110 732 14 -1111 732 6 -1112 732 10 -1113 733 2 -1114 733 29 -1115 733 14 -1116 733 6 -1117 733 10 -1118 734 390 -1119 735 391 -1120 736 392 -1121 737 393 -1122 738 29 -1123 738 12 -1124 739 394 -1125 740 2 -1126 740 6 -1127 741 395 -1128 742 396 -1129 743 29 -1130 744 397 -1131 745 398 -1132 746 399 -1133 747 400 -1134 748 401 -1135 749 402 -1136 750 18 -1137 750 2 -1138 750 14 -1139 750 6 -1140 750 10 -1141 751 29 -1142 752 29 -1143 753 403 -1144 754 20 -1145 754 4 -1146 754 22 -1147 754 16 -1148 754 8 -1149 755 404 -1150 756 405 -1151 757 406 -1152 758 407 -1153 759 20 -1154 759 4 -1155 759 29 -1156 759 16 -1157 759 8 -1158 759 12 -1159 760 408 -1160 761 409 -1161 762 410 -1162 763 411 -1163 764 412 -1164 765 413 -1165 766 414 -1166 767 415 -1167 768 22 -1168 768 26 -1169 769 20 -1170 769 4 -1171 769 12 -1172 770 416 -1173 771 417 -1174 772 14 -1175 772 5 -1176 772 9 -1177 773 16 -1178 773 8 -1179 773 12 -1180 774 418 -1181 775 419 -1182 776 420 -1183 777 19 -1184 777 3 -1185 778 421 -1186 779 422 -1187 780 423 -1188 781 17 -1189 781 1 -1190 781 13 -1191 781 5 -1192 781 9 -1193 782 424 -1194 783 1 -1195 783 13 -1196 783 9 -1197 784 3 -1198 784 15 -1199 784 7 -1200 784 11 -1201 785 8 -1202 786 425 -1203 787 4 -1204 788 426 -1205 789 9 -1206 790 427 -1207 791 428 -1208 792 429 -1209 793 19 -1210 793 3 -1211 793 15 -1212 793 7 -1213 793 11 -1214 794 430 -1215 795 431 -1216 796 1 -1217 796 30 -1218 796 7 -1219 796 9 -1220 797 432 -1221 798 433 -1222 799 434 -1223 800 435 -1224 801 436 -1225 802 437 -1226 803 438 -1227 804 439 -1228 805 440 -1229 890 20 -1230 890 4 -1231 890 30 -1232 890 16 -1233 890 8 -1234 890 12 -1235 946 19 -1236 946 29 -1237 1015 30 -1238 1038 29 -1239 1043 30 -1240 1111 23 -1241 1111 27 -1242 1112 30 -1243 1113 2 -1244 1113 13 -1245 1113 5 -1246 1113 10 -1247 1116 29 -1248 1116 28 -1249 1117 19 -1250 1117 15 -1251 1117 11 -1252 1118 3 -1253 1118 15 -1254 1118 6 -1255 1118 12 -1256 1120 1 -1257 1120 30 -1258 1120 10 -1259 1121 19 -1260 1121 3 -1261 1121 30 -1262 1121 7 -1263 1121 11 -1264 1123 19 -1265 1123 3 -1266 1124 30 -1267 1125 29 -1268 1125 22 -1269 1125 26 -1270 1126 20 -1271 1126 4 -1272 1126 30 -1273 1126 24 -1274 1126 28 -1275 1126 16 -1276 1126 8 -1277 1126 12 -1278 1127 19 -1279 1127 3 -1280 1127 15 -1281 1127 7 -1282 1127 11 -1283 1128 28 -1284 1129 20 -1285 1129 30 -1286 1129 16 -1287 1130 20 -1288 1130 4 -1289 1130 30 -1290 1130 23 -1291 1130 27 -1292 1130 16 -1293 1130 8 -1294 1131 19 -1295 1131 3 -1296 1131 15 -1297 1131 7 -1298 1131 11 -1299 1132 17 -1300 1132 1 -1301 1132 13 -1302 1132 5 -1303 1132 9 -1304 1133 17 -1305 1133 1 -1306 1133 13 -1307 1133 5 -1308 1133 9 -1309 1134 13 -1310 1134 5 -1311 1134 9 -1312 1135 12 -1313 1136 20 -1314 1136 4 -1315 1136 30 -1316 1136 23 -1317 1136 27 -1318 1136 16 -1319 1136 8 -1320 1136 12 -1321 1137 17 -1322 1137 1 -1323 1137 24 -1324 1137 28 -1325 1137 13 -1326 1137 5 -1327 1137 9 -1328 1138 30 -1329 1139 17 -1330 1139 1 -1331 1139 30 -1332 1139 24 -1333 1139 28 -1334 1139 13 -1335 1139 5 -1336 1139 9 -1337 1140 18 -1338 1140 22 -1339 1140 27 -1340 1140 14 -1341 1141 29 -1342 1141 27 -1343 1141 7 -1344 1142 15 -1345 1142 7 -1346 1143 24 -1347 1143 28 -1348 1144 3 -1349 1144 22 -1350 1145 20 -1351 1145 30 -1352 1145 23 -1353 1145 27 -1354 1146 30 -1355 1147 17 -1356 1147 1 -1357 1147 13 -1358 1147 5 -1359 1147 9 -1360 1148 29 -1361 1148 23 -1362 1148 27 -1363 1149 17 -1364 1149 1 -1365 1149 22 -1366 1149 26 -1367 1149 13 -1368 1149 5 -1369 1149 9 -1370 1150 17 -1371 1150 4 -1372 1150 29 -1373 1150 13 -1374 1150 5 -1375 1150 9 -1376 1151 17 -1377 1151 1 -1378 1151 24 -1379 1151 28 -1380 1151 13 -1381 1151 5 -1382 1151 9 -1383 1152 29 -1384 1152 24 -1385 1152 28 -1386 1153 19 -1387 1153 3 -1388 1153 29 -1389 1153 13 -1390 1153 5 -1391 1153 11 -1392 1154 2 -1393 1154 6 -1394 1154 10 -1395 1155 20 -1396 1155 14 -1397 1156 18 -1398 1156 29 -1399 1157 4 -1400 1157 30 -1401 1157 16 -1402 1157 12 -1403 1158 29 -1404 1159 20 -1405 1159 4 -1406 1160 19 -1407 1161 19 -1408 1161 4 -1409 1161 30 -1410 1161 28 -1411 1161 16 -1412 1161 8 -1413 1161 12 -1414 1162 20 -1415 1162 4 -1416 1162 23 -1417 1162 27 -1418 1162 16 -1419 1162 8 -1420 1162 12 -1421 1163 20 -1422 1163 4 -1423 1163 30 -1424 1163 24 -1425 1163 8 -1426 1163 12 -1427 1164 19 -1428 1164 30 -1429 1165 20 -1430 1165 4 -1431 1165 14 -1432 1165 6 -1433 1165 10 -1434 1166 19 -1435 1166 23 -1436 1166 27 -1437 1166 15 -1438 1166 7 -1439 1166 11 -1440 1167 20 -1441 1167 4 -1442 1167 30 -1443 1167 23 -1444 1167 27 -1445 1167 16 -1446 1167 8 -1447 1167 12 -1448 1168 30 -1449 1169 2 -1450 1169 30 -1451 1170 29 -1452 1170 24 -1453 1170 28 -1454 1171 20 -1455 1171 24 -1456 1172 1 -1457 1172 21 -1458 1172 26 -1459 1172 13 -1460 1172 12 -1461 1173 1 -1462 1174 19 -1463 1174 23 -1464 1174 14 -1465 1174 10 -1466 1175 20 -1467 1175 4 -1468 1175 30 -1469 1175 16 -1470 1175 8 -1471 1175 12 -1472 1176 18 -1473 1176 4 -1474 1176 30 -1475 1176 14 -1476 1176 6 -1477 1176 10 -1478 1177 1 -1479 1177 5 -1480 1177 9 -1481 1178 17 -1482 1179 13 -1483 1179 5 -1484 1179 9 -1485 1180 30 -1486 1180 22 -1487 1180 26 -1488 1181 29 -1489 1181 26 -1490 1182 3 -1491 1182 29 -1492 1182 23 -1493 1182 27 -1494 1183 20 -1495 1183 4 -1496 1183 29 -1497 1183 24 -1498 1183 28 -1499 1183 16 -1500 1183 8 -1501 1183 12 -1502 1184 18 -1503 1184 2 -1504 1184 30 -1505 1184 13 -1506 1184 6 -1507 1184 10 -1508 1185 18 -1509 1185 29 -1510 1185 22 -1511 1185 26 -1512 1186 19 -1513 1186 3 -1514 1186 23 -1515 1186 27 -1516 1186 15 -1517 1186 7 -1518 1186 11 -1519 1187 2 -1520 1187 29 -1521 1187 6 -1522 1187 10 -1523 1188 18 -1524 1188 2 -1525 1188 29 -1526 1188 14 -1527 1188 5 -1528 1188 9 -1529 1189 30 -1530 1189 22 -1531 1189 26 -1532 1191 20 -1533 1191 4 -1534 1191 30 -1535 1191 21 -1536 1191 25 -1537 1191 16 -1538 1191 8 -1539 1191 12 -1540 1192 30 -1541 1193 17 -1542 1193 1 -1543 1193 29 -1544 1193 13 -1545 1193 5 -1546 1193 9 -1547 1194 4 -1548 1194 6 -1549 1195 4 -1550 1195 8 -1551 1196 30 -1552 1197 18 -1553 1197 4 -1554 1197 15 -1555 1197 8 -1556 1197 12 -1557 1198 18 -1558 1198 2 -1559 1198 21 -1560 1198 25 -1561 1198 6 -1562 1199 20 -1563 1199 4 -1564 1199 30 -1565 1199 24 -1566 1199 28 -1567 1199 16 -1568 1199 8 -1569 1199 11 -1570 1200 18 -1571 1200 2 -1572 1200 22 -1573 1200 26 -1574 1200 14 -1575 1200 6 -1576 1200 10 -1577 1201 22 -1578 1201 26 -1579 1202 4 -1580 1202 24 -1581 1202 28 -1582 1202 16 -1583 1202 8 -1584 1202 12 -1585 1203 17 -1586 1203 4 -1587 1203 16 -1588 1203 5 -1589 1203 12 -1590 1204 30 -1591 1205 1 -1592 1205 5 -1593 1205 11 -1594 1206 29 -1595 1206 15 -1596 1206 8 -1597 1206 9 -1598 1207 19 -1599 1207 4 -1600 1207 24 -1601 1207 28 -1602 1207 15 -1603 1207 8 -1604 1207 11 -1605 1208 15 -1606 1208 7 -1607 1209 18 -1608 1209 1 -1609 1209 14 -1610 1209 5 -1611 1209 10 -1612 1210 24 -1613 1210 28 -1614 1211 19 -1615 1211 2 -1616 1211 8 -1617 1211 11 -1618 1212 30 -1619 1212 11 -1620 1213 30 -1621 1213 28 -1622 1214 30 -1623 1215 30 -1624 1216 19 -1625 1216 1 -1626 1216 30 -1627 1216 5 -1628 1216 10 -1629 1217 18 -1630 1217 26 -1631 1218 20 -1632 1218 4 -1633 1218 30 -1634 1218 24 -1635 1218 28 -1636 1219 20 -1637 1219 4 -1638 1219 29 -1639 1219 24 -1640 1219 28 -1641 1219 16 -1642 1219 8 -1643 1219 12 -1644 1220 19 -1645 1220 7 -1646 1221 17 -1647 1221 4 -1648 1221 13 -1649 1221 5 -1650 1221 9 -1651 1222 4 -1652 1222 30 -1653 1222 24 -1654 1222 28 -1655 1222 16 -1656 1222 10 -1657 1223 20 -1658 1223 30 -1659 1223 23 -1660 1223 16 -1661 1224 8 -1662 1225 18 -1663 1225 30 -1664 1225 22 -1665 1225 26 -1666 1225 8 -1667 1225 12 -1668 1226 17 -1669 1226 1 -1670 1226 13 -1671 1226 5 -1672 1226 9 -1673 1227 17 -1674 1227 1 -1675 1227 30 -1676 1227 13 -1677 1227 9 -1678 1228 20 -1679 1229 30 -1680 1229 22 -1681 1229 27 -1682 1229 5 -1683 1230 29 -1684 1231 18 -1685 1231 2 -1686 1231 14 -1687 1231 6 -1688 1231 10 -1689 1232 21 -1690 1232 25 -1691 1233 14 -1692 1233 6 -1693 1233 10 -1694 1234 30 -1695 1235 17 -1696 1235 1 -1697 1235 30 -1698 1235 21 -1699 1235 25 -1700 1235 13 -1701 1235 5 -1702 1235 9 -1703 1236 17 -1704 1236 2 -1705 1236 30 -1706 1236 13 -1707 1236 5 -1708 1236 12 -1709 1237 30 -1710 1237 22 -1711 1237 26 -1712 1237 13 -1713 1237 5 -1714 1238 17 -1715 1238 1 -1716 1238 13 -1717 1238 5 -1718 1238 9 -1719 1239 18 -1720 1239 13 -1721 1239 7 -1722 1240 19 -1723 1240 22 -1724 1240 26 -1725 1240 13 -1726 1240 8 -1727 1240 9 -1728 1241 4 -1729 1241 30 -1730 1241 21 -1731 1241 25 -1732 1241 12 -1733 1242 17 -1734 1242 1 -1735 1242 22 -1736 1242 26 -1737 1242 13 -1738 1242 5 -1739 1242 9 -1740 1243 20 -1741 1243 4 -1742 1243 30 -1743 1243 21 -1744 1243 25 -1745 1243 16 -1746 1243 8 -1747 1243 12 -1748 1244 20 -1749 1244 4 -1750 1244 30 -1751 1244 16 -1752 1244 8 -1753 1244 12 -1754 1245 18 -1755 1245 30 -1756 1246 12 -1757 1247 19 -1758 1247 3 -1759 1247 30 -1760 1247 15 -1761 1247 7 -1762 1247 11 -1763 1248 1 -1764 1248 30 -1765 1248 13 -1766 1248 9 -1767 1249 20 -1768 1249 2 -1769 1249 21 -1770 1249 25 -1771 1249 13 -1772 1249 9 -1773 1250 1 -1774 1250 29 -1775 1250 5 -1776 1250 9 -1777 1251 17 -1778 1251 1 -1779 1251 13 -1780 1251 5 -1781 1251 9 -1782 1252 20 -1783 1252 4 -1784 1252 30 -1785 1252 16 -1786 1252 8 -1787 1252 12 -1788 1253 18 -1789 1253 2 -1790 1253 22 -1791 1254 4 -1792 1254 30 -1793 1254 16 -1794 1254 8 -1795 1254 12 -1796 1255 2 -1797 1255 14 -1798 1255 6 -1799 1256 18 -1800 1256 22 -1801 1256 26 -1802 1256 14 -1803 1256 6 -1804 1256 10 -1805 1257 14 -1806 1257 10 -1807 1258 17 -1808 1259 4 -1809 1259 21 -1810 1259 25 -1811 1259 16 -1812 1259 8 -1813 1259 12 -1814 1260 30 -1815 1261 29 -1816 1262 20 -1817 1262 30 -1818 1262 16 -1819 1263 20 -1820 1263 24 -1821 1264 18 -1822 1264 2 -1823 1264 22 -1824 1264 26 -1825 1264 14 -1826 1264 6 -1827 1264 10 -1828 1265 22 -1829 1265 9 -1830 1266 19 -1831 1266 11 -1832 1267 17 -1833 1267 1 -1834 1267 9 -1835 1268 30 -1836 1269 30 -1837 1269 23 -1838 1269 27 -1839 1269 7 -1840 1270 19 -1841 1270 22 -1842 1270 26 -1843 1270 13 -1844 1270 8 -1845 1270 9 -1846 1271 20 -1847 1271 4 -1848 1271 29 -1849 1271 24 -1850 1271 28 -1851 1271 16 -1852 1271 8 -1853 1271 12 -1854 1272 26 -1855 1272 15 -1856 1272 7 -1857 1273 25 -1858 1274 20 -1859 1274 4 -1860 1274 30 -1861 1274 23 -1862 1274 27 -1863 1274 9 -1864 1275 17 -1865 1275 21 -1866 1275 25 -1867 1276 18 -1868 1276 2 -1869 1276 30 -1870 1276 22 -1871 1276 26 -1872 1276 14 -1873 1276 6 -1874 1276 10 -1875 1277 17 -1876 1277 1 -1877 1277 25 -1878 1278 30 -1879 1279 18 -1880 1279 30 -1881 1279 24 -1882 1279 28 -1883 1280 30 -1884 1281 30 -1885 1281 24 -1886 1281 25 -1887 1282 20 -1888 1282 4 -1889 1282 21 -1890 1282 25 -1891 1282 16 -1892 1282 8 -1893 1282 12 -1894 1283 30 -1895 1284 22 -1896 1284 26 -1897 1284 8 -1898 1285 18 -1899 1285 2 -1900 1285 22 -1901 1285 25 -1902 1285 14 -1903 1285 6 -1904 1285 10 -1905 1286 17 -1906 1286 1 -1907 1286 30 -1908 1286 21 -1909 1286 25 -1910 1286 13 -1911 1286 5 -1912 1286 9 -1913 1287 17 -1914 1287 1 -1915 1287 21 -1916 1287 25 -1917 1287 13 -1918 1287 5 -1919 1287 9 -1920 1288 17 -1921 1288 26 -1922 1289 30 -1923 1290 30 -1924 1291 17 -1925 1291 1 -1926 1291 30 -1927 1291 25 -1928 1291 5 -1929 1291 9 -1930 1292 4 -1931 1292 16 -1932 1292 8 -1933 1292 12 -1934 1293 20 -1935 1293 4 -1936 1293 30 -1937 1293 21 -1938 1293 25 -1939 1293 16 -1940 1293 8 -1941 1293 12 -1942 1294 2 -1943 1294 30 -1944 1294 14 -1945 1294 6 -1946 1295 18 -1947 1295 2 -1948 1295 30 -1949 1295 14 -1950 1295 6 -1951 1295 10 -1952 1296 18 -1953 1296 29 -1954 1296 10 -1955 1297 4 -1956 1297 16 -1957 1297 9 -1958 1298 16 -1959 1298 12 -1960 1299 20 -1961 1299 4 -1962 1299 30 -1963 1299 8 -1964 1299 12 -1965 1300 18 -1966 1300 2 -1967 1300 30 -1968 1300 22 -1969 1300 26 -1970 1300 14 -1971 1300 6 -1972 1300 11 -1973 1301 18 -1974 1301 1 -1975 1301 9 -1976 1302 15 -1977 1302 7 -1978 1303 18 -1979 1303 4 -1980 1304 20 -1981 1304 4 -1982 1304 13 -1983 1304 5 -1984 1304 9 -1985 1305 4 -1986 1305 30 -1987 1305 16 -1988 1305 8 -1989 1305 12 -1990 1306 4 -1991 1306 16 -1992 1306 11 -1993 1307 2 -1994 1307 23 -1995 1307 26 -1996 1307 14 -1997 1307 6 -1998 1307 10 -1999 1308 21 -2000 1308 25 -2001 1309 18 -2002 1309 2 -2003 1309 14 -2004 1309 6 -2005 1309 10 -2006 1310 17 -2007 1310 4 -2008 1310 30 -2009 1310 23 -2010 1310 27 -2011 1310 16 -2012 1311 17 -2013 1311 1 -2014 1311 21 -2015 1311 25 -2016 1311 13 -2017 1311 5 -2018 1311 9 -2019 1312 20 -2020 1312 4 -2021 1312 13 -2022 1312 5 -2023 1312 9 -2024 1313 18 -2025 1313 2 -2026 1313 30 -2027 1313 22 -2028 1313 26 -2029 1313 14 -2030 1313 6 -2031 1313 10 -2032 1314 30 -2033 1315 21 -2034 1315 25 -2035 1316 17 -2036 1316 1 -2037 1316 30 -2038 1316 21 -2039 1316 25 -2040 1316 13 -2041 1316 5 -2042 1316 9 -2043 1317 19 -2044 1317 3 -2045 1317 15 -2046 1317 7 -2047 1317 11 -2048 1318 17 -2049 1318 1 -2050 1318 13 -2051 1318 5 -2052 1318 9 -2053 1319 17 -2054 1319 30 -2055 1319 13 -2056 1319 5 -2057 1319 9 -2058 1320 2 -2059 1320 6 -2060 1320 10 -2061 1321 17 -2062 1321 1 -2063 1321 21 -2064 1321 25 -2065 1321 13 -2066 1321 5 -2067 1321 9 -2068 1322 1 -2069 1322 29 -2070 1323 20 -2071 1323 4 -2072 1323 30 -2073 1323 21 -2074 1323 25 -2075 1323 16 -2076 1323 8 -2077 1323 12 -2078 1324 23 -2079 1325 17 -2080 1325 1 -2081 1325 21 -2082 1325 25 -2083 1325 14 -2084 1325 6 -2085 1325 10 -2086 1326 17 -2087 1326 1 -2088 1326 29 -2089 1326 21 -2090 1326 25 -2091 1326 13 -2092 1326 5 -2093 1326 9 -2094 1327 18 -2095 1327 2 -2096 1327 30 -2097 1327 22 -2098 1327 26 -2099 1327 14 -2100 1327 6 -2101 1327 10 -2102 1328 4 -2103 1328 30 -2104 1328 8 -2105 1329 17 -2106 1329 1 -2107 1329 13 -2108 1329 5 -2109 1329 9 -2110 1330 19 -2111 1330 3 -2112 1330 15 -2113 1330 7 -2114 1330 11 -2115 1331 18 -2116 1331 2 -2117 1331 30 -2118 1331 14 -2119 1331 6 -2120 1331 10 -2121 1332 29 -2122 1333 15 -2123 1334 18 -2124 1334 2 -2125 1334 22 -2126 1334 26 -2127 1334 14 -2128 1334 6 -2129 1334 10 -2130 1335 20 -2131 1335 4 -2132 1335 30 -2133 1335 24 -2134 1335 28 -2135 1335 16 -2136 1335 8 -2137 1335 12 -2138 1336 17 -2139 1336 2 -2140 1336 22 -2141 1336 26 -2142 1336 14 -2143 1336 5 -2144 1336 10 -2145 1337 20 -2146 1337 4 -2147 1337 30 -2148 1337 24 -2149 1337 28 -2150 1337 16 -2151 1337 8 -2152 1337 12 -2153 1338 17 -2154 1338 1 -2155 1338 29 -2156 1338 21 -2157 1338 13 -2158 1338 5 -2159 1338 9 -2160 1339 30 -2161 1340 4 -2162 1340 16 -2163 1340 8 -2164 1340 12 -2165 1341 18 -2166 1341 1 -2167 1341 13 -2168 1341 5 -2169 1341 9 -2170 1342 8 -2171 1342 12 -2172 1343 4 -2173 1343 30 -2174 1343 22 -2175 1343 26 -2176 1343 16 -2177 1343 11 -2178 1344 20 -2179 1344 4 -2180 1344 21 -2181 1344 25 -2182 1344 16 -2183 1344 8 -2184 1344 12 -2185 1345 18 -2186 1345 2 -2187 1345 14 -2188 1345 6 -2189 1345 10 -2190 1346 18 -2191 1346 2 -2192 1346 14 -2193 1346 6 -2194 1346 10 -2195 1347 4 -2196 1347 30 -2197 1347 22 -2198 1347 26 -2199 1347 8 -2200 1348 1 -2201 1348 13 -2202 1348 9 -2203 1349 20 -2204 1349 30 -2205 1349 26 -2206 1349 10 -2207 1350 17 -2208 1350 1 -2209 1350 29 -2210 1350 21 -2211 1350 25 -2212 1350 13 -2213 1350 5 -2214 1350 9 -2215 1351 19 -2216 1352 1 -2217 1352 30 -2218 1352 23 -2219 1353 20 -2220 1353 24 -2221 1353 28 -2222 1353 8 -2223 1354 17 -2224 1354 1 -2225 1354 30 -2226 1354 21 -2227 1354 25 -2228 1354 13 -2229 1354 5 -2230 1354 9 -2231 1355 20 -2232 1355 4 -2233 1355 21 -2234 1355 25 -2235 1355 16 -2236 1355 8 -2237 1355 12 -2238 1356 18 -2239 1356 2 -2240 1356 24 -2241 1356 14 -2242 1356 6 -2243 1356 10 -2244 1357 18 -2245 1357 2 -2246 1357 30 -2247 1357 6 -2248 1357 10 -2249 1358 1 -2250 1358 30 -2251 1358 24 -2252 1358 28 -2253 1358 13 -2254 1358 5 -2255 1359 18 -2256 1359 2 -2257 1359 6 -2258 1360 13 -2259 1360 5 -2260 1361 14 -2261 1361 6 -2262 1361 10 -2263 1362 18 -2264 1362 30 -2265 1363 18 -2266 1363 2 -2267 1363 22 -2268 1363 26 -2269 1363 14 -2270 1363 6 -2271 1363 10 -2272 1364 29 -2273 1365 6 -2274 1365 11 -2275 1366 29 -2276 1366 26 -2277 1367 17 -2278 1367 1 -2279 1367 21 -2280 1367 25 -2281 1367 13 -2282 1367 5 -2283 1367 9 -2284 1368 1 -2285 1368 29 -2286 1368 13 -2287 1369 20 -2288 1369 21 -2289 1370 20 -2290 1370 4 -2291 1370 21 -2292 1370 25 -2293 1370 16 -2294 1370 8 -2295 1370 12 -2296 1371 30 -2297 1372 30 -2298 1372 21 -2299 1372 25 -2300 1373 17 -2301 1373 1 -2302 1373 21 -2303 1373 25 -2304 1373 13 -2305 1373 5 -2306 1373 9 -2307 1374 29 -2308 1375 17 -2309 1375 1 -2310 1375 21 -2311 1375 25 -2312 1375 13 -2313 1375 5 -2314 1375 9 -2315 1376 2 -2316 1376 30 -2317 1376 6 -2318 1376 10 -2319 1377 30 -2320 1378 18 -2321 1378 2 -2322 1378 14 -2323 1378 6 -2324 1378 10 -2325 1379 18 -2326 1379 2 -2327 1379 22 -2328 1379 14 -2329 1379 6 -2330 1379 10 -2331 1380 17 -2332 1380 4 -2333 1380 30 -2334 1380 21 -2335 1380 25 -2336 1380 13 -2337 1380 8 -2338 1380 9 -2339 1381 17 -2340 1381 21 -2341 1381 25 -2342 1381 13 -2343 1381 9 -2344 1382 20 -2345 1382 4 -2346 1382 30 -2347 1382 24 -2348 1382 28 -2349 1382 16 -2350 1382 8 -2351 1382 12 -2352 1383 4 -2353 1383 30 -2354 1383 24 -2355 1383 16 -2356 1383 8 -2357 1384 17 -2358 1384 23 -2359 1384 13 -2360 1384 10 -2361 1385 2 -2362 1385 30 -2363 1385 22 -2364 1385 13 -2365 1385 5 -2366 1385 10 -2367 1386 18 -2368 1386 2 -2369 1386 22 -2370 1386 26 -2371 1386 14 -2372 1386 6 -2373 1386 10 -2374 1387 4 -2375 1387 30 -2376 1387 16 -2377 1387 5 -2378 1387 12 -2379 1388 17 -2380 1388 1 -2381 1388 30 -2382 1388 13 -2383 1388 5 -2384 1388 9 -2385 1389 30 -2386 1390 17 -2387 1390 1 -2388 1390 13 -2389 1390 5 -2390 1390 9 -2391 1391 16 -2392 1391 8 -2393 1391 12 -2394 1392 17 -2395 1392 30 -2396 1392 13 -2397 1392 5 -2398 1393 17 -2399 1393 4 -2400 1393 28 -2401 1393 10 -2402 1394 20 -2403 1394 4 -2404 1394 27 -2405 1395 19 -2406 1395 4 -2407 1395 29 -2408 1396 20 -2409 1396 4 -2410 1396 30 -2411 1396 16 -2412 1396 8 -2413 1396 12 -2414 1397 17 -2415 1397 1 -2416 1397 30 -2417 1397 21 -2418 1397 25 -2419 1397 13 -2420 1397 5 -2421 1397 9 -2422 1398 17 -2423 1398 2 -2424 1398 30 -2425 1398 14 -2426 1398 10 -2427 1399 19 -2428 1399 3 -2429 1399 15 -2430 1399 7 -2431 1399 11 -2432 1400 18 -2433 1400 14 -2434 1400 6 -2435 1400 10 -2436 1401 17 -2437 1401 1 -2438 1401 24 -2439 1401 25 -2440 1401 9 -2441 1402 17 -2442 1402 21 -2443 1402 25 -2444 1402 12 -2445 1403 30 -2446 1404 2 -2447 1404 29 -2448 1404 10 -2449 1405 17 -2450 1405 1 -2451 1405 30 -2452 1405 13 -2453 1405 5 -2454 1405 9 -2455 1406 1 -2456 1406 29 -2457 1406 5 -2458 1407 2 -2459 1407 29 -2460 1408 1 -2461 1408 30 -2462 1408 21 -2463 1408 25 -2464 1409 20 -2465 1410 29 -2466 1411 2 -2467 1411 14 -2468 1411 6 -2469 1411 10 -2470 1412 17 -2471 1412 1 -2472 1412 13 -2473 1412 5 -2474 1412 9 -2475 1413 4 -2476 1413 29 -2477 1413 27 -2478 1413 12 -2479 1414 1 -2480 1414 5 -2481 1415 30 -2482 1416 19 -2483 1416 3 -2484 1416 23 -2485 1416 27 -2486 1416 15 -2487 1416 7 -2488 1416 11 -2489 1417 17 -2490 1417 1 -2491 1417 29 -2492 1417 21 -2493 1417 25 -2494 1417 13 -2495 1417 5 -2496 1417 9 -2497 1418 20 -2498 1418 4 -2499 1418 30 -2500 1418 24 -2501 1418 28 -2502 1418 16 -2503 1418 8 -2504 1418 12 -2505 1419 17 -2506 1419 1 -2507 1419 13 -2508 1419 5 -2509 1419 9 -2510 1420 18 -2511 1420 2 -2512 1420 14 -2513 1420 6 -2514 1420 10 -2515 1421 11 -2516 1422 4 -2517 1422 24 -2518 1422 16 -2519 1422 8 -2520 1423 17 -2521 1423 4 -2522 1423 30 -2523 1423 24 -2524 1423 28 -2525 1423 13 -2526 1423 5 -2527 1423 9 -2528 1424 18 -2529 1425 2 -2530 1425 6 -2531 1426 20 -2532 1426 21 -2533 1426 25 -2534 1426 16 -2535 1426 12 -2536 1427 17 -2537 1427 1 -2538 1427 13 -2539 1427 5 -2540 1427 9 -2541 1428 3 -2542 1428 15 -2543 1428 12 -2544 1429 20 -2545 1429 8 -2546 1430 20 -2547 1430 4 -2548 1430 22 -2549 1430 26 -2550 1430 16 -2551 1430 5 -2552 1431 18 -2553 1431 2 -2554 1432 18 -2555 1432 2 -2556 1432 14 -2557 1433 20 -2558 1433 4 -2559 1433 22 -2560 1433 26 -2561 1433 16 -2562 1434 18 -2563 1434 2 -2564 1434 30 -2565 1434 14 -2566 1434 12 -2567 1435 20 -2568 1435 2 -2569 1435 24 -2570 1435 28 -2571 1435 16 -2572 1435 8 -2573 1435 12 -2574 1436 20 -2575 1436 21 -2576 1436 25 -2577 1436 5 -2578 1437 18 -2579 1437 3 -2580 1437 15 -2581 1438 19 -2582 1438 4 -2583 1438 14 -2584 1438 10 -2585 1439 18 -2586 1439 3 -2587 1439 15 -2588 1440 23 -2589 1440 27 -2590 1441 29 -2591 1441 28 -2592 1441 7 -2593 1442 2 -2594 1442 29 -2595 1442 10 -2596 1443 29 -2597 1444 30 -2598 1445 1 -2599 1446 20 -2600 1446 4 -2601 1446 24 -2602 1446 25 -2603 1446 16 -2604 1446 8 -2605 1446 12 -2606 1447 20 -2607 1447 4 -2608 1447 21 -2609 1447 25 -2610 1447 16 -2611 1447 8 -2612 1447 12 -2613 1448 2 -2614 1448 22 -2615 1448 26 -2616 1448 14 -2617 1448 10 -2618 1449 30 -2619 1449 28 -2620 1450 29 -2621 1451 17 -2622 1451 1 -2623 1451 9 -2624 1452 20 -2625 1452 4 -2626 1452 29 -2627 1452 21 -2628 1452 25 -2629 1452 16 -2630 1452 8 -2631 1452 12 -2632 1453 4 -2633 1453 30 -2634 1453 16 -2635 1454 19 -2636 1454 3 -2637 1454 15 -2638 1454 7 -2639 1454 11 -2640 1455 2 -2641 1455 22 -2642 1455 14 -2643 1455 6 -2644 1455 10 -2645 1456 17 -2646 1456 1 -2647 1456 13 -2648 1456 5 -2649 1456 9 -2650 1457 7 -2651 1457 11 -2652 1458 3 -2653 1458 7 -2654 1459 18 -2655 1459 30 -2656 1459 8 -2657 1459 10 -2658 1460 17 -2659 1460 1 -2660 1460 30 -2661 1460 21 -2662 1460 25 -2663 1460 13 -2664 1460 5 -2665 1460 9 -2666 1461 30 -2667 1461 28 -2668 1462 17 -2669 1462 1 -2670 1462 30 -2671 1462 21 -2672 1462 25 -2673 1462 13 -2674 1462 5 -2675 1462 9 -2676 1463 20 -2677 1463 1 -2678 1463 24 -2679 1463 28 -2680 1463 13 -2681 1463 5 -2682 1463 9 -2683 1464 18 -2684 1464 2 -2685 1464 14 -2686 1464 6 -2687 1464 10 -2688 1465 18 -2689 1465 2 -2690 1465 22 -2691 1465 26 -2692 1465 14 -2693 1465 6 -2694 1465 10 -2695 1466 18 -2696 1466 22 -2697 1468 30 -2698 1468 8 -2699 1469 15 -2700 1469 7 -2701 1469 11 -2702 1470 18 -2703 1470 2 -2704 1470 14 -2705 1470 6 -2706 1470 10 -2707 1471 17 -2708 1471 4 -2709 1471 13 -2710 1471 5 -2711 1471 9 -2712 1472 20 -2713 1472 4 -2714 1472 30 -2715 1472 21 -2716 1472 25 -2717 1472 16 -2718 1472 8 -2719 1472 12 -2720 1473 21 -2721 1473 25 -2722 1474 1 -2723 1474 22 -2724 1474 26 -2725 1474 13 -2726 1474 8 -2727 1474 11 -2728 1475 30 -2729 1476 17 -2730 1476 1 -2731 1476 30 -2732 1476 21 -2733 1476 25 -2734 1476 13 -2735 1476 5 -2736 1476 9 -2737 1477 30 -2738 1477 21 -2739 1477 25 -2740 1478 4 -2741 1478 29 -2742 1478 8 -2743 1478 10 -2744 1479 18 -2745 1479 30 -2746 1480 20 -2747 1480 1 -2748 1480 26 -2749 1480 16 -2750 1480 8 -2751 1480 12 -2752 1481 18 -2753 1481 2 -2754 1481 30 -2755 1481 14 -2756 1481 6 -2757 1481 10 -2758 1482 4 -2759 1482 16 -2760 1482 8 -2761 1482 12 -2762 1483 17 -2763 1483 1 -2764 1483 13 -2765 1483 5 -2766 1483 9 -2767 1484 18 -2768 1484 3 -2769 1484 30 -2770 1484 14 -2771 1484 10 -2772 1485 20 -2773 1485 4 -2774 1485 24 -2775 1485 28 -2776 1485 16 -2777 1485 8 -2778 1485 12 -2779 1486 17 -2780 1486 1 -2781 1486 30 -2782 1486 21 -2783 1486 25 -2784 1486 13 -2785 1486 5 -2786 1486 9 -2787 1487 3 -2788 1487 15 -2789 1488 3 -2790 1488 21 -2791 1488 26 -2792 1488 16 -2793 1489 18 -2794 1489 2 -2795 1489 14 -2796 1489 6 -2797 1489 10 -2798 1490 2 -2799 1490 30 -2800 1490 14 -2801 1490 6 -2802 1491 20 -2803 1491 4 -2804 1491 28 -2805 1491 16 -2806 1492 30 -2807 1492 23 -2808 1493 18 -2809 1493 2 -2810 1494 17 -2811 1494 1 -2812 1494 13 -2813 1494 5 -2814 1494 9 -2815 1495 17 -2816 1495 2 -2817 1495 13 -2818 1495 6 -2819 1495 9 -2820 1496 29 -2821 1496 21 -2822 1496 25 -2823 1497 18 -2824 1497 30 -2825 1497 22 -2826 1497 16 -2827 1498 4 -2828 1498 22 -2829 1498 13 -2830 1498 8 -2831 1498 12 -2832 1500 17 -2833 1500 1 -2834 1500 29 -2835 1500 13 -2836 1500 5 -2837 1500 9 -2838 1501 2 -2839 1501 6 -2840 1501 10 -2841 1502 17 -2842 1502 4 -2843 1502 24 -2844 1502 28 -2845 1502 16 -2846 1502 8 -2847 1502 12 -2848 1503 18 -2849 1503 2 -2850 1503 30 -2851 1503 22 -2852 1503 26 -2853 1503 14 -2854 1503 6 -2855 1503 10 -2856 1504 4 -2857 1504 29 -2858 1504 22 -2859 1504 28 -2860 1504 8 -2861 1505 17 -2862 1505 4 -2863 1505 30 -2864 1505 23 -2865 1505 27 -2866 1505 5 -2867 1505 12 -2868 1506 4 -2869 1506 16 -2870 1506 8 -2871 1506 12 -2872 1507 18 -2873 1507 2 -2874 1507 29 -2875 1507 26 -2876 1507 14 -2877 1507 6 -2878 1507 10 -2879 1508 18 -2880 1508 22 -2881 1508 26 -2882 1509 20 -2883 1509 4 -2884 1509 30 -2885 1509 21 -2886 1509 25 -2887 1509 16 -2888 1509 8 -2889 1509 12 -2890 1510 21 -2891 1510 25 -2892 1510 13 -2893 1511 30 -2894 1512 20 -2895 1512 4 -2896 1512 30 -2897 1512 24 -2898 1512 12 -2899 1513 17 -2900 1513 1 -2901 1513 30 -2902 1513 13 -2903 1513 5 -2904 1513 9 -2905 1514 2 -2906 1514 6 -2907 1514 10 -2908 1515 2 -2909 1515 30 -2910 1515 10 -2911 1516 20 -2912 1516 4 -2913 1516 24 -2914 1516 28 -2915 1516 16 -2916 1516 8 -2917 1516 12 -2918 1517 1 -2919 1517 30 -2920 1517 14 -2921 1517 5 -2922 1517 10 -2923 1518 4 -2924 1518 23 -2925 1518 26 -2926 1518 8 -2927 1519 19 -2928 1519 1 -2929 1519 29 -2930 1519 13 -2931 1519 5 -2932 1519 9 -2933 1520 4 -2934 1520 24 -2935 1520 15 -2936 1521 19 -2937 1521 23 -2938 1521 27 -2939 1521 15 -2940 1522 17 -2941 1522 1 -2942 1522 21 -2943 1522 25 -2944 1522 13 -2945 1522 5 -2946 1522 9 -2947 1523 8 -2948 1523 12 -2949 1524 18 -2950 1524 1 -2951 1524 22 -2952 1524 26 -2953 1524 13 -2954 1524 5 -2955 1524 9 -2956 1525 2 -2957 1525 14 -2958 1525 6 -2959 1525 10 -2960 1526 18 -2961 1526 6 -2962 1527 17 -2963 1527 5 -2964 1527 10 -2965 1529 4 -2966 1529 8 -2967 1530 19 -2968 1531 18 -2969 1531 2 -2970 1531 22 -2971 1531 26 -2972 1531 13 -2973 1531 5 -2974 1531 10 -2975 1532 19 -2976 1532 3 -2977 1533 20 -2978 1533 4 -2979 1533 16 -2980 1533 12 -2981 1534 17 -2982 1534 1 -2983 1534 30 -2984 1534 13 -2985 1534 5 -2986 1534 9 -2987 1535 18 -2988 1535 2 -2989 1535 30 -2990 1535 22 -2991 1535 26 -2992 1535 14 -2993 1535 6 -2994 1535 10 -2995 1536 30 -2996 1536 22 -2997 1536 26 -2998 1536 8 -2999 1536 12 -3000 1537 20 -3001 1537 4 -3002 1537 30 -3003 1537 21 -3004 1537 25 -3005 1537 12 -3006 1538 18 -3007 1538 2 -3008 1538 14 -3009 1538 6 -3010 1538 10 -3011 1539 20 -3012 1539 12 -3013 1540 4 -3014 1540 22 -3015 1540 16 -3016 1540 8 -3017 1540 12 -3018 1541 17 -3019 1541 1 -3020 1541 13 -3021 1541 5 -3022 1541 9 -3023 1542 20 -3024 1542 4 -3025 1542 30 -3026 1542 24 -3027 1542 28 -3028 1542 16 -3029 1542 8 -3030 1542 12 -3031 1543 18 -3032 1543 2 -3033 1543 24 -3034 1543 28 -3035 1543 14 -3036 1543 5 -3037 1543 9 -3038 1544 18 -3039 1545 18 -3040 1545 2 -3041 1545 30 -3042 1545 22 -3043 1545 14 -3044 1545 7 -3045 1545 10 -3046 1546 18 -3047 1546 2 -3048 1546 22 -3049 1546 26 -3050 1546 14 -3051 1546 6 -3052 1546 10 -3053 1547 20 -3054 1547 4 -3055 1547 22 -3056 1547 26 -3057 1547 16 -3058 1548 18 -3059 1548 2 -3060 1548 29 -3061 1548 22 -3062 1548 26 -3063 1548 14 -3064 1548 6 -3065 1548 10 -3066 1549 21 -3067 1549 25 -3068 1549 12 -3069 1550 18 -3070 1550 2 -3071 1550 29 -3072 1550 14 -3073 1550 6 -3074 1550 10 -3075 1551 2 -3076 1551 30 -3077 1551 13 -3078 1551 6 -3079 1551 9 -3080 1552 17 -3081 1552 1 -3082 1552 30 -3083 1552 13 -3084 1552 5 -3085 1552 9 -3086 1553 22 -3087 1553 26 -3088 1554 30 -3089 1554 22 -3090 1554 26 -3091 1555 18 -3092 1555 2 -3093 1555 22 -3094 1555 26 -3095 1555 14 -3096 1555 6 -3097 1555 10 -3098 1556 19 -3099 1556 3 -3100 1556 30 -3101 1556 15 -3102 1556 7 -3103 1556 11 -3104 1557 30 -3105 1558 30 -3106 1559 20 -3107 1559 21 -3108 1559 25 -3109 1560 20 -3110 1560 21 -3111 1561 1 -3112 1561 21 -3113 1561 25 -3114 1561 10 -3115 1562 19 -3116 1562 3 -3117 1562 21 -3118 1562 25 -3119 1562 15 -3120 1562 7 -3121 1562 11 -3122 1563 3 -3123 1563 7 -3124 1563 11 -3125 1564 17 -3126 1564 30 -3127 1564 16 -3128 1564 7 -3129 1564 11 -3130 1565 29 -3131 1565 22 -3132 1565 26 -3133 1566 19 -3134 1566 3 -3135 1566 23 -3136 1566 27 -3137 1566 11 -3138 1567 18 -3139 1567 2 -3140 1567 6 -3141 1567 10 -3142 1568 20 -3143 1568 21 -3144 1568 25 -3145 1569 17 -3146 1569 21 -3147 1569 25 -3148 1570 20 -3149 1570 4 -3150 1570 30 -3151 1570 8 -3152 1570 12 -3153 1571 18 -3154 1571 2 -3155 1571 22 -3156 1571 26 -3157 1571 14 -3158 1571 6 -3159 1571 10 -3160 1572 17 -3161 1572 1 -3162 1572 22 -3163 1572 26 -3164 1572 13 -3165 1572 5 -3166 1572 9 -3167 1573 18 -3168 1573 3 -3169 1573 24 -3170 1573 14 -3171 1573 6 -3172 1573 10 -3173 1574 2 -3174 1574 10 -3175 1575 29 -3176 1576 18 -3177 1576 21 -3178 1576 26 -3179 1576 14 -3180 1576 6 -3181 1577 29 -3182 1578 2 -3183 1578 14 -3184 1578 6 -3185 1578 10 -3186 1579 19 -3187 1579 3 -3188 1579 21 -3189 1579 15 -3190 1579 7 -3191 1579 11 -3192 1580 17 -3193 1580 4 -3194 1580 21 -3195 1580 25 -3196 1580 16 -3197 1580 8 -3198 1580 12 -3199 1581 30 -3200 1582 18 -3201 1582 30 -3202 1582 24 -3203 1583 18 -3204 1583 2 -3205 1583 14 -3206 1583 6 -3207 1583 10 -3208 1584 30 -3209 1585 30 -3210 1586 23 -3211 1586 27 -3212 1587 20 -3213 1587 4 -3214 1587 21 -3215 1587 25 -3216 1587 16 -3217 1587 8 -3218 1587 12 -3219 1588 30 -3220 1589 22 -3221 1589 26 -3222 1589 16 -3223 1589 8 -3224 1589 9 -3225 1590 18 -3226 1590 2 -3227 1590 29 -3228 1590 14 -3229 1590 6 -3230 1590 10 -3231 1591 17 -3232 1591 1 -3233 1591 13 -3234 1591 5 -3235 1591 9 -3236 1592 30 -3237 1592 21 -3238 1592 25 -3239 1593 17 -3240 1593 1 -3241 1593 9 -3242 1594 30 -3243 1594 22 -3244 1594 26 -3245 1595 30 -3246 1596 17 -3247 1596 4 -3248 1596 21 -3249 1596 25 -3250 1596 8 -3251 1599 17 -3252 1599 21 -3253 1599 25 -3254 1602 3 -3255 1602 4 -3256 1604 7 -3257 1604 11 -3258 1607 18 -3259 1607 19 -3260 1607 20 -3261 1607 22 -3262 1607 23 -3263 1607 24 -3273 1612 29 -3274 1613 18 -3275 1613 19 -3276 1613 20 -3277 1613 30 -3278 1614 18 -3279 1614 19 -3280 1614 20 -3281 1614 30 -3284 1616 29 -3285 1616 30 -3286 1617 2 -3287 1617 3 -3288 1617 4 -3289 1617 5 -3290 1617 9 -3291 1617 11 -3292 1617 12 -3293 1617 17 -3294 1617 18 -3295 1617 19 -3296 1617 20 -3297 1617 21 -3298 1617 22 -3299 1617 23 -3300 1617 24 -3301 1617 25 -3302 1617 26 -3303 1617 27 -3304 1617 28 -3305 1618 22 -3306 1618 23 -3307 1618 24 -3308 1618 26 -3309 1618 27 -3310 1618 28 -3311 1618 30 -3315 1620 5 -3316 1620 6 -3317 1620 13 -3318 1620 14 -3319 1620 17 -3320 1622 7 -3321 1622 29 -3322 1619 27 -3323 1619 28 -3324 1619 29 -3325 1608 7 -3326 1608 8 -3327 1608 13 -3328 1608 14 -3329 1608 15 -3330 1608 16 -3331 1608 21 -3332 1608 22 -3333 1608 23 -3334 1623 5 -3335 1623 13 -3336 1625 3 -3337 1625 4 -3338 1625 7 -3339 1625 8 -3340 1625 11 -3341 1625 12 -3342 1625 15 -3343 1625 16 -3344 1625 19 -3345 1625 20 -3348 1630 3 -3349 1630 4 -3350 1630 7 -3351 1630 8 -3352 1630 11 -3353 1630 12 -3354 1630 15 -3355 1630 16 -3356 1630 19 -3357 1630 20 -3358 1628 29 -3359 1628 30 -3360 1632 3 -3361 1632 4 -3362 1632 7 -3363 1632 8 -3364 1632 11 -3365 1632 12 -3366 1632 15 -3367 1632 16 -3368 1632 19 -3369 1632 20 -3370 1632 23 -3371 1632 24 -3372 1632 27 -3373 1632 28 -3374 1632 29 -3375 1632 30 -3376 1615 26 -3377 1634 7 -3378 1634 15 -3379 1635 30 -3380 1636 21 -3381 1636 22 -3382 1636 30 -\. - - --- --- Data for Name: timeline; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.timeline (id, source_entity_type, source_entity_id, target_entity_type, target_entity_id, content_entity_type, content_entity_id, content_type, "timestamp", content) FROM stdin; -\. - - --- --- Data for Name: timeslot; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.timeslot (id, info, rrule, start, "end", occasional) FROM stdin; -1 MO-morning FREQ=WEEKLY;BYDAY=MO; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N -2 MO-noon FREQ=WEEKLY;BYDAY=MO; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N -3 MO-afternoon FREQ=WEEKLY;BYDAY=MO; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N -4 MO-evening FREQ=WEEKLY;BYDAY=MO; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N -5 TU-morning FREQ=WEEKLY;BYDAY=TU; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N -6 TU-noon FREQ=WEEKLY;BYDAY=TU; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N -7 TU-afternoon FREQ=WEEKLY;BYDAY=TU; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N -8 TU-evening FREQ=WEEKLY;BYDAY=TU; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N -9 WE-morning FREQ=WEEKLY;BYDAY=WE; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N -10 WE-noon FREQ=WEEKLY;BYDAY=WE; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N -11 WE-afternoon FREQ=WEEKLY;BYDAY=WE; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N -12 WE-evening FREQ=WEEKLY;BYDAY=WE; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N -13 TH-morning FREQ=WEEKLY;BYDAY=TH; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N -14 TH-noon FREQ=WEEKLY;BYDAY=TH; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N -15 TH-afternoon FREQ=WEEKLY;BYDAY=TH; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N -16 TH-evening FREQ=WEEKLY;BYDAY=TH; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N -17 FR-morning FREQ=WEEKLY;BYDAY=FR; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N -18 FR-noon FREQ=WEEKLY;BYDAY=FR; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N -19 FR-afternoon FREQ=WEEKLY;BYDAY=FR; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N -20 FR-evening FREQ=WEEKLY;BYDAY=FR; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N -21 SA-morning FREQ=WEEKLY;BYDAY=SA; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N -22 SA-noon FREQ=WEEKLY;BYDAY=SA; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N -23 SA-afternoon FREQ=WEEKLY;BYDAY=SA; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N -24 SA-evening FREQ=WEEKLY;BYDAY=SA; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N -25 SU-morning FREQ=WEEKLY;BYDAY=SU; 2024-01-01 08:00:00 2024-01-01 11:00:00 \N -26 SU-noon FREQ=WEEKLY;BYDAY=SU; 2024-01-01 11:00:00 2024-01-01 14:00:00 \N -27 SU-afternoon FREQ=WEEKLY;BYDAY=SU; 2024-01-01 14:00:00 2024-01-01 17:00:00 \N -28 SU-evening FREQ=WEEKLY;BYDAY=SU; 2024-01-01 17:00:00 2024-01-01 20:00:00 \N -29 occasional \N \N \N weekdays -30 occasional \N \N \N weekends -31 one-timer \N 2024-12-17 10:20:00 \N \N -32 one-timer \N 2024-11-21 09:50:00 \N \N -33 one-timer \N 2024-11-26 12:00:00 \N \N -34 one-timer \N 2024-11-07 10:00:00 \N \N -35 one-timer \N 2024-11-05 10:00:00 \N \N -36 one-timer \N 2024-11-06 11:10:00 \N \N -37 one-timer \N 2024-11-19 07:45:00 \N \N -38 one-timer \N 2024-11-07 15:15:00 \N \N -39 one-timer \N 2024-11-19 13:20:00 \N \N -40 one-timer \N 2024-11-13 14:00:00 \N \N -41 one-timer \N 2024-11-08 12:50:00 \N \N -42 one-timer \N 2024-11-29 15:00:00 \N \N -43 one-timer \N 2024-11-06 07:00:00 \N \N -44 one-timer \N 2024-11-06 08:00:00 \N \N -45 one-timer \N 2024-11-26 13:30:00 \N \N -46 one-timer \N 2024-11-13 13:35:00 \N \N -47 one-timer \N 2024-11-07 08:00:00 \N \N -48 one-timer \N 2024-11-14 12:00:00 \N \N -49 one-timer \N 2024-11-25 12:15:00 \N \N -50 one-timer \N 2024-11-20 09:30:00 \N \N -51 one-timer \N 2024-11-14 11:30:00 \N \N -52 one-timer \N 2024-11-18 10:15:00 \N \N -53 one-timer \N 2024-12-16 08:30:00 \N \N -54 one-timer \N 2024-11-18 10:00:00 \N \N -55 one-timer \N 2024-12-06 09:30:00 \N \N -56 one-timer \N 2024-12-03 10:05:00 \N \N -57 one-timer \N 2024-12-11 09:00:00 \N \N -58 one-timer \N 2024-12-10 12:00:00 \N \N -59 one-timer \N 2024-12-12 12:20:00 \N \N -60 one-timer \N 2024-11-25 13:00:00 \N \N -61 one-timer \N 2024-12-05 13:00:00 \N \N -62 one-timer \N 2024-12-13 00:00:00 \N \N -63 one-timer \N 2024-12-20 12:00:00 \N \N -64 one-timer \N 2024-12-03 12:30:00 \N \N -65 one-timer \N 2024-12-02 08:00:00 \N \N -66 one-timer \N 2024-12-09 09:40:00 \N \N -67 one-timer \N 2024-12-12 15:00:00 \N \N -68 one-timer \N 2024-12-10 08:30:00 \N \N -69 one-timer \N 2024-12-17 08:00:00 \N \N -70 one-timer \N 2024-12-17 13:30:00 \N \N -71 one-timer \N 2024-12-18 12:00:00 \N \N -72 one-timer \N 2024-12-18 07:45:00 \N \N -73 one-timer \N 2025-01-15 09:00:00 \N \N -74 one-timer \N 2025-01-21 11:00:00 \N \N -75 one-timer \N 2025-01-06 09:00:00 \N \N -76 one-timer \N 2025-01-20 14:00:00 \N \N -77 one-timer \N 2025-01-21 14:00:00 \N \N -78 one-timer \N 2025-01-22 14:30:00 \N \N -79 one-timer \N 2025-01-30 08:20:00 \N \N -80 one-timer \N 2025-01-28 09:30:00 \N \N -81 one-timer \N 2025-01-22 10:00:00 \N \N -82 one-timer \N 2025-01-28 13:10:00 \N \N -83 one-timer \N 2025-02-24 09:00:00 \N \N -84 one-timer \N 2025-02-05 10:00:00 \N \N -85 one-timer \N 2025-02-20 08:00:00 \N \N -86 one-timer \N 2025-02-10 09:00:00 \N \N -87 one-timer \N 2025-02-27 16:55:00 \N \N -88 one-timer \N 2025-02-08 12:30:00 \N \N -89 one-timer \N 2025-02-15 12:30:00 \N \N -90 one-timer \N 2025-02-22 12:30:00 \N \N -91 one-timer \N 2025-02-05 10:40:00 \N \N -92 one-timer \N 2025-02-21 10:00:00 \N \N -93 one-timer \N 2025-02-19 12:00:00 \N \N -94 one-timer \N 2025-03-03 10:00:00 \N \N -95 one-timer \N 2025-03-03 13:30:00 \N \N -96 one-timer \N 2025-02-18 10:10:00 \N \N -97 one-timer \N 2025-03-11 14:00:00 \N \N -98 one-timer \N 2025-02-26 14:30:00 \N \N -99 one-timer \N 2025-03-04 09:00:00 \N \N -100 one-timer \N 2025-03-03 09:00:00 \N \N -101 one-timer \N 2025-03-26 08:45:00 \N \N -102 one-timer \N 2025-04-30 13:00:00 \N \N -103 one-timer \N 2025-03-05 08:00:00 \N \N -104 one-timer \N 2025-03-14 09:30:00 \N \N -105 one-timer \N 2025-06-03 14:30:00 \N \N -106 one-timer \N 2025-03-13 13:00:00 \N \N -107 one-timer \N 2025-03-13 08:00:00 \N \N -108 one-timer \N 2025-03-19 11:20:00 \N \N -109 one-timer \N 2025-03-19 00:00:00 \N \N -110 one-timer \N 2025-03-18 10:50:00 \N \N -111 one-timer \N 2025-03-18 08:30:00 \N \N -112 one-timer \N 2025-03-19 10:30:00 \N \N -113 one-timer \N 2025-03-19 14:00:00 \N \N -114 one-timer \N 2025-05-07 12:35:00 \N \N -115 one-timer \N 2025-03-24 12:00:00 \N \N -116 one-timer \N 2025-03-21 12:30:00 \N \N -117 one-timer \N 2025-03-24 09:00:00 \N \N -118 one-timer \N 2025-03-19 11:00:00 \N \N -119 one-timer \N 2025-03-07 11:00:00 \N \N -120 one-timer \N 2025-03-20 11:30:00 \N \N -121 one-timer \N 2025-03-19 11:00:00 \N \N -122 one-timer \N 2025-03-27 08:30:00 \N \N -123 one-timer \N 2025-03-27 11:30:00 \N \N -124 one-timer \N 2025-04-14 12:45:00 \N \N -125 one-timer \N 2025-04-03 08:00:00 \N \N -126 one-timer \N 2025-04-16 15:15:00 \N \N -127 one-timer \N 2025-04-28 10:15:00 \N \N -128 one-timer \N 2025-04-08 12:45:00 \N \N -129 one-timer \N 2025-04-11 10:00:00 \N \N -130 one-timer \N 2025-06-04 07:00:00 \N \N -131 one-timer \N 2025-04-07 12:45:00 \N \N -132 one-timer \N 2025-04-23 08:00:00 \N \N -133 one-timer \N 2025-04-14 13:00:00 \N \N -134 one-timer \N 2025-04-17 11:00:00 \N \N -135 one-timer \N 2025-04-17 08:00:00 \N \N -136 one-timer \N 2025-04-22 10:30:00 \N \N -137 one-timer \N 2025-05-02 11:30:00 \N \N -138 one-timer \N 2025-05-13 08:30:00 \N \N -139 one-timer \N 2025-04-22 11:00:00 \N \N -140 one-timer \N 2025-05-02 16:16:00 \N \N -141 one-timer \N 2025-05-28 07:00:00 \N \N -142 one-timer \N 2025-05-05 08:00:00 \N \N -143 one-timer \N 2025-07-21 07:00:00 \N \N -144 one-timer \N 2025-05-19 11:00:00 \N \N -145 one-timer \N 2025-05-28 11:45:00 \N \N -146 one-timer \N 2025-05-19 08:30:00 \N \N -147 one-timer \N 2025-05-15 09:15:00 \N \N -148 one-timer \N 2025-05-21 08:30:00 \N \N -149 one-timer \N 2025-06-11 11:00:00 \N \N -150 one-timer \N 2025-06-02 08:00:00 \N \N -151 one-timer \N 2025-05-21 13:00:00 \N \N -152 one-timer \N 2025-05-27 10:30:00 \N \N -153 one-timer \N 2025-05-26 10:30:00 \N \N -154 one-timer \N 2025-05-28 12:30:00 \N \N -155 one-timer \N 2025-06-20 11:00:00 \N \N -156 one-timer \N 2025-06-05 09:00:00 \N \N -157 one-timer \N 2025-06-03 10:30:00 \N \N -158 one-timer \N 2025-06-11 15:00:00 \N \N -159 one-timer \N 2025-07-31 12:00:00 \N \N -160 one-timer \N 2025-06-16 10:00:00 \N \N -161 one-timer \N 2025-06-21 10:30:00 \N \N -162 one-timer \N 2025-07-04 14:00:00 \N \N -163 one-timer \N 2025-06-23 10:50:00 \N \N -164 one-timer \N 2025-07-15 11:30:00 \N \N -165 one-timer \N 2025-06-27 16:00:00 \N \N -166 one-timer \N 2025-07-22 13:00:00 \N \N -167 one-timer \N 2025-06-30 11:00:00 \N \N -168 one-timer \N 2025-07-11 12:00:00 \N \N -169 one-timer \N 2025-07-11 18:00:00 \N \N -170 one-timer \N 2025-07-08 10:00:00 \N \N -171 one-timer \N 2025-07-08 11:20:00 \N \N -172 one-timer \N 2025-07-31 07:00:00 \N \N -173 one-timer \N 2025-07-15 15:00:00 \N \N -174 one-timer \N 2025-07-11 09:00:00 \N \N -175 one-timer \N 2025-07-29 10:00:00 \N \N -176 one-timer \N 2025-08-04 14:20:00 \N \N -177 one-timer \N 2025-07-21 14:30:00 \N \N -178 one-timer \N 2025-07-17 11:00:00 \N \N -179 one-timer \N 2025-07-22 11:15:00 \N \N -180 one-timer \N 2025-07-21 14:00:00 \N \N -181 one-timer \N 2025-07-23 08:45:00 \N \N -182 one-timer \N 2025-07-31 08:00:00 \N \N -183 one-timer \N 2025-08-29 10:00:00 \N \N -184 one-timer \N 2025-07-29 08:40:00 \N \N -185 one-timer \N 2025-07-24 14:00:00 \N \N -186 one-timer \N 2025-07-24 16:00:00 \N \N -187 one-timer \N 2025-07-24 09:00:00 \N \N -188 one-timer \N 2025-07-25 14:00:00 \N \N -189 one-timer \N 2025-08-12 17:10:00 \N \N -190 one-timer \N 2025-08-14 13:45:00 \N \N -191 one-timer \N 2025-08-05 11:00:00 \N \N -192 one-timer \N 2025-07-30 15:00:00 \N \N -193 one-timer \N 2025-08-22 14:30:00 \N \N -194 one-timer \N 2025-09-05 09:50:00 \N \N -195 one-timer \N 2025-07-31 14:00:00 \N \N -196 one-timer \N 2025-08-22 15:00:00 \N \N -197 one-timer \N 2025-08-08 12:30:00 \N \N -198 one-timer \N 2025-08-11 09:30:00 \N \N -199 one-timer \N 2025-08-14 11:00:00 \N \N -200 one-timer \N 2025-09-12 15:00:00 \N \N -201 one-timer \N 2025-08-13 10:30:00 \N \N -202 one-timer \N 2025-08-12 15:00:00 \N \N -203 one-timer \N 2025-08-26 16:00:00 \N \N -204 one-timer \N 2025-08-21 09:40:00 \N \N -205 one-timer \N 2025-08-18 10:00:00 \N \N -206 one-timer \N 2025-08-29 14:00:00 \N \N -207 one-timer \N 2025-09-03 12:15:00 \N \N -208 one-timer \N 2025-09-09 14:15:00 \N \N -209 one-timer \N 2025-09-05 12:00:00 \N \N -210 one-timer \N 2025-09-01 15:00:00 \N \N -211 one-timer \N 2025-08-19 12:50:00 \N \N -212 one-timer \N 2025-08-29 10:40:00 \N \N -213 one-timer \N 2025-09-02 15:00:00 \N \N -214 one-timer \N 2025-09-09 11:30:00 \N \N -215 one-timer \N 2025-08-28 09:45:00 \N \N -216 one-timer \N 2025-08-27 18:20:00 \N \N -217 one-timer \N 2025-08-28 14:30:00 \N \N -218 one-timer \N 2025-09-08 15:10:00 \N \N -219 one-timer \N 2025-09-01 12:15:00 \N \N -220 one-timer \N 2025-09-17 13:00:00 \N \N -221 one-timer \N 2025-08-27 17:40:00 \N \N -222 one-timer \N 2025-09-05 08:00:00 \N \N -223 one-timer \N 2025-09-17 16:00:00 \N \N -224 one-timer \N 2025-09-01 14:00:00 \N \N -225 one-timer \N 2025-09-03 11:30:00 \N \N -226 one-timer \N 2025-09-04 13:20:00 \N \N -227 one-timer \N 2025-09-16 14:50:00 \N \N -228 one-timer \N 2025-09-12 10:00:00 \N \N -229 one-timer \N 2025-09-08 15:45:00 \N \N -230 one-timer \N 2025-09-11 12:30:00 \N \N -231 one-timer \N 2025-09-19 14:00:00 \N \N -232 one-timer \N 2025-09-11 18:00:00 \N \N -233 one-timer \N 2025-09-18 18:00:00 \N \N -234 one-timer \N 2025-09-30 09:00:00 \N \N -235 one-timer \N 2025-09-17 12:00:00 \N \N -236 one-timer \N 2025-09-15 08:00:00 \N \N -237 one-timer \N 2025-09-17 08:00:00 \N \N -238 one-timer \N 2025-10-14 11:10:00 \N \N -239 one-timer \N 2025-09-23 09:00:00 \N \N -240 one-timer \N 2025-09-30 17:00:00 \N \N -241 one-timer \N 2025-09-25 17:00:00 \N \N -242 one-timer \N 2025-09-26 09:50:00 \N \N -243 one-timer \N 2025-09-29 10:20:00 \N \N -244 one-timer \N 2025-10-24 12:30:00 \N \N -245 one-timer \N 2025-10-10 10:30:00 \N \N -246 one-timer \N 2025-12-11 14:00:00 \N \N -247 one-timer \N 2025-10-06 13:00:00 \N \N -248 one-timer \N 2025-10-08 12:30:00 \N \N -249 one-timer \N 2025-10-15 10:30:00 \N \N -250 one-timer \N 2025-10-17 12:00:00 \N \N -251 one-timer \N 2025-10-18 11:00:00 \N \N -252 one-timer \N 2025-10-23 10:00:00 \N \N -253 one-timer \N 2025-11-04 10:45:00 \N \N -254 one-timer \N 2025-10-28 09:30:00 \N \N -255 one-timer \N 2025-10-27 10:30:00 \N \N -256 one-timer \N 2025-10-31 11:30:00 \N \N -257 one-timer \N 2025-11-03 10:00:00 \N \N -258 one-timer \N 2025-11-12 09:30:00 \N \N -259 one-timer \N 2025-11-04 13:00:00 \N \N -260 one-timer \N 2025-11-20 10:00:00 \N \N -261 one-timer \N 2025-11-17 17:00:00 \N \N -262 one-timer \N 2025-11-03 10:10:00 \N \N -263 one-timer \N 2025-11-20 13:50:00 \N \N -264 one-timer \N 2025-12-22 10:30:00 \N \N -265 one-timer \N 2025-11-13 15:00:00 \N \N -266 one-timer \N 2025-11-11 10:00:00 \N \N -267 one-timer \N 2025-11-18 09:40:00 \N \N -268 one-timer \N 2025-11-20 11:00:00 \N \N -269 one-timer \N 2025-11-10 14:30:00 \N \N -270 one-timer \N 2025-11-20 13:45:00 \N \N -271 one-timer \N 2025-11-24 14:15:00 \N \N -272 one-timer \N 2025-11-27 14:40:00 \N \N -273 one-timer \N 2025-12-11 13:43:00 \N \N -274 one-timer \N 2025-11-21 09:45:00 \N \N -275 one-timer \N 2025-11-19 13:45:00 \N \N -276 one-timer \N 2025-11-17 09:15:00 \N \N -277 one-timer \N 2025-11-20 11:15:00 \N \N -278 one-timer \N 2025-12-03 10:15:00 \N \N -279 one-timer \N 2025-11-24 09:15:00 \N \N -280 one-timer \N 2025-11-25 08:10:00 \N \N -281 one-timer \N 2025-11-26 10:45:00 \N \N -282 one-timer \N 2030-01-01 01:01:00 \N \N -283 one-timer \N 2025-11-20 09:45:00 \N \N -284 one-timer \N 2025-11-27 15:40:00 \N \N -285 one-timer \N 2025-12-01 10:40:00 \N \N -286 one-timer \N 2025-12-03 11:10:00 \N \N -287 one-timer \N 2026-01-21 09:10:00 \N \N -288 one-timer \N 2025-12-17 12:00:00 \N \N -289 one-timer \N 2025-12-03 12:00:00 \N \N -290 one-timer \N 2025-12-12 07:30:00 \N \N -291 one-timer \N 2025-12-01 09:15:00 \N \N -292 one-timer \N 2025-12-09 15:00:00 \N \N -293 one-timer \N 2025-12-05 11:00:00 \N \N -294 one-timer \N 2025-12-29 12:30:00 \N \N -295 one-timer \N 2025-12-09 10:50:00 \N \N -296 one-timer \N 2025-12-16 11:00:00 \N \N -297 one-timer \N 2025-12-15 14:30:00 \N \N -298 one-timer \N 2025-12-22 10:00:00 \N \N -299 one-timer \N 2025-12-15 08:00:00 \N \N -300 one-timer \N 2025-12-29 12:30:00 \N \N -301 one-timer \N 2025-12-23 08:10:00 \N \N -302 one-timer \N 2026-01-13 09:00:00 \N \N -303 one-timer \N 2026-01-06 09:00:00 \N \N -304 one-timer \N 2026-01-29 07:30:00 \N \N -305 one-timer \N 2026-01-05 13:00:00 \N \N -306 one-timer \N 2026-01-08 08:15:00 \N \N -307 one-timer \N 2025-12-29 13:00:00 \N \N -308 one-timer \N 2026-01-09 13:00:00 \N \N -309 one-timer \N 2026-01-08 14:00:00 \N \N -310 one-timer \N 2026-01-20 08:30:00 \N \N -311 one-timer \N 2026-01-16 10:00:00 \N \N -312 one-timer \N 2026-02-13 10:20:00 \N \N -313 one-timer \N 2026-01-19 11:20:00 \N \N -314 one-timer \N 2026-02-19 13:00:00 \N \N -315 one-timer \N 2026-01-14 13:00:00 \N \N -316 one-timer \N 2026-01-06 13:30:00 \N \N -317 one-timer \N 2026-01-12 13:30:00 \N \N -318 one-timer \N 2026-01-15 15:00:00 \N \N -319 one-timer \N 2026-01-23 13:00:00 \N \N -320 one-timer \N 2026-01-15 16:00:00 \N \N -321 one-timer \N 2026-02-19 11:30:00 \N \N -322 one-timer \N 2026-01-26 12:00:00 \N \N -323 one-timer \N 2026-01-19 07:45:00 \N \N -324 one-timer \N 2026-01-26 13:45:00 \N \N -325 one-timer \N 2026-02-02 13:00:00 \N \N -326 one-timer \N 2026-01-21 10:30:00 \N \N -327 one-timer \N 2026-01-29 14:30:00 \N \N -328 one-timer \N 2026-02-10 14:00:00 \N \N -329 one-timer \N 2026-02-05 13:00:00 \N \N -330 one-timer \N 2026-02-05 10:00:00 \N \N -331 one-timer \N 2026-01-23 16:00:00 \N \N -332 one-timer \N 2026-02-03 10:30:00 \N \N -333 one-timer \N 2026-02-03 09:45:00 \N \N -334 one-timer \N 2026-02-17 08:30:00 \N \N -335 one-timer \N 2026-02-02 16:00:00 \N \N -336 one-timer \N 2026-02-09 09:40:00 \N \N -337 one-timer \N 2026-02-02 10:00:00 \N \N -338 one-timer \N 2026-02-16 12:30:00 \N \N -339 one-timer \N 2026-02-04 09:30:00 \N \N -340 one-timer \N 2026-03-17 09:40:00 \N \N -341 one-timer \N 2026-02-10 16:20:00 \N \N -342 one-timer \N 2026-02-26 12:45:00 \N \N -343 one-timer \N 2026-02-27 08:00:00 \N \N -344 one-timer \N 2026-02-10 08:45:00 \N \N -345 one-timer \N 2026-02-12 10:00:00 \N \N -346 one-timer \N 2026-02-16 09:15:00 \N \N -347 one-timer \N 2026-02-13 09:50:00 \N \N -348 one-timer \N 2026-02-12 16:00:00 \N \N -349 one-timer \N 2026-02-23 15:45:00 \N \N -350 one-timer \N 2026-02-13 12:00:00 \N \N -351 one-timer \N 2026-02-17 08:30:00 \N \N -352 one-timer \N 2026-05-18 10:45:00 \N \N -353 one-timer \N 2026-05-18 10:30:00 \N \N -354 one-timer \N 2026-02-13 10:00:00 \N \N -355 one-timer \N 2026-02-23 07:45:00 \N \N -356 one-timer \N 2026-03-05 09:00:00 \N \N -357 one-timer \N 2026-02-18 17:50:00 \N \N -358 one-timer \N 2026-02-24 12:00:00 \N \N -359 one-timer \N 2026-02-27 11:00:00 \N \N -360 one-timer \N 2026-03-12 16:00:00 \N \N -361 one-timer \N 2026-02-25 14:00:00 \N \N -362 one-timer \N 2026-02-25 12:30:00 \N \N -363 one-timer \N 2026-03-02 12:30:00 \N \N -364 one-timer \N 2026-02-25 09:00:00 \N \N -365 one-timer \N 2026-02-26 15:00:00 \N \N -366 one-timer \N 2026-03-03 12:00:00 \N \N -367 one-timer \N 2026-03-06 12:20:00 \N \N -368 one-timer \N 2026-03-03 11:15:00 \N \N -369 one-timer \N 2026-03-02 10:00:00 \N \N -370 one-timer \N 2026-03-03 16:00:00 \N \N -371 one-timer \N 2026-03-30 16:00:00 \N \N -372 one-timer \N 2026-03-03 15:00:00 \N \N -373 one-timer \N 2026-03-12 10:00:00 \N \N -374 one-timer \N 2026-03-10 16:00:00 \N \N -375 one-timer \N 2026-05-22 11:00:00 \N \N -376 one-timer \N 2026-03-06 09:00:00 \N \N -377 one-timer \N 2026-03-19 10:00:00 \N \N -378 one-timer \N 2026-03-04 08:00:00 \N \N -379 one-timer \N 2026-03-19 12:30:00 \N \N -380 one-timer \N 2026-03-14 09:00:00 \N \N -381 one-timer \N 2026-04-15 11:05:00 \N \N -382 one-timer \N 2026-04-22 11:05:00 \N \N -383 one-timer \N 2026-03-11 09:45:00 \N \N -384 one-timer \N 2026-03-11 09:00:00 \N \N -385 one-timer \N 2026-03-25 10:30:00 \N \N -386 one-timer \N 2026-03-12 15:00:00 \N \N -387 one-timer \N 2026-03-16 11:00:00 \N \N -388 one-timer \N 2026-03-17 14:30:00 \N \N -389 one-timer \N 2026-04-07 10:30:00 \N \N -390 one-timer \N 2026-05-18 13:30:00 \N \N -391 one-timer \N 2026-03-13 11:00:00 \N \N -392 one-timer \N 2026-03-17 10:00:00 \N \N -393 one-timer \N 2026-03-17 14:30:00 \N \N -394 one-timer \N 2026-04-07 10:30:00 \N \N -395 one-timer \N 2026-03-16 11:30:00 \N \N -396 one-timer \N 2026-07-02 10:00:00 \N \N -397 one-timer \N 2026-06-05 14:30:00 \N \N -398 one-timer \N 2026-03-23 09:00:00 \N \N -399 one-timer \N 2026-03-17 10:30:00 \N \N -400 one-timer \N 2026-03-16 11:00:00 \N \N -401 one-timer \N 2026-03-26 08:15:00 \N \N -402 one-timer \N 2026-03-18 12:00:00 \N \N -403 one-timer \N 2026-03-23 10:45:00 \N \N -404 one-timer \N 2026-03-24 11:00:00 \N \N -405 one-timer \N 2026-03-23 12:30:00 \N \N -406 one-timer \N 2026-03-23 09:15:00 \N \N -407 one-timer \N 2026-03-23 15:00:00 \N \N -408 one-timer \N 2026-04-09 14:00:00 \N \N -409 one-timer \N 2026-04-07 10:00:00 \N \N -410 one-timer \N 2026-03-26 08:00:00 \N \N -411 one-timer \N 2026-04-01 11:40:00 \N \N -412 one-timer \N 2026-03-30 11:00:00 \N \N -413 one-timer \N 2026-04-16 11:45:00 \N \N -414 one-timer \N 2026-04-16 11:45:00 \N \N -415 one-timer \N 2026-04-09 17:10:00 \N \N -416 one-timer \N 2026-04-15 13:20:00 \N \N -417 one-timer \N 2026-04-15 13:40:00 \N \N -418 one-timer \N 2026-04-10 09:50:00 \N \N -419 one-timer \N 2026-04-13 08:15:00 \N \N -420 one-timer \N 2026-04-21 09:30:00 \N \N -421 one-timer \N 2026-04-13 09:00:00 \N \N -422 one-timer \N 2026-04-07 18:00:00 \N \N -423 one-timer \N 2026-04-13 14:00:00 \N \N -424 one-timer \N 2026-04-09 10:00:00 \N \N -425 one-timer \N 2026-04-21 09:30:00 \N \N -426 one-timer \N 2026-04-21 10:00:00 \N \N -427 one-timer \N 2026-04-20 15:10:00 \N \N -428 one-timer \N 2026-04-10 07:30:00 \N \N -429 one-timer \N 2026-04-13 08:20:00 \N \N -430 one-timer \N 2026-04-23 12:00:00 \N \N -431 one-timer \N 2026-04-15 11:00:00 \N \N -432 one-timer \N 2026-05-05 14:00:00 \N \N -433 one-timer \N 2026-04-22 09:15:00 \N \N -434 one-timer \N 2026-04-17 11:00:00 \N \N -435 one-timer \N 2026-04-21 10:00:00 \N \N -436 one-timer \N 2026-04-23 09:45:00 \N \N -437 one-timer \N 2026-04-27 14:30:00 \N \N -438 one-timer \N 2026-05-13 12:00:00 \N \N -439 one-timer \N 2026-04-22 08:15:00 \N \N -440 one-timer \N 2026-04-23 12:00:00 \N \N -\. - - --- --- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public."user" (id, email, password, is_active, role, language, timezone, person_id, created_at, updated_at) FROM stdin; -1 dev@need4deed.org $2b$10$OCwKUlhc6yFMMKJCiUk/IuQ6tvORDc50qnwS4LdKIEY/NU94N//mi t admin en CET 1358 2026-04-21 17:17:23.83557 2026-04-21 17:17:23.83557 -7 contact@need4deed.org $2b$10$PauyPELbxjlQlcYJJW5oouc.UWneAHOukPE8Quhgp2xGhXudJtP5O t coordinator en CET 1361 2026-04-20 13:52:50.312741 2026-04-20 13:52:50.312741 -5 volunteer@need4deed.org $2b$10$I36WRFrCIJgygZqrHtzYhOzdl6Wyjib2Dlz9PZYgLoJFWG8YON/HC t coordinator en CET 1362 2026-04-20 13:51:46.335674 2026-04-20 13:51:46.335674 -4 info@need4deed.org $2b$10$iw8UyUQ14nvgFRdG5LxjwexLZTuRjWUqTFcGco/jUQ70DbkhCFyQ2 t admin en CET 1363 2026-04-20 13:44:53.208722 2026-04-20 13:44:53.208722 -8 accompanying@need4deed.org $2b$10$1oSojbM.y6eJ9IL/2FMoaOI7tT7kbhac9L8D/utWG8S1Y6T3Bx24G t coordinator en CET 1364 2026-04-20 13:53:39.797795 2026-04-20 13:53:39.797795 -9 community@need4deed.org $2b$10$ngB2.j1eiuLcvR8.bEkruulKIN3dG9Hq6ucQv97f3kPVm8mHCKzKq t coordinator en CET 1365 2026-04-20 13:54:15.918467 2026-04-20 13:54:15.918467 -\. - - --- --- Data for Name: volunteer; Type: TABLE DATA; Schema: public; Owner: n4d --- - -COPY public.volunteer (id, info_about, info_experience, status_engagement, status_communication, status_appreciation, status_type, status_match, status_cgc_process, status_vaccination, status_cgc, created_at, updated_at, deal_id, person_id, preferred_communication_type, date_return) FROM stdin; -1 Egfzqeztr ygk hglz-dqzei ygssgvxh - Liqvan 50.58.3532: Ofztktlztr of Hsqnkggd of Wkozm \f- Liqvan 71.59.3532: Lit eqf zkqflsqzt ykgd Kxlloqf zg Tfusoli gfsn, fgz zg Utkdqf\f- Ltfnq 79.75.3539: Lit’l gxz gy zgvf zoss Fgctdwtk.\f- Ltfnq 76.73.3539: Lit ol hktufqfz qfr vgxsr hktytk fgz zg zkqflsqzt ygk rgezgk’l qhhgofzdtfzl ygk fgv. vol-temp-unavailable \N \N accompanying vol-no-matches \N no no 2024-02-19 17:49:00 2024-02-19 17:49:00 797 554 {mobilePhone} \N -2 Oei wof ltoz yqlz toftd Pqik of rtk Xfztkaxfyz Egsxdwoqrqdd 42 tfuquotkz, rotl vxkrt cgf Wtcgl ctkdozztsz, qwtk rqff lofr qsst Agfzqazt mx Wtcgl tofutleisqytf, vtos rot t-Dqos-Qrktlltf foeiz dtik yxfazogfotkztf tze. Rql iqz doei rgei ltik tfzzäxleiz xfr oei vqk qxy dtoft toutft Ofozoqzoct qfutvotltf. Oei wof pvtoztk qf toftd Qxlzqxlei doz qfrtktktf Lhkqeiitsytkf ofztktllotkz vol-available \N \N regular vol-no-matches \N yes yes 2023-08-10 20:25:00 2023-08-10 20:25:00 798 555 {mobilePhone} \N -3 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-02-20 13:27:00 2024-02-20 13:27:00 799 556 {mobilePhone} \N -4 - Liqvan 73.58.3532: Of Hqaolzoqf zoss Qhkos 3532, ltfz qf tdqos vozi zit TYM hkgetll.\f78.58.3532: Lit rorf'z ytts egdygkzqwst ltfrofu itk htklgfqs ofygkdqzogf wn tdqos vol-inactive \N \N regular vol-no-matches \N no no 2024-02-20 13:51:00 2024-02-20 13:51:00 800 557 {mobilePhone} \N -5 - Liqvan 77.58.3532: Eiteaofu vozi Ztuts KQE oy lit egxsr rg rqneqkt lzqkzofu 71.55\f- Ltfnq 51.77.32: Lit ol lzoss qezoct of Eiqxlltlzk. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-02-20 14:20:00 2024-02-20 14:20:00 801 558 {mobilePhone} \N -6 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-02-20 15:07:00 2024-02-20 15:07:00 802 559 {mobilePhone} \N -7 Egfzqeztr ygk hglz-dqzei ygssgvxh - Liqvan 31.58.3532: Vt hxz itk of egfzqez vozi Egsxdwoqrqdd ygk nguq esqlltl, zitf lit ltfz zitd qf tdqos lqnofu lit iql qf tdtkutfen vol-inactive \N \N regular vol-no-matches \N yes no 2024-02-20 15:25:00 2024-02-20 15:25:00 803 560 {mobilePhone} \N -8 Egfzqeztr ygk hglz-dqzei ygssgvxh vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-02-20 19:30:00 2024-02-20 19:30:00 804 561 {mobilePhone} \N -9 Dgfrqn - Zixklrqn douiz wt iqkr ygk dt ql O fttr zg vgka qz 6 qd vol-available \N \N regular vol-no-matches \N yes no 2024-02-20 19:31:00 2024-02-20 19:31:00 805 562 {mobilePhone} \N -10 vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-02-20 23:31:00 2024-02-20 23:31:00 806 563 {mobilePhone} \N -11 vol-inactive \N \N regular vol-no-matches \N yes yes 2024-02-21 09:53:00 2024-02-21 09:53:00 807 564 {mobilePhone} \N -12 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-02-23 09:45:00 2024-02-23 09:45:00 808 565 {mobilePhone} \N -13 Egfzqeztr ygk hglz-dqzei ygssgvxh - Liqvan 77.58.3532: Ofztktlztr of zit Soeiztfwtku Lhkqeieqyt vol-available \N \N accompanying vol-no-matches \N no yes 2024-02-26 13:52:00 2024-02-26 13:52:00 809 566 {mobilePhone} \N -14 - Liqvan 85.59.3532: Zit cgsxfzttk eggkrofqzgk qz zit Iqfuqkl vkgzt zg Ltfnq ziqz Lqkq eqf gfsn itsh of zit tctfoful. / Igvtctk, o rgfz ziofa o eqf egddoz vttasn wxz kqzitk wovttasn. vgxsr lozss vgka ygk ngx? Vtrftlrqn qz 1 qd vgxsr wt htkytez. -Cglzts vol-available \N \N regular vol-no-matches \N no no 2024-02-26 14:02:00 2024-02-26 14:02:00 810 567 {mobilePhone} \N -15 vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-02-26 14:06:00 2024-02-26 14:06:00 811 568 {mobilePhone} \N -16 O voss hkgwqwsn lzqkz vgkaofu ql q ykttsqfetk / yxss zodt qfr/gk Utkdqf esqlltl of ftqk yxzxkt lg o rgf'z afgv qwgxz dn qcqosqwst zodtl ntz vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-02-26 14:12:00 2024-02-26 14:12:00 812 569 {mobilePhone} \N -17 vol-inactive \N \N regular vol-no-matches \N no no 2024-02-26 14:14:00 2024-02-26 14:14:00 813 570 {mobilePhone} \N -18 vol-inactive \N \N regular vol-no-matches \N no no 2024-02-26 14:44:00 2024-02-26 14:44:00 814 571 {mobilePhone} \N -19 vol-inactive \N \N regular vol-no-matches \N no no 2024-02-26 16:10:00 2024-02-26 16:10:00 815 572 {mobilePhone} \N -20 O vgka yxss vttarqnl wxz eqf rg d vol-new \N \N regular vol-no-matches \N yes no 2024-02-26 16:55:00 2024-02-26 16:55:00 816 573 {mobilePhone} \N -21 yxfrq: ltfz q ktjxtlz rr. 34.9 vol-available \N \N regular vol-no-matches \N yes yes 2024-02-26 17:04:00 2024-02-26 17:04:00 817 574 {mobilePhone} \N -22 - Pqdot / Fqrqc: fgz ktlhgfr fg viqzlqhh fg ztstukqd \fAtfmq 74.53.31: socofu of wtksof ygk 8 ntqkl, cgsxfzttktr wtygkt of qdlztkrqd igdtstll litsztkl, yggr wqfal. vqfztr zg uoct wqea zg egddxfozn, tlhteoqssn vozi ktyxutt ekolol. It iql q yxss zodt pgw, 6 zg 1, qcqosqwst gf vttarqnl of tctfofu qfr vttatfrl. Soctl of Aktxmwtku wtkudqffaotm qfr eqf egddxzt. Eqf egddoz gfet q vttar. Lhtqal ysxtfz rxzei, tfusoli qfr utkdqfw7 w3 stcts. Eqf vgka vozi wgzi qrxszl qfr aorl.   vol-available \N \N regular vol-no-matches \N yes no 2024-02-26 17:58:00 2024-02-26 17:58:00 818 575 {mobilePhone} \N -23 O qd q vgkaofu lzxrtfz qfr dn leitrxst eiqfutl tctkn ltdtlztk lg O vgxsr iqct zg dgroyn oz qeegkrofu zg ziqz. vol-temp-unavailable \N \N regular vol-no-matches \N yes no 2024-02-26 18:00:00 2024-02-26 18:00:00 819 576 {mobilePhone} \N -24 Egfzqeztr ygk hglz-dqzei ygssgvxh - Yxfrq 30.59.3532: Egfzqeztr ygk zkqflsqzogf, lit eqf zkqflsqzt zg Tfusoli, lqnl itk Utkdqf ol fgz uggr tfgxui vol-available \N \N accompanying vol-no-matches \N no yes 2024-02-26 22:37:00 2024-02-26 22:37:00 820 577 {mobilePhone} \N -25 eqf wt ystbowst vol-inactive \N \N regular vol-no-matches \N yes no 2024-02-26 23:02:00 2024-02-26 23:02:00 821 578 {mobilePhone} \N -26 Pxsn 7lz 3532: “O qd exkktfzsn qezoctsn sggaofu ygk q pgw ql dn xftdhsgndtfz ol egdofu zg qf tfr, vioei dtqfl O qslg lqrsn vgf'z wt qwst zg cgsxfzttk qfndgkt.” vol-active \N \N accompanying vol-no-matches \N yes no 2024-02-27 00:41:00 2024-02-27 00:41:00 822 579 {mobilePhone} \N -27 vol-available \N \N regular vol-no-matches \N yes no 2024-02-27 10:17:00 2024-02-27 10:17:00 823 580 {mobilePhone} \N -28 vol-temp-unavailable \N \N regular vol-no-matches \N yes yes 2024-02-28 10:51:00 2024-02-28 10:51:00 824 581 {mobilePhone} \N -29 O voss iqct volrgd zttzi lxkutkn gf 59.58 lg O tbhtez zg wt qwst zg lzqkz cgsxfzttkofu of dor-dqkei. qfr zg yoz dn leitrxst O vgxsr soat zg cgsxfzttk 7-8 rqnl q vtta O ight ziol dtllqut yofrl ngx vtss. O pxlz eqdt qekgll zit cgsxfzttkofu ghhgkzxfozn zg qllolz vozi zkqflsqzogf qz liqktr qeegddgrqzogf etfztkl ygk ktyxuttl, qfr O qd ktqssn ofztktlztr of egfzkowxzofu.O qd ysxtfz of wgzi Qkqwoe qfr Tfusoli, qfr O soct of Hqfagv (lxhtk esglt zg hktfmsqxtk wtku zgg). O pxlz ktetfzsn yofolitr dn lzxrotl qfr exkktfzsn iqct hstfzn gy zodt rxkofu zit rqn qfr vgxsr sgct zg qllolz ktyxutt -Cglzts vol-new \N \N accompanying vol-no-matches \N no no 2024-02-28 14:11:00 2024-02-28 14:11:00 825 582 {mobilePhone} \N -30 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-02-29 08:50:00 2024-02-29 08:50:00 826 583 {mobilePhone} \N -31 Zit leitrxst eqf eiqfut rthtfrofu gf zit vtta wxz ziol ol utftkqssn, vozi qrcqfet fgzoet, eqf dqat oz. Ofztktlztr ofrgofu qezocozotl vozi eiosrktf of Dqkmqif, vgkaofu gf Dtqlstl cqeeofqzogf vol-inactive \N \N regular vol-no-matches \N no yes 2024-02-29 12:02:00 2024-02-29 12:02:00 827 584 {mobilePhone} \N -32 yxfrq: “O iqct wttf qzztfrofu dn Rtxzlei W3 esqll Dgfrqn zikgxui Ykorqn wtzvttf 73:55 HD qfr 58:79 HD.Zit esqll voss qhhkgbodqztsn sqlz xfzos dor Dqkei ftbz ntqk qfr xfygkzxfqztsn O voss fgz wt qwst zg cgsxfzttk rxkofu zit dtfzogftr zodtykqdt.” vol-available \N \N accompanying vol-no-matches \N yes yes 2024-02-29 14:32:00 2024-02-29 14:32:00 828 585 {mobilePhone} \N -114 vol-available \N \N accompanying vol-no-matches \N yes no 2024-05-16 12:50:00 2024-05-16 12:50:00 910 667 {mobilePhone} \N -33 Qezxqssn od fgz ofzg ktuxsqk cgsxfzttkofu ql od vgkaofu vitftctk od yktt o rg cgsxfzttkofu Soctl of Lzxzzuqkz, vqfztr zg egdt zg zit Lhkofu Ytlzocqs of Hqfagv,\fwxz eqfetsstr q vtta wtygkt vol-inactive \N \N regular vol-no-matches \N yes no 2024-02-29 19:59:00 2024-02-29 19:59:00 829 586 {mobilePhone} \N -34 Ql O qd q lzxrtfz qfr iqct q dofo pgw ql vtss, dn qcqosqwosozn douiz eiqfut zikgxuigxz zit ftbz dgfzil wteqxlt gy hgllowst esqlltl gk wt lxwptez zg dttzoful leitrxstr ygk dn pgw. O ziofa O lzoss iqct zg youxkt gxz igv zg wtlz ofztukqzt cgsxfzttk vgka ofzg dn xlxqs leitrxst. / Egfzqeztr ygk hglz-dqzei ygssgvxh.\f Liqvan 87.50.39: Lit zqsatr zg zit eggkrofqzgk qz Zkqeitfwtkukofu (izzhl://vvv.fgzogf.lg/Zkqeitfwtkukofu-92258t807yer220ew6682r991230e958?hcl=37) qwgxz zit hkgwstd ziqz zit eiosrktf qkt fgz qzztfrofu itk ioh igh, qfr zitf qukttr ziqz lit vgxsr pgof gzitk hkgptezl zitn qkt rgofu pxlz zg utz zg afgv zit aorl lg ziqz zitn utz zg afgv itk. Lit yttsl ziqz htghst qz zit qeegddgrqzogf etfztk zitkt qkt fgz eggkrofqztr. Lit ol fgv cgsxfzttkofu qz qfgzitk qeegddgrqzogf etfztk Ktyxuoxd Iqxlcqztkvtu (izzhl://vvv.fgzogf.lg/Ktyxuoxd-Iqxlcqztkvtu-41e8587w01tt208w4559327q5r43wqt2?hcl=37) : Lit utzl q ztbz ykgd zitd vitf zitn fttr lgdtziofu, dglzsn itshofu vozi eiosrktf, qeegdhqfnofu zitd zg zit eoftdq, zit mgg, tze..), O gyytktr itk q Z-liokz qfr ltfz tctfz ofcozqzogf ygk 4. Qxuxlz vol-active \N \N regular vol-no-matches \N no yes 2024-03-01 18:00:00 2024-03-01 18:00:00 830 587 {mobilePhone} \N -35 Egfzqeztr ygk hglz-dqzei ygssgvxh vol-available \N \N regular vol-no-matches \N yes no 2024-03-04 15:36:00 2024-03-04 15:36:00 831 588 {mobilePhone} \N -36 Egfzqeztr ygk hglz-dqzei ygssgvxh - Liqvan (57.58.3532): Ugz of zgxei vozi iod ygk hsqnofu lhgkzl vozi eiosrktf of Soeiztfwtku gk Dqkmqif, it ol zkqctsofu qfr voss wt wqea of Dqn\fAtfmq 31.53.31: vgkal yxss zodt, eqf rg vttatfrl qfr tctfoful qyztk 1. sgctl rgofu qezocozotl vozi eiosrktf, hsqnofu, egsgxkofu, souiz lhgkzl (qslg vozi qrxszl) soat hofu hgfu. Utkdqf ol W7, soctl of Dozzt ftqk zg Qstbqfrtkhsqzm. TYM ol gsr. Iol voyt vgxsr qslg wt ofztktlztr qfr zitn vgxsr soat zg rg oz zgutzitk. vol-available \N \N regular vol-no-matches \N yes no 2024-03-06 11:26:00 2024-03-06 11:26:00 832 589 {mobilePhone} \N -37 yxfrq: cgsxfzttktr gf Dqn 87lz, q ktjxtlz ltfz gf Pxft 2zi vol-available \N \N accompanying vol-no-matches \N no yes 2024-03-06 15:50:00 2024-03-06 15:50:00 833 590 {mobilePhone} \N -38 Itssg,\fDn fqdt ol Qrqd. O iqct ktqr ziol hglozogf vozi ofztktlz. \fO qd xftdhsgntr qz zit dgdtfz vozi sgqrl gy yktt zodt.\fO xltr zg wqwnloz qfr vgxsr soat zg wtegdt qf Tkmotitk. / Egfzqeztr ygk hglz-dqzei ygssgvxh. vol-available \N \N regular vol-no-matches \N yes no 2024-03-07 15:44:00 2024-03-07 15:44:00 834 591 {mobilePhone} \N -39 Fght / Egfzqeztr ygk hglz-dqzei ygssgvxh O qd q dqlztk lzxrtfz lzxrnofu zgxkold qfr iglhozqsozn dqfqutdtfz. O vqfz zg zit eozn qfr ozl hkgwstdl qfr O vqfz zg uoct dn zodt zg lgdtziofu cqsxqwst. -Cglzts\f\fLtfnq 32.73.3539: It cgsxfzttktr gfet qz zit Yküisofulytlz of Hqfagv of 3532. vol-unresponsive \N \N regular vol-no-matches \N no no 2024-03-11 12:03:00 2024-03-11 12:03:00 835 592 {mobilePhone} \N -40 vol-new \N \N regular vol-no-matches \N yes no 2024-03-11 12:04:00 2024-03-11 12:04:00 836 593 {mobilePhone} \N -41 Egfzqeztr ygk hglz-dqzei ygssgvxh vol-inactive \N \N regular vol-no-matches \N no yes 2024-03-12 12:16:00 2024-03-12 12:16:00 837 594 {mobilePhone} \N -42 vol-new \N \N accompanying vol-no-matches \N no yes 2024-03-12 16:39:00 2024-03-12 16:39:00 838 595 {mobilePhone} \N -43 vol-inactive \N \N regular vol-no-matches \N no yes 2024-03-12 20:09:00 2024-03-12 20:09:00 839 596 {mobilePhone} \N -44 vol-inactive \N \N regular vol-no-matches \N no no 2024-03-12 23:08:00 2024-03-12 23:08:00 840 597 {mobilePhone} \N -45 Dn leitrxst eiqfutl tctkn vtta/dgfzi wteqxlt gy dn vgka. / Egfzqeztr ygk hglz-dqzei ygssgvxh - Dtllqut gf Qxuxlz 9zi: Itssg Qsoqfq, O vtfz zg zit ktyxutt litsztk gf 78zi Pxsn of Hqfagv. O dtz vozi Ltrgfq ykgd zit gkuqfolqzogf zg hsqn vozi aorl zitkt qfr O ziofa oz vtfz jxozt vtss! O egxsr dqat oz pxlz gfet wteqxlt O vgka gf Lqzxkrqnl zgg (gk O vql zqaofu cqeqzogf ygk lxddtk). Ziqfa ngx ygk ktqeiofu gxz. Aofr ktuqkrl Ltsof Wqs  vol-active \N \N regular vol-no-matches \N no yes 2024-03-13 09:43:00 2024-03-13 09:43:00 841 598 {mobilePhone} \N -46 vol-inactive \N \N regular vol-no-matches \N yes no 2024-03-13 13:47:00 2024-03-13 13:47:00 842 599 {mobilePhone} \N -47 O douiz fttr zg qrpxlz dn leitrxst oy O utz ioktr wn qf tdhsgntk. vol-new \N \N regular vol-no-matches \N no yes 2024-03-14 12:25:00 2024-03-14 12:25:00 843 600 {mobilePhone} \N -48 Egfzqeztr ygk hglz-dqzei ygssgvxh exkktfzsn O’d hxklxofu dqlztk gy hxwsoe itqszi of Qkrtf Xfoctklozn qfr O rgft dn dwwl ykgd Xakqoft lg vitf O vql lzxrnofu O ror vgka ygk FUG of kxkqs qktq ygk itshofu htghst ygk dqat oz qvqktftll qwgxz ofytezogxl roltqlt hktctfzogf -Fqfr vol-available \N \N accompanying vol-no-matches \N no no 2024-03-14 15:33:00 2024-03-14 15:33:00 844 601 {mobilePhone} \N -49 - Liqvan 36.59.3532: Ltfz ygssgv xh tdqos zg wgzi itk qfr Qswq. Zitn qkt qezoct qfr iqhhn 🙂 / O'd Qfrktq, q 39 ntqk gsr Lhqfoli uoks vig pxlz sqfrtr of Wtksof. O'ct lzxrotr Ofztkfqzogfqs Egghtkqzogf qfr lhteoqsomtr of vgka vozi doukqfzl qfr/gk ktyxuttl. -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-03-15 16:19:00 2024-03-15 16:19:00 845 602 {mobilePhone} \N -50 O vgka of zit tctfoful rxkofu zit vttarqn. Exkktfzsn fttr zg wt igdt wn 2hd. vol-active \N \N accompanying vol-no-matches \N no yes 2024-03-15 20:54:00 2024-03-15 20:54:00 846 603 {mobilePhone} \N -51 O qd Lgyot, 36 ntqkl gsr, ykgd Rtfdqka qfr O qd sggaofu zg lxhhgkz ngxk gkuqfomqzogf. O iqct hstfzn gy tbhtkotfet zqaofu eqkt gy eiosrktf qfr O lodhsn tfpgn ofztkqezofu, ztqeiofu qfr solztfofu zg zitd.  -Cglzts vol-inactive \N \N regular vol-no-matches \N yes yes 2024-03-18 14:54:00 2024-03-18 14:54:00 847 604 {mobilePhone} \N -52 Ygk fgv O'd qcqosqwst 0 rqnl q vtta wxz of 2 vttal zodt O'ss wt lzqkzofu Utkdqf sqfuxqut esqlltl, ykgd zitf O'ss gfsn wt qcqosqwst tctfoful qfr vttatfrl lzxrotr eiosreqkt ygk 8 ntqkl wqea of zit XA qfr iqct gctk 4 ntqkl gy tbhtkotfet vgkaofu vozi eiosrktf ykgd zit qut gy 1 dgfzil zg 75 ntqkl gsr ql q fqffn, ygk fxkltkotl & leiggsl. O sgct wtofu ofcgsctr vozi eiosrktf, hsqnofu uqdtl of zit hqka, rqfeofu zg dxloe, wqaofu, hqofzofu, ktqrofu lzgkotl, gk ektqzofu gxk gvf lzgkotl. O iqct lgdt LTF tbhtkotfet sggaofu qyztk eiosrktf vozi itqkofu odhqokdtfz, QRIR, qfr qxzold. \f\fO exkktfzsn lhtqa wqloe Utkdqf wxz voss wt lzxrnofu Utkdqf yxss zodt ykgd Qhkos, O'r soat zg cgsxfzttk vtss O lzxrn. vol-available \N \N regular vol-no-matches \N yes no 2024-03-18 19:16:00 2024-03-18 19:16:00 848 605 {mobilePhone} \N -53 Iqsy gy zit dgfzi O'd qcqosqwst gf Dgfrqn ykgd 2hd, zit gzitk iqsy O'd qcqosqwst 1hd. O'd Zqdolq, 34 ntqkl gsr qfr Wkqmosoqf. Zvg qfr q iqsy ntqkl qug O dgctr zg Utkdqfn zg rg dn rgezgkqzt. Lofet zitf O ror fgz rtroeqzt dnltsy zg cgsxfzttkofu, rxt zg dn Utkdqf stcts, ql O ziol ghhgkzxfozn rgtl fgz ktjxokt ioui egdqfr gy Utkdqf -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-03-19 16:58:00 2024-03-19 16:58:00 849 606 {mobilePhone} \N -54 Atfnqf dqst qfr qutr 82 ntqkl gsr. O qd ofztktlztr of zqaofu hqkz of ngxk tctfz. O qd qf qlnsxd lttatk of Utkdqfn qfr O soct of Vüflrgy Vqsrlzqrz.  -Cglzts vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-03-21 08:04:00 2024-03-21 08:04:00 850 607 {mobilePhone} \N -55 Dn utkdqf ol gfsn Q7 stcts. -Cglzts vol-inactive \N \N regular vol-no-matches \N no yes 2024-03-26 14:51:00 2024-03-26 14:51:00 851 608 {mobilePhone} \N -116 vol-temp-unavailable \N \N accompanying vol-no-matches \N no no 1970-01-01 00:00:00 1970-01-01 00:00:00 912 669 {mobilePhone} \N -56 O qd q 39 ntqkl gsr Dqlztkl lzxrtfz of Wtksof, qfr O qd eqhqwst gy itshofu. O lhtqa Qkqwoe, Tfusoli qfr dn Rtxzlei ol qhhkgbodqztsn W7. -Cglzts vol-new \N \N regular vol-no-matches \N no no 2024-03-28 12:24:00 2024-03-28 12:24:00 852 609 {mobilePhone} \N -57 o qd vol-inactive \N \N regular vol-no-matches \N no no 2024-03-29 12:52:00 2024-03-29 12:52:00 853 610 {mobilePhone} \N -58 vol-new \N \N regular vol-no-matches \N yes no 2024-04-02 12:21:00 2024-04-02 12:21:00 854 611 {mobilePhone} \N -59 vol-inactive \N \N regular vol-no-matches \N no yes 2024-04-02 17:20:00 2024-04-02 17:20:00 855 612 {mobilePhone} \N -60 O qd qssgvtr zg zqat 7 rqn ygk cgsxfzttkofu tqei dgfzi. Ykorqnl vgxsr vgka wtlz vozi dn vgka leitrxst. Oy hgllowst. Itshofu aorl iqct yxf qfr stqkf zikgxui qkz qfr hsqn lgxfrl soat qf qdqmofu vqn zg xlt dn cgsxfzttkofu zodt. O iqct wqloe Utkdqf sqfuxqut laossl (Q3.7) qfr iqct vgkatr vozi eiosrktf wtygkt, ztqeiofu Tfusoli of Cotzfqd.  -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-02 21:06:00 2024-04-02 21:06:00 856 613 {mobilePhone} \N -61 f/q vol-new \N \N regular vol-no-matches \N yes yes 2024-04-04 12:46:00 2024-04-04 12:46:00 857 614 {mobilePhone} \N -62 o qd q lgeoqs vgkatk vgkaofu vozi ngxfu gytfrtk vol-inactive \N \N accompanying vol-no-matches \N no no 2024-04-08 11:30:00 2024-04-08 11:30:00 858 615 {mobilePhone} \N -63 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-04-08 13:23:00 2024-04-08 13:23:00 859 616 {mobilePhone} \N -64 O iqct q yxss zodt pgw rxkofu zit vttarqn (4 zg 1hd) lg O eqf gfsn vgka gxzlort gy zitlt igxkl O rgf'z iqct dxei tbhtkotfet vozi uqkrtfofu, wxz O'd ktqssn tqutk zg stqkf. O'd q yqlz stqkftk qfr lxhtk dgzocqztr zg pxdh of qfr itsh gxz. -Qszqo vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-11 19:54:00 2024-04-11 19:54:00 860 617 {mobilePhone} \N -65 yxfrq- iqr q cortg eiqz gf Dqn 30zi. Lit iql cgsxfzttktr ygk zkqflsqzogf gf Dqn 36zi vol-available \N \N accompanying vol-no-matches \N yes no 2024-04-12 13:10:00 2024-04-12 13:10:00 861 618 {mobilePhone} \N -66 vol-available \N \N accompanying vol-no-matches \N yes no 2024-04-13 13:58:00 2024-04-13 13:58:00 862 619 {mobilePhone} \N -67 vol-available \N \N accompanying vol-no-matches \N no no 2024-04-14 14:57:00 2024-04-14 14:57:00 863 620 {mobilePhone} \N -68 vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-04-15 09:47:00 2024-04-15 09:47:00 864 621 {mobilePhone} \N -69 yxfrq-egfzqeztr ygk 7lz vtta gy Pxft vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-04-15 16:20:00 2024-04-15 16:20:00 865 622 {mobilePhone} \N -70 vol-available \N \N regular vol-no-matches \N yes yes 2024-04-15 23:48:00 2024-04-15 23:48:00 866 623 {mobilePhone} \N -71 Dn htklgfqs leitrxst egxsr eiqfut, ql O qd q lzxrtfz qfr O rgf’z qsvqnl iqct yobtr leitrxst. Ql gy fgv O’d ktsqzoctsn yktt, igvtctk ziqz dqn eiqfut, gy vioei O vgxsr stz ngx afgv of qrcqfet. O q ldqss tbhtkotfet of uqkrtfofu wqea ykgd zit zodt gy dn eiosriggr…Dn fqdt ol Ustw, dn sqfuxqut laossl qkt Tfusoli E3, Utkdqf wtuofftk qfr dn fqzoct sqfuxqut ql vtss. O qd 31 ntqkl gsr qfr sgct iqfrl-gf qezocozotl.  -Cglzts vol-available \N \N accompanying vol-no-matches \N no no 2024-04-16 18:33:00 2024-04-16 18:33:00 867 624 {mobilePhone} \N -72 vol-inactive \N \N regular vol-no-matches \N no no 2024-04-16 23:33:00 2024-04-16 23:33:00 868 625 {mobilePhone} \N -73 yxfrq iql ltfz q ktjxtlz gf Pxft 2zi kt zkqflsqzogf ktjxtlz vol-available \N \N accompanying vol-no-matches \N no no 2024-04-17 00:11:00 2024-04-17 00:11:00 869 626 {mobilePhone} \N -74 O qd ofztktlztr of itshofu ygk zit uqkrtf vgka, O sgct fqzxkt, O lhtqa ofztkdtroqzt Utkdqf, O stqkf yqlz qfr O eqf egddoz 3 igxkl htk vtta. -Cglzts vol-available \N \N accompanying vol-no-matches \N no no 2024-04-18 11:26:00 2024-04-18 11:26:00 870 627 {mobilePhone} \N -75 O voss zkn zg wt egflolzqfz igvtctk zit leitrxst voss rthtfr gf dn pgw ofztkcotv leitrxst. O qd Rdozkoo ykgd Kxlloq. Dn Utkdqf ol fgz lg uggr, igvtctk, O iqct htkytez Kxlloqf qfr uggr Tfusoli. O qd qf DWQ ukqrxqztr Hkgrxez Dqfqutk vozi tbhtkotfet of Igfu Agfu qfr Zxkatn lg O qd uggr qz dxszofqzogfqs tfcokgfdtfzl. -Cglzts vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-04-18 17:47:00 2024-04-18 17:47:00 871 628 {mobilePhone} \N -76 - Liqvan 85.59.3532: It soctl of Rktlrtf! / O eqf ysxtfzsn lhtqa Tfusoli qfr qkqwoe Eqf zkqflsqzt wgzi vqnl Oy o eqf wt qfn xlt zg ngx  -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no no 2024-04-18 21:40:00 2024-04-18 21:40:00 872 629 {mobilePhone} \N -77 O qd Lqfrkq ykgd Lko Sqfaq. O qd 76 qfr O egdhstztr zit Qrcqfetr Stcts ktetfzsn. Fgv O qd lttaofu ygk pgwl. Qslg ight zg hxklxt dn iouitk lzxrotl… O sgct aorl qfr tfpgn vgkaofu vozi zitd. O rg iqct tbhtkotfet of eiosreqkt. O qd egfyortfz ziqz dn egddxfoeqzogf qfr ofztkhtklgfqs laossl vgxsr qssgv dt zg dqat dtqfofuyxs egfzkowxzogfl zg ngxk ztqd. -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-19 21:18:00 2024-04-19 21:18:00 873 630 {mobilePhone} \N -78 vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-22 12:24:00 2024-04-22 12:24:00 874 631 {mobilePhone} \N -79 yxfrq: ltfz q cgsxfzttkofu ktjxtlz rr. 34.59 / O'd hsqffofu zg gkuqfomt q ztqd tctfz ygk gxk egdhqfn gf Pxft. O yofr ziol qezocozn ofztktlzofu qfr vql vgfrtkofu vitkt zit tctfz vgxsr zqat hsqet. -Cglzts vol-new \N \N regular vol-no-matches \N no no 2024-04-22 13:33:00 2024-04-22 13:33:00 875 632 {mobilePhone} \N -80 O lhtqa ysxtfz Utkdqf qfr Tfusoli qfr qszigxui O iqct ftctk iqr q hkgytllogfqs pgw of eiosreqkt gk htrqugun, O iqct dxei tbhtkotfet vozi eiosrktf qfr iqct wttf wqwnlozzofu ygk royytktfz yqdosotl lofet O vql q zttfqutk. -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no no 2024-04-22 19:05:00 2024-04-22 19:05:00 876 633 {mobilePhone} \N -81 Fg - Liqvan 36.59.3532: Ltfz ygssgv xh tdqos zg wgzi itk qfr Qfrktq. Zitn qkt qezoct qfr iqhhn 🙂 vol-inactive \N \N regular vol-no-matches \N yes yes 2024-04-23 14:21:00 2024-04-23 14:21:00 877 634 {mobilePhone} \N -82 o'd dglzsn ctkn ystbowst rxt zg vgka, lgdtzodtl o iqct zg vgka gf vttatfrl wxz zitf o'd yktt rxkofu zit vtta, ziol eqf cqkn ykgd vtta zg vtta vol-inactive \N \N regular vol-no-matches \N yes applied_self 2024-04-23 22:48:00 2024-04-23 22:48:00 878 635 {mobilePhone} \N -83 - yxfrq: eqf cgsxfzttk ygk Pxsn 7lz\f- Liqvan 38.57.39: Vt lhgat quqof qwgxz itk cgsxfzttkofu ofztktlzl. Lit ol vgkaofu dgkt ziol ntqk, lg ol qcqosqwst geeqlogfqssn, ortqssn ygk gft-rqn tctfzl gk lg. @Ltfnq egffteztr itk vozi Ktyxuoxd Soeiztfwtku ygk zit Astortkaqddtk. vol-available \N \N accompanying vol-no-matches \N no yes 2024-04-24 01:08:00 2024-04-24 01:08:00 879 636 {mobilePhone} \N -84 O'd q hqkz-zodt ossxlzkqzgk qfr vtw rtlouftk vozi sgzl gy yktt zodt gf dn iqfrl. -Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-04-25 13:58:00 2024-04-25 13:58:00 880 637 {mobilePhone} \N -85 Qcqosqwst zodt ql oz ol ygk fgv, wxz O vgxsr iqct zg dqat eiqfutl zg oz of zit yxzxkt rxt zg royytktfz ktqlgfl O soct of Wtksof (Dgqwoz) qfr vgxsr soat zg lxhhgkz vozi zkqflsqzogf ygk ktyxuttl. O qd ysxtfz of Tfusoli qfr qd fqzoct of Kxlloqf qfr Xakqofoqf. -Cglzts\fLtfnq 30.75.3539 - O xhrqztr itk qcqosqwosozn qfr rolzkoezl qeegkrofu zg zit ofyg of itk sqztlz tdqos. vol-available \N \N accompanying vol-no-matches \N no yes 2024-04-25 14:41:00 2024-04-25 14:41:00 881 638 {mobilePhone} \N -86 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-04-25 19:21:00 2024-04-25 19:21:00 882 639 {mobilePhone} \N -115 - Liqvan 32.59.3532: Lit ror q Dtqlstl cqeeofqzogf qz zit XL, wxz iql fg hkggy gy oz vol-inactive \N \N regular vol-no-matches \N no no 2024-05-18 18:52:00 2024-05-18 18:52:00 911 668 {mobilePhone} \N -87 Rtqk Fttr2Rttr ztqd,Dt qfr 3 gy dn esglt ykotfrl qkt egdofu ykgd Ztfftlltt zg Wtksof ykgd Dqn 31-Pxft 3 of ltqkei gy hgztfzoqs cgsxfzttkofu ghhgkzxfozotl. Vt qkt lhteoyoeqssn ltqkeiofu ygk gftl qllolzofu Xakqofoqf ktyxuttl of Wtksof wteqxlt gft gy dn ykotfrl ol Xakqofoqf qfr iql dxei yqdosn lzoss of Xakqoft. It ol ysxtfz of Xakqofoqf qfr O qd ysxtfz of Utkdqf. Hstqlt stz dt afgv oy zitkt qkt qfn ghhgkzxfozotl, lhteoyoeqssn gftl itshofu Xakqofoqfl.Ziqfa ngx, Dqkcof vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-04-27 06:01:00 2024-04-27 06:01:00 883 640 {mobilePhone} \N -88 7. Ykotrkoeiliqof3. Qzd fg ql O stqkf Utkdqf of zit tctfofu qfr qd lxhtk wxln. Gzitkvolt O egxsr hkgwqwsn yofr 3 igxkl rxkofu q vtta rqn qfr vgka of zit tctfoful zg dqat xh ygk oz.8. O lhtqa Tfusoli, Ekgqzoqf (Ltkwoqf, tze), qfr q woz gy Utkdqf. -Cglzts vol-inactive \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 884 641 {mobilePhone} \N -89 vol-temp-unavailable \N \N accompanying vol-no-matches \N undefined undefined 2024-04-01 00:00:00 2024-04-01 00:00:00 885 642 {mobilePhone} \N -90 vol-inactive \N \N regular vol-no-matches \N yes no 2024-02-26 14:48:00 2024-02-26 14:48:00 886 643 {mobilePhone} \N -91 vol-available \N \N regular vol-no-matches \N yes no 2024-03-08 20:00:00 2024-03-08 20:00:00 887 644 {mobilePhone} \N -92 Oei aqff wto Wtrqky qxei qf qfrtktf Zqutf toflhkofutf qwtk rtf Dozzvgei Fqeidozzqu iqwt oei oddtk ykto xfr aqff rtdtfzlhkteitfr mx rotltk Mtoz ktutsdäßou. -Yxfrq -iqr q cortg eqss gf Pxft2zi, lit eqf cgsxfzttk qslg ygk yktfei, ktdofrtr itk Etkzoyoeqzt gy Uggr Egfrxez / oei iqwt Ofztktllt dtik üwtk rql Tfuqutdtfz of rtk Zqutlwtzktxxfu mx tkyqiktf. Tof hqqk Ofygkdqzogftf mx dok:Oei qkwtozt of Ztosmtoz of toftd Lzqkz-xh xfr dqeit dtof Dqlztk Lzxroxd of Ofztkfqzogfqs Ktsqzogfl. Oei wof 39 Pqikt qsz xfr iqwt tof vtfou Tkyqikxfu of rtk Aofrtkwtzktxxfu, rxkei püfutkt Utleivolztk xfr Wqwnlozzofu xfr Fqeiiosyt ctkleiotrtftk Qsztklukxhhtf  väiktfr rtd Wqeitsgklzxroxd. Oei vükrt doei zgzqs yktxtf ktutsdäßou tofdqs rot Vgeit qf toftd Dozzqu/Fqeidozzqu wto rtk Zqutlwtzktxxfu xfztklzüzmtf mx aöfftf.  -Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-03-11 08:49:00 2024-03-11 08:49:00 888 645 {mobilePhone} \N -93 vol-inactive \N \N regular vol-no-matches \N yes no 2024-03-11 12:45:00 2024-03-11 12:45:00 889 646 {mobilePhone} \N -94 vol-inactive \N \N regular vol-no-matches \N no no 2024-03-21 12:52:00 2024-03-21 12:52:00 890 647 {mobilePhone} \N -95 vol-inactive \N \N regular vol-no-matches \N yes no 2024-04-04 13:03:00 2024-04-04 13:03:00 891 648 {mobilePhone} \N -96 Dtoft Fqdt olz Qfpq xfr oei vgift of Qsz-Zkthzgv. - Cglzts\fLiqvan 75.52.3539:Rgofu dgcot fouizl qz zit Iqfuqkl \fLiqvan 36.56.39: Qfpq eqdt zg zit gyyoet sqlz vtta zg hoea xh itk Z-liokz qfr lqor lit ol lzkxuusofu q woz vozi zit egddxfoeqzogf vozi zit Iqfuqk egfzqez htklgf, lg vt kt-dqzeitr itk zg qfgzitk ghhgkzxfozn of zit lqdt UX: Xfktutsdäßout Wtustozxfu cgf Aofrtkukxhht (izzhl://vvv.fgzogf.lg/Xfktutsd-out-Wtustozxfu-cgf-Aofrtkukxhht-3054r445y20247wyww42t712e09w8w31?hcl=37) \f\fLtfnq 76.73.3539: Yttrwqea ykgd zit Iqfuqkl “Qfpq xfr Lgyoq lztitf twtfyqssl wtort of xfltktk Solzt yük tofdqsout Tktoufollt, vtos oikt Ctkyüuwqkatoztf wolitk foeiz mx xfltktf Qfutwgzlmtoztf uthqllz iqwtf. Vok lofr qwtk of Agfzqaz.” vol-available \N \N regular vol-no-matches \N yes no 2024-04-05 21:11:00 2024-04-05 21:11:00 892 649 {mobilePhone} \N -97 Atfmq 30.57.31: lit vgkal gf wxloftll rtctsghdtfz qz Qbts Lhkofutk. Lhtqal Tfusoli qfr Itwktv, q woz gy Utkdqf (Q3/W7) qfr Lhqfoli. Lit vgkal yxss zodt, igdt gyyoet wxz eqf wt ystbowst. vol-available \N \N regular vol-no-matches \N no applied_self 2024-04-29 16:08:00 2024-04-29 16:08:00 893 650 {mobilePhone} \N -98 Fg vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-04-29 17:51:00 2024-04-29 17:51:00 894 651 {mobilePhone} \N -99 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-04-30 01:34:00 2024-04-30 01:34:00 895 652 {mobilePhone} \N -100 O'r soat zg lzqkz itshofu gxz gfet gk zvoet q dgfzi? O vgka qyztkfggf - fouiz lg O iqct ystbowosozn of dgkfoful. -Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-05-02 18:04:00 2024-05-02 18:04:00 896 653 {mobilePhone} \N -101 Wof däffsoei, 85 Pqikt iotk of Wtksof utwgktf xfr itsyt utkft qxl vtff oei aqff. Oei iqw dqs tof Öagsguoleitl Yktovossoutl Pqik utdqeiz qslg doz Xfakqxz atff oei doei qxl. -Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-05-03 21:10:00 2024-05-03 21:10:00 897 654 {mobilePhone} \N -102 - Liqvan 85.50.39: T-Dqos “O’d lzoss ctkn ofztktlztr of cgsxfzttkofu. O’ss wt dgkt ystbowst qfr qcqosqwst qyztk zit 75zi gy Lthztdwtk.\fKtuqkrofu zit tctfz — O’ss wt qzztfrofu qfr qd rtyofoztsn sggaofu ygkvqkr zg dttzofu ngx of htklgf, tlhteoqssn lofet vt rorf’z utz zit eiqfet zg dttz qz sqlz lxddtk’l tctfz.” Hnzigf qdr rouozqs dqkatzofu , lit cgsxfzttk of xwtk rtf ztsstkqfr. vol-available \N \N accompanying vol-no-matches \N yes applied_self 2024-05-06 12:10:00 2024-05-06 12:10:00 898 655 {mobilePhone} \N -103 Eqfetstr cgsxfzttkofu Hkqazoaxd wteqxlt dqkmqif vql zit gfsn ghzogf qfr oz vql zgg yqk ygk itk vol-new \N \N regular vol-no-matches \N yes yes 2024-05-06 19:46:00 2024-05-06 19:46:00 899 656 {mobilePhone} \N -104 zitn vqfz zg iqct q egdhqfn rqn gf 32.1 zitn qkt eq. 6 htghst. Ofcqsortflzk 87-88 itkg vol-available \N \N regular vol-no-matches \N no no 2024-06-03 19:46:00 2024-06-03 19:46:00 900 657 {mobilePhone} \N -105 vol-new \N \N regular vol-no-matches \N undefined no 2024-05-06 19:46:00 2024-05-06 19:46:00 901 658 {mobilePhone} \N -106 Ftof vol-available \N \N regular vol-no-matches \N yes yes 2024-05-07 18:25:00 2024-05-07 18:25:00 902 659 {mobilePhone} \N -107 O qd ysxtfz of Tfusoli, Yktfei, qfr Dgkgeeqf Qkqwoe qfr iqct q ctkn qrqhzqwst leitrxst. O ktlort of Leiöftwtku, wxz O qd dgkt ziqf vossofu zg egddxzt qfnvitkt voziof Wtksof. -Cglzts vol-available \N \N regular vol-no-matches \N no applied_n4d 2024-05-08 13:00:00 2024-05-08 13:00:00 903 660 {mobilePhone} \N -108 O qd qhhsnofu ygk hqntr pgwl qz zit dgdtfz vioei ol vin dn leitrxst egxsr eiqfut wn q woz of zit ftbz dgfzi gk lg. Wxz zitf O ligxsr lzoss wt qcqosqwst ygk qz stqlz 75 igxkl q vtta ygk zit ftbz dgfzil. vol-inactive \N \N regular vol-no-matches \N yes applied_n4d 2024-05-10 03:36:00 2024-05-10 03:36:00 904 661 {mobilePhone} \N -109 - 34.59.3532: Rtqk Dgiqddqr Iqllqf, O rgf'z Yüikxfulmtxufol wxz O iqct Qfdtsrxfu of Wtksof, O'd qslg socofu of q oddoukqfzl Itod qfr O rgf'z iqct htkdoz, tctf O rgf'z iqct ktyxutt htkdoz wxz dn htkdoz ol of hkgetll,  oz voss zqat dgfzil, O'd vqozofu ygk qhhgofzdtfz lg O rgf'z afgv oz'l hgllowst ygk dt zg zqat Yüikxfulmtxufol vitf O rgf'z iqct htkdoz?Wtlz ktuqkrl Od Todqs Rqjoj ykgd Qyuiqfolzqf qfr Od qslg ktyxutt wxz O vgxsr soat zg pgof ngxk ztqd. -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no no 2024-05-10 17:53:00 2024-05-10 17:53:00 905 662 {mobilePhone} \N -110 fg vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-05-10 19:06:00 2024-05-10 19:06:00 906 663 {mobilePhone} \N -111 lit soctl of Iqdwxku, lit eqf cgsxfzttk ygk higft egfctklqzogfl vol-inactive \N \N regular vol-no-matches \N no no 2024-05-10 19:13:00 2024-05-10 19:13:00 907 664 {mobilePhone} \N -112 Yxfrq- iqr q cortg eiqz gf Pxft 1zi vol-temp-unavailable \N \N accompanying vol-no-matches \N no yes 2024-05-13 13:29:00 2024-05-13 13:29:00 908 665 {mobilePhone} \N -113 Yxfrq iqr q cortg eiqz gf Pxft 9zi /  O vql qf Tfusoli ztqeitk ygk aorl of Okqf ygk 9 ntqkl qfr q cgsxfzttk qz q ktyxutt etfztk of Kgdqfoq. O lhtqa Hqlizg, Htkloqf Tfusoli, qfr stqkfofu Utkdqf. O ziofa O eqf wt q xltyxs htklgf qz ziol hsqet, O sgct aorl qfr zqaofu eqkt gy zitd.  -Cglzts vol-available \N \N accompanying vol-no-matches \N no no 2024-05-14 11:59:00 2024-05-14 11:59:00 909 666 {mobilePhone} \N -117 Vtkazqul atoft ctkwofrs. Ytlzstuxfutf od Cgkioftof vu. Qkwtoz. Ptrgei ktsqzoc uxzt Leiqfetf wto lhgfzqftf Qfykqutf yük Zkthzgv wmv. Kxrgv cgkdozzqul. yxfrq- xfygkzxfqztsn fgz qcqosqwst of zit vtta rqnl vol-available \N \N regular vol-no-matches \N yes yes 2024-05-21 12:21:00 2024-05-21 12:21:00 913 670 {mobilePhone} \N -118 lgdtzodtl O iqct vgka gf Ykorqnl ykgd 78.85 yxfrq: ltfz q cgsxfzttkofu ktjxtlz rr. 34.9 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-05-22 00:18:00 2024-05-22 00:18:00 914 671 {mobilePhone} \N -119 - Liqvan 38.59.32: Qlatr itk qwgxz zit rqneqkt ghhgkzxfozn of Eiqxlttlzk. / O'd q Zxkaoli vgdqf qfr O'ct wttf socofu of Wtksof ygk 75 dgfzil. Dn fqzoct sqfuxqut ol Zxkaoli qfr O lhtqa Tfusoli ysxtfzsn. O iqct q wqloe stcts gy hkgyoeotfen of Utkdqf qfr O'd zknofu zg odhkgct oz. O egdhstztr dn wqeitsgk of Lgeogsgun of Zxkatn qfr O'd exkktfzsn hxklxofu q dqlztk'l rtuktt of xkwqf lzxrotl. O'ct wttf vgkaofu vozi eiosrktf ygk q viost fgv, hkgcorofu eqkt ltkcoetl zg eiosrktf ykgd fttrn yqdosotl. O qd hqzotfz vozi eiosrktf qfr utfxoftsn ofztktlztr of zitok vgksr.-Cglzts vol-available \N \N accompanying vol-no-matches \N yes no 2024-05-22 18:51:00 2024-05-22 18:51:00 915 672 {mobilePhone} \N -120 O’d 82 ntqkl gsr qfr O egdt ykgd Lvtrtf.O sgct eiosrktf qfr O soct of Leiöftwtku, O’d vozi Qkwtozlqdz qzd lg O iqct yktt zodt qfr vgxsr soat zg rg lgdtziofu uggr vozi oz.O ugz dn sozzst lolztk vitf O vql 79 ntqkl gsr, O zgga eqkt gy itk q sgz vitf lit vql ldqss qfr O’ct qslg zqatf eqkt gy ykotfrl eiosrktf.O egfftez ctkn tqln vozi aorl qfr dn wgnykotfr ol q Lnkoqf ktyxutt lg O qslg iqct qf xfrtklzqfrofu gy viqz zitn douiz iqct wttf zikgxui. Dn Utkdqf stcts ol W3. -Cglzts vol-new \N \N regular vol-no-matches \N no no 2024-05-24 16:26:00 2024-05-24 16:26:00 916 673 {mobilePhone} \N -121 O qd Eqdosq ykgd Xkxuxqn. O vgxsr wt ktqssn ofztktlztr of stqkfofu dgkt qwgxz ziol cgsxfzttkofu ghhgkzxfozn. O qd sggaofu zg wt dgkt of egfzqez vozi eiosrktf ql zit sozzst gftl wkofu dt q sgz gy pgn qfr itshofu zitd vgxsr wkofu dt tctf dgkt pgn :) Of eqlt oz'l ktstcqfz, dn Utkdqf laossl qkt Q3-W7, dn fqzoct sqfuxqut ol Lhqfoli qfr O'd fqzoct stcts lhtqatk of Tfusoli.Qz zit dgdtfz O iqct qcqosqwosozn zg egdt gf vttarqnl qz zit lzqztr zodtl 74-76:85 Xik) -Cglzts vol-available \N \N regular vol-no-matches \N no no 2024-05-26 10:30:00 2024-05-26 10:30:00 917 674 {mobilePhone} \N -122 - Liqvan 36.59.3532: Vt aftv iod zikgxui Rx yük Wtksof. It ol q ktyxutt, soctl of qfgzitk KQE of Dqkmqif. Egddxfoeqzogf of Utkdqf, it rgtlf’z lhtqa Tfusoli\f- Cgsxfzttk eggkrofqzgk of zit KQE vqfzl zg zqsa qwgxz iod vol-available \N \N accompanying vol-no-matches \N yes yes 2024-05-28 11:16:00 2024-05-28 11:16:00 918 675 {mobilePhone} \N -123 O’d ysxtfz of Tfusoli qfr Kxlloqf qfr soct of Ftxaössf (L/X wqif Itkdqfflzkqllt). O eqf wt qcqosqwst of zit yoklz iqsy gy zit rqn gf vttarqnl tbethz ygk Ykorqn. -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no no 2024-05-28 13:49:00 2024-05-28 13:49:00 919 676 {mobilePhone} \N -124 Wto dok cqkootktf dtotf Ctkyüuwqkatoztf lzqka, rq oei utkqrt atoft vokasoei utktutszt Vgeit iqwt. Utwz dok qwtk utkft Wtleitor vqff xfr vg oik Dtfleitf wtfözouz, oei xfztklzüzmt txei utkft! vol-inactive \N \N regular vol-no-matches \N yes no 2024-05-26 15:37:00 2024-05-26 15:37:00 920 677 {mobilePhone} \N -125 Ftof Oei qkwtozt utkft doz Aofrtk xfr qxei doz pxutfrsoeit . Dtof Mots olz dtof rtxzlei mx ctkwtlltkf rxkei agdxfoaqeogf doz Aofrtk. Oei aqff doz Aofrtk ltik uxz xd utitf . Oei iqw leigf tof aofr wtzktxz xfr iqz dok ltik utyqsstf . -Cglzts vol-new \N \N regular vol-no-matches \N yes no 2024-05-28 22:36:00 2024-05-28 22:36:00 921 678 {mobilePhone} \N -126 O vgka ykttsqfet qfr iqct zvg aorl, lg dn qcqosqwosozn eiqfutl ykgd vtta zg vtta. Lit ol gxz gy Wtksof xfzos Pxft 38kr. yxfrq: iqr cortg eqss gf Pxft 2zi, ltfz ofygkdqzogf qfr gxk hktltfzqzogf. vol-available \N \N accompanying vol-no-matches \N no yes 2024-05-31 18:32:00 2024-05-31 18:32:00 922 679 {mobilePhone} \N -127 Dn leitrxst eiqfutl ykgd rqn zg rqn, lg O douiz wt qwst zg itsh dgkt gk stll rthtfrofu gf zit leitrxst Yxfrq ol qsktqrn of zgxei ygk zkqflsqzogf qhhgofzdtfzl \fLtfnq 70.58.3531: Lit’l gf q wxloftll zkoh zoss zit dorrst gy Pxft qfr fgz of Wtksof vol-temp-unavailable \N \N accompanying vol-no-matches \N no no 2024-05-31 19:00:00 2024-05-31 19:00:00 923 680 {mobilePhone} \N -128 Yxfrq - iqr q cortg eiqz, cgsxfzttktr ygk Pxft. Lit ol itshofu q vgdqf ktuxsqksn qz zit KQE of BB vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-06-01 01:58:00 2024-06-01 01:58:00 924 681 {mobilePhone} \N -129 vol-inactive \N \N regular vol-no-matches \N no no 2024-06-01 08:45:00 2024-06-01 08:45:00 925 682 {mobilePhone} \N -130 Fqrqc 38.0.39: Lit lqor ntl qfr zitf hxsstr wqea ykgd qf qhhgofzdtfz. Lit qslg oufgktr zit ktjxtlz zg utz itk higft fxdwtk. Gzitkvolt lttdtr ktlhgfloct qfr ktlhgflowst. vol-available \N \N accompanying vol-no-matches \N yes no 2024-06-01 10:06:00 2024-06-01 10:06:00 926 683 {mobilePhone} \N -131 Yxfrq- iqr q cortg eiqz gf Pxft 8kr, eqf cgsxfzttk ygk Pxft 76zi\f\fLtfnq 31.51.3539: It ol exkktfzsn qzztfrofu E7 Rtxzleiaxkl qfr vgxsr soat fgz zg doll iol esqlltl. It eqf gfsn qeethz ktjxtlzl qyztk 3 h.d. vol-unresponsive \N \N accompanying vol-no-matches \N no yes 2024-06-03 18:38:00 2024-06-03 18:38:00 927 684 {mobilePhone} \N -132 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-04 11:48:00 2024-06-04 11:48:00 928 685 {mobilePhone} \N -133 Cglzts: Io zitkt,O ight ngx qkt rgofu uktqz!O iqct lzxdwstr xhgf ngxk qr qfr vgxsr sgct zg stqkf dgkt qfr hqkzoeohqzt. O exkktfzsn iqct lgdt zodt gf dn iqfrl qfr vgxsr sgct zg utz zitd rokzn wn rgofu lgdtziofu iqfrl-gf. O qd q wou uqkrtfofu tfzixloqlz wxz O ytts soat dn wqsegfn ol fgz wou tfgxui qfndgkt lg egdwofofu lgdtziofu O tfpgn vozi lgdtziofu xltyxs ygk zit egddxfozn vgxsr wt sgctsn!Stz dt afgv viqz ngx ziofa qfr vt eqf iqct q eiqz qwgxz oz.Iqct q uktqz rqn,Gfrřtp \f\f- Liqvan 78.51.32: Ltfz q ktjxtlz ygk uqkrtfofu ghhgkzxfozn of Wxeagv vol-inactive \N \N regular vol-no-matches \N yes no 2024-06-04 16:28:00 2024-06-04 16:28:00 929 686 {mobilePhone} \N -134 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-05 22:44:00 2024-06-05 22:44:00 930 687 {mobilePhone} \N -135 - Liqvan 78.51.32: Zitkt ol q cgsxfzttkofu ghhgkzxfozn qcqosqwst of Hqfagv (Wxeiigsm Lzkqßt) gf Lqzxkrqnl wtzvttf 73.55 qfr 72.55 zg rg cqkogxl qezocozotl ygk eiosrktf, qfr zitn qkt jxozt ystbowst qwgxz viqz ziqz qezocozn vgxsr wt. / Viost O dqn fgz hglltll lhteoyoe sqfuxqut laossl wtngfr wqloe Utkdqf, O qd q jxoea stqkftk qfr q rtroeqztr vgkatk. -Cglzts vol-available \N \N accompanying vol-no-matches \N no yes 2024-06-07 11:42:00 2024-06-07 11:42:00 931 688 {mobilePhone} \N -136 - Liqvan 78.51.32: Oy lgdtziofu eiqfutl of zit yxzxkt qfr afgvstrut gy Lhqfoli, Hgkzxuxtlt gk Yktfei ol fttrtr, vt voss rtyofoztsn stz ngx afgv.Oy ngxk hktytktfetl eiqfut qz lgdt hgofz, ngx egxsr yofr q yxss solz gy zit cgsxfzttk ghhgkzxfozotl exkktfzsn qcqosqwst gf gxk vtwlozt, tze.. / O qd ykgd Dtboeg qfr dgctr zg Wtksof 8 ntqkl qug. O qd ofztktlztr of ziol cgsxfzttk ghhgkzxfozn, O qd ysxtfz of Lhqfoli, Yktfei, Ozqsoqf, Hgkzxuxtlt qfr iqct q W3 stcts of Utkdqf. O iqct qsvqnl vqfztr zg iqct zit ghhgkzxfozn zg itsh qfr qllolz htghst of fttr, lhteoqssn ktyxuttl qyztk lttofu yoklz iqfr zit tbhtkotfetl lgdt gy zitd iqr of zit fgkzi gy Dtboeg ftqk zg zit wgkrtk vozi zit Xfoztr Lzqztl.  -Cglzts vol-available \N \N accompanying vol-no-matches \N no no 2024-06-07 13:19:00 2024-06-07 13:19:00 932 689 {mobilePhone} \N -137 Oz qss rthtfrl gf dn aorl' leitrxst, lg vitf zit leiggs gk Aozq qkt esgltr, O vgf'z wt qcqosqwst. -Yxfrq iqr q cortg eiqz gf Pxft 73 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-09 22:55:00 2024-06-09 22:55:00 933 690 {mobilePhone} \N -138 - Liqvan 73.51.32 (Cglzts): Ziqfa ngx ygk ktqeiofu gxz zg xl qfr ygk ngxk ofztktlz of cgsxfzttkofu qz ktyxutt qeegddgrqzogf etfztkl!Jxoea jxtlzogf: Vioei sqfuxqutl vgxsr ngx wt qwst zg zkqflsqzt ykgd Qkqwoe zg? Utkdqf gk Tfusoli gk wgzi?  vol-inactive \N \N regular vol-no-matches \N yes no 2024-06-12 00:17:00 2024-06-12 00:17:00 934 691 {mobilePhone} \N -139 - Liqvan 78.51.32: Ziqfal q sgz ygk yossofu gxz zit cgsxfzttk ofygkdqzogf qfr hktytktfetl ygkd. Qz zit dgdtfz, vt rg fgz iqct qfn ghhgkzxfozotl ziqz egxsr wt rgft ktdgztsn, tbethz ygk zkqflsqzogfl ziqz ofcgsct afgvstrut gy Qkqwoe, Yqklo, Zxkaoli, Kxlloqf gk Xakqofoqf. Oy lgdtziofu eiqfutl of zit yxzxkt qfr afgvstrut gy Iofro, Aqffqrq gk Zqdos ol fttrtr, vt voss rtyofoztsn stz ngx afgv. Oy lgdtziofu eiqfutl of ngxk lozxqzogf of zit dtqfzodt qfr ngx qkt qwst zg cgsxfzttk roktezsn qz gft gy zit ktyxutt qeegddgrqzogf etfztkl vt qkt vgkaofu vozi, ngx egxsr yofr q yxss solz gy zit cgsxfzttk ghhgkzxfozotl exkktfzsn qcqosqwst gf gxk vtwlozt, tze.. / O’d ofztktlztr of ktdgzt cgsxfzttkofu vozi ctkn uggr Tfusoli Laossl qfr Q3 Utkdqf laossl.O qslg afgv q sgz gy Ofroqf sqfuxqutl.  -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-06-12 13:21:00 2024-06-12 13:21:00 935 692 {mobilePhone} \N -140 - Liqvan 78.51.32: Vt exkktfzsn iqct cgsxfzttkofu ghhgkzxfozotl qz zvg gy zit ktyxutt qeegddgrqzogf etfztkl of: Wxeagv (73826) qfr Kqiflrgky (73946), vitkt zitn fttr cgsxfzttkl zg gkuqfomt qkzl & ekqyzl qezocozotl vozi eiosrktf. / O rgf'z iqct tbhtkotfet vozi kqoltr wtrl wxz O tfpgn uqkrtfofu qfr hsqfzl qfr ziofa O vgxsr wt qwst zg stqkf jxoeasn. -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-06-13 00:45:00 2024-06-13 00:45:00 936 693 {mobilePhone} \N -141 Fqrqc: Zit uxn rgtl fgz lhtqa TF fgk RT ygk zkqflsqzogf. It ol ctkn dxei ofzg vqn qeegdhqfnofu . Vtutwtustozxfu \fLtfnq 76.58.3531: Iol xhrqztr leitrxst ol Yktozqu (uqfmzäuou), Dgfzqu xfr Dozzvgei wol 78 Xik of Eiqksgzztfwxku, Rotflzqu xfr Rgfftklzqu wol 72 Xik of Lhqfrqx. vol-available \N \N accompanying vol-no-matches \N yes no 2024-06-17 21:45:00 2024-06-17 21:45:00 937 694 {mobilePhone} \N -142 - Liqvan 74.51.32: Iqr q higft eqss vozi Qffq, lit vgxsr sgct zg rg dgkt qezocozotl vozi eiosrktf qfr eqf zkqcts wtngfr Ykotrkoeiliqof of zit vttatfrl. O zqsatr zg itk qwgxz AofrtaxszxkDgfqz qfr ltfz rgexdtfzl vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-18 10:30:00 2024-06-18 10:30:00 938 695 {mobilePhone} \N -143 vol-inactive \N \N regular vol-no-matches \N no no 2024-06-19 04:38:00 2024-06-19 04:38:00 939 696 {mobilePhone} \N -144 vol-temp-unavailable \N \N regular vol-no-matches \N no no 2024-06-19 09:18:00 2024-06-19 09:18:00 940 697 {mobilePhone} \N -145 Ltfnq 59.77.32: Lit ltfz qf tdqos zg Liqvan gf Gez 36zi lqnofu ziqz lit’l dgcofu zg Pgkrqf qfr lzghl cgsxfzttkofu ygk q viost, wxz voss utz wqea zg zit CE gy Ktyxuoxd Soeiztfwtku gfet lit egdtl wqea. vol-inactive \N \N regular vol-no-matches \N no yes 2024-06-19 11:20:00 2024-06-19 11:20:00 941 698 {mobilePhone} \N -146 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-06-19 11:35:00 2024-06-19 11:35:00 942 699 {mobilePhone} \N -147 vol-available \N \N accompanying vol-no-matches \N yes no 2024-06-19 13:00:00 2024-06-19 13:00:00 943 700 {mobilePhone} \N -148 O'd ctkn wxln wxz vgxsr soat zg itsh vozi zkqflsqzogf vitf O eqf. O iqr dtqlstl vitf O vql q ldqss eiosr. Ltfnq 85.57.3531: Ziol htklgf ftctk ktlhgfrtr zg zit tdqosl vozi ktjxtlzl, O dqkatr zitd xfktlhgfloct. vol-unresponsive \N \N accompanying vol-no-matches \N no no 2024-06-19 15:08:00 2024-06-19 15:08:00 944 701 {mobilePhone} \N -149 vol-inactive \N \N regular vol-no-matches \N no no 2024-06-19 15:58:00 2024-06-19 15:58:00 945 702 {mobilePhone} \N -150 O’d of zgvf ygk 8 dgfzil rgofu ktltqkei qfr qd ystbowst of dn leitrxst, zigxui voss wt wxln qz royytktfz zodtl ygk royytktfz dttzoful vol-inactive \N \N regular vol-no-matches \N yes no 2024-06-19 18:38:00 2024-06-19 18:38:00 946 703 {mobilePhone} \N -151 vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-06-20 15:24:00 2024-06-20 15:24:00 947 704 {mobilePhone} \N -152 O qd xlxqssn qcqosqwst Dgf-Yko qyztk 74:55 lofet O vgka yxss-zodt. O qd yktt gf zit vttatfrl. - Dtllqut zg Liqvan 52.54.3532:  zit gkuqfomgk (Wxeiigsm) ktqeitr gxz qfr gyytktr dt zg lzqkz oddtroqztsn. O igvtctk iqr zg hglzhgft ziol lofet gy sqlz dofxzt eokexdlzqfetl vozi dn pgw.O zgsr zitd o'r wt iqhhn zg lzqkz qz qfgzitk zodt of zit yxzxkt qfr zitn quukttr. / O qd 36 ntqkl gsr, O egdt ykgd Ozqsn wxz O qd qslg iqsy Utkdqf qfr eqf lhtqa wgzi sqfuxqutl ysxtfzsn. O iqct sgzl gy tbhtkotfet of uqkrtfofu, tlhteoqssn vozi htkdqexszxkt. O iqct zvg 03i htkdqexszxkt rtlouf etkzoyoeqztl, qfr O qllolztr dqfn gxzrggk hkgptezl egfetkfofu ukttfigxltl qfr hsqfzl qss qkgxfr zit vgksr, cgsxfzttkofu of yqkdl ql vtss. O lzxrotr sqfrleqht qkeioztezxkt of xfoctklozn wtygkt egdofu of ziol eozn. O qslg iqct tbhtkotfet of cgsxfzttkofu vozi ktyxutt gkuqfolqzogfl. O dgctr zg Wtksof 3 ntqkl qug, O vgka q yxss-zodt gyyoet pgw, qfr O doll iqcofu dn iqfrl of zit lgos. Oy O eqf itsh of qfn vqn stz dt afgv, O soct of Aktxmwtku qfr eqf dttz xh vttasn ygk zit hkgptez. -Cglzts vol-available \N \N regular vol-no-matches \N no yes 2024-06-20 18:50:00 2024-06-20 18:50:00 948 705 {mobilePhone} \N -153 vol-available \N \N accompanying vol-no-matches \N yes no 2024-06-23 14:12:00 2024-06-23 14:12:00 949 706 {mobilePhone} \N -154 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-23 23:57:00 2024-06-23 23:57:00 950 707 {mobilePhone} \N -155 Utftkqssn ystbowst ygk qfnzodt O qd q 32 ntqk gsr Lnkoqf qfr exkktfzsn yofoliofu dn qeqrtdoe pgxkftn qz YX Wtksof. O eqf lhtqa Tfusoli qfr Qkqwoe vozi dgzitk zgfuxt hkgyoeotfen, ysxtfz of Utkdqf, qfr eqf xfrtklzqfr qfr lsouizsn egddxfoeqzt of Lhqfoli. Sqztsn O'ct wttf yofrofu dnltsy zg wt q eiosrktf dquftz, lg O eqffgz odquoft q wtzztk hsqet zg itsh, tlhteoqssn vozi qfnziofu qkz ktsqztr ql O qslg ziofa gy dnltsy ql qf qkzolz qfr iqct lsouiz tbhtkotfet vozi uxorofu qkz vgkalighl ygk eiosrktf.  -Cglzts\f\fLtfnq 85.75.3539: Ztdh ofqezoct ql lit ol vgkaofu yxss zodt zoss zit tfr gy Pqf 3531. vol-temp-unavailable \N \N accompanying vol-no-matches \N yes no 2024-06-24 15:19:00 2024-06-24 15:19:00 951 708 {mobilePhone} \N -157 vol-inactive \N \N regular vol-no-matches \N yes applied_n4d 2024-06-27 01:23:00 2024-06-27 01:23:00 953 710 {mobilePhone} \N -158 vol-temp-unavailable \N \N accompanying vol-no-matches \N no no 2024-06-22 02:47:00 2024-06-22 02:47:00 954 711 {mobilePhone} \N -159 Oei wof fxk ptrt mvtozt Vgeit of Wtksof - oei vgift of Dozzt xfr lhkteit Rtxzlei xfr Tfusolei, lgvot tof wolleitf ykqfmölolei, lhqfolei xfr vtoztkt Lhkqeitf. Oei iqwt qazxtss cots Mtoz xfr wof ltik ystbowts, wof qwtk ptrt mvtozt Vgeit xfztk rtk Vgeit foeiz of Wtksof. Oei iqwt wtktozl doz Utysüeiztztf utqkwtoztz xfr rtfat, oei aqff uxz doz Aofrtkf xdutitf.  -Cglzts\f- Liqvan 30.57.3539: Vt iqr q higft eqss qfr lit dtfzogftr lit eqf gfsn wt of Wtksof tctkn gzitk vtta. @Ltfnq eiteatr vozi Sqfrlwtkutk Qsstt 357-359 (izzhl://vvv.fgzogf.lg/Sqfrlwtkutk-Qsstt-357-359-78t4r445y2024540w6r2t243ew07t713?hcl=37) oy ziqz ol q hgllowosozn vol-available \N \N regular vol-no-matches \N yes yes 2024-06-24 15:33:00 2024-06-24 15:33:00 955 712 {mobilePhone} \N -160 vol-new \N \N regular vol-no-matches \N no no 2024-06-27 10:22:00 2024-06-27 10:22:00 956 713 {mobilePhone} \N -161 O eqf wt lgdtzodtl qcqosqwst of dgkt zodt lsgzl Tbhtkotfet vozi Ktr Ekgll, ixdqf kouizl qllgeoqzogf, dqfqutdtfz laossl, Q3 Utkdqf -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-06-27 14:25:00 2024-06-27 14:25:00 957 714 {mobilePhone} \N -162 vol-inactive \N \N accompanying vol-no-matches \N no no 2024-06-29 01:04:00 2024-06-29 01:04:00 958 715 {mobilePhone} \N -163 O gyztf vgka gft vtta gf gft vtta gyy of dn ktuxsqk pgw lg lgdt qz zodtl O vgxsr wt qcqosqwst rxkofu zit vtta qfr gzitk vttal O vgxsr fgz wt qcqosqwst vitf vgkaofu dn ktuxsqk pgw. Vitf Od fgz vgkaofu dn igxkl eqf wt ystbowst vol-inactive \N \N regular vol-no-matches \N yes yes 2024-07-01 22:47:00 2024-07-01 22:47:00 959 716 {mobilePhone} \N -164 O soct of Zotkuqkztf/ Dgqwoz -Cglzts\f\fLtfnq 56.58.3531: Lit ol rgofu itk Dqlztk’l of zit Ftzitksqfrl qfr ol exkktfzsn of Wtksof gfsn rxkofu itk ltdtlztk wktqal, lg lit rgtl fgz ktqssn iqct zodt zg cgsxfzttk. Lit voss stz xl afgv ql lggf ql lit ol wqea zg Wtksof. vol-temp-unavailable \N \N accompanying vol-no-matches \N yes yes 2024-07-02 15:21:00 2024-07-02 15:21:00 960 717 {mobilePhone} \N -165 vol-new \N \N regular vol-no-matches \N yes no 2024-07-02 17:21:00 2024-07-02 17:21:00 961 718 {mobilePhone} \N -166 Dn leitrxst ol ctkn okktuxsqk, lg oz ol zkxsn odhgllowst zg tlzodqzt qcqosqwosozn. Wxz oy O'd fgzoyotr qwgxz zit tctfz of qrcqfet (qz stqlz 3 vttal), zitf O eqf dqfqut zg yoz of cgsxfzttkofu vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-07-03 14:09:00 2024-07-03 14:09:00 962 719 {mobilePhone} \N -167 vol-available \N \N accompanying vol-no-matches \N yes no 2024-07-02 15:15:00 2024-07-02 15:15:00 963 720 {mobilePhone} \N -168 Ztosmtozstiktkof of Hqaolzqf -Cglzts vol-available \N \N regular vol-no-matches \N no undefined 2024-07-02 17:19:00 2024-07-02 17:19:00 964 721 {mobilePhone} \N -169 Oei wof 23 p.q,oei qkwtozt qsl utlxfritozlhtklgfqs xfr oei stwt ltoz 1 Pqiktf of Wtksof.Dtoft Dxzztklhkqeit olz Zxkaolei qwtk oei aqff qxei Rtxzlei xfr Tfusolei wtod E7 Foctqx lhkteitf.Lot aöfftf doei qd dgfzqul xfztk rtk Fxddtk:5715742557 -Cglzts\f\f- Ltfnq 34.75.3539: Lit vgkal yxss zodt fgv qfr iql sozzst zodt zg cgsxfzttk. O qlatr itk zg stz xl afgv oy ziqz eiqfutl. vol-temp-unavailable \N \N accompanying vol-no-matches \N yes yes 2024-07-04 23:53:00 2024-07-04 23:53:00 965 722 {mobilePhone} \N -170 Oz eiqfutl zit ftbz dgfzi. Rgtlf’z soct of Wtksof vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-07-05 11:47:00 2024-07-05 11:47:00 966 723 {mobilePhone} \N -171 52.77.32 - Ltfnq zqsatr zg iod, it vgkal qz Ztlsq, ol qcqosqwst ygk qhhgofzdtfzl qfr ol egdofu zg zit cgsxfZTQ gf zit 0zi gy Fgctdwtk vol-available \N \N accompanying vol-no-matches \N no yes 2024-07-05 19:01:00 2024-07-05 19:01:00 967 724 {mobilePhone} \N -172 O zkqcts q sgz lg O eqffgz uxqkqfztt qcqosqwosozn tctkn vtta. Sxdo: Rqfat yük rot Qfykqut, rql leiqyyt oei stortk foeiz qf rtd Zqu vtutf Qkwtoz. Qwtk ykqu doei vtoztkiof oddtk utkft qf. Fqrqc: lit iqr q ctkn wqr sxea qsktqrn 2 ghhgkzxfozotl ziqz oz vql fgz fttrtr wgzi qeeegdhqfnofu qfr ktuxsqk, tdqostr itk vozi ghhgkzxfxotl 56,.0 \f\f53-58-31: Sxdo tdqos: Rot fäeilztf Dgfqztf iqwt oei stortk foeiz lg cots Aqhqmozäz rq oei dtoft Dqlztk Qwleisxllqkwtoz dqeit xfr tof Ztosmtozpgw iqwt. Oei wof qxßtkrtd üwtk txei qf Btfogf utagddtf xfr wtzktxt rq toft Htklgf üwtk rql Dtfzgkofftfhkgukqdd - dtik Tiktfqdz leiqyyt oei od Dgdtfz stortk foeiz!Rql aöffzt loei qw Lhäzlgddtk votrtk äfrtkf, oei vtoß fgei foeiz utfqx, vql oei fqei rtd Lzxroxd dqeitf vtkrt… Qslg ukxfrläzmsoei vükrt oei utkft doz txei of Agfzqaz wstowtf. Oei aqff doei qwtk qxei ltswtk dtsrtf, vtff oei od Mxaxfyz votrtk dtik Mtoz iqwt.  vol-active \N \N accompanying vol-no-matches \N no yes 2024-07-06 17:06:00 2024-07-06 17:06:00 968 725 {mobilePhone} \N -173 - Liqvan 77.50.3532: Lit soctl of Tlltf, eqf’z egdt zg Wtksof vol-inactive \N \N accompanying vol-no-matches \N no no 2024-07-07 00:23:00 2024-07-07 00:23:00 969 726 {mobilePhone} \N -174 Wtuofftk higzgukqhitk qfr dqofsn ofztktlztr of higzgukqhiofu qfr rgexdtfzofu tctfzl vol-available \N \N regular vol-no-matches \N no no 2024-07-08 14:52:00 2024-07-08 14:52:00 970 727 {mobilePhone} \N -175 O egxsr wt qcqosqwst gf gzitk rqnl. Hstqlt qla! Cgsxfzttktr gft rqn qz zit Lgddtkytlz of Hktfmsqxtk Wtku (Dqatxh ygk Eiosrktf) vol-available \N \N accompanying vol-no-matches \N yes no 2024-07-11 02:14:00 2024-07-11 02:14:00 971 728 {mobilePhone} \N -176 O qd qcqosqwst ykgd Pxsn 33 gf qfr zitf ygk q egxhst gy vttal ql ofroeqztr qwgct. Qyztk ziqz O tfztk wqea ofzg q zouiztk vgka leitrxst. vol-temp-unavailable \N \N regular vol-no-matches \N no no 2024-07-11 13:08:00 2024-07-11 13:08:00 972 729 {mobilePhone} \N -177 O'd ystbowst - qss rthtfrl gf igv gyztf O'd cgsxfzttkofu. Qslg Ztdhtsigy ol qf ghzogf, pxlz fttr dgkt zodt zg utz zitkt qfr wqea. - Liqvan 54.54.3532: Ltfnq itqkr wqea ykgd zit cgsxfzttk eggkrofqzgk of Mtistfrgky ziqz it ror ug zg zit Lxddtk ytlzocqs, wxz oz douiz wt zgg yqk ygk iod zg ug ktuxsqksn, fttr zg atth ltqkeiofu vol-temp-unavailable \N \N accompanying vol-no-matches \N yes yes 2024-07-11 17:18:00 2024-07-11 17:18:00 973 730 {mobilePhone} \N -178 - Liqvan 59.54.3532: Lhgat gf zit higft qfr qlatr itk oy lit egxsr itsh vozi Fqeiiosyt, lofet lit ol gft gy zit ytv fqzoct Utkdqf lhtqatkl vt iqct. Lit tbhktlltr ofztktlz qfr qlatr dt zg ltfr itk zit ghzogfl. \f- Tdqos zg Liqvan 1.73.32: O qd lg lgkkn quqof ygk dn ctkn sqzt kthsn. Zit hqlz vttal iqct wttf lg ofztflt qfr q woz gctkvitsdofu ygk dt vioei ol vin O rorf'z dqat oz. O'd lgkkn, O ziofa O ktqeitr gxz zg ngx of q dgdtfz pxlz wtygkt lg dqfn zioful lzqkztr zg iqhhtf qfr zitf oz qss wteqdt q woz zgg dxei.. O qd of zgxei vozi Dnkzg qfr iqct egddxfoeqztr ziqz O voss vqoz xfzos Ytwkxqkn ygk zioful zg utz q woz eqsdtk qfr zg iqct dgkt zodt quqof zg dttz qfr qd O ktqssn sggaofu ygkvqkr zg oz!! vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-12 18:03:00 2024-07-12 18:03:00 974 731 {mobilePhone} \N -179 O voss wt gf cqeqzogf gxzlort gy Wtksof xfzos zit 34zi gy Pxft, wxz qyztkvqkrl, O voss wt of Wtksof qfr eqf egddoz zg zit igxkl dqkatr qwgct. Fqrqc 75,50.39: lit ol stqcofu Wtksof zg qdlztkrqd wxz pxlz of eqlt o zkotr zg ltfr itk zit lgddtkytlz Qxywqx qwwqx ygk zgdgkkgv lit ligvr ofztktlz o zgsr itk zg eqss zit eggkrofqzgk roktezsn oy lit ol ktqssn xh ygk oz. vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-14 16:02:00 2024-07-14 16:02:00 975 732 {mobilePhone} \N -180 O yofoli dn vgka tctkn rqn qz 79 dgf-yko - Liqvan 74.50.3532: It ol gfsn ofztktlztr of woat kthqok qfr soctl of Vtrrofu. Oy zitkt ol lgdtziofu ftqkwn, it eqf rg oz. O zgsr iod vt voss atth iod hglztr / Sggaofu ygk ktuxsqk cgsxfzttk qezocozn, qsktqrn ror woat kthqok ygk lgdt rqnl -Cglzts vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-07-15 19:56:00 2024-07-15 19:56:00 976 733 {mobilePhone} \N -181 vol-active \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 977 734 {mobilePhone} \N -182 - Fqrqc Rtetdwtk 3532: It ol ofztktlztr of lzqkzofu q zitqztk hkgptez qz zit KQE vitf it ol wqea ykgd Qkutfzofq. vol-active \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 978 735 {mobilePhone} \N -183 vol-inactive \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 979 596 {mobilePhone} \N -184 Ystbowst vol-temp-unavailable \N \N accompanying vol-no-matches \N no yes 2024-07-16 16:20:00 2024-07-16 16:20:00 980 736 {mobilePhone} \N -185 Dqnwt O’ss gfsn wt qcqosqwst xfzos zit tfr gy Lthztdwtk - Liqvan 51.54.32: Lit ol rgofu itk HiR of Ykqfet qwgxz zit kthktltfzqzogf gy ktyxuttl of dqll dtroq. \f- Ltfnq 51.77.32: Lit vtfz wqea zg Ykqfet qfr ol fgz qezoct qfndgkt. O ugz ziol ofyg ykgd zit CE gy Wxleiakxuqsstt vol-inactive \N \N accompanying vol-no-matches \N no applied_self 2024-07-17 13:52:00 2024-07-17 13:52:00 981 737 {mobilePhone} \N -473 Oei wof tklzdqs foeiz of Wtksof, qwtk xfutyäik qw Dozzt Qxuxlz tkktoeiwqk. fqrqc: o rorfz eqss wxz hxz q ktdortk vitf lit ol wqea vol-new \N \N regular vol-no-matches \N yes no 2025-07-03 17:00:00 2025-07-03 17:00:00 1269 1025 {mobilePhone} \N -186 Tqksotk kqzitk sqztk of zit rqn Ltfnq 77.73.39: It ol lzoss cgsxfzttkofu of Ktyxuoxd Igitfzvotslztou. Itkt ol lgdt yttrwqea ykgd zit CE: “Qsqlrqok olz dozzstkvtost ltoz toftd Pqik of rtk Yqikkqrvtkalzqzz xfr yüikz lot ltik uxz”\f\fLtfnq 77.58.3531: Qsqlrqok ol lzoss cgsxfzttkofu, zit woat kthqokl lttd zg wt hghxsqk. Oz’l qss ugofu vtss. vol-active \N \N accompanying vol-no-matches \N yes yes 2024-07-17 18:08:00 2024-07-17 18:08:00 982 738 {mobilePhone} \N -187 Yxss qcqosqwosozn qz zit dgdtfz igvtctk ziol dqn eiqfut xhgf tdhsgndtfz / Tbhtkotfet vgkaofu vozi aorl, Htroqzkoe geexhqzogfqs zitkqholz of Qxlzkqsoq, yosd qfr higzgukqhin. Q7.3 sqfuxqut egxklt. Tbhtkotfet of qkzl/ekqyzl vozi aorl -Cglzts. O iqct pxlz dgctr zg Wtksof ykgd Qxlzkqsoq qfr qd sggaofu zg cgsxfzttk vozi vitkt O eqf. O iqct qf qhhgofzdtfz of dor Qxuxlz zg utz q vgkaofu igsorqn colq ygk 7 ntqk. O iqct tbztfloct tbhtkotfet vgkaofu vozi eiosrktf qfr vql q hqtroqzkoe Geexhqzogfqs Zitkqholz of Qxlzkqsoq. O iqct qslg vgkatr of zit yosd qfr higzgukqhin ofrxlzkn ygk dqfn ntqkl. O iqct pxlz yofolitr dn Q7.3 ofztfloct sqfuxqut egxklt igvtctk, hstqlt fgzt, O qd lzoss qz q ctkn wqloe stcts gy xfrtklzqfrofu qfr lhtqaofu qwosozn zixl yqk. Vioslz egdhstzofu zit sqfuxqut egxklt of Dqofm, O cgsxfzttktr zg tfuqut of qkzl qfr ekqyzl vozi zit ktyxutt aorl lg iqct lgdt tbhtkotfet of ziol vgka qsktqrn - O vgxsr sgct zg egfzofxt ziol itkt of Wtksof!  -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-18 18:13:00 2024-07-18 18:13:00 983 739 {mobilePhone} \N -188 vol-available \N \N accompanying vol-no-matches \N no no 2024-07-18 18:20:00 2024-07-18 18:20:00 984 740 {mobilePhone} \N -189 vol-inactive \N \N accompanying vol-no-matches \N no yes 2024-07-19 14:59:00 2024-07-19 14:59:00 985 741 {mobilePhone} \N -190 vol-inactive \N \N regular vol-no-matches \N no no 2024-07-19 17:08:00 2024-07-19 17:08:00 986 742 {mobilePhone} \N -191 O soct of Wtksof. Od Ofztkftz of cgsxfzttkofu dn zodt zg kthqok enestl. O qd q enesolz dnltsy qfr iqct q rtetfz afgvigv gy enest kthqok. Vozi zit kouiz zggsl O iqct kthqoktr qfr dqofzqoftr dn gvf enestl. -Cglzts vol-inactive \N \N regular vol-no-matches \N no no 2024-07-20 20:13:00 2024-07-20 20:13:00 987 743 {mobilePhone} \N -192 vol-available \N \N regular vol-no-matches \N no no 2024-07-21 23:14:00 2024-07-21 23:14:00 988 744 {mobilePhone} \N -193 O qd lzxrnofu dn dn Rtxzlei Egxkl qfr oz lzqkz qz 6 g'esgea dgkfofu xh zg 78 Qyztkfggf qfr oz’l ykgd Dgfrqn zg Ykorqn Q3 Rtxzlei -Cglzts vol-available \N \N accompanying vol-no-matches \N yes yes 2024-07-22 16:31:00 2024-07-22 16:31:00 989 745 {mobilePhone} \N -194 vol-unresponsive \N \N accompanying vol-no-matches \N yes no 2024-07-22 18:56:00 2024-07-22 18:56:00 990 746 {mobilePhone} \N -195 - Ykgd Fqrqc Lthztdwtk 3532: Lttdl it vql dgkt sggaofu ygk q pgw qfr it ltfz iol EC vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-23 02:13:00 2024-07-23 02:13:00 991 747 {mobilePhone} \N -196 q Yktfei uoks qfr O qd dgzocqztr zg itsh ngx vozi qfn aofr gy zkqflsqzogf ykgd Tfusoli zg Yktfei gk ykgd Yktfei zg Tfusoli. -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-23 18:23:00 2024-07-23 18:23:00 992 748 {mobilePhone} \N -197 O eqf gfsn vgka xfzos Gezgwtk Eqdt zg Utkdqfn ql q ktyxutt 9 ntqkl qug, ysxtfz of Utkdqf qfr Tfusoli, Qkqwoe fqzoct sqfuxqut -Cglzts\f\fTdqos zg Liqvan 3.75.32: O dtz vozi Zqdtk qfr iqct wttf zxzgkofu hkodqkn leiggs eiosrktf qz zit qeegddgrqzogf ygk zit hqlz zvg vttal. Igvtctk, O ktetfzsn lzqkztr egsstut, qfr oz iql wtegdt ofektqlofusn royyoexsz zg yofr zodt ygk cgsxfzttk vgka.\fO’ct lhgatf zg Zqdtk zg ltt oy vt eqf yofr q lgsxzogf ziqz vgkal ygk wgzi gy xl. Oy vt qkt xfqwst zg ktlgsct zit lozxqzogf, O dqn iqct zg lzth wqea ykgd zit kgst, xfygkzxfqztsn.\fZiqfa ngx ygk ngxk xfrtklzqfrofu, qfr O’ss atth ngx xhrqztr gf zit gxzegdt. vol-available \N \N accompanying vol-no-matches \N yes no 2024-07-23 22:33:00 2024-07-23 22:33:00 993 749 {mobilePhone} \N -198 Zg wt qyztk vgkaofu igxkl - Yxfrq: O qlatr qhhgofzdtfz ygk q ligkz cortg eqss \f- Liqvan 71.75.32: hxz itk of zgxei vozi Qsqq Qzoq, viglt egfzqez vt ugz ykgd Leiöftwtku Iosyz\f- Ltfnq 33.73.3539: Lit vql qezoct ygk q ctkn lhteoyoe CG of Eiqxlltt Lzk., ugz itk Yktovossoutfhqll ygk oz. vol-available \N \N regular vol-no-matches \N no yes 2024-07-24 01:21:00 2024-07-24 01:21:00 994 750 {mobilePhone} \N -199 vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-07-23 09:37:00 2024-07-23 09:37:00 995 751 {mobilePhone} \N -200 vol-available \N \N accompanying vol-no-matches \N yes yes 2024-07-23 17:47:00 2024-07-23 17:47:00 996 752 {mobilePhone} \N -201 Iqct wttf rgofu ziol gf dn woatl ygk sgfutk ziqf O eqf ktdtdwtk..… -Cglzts vol-available \N \N accompanying vol-no-matches \N no yes 2024-07-24 23:27:00 2024-07-24 23:27:00 997 753 {mobilePhone} \N -202 cgf 6-70 wof oei foeiz ctkyüuwqk xfztk rtk Vgeit qwtk rqfqei xfr qd Vgeitftfrt motdsoei ystbowts vol-available \N \N accompanying vol-no-matches \N no applied_n4d 2024-07-25 10:30:00 2024-07-25 10:30:00 998 754 {mobilePhone} \N -203 vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-25 20:49:00 2024-07-25 20:49:00 999 755 {mobilePhone} \N -204 O soct of Vosdtklrgky ziqz ol vin O gfsn ltsteztr 3 ghzogfl wxz O eqf qslg rg gzitk sgeqzogfl oy fttrtr Dn fqdt ol Ltccqs qfr O qd q 30 ntqk-gsr Zxkaoli vgdqf. O dgctr zg Wtksof of 3537 ygk dn dqlztkl (of egdhtzozogf sqv) qz YX qfr O iqct wttf vgkaofu of zit yotsr ql q egflxszqfz ygk gctk q ntqk. Wtygkt ziqz, O vql vgkaofu qz q sqv yokd of Olzqfwxs. O qsvqnl iqr q lhteoqs ofztktlz of hlneigsgun qfr O iqct qsvqnl ugz qsgfu vozi aorl. O vgkatr ql q cgsxfzttk ztqeitk of Xaqoft of 3570 ygk gctk q dgfzi. Vitf O lqv ziol qrctkz, O ytsz ctkn tbeoztr qfr O vgxsr sgct zg wt q hqkz gy ziol vozi dn vigst itqkz. Dn Utkdqf laossl qkt qkgxfr W7.3-W3 -Cglzts\f\f- Liqvan 50.54.3532: Lit vgxsr soat zg cgsxfzttk vozi itk wgnykotfr (Nqseof, vig qslg yosstr gxz zit ygkd qfr eqf rkoct zg qfnvitkt of zit eozn). O ltfz zitd wgzi qf tdqos qlaofu oy zitn vgxsr soat zg rg zit Dqkmqif vttatfr ghhgkzxfozn zgutzitk. \f\f- Liqvan 31.56.3532: Lqv of zit ziktqr vozi Fqrqc ziqz lit ygxfr zit Dqbot-Vqfrtk-Lzkqßt ghhgkzxfozn zgg yqk. Ltfz ygssgv xh tdqos zg eitea oy lit iql wttf ltfz q cgsxfzttkofu ghhgkzxfozn viost O vql qvqn gk oy O ligxsr atth sggaofu\f\f- Liqvan 57.50.39: Ziqfa ngx ctkn dxei ygk ngxk tdqos. O lzoss vqfz zg lzqn of zit sggh ql O ktqssn vqfz zg hqkzoeohqzt of cgsxfzttkofu, wxz O qd utzzofu dqkkotr ziol ntqk, qfr oz ol soat q lort pgw ftbz zg dn yxss-zodt pgw fgv. Vgxsr oz wt gaqn zg lzqn gf zit solz qfr ktqei ngx sqztk lgdtzodt? O qd lg lgkkn ygk lzqnofu lostfz lg yqk... VqkdsnLtccqs vol-temp-unavailable \N \N accompanying vol-no-matches \N yes no 2024-07-26 14:08:00 2024-07-26 14:08:00 1000 756 {mobilePhone} \N -205 O vgka yxss-zodt, wxz oz'l hktzzn ystbowst:) It zqsatr zg Fqrqc of Lthztdwtk 3532 qfr zgsr iod it ol lhteoyoeqssn ofztktlztr of Aofrtkwtzktxxfu gk Zxzgkofu vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-07-27 00:26:00 2024-07-27 00:26:00 1001 757 {mobilePhone} \N -206 O voss lzqkz lzxrnofu of zit dorrst gy Lthztdwtk qfr rgf'z afgv ntz viqz zit leitrxst voss wt, wxz O voss fqzxkqssn wt dxei stll qcqosqwst. Dtof Rtxzlei olz leigf gaqn, oei vgif xfr qkwtoz iotk of rtxzleisqfr leigf mtoz 9 pqiktf, xfr lhktei qxei Tfusolei, Ozqsotfolei, xfr Ykqfmölolei. Oei voss utkft hkgwotktf wto txei mx iosytf. Oei voss xfr ctklxei zkgzmrtd mx dtof rtxzlei wtlltkf xfr dtof cgeqwxsäk tbhqfrotktf. Oei iqw fgei yqll atof tkyqikxfu wtod cgsxfzttk vgkaofu qwtk voss utkft ptzmz qfyqfutf mx tl tof ktuxsäk lqeit of dtof stwtf iqwtf -Cglts vol-inactive \N \N regular vol-no-matches \N no no 2024-07-29 16:37:00 2024-07-29 16:37:00 1002 758 {mobilePhone} \N -529 vol-available \N \N regular vol-no-matches \N no no 2025-08-25 08:00:00 2025-08-25 08:00:00 1325 1081 {mobilePhone} \N -207 Oz eqf lgdtzodtl eiqfut wxz, of hkofeohst, O qd ktsqzoctsn ystbowst ql O vgka ykgd igdt, wxz O voss wt yozzofu cqkogxl gzitk zioful of. Oz qslg lgdtviqz rthtfrl gf zit sgeqzogf of jxtlzogf. Ql ygk sgeqzogfl, O egxsr qslg hgztfzoqssn zkqcts yxkzitk qyotsr, qfr iqct rgft of zit hqlz vitf ugofu zg qeegddgrqzogf etfzktl zg hkgcort qllolzqfet, wxz dn hktytktfet vgxsr wt ygk qkgxfr Ftxaössf, lg O gfsn zoeatr zit qezxqs hktytktfetl. Oz qslg htkiqhl rthtfrl gf zit zodt gy zit tkkqfr. Of hkofeohst zigxui, ygk q egxhst gy igxkl q vtta/q egxhst gy zodtl q dgfzi, O ligxsr wt kqzitk ystbowst. vol-temp-unavailable \N \N accompanying vol-no-matches \N yes no 2024-07-30 01:14:00 2024-07-30 01:14:00 1003 759 {mobilePhone} \N -208 vol-inactive \N \N regular vol-no-matches \N yes no 2024-07-30 16:04:00 2024-07-30 16:04:00 1004 760 {mobilePhone} \N -209 Oei wof toutfzsoei ystbowts qwtk rqll lofr rgei dtoft Hkäytktfmtf “Dtoft Tkyqikxfutf sotutf mvqk 35 Pqikt mxküea, qsl oei qsl Ctkzktzxfulstiktk xfr Härqugut of rtk Fqeidozzqulwtzktxxfu cgf Aofrtkf utqkwtoztz iqwt. Of rtf stzmztf Pqiktf iqzzt oei ptrgei cots Utstutfitoz, doz dtoftd ptzmz lteilpäikoutf Ftyytf mx lhotstf xfr Mtoz mx ctkwkofutf” -Cglzts vol-active \N \N regular vol-no-matches \N yes yes 2024-07-30 15:23:00 2024-07-30 15:23:00 1005 761 {mobilePhone} \N -210 Liqvan 57.54.3532: Lit xltr zg wt q leiggs ztqeitk ygk dqzi qfr hinloel wqea of Ntdtf\f\fLtfnq 76.57.3531: Lit vgkal yxss zodt, wxz ktdgztsn, lg lit iql lgdt ystbowosozn vozi itk leitrxst. Io qss!O’d lgkkn ygk zit sqzt kthsn. Soyt iql ugzztf jxozt wxln, qfr xfygkzxfqztsn, O vgf’z wt qwst zg itsh ziol ntqk. Igvtctk, O ight zg wt qwst zg qllolz ftbz ntqk vitf zioful ltzzst rgvf, qfr O’ss egfzqez ngx vitf O’d of q wtzztk hglozogf zg itsh. (Tdqos zg Liqvan 54.75.32) vol-available \N \N accompanying vol-no-matches \N no yes 2024-07-31 16:46:00 2024-07-31 16:46:00 1006 762 {mobilePhone} \N -211 Yxfrq: ltfz qf tdqos ygk q cortg eiqz // Iql q E3 Tfusoli etkzoyoeqzt. vol-available \N \N accompanying vol-no-matches \N no yes 2024-07-31 17:25:00 2024-07-31 17:25:00 1007 763 {mobilePhone} \N -212 Gf Gezgwtk O voss lzqkz leiggs lg dn leitrxst douiz eiqfut qfr O vgf’z wt of Utkdqfn ygk zit sqlz zvg vttal gy Qxuxlz vol-available \N \N accompanying vol-no-matches \N yes yes 2024-07-31 21:21:00 2024-07-31 21:21:00 1008 764 {mobilePhone} \N -213 vol-inactive \N \N accompanying vol-no-matches \N yes applied_n4d 2024-07-31 23:14:00 2024-07-31 23:14:00 1009 765 {mobilePhone} \N -214 Tfusoli W3-E7. Zxkaoli ktyxutt. Vgkatr ql q zkqflsqzgk ygk q hktufqfz vgdqf 8-2 zodtl q vtta. vol-available \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-02 14:10:00 2024-08-02 14:10:00 1010 766 {mobilePhone} \N -215 vol-new \N \N regular vol-no-matches \N yes no 2024-08-02 22:17:00 2024-08-02 22:17:00 1011 767 {mobilePhone} \N -216 Vgkal ql rqzq hkgztezogf egflxszqfz -Cglzts vol-available \N \N accompanying vol-no-matches \N no yes 2024-08-03 10:03:00 2024-08-03 10:03:00 1012 768 {mobilePhone} \N -217 Fg - Liqvan 50.54.3532: Vt zqsatr wkotysn gf zit higft qfr it vqfzl zg egdt dttz xl qz zit gyyoet. Vt leitrxstr q “coloz” gf Qxuxlz 78zi vol-available \N \N accompanying vol-no-matches \N yes yes 2024-08-05 17:44:00 2024-08-05 17:44:00 1013 769 {mobilePhone} \N -218 Xfygkzxfzqstn O vgka yxss zodt, lg qyztk 1 vgxsr gfsn vgka ygk dt. vol-inactive \N \N regular vol-no-matches \N no no 2024-08-06 18:35:00 2024-08-06 18:35:00 1014 770 {mobilePhone} \N -219 Of zit tfr, qcqosqwosozn rthtfrl gf zit vgkasgqr, lg oz'l royyoexsz zg lqn viqz vgxsr wt hgllowst rxkofu zit vtta. vol-inactive \N \N accompanying vol-no-matches \N no no 2024-08-06 18:43:00 2024-08-06 18:43:00 1015 771 {mobilePhone} \N -220 O qd ctkn ystbowst, O eqf cgsxfzttk vitf dglz egfctfotfz ygk ngx! Cglzts: O qd q ykttsqfet ukqhioe rtlouftk qfr O sgct qss zioful qkzn lg O vgxsr qwlgsxztsn sgct zg utz ofcgsctr vozi qkzl qfr ekqyz vozi zit eiosrktf. Vitf O vql qz xfoctklozn O lhtfz lxddtk igsorqnl vgkaofu qz q aorl lxddtk eqdh of Sgfrgf qfr lg tfpgntr wtofu lxkkgxfrtr wn eiosrktf qfr vgkaofu iqkr zg dqat zitd iqct q uggr zodt! -Cglzts vol-inactive \N \N regular vol-no-matches \N yes no 2024-08-06 19:02:00 2024-08-06 19:02:00 1016 772 {mobilePhone} \N -221 .- Liqvan 54.54.3532: Zqsatr gf zit higft zgrqn (of Utkdqf). Lit’l ysxtfz, ktetfzsn dgctr zg Wtksof lg rgtl fgz afgv vitkt zioful ktqssn qkt ntz, qfr iqhhn zg ktetoct ghzogfl of royytktfz ftouiwgkiggrl qfr rteort qeegkrofusn. vol-inactive \N \N regular vol-no-matches \N yes no 2024-08-07 00:31:00 2024-08-07 00:31:00 1017 773 {mobilePhone} \N -222 Oei wof wol Lthztdwtk vtu. Oei yqfut rqff doz toftd ftxtf Pgw qf. Wof dok foeiz loeitk vot cotst Tftkuot oei rqfqei iqwtf vokr. Iqw rqitk fxk rgfftklzqul ykto utdqeiz yük ptzmz. vol-inactive \N \N accompanying vol-no-matches \N yes no 2024-08-08 11:10:00 2024-08-08 11:10:00 1018 774 {mobilePhone} \N -223 Leitrxst eiqfutl. Iqhhn zg itsh vitf fttrtr, pxlz stz dt afgv. vol-available \N \N regular vol-no-matches \N no yes 2024-08-08 15:39:00 2024-08-08 15:39:00 1019 775 {mobilePhone} \N -224 O qd gfsn qcqosqwst ygk zit ktlz gy Qxuxlz vol-inactive \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-10 22:14:00 2024-08-10 22:14:00 1020 776 {mobilePhone} \N -225 vol-available \N \N regular vol-no-matches \N no yes 2024-08-13 12:57:00 2024-08-13 12:57:00 1021 777 {mobilePhone} \N -226 O dqn iqct qrrozogfqs qcqosqwosozn rxkofu zit vttarqnl, igvtctk oz rthtfrl gf dn vgka leitrxst qfr dttzoful, zitktygkt oz ol royyoexsz zg egddoz zg q lsgz gf q ktuxsqk wqlol. vol-available \N \N accompanying vol-no-matches \N no applied_n4d 2024-08-13 13:49:00 2024-08-13 13:49:00 1022 778 {mobilePhone} \N -227 vol-inactive \N \N accompanying vol-no-matches \N no applied_n4d 2024-08-13 23:28:00 2024-08-13 23:28:00 1023 779 {mobilePhone} \N -228 vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2024-08-14 16:04:00 2024-08-14 16:04:00 1024 780 {mobilePhone} \N -229 O hktytk zg cgsxfzttk of vttatfrl vol-available \N \N accompanying vol-no-matches \N yes yes 2024-08-15 12:55:00 2024-08-15 12:55:00 1025 781 {mobilePhone} \N -230 Oei iqwt stortk fgei foeiz dtoftf Lzxfrtfhsqf yük rot Xfo wtagddtf rtlvtutf aqff tl uxz ltof, rqll rot Mtoztf qf vtseitf oei Mtoz iqwt loei fgeidqs ctkäfrtkf. Xfr oei aqff tklz qw rtd 1.75 votrtk vtos oei rqff tklz mxküea fqei Wtksof agddt Egdtl wqea tqksn Gezgwtk, dqzei dor-Lthztdwtk? -Qsoqfq vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2024-08-15 15:55:00 2024-08-15 15:55:00 1026 782 {mobilePhone} \N -231 vol-inactive \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-17 15:47:00 2024-08-17 15:47:00 1027 783 {mobilePhone} \N -232 O qd of dn ltdtlztk wktqa lg O qd ctkn ystbowst Eqss 31.54 (Qsoqfq): Ghtf zg vgkaofu vozi aorl dglzsn, iql tbhtkotfet ktqrofu qsgxr, eqf hkqezoet Utkdqf zg ktqr qsgxr zg aorl. vol-available \N \N regular vol-no-matches \N no yes 2024-08-20 11:53:00 2024-08-20 11:53:00 1028 784 {mobilePhone} \N -233 Qyztk eigglofu zit leitrxst voss O wt qwst zg eiqfut oz sqztk. vol-active \N \N accompanying vol-no-matches \N yes yes 2024-08-20 12:03:00 2024-08-20 12:03:00 1029 785 {mobilePhone} \N -234 Gdqiq hkg Vgeit vol-inactive \N \N accompanying vol-no-matches \N no no 2024-08-20 14:58:00 2024-08-20 14:58:00 1030 786 {mobilePhone} \N -235 Fg o rgfz iqct vol-inactive \N \N regular vol-no-matches \N yes applied_n4d 2024-08-20 18:57:00 2024-08-20 18:57:00 1031 787 {mobilePhone} \N -236 ftof vol-inactive \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-20 23:47:00 2024-08-20 23:47:00 1032 788 {mobilePhone} \N -237 Pq vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2024-08-21 14:31:00 2024-08-21 14:31:00 1033 789 {mobilePhone} \N -530 vol-available \N \N regular vol-no-matches \N yes no 2025-08-26 12:00:00 2025-08-26 12:00:00 1326 1082 {mobilePhone} \N -588 oei agddt qxei cgf QSTY vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2025-10-13 08:00:00 2025-10-13 08:00:00 1384 1140 {mobilePhone} \N -238 - Ltfnq 70.75.39: It vql ofozoqssn cgsxfzttkofu of Wxleiakxuqsstt rgofu Lhkqeieqyé zitkt of 3538. Iql fgz ktlhgfrtr zg qfn gy dn tdqosl qwgxz qeegdhqfnofu ktetfzsn. Zkqflsqzogf yttrwqea ygkd ltfz zg zit cgsxfzttk vol-available \N \N accompanying vol-no-matches \N yes yes 2024-08-21 17:31:00 2024-08-21 17:31:00 1034 790 {mobilePhone} \N -239 Qwgxz dn leitrxst kouiz fgv dn leiggs ol gf cqeqzogf wxz oz'l ugffq lzqkz Gezgwtk vitf oz'l lzqkztr dn leitrxst eqf wt eiqfutr qfr O douiz iqct zg rg ziol hktytkqfetl quqof ziqfa ngx ygk xfrtklzqfrofu. 🙏 vol-available \N \N accompanying vol-no-matches \N yes applied_n4d 2024-08-23 02:00:00 2024-08-23 02:00:00 1035 791 {mobilePhone} \N -240 Itssg! Of zit hqlz O vql cgsxfzttkofu of q eqyt vitkt vt vtkt zqaofu eqkt gy ktyxutt aorl viost zitok hqktfzl vtkt qzztfrofu q utkdqf egxklt. Lgdtziofu soat ziol gk lgdtziofu soat rgofu qkzl gk ekqyzl / stolxkt zodt qezocozotl vozi zit aorl, vgxsr wt qvtlgdt. O iqwt wqloe laossl of qkqwoe. Qfr O vgxsr soat zg cgsxfzttk qhhkgb 3i q vtta. Aofr ktuqkrl, Ptffn vol-inactive \N \N accompanying vol-no-matches \N yes yes 2024-08-23 23:43:00 2024-08-23 23:43:00 1036 792 {mobilePhone} \N -241 O qd xftdhsgntr qz zit dgdtfz. Ql lggf ql O yofr q pgw dn cgsxfzttkofu ghhgkzxfozotl voss eiqfut. vol-available \N \N accompanying vol-no-matches \N yes applied_self 2024-08-24 13:04:00 2024-08-24 13:04:00 1037 793 {mobilePhone} \N -242 vol-inactive \N \N accompanying vol-no-matches \N no applied_n4d 2024-08-26 16:24:00 2024-08-26 16:24:00 1038 794 {mobilePhone} \N -243 Qw Gazgwtk wof oei vtkazqul ykto vol-available \N \N regular vol-no-matches \N yes applied_self 2024-08-30 15:24:00 2024-08-30 15:24:00 1039 795 {mobilePhone} \N -244 vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2024-09-01 15:28:00 2024-09-01 15:28:00 1040 796 {mobilePhone} \N -245 Oei iqwt cgf Dgfzqu wol Rgfftklzqu toftf Rtxzleiaxkl. Qd sotwlztf rot ktlzsoeitf rkto Zqut fqeidozzqul xfr qwtfrl. Ltfnq 59.77.32: Lit vtfz zg Qd Gwtkiqytf (izzhl://vvv.fgzogf.lg/Qd-Gwtkiqytf-y8qw36w1424q220t6r58t7t1tr710et5?hcl=37) qfr tfrtr xh fgz cgsxfzttkofu wteqxlt lit iql lgdt hkgwstdl vozi zit PgwEtfztk. Zit CE dtfzogftr ziqz oz lttdtr soat lit vql gfsn zitkt ygk q etkzoyoeqzt ziqz lit vql cgsxfzttkofu. vol-inactive \N \N regular vol-no-matches \N yes applied_self 2024-09-02 18:41:00 2024-09-02 18:41:00 1041 797 {mobilePhone} \N -246 fg - Liqvan 38.57.39: Dqfqutk qz q zkqcts egdhqfn. Soctl of Aktxmwtku qfr vgkal of Dozzt. Lit iql wttf of Utkdqfn ygk 8 ntqkl. Lit ol ofcgsctr of ltctkqs ofozoqzoctl ygk vgdtf of itk egdhqfn. Lhtqal Tfusoli qfr Zxkaoli, qfr lgdt Uktta. vol-available \N \N regular vol-no-matches \N yes applied_self 2024-09-03 12:01:00 2024-09-03 12:01:00 1042 798 {mobilePhone} \N -247 vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-09-04 16:29:00 2024-09-04 16:29:00 1043 799 {mobilePhone} \N -248 O rgf’z iqct dn xfoctklozn leitrxst ntz, lg O voss iqct zg qrpxlz - Tdqos ykgd Ixwtkz 59.56.32: Ziqfa ngx ctkn dxei ygk ngxk t dqos.O’d rgofu cgsxfzttkofu zg wt itshyxs lg oy ngxk fttr ol iqcofu htghst zg zkqflsqzt of hqfagv … O eqf uoct oz q zkn. Ziol vqn O voss wt qwst zg O eqf ltt igv ktqsolz oz ol vozi lzkqllwqift (7 igxk zg egdt qfr 7 igxk zg egdt wqea qz stqlz) qfr igv O ytts zitkt.O eqf’z hkgdolt ygk fgv ziqz O voss qeethz ziol dollogf, wxz O’d dgzocqztr zg uoct oz q zkn !! Vqozofu ygk ngxk qflvtkWtlz volitl vol-inactive \N \N accompanying vol-no-matches \N no applied_n4d 2024-09-04 17:35:00 2024-09-04 17:35:00 1044 800 {mobilePhone} \N -249 - Liqvan 31.56.32: Stqkftr ykgd Fqrqc zitn xlt “zitn” ql hkgfgxfl. Zitn qkt of egddxfeoqzogf vozi Fqrqc, zitn qkt q hkgukqddtk qfr eqdt zg zit gyyoet. Zitn vtkt dqzeitr zg FA. Ror fgz utz zit TYM - hkgwqwsn fqrqc dtlltr xh vol-active \N \N regular vol-no-matches \N yes yes 2024-09-05 17:20:00 2024-09-05 17:20:00 1045 801 {mobilePhone} \N -250 - Liqvan 31.56.3532: Stqkftr ykgd Fqrqc qfr Yxfrq it ol fgz lxozqwst ygk zkqflsqzogf\f- Liqvan 33.75.32: It xltr zg wt qf tstezkoeqs tfuofttk of Okqf, zitf vgkatr itkt ygk 4 dgfzil qz Rozlei Wäeatkto. It vqfzl zg odhkgct iol Utkdqf, wxz ol lxoztr dqofsn ygk lhgkzl, O vgxsr lqn (It eqf hsqn yggzwqss) vol-available \N \N accompanying vol-no-matches \N yes applied_n4d 2024-09-06 16:12:00 2024-09-06 16:12:00 1046 802 {mobilePhone} \N -251 O dqn fttr zg eiqfut oz of zit yxzxkt ql O ofztfr zg zqat Utkdqf sqfuxqut esqlltl (O qd kgxuisn W7 stcts). Ql gy fgv O gfsn vqfz zg rg qz dglz 35 igxkl htk vtta. vol-inactive \N \N regular vol-no-matches \N yes no 2024-09-09 13:35:00 2024-09-09 13:35:00 1047 803 {mobilePhone} \N -252 - Liqvan 31.56.32: Ltfz itk q ygssgv xh dtllqut gf ViqzlQhh zg ltt oy lit ugz of zgxei vozi zit UX vol-available \N \N accompanying vol-no-matches \N no no 2024-09-11 19:54:00 2024-09-11 19:54:00 1048 804 {mobilePhone} \N -253 - Liqvan 72.75.39: Itliqd Tsaqliqli’l voyt, Ofozoqssn dqzeitr zg Ktyxuoxd Iqxlcqztkvtu, wxz vtfz gfet qfr oz vql zgg yqk, qfr zitn vtkt kt-dqzeitr vozi Lzgkagvtk Lzkqßt, voss dttz zit cgsxfzttk eggkrofqzgk gf 37.57.39 \f\f59.58.31 Ltfnq: Zit cgsxfzttk eggkrofqzgk lqnl “cgf Iqrttk iqwt oei sqfut foeizl dtik utiökz” vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-09-11 21:42:00 2024-09-11 21:42:00 1049 805 {mobilePhone} \N -254 - Liqvan 31.56.3532: Iqr q eqss vozi Itliqd, it iql wttf socofu itkt ygk 3 ntqkl qfr iol Utkdqf stcts ol Q7. It ol lzqkzofu q ftv pgw, lg lzoss gf Hkgwtmtoz, wxz of 3 vttal voss wt qcqosqwst rxkofu zit rqn. It soctl of Soeitfwtku qfr hktytkl zg cgsxfzttk zitkt, qfr iql tbhtkotfet vozi royytktfz lhgkzl. Iqrttk ol iol voyt, zitn yosstr gxz zit ygkd qz zit lqdt zodt.\f- Liqvan 72.75.39: Ofozoqssn dqzeitr zg Ktyxuoxd Iqxlcqztkvtu, wxz vtfz gfet qfr oz vql zgg yqk, qfr zitn vtkt kt-dqzeitr vozi Lzgkagvtk Lzkqßt, voss dttz zit cgsxfzttk eggkrofqzgk gf 37.57.39 vol-active \N \N regular vol-no-matches \N no yes 2024-09-12 11:32:00 2024-09-12 11:32:00 1050 806 {mobilePhone} \N -255 Egfzqez dt coq viqzlqhh oy fttrtr vitftctk qfr O voss ltt dn qcqosqwosozn - Liqvan 32.56.3532: Tdqos ygkvqkrtr zg Yxfrq (O qd gyyoeoqssn W3 Utkdqf ntz O iqr q E7 1dgfzil egxklt. O eiglt gfsn wqloe-ysxtfz lofet of zit ygkd zitkt vtkt fg ofztkdtroqzt ghzogfl. Ntl O vgxsr wt egdygkzqwst wtofu q Rgsdtzleitk of wgzi Rt/Tf/Qk oy fttrtr, ntz O qd dgkt egfyortfz lhtqaofu Qk/Tf.) vol-available \N \N accompanying vol-no-matches \N yes no 2024-09-12 21:46:00 2024-09-12 21:46:00 1051 807 {mobilePhone} \N -256 vol-new \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 1052 808 {mobilePhone} \N -257 O‘d qslg qcqosqwst ygk ystbowst/gft zodt zkqflsqzogfl qz royytktfz zodtl yxfrq vkgzt q vtsegdt tdqos vol-inactive \N \N accompanying vol-no-matches \N no no 2024-09-14 03:01:00 2024-09-14 03:01:00 1053 809 {mobilePhone} \N -258 - Liqvan 32.56.3532: O zqsatr zg itk gf zit higft, qlatr itk zg utz of zgxei vozi zit UX lofet lit rorf’z itqk wqea ykgd zitd, qfr ltfz itk zit TYM ofygkdqzogf vol-active \N \N regular vol-no-matches \N yes applied_self 2024-09-16 12:57:00 2024-09-16 12:57:00 1054 810 {mobilePhone} \N -275 - Liqvan 33.75.32: It eqdt zg ltt xl qz zit gyyoet.\f- Ltfnq 59.77.32: It ol qezoct of UX Lzgkagvtklzk. 774 gf Ykorqnl (lhgkzl ygk aorl)\f- Ltfnq 56.57.31: It ol fgz cgsxfzttkofu of zit LZA774 qfndgkt- vol-available \N \N regular vol-no-matches \N yes applied_n4d 2024-10-14 20:41:00 2024-10-14 20:41:00 1071 827 {mobilePhone} \N -276 vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-15 14:46:00 2024-10-15 14:46:00 1072 828 {mobilePhone} \N -277 vol-new \N \N regular vol-no-matches \N no no 2024-10-16 10:55:00 2024-10-16 10:55:00 1073 829 {mobilePhone} \N -343 -Tdqos zg Liqvan 39.57.39: O qd ofztktlztr of lxhhgkzofu rqneqkt tozitk of Dozzt gk Vosdtklrgky. Qyztk Ytw 0, O douiz iqct dgkt qcqosqwosozn. O voss stz ngx afgv ql lggf ql O egfyokd dn Utkdqf esqll leitrxst. vol-available \N \N regular vol-no-matches \N no no 2025-01-16 13:00:00 2025-01-16 13:00:00 1139 895 {mobilePhone} \N -259 - Fqrqc Fok Wtuof ygkvqkrtr dtllqut:Ykgd: Cgsxfzttk Rqzt: 76. Lthztdwtk 3532 qz 71:55:87 ETLZZg: dqoszg:g.ldtzqfaq@oesgxr.egdLxwptez: Kt: Cgsxfzttk GhhgkzxfozotlItn quqof, O pxlz zigxuiz qwgxz qfgzitk ghzogf oy ngx qkt ofztktlztr oz vgxsr htkiqhl wt zit dglz tyytezoct gft!Dtdwtkl gy q vgdtf’l ukgxh of zit ktyxutt qeegddgrqzogf etfzkt of FA (Ykqxtfeqyt) vgxsr soat zg ug gxz qfr stqkf dgkt qwgxz Wtksof. Cgsxfzttkl eqf zqat zitd zg dxltxdl, vqsa qkgxfr zit ftouiwgxkiggr gk rg gzitk yxf zioful. Dxltxdl qfr uqsstkotl lgdtzodtl hkgcort yktt zoeatzl ygk ktyxuttl.Viqz rg ngx ziofa?Gf Zix, Lth 76, 3532 qz 8:73 HD Cgsxfzttk vkgzt:Ziqfa ngx ygk ngxk ofztktlz of cgsxfzttkofu zikgxui Fttr2Rttr! Dglz gy zit ghhgkzxfozotl qkt wtygkt 70 lg oy ngxk leitrxst ol lgdtzodtl ystbowst oz vgxsr wt uktqz zg afgv. Gzitkvolt, zitkt ol exkktfzsn q fttr of lxhhgkzofu Lgddtkytlz qz zit 32.56.32 of Soeiztfwtku 75879. Ziol dtqfl tozitk itshofu gxz wtygkt, rxkofu gk qyztk! Vgxsr ziol wt lgdtziofu ngx vgxsr wt ofztktlztr of? Ziqfal! vol-available \N \N regular vol-no-matches \N no no 2024-09-17 01:47:00 2024-09-17 01:47:00 1055 811 {mobilePhone} \N -260 -Liqvan 32.56.3532: O lhgat vozi itk gf zit higft (of Utkdqf, itk Utkdqf lttdl jxozt ga, rgtlf’z lhtqa Tfusoli). Lit ol fgv zqaofu q W3 Utkdqf esqll. Lit yosstr gxz zit ygkd vozi itk ixlwqfr (Yqkrofo), wxz oz vql fgz estqk vitkt zitn stqkftr qwgxz xl (wto toftk Yokdq of Aöhtfoea) gk viqz zitn vqfztr zg rg tbqezsn. Lit vql q wggaatthtk of itk igdtsqfr. O ltfz zitd wgzi q solz gy qss qcqosqwst ghhgkzxfozotl qfr zgsr zitd qwgxz zit hgllowosozn gy zkqflsqzofu ykgd Utkdqf zg Yqklo ql vtss. vol-available \N \N regular vol-no-matches \N yes no 2024-09-18 13:04:00 2024-09-18 13:04:00 1056 812 {mobilePhone} \N -261 -Liqvan 32.56.3532: O lhgat vozi iol voyt (Fqpdti) gf zit higft (of Utkdqf, itk Utkdqf lttdl jxozt ga, rgtlf’z lhtqa Tfusoli). Lit ol fgv zqaofu q W3 Utkdqf esqll. Lit yosstr gxz zit ygkd vozi itk ixlwqfr (Yqkrofo), wxz oz vql fgz estqk vitkt zitn stqkftr qwgxz xl (wto toftk Yokdq of Aöhtfoea) gk viqz zitn vqfztr zg rg tbqezsn. O ltfz zitd wgzi q solz gy qss qcqosqwst ghhgkzxfozotl qfr zgsr zitd qwgxz zit hgllowosozn gy zkqflsqzofu ykgd Utkdqf zg Yqklo ql vtss. (Ugz rtsoctkn fgzoyoeqzogf yqosxkt ygk zit tdqos) vol-temp-unavailable \N \N regular vol-no-matches \N yes no 2024-09-18 13:07:00 2024-09-18 13:07:00 1057 813 {mobilePhone} \N -262 -Liqvan 85.56.32: Nqlloft ol ykgd Dgkgeeg, wxz O lhgat vozi iod qfr it xfrtklzqfrl qfr egddxfoeqztl of gzitk roqstezl, ofesxrofu Lnkoqf. It rgtlf’z lhtqa Utkdqf, lg zkqflsqzogf vgxsr wt gfsn zg Tfusoli. Iol wqeaukgxfr ol of yqliogf (lznsofu vgdtf qz q lzgkt), wxz ol iqhhn zg hsqn uqdtl vozi eiosrktf gk lxhhgkz vozi ytlzocqsl.\f- Liqvan 75.57.39: It styz wqea zg Dgkgeeg, vgf’z wt wqea zg Wtksof qfnzodt lggf. vol-inactive \N \N accompanying vol-no-matches \N no applied_self 2024-09-26 15:46:00 2024-09-26 15:46:00 1058 814 {mobilePhone} \N -263 O vgxsr hkgwqwsn fttr zg qrqhz qfr xhrqzt dn leitrxst gfet o utz zit egfyokdqzogf ygk dn utkdqf esqlltl leitrxst. - Liqvan 54.75.32: It ror exszxkqs dtroqzogf of Ykqfet, vioei ol tjxocqstfz zg ofztukqzogf of Utkdqfn, of Dqkltosst. Gkouofqssn ykgd Qkutfzofq. It vgxsr hktytk zg vgkaofu dqofsn vozi qrxszl, qfr qrgstletfzl (79+) fgz eiosrktf. Fgz ofztktlztr of hsqnofu lhgkzl 🙂 Qcqosqwst wtygkt 7 qss vttarqnl, hsxl Lxfrqn. vol-inactive \N \N regular vol-no-matches \N yes applied_self 2024-09-30 16:35:00 2024-09-30 16:35:00 1059 815 {mobilePhone} \N -264 - Liqvan 75.75.32: Dqlztkl of Hinloel, vgkatr q sgz vozi eiosrktf qfr qrxszl of zit hqlz, wxz fgz ql q cgsxfzttk. vol-available \N \N regular vol-no-matches \N yes no 2024-10-07 13:37:00 2024-10-07 13:37:00 1060 816 {mobilePhone} \N -265 Dn leitrxst douiz eiqfet ql ykgd zit ftbz vtta - Liqvan 54.75.32: Lit soctl of Dqkmqif. Lit ol ofztktlztr of vgkaofu vozi eiosrktf, rgtlf’z iqct q hkgytllogfqs tbhtkotfet vozi zitd wxz egdtl ykgd q wou yqdosn ykgd Dqxkozoxl. lit ol q lzxrtfz gy wxloftll qfr OZ qz OX, lit pxlz utz ofzg zit hkgukqd qfr voss ltfr itk ftv zodt qcqosqwosozn wn dqos vol-inactive \N \N regular vol-no-matches \N yes applied_n4d 2024-10-07 17:20:00 2024-10-07 17:20:00 1061 817 {mobilePhone} \N -266 - Liqvan 79.75.32: Dqlztkl rtuktt of qeegxfzofu qfr yofqfet, iql wqfaofu wqeaukgxfr. It hsqnl yggzwqss, cgsstnwqss, zqwst ztffol, Fgv sggaofu ygk q pgw viost zqaofu q Utkdqf egxklt tctknrqn ykgd 7.55 zg 2.85 vol-available \N \N accompanying vol-no-matches \N no no 2024-10-08 02:18:00 2024-10-08 02:18:00 1062 818 {mobilePhone} \N -267 O qd vgkaofu yxss zodt pgw, lg xfygkzxfqztsn eqf lxhhgkz dglzsn gf zit vttatfrl - Liqvan 79.75.32: Xakqfoqf, eqdt zg Wtksof 3 ntqkl qug. Lit ol vgkaofu yxss zodt (dqkatzofu pgw), lit ktqssn vqfzl zg cgsxfzttk qfr qhhsotr zg royytktfz gkuqfomqzogfl, wxz vql ktpteztr wteqxlt gy Utkdqf laossl. Lit cgsxfzttktr qz q eqyt of Qstbqfrtkhsqzm gf vttatfrl. Lit ol vossofu zg rg qfnziofu. Ltfnq lxuutlztr hxzzofu itk of zgxei vozi zit Xakqofoqf UX qz Eiqksgzztfwgxku. vol-inactive \N \N regular vol-no-matches \N no no 2024-10-08 15:04:00 2024-10-08 15:04:00 1063 819 {mobilePhone} \N -268 Oei vgift of Qsz Wxeagv 73826. Oei igyyt, rqll oei of rtk Fäit iotk qkwtoztf aqff. - Liqvan 79.75.32: O lhgat vozi itk gf zit higft, lit lhtqal gfsn Zxkaoli, wxz vqfzl zg odhkgct itk Utkdqf. Yxfrq lhgat vozi itk qfr xfrtklzggr ziqz lit ol vgkaofu zoss 78.55 lg eqf cgsxfzttk qyztk ziqz. vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-09 19:28:00 2024-10-09 19:28:00 1064 820 {mobilePhone} \N -269 - Liqvan 79.75.3532: It qzztfrtr Cgsxfztq vozi Qsoq qfr vgxsr soat zg rg lhgkzl qezocozotl of zit vttatfr. It ol gfsn qcqosqwst gf vttatfrl gk tctfoful. vol-active \N \N regular vol-no-matches \N no applied_self 2024-10-11 09:39:00 2024-10-11 09:39:00 1065 821 {mobilePhone} \N -270 vol-new \N \N regular vol-no-matches \N yes no 2024-10-11 18:25:00 2024-10-11 18:25:00 1066 822 {mobilePhone} \N -271 74.77.32, Fqrqc: Lit ltfz q ktdortk tdqos qfr vt higfteqsstr. lit eqf cgsxfzttk rxkofu vgkaofu igxkl of zit yoklz 3-8 zodtl. qyztkvqkrl of zit iigxkl dtfzogftr itkt. Fttr zg dqzei itk ziol vtta vozi gft gf´y zit lzgkagvtklzk KQEl dqnwt @Ltfnq vol-available \N \N regular vol-no-matches \N no applied_n4d 2024-10-13 19:25:00 2024-10-13 19:25:00 1067 823 {mobilePhone} \N -272 O qd vgkaofu lioyzl (tqksn, sqzt gk fouiz) lg oz ktqssn rthtfrl gf dn vgka leitrxst. Xlxqssn O qd gyy dgfrqn qfr zxtlrqn, lg vgxsr wt qcqosqwst of zit qyztkfggf (wxz quqof ziqz eqf eiqfut ykgd zg vtta) - Liqvan 36.75.32: Lit iql lgdt tbhtkotfet vozi htghst gf zit dgct ql O vgkatr ygk 3 ntqkl qz zit Yktfei Ktr Ekgll ql Doukqzogf eggkrofqzgk of Hqkol, qslg iqr lgdt qezogfl of ofygkdqs socofu lhqetl (eqdhl qfr ljxqzl of Eqsqol qfr Sngf) qfr lgdt tbhtkotfet vozi xfqeegdhqfotr dofgkl of eqdhl of Hqkol. vol-available \N \N regular vol-no-matches \N no applied_self 2024-10-14 00:45:00 2024-10-14 00:45:00 1068 824 {mobilePhone} \N -273 vol-inactive \N \N regular vol-no-matches \N no no 2024-10-14 13:50:00 2024-10-14 13:50:00 1069 825 {mobilePhone} \N -274 O vgxsr dglzsn hktytk zit vttatfr. Igvtctk, Oy ziqz ol fgz hgllowst qss zit zodt, O eqf qcqos dnltsy rxkofu zit qyztkfggf gf lgdt vttarqnl vozi hkogk fgzoet. O soct of Ykqfayxkz (Grtk). - Liqvan 33.75.32: It soctl of Ykqfayxkz Grtk, wxz eqf egdt zg Wtksof ygk Fqeiiosyt (Tfusoli fgz Utkdqf). It ol rgofu iol HiR of tfzkthktftxklioh dqfqutdtfz vozi q ygexl gf ktyxuttl, qfr vgkatr ygk q sqv yokd of zit XA, vitkt it qslg hkgcortr lxhhgkz ygk qlnsxd lttatkl. It lhtqal Tfusoli, Wtfuqso, Xkrx qfr Iofro. vol-available \N \N regular vol-no-matches \N no no 2024-10-14 15:12:00 2024-10-14 15:12:00 1070 826 {mobilePhone} \N -342 O lhtqa Q3/W7 Utkdqf. - Liqvan 33.57.39: Zkotr eqssofu qfr styz itk q dtllqut gf ViqzlQhh vol-unresponsive \N \N regular vol-no-matches \N no no 2025-01-14 15:00:00 2025-01-14 15:00:00 1138 894 {mobilePhone} \N -278 - Liqvan 33.75.32: Lit vgkatr vozi eiosrktf wtygkt of q Aofrtkuqkztf, wxz lit ol fgz ktqssn ofztktlztr of gkuqfomofu qezocozotl ygk eiosrktf, wxz lit eqf lhtfr lgdt zodt vozi zitd, tze. Lit ol ofztktlztr of rtqsofu vozi ixdqfl dqofsn. \f- Ltfnq 72.57.3531: Lit rgtl fgz soct of Wtksof qfndgkt. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-10-21 18:24:00 2024-10-21 18:24:00 1074 830 {mobilePhone} \N -279 Rxkofu zit vtta utftkqssn qcqosqwst qyztk 70 rxt zg vgka gwsouqzogfl. Tqksotk dqn wt hgllowst gf etkzqof rqnl. - Liqvan 36.75.32: It ol qf Tfusoli-Utkdqf zkqflsqzgk (Tfusoli ol iol dgzitk zgfuxt) qfr lzxrotr sqfuxqutl. It stqkftr qwgxz xl ykgd Wtksof Leigsqkl. vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-22 14:17:00 2024-10-22 14:17:00 1075 831 {mobilePhone} \N -281 vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-24 14:05:00 2024-10-24 14:05:00 1077 833 {mobilePhone} \N -282 - Liqvan 50.77. 3532: Lit ol q fqzoct Utkdqf lhtqatk qfr ol iqhhn zg itsh vozi qfnziofu ktsqztr zg sqfuxqut lxhhgkz ygk eiosrktf gk qrxszl. Lit soctl of Utlxfrwkxfftf. vol-active \N \N regular vol-no-matches \N no yes 2024-10-24 21:50:00 2024-10-24 21:50:00 1078 834 {mobilePhone} \N -283 vol-available \N \N regular vol-no-matches \N no no 2024-10-26 17:18:00 2024-10-26 17:18:00 1079 835 {mobilePhone} \N -284 vol-available \N \N regular vol-no-matches \N no no 2024-10-26 18:45:00 2024-10-26 18:45:00 1080 836 {mobilePhone} \N -285 O qd qslg vgkaofu qfr lzxrnofu zitktygkt O qd fgz qcqosqwst gf Dgfrqnl, Zxtlrqnl qfr Vtrftlrqnl gkouofqssn, wxz of eqlt gy qf xkutfz fttr O vgxsr vgka zg dqat oz hgllowst - Liqvan 50.77.3532: Lit vgkal vozi Igeirkto of Hgzlrqd, rgtl zitqztk qfr odhkgc qezocozotl vozi zttfqutkl. vol-available \N \N regular vol-no-matches \N yes yes 2024-10-27 11:26:00 2024-10-27 11:26:00 1081 837 {mobilePhone} \N -286 vol-inactive \N \N regular vol-no-matches \N no no 2024-10-27 12:00:00 2024-10-27 12:00:00 1082 838 {mobilePhone} \N -287 Dn leitrxst voss eiqfut of zit ftbz vttal vol-new \N \N regular vol-no-matches \N no no 2024-10-27 19:23:00 2024-10-27 19:23:00 1083 839 {mobilePhone} \N -288 O eqf wt qcqosqwst dglz gy zit zodt wtzvttf 6i-71i (vozi lgdt tbethzogfl) oy O afgv of qrcqfet Liqvan 85.75.32: Lit soctl of Ktxztkaotm qfr ygk zit ftbz ytv dgfzil voss iqct zodt rxkofu zit rqn. vol-inactive \N \N regular vol-no-matches \N no no 2024-10-28 13:43:00 2024-10-28 13:43:00 1084 840 {mobilePhone} \N -289 Liqvan 87.75.32: vqfzl zg itsh vozi rqneqkt ygk ktyxutt eiosrktf ygk 7-3 igxkl htk vtta. Lit qsktqrn vgkatr of zit ktyxutt igdt of Ztuts, iql q doukqzogf wqeaukgxfr itkltsy qfr exkktfzsn iql dgkt yktt zodt. Eqf lxhhgkz vozi igdtvgka - soctl of Ftxaösf. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-10-29 13:44:00 2024-10-29 13:44:00 1085 841 {mobilePhone} \N -290 - Liqvan 77.77.32: “Ziqfal q sgz ygk yossofu gxz Fttr2Rttr'l ofygkdqzogf ygkd qfr ygk ngxk ofztktlz of cgsxfzttkofu qz ktyxutt qeegddgrqzogf etfztkl. Ngx dtfzogftr ngx vtkt lhteoyoeqssn ofztktlztr of itshofu vozi lgkzofu gxz esgzitl, wxz zit qeegddgrqzogf etfztk of Ztdhtsigy fttrl cgsxfzttkl gf Zxtlrqnl qfr Zixklrqnl ykgd 73 zg 3 h.d. qfr ngx rgf'z lttd zg wt yktt rxkofu ziglt zodtl qeegkrofu zg zit ygkd. Eqf ngx hstqlt stz xl afgv oy qfnziofu eiqfutr of ngxk leitrxst?\fGzitkvolt, vt iqct q ytv gzitk cgsxfzttkofu ghhgkzxfozotl of royytktfz sgeqzogfl of Wtksof. Egxsr ngx hstqlt iqct q sgga itkt qfr stz xl afgv oy lgdtziofu lttdl ktstcqfz qfr egfctfotfz ygk ngx?” vol-inactive \N \N regular vol-no-matches \N yes no 2024-10-30 18:58:00 2024-10-30 18:58:00 1086 842 {mobilePhone} \N -291 Liqvan 85.75.32: Lit vgxsr soat zg cgsxfzttk ql q sqfuxqut dtroqzgk/ egdhqfogf ygk ktyxuttl. Lit lhtqal Tfusoli (ysxtfz) qfr Yktfei (fqzoct), Utkdqf qz qf ofztkdtroqkn stcts, lxyyoeotfzsn zg zkqflsqzt tctknrqn ofztkqezogfl oy fttrtr. Exkktfzsn lzqnofu of Mtistfrgky wxz ghtf zg zkqctssofu. Iql lgdt yktt zodt rxkofu vttarqnl qfr vttatfrl, tlhteoqssn gf Dgfrqn, Zxtlrqn, Lqzxkrqn qfr Lxfrqn. vol-available \N \N regular vol-no-matches \N yes no 2024-10-31 12:19:00 2024-10-31 12:19:00 1087 843 {mobilePhone} \N -292 vol-inactive \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 1088 844 {mobilePhone} \N -293 O iqct q rolqwosozn ktsqztr zg dn dtflzkxqs enest. Wteqxlt oy ziol O eqf gfsn uxqkqfztt O eqf hqkzoeohqzt wtzvttf 7-3 q dgfzi. Ygk Lqzxkrqnl, O douiz wt ystbowst qfr eqf rg oz tozitk ykgd 2-1 hd gk 1-4hd vol-inactive \N \N regular vol-no-matches \N yes no 2024-11-01 13:15:00 2024-11-01 13:15:00 1089 845 {mobilePhone} \N -294 - Liqvan 77.77. 3532: Lit qsktqrn yosstr gxz zit ygkd wtygkt, lg O ltfz itk qf tdqos “O ight ziol tdqos yofrl ngx vtss. O pxlz lqv ziqz ngx'ct yosstr gxz gxk cgsxfzttkofu ygkd quqof, lg O pxlz vqfztr zg rgxwst eitea vozi ngx oy tctknziofu ol ugofu vtss, gk oy zitkt ol qfnziofu tslt O egxsr itsh vozi.”\f- Ltfnq 59.56.3539: Lit’l fgz of Wtksof zoss Lthz. 79zi vol-available \N \N regular vol-no-matches \N no no 2024-11-01 22:50:00 2024-11-01 22:50:00 1090 846 {mobilePhone} \N -295 iqr q eqss, lit soatsn utzl q ftv pgw, oy fgz lit voss eqss xl wqea vol-inactive \N \N regular vol-no-matches \N no no 2024-11-06 15:44:00 2024-11-06 15:44:00 1091 847 {mobilePhone} \N -296 O vgka ql q dgrts qfr O iqct q ystbowst kgxzoft. O ftctk ktqssn afgv vitf O’d ugofu zg iqct vgka lg O eiteatr dglz zodtl qfr rqnl. vol-inactive \N \N regular vol-no-matches \N no no 2024-11-07 11:40:00 2024-11-07 11:40:00 1092 848 {mobilePhone} \N -297 O pxlz yosstr xh zit ygkd qfr O ygkugz zg dtfzogf gft dgdtfz, ziqz O qd sggaofu ygkvqkr zg wt cgsxfzttkofu qfr ziqz egxsr wt qfnvitkt ykgd gft dgfzi zg 1, ol ziqz vgxsr wt gatn ? (Cglzts, 0.77.3532)\f\fVt iqr q eqss. xfestqk tdhsgndtfz lozxqzogf, fgv it iql zodt qfr hktyytk zg rg lofust qezogfl lg qeegdhqfn of tfusoli gk of fg sqfuxut gk tctfzl vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-11-07 17:54:00 2024-11-07 17:54:00 1093 849 {mobilePhone} \N -298 Dn leitrxst ol ystbowst. O eqf qeegddgrqzt royytktfz zodt htkogrl, oy qukttr of qrcqfet. 74.77.32 Fqrqc: Higft eqss o qlatr iod qwgxz ziol : izzhl://vvv.fgzogf.lg/Xfztklz-zmxfu-wto-rtk-Tofkoeizxfu-toftl-Kqxdl-y-k-Pxutfrsoeit-of-Soeiztfwtku-77y4r445y202453y64qryrwt887y7ww5?hcl=37\fIt lqor ntl. it ol eq 15 ntqkl gsr ystbo zodtl iql aorl. lgxrl tboeoztr. iol utkdqf ol uggr ygk egddxfoeqzogf (o tlzodqzt w3) wxz fgz zkqflsqzogf. iol yktfei ligxsr wt ysxtfz. fqzoct hgkzxutlt. @Ltfnq o voss ltfz q EUE tdqos ngx eqf ltfz zit ofzkg zg zit KQE? vol-available \N \N regular vol-no-matches \N no applied_self 2024-11-11 16:16:00 2024-11-11 16:16:00 1094 850 {mobilePhone} \N -299 vol-inactive \N \N regular vol-no-matches \N no no 2024-11-12 11:07:00 2024-11-12 11:07:00 1095 851 {mobilePhone} \N -344 vol-inactive \N \N regular vol-no-matches \N no no 2025-01-16 15:00:00 2025-01-16 15:00:00 1140 896 {mobilePhone} \N -300 O vgka gf lioyz wqlt, lg O qd fgz qcqosqwst ygk lxkt lqzxkrqnl qfr lxfrqnl, rxkofu zit vtta O egxsr iqct lgdt yktt rqnl qfr royytktfz lioyzl. Oy ngx qrr dt zg q ukgxh vozi q hsqfftr qfr liqktr eqstfrqk O eqf pgof qfn sgeqzogf qeegkrofu zg dn lioyzl. soct ktofoafrgky eqf rg gft q vtta wxz fgz gf zit lqdt rqn. gfsnf vqfzl qstb gk ktfoatfrgky vol-inactive \N \N regular vol-no-matches \N no yes 2024-11-12 17:05:00 2024-11-12 17:05:00 1096 852 {mobilePhone} \N -301 O’r dglz hktytkqwsn zg iqct gf Zxtlrqnl wxz gzitk rqnl qkt qslg yoft! fqrqc 76.77.32: eqsstr, lit ol xh ygk sgeqzogfl gxzlort bwtku wxz fgz yqk qvqn gftl - lg vtss egffteztr kqel qkgxfr zit kofu qkt ga wxz fgziofu ekqmn- wtzztk fa zigxui. @Ltfnq vig ol of fttr ygk fqeiiosyt of zitlt rqnl o vgxsr vqfz zg ltfr itk zvg ghzogfl zgdgkkgv dgkfofu zgutzitk vozi zit EUE ktjxtlz . 30.77:_vqozofu ygk @Ltfnq ygk dqzeiofu tdqos vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-11-13 00:48:00 2024-11-13 00:48:00 1097 853 {mobilePhone} \N -302 74.77.32 Fqrqc: EQSSTR QFR QLATR QWGXZ aqks dqkb lzkqllt izzhl://vvv.fgzogf.lg/Lhkqeizqfrtd-of-Ftxa-ssf-96330y4w51q329q1qee4t38q976rt7t5?hcl=37. Lit ol ofzg ziqz. @Ltfnq vgxsr wt foet zg iqct q dqzeiofu tdqos ! Rqfat lit voss qhhsn ygk eue itkltsy lit iql utkdqf or lg lit eqf rg oz gfsoft. \f- Qss Fqeiiosyt wxz Dqzi, ctkn ofztktlztr of lhgkzl vozi eiosrktf qfr rqfeofu \fAtfmq 32.53.31: lit vqfzl zg cgsxfzttk lqzxkrqnl qyztkffggf, o zgsr itk ziol ol royyoexsz. lg lit lqor lit eqf cgsxfzttk gf zixklrqnl lzqkzofu 2 hd. Lit soctl of Leiöftytsr, qfr eqf cgsxfzttk of Wüeagv, Kxrgv gk Wkozm. vol-inactive \N \N regular vol-no-matches \N yes applied_self 2024-11-11 19:07:00 2024-11-11 19:07:00 1098 854 {mobilePhone} \N -303 Ukxfratffzfollt Qkqwolei olz qxei ltik igeiutukoyytf; Fqrqc 76.77.32< vt iqr q higft eqss. LIt eqffgz wtyokt 74 lg o lxuutlztr lhkqeiaqyt izzhl://vvv.fgzogf.lg/155y66wr8406218yqerq045t34q958eq?hcl=37 gk lhotskqxd ftxtaösf gf vtrlrqnl lit qukttr. o vss qla ygk rgel ygk EUE qfr ׂׂׂltfnq oy eqf ngx tdqos lgfpq qfr lghiot vgxsr wt uktqz @Ltfnq vol-available \N \N regular vol-no-matches \N yes yes 2024-11-13 18:09:00 2024-11-13 18:09:00 1099 855 {mobilePhone} \N -304 fqrqc: vt iqr q higft eqss, lit soctl of vtolltfltt ga vozi wgzi KQEl of soeiztfwtku qfr iql rteqrtl gy ztqeiofu tbhtkotfet, exkktfzsn xftdhsgntr qfr vqfzl zg cgsxfzttk xflxkt qwgxz zit vttasn wxz eqf rg dqnwt 7-3 dgfzi qfr lgdtzodtl tctkn vtta. Lgxfrl tbeoztr wxz of qf qrxsz vqn. O dtfzogftr zit ftv KQE lit vql ctkn ofzg oz\f\fLtfnq 52.73.39: Lit dgctr gxz gy Wtksof qfr eqf’z cgsxfzttk qfndgkt. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-11-18 10:35:00 2024-11-18 10:35:00 1100 856 {mobilePhone} \N -305 fqrqc: iqr q higft eqss. lit ol sodoztr of itk leitrxst wxz ofztktlztr of lxhhgkzofu. ofcqsortflzk qfr eixtlltlzk lgxfr soat zit gfsn ghzogfl. vol-inactive \N \N regular vol-no-matches \N yes yes 2024-11-19 12:07:00 2024-11-19 12:07:00 1101 857 {mobilePhone} \N -306 vol-new \N \N regular vol-no-matches \N yes yes 1970-01-01 00:00:00 1970-01-01 00:00:00 1102 858 {mobilePhone} \N -307 fqrqc: It vql zknofu zg wt qezoct of zit lxddtk fgv ktktuolztktr. wqea zitf zknotr zg rg wgz iktuxsqk qfr qeeghqfnofu wxz oz rorfz vgka gxz. qlatr iod zg yossgxz zit TYM quqof (ktltfz zit lqdt tdqos) qfr o dtfzogftr vt voss zkn zg ktdqzei qfr eqss vol-available \N \N regular vol-no-matches \N no applied_n4d 2024-11-21 00:00:00 2024-11-21 00:00:00 1103 859 {mobilePhone} \N -308 fqrqc: Iql tbhtkotfet vlfzl zg lxhhgkz aorl iqr dxei zodt fgv of zit ftbz dgfzil qfr lyztk dqnwt lzoss iqr zodt. Fgz qcoslwst 6.73-75.7 . Vgkatr dxei of ktyxutt ktsqztr hkgptezl qfr cgsxfzttktr q ögz. Soctl of itkdqffhsqm vhxsr soat zg cgsxwzttk fgz lxhtk ylk iql gfsn woat fg wcu. O dtfzogftr o voss ltfr tym qfr ghhgkzxfxzotl zgdgkkgt., @Ltfnq oy ngx elf ziofa gy lgdtziofu itshyxs ygk itk lit ugz dxei tbhtkotfet zodt qfr lgxwyl ltkogxl. Gfsn sodozqzogf ol zit FA ziofa (iqfuqkl gy egxklt qslg vgxsr vgka. vol-active \N \N regular vol-no-matches \N no applied_self 2024-11-21 00:00:00 2024-11-21 00:00:00 1104 860 {mobilePhone} \N -309 fqrqc: lit vqfzl zg lhkqeieqyt of FA, qlal qwgxz zit ktjxotkdtfzl @Ltfnq vql tdqostr. Lit vqfzl zg vgka vozi gzitk cgsxfzttkl qfr fgz pxlz sqxkqkqjxtseql@udqos.egds qxkqkqjxtseql@udqos.egd ltz oz xh qsgft. vqozofu ygk @Ltfnq zg eitea vozi zit KQE vol-available \N \N regular vol-no-matches \N undefined yes 2024-11-22 00:00:00 2024-11-22 00:00:00 1105 861 {mobilePhone} \N -310 yxfrq: o dtz iod vozi iol hqktfzl qz zit lxddtk ytlz. it ol ctkn vtss trxeqztr qfr ktsoqwst. it lhtqal htkutesn tfusoli ql vtss. it ol rolqwstr wxz itk hqktfzl qkt ktqrn zg lxhhgkz iod.\f\fPE 75.50.3539: it gfsn eqf qzztfr qhhgofzdtzl vitkt zitkt ol qf tstcqzgk qfr uggr qeeteowosozn vozi vitts-eiqok vol-available \N \N regular vol-no-matches \N no applied_n4d 2024-11-22 00:00:00 2024-11-22 00:00:00 1106 862 {mobilePhone} \N -311 Fqrqc 31.77.32: vt eqsstr. Lit gfsn lhtqal tfusoli, eqffgz uxqkqfztt vitf lit eqf lxhhgkz gk igv gyztf wxz zitgktzoeqssn oz egxsr vgka rxkofu dgkfoful. lit lxuutlztr wkofuofu utkdqf qfr gk qkqwoe lhtqaofu ykotfrl vozi itk zg gctkegdt zit sqfuxtl wqkkotkl. O dtfzogftr o voss ltfz itk ghzogfl ygk aorl lxhhgkz qkgxfr vitkt lit ol qfr TYM. vol-available \N \N regular vol-no-matches \N yes applied_self 1970-01-01 00:00:00 1970-01-01 00:00:00 1107 863 {mobilePhone} \N -312 Fqrqc 8.73.32: higft eqss - Lzxrtfz lit vqfzl zg lxhhgkz of zkqflsqzogf qfr of ktuxsqk cgsxfzttkofu. Lgxfr ctkn tbeoztr qfr ol ofztktlztr of zit etkzoyoeqzt ygk cgsxfzttkofu. dtfzogftr sgfu ztkd cgsxfzttkofu. iql tbhtkotfet of oz. Vt lqv itk TYM. fttr zg wt dqzeitr vozi KQE @Ltfnq qfr utz q cortg eqss @Yxfrq Gkqs vol-available \N \N regular vol-no-matches \N yes yes 1970-01-01 00:00:00 1970-01-01 00:00:00 1108 864 {mobilePhone} \N -313 vol-available \N \N regular vol-no-matches \N yes no 2024-11-27 07:00:00 2024-11-27 07:00:00 1109 865 {mobilePhone} \N -314 Lit vqfzl zg cgsxfzttk qsgft. o qlatr qwgxz zit kofu qktq, oy ozl 85-25 dof kort ykgd itk qktq ozl ga. vqfz zg zkqflsqzt gy fttrtr. vqfzl zg egdt zg cgsxfztq vol-temp-unavailable \N \N regular vol-no-matches \N no applied_self 2024-11-18 00:00:00 2024-11-18 00:00:00 1110 866 {mobilePhone} \N -315 Hoeaofu Lhqfoli xh quqof. Lgeetk, Dqn Ziqo, Sofrn igh, Eqhgtokq. - Fqrqc: Zkotr zg eqss dgfrqn 3.73.32, lit tdqostr lit voss eqss dt wqea vtrlrqn 2.73.32. dgkt qezoct zioful, eqf rg qegdhqdn qfnziofu ziqz iql zg rg vozi qezocozotl, lhgkzl, lit ol q ztqeitk ygk aorl lgeetk of zit vttatfrl! Ygk lhgkzl wtlz ol Zkqeitfwtkukofu \f- Liqvan 72.57.39: Itk leitrxst ol eiqfuofu egflzqfzsn qz zit dgdtfz, lg lit hktytkl zg rg dgkt qeegdhqfnofu/ zkqflsqzogf kqzitk ziqf ktuxsqk cgsxfzttkofu, qfr voss stz xl afgv oy lgdtziofu eiqfutl \f- Ltfnq 70.75.39: O zkotr zg qla itk zg qeegdhqfn lgdtgft zg qf qhhgofzdtfz, itk t-dqos qrrktll rgtl fgz tbolz. vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-11-28 14:00:00 2024-11-28 14:00:00 1111 867 {mobilePhone} \N -316 vol-new \N \N regular vol-no-matches \N no applied_self 2024-12-03 12:00:00 2024-12-03 12:00:00 1112 868 {mobilePhone} \N -317 vol-active \N \N regular vol-no-matches \N yes yes 2024-01-02 00:00:00 2024-01-02 00:00:00 1113 869 {mobilePhone} \N -318 Ltfnq 75.73.3539: Lit ol lzoss cgsxfzttkofu of zit UX Ofcqsortflzk. Lgdt yttrwqea ykgd zit CE: Lofr ltik ltik mxykotrtf doz oik! Lot agddz yqlz ptrt Vgeit xfr iqz toftf uxztf Rkqiz mx rtf Aofrtkf.\f\fLtfnq 35.53.3531: Lit ol hktufqfz qfr vgf’z wt cgsxfzttkofu of zit ygklttqwst yxzxkt. Lit qlatr xl zg yofr lgdtgft tslt. vol-temp-unavailable \N \N regular vol-no-matches \N yes yes 2024-02-01 11:00:00 2024-02-01 11:00:00 1114 870 {mobilePhone} \N -391 vol-new \N \N regular vol-no-matches \N yes no 2025-03-21 13:00:00 2025-03-21 13:00:00 1187 943 {mobilePhone} \N -319 -Liqvan 70.73.32: Zkqoftr qfr tbhtkotfetr leiggs ztqeitk (Ukxfrleixst) ykgd Qxlzkqsoq qfr O tfpgn vgkaofu vozi Aorl gy qss qutl. Qslg vgkatr ql q egxfltssgk qfr inhfgzitkqholz. Lit ol qezxqssn qcqosqwst rxkofu zit rqn, dxlz iqct dolxfrtklzggr zit ygkd? vol-inactive \N \N regular vol-no-matches \N no no 2024-12-05 23:00:00 2024-12-05 23:00:00 1115 871 {mobilePhone} \N -320 vol-inactive \N \N regular vol-no-matches \N no no 2024-12-09 07:00:00 2024-12-09 07:00:00 1116 872 {mobilePhone} \N -321 - Liqvan 73.73.32: Wgkf qfr kqoltr of Zxkatn, lzxrotr soztkqzxkt qfr hiosglghin of Olzqfwxs. Lit ol rgofu q dqlztkl of Trxeqzogf of Hgzlrqd. Fg Utkdqf. vol-available \N \N regular vol-no-matches \N yes applied_n4d 2024-12-09 11:00:00 2024-12-09 11:00:00 1117 873 {mobilePhone} \N -323 vol-inactive \N \N regular vol-no-matches \N no no 2024-12-16 07:00:00 2024-12-16 07:00:00 1119 875 {mobilePhone} \N -324 Q7.3 stcts Utkdqf Liqvan 33.50.39: T-dqo zg egddxfozn gxzktqei Ytw. 30 3539 “Itssg,O'd lzoss ofztktlztr. Zit ziofu ol dn vgka leitrxst rgtlf'z qssgv dt rxkofu zit vtta, O eqf rg vttatfrl. +2671563254208” vol-available \N \N regular vol-no-matches \N no no 2024-12-16 17:00:00 2024-12-16 17:00:00 1120 876 {mobilePhone} \N -325 vol-inactive \N \N regular vol-no-matches \N yes yes 2024-12-17 14:00:00 2024-12-17 14:00:00 1121 877 {mobilePhone} \N -326 Dtof Rtxzleifoctqx olz Q3. Oei ltzmt dtof vtoztktl Lzxroxd ygkz vol-new \N \N regular vol-no-matches \N yes no 2024-12-21 09:32:00 2024-12-21 09:32:00 1122 878 {mobilePhone} \N -327 - Liqvan 72.57.39: Lit lzxrotr ofztkfqzogfqs ktsqzogfl (doukqzogf dqfqutdtfz), vgkatr vozi XF ktyxuttl of zxkatn ygk 1 ntqkl, ktuolztkofu ofygkdqzogf qfr qllolzofu vozi ktltzzstdtfz ofztkcotvl. Lit ol ofztktlztr dqofsn of vgkaofu vozi qrxszl (fg tbhtkotfet vozi eiosrktf) qfr hqkzoexsqksn vozi afozzofu gk hkgcorofu lxhhgkz zg lgeoqs vgkatkl, uoctf itk tbhtkotfet vozi ktyxuttl qfr doukqfzl. Lit ol fgz vgkaofu fgv qfr ystbowst vozi zodt. vol-inactive \N \N regular vol-no-matches \N no applied_self 2024-12-21 09:32:00 2024-12-21 09:32:00 1123 879 {mobilePhone} \N -328 vol-inactive \N \N regular vol-no-matches \N no no 2024-12-21 09:32:00 2024-12-21 09:32:00 1124 880 {mobilePhone} \N -329 vol-inactive \N \N regular vol-no-matches \N no yes 2024-12-21 09:32:00 2024-12-21 09:32:00 1125 881 {mobilePhone} \N -330 Atfmq 32.53.31: soctl of Wtksof ygk 2 ntqkl, vgkal ql qf trozgk. Wqea of zit XL, lit cgsxfzttktr vozi q ktyxutt ktsgeqzogf etfztk, qeegdhqfnofu htghst, zqxuiz tfusoli, nguq, qkzl qfr ekqyzl. Lit vqfztr zg rg lgdtziofu lodosqk vitf lit dgctr itkt. Lit eqf cgsxfzttk vozi aorl qfr qrxszl. Lit ol lzoss stqkfofu Utkdqf (exkktfz stcts Q3). Lit ol yktt gf Vtrftlrqnl, soctl of Aktxmwtku qfr eqf egddxzt qkgxfr zit eozn. vol-available \N \N regular vol-no-matches \N no no 2024-12-23 07:00:00 2024-12-23 07:00:00 1126 882 {mobilePhone} \N -331 Liqvan 54.57.3539: Leitrxst eiqfutr, fg sgfutk qcqosqwst vol-inactive \N \N regular vol-no-matches \N no no 2024-12-30 07:00:00 2024-12-30 07:00:00 1127 883 {mobilePhone} \N -332 - Tdqos 58.57.32: Sotwt Fqrqc, Cotstf Rqfa yük rtoft Tdqos! Oei iqwt dtoft Qfdtsrxfu utkqrt qwutleioeaz. Oei vtkrt qw Dgfzqu of Wtksof ltof xfr yktxt doei, doz txei mx qkwtoztf!Sotwt Uküßt, Stfo\f- Liqvan 72.57.39: Zkotr zg eqss q ytv zodtl. Ltfz q ViqzlQhh cgoet fgzt vol-inactive \N \N regular vol-no-matches \N yes no 2025-01-03 07:00:00 2025-01-03 07:00:00 1128 884 {mobilePhone} \N -333 - Liqvan 71.75.39: Wqeaukgxfr of hxwsoe ktsqzogfl, dtroq vgka, tze ygk zit XL tdwqlln. Lzoss fgz estqk vitzitk lit voss wt of Wtksof qyztk Dqkei/Qhkos, lg vgxsr wt ortqs ygk lgdtziofu ligkz ztkd soat aozeitf gk Astortkaqddtk lxhhgkz vol-inactive \N \N regular vol-no-matches \N yes yes 2025-01-06 07:00:00 2025-01-06 07:00:00 1129 885 {mobilePhone} \N -334 - Liqvan 71.57.39: Fqzoct Tfusoli lhtqatk, lhtqal uggr Utkdqf qfr Qkqwoe. Soctr of Hqstlzoft ygk dqfn ntqkl, itk ixlwqfr ol Lnkoqf qfr iql q eiosr. Vossofu zg zkqcts 85-29 dofxztl, dqofsn qyztk vgka gk gf vttatfrl.\f- Ltfnq 70.75.39: Ctkn ktsoqwst, estqk egddxfoeqzogf. Ktlhgfrl zg tdqosl ktuxsqksn.\fatfmq Eitea of 52.58.31: lit ror q ytv qhhgozfdtfzl, vozi q lnkoqf yqdosn, q vgdqf ykgd xakqoft qfr lgdtgft ykgd Wxkaofq Yqlg. Zit rqn vitkt lit hoeatr xh zit vgdqf ykgd xakqoft ykgd zit KQE of Ztdhtisgy qfr vtfz zg Hqfagv vql ctkn royyoexsz wteqxlt oz vql yqk qvqn qfr lit rgtlfz lhtqa xakqofoqf. Qslg zioful qkt fgz qsvqnl estqk qfr lit vgxsr soat zg qcgor zkqctsofu yqk wteqxlt lit iql zg eqfets vgka zg rg oz vioei lit ol iqhhn zg rg wxz oz dqatl oz royyoexsz vitf zioful qkt xfestqk. Qss zit htghst lit qeegdhqfotr tbethz ygk zit lnkoqf yqdosn athz eqssofu itk qyztk qfr lit ytsz wqr wxz lit vgxsr soat ziqz it kgst wtegdtl estqktk zg zitd. VOzi zit lnkoqf yqdosn oz vtfz vtss wteqxlt zitn xfrtklzggr itk kgst. Lit vgxsr soat zg lzoea zg Qkqwoe qfr Yktfei. vol-available \N \N regular vol-no-matches \N no applied_self 2025-01-06 15:00:00 2025-01-06 15:00:00 1130 886 {mobilePhone} \N -335 vol-new \N \N regular vol-no-matches \N no applied_self 2025-01-07 11:00:00 2025-01-07 11:00:00 1131 887 {mobilePhone} \N -336 - Liqvan 72.57.39: Lzxrotr eocos tfuofttkofu of Lnkoq, ofztktlztr dqofsn of odhkgcofu Utkdqf. Vgkatr ql q rqneqkt cgsxfzttk zikgxui QVG, wxz vql rolqhhgofztr eqxlt it rorf’z utz zg hkqezoet Utkdqf ziqz dxei vol-available \N \N regular vol-no-matches \N no yes 2025-01-08 17:00:00 2025-01-08 17:00:00 1132 888 {mobilePhone} \N -337 O xlxqssn vgka of zit exszxkqs yotsr ql qf tctfz hkgrxetk. - Liqvan 79.57.39: Iql dqofsn wqeaukgxfr of gkuqfomofu exszxkqs tctfzl, hqkzoexsqksn vozi soct qezl. Hktytkl vgkaofu vozi qrxszl, qfr ol jxozt wxln of zit lxddtk, wxz egxsr itsh vozi zioful wtygkt. It afgvl zit jxttk letft qfr egxsr itsh ktyxuttl qz Aotyigsmlzkqßt vol-available \N \N regular vol-no-matches \N no applied_self 2025-01-09 16:00:00 2025-01-09 16:00:00 1133 889 {mobilePhone} \N -338 vol-available \N \N regular vol-no-matches \N no applied_self 2025-01-09 19:00:00 2025-01-09 19:00:00 1134 890 {mobilePhone} \N -339 Liqvan 79.58.3532: Eqf rg lhgkzl gk esgzitl lgkzofu, soctl of Hktfmsqxtk Qsstt, Jxozt yktt of ztkdl gy zodt, Utkdqf qfr Tfusoli wtuofftk, Qkqwoe fqzoct vol-active \N \N regular vol-no-matches \N no yes 2025-01-09 20:00:00 2025-01-09 20:00:00 1135 891 {mobilePhone} \N -340 - Liqvan 37.57.39: Lit’l ykgd Eqfqrq, xltr zg ztqei rqfeofu esqlltl zg eiosrktf. Lit ol hqllogfqzt qwgxz rqfeofu (ioh igh, wktqa rqfet,), hkqezoetl dtrozqzogf qfr iql uxortr lgdt htghst wtygkt, fgz hkgytllogfqssn zigxui. Lit ol q egkhgkqzt sqvntk, hqkzoexsqksn ofztktlztr of ktyxutt qfr oddoukqzogf sqv, wxz fgz qf tbhtkz. Lit iql q sqvntk ykotfr vig soctl of Ykqfayxkz Grtk qfr egxsr qla oy zitn vgxsr wt ofztktlztr of lxhhgkzofu vozi qf tctfz soat q hqfts gk hglz-yosd rolexllogf. Lit soctl of Vtrrofu qfr eqf gfsn cgsxfzttk gf vttatfrl. Itk Utkdqf stcts ol E7. vol-temp-unavailable \N \N regular vol-no-matches \N no applied_self 2025-01-10 20:00:00 2025-01-10 20:00:00 1136 892 {mobilePhone} \N -341 O vgka gf lioyzl, ziqz Ol vin O ror fgz ltstez lgdt zodt ykqdtl - Liqvan 38.57.39: Zkotr eqssofu qfr styz iod q dtllqut gf ViqzlQhh\f- Liqvan 85.57.39: Zkotr eqssofu quqof vol-new \N \N regular vol-no-matches \N no no 2025-01-14 14:00:00 2025-01-14 14:00:00 1137 893 {mobilePhone} \N -345 - Liqvan 38.57.39: It rorf’z liqkt iol higft fxdwtk, lg O ltfz iod qf tdqos vozi gxk fxdwtk qfr qlatr iod zg eqss wqea. It iqr ltfz xl tqksotk q solz gy oztdl ygk rgfqzogfl, vioei @Ltfnq liqktr vozi UXl of Ftxaössf vol-inactive \N \N regular vol-no-matches \N yes no 2025-01-16 15:00:00 2025-01-16 15:00:00 1141 897 {mobilePhone} \N -346 Qd qcqosqwst vttatfrl qz qfn zodt gk tqksn of zit dgkfofu gf vttarqnl gk sqztk of zit rqn gf vttarqnl. vol-inactive \N \N regular vol-no-matches \N no no 2025-01-20 07:00:00 2025-01-20 07:00:00 1142 898 {mobilePhone} \N -347 O qslg hsqn qdtkoeqf yggzwqss, O soat zg ektqzt egfztfz.. - Liqvan 38.57.39: Lit ol Dgkgeeqf, qfr iql tbhtkotfet cgsxfzttkofu vozi eiosrktf vozi lhteoqs fttrl of Dgkgeeg. Lit iql wttf of Wtksof ygk 8 ntqkl ql qf “ofysxtfetk dqkatzofu dqfqutk”, qfr iql tbhtkotfet of egqeiofu qfr htklgfqs rtctsghdtfz. vol-inactive \N \N regular vol-no-matches \N no applied_n4d 2025-01-20 13:00:00 2025-01-20 13:00:00 1143 899 {mobilePhone} \N -348 O qd uggr qz ldqss zqsa wxz gy egxklt of Utkdqf ol lzoss q woz lsgv. Cotstf Rqfa Tsolq Ytkkqko - Liqvan 38.57.39: Fqzoct Tfusoli lhtqatk, igzts dqfqutk qfr cgsxfzttktr wtygkt vozi tsrtksn htghst of Sgfrgf. Lit vgkal hqkz-zodt, lit iql rgft Utkdqf xh zg W3, wxz iqlf’z ktqssn hkqezoetr dxei. Lit vgxsr soat zg hkqezoet Utkdqf, qfr soctl of Leiöftvtort. vol-inactive \N \N regular vol-no-matches \N no applied_self 2025-01-21 17:00:00 2025-01-21 17:00:00 1144 900 {mobilePhone} \N -349 vol-new \N \N regular vol-no-matches \N no no 2025-01-21 19:00:00 2025-01-21 19:00:00 1145 901 {mobilePhone} \N -350 - Liqvan 52.53.39: Lit iqz Stikqdz lzxrotkz, iqz tof Dqlztkl of Hiosglghiot qwutleisglltf xfr iqz ltik sqfu rtxzlei xfr Axflz xfztkkoeiztz. Aqff loei ortqstkvtolt Ykotzqul (xfr of FA) yktovossou tfuquotktf . Fqrqc 56.50.39: lit kthsotr gf zit xhrqzt tdqos qfr vqfzl lgdtziofu gf zit vttatfrl. \f- Lit ktl vol-temp-unavailable \N \N regular vol-no-matches \N yes applied_n4d 2025-01-21 19:00:00 2025-01-21 19:00:00 1146 902 {mobilePhone} \N -351 Ql q ykttsqfetk vozi q hqzeivgka gy royytktfz rqnpgwl, dn leitrxst cqkotl ykgd vtta zg vtta. Dn dqof ofztktlz / ziofu O vgxsr exkktfzsn soat zg gyytk ol q ltz gy qkz/lexshzxkt vgkaligh ortql ygk aorl/ngxzi, vioei O exkktfzsn yqeosozqzt qz Qzkoxd Axflzleixst of Ktofoeatfrgky. Zitlt vgkaligh egfethzl eqf wt qrghztr zg cqkogxl eokexdlzqfetl. vol-active \N \N regular vol-no-matches \N no yes 2025-01-21 19:00:00 2025-01-21 19:00:00 1147 903 {mobilePhone} \N -352 vol-new \N \N regular vol-no-matches \N yes yes 2025-01-21 19:00:00 2025-01-21 19:00:00 1148 904 {mobilePhone} \N -353 O vgxsr soat zg iqct dgkt ofygkdqzogf gf igv zg itsh vozi zkqflsqzofu ykgd Yktfei zg Tfusoli. vol-new \N \N regular vol-no-matches \N yes no 2025-01-21 19:00:00 2025-01-21 19:00:00 1149 905 {mobilePhone} \N -354 vol-new \N \N regular vol-no-matches \N no yes 2025-01-21 19:00:00 2025-01-21 19:00:00 1150 906 {mobilePhone} \N -355 Itssg rtqk egddxfozn, O iqct q 9 cgsxfzttkofu rqn hqor stqct ykgd dn vgka ziqz O vqfz zg xlt ygk q uggr eqxlt ziol ntqk vozi cgsxfzttkofu. O lqv ziol ghhgkzxfozn ziqz O zigxuiz O douiz wt q uggr yoz wxz O qd qslg ghtf ygk gzitk ghhgkzxfozotl. Viqz ol odhgkzqfz ygk dt ol ziqz O eqf egddoz zg oz ygk gfsn 75 vttal of iqsy rqnl qfr hktytkqwsn gf Ykorqn qyztkfggf ql O fttr zg lxwdoz zitlt rqnl zg dn dqfqutk ql lggf ql hgllowst ygk qhhkgcqs. O vgxsr qslg qhhkteoqzt oy O egxsr utz lgdtigv q hqkzoeohqzogf stzztk ziqz egxsr wt q hkggy. Hstqlt stz dt afgv oy ngx eqf hkgcort dt zitlt qfr oy O fttr zg rg qfnziofu tslt zg wtegdt q cgsxfzttk lzqkzofu ykgd Ytwkxqkn 0zi xfzos Qhkos 77zi gf Ykorqnl of zit qyztkfggfl. Fqrqc 33.7.39: It ol of Zxkatn kouiz fgv it eqffgz cgsxfzttk gf dgfrqnl. gfet it ol wqea ftbz vtta vt voss iqct qf ofzkg zqsa (ygk zkqflsqzogf lxhhgkz qfr utftkqs o uxtll zgutzitk) vol-inactive \N \N regular vol-no-matches \N yes yes 2025-01-21 19:00:00 2025-01-21 19:00:00 1151 907 {mobilePhone} \N -356 - Liqvan 36.57.39: Lit iql q WQ of ofztkfqzogfqs sqv qfr DQ of ofztkfqzogfqs ixdqfozqkoqf qezogf. Wttf cgsxfzttkofu ygk 6 ntqkl fgv vozi doukqfzl qfr ktyxuttl, ror q sgz gy stuqs eqlt vgka of Wqfuaga. Lit ol fgv vgkaofu ql q fqffn, lg iql tbhtkotfet vozi eiosrktf. Qcqosqwst ykgd 6.55 zoss 8.85 gk qyztk 1 h.d. Lzoss zqaofu Q7 Utkdqf esqlltl.\f- Liqvan 51.53.3539: @Ltfnq ugz of zgxei vozi zit KQE qz Vgzqflzkqßt dtfzogfofu itk lhteoyoe wqeaukgxfr qfr Estdtfl tbhktlltr ofztktlz. Vt hxz zitd of zgxei. Lit iql qf TYM ykgd Hqkol vol-temp-unavailable \N \N regular vol-no-matches \N no yes 2025-01-28 10:00:00 2025-01-28 10:00:00 1152 908 {mobilePhone} \N -357 - Liqvan 34.57.3539: It lzxrotr qss iol soyt of zit Utkdqf leiggs of Eqokg, lg eqf lhtqa Utkdqf ysxtfzsn qfr ol yqdosoqk vozi zit trxeqzogf lnlztd. Vgkal ql q lgyzvqkt rtctsghtk, wttf of Utkdqfn ygk 75 ntqkl. Eqf itsh vozi Fqeiiosyt, hqkzoexsqksn ygk Dqzi qfr leotfet, ql vtss ql Utkdqf. It eqf qslg itsh zttfqutkl vozi xfoctklozn qhhsoeqzogfl. It eqf gfsn cgsxfzttk qyztk 9 rxkofu zit vtta gk gf vttatfrl. \f- Ltfnq 75.50.3539: Xhr. ykgd zit CE. It’l lzoss qezoct zitkt rgofu hkocqzt Dqzi zxzgkofu. vol-available \N \N regular vol-no-matches \N no yes 2025-01-28 12:00:00 2025-01-28 12:00:00 1153 909 {mobilePhone} \N -358 vol-new \N \N regular vol-no-matches \N yes yes 2025-01-28 23:00:00 2025-01-28 23:00:00 1154 910 {mobilePhone} \N -359 Io, O qd q ngxfu hkgytllogfqs of OZ. O iqct tctkn ykorqn yktt ykgd zit tfr gy Ytwkxqkn zg zit tfr gy Dqkei, O vgxsr sgct zg itsh qfr lxhhgkz qz zit Ztdhtsigy ktyxutt etfztk. O ziofa O qd jxozt uggr vozi eiosrktf qfr O vgxsr ktqssn tfpgn lxhhgkzofu zit rqn eqkt qfr egddozzofu zg ektqzt qfr gkuqfomt lgdt yxf qezocozotl ygk zit eiosrktf zg rg. Gf zit lort O eqf qslg itsh vozi qfngft of fttr gy hkgukqddofu gk OZ lxhhgkz! Dn laossl of utkdqf qkt exkktfzsn qkgxfr Q3/W7 wxz O qd odhkgcofu tctkn rqn. Wtlz, Wtfpqdof fqrqc 37,3,39 higft eqss: o dtfzogftr sodoztr zodt it iql (2 vttal) ol q eiqsstfut wxz vt eqf eitea gf dgfrqn vozi kqe. o lxuutlztr zg ltt oy vt iqr qfn gft zodtkl gk qeegdhqfnofu yktfei tfusolei qfr it vql ofzg wgzi gzogfl. qslg it vql ofztkztzltr of gxk eggaofu tctfz. vol-temp-unavailable \N \N regular vol-no-matches \N yes yes 2025-01-31 12:00:00 2025-01-31 12:00:00 1155 911 {mobilePhone} \N -360 vol-new \N \N regular vol-no-matches \N yes no 2025-02-03 07:00:00 2025-02-03 07:00:00 1156 912 {mobilePhone} \N -361 vol-new \N \N regular vol-no-matches \N no no 2025-02-03 16:00:00 2025-02-03 16:00:00 1157 913 {mobilePhone} \N -362 O qd vgkaofu yxss zodt wxz qd qcqosqwst dglz rqnl rxkofu dn sxfei wktqa (73-3hd), lg egxsr wt qcqosqwst zitf ygk qhhgofzdtfzl ygk tbqdhst. - Liqvan 52.53.39: Lit ol q hkgytllogfqs egrtk, rgtl rqzq tfuofttkofu ql itk pgw. Ygk yozftll, lit rgtl Hosqztl, nguq, qfr vtouizl zkqofofu. Ygk zkqflsqzogf, lit egxsr rg oz gfsn oy zit zodt vgkal, lit lqor lit egxsr zqat q wktqa ykgd vgka vitf fttrtr. vol-available \N \N regular vol-no-matches \N yes applied_self 2025-02-03 17:00:00 2025-02-03 17:00:00 1158 914 {mobilePhone} \N -363 Itssg, Liqvan 57.50.39: Lnkoqf, Ofztktlztr of Astortkaqddtk, qslg of ytlzocqsl. Soatl eggaofu q sgz. Lzxrotl tftkun tfuofttkofu of Lnkoq. It vql uocofu egdhxztk egxkltl of ktyxuttl, vgkal of zit ixdqfozqkoqf yotsr, dgkt gf zit zteifoeqs lort. It soctr of Hkquxt wtygkt, hsqnl uxozqk, qfr iql hsqntr wtygkt of ktyxutt egfztbzl. It lttdl dgkt ofztktlztr of gft-rqn tctfzl, it eqdt zg gxk tctfzl ltctkqs zodtl qfr soat \f\fLtfnq 38.58.3531: Vt dqzeitr iod vozi UX Aqks-Dqkb-Lzk. ygk Xfztksqutflgkzotkxfu. It ftctk vtfz zitkt qfr ftctk zgsr xl ziqz it egxsr fgz cgsxfzttk zitkt tctf zigxui zit cgsxfzttk eggkrofqzgk zgsr dt it’r hkgdoltr zg zg oz of Ytw 3531. vol-available \N \N regular vol-no-matches \N no yes 2025-02-04 12:00:00 2025-02-04 12:00:00 1159 915 {mobilePhone} \N -364 vol-new \N \N regular vol-no-matches \N yes no 2025-02-04 12:00:00 2025-02-04 12:00:00 1160 916 {mobilePhone} \N -365 Fqrqc 31.4.39: lit hktyytktr zg wt eqsstr qfqiozq. lgxfrl ktsowst . lqor ntl zg 2.6 qhgofzdtfz qfr vt ofcoztr zg cgsxfztt gf zit lqdt rqn\fLtfnq 70.75.39: iql fgz ktlhgfrtr zg dn sqlz zvg tdqosl of Gezgwtk, zitf lqor lit vql vgkaofu qfr egxsr fgz cgsxfzttk. vol-temp-unavailable \N \N regular vol-no-matches \N yes yes 2025-02-05 15:00:00 2025-02-05 15:00:00 1161 917 {mobilePhone} \N -366 Hstqlt pxlz tdqos gk dtllqut dt zg egfzqez dt. vol-available \N \N regular vol-no-matches \N yes no 2025-02-05 15:00:00 2025-02-05 15:00:00 1162 918 {mobilePhone} \N -367 Xszodqzt Ykolwtt - o qslg hxz zioful o qd fgz tbhtkz qz wxz rgvf zg rg (: Ykotfr gy Zitgrgk vol-active \N \N regular vol-no-matches \N no applied_self 2025-02-06 21:22:00 2025-02-06 21:22:00 1163 919 {mobilePhone} \N -368 Ziol ol q ztlz ykgd Gfxk QKOEO Ltfnq 78.57.3531: It ol cgsxfzttkofu ql q rtctsghtk. vol-active \N \N regular vol-no-matches \N no no 2025-02-07 14:00:00 2025-02-07 14:00:00 1164 920 {mobilePhone} \N -369 Iqhhn zg ztqei ltsy rtytfet! Ykotfr gy Zitgrgk vol-temp-unavailable \N \N regular vol-no-matches \N yes applied_self 2025-02-07 17:00:00 2025-02-07 17:00:00 1165 921 {mobilePhone} \N -370 Dn qcqosqwosozn gf Dgfrqnl & Ykorqnl rthtfrl gf zit vtta--dgkt gyztf ziqf fgz O qd qcqosqwst, wxz lgdtzodtl O'd fgz of Wtksof. O voss qslg wt ugft ykgd 70.52-39.52 (Tqlztk igsorqnl). Gzitk ziqf ziqz, O iqct q sgz gy tbhtkotfet vozi zitqzkt/qezofu of qrrozogf zg zit gzitk gftl O solztr qwgct. - Liqvan 58.58.39: Qdtkoeqf, Yxswkouiz leigsqk exkktfzsn vgkaofu 8 rqnl q vtta of Wtksof ql qf Tfusoli ztqeiofu qllolzqfz zikgxui q hkgukqd kxf wn zit Qdtkoeqf qfr Utkdqf ugctkfdtfzl. Iql q “usgwqs ltqs gy wosoztkqen of Utkdqf” qz zit qrcqfetr stcts, qfr vgxsr wt ctkn ofztktlztr of itshofu gxz vozi Fqeiiosyt. Lit vgkal of Lzkqxßwtku (eqf ug zitkt Zxtlrqn, vtrftlrqn Zixklrqn) gzitkvolt Dgfrqnl qfr Ykorqnl vol-inactive \N \N regular vol-no-matches \N yes yes 2025-02-10 07:00:00 2025-02-10 07:00:00 1166 922 {mobilePhone} \N -371 vol-new \N \N regular vol-no-matches \N yes no 2025-02-10 07:00:00 2025-02-10 07:00:00 1167 923 {mobilePhone} \N -372 Fttr2Rttr ofztkf Ytw-Qhkos 3539 vol-inactive \N \N regular vol-no-matches \N no yes 2025-02-10 16:00:00 2025-02-10 16:00:00 1168 924 {mobilePhone} \N -373 F/q Fttr2Rttr ofztkf Ytw-Qhkos 3539 vol-inactive \N \N regular vol-no-matches \N yes applied_self 2025-02-10 16:00:00 2025-02-10 16:00:00 1169 925 {mobilePhone} \N -374 vol-available \N \N regular vol-no-matches \N yes no 2025-02-11 13:00:00 2025-02-11 13:00:00 1170 926 {mobilePhone} \N -375 Eitll Yggzwqss, wqlatzwqss, eitll, Lxhhgkz vozi - Liqvan 58.58.3539: Iqrttk’l egxlof, vqfzl zg cgsxfzttk vozi itk qfr Itliqd qz zit lqdt UX (Igzts Utftkqzgk) vol-available \N \N regular vol-no-matches \N no applied_self 2025-02-13 11:00:00 2025-02-13 11:00:00 1171 927 {mobilePhone} \N -376 Fqrqc zkotr zg utz of zgxei vozi itk, egxsrf’z yofr zit zodt vol-new \N \N regular vol-no-matches \N no no 2025-02-17 07:00:00 2025-02-17 07:00:00 1172 928 {mobilePhone} \N -377 O'd ktqssn uggr qz hsqnofu zit esqkoftz qfr lofu lg O eqf itsh qfr cgsxfzttk of ztqeiofu dxloe Ltfnq 77.50.39: Ykgd zit CE: Tof Däreitf qxl Räftdqka iqzzt qfutykquz qwtk stortk iqz tl doz rtd Yüikxfulmtxufol wtqfzkqutf foeiz yxfazogfotkz… lot olz fxk tof Ltdtlztk iotk xfr iäzzt rql gift Vgiflozm of Wgff wtqfzkqutf dülltf xfr eoi usqxwt, qd Tfrt vqk qsstl mx agdhsomotkz stortk!” vol-inactive \N \N regular vol-no-matches \N yes applied_self 2025-02-25 18:00:00 2025-02-25 18:00:00 1173 929 {mobilePhone} \N -378 - Liqvan 52.58.39: Wqlltd’l ykotfr, lhtqal Utkdqf qfr eqf itsh vozi Tfusoli igdtvgka, wxz fgz Utkdqf. \f\f- PE (hkgzgznht) vol-active \N \N regular vol-no-matches \N yes applied_n4d 2025-02-25 18:00:00 2025-02-25 18:00:00 1174 930 {mobilePhone} \N -379 - Liqvan 58.58.39: Tunhzoqf pxlz ktetfzsn dgctr zg Wtksof. 1 ntqkl gy Tbhtkotfet vgkaofu vozi ktyxuttl of zit XF qutfen ygk doukqzogf (OGD) of Tunhz qfr Eqkozql Tunhz. Qz zit dgdtfz fgz tdhsgntr, eqf cgsxfzttk gf vttarqnl. WQ of yoft qkzl, wxz vgkatr dglzsn of rtctsghdtfz (Eqkozql, egddxfozn tdhgvtkdtfz vozi ktyxuttl of Tunhz, uocofu exszxkqs gkotfzqzogf esqlltl)\f- Ltfnq 75.50.39: Lit dgctr zg q royytktfz Wtmoka qfr lzghhtr cgsxfzttkofu of Glztvtu of Pxft 3539. Oz vgxsr wt uktqz zg ktqei gxz zg itk.\f\f- Liqvan 38.50.39: “O dgctr zg Dgqwoz sqlz dgfzi qfr xfygkzxfqztsn oz vql iqkr zg egfzofxt cgsxfzttkofu vozi zit qeegddgrqzogf etfzkt ql oz vql q ctkn sgfu egddxzt. Qz zit dgdtfz dn zodt ol q woz zouiz ql O pxlz lzqkztr q Utkdqf egxklt, qfr oz zqatl hsqet 9 rqnl q vtta! Wxz of zit yxzxkt, O vgxsr wt iqhhn zg egfzqez ngx zg htkiqhl yofr qfgzitk cgsxfzttkofu ghhgkzxfozn vitf dn egxklt iql egfesxrtr qfr O iqct dgkt yktt zodt. \f Qss zit wtlz,\fQsqq” vol-temp-unavailable \N \N regular vol-no-matches \N no applied_self 2025-02-25 18:00:00 2025-02-25 18:00:00 1175 931 {mobilePhone} \N -380 O iqct q nguq ztqeitk ygk eiosrktf etkzoyoeqzogf qfr vgxsr wt iqhhn zg vgka vozi eiosrktf. Zkqctsofu fgv (52.58.3539). Vt voss zqsa quqof gf Zixklrqn (dqkei 1zi). Lit ol volltfleiqysoeitk Dozqkwtoztk of zit Xfoctklozn, ctkn iqhhn zg gyytk Fqeiiosyt yük Tfusolei, Dqzit, Rtxzlei, ql vtss ql nguq ygk eiosrktf. Qcqosqwst gfsn gf Ykorqnl vol-active \N \N regular vol-no-matches \N yes applied_n4d 2025-02-25 18:00:00 2025-02-25 18:00:00 1176 932 {mobilePhone} \N -381 vol-new \N \N regular vol-no-matches \N no yes 2025-02-25 18:00:00 2025-02-25 18:00:00 1177 933 {mobilePhone} \N -382 73.58.39: Soctl gf zit Ustolrktotea lofet q ytv dgfzil, qfr voss wt itkt ygk qz stqlz 7 ntqk. It ol hqllogfqzt qwgxz iolzgkn qfr hgsozoel, vgkatr ygk 3 dofolztkl vozi zit Ukttf Hqkzn of Wtsuoxd. It’l wttf q zxzgk ygk sqv qfr sqfuxqut (Tfusoli qfr Yktfei), iql q sqv wqeaukgxfr. Ror q sgz gy und yozftll. Hktytkl vgkal vozi qrxszl gk zttfqutkl. Ctkn wqloe Utkdqf, it’l q hqkz-zodt zgxk uxort. Eitea ghhgkzxfozotl ygk Yktfei zkqflsqzogf vozi lgeoqs vgkatkl, Qxlysüut qfr Fqeiiosyt ygk Tfusoli vol-inactive \N \N regular vol-no-matches \N yes no 2025-02-25 18:00:00 2025-02-25 18:00:00 1178 934 {mobilePhone} \N -383 - Fqrqc Qhkos 3539: Lit kthsotr zg q dtllqut qwgxz Wtustozxfu gf Ztstukqd (Aofg) qfr egddozztr zg rgofu oz vol-new \N \N regular vol-no-matches \N yes applied_self 2025-03-04 12:00:00 2025-03-04 12:00:00 1179 935 {mobilePhone} \N -384 vol-new \N \N regular vol-no-matches \N no applied_self 2025-03-06 12:00:00 2025-03-06 12:00:00 1180 936 {mobilePhone} \N -385 vol-available \N \N regular vol-no-matches \N undefined no 1970-01-01 00:00:00 1970-01-01 00:00:00 1181 937 {mobilePhone} \N -386 - Liqvan 74.58.3532: Lit itshtr rxkofu zit Oyzqk. Lit vqfzl zg rg gfsn qeegdhqfnofu, wteqxlt itk leitrxst ol fgz estqk (rgofu itk DQ) vol-inactive \N \N regular vol-no-matches \N no no 2025-03-10 14:00:00 2025-03-10 14:00:00 1182 938 {mobilePhone} \N -387 Ltfnq 38.73.3539: Zitkt vql q lsouizsn vtokr tdqos tbeiqfut of Dqn 3539, zitf fgziofu iqhhtftr, zitf it vql qz zit CgsxfZtq of Fgctdwtk qfr lqor it vql wxln wxz vql lzoss ofztktlztr of cgsxfzttkofu. vol-available \N \N regular vol-no-matches \N no applied_self 2025-03-17 07:00:00 2025-03-17 07:00:00 1183 939 {mobilePhone} \N -388 Lit’l q lgeoqs vgkatk, vgkal qz q lzxrtfz etfztk vol-available \N \N regular vol-no-matches \N yes yes 2025-03-17 07:00:00 2025-03-17 07:00:00 1184 940 {mobilePhone} \N -389 vol-new \N \N regular vol-no-matches \N yes no 2025-03-17 08:00:00 2025-03-17 08:00:00 1185 941 {mobilePhone} \N -390 - Liqvan 39.58.3539: It’l qf qezgk (lzqut qfr lekttf), vtfz zg qkz leiggs, lzxrotr higzgukqhin. Rgtl hgzztkn, qfr iqr dqfn ntqkl tbhtkotfet ql q uqkrtftk of Sgfrgf. It iqr tbhtkotfet vgkaofu vozi eiosrktf of q etfztk ygk aorl vozi qxzold, itshtr zitd stqkf zg ktqr, eqf qslg itsh vozi Tfusooli igdtvgka. Wgkf of 7601 (rgtl it fttr q Dtqlstl cqeeofqzogf?), ghtf zg egddxzofu xh zg qf igxk. vol-available \N \N regular vol-no-matches \N no no 2025-03-18 21:00:00 2025-03-18 21:00:00 1186 942 {mobilePhone} \N -392 Pqdot 52.70: lzxrnofu ygk qzstqlz q ntqk qfr q iqsy sgfutk of Wtksof. Dqofsn ziofaofu qwgxz cgsxfzttkofu of qeegddgrqzogf etfztkl. soctl of leigftwtku, wtsgv mggosguolitk uqkztf. Rgtlf#z afgv esqll leitrxst kouiz fgv, esqlltl qkt gyztf xfzos 9hd, lgdtzodtl xfzos 8hd. Voss afgv viqz leitrxst sggal soat ftbz vtta. Ofztktlztr of qkzl qfr ekqyzl. Iql q woat lg zkqctssofu sgfu rolzqfetl olfz q hkgwstd. Ofztktlztr of lhkqeieqyt leigftwtku qfr Dtfzgklioh of { + const agentsJson = (await fetchJsonFromUrl(seedAgentsFile)) as AgentJSON[]; + const userRepository = getRepository(dataSource, User); + const personRepository = getRepository(dataSource, Person); + + const pwHash = await hashPassword("no_password"); + + for (const agentJson of agentsJson ?? []) { + for (const personJson of agentJson.person ?? []) { + const email = personJson.email; + if (!email) {continue;} + + const existing = await userRepository.findOne({ where: { email } }); + if (existing) {continue;} + + const person = await personRepository.findOne({ where: { email } }); + if (!person) { + logger.warn( + `Person ${email} not found — seedAgents must run before seedAgentUsers.`, + ); + continue; + } + + const user = new User({ + email, + password: pwHash, + role: UserRole.USER, + isActive: true, + person, + }); + await userRepository.save(user); + logger.info(`Created agent user: ${email}`); + } + } +} diff --git a/src/data/seeds/run.ts b/src/data/seeds/run.ts new file mode 100644 index 00000000..05fcc406 --- /dev/null +++ b/src/data/seeds/run.ts @@ -0,0 +1,11 @@ +import { initDatabase } from ".."; +import { dataSource } from "../data-source"; +import { seed } from "./seed"; + +initDatabase() + .then(() => seed(dataSource)) + .then(() => process.exit(0)) + .catch((err) => { + console.error(err); + process.exit(1); + }); diff --git a/src/data/seeds/seed.ts b/src/data/seeds/seed.ts index 0ba8b288..2ff5017a 100644 --- a/src/data/seeds/seed.ts +++ b/src/data/seeds/seed.ts @@ -1,5 +1,6 @@ import { DataSource } from "typeorm"; import { check } from ".."; +import { seedAgentUsers } from "./populate/agent-user.seed"; import { seedAgents } from "./populate/agent.seed"; import { devTime } from "./populate/dev-parsing"; import { seedOpportunities } from "./populate/opportunity.seed"; @@ -16,6 +17,7 @@ export async function seed(dataSource: DataSource) { devTime(dataSource); } else { await seedAgents(dataSource); + await seedAgentUsers(dataSource); await seedOpportunities(dataSource); await seedVolunteers(dataSource); } diff --git a/src/data/seeds/user.seed.ts b/src/data/seeds/user.seed.ts index 22a38e17..42af76a4 100644 --- a/src/data/seeds/user.seed.ts +++ b/src/data/seeds/user.seed.ts @@ -48,6 +48,34 @@ export async function seedUser(dataSource: DataSource) { person: personCoordinator, }); + const personCoordinator2 = new Person({ + firstName: "Michael", + middleName: "Coordinator", + lastName: "Doe", + }); + + const coordinatorUser2 = new User({ + email: "michael.doe@need4deed.org", + password: await hashPassword("no_password"), + role: UserRole.COORDINATOR, + isActive: true, + person: personCoordinator2, + }); + + const personCoordinator3 = new Person({ + firstName: "Julia", + middleName: "Coordinator", + lastName: "Doe", + }); + + const coordinatorUser3 = new User({ + email: "julia.doe@need4deed.org", + password: await hashPassword("no_password"), + role: UserRole.COORDINATOR, + isActive: true, + person: personCoordinator3, + }); + const postcode12345 = await postcodeRepository.findOne({ where: { value: "12345" }, }); @@ -81,7 +109,13 @@ export async function seedUser(dataSource: DataSource) { }); try { - await userRepository.save([userAdmin, coordinatorUser, userUser]); + await userRepository.save([ + userAdmin, + coordinatorUser, + coordinatorUser2, + coordinatorUser3, + userUser, + ]); } catch (_error) { logger.info("Skipping seeding users as they already seeded."); } From 5fbcd89caecef5ea09c604af10c2941b546c06a3 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Mon, 13 Jul 2026 13:11:43 +0200 Subject: [PATCH 80/89] ci: fix bootstrap build context to be/ root (#754) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dockerfile copies package.json, yarn.lock, and full source — needs the be/ root as context, not ./data-bootstrap alone. Co-authored-by: Claude Sonnet 4.6 --- .github/workflows/build-bootstrap.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-bootstrap.yaml b/.github/workflows/build-bootstrap.yaml index 59db02d0..3fcda13f 100644 --- a/.github/workflows/build-bootstrap.yaml +++ b/.github/workflows/build-bootstrap.yaml @@ -26,6 +26,7 @@ jobs: - name: Build and push bootstrap image uses: docker/build-push-action@v6 with: - context: ./data-bootstrap + context: . + file: data-bootstrap/Dockerfile push: true tags: ghcr.io/need4deed-org/bootstrap:latest From b21d1a6d44821d51f4037b40b93103d3930232e0 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Mon, 13 Jul 2026 15:52:52 +0200 Subject: [PATCH 81/89] fix: add genesis migration to unblock migration chain on empty DB (#756) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 73-migration chain was written against a pre-existing schema and cannot replay from scratch — migration #2 fails with 'relation language does not exist'. This genesis migration (timestamp 1763036250000) runs first on any DB and: - Creates all enums, sequences, tables and constraints in their current final form using IF NOT EXISTS / DO EXCEPTION blocks (idempotent) - Marks all 73 existing migrations as already-run in be_migrations so TypeORM skips them on both fresh and existing DBs Co-authored-by: Claude Sonnet 4.6 --- .../1763036250000-genesis-base-schema.ts | 1148 +++++++++++++++++ 1 file changed, 1148 insertions(+) create mode 100644 src/data/migrations/1763036250000-genesis-base-schema.ts diff --git a/src/data/migrations/1763036250000-genesis-base-schema.ts b/src/data/migrations/1763036250000-genesis-base-schema.ts new file mode 100644 index 00000000..e7453585 --- /dev/null +++ b/src/data/migrations/1763036250000-genesis-base-schema.ts @@ -0,0 +1,1148 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class GenesisBaseSchema1763036250000 implements MigrationInterface { + name = "GenesisBaseSchema1763036250000"; + + public async up(queryRunner: QueryRunner): Promise { + // ─── ENUMS (idempotent via DO blocks) ──────────────────────────────────── + + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.accompanying_language_to_translate_enum AS ENUM ('deutsche','englishOk','noTranslation'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.agent_engagement_status_enum AS ENUM ('agent-new','agent-active','agent-unresponsive','agent-inactive'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.agent_person_role_enum AS ENUM ('social-worker','volunteer-coordinator','manager','project-coordinator','psychologist','project-staff','childcare-worker','other'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.agent_person_status_enum AS ENUM ('active','pending'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.agent_search_status_enum AS ENUM ('agent-searching','agent-not-needed','agent-volunteers-found'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.agent_trust_level_enum AS ENUM ('agent-high','agent-low','agent-unknown'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.agent_type_enum AS ENUM ('AE','GU1','GU2','GU2+','GU3','NU','ASOG','counseling-center','tandem','multiple-social-support'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.appreciation_title_enum AS ENUM ('t-shirt','benefit-card','tote-bag'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.comment_entity_type_enum AS ENUM ('none','activity','agent','comment','category','district','language','lead_from','opportunity','skill','volunteer'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.communication_communication_type_enum AS ENUM ('briefed','first-inquiry-sent','opportunity-list-sent','status-update','post-match-followup','matched','accompanying-not-found','accompanying-matched','opportunity-updated','opportunity-confirmation'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.communication_contact_method_enum AS ENUM ('email','phone-number','telegram','whatsapp','signal','sms','voicenote','video-call'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.communication_contact_type_enum AS ENUM ('called','tried-to-call','texted-or-emailed','other'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.config_config_key_enum AS ENUM ('schema','reference_data','master_data','truncate-all'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.deal_language_proficiency_enum AS ENUM ('intermediate','fluent','native','advanced','beginner'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.deal_language_purpose_enum AS ENUM ('general','translation','recipient'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.deal_type_enum AS ENUM ('volunteer','opportunity'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.document_type_enum AS ENUM ('measles-vacc-cert','good-conduct-cert','CGC-application','passport-copy'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.event_n4d_type_enum AS ENUM ('party','workshop'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.field_translation_entity_type_enum AS ENUM ('none','activity','agent','comment','category','district','language','lead_from','opportunity','skill','volunteer'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.notion_relation_host_type_enum AS ENUM ('none','activity','agent','comment','category','district','language','lead_from','opportunity','skill','volunteer'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.notion_relation_tenant_type_enum AS ENUM ('none','activity','agent','comment','category','district','language','lead_from','opportunity','skill','volunteer'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.opportunity_status_enum AS ENUM ('opp-new','opp-searching','opp-active','opp-inactive','opp-past'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.opportunity_status_match_enum AS ENUM ('opp-vol-pending-match','opp-vol-no-matches','opp-vol-matched','opp-vol-needs-rematch','opp-vol-unmatched','opp-vol-past'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.opportunity_translation_type_enum AS ENUM ('deutsche','englishOk','noTranslation'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.opportunity_type_enum AS ENUM ('accompanying','regular','events'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.opportunity_volunteer_status_enum AS ENUM ('opp-pending','opp-matched','opp-active','opp-past'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.option_item_type_enum AS ENUM ('none','activity','agent','comment','category','district','language','lead_from','opportunity','skill','volunteer'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.timeline_content_entity_type_enum AS ENUM ('none','activity','agent','comment','category','district','language','lead_from','opportunity','skill','volunteer'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.timeline_content_type_enum AS ENUM ('create','update','remove','comment','status','matching'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.timeline_source_entity_type_enum AS ENUM ('none','activity','agent','comment','category','district','language','lead_from','opportunity','skill','volunteer'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.timeline_target_entity_type_enum AS ENUM ('none','activity','agent','comment','category','district','language','lead_from','opportunity','skill','volunteer'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.timeslot_occasional_enum AS ENUM ('weekends','weekdays'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.user_role_enum AS ENUM ('user','coordinator','agent','volunteer','admin'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.volunteer_status_appreciation_enum AS ENUM ('t-shirt','benefit-card','tote-bag'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.volunteer_status_cgc_enum AS ENUM ('undefined','yes','no','asked_to_apply','applied_self','applied_n4d'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.volunteer_status_cgc_process_enum AS ENUM ('uploaded','missing'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.volunteer_status_communication_enum AS ENUM ('called','email-sent','briefed','tried-call','not-responding'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.volunteer_status_engagement_enum AS ENUM ('vol-new','vol-active','vol-available','vol-temp-unavailable','vol-inactive','vol-unresponsive'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.volunteer_status_match_enum AS ENUM ('vol-no-matches','vol-pending-match','vol-matched','vol-needs-rematch','vol-past'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.volunteer_status_type_enum AS ENUM ('accompanying','regular','events','regular-accompanying'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN CREATE TYPE public.volunteer_status_vaccination_enum AS ENUM ('undefined','yes','no','asked_to_apply','applied_self','applied_n4d'); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + + // ─── SEQUENCES ─────────────────────────────────────────────────────────── + + for (const seq of [ + "accompanying_id_seq", + "activity_id_seq", + "activity_log_id_seq", + "address_id_seq", + "agent_id_seq", + "agent_language_id_seq", + "agent_person_id_seq", + "agent_postcode_id_seq", + "appreciation_id_seq", + "category_id_seq", + "comment_id_seq", + "comment_person_id_seq", + "communication_id_seq", + "config_id_seq", + "deal_id_seq", + "deal_activity_id_seq", + "deal_district_id_seq", + "deal_language_id_seq", + "deal_skill_id_seq", + "deal_timeslot_id_seq", + "district_id_seq", + "district_postcode_id_seq", + "document_id_seq", + "event_n4d_id_seq", + "event_translation_id_seq", + "field_translation_id_seq", + "language_id_seq", + "lead_from_id_seq", + "notion_relation_id_seq", + "opportunity_id_seq", + "opportunity_volunteer_id_seq", + "option_id_seq", + "organization_id_seq", + "person_id_seq", + "post_id_seq", + "postcode_id_seq", + "skill_id_seq", + "testimonial_id_seq", + "timeline_id_seq", + "timeslot_id_seq", + "trusted_domain_id_seq", + "user_id_seq", + "volunteer_id_seq", + ]) { + await queryRunner.query( + `CREATE SEQUENCE IF NOT EXISTS public.${seq} AS integer START 1 INCREMENT 1 NO MINVALUE NO MAXVALUE CACHE 1`, + ); + } + + // ─── TABLES ────────────────────────────────────────────────────────────── + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.language ( + id integer NOT NULL, + iso_code character varying NOT NULL, + title character varying NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.postcode ( + id integer NOT NULL, + longitude numeric(10,7), + latitude numeric(9,7), + value character varying NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.district ( + id integer NOT NULL, + title character varying NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.category ( + id integer NOT NULL, + title character varying NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.skill ( + id integer NOT NULL, + title character varying NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.lead_from ( + id integer NOT NULL, + count integer DEFAULT 0 NOT NULL, + title character varying NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.address ( + id integer NOT NULL, + title character varying, + street character varying, + postcode_id integer NOT NULL, + city character varying + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.person ( + id integer NOT NULL, + first_name character varying NOT NULL, + middle_name character varying, + last_name character varying, + email character varying, + phone character varying, + avatar_url character varying, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + address_id integer, + preferred_communication_type text[] DEFAULT '{mobilePhone}'::text[] NOT NULL, + landline character varying + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public."user" ( + id integer NOT NULL, + email character varying NOT NULL, + password character varying NOT NULL, + is_active boolean DEFAULT false NOT NULL, + role public.user_role_enum DEFAULT 'user'::public.user_role_enum NOT NULL, + language character varying DEFAULT 'en'::character varying NOT NULL, + timezone character varying DEFAULT 'CET'::character varying NOT NULL, + person_id integer, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.organization ( + id integer NOT NULL, + title character varying NOT NULL, + email character varying, + phone character varying, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + address_id integer NOT NULL, + person_id integer NOT NULL, + website character varying + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.district_postcode ( + id integer NOT NULL, + district_id integer NOT NULL, + postcode_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.agent ( + id integer NOT NULL, + title character varying NOT NULL, + type public.agent_type_enum, + website character varying, + trust_level public.agent_trust_level_enum DEFAULT 'agent-unknown'::public.agent_trust_level_enum NOT NULL, + search_status public.agent_search_status_enum DEFAULT 'agent-not-needed'::public.agent_search_status_enum NOT NULL, + services text[], + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + address_id integer, + district_id integer, + engagement_status public.agent_engagement_status_enum DEFAULT 'agent-new'::public.agent_engagement_status_enum NOT NULL, + info character varying, + organization_id integer, + nid character varying + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.agent_postcode ( + id integer NOT NULL, + agent_id integer NOT NULL, + postcode_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.timeslot ( + id integer NOT NULL, + info character varying, + rrule character varying, + start timestamp without time zone, + "end" timestamp without time zone, + occasional public.timeslot_occasional_enum + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.deal ( + id integer NOT NULL, + type public.deal_type_enum NOT NULL, + postcode_id integer NOT NULL, + info character varying, + category_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.activity ( + id integer NOT NULL, + title character varying NOT NULL, + category_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.volunteer ( + id integer NOT NULL, + info_about character varying, + info_experience character varying, + status_engagement public.volunteer_status_engagement_enum DEFAULT 'vol-new'::public.volunteer_status_engagement_enum NOT NULL, + status_communication public.volunteer_status_communication_enum, + status_appreciation public.volunteer_status_appreciation_enum, + status_type public.volunteer_status_type_enum, + status_match public.volunteer_status_match_enum DEFAULT 'vol-no-matches'::public.volunteer_status_match_enum NOT NULL, + status_cgc_process public.volunteer_status_cgc_process_enum, + status_vaccination public.volunteer_status_vaccination_enum DEFAULT 'undefined'::public.volunteer_status_vaccination_enum NOT NULL, + status_cgc public.volunteer_status_cgc_enum DEFAULT 'undefined'::public.volunteer_status_cgc_enum NOT NULL, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + deal_id integer, + person_id integer, + preferred_communication_type text[] DEFAULT '{mobilePhone}'::text[] NOT NULL, + date_return timestamp without time zone, + nid character varying, + status_vaccination_date timestamp without time zone, + status_cgc_application_date timestamp without time zone, + status_cgc_date timestamp without time zone, + share_contact boolean DEFAULT true NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.accompanying ( + id integer NOT NULL, + address character varying NOT NULL, + name character varying NOT NULL, + phone character varying, + email character varying, + date timestamp with time zone NOT NULL, + language_to_translate public.accompanying_language_to_translate_enum, + postcode_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.opportunity ( + id integer NOT NULL, + title character varying NOT NULL, + type public.opportunity_type_enum NOT NULL, + info character varying, + translation_type public.opportunity_translation_type_enum, + info_confidential character varying, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + deal_id integer, + agent_id integer, + status public.opportunity_status_enum DEFAULT 'opp-new'::public.opportunity_status_enum NOT NULL, + number_volunteers integer DEFAULT 1 NOT NULL, + accompanying_id integer, + nid character varying, + status_match public.opportunity_status_match_enum DEFAULT 'opp-vol-no-matches'::public.opportunity_status_match_enum NOT NULL, + district_id integer, + contact_person_id integer, + submitted_by_person_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.opportunity_volunteer ( + id integer NOT NULL, + status public.opportunity_volunteer_status_enum NOT NULL, + opportunity_id integer NOT NULL, + volunteer_id integer NOT NULL, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.option ( + id integer NOT NULL, + item_type public.option_item_type_enum NOT NULL, + item_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.field_translation ( + id integer NOT NULL, + field_name character varying DEFAULT 'title'::character varying NOT NULL, + language_id integer, + entity_type public.field_translation_entity_type_enum DEFAULT 'none'::public.field_translation_entity_type_enum NOT NULL, + entity_id integer NOT NULL, + translation text NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.timeline ( + id integer NOT NULL, + source_entity_type public.timeline_source_entity_type_enum, + source_entity_id integer, + target_entity_type public.timeline_target_entity_type_enum NOT NULL, + target_entity_id integer NOT NULL, + content_entity_type public.timeline_content_entity_type_enum NOT NULL, + content_entity_id integer NOT NULL, + content_type public.timeline_content_type_enum NOT NULL, + "timestamp" timestamp without time zone DEFAULT now() NOT NULL, + content text NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.event_n4d ( + id integer NOT NULL, + is_active boolean DEFAULT false NOT NULL, + date timestamp with time zone NOT NULL, + date_end timestamp with time zone, + type public.event_n4d_type_enum DEFAULT 'party'::public.event_n4d_type_enum NOT NULL, + pic character varying(256), + location_link character varying(256), + rsvp_link character varying(256) NOT NULL, + followup_link character varying(256), + address character varying(256) NOT NULL, + host_name character varying(256), + language_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.event_translation ( + id integer NOT NULL, + title character varying(256), + subtitle character varying(256), + menu_title character varying(256), + time_str character varying(256), + location_comment character varying(256), + description text NOT NULL, + short_description character varying(512) NOT NULL, + additional_title character varying(256), + additional_info jsonb, + outro text, + followup_text character varying(256), + eventn4d_id integer, + language_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.testimonial ( + id integer NOT NULL, + is_active boolean DEFAULT false NOT NULL, + name character varying(256), + pic character varying(256), + person_id integer, + language_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.agent_language ( + id integer NOT NULL, + agent_id integer NOT NULL, + language_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.agent_person ( + id integer NOT NULL, + role public.agent_person_role_enum DEFAULT 'other'::public.agent_person_role_enum NOT NULL, + agent_id integer NOT NULL, + person_id integer NOT NULL, + status public.agent_person_status_enum DEFAULT 'active'::public.agent_person_status_enum NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.appreciation ( + id integer NOT NULL, + title public.appreciation_title_enum NOT NULL, + date_due timestamp without time zone, + date_delivery timestamp without time zone, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + opportunity_id integer, + volunteer_id integer NOT NULL, + user_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.comment ( + id integer NOT NULL, + text text NOT NULL, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL, + language_id integer, + user_id integer NOT NULL, + entity_type public.comment_entity_type_enum DEFAULT 'none'::public.comment_entity_type_enum NOT NULL, + entity_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.comment_person ( + id integer NOT NULL, + comment_id integer NOT NULL, + person_id integer NOT NULL, + read_at timestamp without time zone + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.communication ( + id integer NOT NULL, + contact_type public.communication_contact_type_enum NOT NULL, + contact_method public.communication_contact_method_enum NOT NULL, + communication_type public.communication_communication_type_enum, + date timestamp without time zone DEFAULT now() NOT NULL, + volunteer_id integer, + user_id integer, + agent_id integer, + opportunity_id integer, + CONSTRAINT "CHK_0ea4b79edeac5eaa19c54735c7" CHECK (((CASE WHEN (volunteer_id IS NOT NULL) THEN 1 ELSE 0 END + CASE WHEN (agent_id IS NOT NULL) THEN 1 ELSE 0 END) + CASE WHEN (opportunity_id IS NOT NULL) THEN 1 ELSE 0 END) >= 1) + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.config ( + id integer NOT NULL, + config_key public.config_config_key_enum NOT NULL, + config_value boolean + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.deal_activity ( + id integer NOT NULL, + deal_id integer NOT NULL, + activity_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.deal_district ( + id integer NOT NULL, + deal_id integer NOT NULL, + district_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.deal_language ( + id integer NOT NULL, + proficiency public.deal_language_proficiency_enum DEFAULT 'advanced'::public.deal_language_proficiency_enum, + purpose public.deal_language_purpose_enum DEFAULT 'general'::public.deal_language_purpose_enum, + deal_id integer NOT NULL, + language_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.deal_skill ( + id integer NOT NULL, + deal_id integer NOT NULL, + skill_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.deal_timeslot ( + id integer NOT NULL, + deal_id integer NOT NULL, + timeslot_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.document ( + id integer NOT NULL, + type public.document_type_enum NOT NULL, + s3_key character varying NOT NULL, + original_name character varying NOT NULL, + mime_type character varying NOT NULL, + volunteer_id integer, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.notion_relation ( + id integer NOT NULL, + payroll character varying, + host_nid character varying NOT NULL, + host_type public.notion_relation_host_type_enum NOT NULL, + host_id integer NOT NULL, + tenant_nid character varying NOT NULL, + tenant_type public.notion_relation_tenant_type_enum NOT NULL, + tenant_id integer + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.post ( + id integer NOT NULL, + text text NOT NULL, + author_id integer NOT NULL, + agent_id integer, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.post_opportunity ( + post_id integer NOT NULL, + opportunity_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.post_person ( + post_id integer NOT NULL, + person_id integer NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.activity_log ( + id integer NOT NULL, + date date NOT NULL, + hours numeric(5,2) NOT NULL, + opportunity_volunteer_id integer NOT NULL, + created_at timestamp without time zone DEFAULT now() NOT NULL, + updated_at timestamp without time zone DEFAULT now() NOT NULL + )`); + + await queryRunner.query(` + CREATE TABLE IF NOT EXISTS public.trusted_domain ( + id integer NOT NULL, + domain character varying NOT NULL, + created_at timestamp without time zone DEFAULT now() NOT NULL + )`); + + // ─── SEQUENCE OWNERSHIP & COLUMN DEFAULTS ───────────────────────────────── + // Both are idempotent (SET DEFAULT overwrites, OWNED BY reassigns). + + const seqOwners: [string, string, string][] = [ + ["accompanying_id_seq", "accompanying", "id"], + ["activity_id_seq", "activity", "id"], + ["activity_log_id_seq", "activity_log", "id"], + ["address_id_seq", "address", "id"], + ["agent_id_seq", "agent", "id"], + ["agent_language_id_seq", "agent_language", "id"], + ["agent_person_id_seq", "agent_person", "id"], + ["agent_postcode_id_seq", "agent_postcode", "id"], + ["appreciation_id_seq", "appreciation", "id"], + ["category_id_seq", "category", "id"], + ["comment_id_seq", "comment", "id"], + ["comment_person_id_seq", "comment_person", "id"], + ["communication_id_seq", "communication", "id"], + ["config_id_seq", "config", "id"], + ["deal_id_seq", "deal", "id"], + ["deal_activity_id_seq", "deal_activity", "id"], + ["deal_district_id_seq", "deal_district", "id"], + ["deal_language_id_seq", "deal_language", "id"], + ["deal_skill_id_seq", "deal_skill", "id"], + ["deal_timeslot_id_seq", "deal_timeslot", "id"], + ["district_id_seq", "district", "id"], + ["district_postcode_id_seq", "district_postcode", "id"], + ["document_id_seq", "document", "id"], + ["event_n4d_id_seq", "event_n4d", "id"], + ["event_translation_id_seq", "event_translation", "id"], + ["field_translation_id_seq", "field_translation", "id"], + ["language_id_seq", "language", "id"], + ["lead_from_id_seq", "lead_from", "id"], + ["notion_relation_id_seq", "notion_relation", "id"], + ["opportunity_id_seq", "opportunity", "id"], + ["opportunity_volunteer_id_seq", "opportunity_volunteer", "id"], + ["option_id_seq", "option", "id"], + ["organization_id_seq", "organization", "id"], + ["person_id_seq", "person", "id"], + ["post_id_seq", "post", "id"], + ["postcode_id_seq", "postcode", "id"], + ["skill_id_seq", "skill", "id"], + ["testimonial_id_seq", "testimonial", "id"], + ["timeline_id_seq", "timeline", "id"], + ["timeslot_id_seq", "timeslot", "id"], + ["trusted_domain_id_seq", "trusted_domain", "id"], + ["user_id_seq", '"user"', "id"], + ["volunteer_id_seq", "volunteer", "id"], + ]; + + for (const [seq, tbl, col] of seqOwners) { + await queryRunner.query( + `ALTER SEQUENCE public.${seq} OWNED BY public.${tbl}.${col}`, + ); + await queryRunner.query( + `ALTER TABLE ONLY public.${tbl} ALTER COLUMN ${col} SET DEFAULT nextval('public.${seq}'::regclass)`, + ); + } + + // ─── PRIMARY KEYS ──────────────────────────────────────────────────────── + + const pks: [string, string, string][] = [ + ["accompanying", "PK_d0fd931d21e719a937ba4ca36ac", "id"], + ["activity", "PK_24625a1d6b1b089c8ae206fe467", "id"], + ["activity_log", "PK_067d761e2956b77b14e534fd6f1", "id"], + ["address", "PK_d92de1f82754668b5f5f5dd4fd5", "id"], + ["agent", "PK_1000e989398c5d4ed585cf9a46f", "id"], + ["agent_language", "PK_c4b59dce9dddd19cb7ab607b1ad", "id"], + ["agent_person", "PK_d78c87230af992a1bf93c5b93ae", "id"], + ["agent_postcode", "PK_790c4a8ac360683061758eea4fb", "id"], + ["appreciation", "PK_d9824c8e198e82f7394c805eddf", "id"], + ["category", "PK_9c4e4a89e3674fc9f382d733f03", "id"], + ["comment", "PK_0b0e4bbc8415ec426f87f3a88e2", "id"], + ["comment_person", "PK_f3a5d50a9812f4f4a03921497f7", "id"], + ["communication", "PK_392407b9e9100bee1a64e26cd5d", "id"], + ["config", "PK_d0ee79a681413d50b0a4f98cf7b", "id"], + ["deal", "PK_9ce1c24acace60f6d7dc7a7189e", "id"], + ["deal_activity", "PK_2dfd3d9d6571f3b52b4f2a2f7b6", "id"], + ["deal_district", "PK_f166ddb3884b15af861573d036b", "id"], + ["deal_language", "PK_f41aff0608b977c9b2a70e484ff", "id"], + ["deal_skill", "PK_791b2c5c3ae4db034fef8999c35", "id"], + ["deal_timeslot", "PK_4259966a4f5f9cc66b7179d94e2", "id"], + ["district", "PK_ee5cb6fd5223164bb87ea693f1e", "id"], + ["district_postcode", "PK_0e1774a1cd62d250b9564ab0904", "id"], + ["document", "PK_e57d3357f83f3cdc0acffc3d777", "id"], + ["event_n4d", "PK_e0df3ada625ad10e0b3fbeaec47", "id"], + ["event_translation", "PK_d5739128be79554fecf75dca107", "id"], + ["field_translation", "PK_9159080b83585be7c50d6a9883e", "id"], + ["language", "PK_cc0a99e710eb3733f6fb42b1d4c", "id"], + ["lead_from", "PK_62c40760ad8725f93fa01345855", "id"], + ["notion_relation", "PK_a9db9fcae0b0476e5142622c0c0", "id"], + ["opportunity", "PK_085fd6d6f4765325e6c16163568", "id"], + ["opportunity_volunteer", "PK_501d2e5de509fa64503be23ae18", "id"], + ["option", "PK_e6090c1c6ad8962eea97abdbe63", "id"], + ["organization", "PK_472c1f99a32def1b0abb219cd67", "id"], + ["person", "PK_5fdaf670315c4b7e70cce85daa3", "id"], + ["post", "PK_be5fda3aac270b134ff9c21cdee", "id"], + ["postcode", "PK_c19bc9f774c1cf019766a35ca4d", "id"], + ["skill", "PK_a0d33334424e64fb78dc3ce7196", "id"], + ["testimonial", "PK_e1aee1c726db2d336480c69f7cb", "id"], + ["timeline", "PK_f841188896cefd9277904ec40b9", "id"], + ["timeslot", "PK_cd8bca557ee1eb5b090b9e63009", "id"], + ["trusted_domain", "PK_b8c4fcc9a45771d9f59e1dd6b1b", "id"], + ['"user"', "PK_cace4a159ff9f2512dd42373760", "id"], + ["volunteer", "PK_76924da1998b3e07025e04c4d3c", "id"], + ]; + + for (const [tbl, name, cols] of pks) { + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.${tbl} ADD CONSTRAINT "${name}" PRIMARY KEY (${cols}); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + } + + // Composite PKs + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.post_person ADD CONSTRAINT "PK_2752a498efcea4ce067c3ced8b6" PRIMARY KEY (post_id, person_id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.post_opportunity ADD CONSTRAINT "PK_83c02a05c6699152a7619ca8de2" PRIMARY KEY (post_id, opportunity_id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + + // ─── UNIQUE CONSTRAINTS ─────────────────────────────────────────────────── + + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.activity ADD CONSTRAINT "UQ_a28a1682ea80f10d1ecc7babaa0" UNIQUE (title); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.address ADD CONSTRAINT "UQ_dc72f107eef6108d4163fae4cd2" UNIQUE (title); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent ADD CONSTRAINT "UQ_c13f74bf3e3d5e4fedf63231881" UNIQUE (title); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.category ADD CONSTRAINT "UQ_9f16dbbf263b0af0f03637fa7b5" UNIQUE (title); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_activity ADD CONSTRAINT "UQ_916f710fb2164dee243ab81e42d" UNIQUE (deal_id, activity_id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_district ADD CONSTRAINT "UQ_bb2d0e17996f1cc2e8c36b8097c" UNIQUE (deal_id, district_id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_skill ADD CONSTRAINT "UQ_cf0a989e58c03a76911ea044fa5" UNIQUE (deal_id, skill_id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_timeslot ADD CONSTRAINT "UQ_dc6a725ff9fddeff3866465fc95" UNIQUE (deal_id, timeslot_id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.document ADD CONSTRAINT "UQ_761a987245fa09ddf48e5aafcf4" UNIQUE (type, volunteer_id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity_volunteer ADD CONSTRAINT "UQ_ef61e09ab1a57be86168bd83378" UNIQUE (opportunity_id, volunteer_id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.organization ADD CONSTRAINT "UQ_a7c11b94f5aaa12289f67de3f8f" UNIQUE (title); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.skill ADD CONSTRAINT "UQ_5b1131c92af934e7c2a1322ec87" UNIQUE (title); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public."user" ADD CONSTRAINT "UQ_e12875dfb3b1d92d7d7c5377e22" UNIQUE (email); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + + // ─── FOREIGN KEYS ──────────────────────────────────────────────────────── + + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.event_n4d ADD CONSTRAINT "FK_019ed6de3369ed99b82ebf1b85c" FOREIGN KEY (language_id) REFERENCES public.language(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent_postcode ADD CONSTRAINT "FK_0c0882d8ac7a24eec11d7bff144" FOREIGN KEY (agent_id) REFERENCES public.agent(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.organization ADD CONSTRAINT "FK_0f31fe3925535afb5462326d7d6" FOREIGN KEY (address_id) REFERENCES public.address(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.event_translation ADD CONSTRAINT "FK_10fabc95d13968a570404f5c516" FOREIGN KEY (language_id) REFERENCES public.language(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent_person ADD CONSTRAINT "FK_1fc545aa66757a901d425e88f0b" FOREIGN KEY (person_id) REFERENCES public.person(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity ADD CONSTRAINT "FK_20c491a989b6d30143c9487fa3c" FOREIGN KEY (district_id) REFERENCES public.district(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.appreciation ADD CONSTRAINT "FK_29ae22414bad9bb74367b329b00" FOREIGN KEY (user_id) REFERENCES public."user"(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.appreciation ADD CONSTRAINT "FK_2a91e0b949799349a3a87aa220b" FOREIGN KEY (volunteer_id) REFERENCES public.volunteer(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal ADD CONSTRAINT "FK_2e866113f33c2e1a3f9d81a4133" FOREIGN KEY (category_id) REFERENCES public.category(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.post ADD CONSTRAINT "FK_2f1a9ca8908fc8168bc18437f62" FOREIGN KEY (author_id) REFERENCES public.person(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.communication ADD CONSTRAINT "FK_3120e867d4bf41caa7b8984440e" FOREIGN KEY (user_id) REFERENCES public."user"(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_skill ADD CONSTRAINT "FK_407bd56cbfa76cc7d99fb29f01a" FOREIGN KEY (deal_id) REFERENCES public.deal(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.event_translation ADD CONSTRAINT "FK_42df355dff4a2dd4edeb6f9fc66" FOREIGN KEY (eventn4d_id) REFERENCES public.event_n4d(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity_volunteer ADD CONSTRAINT "FK_4a47cea224192a18c9bb93c07b4" FOREIGN KEY (opportunity_id) REFERENCES public.opportunity(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.volunteer ADD CONSTRAINT "FK_4b1093af5610c75cfca53546c0d" FOREIGN KEY (deal_id) REFERENCES public.deal(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity ADD CONSTRAINT "FK_4f3dd494438470c347902f276d7" FOREIGN KEY (submitted_by_person_id) REFERENCES public.person(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_district ADD CONSTRAINT "FK_56838b99011fdc67a0b38169026" FOREIGN KEY (district_id) REFERENCES public.district(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.activity ADD CONSTRAINT "FK_5d3d888450207667a286922f945" FOREIGN KEY (category_id) REFERENCES public.category(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.post ADD CONSTRAINT "FK_60618b67a1e1043df6380caa22f" FOREIGN KEY (agent_id) REFERENCES public.agent(id) ON DELETE SET NULL; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_activity ADD CONSTRAINT "FK_60a29bcf00ea63da27514e8f748" FOREIGN KEY (activity_id) REFERENCES public.activity(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.post_opportunity ADD CONSTRAINT "FK_61a8575d8e7c30b3462fa19f6d0" FOREIGN KEY (opportunity_id) REFERENCES public.opportunity(id) ON UPDATE CASCADE ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity ADD CONSTRAINT "FK_62f9c6aaa610596f0d5f972e962" FOREIGN KEY (deal_id) REFERENCES public.deal(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent_language ADD CONSTRAINT "FK_655274b2246207a662e3940b0d4" FOREIGN KEY (agent_id) REFERENCES public.agent(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent ADD CONSTRAINT "FK_6b58af875f81124b0cd64dc843a" FOREIGN KEY (district_id) REFERENCES public.district(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.post_person ADD CONSTRAINT "FK_6d5bd5330c6c6d717fb4128190f" FOREIGN KEY (post_id) REFERENCES public.post(id) ON UPDATE CASCADE ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity ADD CONSTRAINT "FK_72b2a2637cc12f5d5b71bb3236e" FOREIGN KEY (agent_id) REFERENCES public.agent(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.communication ADD CONSTRAINT "FK_73aa11f1d453a65ba3cebda85fb" FOREIGN KEY (opportunity_id) REFERENCES public.opportunity(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.district_postcode ADD CONSTRAINT "FK_7b72f500f43de90b1a7d6e60ead" FOREIGN KEY (postcode_id) REFERENCES public.postcode(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent ADD CONSTRAINT "FK_7b8b0514632bffdf8d13afbc9de" FOREIGN KEY (address_id) REFERENCES public.address(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.activity_log ADD CONSTRAINT "FK_7f5f4c33b2fbdc19b1f8460b5f0" FOREIGN KEY (opportunity_volunteer_id) REFERENCES public.opportunity_volunteer(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.field_translation ADD CONSTRAINT "FK_804ca3b0c276af3e8b593664f06" FOREIGN KEY (language_id) REFERENCES public.language(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.comment_person ADD CONSTRAINT "FK_81d4ae770167ca1c3196b3c3b52" FOREIGN KEY (person_id) REFERENCES public.person(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_timeslot ADD CONSTRAINT "FK_8a6ceb170e7eb33cadfa425a455" FOREIGN KEY (timeslot_id) REFERENCES public.timeslot(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_skill ADD CONSTRAINT "FK_8d6f46ceb923a37da3891ace9ac" FOREIGN KEY (skill_id) REFERENCES public.skill(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent ADD CONSTRAINT "FK_92b5f704c0b5e65fb0698240744" FOREIGN KEY (organization_id) REFERENCES public.organization(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_language ADD CONSTRAINT "FK_9e1f3159d0361d8f7131f3db643" FOREIGN KEY (language_id) REFERENCES public.language(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.comment_person ADD CONSTRAINT "FK_a32624ba70e3dc1462329a6323e" FOREIGN KEY (comment_id) REFERENCES public.comment(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.accompanying ADD CONSTRAINT "FK_a48f002dffae26a9642e2f7cefb" FOREIGN KEY (postcode_id) REFERENCES public.postcode(id) ON DELETE SET NULL; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public."user" ADD CONSTRAINT "FK_a4cee7e601d219733b064431fba" FOREIGN KEY (person_id) REFERENCES public.person(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal ADD CONSTRAINT "FK_b709f61f789979d2087bfc41768" FOREIGN KEY (postcode_id) REFERENCES public.postcode(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_timeslot ADD CONSTRAINT "FK_b8ec1df4dc435355a2863782b81" FOREIGN KEY (deal_id) REFERENCES public.deal(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_district ADD CONSTRAINT "FK_b9f762e06a46859f822e66e11d1" FOREIGN KEY (deal_id) REFERENCES public.deal(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.comment ADD CONSTRAINT "FK_bbfe153fa60aa06483ed35ff4a7" FOREIGN KEY (user_id) REFERENCES public."user"(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity_volunteer ADD CONSTRAINT "FK_c0f508b980be4be0b244a5471a1" FOREIGN KEY (volunteer_id) REFERENCES public.volunteer(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.post_person ADD CONSTRAINT "FK_c2ec8325a53c239442778bd029d" FOREIGN KEY (person_id) REFERENCES public.person(id) ON UPDATE CASCADE ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent_language ADD CONSTRAINT "FK_c58ded607e284db17d03e9eb20b" FOREIGN KEY (language_id) REFERENCES public.language(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.testimonial ADD CONSTRAINT "FK_c6bdc688fecc9e338d0c4018c4c" FOREIGN KEY (language_id) REFERENCES public.language(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_activity ADD CONSTRAINT "FK_c8b28c14786d76527d121126259" FOREIGN KEY (deal_id) REFERENCES public.deal(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.person ADD CONSTRAINT "FK_cd587348ca3fec07931de208299" FOREIGN KEY (address_id) REFERENCES public.address(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.appreciation ADD CONSTRAINT "FK_ce5266cf486c563f4e2c8babe4c" FOREIGN KEY (opportunity_id) REFERENCES public.opportunity(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.district_postcode ADD CONSTRAINT "FK_d3b662cb01cdb6f22c7097e0b33" FOREIGN KEY (district_id) REFERENCES public.district(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity ADD CONSTRAINT "FK_dad52d4b309d2e04b9663fbb36d" FOREIGN KEY (contact_person_id) REFERENCES public.person(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.post_opportunity ADD CONSTRAINT "FK_dfcd3c6cd9a6db4700cd5ebe6c0" FOREIGN KEY (post_id) REFERENCES public.post(id) ON UPDATE CASCADE ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.document ADD CONSTRAINT "FK_e1d6fe65e869e2858d0acfef925" FOREIGN KEY (volunteer_id) REFERENCES public.volunteer(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.address ADD CONSTRAINT "FK_e1d98846fd3dcdea8e3f267e7eb" FOREIGN KEY (postcode_id) REFERENCES public.postcode(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.opportunity ADD CONSTRAINT "FK_e82fe25e9f9cbe9edbb6cba8c19" FOREIGN KEY (accompanying_id) REFERENCES public.accompanying(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.communication ADD CONSTRAINT "FK_e8f1435f58864dd4b55c47d1468" FOREIGN KEY (agent_id) REFERENCES public.agent(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.organization ADD CONSTRAINT "FK_e94553ff34338a3882ed305a74d" FOREIGN KEY (person_id) REFERENCES public.person(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent_postcode ADD CONSTRAINT "FK_ec2a5aa17ef1f489815ee8cefdf" FOREIGN KEY (postcode_id) REFERENCES public.postcode(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.comment ADD CONSTRAINT "FK_f02c3b7cc4d58ca622a90d682a0" FOREIGN KEY (language_id) REFERENCES public.language(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.deal_language ADD CONSTRAINT "FK_f65d3334e061a3490b70b0b4eb9" FOREIGN KEY (deal_id) REFERENCES public.deal(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.testimonial ADD CONSTRAINT "FK_f7086d54eec10b450adee1be7b9" FOREIGN KEY (person_id) REFERENCES public.person(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.communication ADD CONSTRAINT "FK_fb198b1a72d3e9fa9e006c824c0" FOREIGN KEY (volunteer_id) REFERENCES public.volunteer(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.volunteer ADD CONSTRAINT "FK_fc40d3eada517c3c9315e0c9e51" FOREIGN KEY (person_id) REFERENCES public.person(id); EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + await queryRunner.query( + `DO $$ BEGIN ALTER TABLE ONLY public.agent_person ADD CONSTRAINT "FK_ffb35bb3606febae68541916709" FOREIGN KEY (agent_id) REFERENCES public.agent(id) ON DELETE CASCADE; EXCEPTION WHEN duplicate_object THEN NULL; END $$`, + ); + + // ─── INDEXES ───────────────────────────────────────────────────────────── + + await queryRunner.query( + `CREATE UNIQUE INDEX IF NOT EXISTS "IDX_0913ee135f62eccb90f53047ad" ON public.comment_person USING btree (comment_id, person_id)`, + ); + await queryRunner.query( + `CREATE UNIQUE INDEX IF NOT EXISTS "IDX_3998cf87b5faec4e52018bddbd" ON public.trusted_domain USING btree (domain)`, + ); + await queryRunner.query( + `CREATE INDEX IF NOT EXISTS "IDX_61a8575d8e7c30b3462fa19f6d" ON public.post_opportunity USING btree (opportunity_id)`, + ); + await queryRunner.query( + `CREATE UNIQUE INDEX IF NOT EXISTS "IDX_68fcd3be0d9a16a5b6c8371133" ON public.timeline USING btree (target_entity_type, target_entity_id, "timestamp")`, + ); + await queryRunner.query( + `CREATE INDEX IF NOT EXISTS "IDX_6d5bd5330c6c6d717fb4128190" ON public.post_person USING btree (post_id)`, + ); + await queryRunner.query( + `CREATE INDEX IF NOT EXISTS "IDX_81d4ae770167ca1c3196b3c3b5" ON public.comment_person USING btree (person_id)`, + ); + await queryRunner.query( + `CREATE INDEX IF NOT EXISTS "IDX_8c3af29493287693cdd82d99c1" ON public.comment USING btree (entity_type, entity_id, language_id)`, + ); + await queryRunner.query( + `CREATE INDEX IF NOT EXISTS "IDX_c2ec8325a53c239442778bd029" ON public.post_person USING btree (person_id)`, + ); + await queryRunner.query( + `CREATE UNIQUE INDEX IF NOT EXISTS "IDX_cd9cbf582b713498a61c626c2d" ON public.field_translation USING btree (language_id, entity_type, entity_id, field_name)`, + ); + await queryRunner.query( + `CREATE INDEX IF NOT EXISTS "IDX_dfcd3c6cd9a6db4700cd5ebe6c" ON public.post_opportunity USING btree (post_id)`, + ); + await queryRunner.query( + `CREATE UNIQUE INDEX IF NOT EXISTS "IDX_f15c4b743ddfba08409b99f797" ON public.agent_person USING btree (agent_id, person_id, role)`, + ); + await queryRunner.query( + `CREATE INDEX IF NOT EXISTS "idx_person_search_gin" ON public.person USING gin (to_tsvector('simple'::regconfig, (((((COALESCE(first_name, ''::character varying))::text || ' '::text) || (COALESCE(last_name, ''::character varying))::text) || ' '::text) || (COALESCE(email, ''::character varying))::text)))`, + ); + + // ─── MARK ALL PRIOR MIGRATIONS AS ALREADY RUN ──────────────────────────── + // Idempotent: WHERE NOT EXISTS prevents duplicate inserts on existing DBs. + + const migrations: [number, string][] = [ + [1763036250587, "UpdateVolunteerListMv1763036250587"], + [1763636303849, "AddEventEntity1763636303849"], + [1765976202270, "AddCityToAddressEntity1765976202270"], + [1766003754834, "AddPreferredCommToVolunteerEntity1766003754834"], + [1766352158945, "ChangeVolunteerPreferredCommToArray1766352158945"], + [1767357208920, "AddDocumentEntity1767357208920"], + [1767816732428, "AddCommunicationEntity1767816732428"], + [1768772092135, "AddAppreciationEntity1768772092135"], + [1769012055276, "CatchTsJan211769012055276"], + [1769183878914, "AddVolunteerReturnDate1769183878914"], + [1769606450859, "SyncAndUpdateOppVolM2m1769606450859"], + [1770126767598, "UpdateOppProfile1770126767598"], + [1770226586693, "UpdateOppTypeEnum1770226586693"], + [1770655462205, "AddAccomponyingEntity1770655462205"], + [1770713139121, "AddConfigKey1770713139121"], + [1771086827549, "UpdateAgentEntity1771086827549"], + [1771201168124, "UpdateAgentEntity21771201168124"], + [1771505596306, "UpdateAgentEntity31771505596306"], + [1771858452728, "UpdateAgentEntity41771858452728"], + [1772005888557, "UpdateOppProfileProfLang1772005888557"], + [1772019993181, "UpdateCommentEtity1772019993181"], + [1772052519214, "UpdatePersonEntity1772052519214"], + [1772545971802, "MoveAccompanyingToOpportunity1772545971802"], + [1772609767417, "CheckIfInSync1772609767417"], + [1773268076415, "UpdateAgentEntity6AgentPerson1773268076415"], + [1773413991868, "UpdatePersonEntityAddLandline1773413991868"], + [1773423834140, "UpdateAgentEntity71773423834140"], + [1773438090614, "UpdateCommunicationEntity1773438090614"], + [1773746534596, "UpdateCommentEtity21773746534596"], + [1774135672526, "AddNotionRelationEntity1774135672526"], + [1776035229092, "AddVolIndeces1776035229092"], + [1776321570996, "UpdateOppOrphanage1776321570996"], + [1776699111911, "UpdateAgentEntity1776699111911"], + [1776935007602, "AddNidToAgentVolOpp1776935007602"], + [1777230024863, "UpdateVolOppAgentSetNids1777230024863"], + [1777284365646, "AddInactiveToOppStatus1777284365646"], + [1777382465431, "RemoveNotionRelUnique1777382465431"], + [1777462201044, "UpdateOppEntityAddMissingValuesToEnums1777462201044"], + [1777481403775, "LoadStatusesOppVol1777481403775"], + [1777884798498, "AddCommunicationsFromNotion1777884798498"], + [1777973964566, "ConsolidateLegacyDistricts1777973964566"], + [1778069345200, "AddDistrictToOpp1778069345200"], + [1778503017097, "AddVolunteerDocStatusDates1778503017097"], + [1778578280034, "AddPostcodeToAccompanying1778578280034"], + [1778579676871, "UpdateAccompanyingPostcodeFkSetNull1778579676871"], + [1778864931379, "SetAgentDistrictFromPlz1778864931379"], + [1779186682996, "FixTranslationOfLanguageTitles1779186682996"], + [1779737272182, "SyncEntitiesDdl1779737272182"], + [1779738026660, "AddUniqueOppVol1779738026660"], + [1779739039589, "SeedMatchedOppVol1779739039589"], + [1779809730247, "FixMatchedOppVolUseNid1779809730247"], + [1779900000000, "AddContactPersonToOpportunity1779900000000"], + [1780167679271, "AddSubmittedByPersonToOpportunity1780167679271"], + [1780169787517, "BackfillOpportunitySubmittedByPerson1780169787517"], + [ + 1780182685021, + "BackfillOpportunitySubmittedByPerson4FieldBlobs1780182685021", + ], + [1780430062141, "AddCommentPersonM2m1780430062141"], + [1780430801611, "AddUniqueAgentPersonRole1780430801611"], + [1780432006040, "AddIndexCommentPersonPersonId1780432006040"], + [1780485146870, "AddDealActivity1780485146870"], + [1780487570188, "AddUniqueDealActivity1780487570188"], + [1780488457577, "AddDealSkill1780488457577"], + [1780492917105, "FlattenDealLanguageDropProfile1780492917105"], + [1780512794386, "FlattenDealTimeslotDropTime1780512794386"], + [1780515101270, "AddDealDistrict1780515101270"], + [1780516402900, "DropLocation1780516402900"], + [1781004181023, "AddStatusToAgentPerson1781004181023"], + [1781277697986, "AddTrustedDomain1781277697986"], + [1781600000000, "BackfillOpportunityStatusMatch1781600000000"], + [1782222001656, "AddActivityLog1782222001656"], + [1782245067240, "AddReadAtToCommentPerson1782245067240"], + [1782897313819, "AddShareContactToVolunteer1782897313819"], + [ + 1782903516653, + "CommunicationNullableFksAndOpportunityRelation1782903516653", + ], + [1783342906122, "AddPostEntity1783342906122"], + ]; + + for (const [ts, migName] of migrations) { + await queryRunner.query( + `INSERT INTO public.be_migrations (timestamp, name) SELECT ${ts}, '${migName}' WHERE NOT EXISTS (SELECT 1 FROM public.be_migrations WHERE timestamp = ${ts} AND name = '${migName}')`, + ); + } + } + + public async down(_queryRunner: QueryRunner): Promise { + // genesis is irreversible — removing it would require recreating the original + // scrambled-dump bootstrap, which we explicitly replaced + } +} From aadd3aaa4b00e8242e90bd1105bd4ee9dfa4e8f4 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Mon, 13 Jul 2026 14:16:51 +0000 Subject: [PATCH 82/89] fix: pre-populate be_migrations before TypeORM reads it on fresh DB MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TypeORM builds its full migration queue once by reading be_migrations, then runs every pending migration in order. Genesis creates the schema and inserts 73 records, but TypeORM already queued all 73 subsequent migrations — they then fail with "type already exists" conflicts. bootstrapFreshDb() now runs genesis.up() directly and inserts genesis's own record into be_migrations BEFORE dataSource.runMigrations() is called. On a fresh DB TypeORM therefore sees 74/74 migrations already done and runs zero. On an existing DB (cnt > 0) the function exits immediately. Co-Authored-By: Claude Sonnet 4.6 --- src/data/index.ts | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/src/data/index.ts b/src/data/index.ts index e5b3ed0e..b5c9ce32 100644 --- a/src/data/index.ts +++ b/src/data/index.ts @@ -1,6 +1,7 @@ import { isProd, shouldRunMigrations } from "../config"; import logger from "../logger"; import { dataSource } from "./data-source"; +import { GenesisBaseSchema1763036250000 } from "./migrations/1763036250000-genesis-base-schema"; const lockNumber = 0x639b4e2a1c8d79a9n; // random BIGINT (for PostgreSQL) @@ -16,6 +17,48 @@ export const check = { }, }; +// On a fresh database the migrations table is empty, so TypeORM would try to +// run all 74 migrations in sequence — but migrations 1-73 conflict with the +// schema that genesis already created (duplicate enums/tables). +// This function runs genesis directly and marks all 74 migrations as done +// BEFORE TypeORM reads the migrations table, so TypeORM sees 0 pending and +// skips everything. On an existing database (cnt > 0) it is a no-op. +async function bootstrapFreshDb(): Promise { + const qr = dataSource.createQueryRunner(); + try { + await qr.query(` + CREATE TABLE IF NOT EXISTS public.be_migrations ( + id SERIAL NOT NULL, + "timestamp" bigint NOT NULL, + name character varying NOT NULL, + PRIMARY KEY (id) + ) + `); + const [{ cnt }] = await qr.query( + `SELECT COUNT(*)::int AS cnt FROM public.be_migrations`, + ); + if (cnt > 0) {return;} + + logger.info("Fresh database detected — running genesis bootstrap"); + await qr.startTransaction(); + try { + const genesis = new GenesisBaseSchema1763036250000(); + await genesis.up(qr); + await qr.query( + `INSERT INTO public.be_migrations (timestamp, name) + VALUES (1763036250000, 'GenesisBaseSchema1763036250000')`, + ); + await qr.commitTransaction(); + } catch (e) { + await qr.rollbackTransaction(); + throw e; + } + logger.info("Genesis bootstrap completed — all migrations pre-marked"); + } finally { + await qr.release(); + } +} + export async function initDatabase() { await dataSource.initialize(); if (dataSource.isInitialized) { @@ -25,6 +68,7 @@ export async function initDatabase() { try { if (isProd || shouldRunMigrations) { logger.info("Attempting to run migrations"); + await bootstrapFreshDb(); await dataSource.runMigrations(); logger.info("Migrations completed"); } From 61f64a8bbd75e37d6dc550c8995feb536d45c2c7 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Mon, 13 Jul 2026 20:39:07 +0000 Subject: [PATCH 83/89] fix(bootstrap): compile TypeScript at build time to reduce runtime memory --- data-bootstrap/Dockerfile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/data-bootstrap/Dockerfile b/data-bootstrap/Dockerfile index b23eb050..289fc1f9 100644 --- a/data-bootstrap/Dockerfile +++ b/data-bootstrap/Dockerfile @@ -1,6 +1,13 @@ -FROM node:22-alpine +FROM node:22-alpine AS builder WORKDIR /app COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install --frozen-lockfile --production=false COPY . . -CMD ["yarn", "seed"] +RUN yarn build + +FROM node:22-alpine +WORKDIR /app +COPY package.json yarn.lock ./ +RUN yarn install --frozen-lockfile --production=true && yarn cache clean +COPY --from=builder /app/build ./build +CMD ["node", "build/src/data/seeds/run.js"] From ef2f8f4b575af38b6c08880487ee7bd2242d16cb Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Mon, 13 Jul 2026 22:33:53 +0000 Subject: [PATCH 84/89] fix(bootstrap): copy public assets and seed fixtures into production stage --- data-bootstrap/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data-bootstrap/Dockerfile b/data-bootstrap/Dockerfile index 289fc1f9..f2e811b3 100644 --- a/data-bootstrap/Dockerfile +++ b/data-bootstrap/Dockerfile @@ -10,4 +10,6 @@ WORKDIR /app COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile --production=true && yarn cache clean COPY --from=builder /app/build ./build +COPY public ./build/public +COPY src/data/seeds/fixtures ./build/src/data/seeds/fixtures CMD ["node", "build/src/data/seeds/run.js"] From 9cc3053ef55975e6d0e722970bb22b8316d5727e Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Tue, 14 Jul 2026 13:06:10 +0200 Subject: [PATCH 85/89] 672 feat auto update opportunity and match status when appointment date passes (#758) * add: date util * add: job for onetimers expiration * add: new scheduler plugin for daily jobs and expires opps job * fix: change to berlin day before * fix: the same lock key and refactor duple * fix: refactor plugin names * fix: update comment * fix: use german calendar and update util with countdown * fix: remove stale code * fix: rename plugins * fix: add catching errs * test: add unit tests for scanExpiredOnetimers Covers the no-op empty-result case, correct INACTIVE/PAST status transitions, and the per-item try/catch isolation added for opportunity and opportunity-volunteer saves. Co-Authored-By: Claude Sonnet 5 --------- Co-authored-by: Claude Sonnet 5 --- src/server/index.ts | 6 +- src/server/plugins/scheduler-daily.ts | 45 +++++ .../{scheduler.ts => scheduler-hourly.ts} | 40 +---- src/server/utils/data/index.ts | 3 +- src/server/utils/data/run-w-advisory-lock.ts | 35 ++++ src/services/jobs/german-holidays.ts | 6 +- src/services/jobs/scan-expired-onetimers.ts | 84 ++++++++++ .../services/jobs/german-holidays.test.ts | 6 + .../jobs/scan-expired-onetimers.test.ts | 156 ++++++++++++++++++ 9 files changed, 341 insertions(+), 40 deletions(-) create mode 100644 src/server/plugins/scheduler-daily.ts rename src/server/plugins/{scheduler.ts => scheduler-hourly.ts} (63%) create mode 100644 src/server/utils/data/run-w-advisory-lock.ts create mode 100644 src/services/jobs/scan-expired-onetimers.ts create mode 100644 src/test/services/jobs/scan-expired-onetimers.test.ts diff --git a/src/server/index.ts b/src/server/index.ts index 0dd1f9b1..39982032 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -10,7 +10,8 @@ import logger from "../logger"; import cors, { corsOptions } from "./plugins/cors"; import jwtPlugin from "./plugins/jwt"; import notifyPlugin from "./plugins/notify"; -import schedulerPlugin from "./plugins/scheduler"; +import schedulerDailyPlugin from "./plugins/scheduler-daily"; +import schedulerHourlyPlugin from "./plugins/scheduler-hourly"; import typeormPlugin from "./plugins/typeorm"; import activityLogRoutes from "./routes/activity-log.routes"; import agentRoutes from "./routes/agent/agent.routes"; @@ -151,7 +152,8 @@ export async function createServer(): Promise { }, }); await fastifyInstance.register(notifyPlugin); - await fastifyInstance.register(schedulerPlugin); + await fastifyInstance.register(schedulerHourlyPlugin); + await fastifyInstance.register(schedulerDailyPlugin); await fastifyInstance.register(healthRoutes, { prefix: RoutePrefix.HEALTH_CHECK, }); diff --git a/src/server/plugins/scheduler-daily.ts b/src/server/plugins/scheduler-daily.ts new file mode 100644 index 00000000..a216f996 --- /dev/null +++ b/src/server/plugins/scheduler-daily.ts @@ -0,0 +1,45 @@ +import { FastifyInstance } from "fastify"; +import fp from "fastify-plugin"; +import cron from "node-cron"; +import logger from "../../logger"; +import { scanExpiredOnetimers } from "../../services/jobs/scan-expired-onetimers"; +import { runWithAdvisoryLock } from "../utils"; + +// Unique integer key for this app's advisory lock — prevents duplicate runs +// across multiple ECS instances. +const SCHEDULER_LOCK_ID = 20240707; + +async function schedulerDailyPlugin(fastify: FastifyInstance): Promise { + // Daily at the 6AM hour Berlin time, weekdays only. + // node-cron handles DST automatically when timezone is set. + const task = cron.schedule( + "0 6 * * *", + async () => { + try { + logger.info("scheduler: running daily scans"); + + await runWithAdvisoryLock(async () => { + const results = await Promise.allSettled([ + scanExpiredOnetimers(fastify), + ]); + + for (const r of results) { + if (r.status === "rejected") { + logger.error({ err: r.reason }, "scheduler: scan failed"); + } + } + }, SCHEDULER_LOCK_ID); + } catch (err) { + logger.error({ err }, "scheduler: unhandled error in cron callback"); + } + }, + { timezone: "Europe/Berlin" }, + ); + + fastify.addHook("onClose", () => task.stop()); +} + +export default fp(schedulerDailyPlugin, { + name: "scheduler-daily", + dependencies: ["typeorm-plugin", "notify"], +}); diff --git a/src/server/plugins/scheduler.ts b/src/server/plugins/scheduler-hourly.ts similarity index 63% rename from src/server/plugins/scheduler.ts rename to src/server/plugins/scheduler-hourly.ts index 86f109b0..a1ae18d5 100644 --- a/src/server/plugins/scheduler.ts +++ b/src/server/plugins/scheduler-hourly.ts @@ -2,7 +2,6 @@ import { FastifyInstance } from "fastify"; import fp from "fastify-plugin"; import cron from "node-cron"; import { TRUTHY } from "../../config/constants"; -import { dataSource } from "../../data/data-source"; import logger from "../../logger"; import { berlinToday, @@ -12,42 +11,13 @@ import { scanAccompanyNotFound } from "../../services/jobs/scan-accompany-not-fo import { scanPostMatchCheckup } from "../../services/jobs/scan-post-match-checkup"; import { scanRegularUpdate } from "../../services/jobs/scan-regular-update"; import { scanStalePending } from "../../services/jobs/scan-stale-pending"; +import { runWithAdvisoryLock } from "../utils"; // Unique integer key for this app's advisory lock — prevents duplicate runs // across multiple ECS instances. const SCHEDULER_LOCK_ID = 20240701; -async function runWithAdvisoryLock(fn: () => Promise): Promise { - // Use a transaction-level advisory lock (pg_try_advisory_xact_lock) so the - // lock is released automatically at commit/rollback — no explicit unlock - // needed. This avoids the session-level pitfall where pg_advisory_unlock - // could fail and leave the connection holding the lock in the pool. - const qr = dataSource.createQueryRunner(); - try { - await qr.connect(); - await qr.startTransaction(); - const [row] = await qr.query( - "SELECT pg_try_advisory_xact_lock($1) AS acquired", - [SCHEDULER_LOCK_ID], - ); - if (!row?.acquired) { - logger.debug( - "scheduler: advisory lock held by another instance — skipping", - ); - await qr.rollbackTransaction(); - return; - } - await fn(); - await qr.commitTransaction(); - } catch (err) { - await qr.rollbackTransaction().catch(logger.error); - throw err; - } finally { - await qr.release(); - } -} - -async function schedulerPlugin(fastify: FastifyInstance): Promise { +async function schedulerHourlyPlugin(fastify: FastifyInstance): Promise { // Hourly on the hour, 08:00–19:00 Berlin time, weekdays only. // node-cron handles DST automatically when timezone is set. const task = cron.schedule( @@ -79,7 +49,7 @@ async function schedulerPlugin(fastify: FastifyInstance): Promise { logger.error({ err: r.reason }, "scheduler: scan failed"); } } - }); + }, SCHEDULER_LOCK_ID); } catch (err) { logger.error({ err }, "scheduler: unhandled error in cron callback"); } @@ -90,7 +60,7 @@ async function schedulerPlugin(fastify: FastifyInstance): Promise { fastify.addHook("onClose", () => task.stop()); } -export default fp(schedulerPlugin, { - name: "scheduler", +export default fp(schedulerHourlyPlugin, { + name: "scheduler-hourly", dependencies: ["typeorm-plugin", "notify"], }); diff --git a/src/server/utils/data/index.ts b/src/server/utils/data/index.ts index aaf7a639..4ab789a8 100644 --- a/src/server/utils/data/index.ts +++ b/src/server/utils/data/index.ts @@ -14,8 +14,9 @@ export * from "./get-volunteer-clones"; export * from "./get-volunteer-form-data"; export * from "./get-volunteer-patch-data"; export * from "./get-volunteer-where"; -export * from "./sync-comment-tags"; export * from "./is-trusted-domain"; +export * from "./run-w-advisory-lock"; +export * from "./sync-comment-tags"; export * from "./update-leads"; export * from "./write-agent-registration"; export * from "./write-opportunity-contact-comment"; diff --git a/src/server/utils/data/run-w-advisory-lock.ts b/src/server/utils/data/run-w-advisory-lock.ts new file mode 100644 index 00000000..4831770e --- /dev/null +++ b/src/server/utils/data/run-w-advisory-lock.ts @@ -0,0 +1,35 @@ +import { dataSource } from "../../../data/data-source"; +import logger from "../../../logger"; + +export async function runWithAdvisoryLock( + fn: () => Promise, + lockId: number, +): Promise { + // Use a transaction-level advisory lock (pg_try_advisory_xact_lock) so the + // lock is released automatically at commit/rollback — no explicit unlock + // needed. This avoids the session-level pitfall where pg_advisory_unlock + // could fail and leave the connection holding the lock in the pool. + const qr = dataSource.createQueryRunner(); + try { + await qr.connect(); + await qr.startTransaction(); + const [row] = await qr.query( + "SELECT pg_try_advisory_xact_lock($1) AS acquired", + [lockId], + ); + if (!row?.acquired) { + logger.debug( + "scheduler: advisory lock held by another instance — skipping", + ); + await qr.rollbackTransaction(); + return; + } + await fn(); + await qr.commitTransaction(); + } catch (err) { + await qr.rollbackTransaction().catch(logger.error); + throw err; + } finally { + await qr.release(); + } +} diff --git a/src/services/jobs/german-holidays.ts b/src/services/jobs/german-holidays.ts index c24f1065..8b6a502d 100644 --- a/src/services/jobs/german-holidays.ts +++ b/src/services/jobs/german-holidays.ts @@ -50,9 +50,11 @@ export function isGermanPublicHoliday(date: Date): boolean { export function addWorkingDays(from: Date, days: number): Date { let result = new Date(from.getFullYear(), from.getMonth(), from.getDate()); + const direction = days < 0 ? -1 : 1; + const remaining = Math.abs(days); let added = 0; - while (added < days) { - result = addDays(result, 1); + while (added < remaining) { + result = addDays(result, direction); const dow = result.getDay(); if (dow !== 0 && dow !== 6 && !isGermanPublicHoliday(result)) { added++; diff --git a/src/services/jobs/scan-expired-onetimers.ts b/src/services/jobs/scan-expired-onetimers.ts new file mode 100644 index 00000000..0848d533 --- /dev/null +++ b/src/services/jobs/scan-expired-onetimers.ts @@ -0,0 +1,84 @@ +import { FastifyInstance } from "fastify"; +import { + OpportunityStatusType, + OpportunityType, + OpportunityVolunteerStatusType, +} from "need4deed-sdk"; +import { Brackets } from "typeorm"; +import logger from "../../logger"; +import { addWorkingDays, berlinToday } from "./german-holidays"; + +export async function scanExpiredOnetimers( + fastify: FastifyInstance, +): Promise { + const dayBeforeToday = addWorkingDays(berlinToday(), -1); + + const expiredOpportunities = await fastify.db.opportunityRepository + .createQueryBuilder("opportunity") + .leftJoinAndSelect("opportunity.accompanying", "accompanying") + .leftJoinAndSelect("opportunity.deal", "deal") + .leftJoinAndSelect("deal.dealTimeslot", "dealTimeslot") + .leftJoinAndSelect("dealTimeslot.timeslot", "timeslot") + .leftJoinAndSelect( + "opportunity.opportunityVolunteer", + "opportunityVolunteer", + ) + .where("opportunity.type IN (:...types)", { + types: [OpportunityType.ACCOMPANYING, OpportunityType.EVENTS], + }) + .andWhere("opportunity.status != :inactive", { + inactive: OpportunityStatusType.INACTIVE, + }) + .andWhere( + new Brackets((qb) => { + qb.where("accompanying.date < :yesterday", { + yesterday: dayBeforeToday, + }).orWhere("timeslot.start < :yesterday", { + yesterday: dayBeforeToday, + }); + }), + ) + .getMany(); + + if (!expiredOpportunities.length) { + return; + } + + for (const opportunity of expiredOpportunities) { + try { + opportunity.status = OpportunityStatusType.INACTIVE; + await fastify.db.opportunityRepository.save(opportunity); + + for (const opportunityVolunteer of opportunity.opportunityVolunteer) { + if ( + opportunityVolunteer.status === OpportunityVolunteerStatusType.MATCHED + ) { + try { + opportunityVolunteer.status = OpportunityVolunteerStatusType.PAST; + await fastify.db.opportunityVolunteerRepository.save( + opportunityVolunteer, + ); + } catch (err) { + logger.error( + { + err, + opportunityId: opportunity.id, + opportunityVolunteerId: opportunityVolunteer.id, + }, + "scanExpiredOnetimers: failed to mark opportunity volunteer as PAST", + ); + } + } + } + } catch (err) { + logger.error( + { err, opportunityId: opportunity.id }, + "scanExpiredOnetimers: failed to mark opportunity as INACTIVE", + ); + } + } + + logger.info( + `scanExpiredOnetimers: marked ${expiredOpportunities.length} opportunities as INACTIVE`, + ); +} diff --git a/src/test/services/jobs/german-holidays.test.ts b/src/test/services/jobs/german-holidays.test.ts index 825c0749..8dd9324d 100644 --- a/src/test/services/jobs/german-holidays.test.ts +++ b/src/test/services/jobs/german-holidays.test.ts @@ -83,6 +83,12 @@ describe("addWorkingDays", () => { expect(result).toEqual(d(2026, 1, 5)); }); + it("skips weekends when subtracting days", () => { + // Monday 2026-01-05 - 1 working day = Friday 2026-01-02 + const result = addWorkingDays(d(2026, 1, 5), -1); + expect(result).toEqual(d(2026, 1, 2)); + }); + it("skips Saturday and Sunday when spanning a weekend", () => { // Thursday 2026-01-08 + 2 working days = Monday 2026-01-12 const result = addWorkingDays(d(2026, 1, 8), 2); diff --git a/src/test/services/jobs/scan-expired-onetimers.test.ts b/src/test/services/jobs/scan-expired-onetimers.test.ts new file mode 100644 index 00000000..ad0b653b --- /dev/null +++ b/src/test/services/jobs/scan-expired-onetimers.test.ts @@ -0,0 +1,156 @@ +import { FastifyInstance } from "fastify"; +import { + OpportunityStatusType, + OpportunityVolunteerStatusType, +} from "need4deed-sdk"; +import { beforeEach, describe, expect, it, vi } from "vitest"; +import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; +import { scanExpiredOnetimers } from "../../../services/jobs/scan-expired-onetimers"; + +const loggerErrorMock = vi.fn(); +const loggerInfoMock = vi.fn(); +vi.mock("../../../logger", () => ({ + default: { + error: (...args: unknown[]) => loggerErrorMock(...args), + info: (...args: unknown[]) => loggerInfoMock(...args), + }, +})); + +const getMany = vi.fn(); +const opportunityRepositorySave = vi.fn(); +const opportunityVolunteerRepositorySave = vi.fn(); + +const qbMock = { + leftJoinAndSelect: vi.fn().mockReturnThis(), + where: vi.fn().mockReturnThis(), + andWhere: vi.fn().mockReturnThis(), + getMany, +}; + +const fastify = { + db: { + opportunityRepository: { + createQueryBuilder: vi.fn(() => qbMock), + save: (...args: unknown[]) => opportunityRepositorySave(...args), + }, + opportunityVolunteerRepository: { + save: (...args: unknown[]) => opportunityVolunteerRepositorySave(...args), + }, + }, +} as unknown as FastifyInstance; + +function buildOpportunity( + id: number, + ovs: Partial[], +): Opportunity { + return new Opportunity({ + id, + status: OpportunityStatusType.ACTIVE, + opportunityVolunteer: ovs.map((ov) => new OpportunityVolunteer(ov)), + } as Partial); +} + +beforeEach(() => { + vi.clearAllMocks(); + opportunityRepositorySave.mockImplementation( + async (opportunity: Opportunity) => opportunity, + ); + opportunityVolunteerRepositorySave.mockImplementation( + async (ov: OpportunityVolunteer) => ov, + ); +}); + +describe("scanExpiredOnetimers", () => { + it("does nothing when there are no expired opportunities", async () => { + getMany.mockResolvedValue([]); + + await scanExpiredOnetimers(fastify); + + expect(opportunityRepositorySave).not.toHaveBeenCalled(); + expect(opportunityVolunteerRepositorySave).not.toHaveBeenCalled(); + expect(loggerInfoMock).not.toHaveBeenCalled(); + }); + + it("marks expired opportunities INACTIVE and flips matched volunteers to PAST", async () => { + const matched = { id: 1, status: OpportunityVolunteerStatusType.MATCHED }; + const pending = { id: 2, status: OpportunityVolunteerStatusType.PENDING }; + const opportunity = buildOpportunity(10, [matched, pending]); + getMany.mockResolvedValue([opportunity]); + + await scanExpiredOnetimers(fastify); + + expect(opportunity.status).toBe(OpportunityStatusType.INACTIVE); + expect(opportunityRepositorySave).toHaveBeenCalledWith(opportunity); + + expect(opportunityVolunteerRepositorySave).toHaveBeenCalledTimes(1); + expect(opportunity.opportunityVolunteer[0].status).toBe( + OpportunityVolunteerStatusType.PAST, + ); + expect(opportunity.opportunityVolunteer[1].status).toBe( + OpportunityVolunteerStatusType.PENDING, + ); + expect(loggerInfoMock).toHaveBeenCalledWith( + expect.stringContaining("marked 1 opportunities as INACTIVE"), + ); + }); + + it("keeps processing remaining opportunities when one fails to save", async () => { + const failing = buildOpportunity(1, [ + { id: 1, status: OpportunityVolunteerStatusType.MATCHED }, + ]); + const succeeding = buildOpportunity(2, [ + { id: 2, status: OpportunityVolunteerStatusType.MATCHED }, + ]); + getMany.mockResolvedValue([failing, succeeding]); + + opportunityRepositorySave.mockImplementationOnce(async () => { + throw new Error("db unavailable"); + }); + + await scanExpiredOnetimers(fastify); + + expect(loggerErrorMock).toHaveBeenCalledWith( + expect.objectContaining({ opportunityId: 1 }), + expect.stringContaining("failed to mark opportunity as INACTIVE"), + ); + + // The failing opportunity's volunteer must not have been touched. + expect(failing.opportunityVolunteer[0].status).toBe( + OpportunityVolunteerStatusType.MATCHED, + ); + + // The second opportunity is still processed despite the first one failing. + expect(succeeding.status).toBe(OpportunityStatusType.INACTIVE); + expect(succeeding.opportunityVolunteer[0].status).toBe( + OpportunityVolunteerStatusType.PAST, + ); + }); + + it("keeps processing remaining volunteers when one volunteer save fails", async () => { + const first = { id: 1, status: OpportunityVolunteerStatusType.MATCHED }; + const second = { id: 2, status: OpportunityVolunteerStatusType.MATCHED }; + const opportunity = buildOpportunity(1, [first, second]); + getMany.mockResolvedValue([opportunity]); + + opportunityVolunteerRepositorySave.mockImplementationOnce(async () => { + throw new Error("db unavailable"); + }); + + await scanExpiredOnetimers(fastify); + + expect(loggerErrorMock).toHaveBeenCalledWith( + expect.objectContaining({ + opportunityId: opportunity.id, + opportunityVolunteerId: 1, + }), + expect.stringContaining("failed to mark opportunity volunteer as PAST"), + ); + + // Second volunteer still gets updated despite the first one failing. + expect(opportunity.opportunityVolunteer[1].status).toBe( + OpportunityVolunteerStatusType.PAST, + ); + expect(opportunity.status).toBe(OpportunityStatusType.INACTIVE); + }); +}); From 85b0184c5355044ad9e4ca7d5a68f881a67d8f36 Mon Sep 17 00:00:00 2001 From: Arturas Mickiewicz <57557793+arturasmckwcz@users.noreply.github.com> Date: Tue, 14 Jul 2026 13:54:30 +0200 Subject: [PATCH 86/89] fix: agent users get role agent (#763) --- src/data/seeds/populate/agent-user.seed.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/data/seeds/populate/agent-user.seed.ts b/src/data/seeds/populate/agent-user.seed.ts index a74064ca..19e1a626 100644 --- a/src/data/seeds/populate/agent-user.seed.ts +++ b/src/data/seeds/populate/agent-user.seed.ts @@ -17,10 +17,14 @@ export async function seedAgentUsers(dataSource: DataSource): Promise { for (const agentJson of agentsJson ?? []) { for (const personJson of agentJson.person ?? []) { const email = personJson.email; - if (!email) {continue;} + if (!email) { + continue; + } const existing = await userRepository.findOne({ where: { email } }); - if (existing) {continue;} + if (existing) { + continue; + } const person = await personRepository.findOne({ where: { email } }); if (!person) { @@ -33,7 +37,7 @@ export async function seedAgentUsers(dataSource: DataSource): Promise { const user = new User({ email, password: pwHash, - role: UserRole.USER, + role: UserRole.AGENT, isActive: true, person, }); From db4be606bef19d2f6eeb893dcdf791906c62ecda Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 14 Jul 2026 17:28:37 +0000 Subject: [PATCH 87/89] fix: notification emails silently failing across opportunity matching/creation Multiple notify events hard-dereferenced opportunity.contactPerson, which is now frequently null on opportunities that only have submittedByPerson set (post-#589 data). The route side-effects swallow send failures into logger.error after already responding, so nothing surfaced to callers: - "suggest" email never sent on OV creation (POST created straight into PENDING; the send side-effect only lived in the PATCH transition handler) - "matched"/accompanying-matched emails threw on contactPerson!.name/.phone - new-opportunity confirmation emails (regular + accompanying) always threw, since the modern creation route never sets contactPersonId at all Adds getOpportunityRepresentativePerson() (submittedByPerson -> contactPerson -> agent representative) and wires it into all four notify events. Also adds a pre-check + 409 for duplicate (opportunityId, volunteerId) suggestions (previously an unhandled 500 from the DB unique constraint), and removes a redundant id<=0 param check already covered by the JSON schema. Fixes #764 --- .../get-opportunity-representative-person.ts | 17 ++ src/data/utils/index.ts | 1 + .../m2m/opportunity-volunteer.routes.ts | 147 +++++++++++------- .../routes/opportunity/opportunity.routes.ts | 13 +- .../notify/events/email-accompany-match.ts | 8 +- .../notify/events/email-introduction.ts | 8 +- .../notify/events/email-new-accompanying.ts | 8 +- .../notify/events/email-new-regular.ts | 8 +- 8 files changed, 139 insertions(+), 71 deletions(-) create mode 100644 src/data/utils/get-opportunity-representative-person.ts diff --git a/src/data/utils/get-opportunity-representative-person.ts b/src/data/utils/get-opportunity-representative-person.ts new file mode 100644 index 00000000..9e61b6a4 --- /dev/null +++ b/src/data/utils/get-opportunity-representative-person.ts @@ -0,0 +1,17 @@ +import Opportunity from "../entity/opportunity/opportunity.entity"; +import Person from "../entity/person.entity"; + +// Resolves the single person to notify/contact for an opportunity: the +// submitter, else the legacy contact person (kept for opportunities that +// predate `submittedByPerson`), else the opportunity's agent's current +// representative. Requires `submittedByPerson`, `contactPerson`, and +// `agent.agentPerson.person` to be eager-loaded as needed by the caller. +export function getOpportunityRepresentativePerson( + opportunity: Opportunity, +): Person | undefined { + return ( + opportunity.submittedByPerson ?? + opportunity.contactPerson ?? + opportunity.agent?.representative?.person + ); +} diff --git a/src/data/utils/index.ts b/src/data/utils/index.ts index 74fb3522..b6d12a0c 100644 --- a/src/data/utils/index.ts +++ b/src/data/utils/index.ts @@ -1,5 +1,6 @@ export * from "./fetch-json"; export * from "./get-district"; +export * from "./get-opportunity-representative-person"; export * from "./get-postcode"; export * from "./get-repository"; export * from "./getLoggingForDataSource"; diff --git a/src/server/routes/m2m/opportunity-volunteer.routes.ts b/src/server/routes/m2m/opportunity-volunteer.routes.ts index 638771fd..9337cef0 100644 --- a/src/server/routes/m2m/opportunity-volunteer.routes.ts +++ b/src/server/routes/m2m/opportunity-volunteer.routes.ts @@ -5,13 +5,74 @@ import { ProfileVolunteeringType, UserRole, } from "need4deed-sdk"; -import { BadRequestError, NotFoundError } from "../../../config"; +import { ConflictError, NotFoundError } from "../../../config"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; import logger from "../../../logger"; import { idParamSchema, responseSchema } from "../../schema"; import { ParamsId, ReplyMessage } from "../../types"; import { logEmailCommunication } from "../../utils/data/log-email-communication"; +// Sends the FIRST_INQUIRY "suggest" email for an OV that is (now) PENDING. +// Called both right after creation (POST, which can create straight into +// PENDING) and on a status transition into PENDING via PATCH (e.g. a +// PENDING→DECLINED→PENDING re-toggle). Fire-and-forget: callers invoke this +// without awaiting so a DB/send hiccup never affects the HTTP response. +async function triggerEmailSuggestion( + fastify: FastifyInstance, + id: number, +): Promise { + const opportunityVolunteerRepository = + fastify.db.opportunityVolunteerRepository; + const commRepo = fastify.db.communicationRepository; + + try { + logger.debug(`emailSuggestion side-effect triggered (ov ${id})`); + const ov = await opportunityVolunteerRepository.findOne({ + where: { id }, + relations: [ + "volunteer.person", + "volunteer.person.users", + "volunteer.deal.postcode", + "volunteer.deal.dealTimeslot.timeslot", + "opportunity.submittedByPerson", + "opportunity.contactPerson", + ], + }); + if (!ov) { + return; + } + // Skip if FIRST_INQUIRY already sent (e.g. PENDING→DECLINED→PENDING). + const alreadySent = await commRepo.findOne({ + where: { + volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, + communicationType: CommunicationType.FIRST_INQUIRY, + }, + }); + if (alreadySent) { + return; + } + // Log before send; remove the dedup record on failure so the next toggle can retry. + const comm = await logEmailCommunication( + commRepo, + CommunicationType.FIRST_INQUIRY, + { + volunteerId: ov.volunteerId, + opportunityId: ov.opportunityId, + }, + ); + try { + await fastify.notify.emailSuggestion(ov); + logger.debug(`emailSuggestion side-effect succeeded (ov ${id})`); + } catch (sendErr) { + await commRepo.remove(comm).catch(logger.error); + throw sendErr; + } + } catch (err) { + logger.error(`emailSuggestion side-effect failed (ov ${id}): ${err}`); + } +} + export default async function m2mOpportunityVolunteerRoutes( fastify: FastifyInstance, _options: FastifyPluginOptions, @@ -36,9 +97,31 @@ export default async function m2mOpportunityVolunteerRoutes( const opportunityVolunteerRepository = fastify.db.opportunityVolunteerRepository; + const { opportunityId, volunteerId } = request.body; + + // Surface the duplicate-pair case as 409 up front (the DB unique + // constraint on (opportunityId, volunteerId) remains the ultimate + // guard for the rare race). + if ( + await opportunityVolunteerRepository.findOneBy({ + opportunityId, + volunteerId, + }) + ) { + throw new ConflictError( + `A match already exists for opportunityId:${opportunityId}, volunteerId:${volunteerId}.`, + ); + } + const opportunityVolunteer = new OpportunityVolunteer(request.body); await opportunityVolunteerRepository.save(opportunityVolunteer); + if ( + opportunityVolunteer.status === OpportunityVolunteerStatusType.PENDING + ) { + triggerEmailSuggestion(fastify, opportunityVolunteer.id); + } + return reply.status(201).send({ message: `Created M2M opportunityId:${opportunityVolunteer.opportunityId}, volunteerId:${opportunityVolunteer.volunteerId}, status:${opportunityVolunteer.status}.`, }); @@ -60,11 +143,6 @@ export default async function m2mOpportunityVolunteerRoutes( }, async (request, reply) => { const { id } = request.params; - if (id <= 0) { - throw new BadRequestError( - `Wrong id:${id} param. It must be a positive number`, - ); - } const opportunityVolunteerRepository = fastify.db.opportunityVolunteerRepository; @@ -91,55 +169,7 @@ export default async function m2mOpportunityVolunteerRoutes( const commRepo = fastify.db.communicationRepository; if (nextStatus === OpportunityVolunteerStatusType.PENDING) { - (async () => { - try { - // findOne inside the IIFE: handler returns 204 immediately; - // a DB hiccup here doesn't affect the HTTP response. - const ov = await opportunityVolunteerRepository.findOne({ - where: { id }, - relations: [ - "volunteer.person", - "volunteer.person.users", - "volunteer.deal.postcode", - "volunteer.deal.dealTimeslot.timeslot", - "opportunity", - ], - }); - if (!ov) { - return; - } - // Skip if FIRST_INQUIRY already sent (e.g. PENDING→DECLINED→PENDING). - const alreadySent = await commRepo.findOne({ - where: { - volunteerId: ov.volunteerId, - opportunityId: ov.opportunityId, - communicationType: CommunicationType.FIRST_INQUIRY, - }, - }); - if (alreadySent) { - return; - } - // Log before send; remove the dedup record on failure so the next toggle can retry. - const comm = await logEmailCommunication( - commRepo, - CommunicationType.FIRST_INQUIRY, - { - volunteerId: ov.volunteerId, - opportunityId: ov.opportunityId, - }, - ); - try { - await fastify.notify.emailSuggestion(ov); - } catch (sendErr) { - await commRepo.remove(comm).catch(logger.error); - throw sendErr; - } - } catch (err) { - logger.error( - `emailSuggestion side-effect failed (ov ${id}): ${err}`, - ); - } - })(); + triggerEmailSuggestion(fastify, id); } else if (nextStatus === OpportunityVolunteerStatusType.MATCHED) { (async () => { try { @@ -153,9 +183,13 @@ export default async function m2mOpportunityVolunteerRoutes( "volunteer.deal.dealLanguage.language", "volunteer.deal.dealSkill.skill", "volunteer.deal.dealTimeslot.timeslot", + "opportunity.submittedByPerson", + "opportunity.submittedByPerson.users", "opportunity.contactPerson", "opportunity.contactPerson.users", "opportunity.agent.address.postcode", + "opportunity.agent.agentPerson.person", + "opportunity.agent.agentPerson.person.users", "opportunity.accompanying.postcode", "opportunity.district", ], @@ -237,9 +271,6 @@ export default async function m2mOpportunityVolunteerRoutes( }, async (request, reply) => { const { id } = request.params; - if (id <= 0) { - throw new BadRequestError("Param id must ba a positive number"); - } const opportunityVolunteerRepository = fastify.db.opportunityVolunteerRepository; diff --git a/src/server/routes/opportunity/opportunity.routes.ts b/src/server/routes/opportunity/opportunity.routes.ts index a5ecef98..0acd5c1c 100644 --- a/src/server/routes/opportunity/opportunity.routes.ts +++ b/src/server/routes/opportunity/opportunity.routes.ts @@ -390,7 +390,14 @@ export default async function opportunityRoutes( await sendNewOpportunityEmail( fastify, id, - ["contactPerson", "contactPerson.users"], + [ + "submittedByPerson", + "submittedByPerson.users", + "contactPerson", + "contactPerson.users", + "agent.agentPerson.person", + "agent.agentPerson.person.users", + ], (opp) => fastify.notify.emailNewRegular(opp), "emailNewRegular", ); @@ -409,8 +416,12 @@ export default async function opportunityRoutes( [ "accompanying", "accompanying.postcode", + "submittedByPerson", + "submittedByPerson.users", "contactPerson", "contactPerson.users", + "agent.agentPerson.person", + "agent.agentPerson.person.users", "district", ], (opp) => fastify.notify.emailNewAccompanying(opp), diff --git a/src/services/notify/events/email-accompany-match.ts b/src/services/notify/events/email-accompany-match.ts index ccea07db..658003d0 100644 --- a/src/services/notify/events/email-accompany-match.ts +++ b/src/services/notify/events/email-accompany-match.ts @@ -5,6 +5,7 @@ import { emailFromNotify, } from "../../../config/constants"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import { getOpportunityRepresentativePerson } from "../../../data/utils"; import { getLanguages } from "../../dto/utils"; import { createManifestLoader, @@ -55,7 +56,8 @@ export async function sendEmailAccompanyMatch( email: EmailTransport, ov: OpportunityVolunteer, ): Promise { - const contactPersonEmail = ov.opportunity?.contactPerson?.email; + const contactPerson = getOpportunityRepresentativePerson(ov.opportunity); + const contactPersonEmail = contactPerson?.email; if (!contactPersonEmail) { throw new Error( `sendEmailAccompanyMatch: missing contact email for opportunity ${ov.opportunityId}`, @@ -80,7 +82,7 @@ export async function sendEmailAccompanyMatch( const volunteerName = volunteer.person.name; const volunteerEmail = volunteer.person.email ?? ""; const volunteerPhone = volunteer.person.phone ?? ""; - const contactpersonName = opportunity.contactPerson!.name; + const contactpersonName = contactPerson.name; const volunteerLanguage = getLanguages(volunteer.deal?.dealLanguage ?? []) .map((l) => l.title) @@ -98,7 +100,7 @@ export async function sendEmailAccompanyMatch( const appointmentDistrict = opportunity.district?.title ?? accompanying?.postcode?.value ?? ""; - const locale = resolveLocale(opportunity.contactPerson?.users?.[0]?.language); + const locale = resolveLocale(contactPerson.users?.[0]?.language); const contactSharing = resolveContactSharing( volunteer.shareContact ?? true, volunteerName, diff --git a/src/services/notify/events/email-introduction.ts b/src/services/notify/events/email-introduction.ts index 6b5d96d2..96ba8a42 100644 --- a/src/services/notify/events/email-introduction.ts +++ b/src/services/notify/events/email-introduction.ts @@ -6,6 +6,7 @@ import { emailIntroductionManifestUrl, } from "../../../config/constants"; import OpportunityVolunteer from "../../../data/entity/m2m/opportunity-volunteer"; +import { getOpportunityRepresentativePerson } from "../../../data/utils"; import { getLanguages, getOptionItems, getTitles } from "../../dto/utils"; import { createManifestLoader, @@ -85,7 +86,8 @@ export async function sendEmailIntroduction( ov: OpportunityVolunteer, ): Promise { const volunteerEmail = ov.volunteer?.person?.email; - const contactPersonEmail = ov.opportunity?.contactPerson?.email; + const contactPerson = getOpportunityRepresentativePerson(ov.opportunity); + const contactPersonEmail = contactPerson?.email; if (!volunteerEmail || !contactPersonEmail) { throw new Error( @@ -98,7 +100,7 @@ export async function sendEmailIntroduction( const locale = resolveLocale(volunteer.person?.users?.[0]?.language); const volunteerName = volunteer.person.name; - const contactpersonName = opportunity.contactPerson!.name; + const contactpersonName = contactPerson.name; const volunteeringopportunityName = opportunity.title; const volunteerLanguage = getLanguages(volunteer.deal?.dealLanguage ?? []) @@ -145,7 +147,7 @@ export async function sendEmailIntroduction( volunteerEmail, volunteerPhone: volunteer.person.phone ?? "", contactpersonEmail: contactPersonEmail, - contactpersonPhone: opportunity.contactPerson!.phone ?? "", + contactpersonPhone: contactPerson.phone ?? "", agentAddress, statmentOnCertificates, }); diff --git a/src/services/notify/events/email-new-accompanying.ts b/src/services/notify/events/email-new-accompanying.ts index 5965ccf7..b29efd98 100644 --- a/src/services/notify/events/email-new-accompanying.ts +++ b/src/services/notify/events/email-new-accompanying.ts @@ -6,6 +6,7 @@ import { emailNewAccompanyingManifestUrl, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; +import { getOpportunityRepresentativePerson } from "../../../data/utils"; import { createManifestLoader, fillTemplate, @@ -38,7 +39,8 @@ export async function sendEmailNewAccompanying( email: EmailTransport, opportunity: Opportunity, ): Promise { - const contactPersonEmail = opportunity.contactPerson?.email; + const contactPerson = getOpportunityRepresentativePerson(opportunity); + const contactPersonEmail = contactPerson?.email; if (!contactPersonEmail) { throw new Error( `sendEmailNewAccompanying: missing contact email for opportunity ${opportunity.id}`, @@ -46,7 +48,7 @@ export async function sendEmailNewAccompanying( } const accompanying = opportunity.accompanying; - const contactpersonName = opportunity.contactPerson!.name; + const contactpersonName = contactPerson.name; const appointmentDate = accompanying?.date ? new Date(accompanying.date).toLocaleDateString("de-DE", { timeZone: "Europe/Berlin", @@ -66,7 +68,7 @@ export async function sendEmailNewAccompanying( const accompaniedpersonPhone = accompanying?.phone ?? ""; const appointmentComment = opportunity.info ?? ""; - const locale = resolveLocale(opportunity.contactPerson?.users?.[0]?.language); + const locale = resolveLocale(contactPerson.users?.[0]?.language); const content = resolveContent(await loader.load(), locale, BUILTIN); const { subject, text, html } = fillTemplate(content, { contactpersonName, diff --git a/src/services/notify/events/email-new-regular.ts b/src/services/notify/events/email-new-regular.ts index 2fd8446e..ed7b36d2 100644 --- a/src/services/notify/events/email-new-regular.ts +++ b/src/services/notify/events/email-new-regular.ts @@ -4,6 +4,7 @@ import { emailNewRegularManifestUrl, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; +import { getOpportunityRepresentativePerson } from "../../../data/utils"; import { createManifestLoader, fillTemplate, @@ -34,17 +35,18 @@ export async function sendEmailNewRegular( email: EmailTransport, opportunity: Opportunity, ): Promise { - const contactPersonEmail = opportunity.contactPerson?.email; + const contactPerson = getOpportunityRepresentativePerson(opportunity); + const contactPersonEmail = contactPerson?.email; if (!contactPersonEmail) { throw new Error( `sendEmailNewRegular: missing contact email for opportunity ${opportunity.id}`, ); } - const contactpersonName = opportunity.contactPerson!.name; + const contactpersonName = contactPerson.name; const volunteeringopportunityName = opportunity.title; - const locale = resolveLocale(opportunity.contactPerson?.users?.[0]?.language); + const locale = resolveLocale(contactPerson.users?.[0]?.language); const content = resolveContent(await loader.load(), locale, BUILTIN); const { subject, text, html } = fillTemplate(content, { contactpersonName, From bc76b7f3bbd43b3bcb20576911251c7ec4b9a8e3 Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 14 Jul 2026 17:50:55 +0000 Subject: [PATCH 88/89] fix: reject opportunity creation with a clear 400 when agent has no postcode POST /opportunity derives the Deal's postcode solely from the owning agent's address (this form has no rac_plz fallback, unlike the legacy route). deal. postcode_id is NOT NULL, so an agent without an address/postcode previously reached the DB as an unhandled 500 (QueryFailedError) instead of a clean validation error. --- src/server/routes/opportunity/opportunity.routes.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/server/routes/opportunity/opportunity.routes.ts b/src/server/routes/opportunity/opportunity.routes.ts index 0acd5c1c..6ab3560d 100644 --- a/src/server/routes/opportunity/opportunity.routes.ts +++ b/src/server/routes/opportunity/opportunity.routes.ts @@ -339,6 +339,16 @@ export default async function opportunityRoutes( throw new NotFoundError(`Agent (id:${agentId}) not found.`); } + // This route derives the deal's postcode solely from the agent's + // address (the form has no rac_plz fallback, unlike the legacy route). + // deal.postcode_id is NOT NULL, so a missing postcode here would + // otherwise reach the DB as an unhandled constraint violation. + if (!agent.address?.postcode?.value) { + throw new BadRequestError( + `Agent (id:${agentId}) has no postcode on its address; set one before creating an opportunity for it.`, + ); + } + // An AGENT may only create opportunities for an agent they belong to; // COORDINATOR/ADMIN may create for any agent. if (role === UserRole.AGENT) { From 2a8c495df4fb3a3957b928cfad45c093c48f746e Mon Sep 17 00:00:00 2001 From: arturasmckwcz Date: Tue, 14 Jul 2026 17:57:35 +0000 Subject: [PATCH 89/89] fix: two more bugs found while manually verifying opportunity creation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - getOpportunityRepresentativePerson() stopped at the first non-null candidate even if it had no email (e.g. a submitter whose email lives on their linked User row, not their Person row, as with internal coordinator/admin accounts). Now prefers whichever candidate actually has an email, falling through the chain instead of giving up early. - sendEmailNewRegular sent with `from: emailFromContact` — the only notify event not using `from: emailFromNotify` (the address actually authorized on the SMTP account all these emails share). Every send was rejected by Infomaniak with "550 5.7.1 Sender mismatch". Fixed to match every sibling event: `from: emailFromNotify`, `cc: emailFromContact`. Verified end-to-end against the local docker compose stack: created three opportunities via POST /opportunity for agent_id=1, confirmed the opportunity-confirmation communication log entry and a successful dry-run send to the agent's representative. --- .../get-opportunity-representative-person.ts | 23 ++++++++++++------- .../notify/events/email-new-regular.ts | 4 +++- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/src/data/utils/get-opportunity-representative-person.ts b/src/data/utils/get-opportunity-representative-person.ts index 9e61b6a4..a89d9fb4 100644 --- a/src/data/utils/get-opportunity-representative-person.ts +++ b/src/data/utils/get-opportunity-representative-person.ts @@ -1,17 +1,24 @@ import Opportunity from "../entity/opportunity/opportunity.entity"; import Person from "../entity/person.entity"; -// Resolves the single person to notify/contact for an opportunity: the -// submitter, else the legacy contact person (kept for opportunities that -// predate `submittedByPerson`), else the opportunity's agent's current +// Resolves the person to notify/contact for an opportunity: the submitter, +// else the legacy contact person (kept for opportunities that predate +// `submittedByPerson`), else the opportunity's agent's current // representative. Requires `submittedByPerson`, `contactPerson`, and // `agent.agentPerson.person` to be eager-loaded as needed by the caller. +// +// Prefers whichever candidate actually has an email over just the first +// non-null one: a submitter can be a Person with no email of its own (e.g. +// an internal coordinator account, whose email lives on their User row, not +// their Person row) — in that case we still want to fall through to a +// representative we can actually reach. export function getOpportunityRepresentativePerson( opportunity: Opportunity, ): Person | undefined { - return ( - opportunity.submittedByPerson ?? - opportunity.contactPerson ?? - opportunity.agent?.representative?.person - ); + const candidates = [ + opportunity.submittedByPerson, + opportunity.contactPerson, + opportunity.agent?.representative?.person, + ]; + return candidates.find((person) => person?.email) ?? candidates.find(Boolean); } diff --git a/src/services/notify/events/email-new-regular.ts b/src/services/notify/events/email-new-regular.ts index ed7b36d2..3ed97040 100644 --- a/src/services/notify/events/email-new-regular.ts +++ b/src/services/notify/events/email-new-regular.ts @@ -1,6 +1,7 @@ import { Lang } from "need4deed-sdk"; import { emailFromContact, + emailFromNotify, emailNewRegularManifestUrl, } from "../../../config/constants"; import Opportunity from "../../../data/entity/opportunity/opportunity.entity"; @@ -55,7 +56,8 @@ export async function sendEmailNewRegular( await email.send({ to: contactPersonEmail, - from: emailFromContact, + cc: emailFromContact, + from: emailFromNotify, subject, ...(text !== undefined ? { text } : {}), ...(html !== undefined ? { html } : {}),