PGDMP % owspolicy8.2.48.2.4|00ENCODINGENCODINGSET client_encoding = 'UTF8'; false00 STDSTRINGS STDSTRINGS)SET standard_conforming_strings = 'off'; false126217632wspolicyDATABASEFCREATE DATABASE wspolicy WITH TEMPLATE = template0 ENCODING = 'UTF8'; DROP DATABASE wspolicy; postgresfalse26152200publicSCHEMACREATE SCHEMA public; DROP SCHEMA public; postgresfalse00 SCHEMA publicCOMMENT6COMMENT ON SCHEMA public IS 'Standard public schema'; postgresfalse400publicACL|REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; postgresfalse4261518613upgradeSCHEMACREATE SCHEMA upgrade; DROP SCHEMA upgrade; postgresfalse261217635plpgsqlPROCEDURAL LANGUAGE$CREATE PROCEDURAL LANGUAGE plpgsql; "DROP PROCEDURAL LANGUAGE plpgsql; postgresfalse>124717637 AddResultTYPECREATE TYPE "AddResult" AS ( "NewID" integer, "DeletedBy" text, "ExternalID" integer, "ExternalIDStatus" integer, "LastViewID" integer ); DROP TYPE public."AddResult"; publicpostgresfalse1487?124717639 DeleteResultTYPECREATE TYPE "DeleteResult" AS ( "Result" boolean, "ReferencedBy" text, "CheckedOutBy" text, "DeletedBy" text, "LastViewID" integer ); !DROP TYPE public."DeleteResult"; publicpostgresfalse1488@124717641 EditResultTYPEsCREATE TYPE "EditResult" AS ( "Result" boolean, "CheckedOutBy" text, "DeletedBy" text, "LastViewID" integer ); DROP TYPE public."EditResult"; publicpostgresfalse1489A124717643GetVersionsSinceResultTYPEyCREATE TYPE "GetVersionsSinceResult" AS ( "ObjectID" integer, "TypeID" smallint, "ViewID" integer, "Type" integer ); +DROP TYPE public."GetVersionsSinceResult"; publicpostgresfalse1490K124717645ReferenceResultTYPEbCREATE TYPE "ReferenceResult" AS ( "Result" boolean, "DeletedBy" text, "LastViewID" integer ); $DROP TYPE public."ReferenceResult"; publicpostgresfalse1491125517646$AccessCheck(bytea, integer, integer)FUNCTIONCREATE FUNCTION "AccessCheck"(token bytea, object_id integer, acc integer) RETURNS integer AS $$ DECLARE role_id integer[]; ret integer; BEGIN role_id := "GetUserRoleFromToken"(token); IF role_id IS NULL THEN RETURN 2; END IF; IF "AccessCheckByRoles"(role_id, object_id, acc) THEN ret := 1; ELSE ret := 0; END IF; RETURN ret; END $$ LANGUAGE plpgsql; QDROP FUNCTION public."AccessCheck"(token bytea, object_id integer, acc integer); publicpostgresfalse4824125517647/AccessCheckByRoles(integer[], integer, integer)FUNCTION'CREATE FUNCTION "AccessCheckByRoles"(role_id integer[], object_id integer, acc integer) RETURNS boolean AS $$ DECLARE ret integer; cur_rights integer; cur_desc_rights integer; is_folder boolean; use_desc boolean; ar_low integer; ar_up integer; object_exist boolean; BEGIN object_exist := false; ret := 0; ar_low := COALESCE(array_lower(role_id, 1), 0); ar_up := COALESCE(array_upper(role_id, 1), -1); for i in ar_low..ar_up loop use_desc := false; FOR is_folder, cur_desc_rights, cur_rights IN SELECT tt."IsFolder", COALESCE(ac."DescendantRights", 0), COALESCE(ac."SelfRights", 0) FROM "GetReverseAnsectorsOf"(object_id) AS path INNER JOIN "TypeToTable" AS tt ON path."TypeID" = tt."TypeID" LEFT OUTER JOIN "AccessControl" AS ac ON ac."ObjectID" = path."ID" AND ac."UserRoleID" = role_id[i] LOOP object_exist := true; IF use_desc THEN ret := ret | cur_desc_rights; ELSE ret := ret | cur_rights; END IF; IF (ret & acc) = acc THEN RETURN true; END IF; use_desc := use_desc OR is_folder; END LOOP; IF NOT object_exist THEN RETURN true; END IF; end loop; RETURN false; END $$ LANGUAGE plpgsql; ^DROP FUNCTION public."AccessCheckByRoles"(role_id integer[], object_id integer, acc integer); publicpostgresfalse48241255176484AddAuditRecord(timestamp with time zone, text, text)FUNCTION CREATE FUNCTION "AddAuditRecord"(dateof timestamp with time zone, username text, "action" text) RETURNS void AS $$ DECLARE BEGIN INSERT INTO "AuditLog" ("Date", "User", "Action") VALUES (dateof, username, action); END $$ LANGUAGE plpgsql; fDROP FUNCTION public."AddAuditRecord"(dateof timestamp with time zone, username text, "action" text); publicpostgresfalse4824125517649#AddAuditRecordInternal(bytea, text)FUNCTIONCREATE FUNCTION "AddAuditRecordInternal"(token bytea, "action" text) RETURNS void AS $$ DECLARE username text; can_audit boolean; BEGIN SELECT "UserName", "CanAudit" INTO username, can_audit FROM "Tokens" WHERE "Data" = token; --Mute Websense Audits IF NOT can_audit THEN RETURN; END IF; INSERT INTO "AuditLog" ("Date", "User", "Action") VALUES (transaction_timestamp(), username, action); END $$ LANGUAGE plpgsql; KDROP FUNCTION public."AddAuditRecordInternal"(token bytea, "action" text); publicpostgresfalse48241255176501AddUserRights(integer, integer, integer, integer)FUNCTION~CREATE FUNCTION "AddUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer) RETURNS void AS $$ DECLARE cur_role_id integer; BEGIN IF self_rights != 0 OR desc_rights != 0 THEN UPDATE "AccessControl" SET "SelfRights" = "SelfRights" | self_rights, "DescendantRights" = "DescendantRights" | desc_rights WHERE "ObjectID" = object_id AND "UserRoleID" = role_id; IF NOT FOUND THEN INSERT INTO "AccessControl" ("ObjectID", "UserRoleID", "SelfRights", "DescendantRights") VALUES (object_id, role_id, self_rights, desc_rights); END IF; END IF; END $$ LANGUAGE plpgsql; tDROP FUNCTION public."AddUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer); publicpostgresfalse4824125517651BAddVersionedObjectEntry(integer, integer, smallint, integer, text)FUNCTIONCREATE FUNCTION "AddVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer, audit_name text) RETURNS integer AS $$ DECLARE ext_id_can_alloc boolean; ext_id integer; path integer[]; ret integer; rec RECORD; BEGIN IF "HasExternalID"(type_id) THEN SELECT eidp."CanAlloc", eidp."Value" INTO ext_id_can_alloc, ext_id FROM "ExternalIDPending" AS eidp INNER JOIN "AddsPending" AS ap ON eidp."ObjectID" = ap."ObjectID" WHERE eidp."ObjectID" = object_id AND ap."ChangelistID" = changelist_id ; END IF; DELETE FROM "AddsPending" WHERE "ObjectID" = object_id AND "ChangelistID" = changelist_id RETURNING "Path" INTO path; IF NOT FOUND THEN RAISE EXCEPTION 'Object not checked out for add'; END IF; INSERT INTO "VersionedObjects" ("ID", "TypeID", "Path", "AuditName") VALUES (object_id, type_id, path, "ExtractAuditName"(audit_name)); INSERT INTO "Versions" ("BeginViewID", "EndViewID", "ObjectID") VALUES (new_view_id, 2147483647, object_id) RETURNING "ID" INTO ret; IF NOT ext_id IS NULL THEN INSERT INTO "ExternalID" ("TypeID", "CanAlloc", "ObjectID", "Value") VALUES (type_id, ext_id_can_alloc, object_id, ext_id); END IF; RETURN ret; END $$ LANGUAGE plpgsql; DROP FUNCTION public."AddVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer, audit_name text); publicpostgresfalse4824125517652#AdvanceChangelist(integer, integer)FUNCTIONCREATE FUNCTION "AdvanceChangelist"(id integer, view_id integer) RETURNS void AS $_$ UPDATE "Changelists" SET "ViewID" = $2 WHERE "ID" = $1; $_$ LANGUAGE sql; GDROP FUNCTION public."AdvanceChangelist"(id integer, view_id integer); publicpostgresfalse4125917653 ChangelistsTABLECREATE TABLE "Changelists" ( "ID" integer NOT NULL, "ViewID" integer NOT NULL, "LastCheckPoint" integer DEFAULT 0 NOT NULL, "ClientDescription" text NOT NULL, "LastAccessed" timestamp with time zone NOT NULL ); !DROP TABLE public."Changelists"; publicpostgresfalse19714125517659AllocChangelist(integer, text)FUNCTION4CREATE FUNCTION "AllocChangelist"(view_id integer, client_desc text) RETURNS "Changelists" AS $_$ INSERT INTO "Changelists" ("ViewID", "ClientDescription", "LastAccessed") VALUES($1, $2, CURRENT_TIMESTAMP); SELECT * FROM "Changelists" WHERE "ID"=currval('"Changelists_ID_seq"'); $_$ LANGUAGE sql; KDROP FUNCTION public."AllocChangelist"(view_id integer, client_desc text); publicpostgresfalse3324125517660AllocExternalID(smallint)FUNCTIONtCREATE FUNCTION "AllocExternalID"(type_id smallint) RETURNS integer AS $_$ SELECT COALESCE("BeginRange", 0) FROM ( SELECT "BeginRange", "ReserveExternalID"($1, "BeginRange") FROM ( SELECT "BeginRange" FROM "ExternalIDPool" WHERE "TypeID" = $1 AND "CanAlloc" ORDER BY "FreedAt", "BeginRange" ASC LIMIT 1) as first_free ) as dummy; $_$ LANGUAGE sql; :DROP FUNCTION public."AllocExternalID"(type_id smallint); publicpostgresfalse4125917661 ReferencesTABLECREATE TABLE "References" ( "Src" integer NOT NULL, "Dst" integer NOT NULL, "Count" integer NOT NULL, CONSTRAINT "Count" CHECK (("Count" >= 0)) ); DROP TABLE public."References"; publicpostgresfalse19724125517663CanDelete(integer, integer[])FUNCTIONCREATE FUNCTION "CanDelete"(changelist_id integer, object_ids integer[]) RETURNS SETOF "References" AS $_$ SELECT ext_src.* FROM (SELECT refs.* FROM "GetPendingReferences"($1) AS refs WHERE "Dst" = ANY ($2) AND "Src" != ALL ($2) AND "Count" != 0) AS ext_src LEFT OUTER JOIN "CheckoutsPending" AS cp ON ext_src."Src" = cp."ObjectID" AND (cp."DeleteCheckPoint" != 2147483647) WHERE cp."ChangelistID" IS NULL OR cp."ChangelistID" != $1; $_$ LANGUAGE sql; ODROP FUNCTION public."CanDelete"(changelist_id integer, object_ids integer[]); publicpostgresfalse3344125517664!CheckinReferencedObjects(integer)FUNCTIONCREATE FUNCTION "CheckinReferencedObjects"(changelist_id integer) RETURNS void AS $$ DECLARE entry RECORD; BEGIN FOR entry IN SELECT "Src", "Dst", "Count" FROM "ReferencesPending" WHERE "ChangelistID" = changelist_id LOOP UPDATE "References" SET "Count" = "Count" + entry."Count" WHERE "Src" = entry."Src" AND "Dst" = entry."Dst"; IF NOT FOUND THEN INSERT INTO "References" ("Src", "Dst", "Count") VALUES (entry."Src", entry."Dst", entry."Count"); END IF; END LOOP; DELETE FROM "References" WHERE "Count" = 0; DELETE FROM "ReferencesPending" WHERE "ChangelistID" = changelist_id; END; $$ LANGUAGE plpgsql; HDROP FUNCTION public."CheckinReferencedObjects"(changelist_id integer); publicpostgresfalse48241255176653CheckoutForAdd(integer, integer, smallint, integer)FUNCTION CREATE FUNCTION "CheckoutForAdd"(changelist_id integer, owner_id integer, type_id smallint, external_id integer) RETURNS "AddResult" AS $$ DECLARE checkout_cl_id integer; target_view_id integer; last_view_id integer; last_checkpoint integer; path integer[]; ext_id integer; ext_id_alloc boolean; ext_id_res_result integer; result "AddResult"; BEGIN --get the current check-out status SELECT "ChangelistID" INTO checkout_cl_id FROM "CheckoutsPending" WHERE "ObjectID" = owner_id AND "DeleteCheckPoint" != 2147483647; --if checked out return failure IF FOUND THEN result."DeletedBy" := "GetChangelistDescription"(checkout_cl_id); result."NewID" := 0; RETURN result; END IF; --check that the target view is latest for the parent SELECT "ViewID", "LastCheckPoint" INTO target_view_id, last_checkpoint FROM "Changelists" WHERE "ID" = changelist_id; SELECT "BeginViewID" INTO last_view_id FROM "Versions" WHERE "ObjectID" = owner_id AND "EndViewID" = 2147483647 AND "BeginViewID" > target_view_id; IF FOUND THEN result."LastViewID" = last_view_id; result."NewID" := 0; RETURN result; END IF; -- get the path SELECT "Path" || owner_id INTO path FROM ( SELECT "Path" FROM "VersionedObjects" WHERE "ID" = owner_id UNION ALL SELECT "Path" FROM "AddsPending" WHERE "ObjectID" = owner_id ) as combined; --make the add INSERT INTO "AddsPending" ("ChangelistID", "Path", "CheckPoint") VALUES (changelist_id, path, last_checkpoint); result."NewID" := currval('"AddsPending_ObjectID_seq"'); --allocate external ids if needed IF "HasExternalID"(type_id) THEN IF external_id = 0 THEN ext_id := "AllocExternalID"(type_id); ext_id_alloc := TRUE; ELSE ext_id_res_result := "ReserveExternalID"(type_id, external_id); IF ext_id_res_result = 0 THEN ext_id := 0; ext_id_alloc := FALSE; ELSE ext_id_alloc := (ext_id_res_result = 2); ext_id := external_id; END IF; END IF; IF ext_id = 0 THEN --the delete is not really neccessary since transaction rollback will take care of --it but at this stage I don't want to destabilize things - EG DELETE FROM "AddsPending" WHERE "ObjectID" = result."NewID"; IF ext_id_alloc THEN result."ExternalIDStatus" := 1; ELSE result."ExternalIDStatus" := 2; END IF; result."NewID" := 0; RETURN result; END IF; INSERT INTO "ExternalIDPending" ("TypeID", "CanAlloc", "ObjectID", "Value") VALUES (type_id, ext_id_alloc, result."NewID", ext_id); result."ExternalID" := ext_id; END IF; RETURN result; END $$ LANGUAGE plpgsql; wDROP FUNCTION public."CheckoutForAdd"(changelist_id integer, owner_id integer, type_id smallint, external_id integer); publicpostgresfalse3184824S125517666#CheckoutForDelete(integer, integer)FUNCTIONi CREATE FUNCTION "CheckoutForDelete"(changelist_id integer, object_id integer) RETURNS "DeleteResult" AS $$ DECLARE result "DeleteResult"; checkout_cl_id integer; for_delete bool; target_view_id integer; last_view_id integer; last_checkpoint integer; BEGIN --get the current check-out status SELECT "ChangelistID", ("DeleteCheckPoint" != 2147483647) AS "ForDelete" INTO checkout_cl_id, for_delete FROM "CheckoutsPending" WHERE "ObjectID" = object_id; IF FOUND THEN --check that whether the object is checked out for delete IF for_delete THEN result."DeletedBy" := "GetChangelistDescription"(checkout_cl_id); result."Result" := FALSE; RETURN result; END IF; --check whether the object is checked out for edit not by us IF (checkout_cl_id != changelist_id) THEN result."CheckedOutBy" := "GetChangelistDescription"(checkout_cl_id); result."Result" := FALSE; RETURN result; END IF; END IF; --check that the target view is latest for this object SELECT "ViewID", "LastCheckPoint" INTO target_view_id, last_checkpoint FROM "Changelists" WHERE "ID" = changelist_id; SELECT max("EndViewID") INTO last_view_id FROM "Versions" WHERE "ObjectID" = object_id AND "EndViewID" > target_view_id AND "EndViewID" < 2147483647; IF NOT last_view_id IS NULL THEN result."LastViewID" := last_view_id; result."Result" := FALSE; RETURN result; END IF; --check if the object is referenced by others (note: this is different from CanDelete) IF "IsReferencedByOthers"(changelist_id, object_id) THEN result."Result" := FALSE; RETURN result; END IF; --check if there are children added by others IF "IsChildrenAddedByOthers"(changelist_id, object_id) THEN result."Result" := FALSE; RETURN result; END IF; -- update data making sure checked out is completely removed UPDATE "CheckoutsPending" SET "DeleteCheckPoint" = last_checkpoint WHERE "ObjectID" = object_id AND "ChangelistID" = changelist_id; IF NOT FOUND THEN INSERT INTO "CheckoutsPending" ("ObjectID", "ChangelistID", "EditCheckPoint", "DeleteCheckPoint") VALUES (object_id, changelist_id, 2147483647, last_checkpoint); END IF; result."Result" := TRUE; RETURN result; END $$ LANGUAGE plpgsql; TDROP FUNCTION public."CheckoutForDelete"(changelist_id integer, object_id integer); publicpostgresfalse3194824R125517667!CheckoutForEdit(integer, integer)FUNCTION<CREATE FUNCTION "CheckoutForEdit"(changelist_id integer, object_id integer) RETURNS "EditResult" AS $$ DECLARE checkout_cl_id integer; for_delete bool; target_view_id integer; last_view_id integer; last_checkpoint integer; result "EditResult"; BEGIN --get the current check-out status SELECT "ChangelistID", ("DeleteCheckPoint" != 2147483647) AS "ForDelete" INTO checkout_cl_id, for_delete FROM "CheckoutsPending" WHERE "ObjectID" = object_id; --if checked out return failure IF FOUND THEN IF for_delete THEN result."DeletedBy" := "GetChangelistDescription"(checkout_cl_id); ELSE result."CheckedOutBy" := "GetChangelistDescription"(checkout_cl_id); END IF; result."Result" := FALSE; RETURN result; END IF; --check that the target view is latest for this object SELECT "ViewID", "LastCheckPoint" INTO target_view_id, last_checkpoint FROM "Changelists" WHERE "ID" = changelist_id; SELECT max("EndViewID") INTO last_view_id FROM "Versions" WHERE "ObjectID" = object_id AND "EndViewID" > target_view_id AND "EndViewID" < 2147483647; IF NOT last_view_id IS NULL THEN result."LastViewID" := last_view_id; result."Result" := FALSE; RETURN result; END IF; --make the checkout INSERT INTO "CheckoutsPending" ("ObjectID", "ChangelistID", "EditCheckPoint", "DeleteCheckPoint") VALUES (object_id, changelist_id, last_checkpoint, 2147483647); result."Result" := TRUE; RETURN result; END $$ LANGUAGE plpgsql; RDROP FUNCTION public."CheckoutForEdit"(changelist_id integer, object_id integer); publicpostgresfalse3204824T1255176688CheckoutForReference(integer, integer, integer, integer)FUNCTION2CREATE FUNCTION "CheckoutForReference"(changelist_id integer, object_id integer, src_id integer, delta integer) RETURNS "ReferenceResult" AS $$ DECLARE result "ReferenceResult"; checkout_cl_id integer; target_view_id integer; last_view_id integer; last_checkpoint integer; BEGIN --get the current check-out status SELECT "ChangelistID" INTO checkout_cl_id FROM "CheckoutsPending" WHERE "ObjectID" = object_id AND "DeleteCheckPoint" != 2147483647; IF FOUND THEN result."DeletedBy" := "GetChangelistDescription"(checkout_cl_id); result."Result" := FALSE; RETURN result; END IF; --check that the target view is latest for this object SELECT "ViewID", "LastCheckPoint" INTO target_view_id, last_checkpoint FROM "Changelists" WHERE "ID" = changelist_id; SELECT max("EndViewID") INTO last_view_id FROM "Versions" WHERE "ObjectID" = object_id AND "EndViewID" > target_view_id AND "EndViewID" < 2147483647; IF NOT last_view_id IS NULL THEN result."LastViewID" := last_view_id; result."Result" := FALSE; RETURN result; END IF; PERFORM "DoCheckoutForReference"(changelist_id, last_checkpoint, object_id, src_id, delta); result."Result" := TRUE; RETURN result; END $$ LANGUAGE plpgsql; vDROP FUNCTION public."CheckoutForReference"(changelist_id integer, object_id integer, src_id integer, delta integer); publicpostgresfalse3314824 125517669!ClearChangelist(integer, integer)FUNCTIONCREATE FUNCTION "ClearChangelist"(id integer, up_to_checkpoint integer) RETURNS void AS $_$ DELETE FROM "CheckoutsPending" WHERE "ChangelistID" = $1 AND "EditCheckPoint" >= $2 AND "DeleteCheckPoint" >= $2; UPDATE "CheckoutsPending" SET "DeleteCheckPoint" = 2147483647 WHERE "ChangelistID" = $1 AND "DeleteCheckPoint" >= $2; DELETE FROM "ReferencesPending" WHERE "ChangelistID" = $1 AND "CheckPoint" >= $2; SELECT "FreeExternalID"(to_free."TypeID", to_free."Value", to_free."CanAlloc") FROM ( SELECT "TypeID", "CanAlloc", "Value" FROM "ExternalIDPending" AS eidp INNER JOIN "AddsPending" AS ap ON eidp."ObjectID" = ap."ObjectID" WHERE ap."ChangelistID" = $1 AND ap."CheckPoint" >= $2 ) as to_free; DELETE FROM "AddsPending" WHERE "ChangelistID" = $1 AND "CheckPoint" >= $2; UPDATE "Changelists" SET "LastCheckPoint" = $2 - 1, "LastAccessed" = CURRENT_TIMESTAMP WHERE "ID" = $1; DELETE FROM "Changelists" WHERE "LastAccessed" <= (CURRENT_TIMESTAMP - '15 min'::interval); $_$ LANGUAGE sql; NDROP FUNCTION public."ClearChangelist"(id integer, up_to_checkpoint integer); publicpostgresfalse4!125517670CreateLocalToken(text, bytea)FUNCTIONOCREATE FUNCTION "CreateLocalToken"(username text, token bytea) RETURNS integer[] AS $$ DECLARE canonical_name text; role_id integer[]; can_audit boolean; priv integer; privs integer; ar_low integer; ar_up integer; BEGIN PERFORM "FreeStaleTokens"(); SELECT "LocalUsers"."Name", "LocalUsers"."UserRoleID", "LocalUsers"."CanAudit" INTO canonical_name, role_id, can_audit FROM "LocalUsers" INNER JOIN "Versions" ON "LocalUsers"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647 AND upper("LocalUsers"."Name") = upper(username); IF NOT FOUND THEN RAISE EXCEPTION 'Invalid username'; END IF; --should we check for uniqueness here? privs := 0; ar_low := COALESCE(array_lower(role_id, 1), 0); ar_up := COALESCE(array_upper(role_id, 1), -1); FOR i IN ar_low..ar_up LOOP SELECT "Privileges" INTO priv FROM "UserRoles" INNER JOIN "Versions" ON "UserRoles"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647 AND "Versions"."ObjectID" = role_id[i]; privs := privs | priv; END LOOP; INSERT INTO "Tokens" ("Data", "UserRoleID", "UserName", "Created", "CanAudit", "Privileges") VALUES (token, role_id, canonical_name, CURRENT_TIMESTAMP, can_audit, privs); RETURN role_id; END $$ LANGUAGE plpgsql; EDROP FUNCTION public."CreateLocalToken"(username text, token bytea); publicpostgresfalse4824"125517671)CreateRemoteToken(text, bytea, integer[])FUNCTION}CREATE FUNCTION "CreateRemoteToken"(username text, token bytea, role_id integer[]) RETURNS void AS $$ DECLARE priv integer; privs integer; ar_low integer; ar_up integer; BEGIN PERFORM "FreeStaleTokens"(); --should we check for uniqueness here? privs := 0; ar_low := COALESCE(array_lower(role_id, 1), 0); ar_up := COALESCE(array_upper(role_id, 1), -1); FOR i IN ar_low..ar_up LOOP SELECT "Privileges" INTO priv FROM "UserRoles" INNER JOIN "Versions" ON "UserRoles"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647 AND "Versions"."ObjectID" = role_id[i]; privs := privs | priv; END LOOP; INSERT INTO "Tokens" ("Data", "UserRoleID", "UserName", "Created", "CanAudit", "Privileges") VALUES (token, role_id, username, CURRENT_TIMESTAMP, TRUE, privs); END $$ LANGUAGE plpgsql; YDROP FUNCTION public."CreateRemoteToken"(username text, token bytea, role_id integer[]); publicpostgresfalse4824125917672ViewsTABLEbCREATE TABLE "Views" ( "ID" integer NOT NULL, "Time" timestamp with time zone NOT NULL ); DROP TABLE public."Views"; publicpostgresfalse4#125517674 CreateView()FUNCTIONCREATE FUNCTION "CreateView"() RETURNS "Views" AS $$ INSERT INTO "Views" ("Time") VALUES(CURRENT_TIMESTAMP); SELECT * FROM "Views" WHERE "ID"=currval('"Views_ID_seq"'); $$ LANGUAGE sql; %DROP FUNCTION public."CreateView"(); publicpostgresfalse3354$125517675DeleteAuditLogs()FUNCTIONCREATE FUNCTION "DeleteAuditLogs"() RETURNS "trigger" AS $$ DECLARE deletedate timestamptz; BEGIN deletedate = current_date - interval '60 days'; DELETE FROM "AuditLog" where "Date" < deletedate; RETURN NEW; END $$ LANGUAGE plpgsql; *DROP FUNCTION public."DeleteAuditLogs"(); publicpostgresfalse4824%125517676DeleteOldVersions(integer)FUNCTIONCREATE FUNCTION "DeleteOldVersions"(cut_view_id integer) RETURNS void AS $$ BEGIN DELETE FROM "Versions" WHERE "EndViewID" <= cut_view_id; DELETE FROM "VersionedObjects" WHERE NOT EXISTS (SELECT "ID" FROM "Versions" AS ver WHERE ver."ObjectID"); UPDATE "Versions" SET "BeginViewID" = cut_view_id WHERE "BeginViewID" < cut_view_id; DELETE FROM "Views" WHERE "ID" < cut_view_id; END $$ LANGUAGE plpgsql; ?DROP FUNCTION public."DeleteOldVersions"(cut_view_id integer); publicpostgresfalse4824&125517677?DeleteVersionedObjectEntry(integer, integer, smallint, integer)FUNCTION.CREATE FUNCTION "DeleteVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer) RETURNS void AS $$ BEGIN DELETE FROM "CheckoutsPending" WHERE "ObjectID" = object_id AND "ChangelistID" = changelist_id AND "DeleteCheckPoint" != 2147483647; IF NOT FOUND THEN RAISE EXCEPTION 'Object not checked out for delete'; END IF; IF "HasExternalID"(type_id) THEN PERFORM "FreeExternalID"("TypeID", "Value", "CanAlloc") FROM ( SELECT "TypeID", "CanAlloc", "Value" FROM "ExternalID" WHERE "ObjectID" = object_id ) as to_free; DELETE FROM "ExternalID" WHERE "ObjectID" = object_id; END IF; UPDATE "Versions" SET "EndViewID" = new_view_id WHERE "ObjectID" = object_id AND "EndViewID" = 2147483647; END $$ LANGUAGE plpgsql; DROP FUNCTION public."DeleteVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer); publicpostgresfalse4824'125517678CDoCheckoutForReference(integer, integer, integer, integer, integer)FUNCTIONVCREATE FUNCTION "DoCheckoutForReference"(changelist_id integer, last_checkpoint integer, object_id integer, src_id integer, delta integer) RETURNS void AS $$ DECLARE new_count integer; BEGIN UPDATE "ReferencesPending" SET "Count" = "Count" + delta WHERE "Src" = src_id AND "Dst" = object_id AND "ChangelistID" = changelist_id AND "CheckPoint" = last_checkpoint RETURNING "Count" INTO new_count; IF NOT FOUND THEN INSERT INTO "ReferencesPending" ("ChangelistID", "CheckPoint", "Src", "Dst", "Count") VALUES ( changelist_id, last_checkpoint, src_id, object_id, delta); ELSEIF new_count = 0 THEN DELETE FROM "ReferencesPending" WHERE "Src" = src_id AND "Dst" = object_id AND "ChangelistID" = changelist_id AND "CheckPoint" = last_checkpoint; END IF; END $$ LANGUAGE plpgsql; DROP FUNCTION public."DoCheckoutForReference"(changelist_id integer, last_checkpoint integer, object_id integer, src_id integer, delta integer); publicpostgresfalse4824(125517679ExtractAuditName(text)FUNCTIONnCREATE FUNCTION "ExtractAuditName"(string text) RETURNS text AS $_$ SELECT $1; $_$ LANGUAGE sql; 6DROP FUNCTION public."ExtractAuditName"(string text); publicpostgresfalse4)125517680FreeChangelist(integer)FUNCTIONCREATE FUNCTION "FreeChangelist"(id integer) RETURNS void AS $_$ DELETE FROM "Changelists" WHERE "ID" = $1; $_$ LANGUAGE sql; 3DROP FUNCTION public."FreeChangelist"(id integer); publicpostgresfalse4*125517681*FreeExternalID(smallint, integer, boolean)FUNCTIONCREATE FUNCTION "FreeExternalID"(type_id smallint, id integer, can_alloc boolean) RETURNS void AS $$ DECLARE begin_prefix integer; end_suffix integer; this_time timestamp with time zone; BEGIN this_time := transaction_timestamp(); --merge with prefix if possible UPDATE "ExternalIDPool" SET "EndRange" = id + 1 WHERE "TypeID" = type_id AND "CanAlloc" = can_alloc AND "EndRange" = id AND "FreedAt" = this_time RETURNING "BeginRange" INTO begin_prefix; --merge with suffix if possible UPDATE "ExternalIDPool" SET "BeginRange" = id WHERE "TypeID" = type_id AND "CanAlloc" = can_alloc AND "BeginRange" = id + 1 AND "FreedAt" = this_time RETURNING "EndRange" INTO end_suffix; IF (begin_prefix IS NULL) AND (end_suffix IS NULL) THEN --if neither merge happened insert new entry INSERT INTO "ExternalIDPool" ("TypeID", "CanAlloc", "BeginRange", "EndRange", "FreedAt") VALUES (type_id, can_alloc, id, id + 1, this_time); ELSEIF NOT (begin_prefix IS NULL) AND NOT (end_suffix IS NULL) THEN --if both merges happened unite both entries UPDATE "ExternalIDPool" SET "BeginRange" = begin_prefix, "EndRange" = end_suffix WHERE "TypeID" = type_id AND "CanAlloc" = can_alloc AND "EndRange" = id + 1; DELETE FROM "ExternalIDPool" WHERE "TypeID" = type_id AND "CanAlloc" = can_alloc AND "BeginRange" = id; END IF; END $$ LANGUAGE plpgsql; XDROP FUNCTION public."FreeExternalID"(type_id smallint, id integer, can_alloc boolean); publicpostgresfalse4824+125517682FreeStaleTokens()FUNCTIONCREATE FUNCTION "FreeStaleTokens"() RETURNS void AS $$ DECLARE BEGIN DELETE FROM "Tokens" WHERE "Created" <= (CURRENT_TIMESTAMP - '30 min'::interval); END $$ LANGUAGE plpgsql; *DROP FUNCTION public."FreeStaleTokens"(); publicpostgresfalse4824,125517683FreeToken(bytea)FUNCTIONCREATE FUNCTION "FreeToken"(data bytea) RETURNS void AS $_$ DECLARE BEGIN DELETE FROM "Tokens" WHERE "Data" = $1; END $_$ LANGUAGE plpgsql; .DROP FUNCTION public."FreeToken"(data bytea); publicpostgresfalse4824125917684 AccessControlTABLECREATE TABLE "AccessControl" ( "ObjectID" integer NOT NULL, "UserRoleID" integer NOT NULL, "SelfRights" integer NOT NULL, "DescendantRights" integer NOT NULL ); #DROP TABLE public."AccessControl"; publicpostgresfalse4-125517686GetAclFor(integer)FUNCTIONCREATE FUNCTION "GetAclFor"(object_id integer) RETURNS SETOF "AccessControl" AS $_$ SELECT * FROM "AccessControl" WHERE "ObjectID" = $1; $_$ LANGUAGE sql; 5DROP FUNCTION public."GetAclFor"(object_id integer); publicpostgresfalse3364125917687VersionedObjectsTABLECREATE TABLE "VersionedObjects" ( "ID" integer NOT NULL, "TypeID" smallint NOT NULL, "Path" integer[] NOT NULL, "DeletedBy" integer, "AuditName" text ); &DROP TABLE public."VersionedObjects"; publicpostgresfalse4.125517692GetAnsectorsOf(integer)FUNCTIONCCREATE FUNCTION "GetAnsectorsOf"(object_id integer) RETURNS SETOF "VersionedObjects" AS $_$ SELECT vo.* FROM "VersionedObjects" AS vo INNER JOIN ( SELECT explode_array("Path" || $1) AS "ID" FROM "VersionedObjects" WHERE "ID" = $1 ) AS filter ON vo."ID" = filter."ID" ORDER BY "Path" ASC; $_$ LANGUAGE sql; :DROP FUNCTION public."GetAnsectorsOf"(object_id integer); publicpostgresfalse3374/125517693GetAuditObjectName(integer)FUNCTIONCREATE FUNCTION "GetAuditObjectName"(object_id integer) RETURNS text AS $$ DECLARE par_id integer; par_name text; type_name text; res text; BEGIN IF object_id = 0 THEN RETURN 'none'; END IF; SELECT tt."AuditName" INTO type_name FROM "VersionedObjects" AS vo, "TypeToTable" AS tt WHERE vo."ID" = object_id AND vo."TypeID" = tt."TypeID"; res := type_name || ':'; FOR par_id, par_name IN SELECT "ID", "AuditName" FROM "GetAnsectorsOf"(object_id) LOOP res := res || '/'; IF NOT par_name IS NULL THEN res := res || "ExtractAuditName"(par_name); ELSE res := res || par_id; END IF; END LOOP; RETURN res; END $$ LANGUAGE plpgsql; >DROP FUNCTION public."GetAuditObjectName"(object_id integer); publicpostgresfalse4824125917694AuditLogTABLECREATE TABLE "AuditLog" ( "ID" integer NOT NULL, "Date" timestamp with time zone NOT NULL, "User" text NOT NULL, "Action" text ); DROP TABLE public."AuditLog"; publicpostgresfalse40125517699!GetAuditRecords(integer, integer)FUNCTIONCREATE FUNCTION "GetAuditRecords"(page_number integer, page_size integer) RETURNS SETOF "AuditLog" AS $_$ SELECT * FROM "AuditLog" ORDER BY "Date" DESC LIMIT $2 OFFSET $1 * $2; $_$ LANGUAGE sql; PDROP FUNCTION public."GetAuditRecords"(page_number integer, page_size integer); publicpostgresfalse33941125517700[GetAuditRecordsByDate(timestamp with time zone, timestamp with time zone, integer, integer)FUNCTIONCCREATE FUNCTION "GetAuditRecordsByDate"(start_date timestamp with time zone, end_date timestamp with time zone, page_number integer, page_size integer) RETURNS SETOF "AuditLog" AS $_$ SELECT * FROM "AuditLog" WHERE "Date" >= $1 AND "Date" <= $2 ORDER BY "Date" DESC LIMIT $4 OFFSET $3 * $4; $_$ LANGUAGE sql; DROP FUNCTION public."GetAuditRecordsByDate"(start_date timestamp with time zone, end_date timestamp with time zone, page_number integer, page_size integer); publicpostgresfalse33942125517701GetAuditRecordsCount()FUNCTIONCREATE FUNCTION "GetAuditRecordsCount"() RETURNS integer AS $$ SELECT CAST(count(*) AS integer) FROM "AuditLog"; $$ LANGUAGE sql; /DROP FUNCTION public."GetAuditRecordsCount"(); publicpostgresfalse43125517702NGetAuditRecordsCountByDate(timestamp with time zone, timestamp with time zone)FUNCTIONCREATE FUNCTION "GetAuditRecordsCountByDate"(start_date timestamp with time zone, end_date timestamp with time zone) RETURNS integer AS $_$ SELECT CAST(count(*) AS integer) FROM "AuditLog" WHERE "Date" >= $1 AND "Date" <= $2 $_$ LANGUAGE sql; {DROP FUNCTION public."GetAuditRecordsCountByDate"(start_date timestamp with time zone, end_date timestamp with time zone); publicpostgresfalse44125517703!GetChangelistDescription(integer)FUNCTIONCREATE FUNCTION "GetChangelistDescription"(changelist_id integer) RETURNS text AS $_$ SELECT "ClientDescription" FROM "Changelists" WHERE "ID" = $1; $_$ LANGUAGE sql; HDROP FUNCTION public."GetChangelistDescription"(changelist_id integer); publicpostgresfalse45125517704GetCurrentViewID()FUNCTIONCREATE FUNCTION "GetCurrentViewID"() RETURNS integer AS $$ SELECT "ID" FROM "Views" ORDER BY "Time" DESC LIMIT 1; $$ LANGUAGE sql STABLE; +DROP FUNCTION public."GetCurrentViewID"(); publicpostgresfalse46125517705GetDirectChildrenOf(integer)FUNCTIONCREATE FUNCTION "GetDirectChildrenOf"(object_id integer) RETURNS SETOF "VersionedObjects" AS $_$ SELECT child.* FROM "VersionedObjects" AS child JOIN "VersionedObjects" parent ON child."Path" = (parent."Path" || $1) WHERE parent."ID" = $1; $_$ LANGUAGE sql; ?DROP FUNCTION public."GetDirectChildrenOf"(object_id integer); publicpostgresfalse33747125517706GetPassword(text)FUNCTION!CREATE FUNCTION "GetPassword"(username text) RETURNS bytea AS $_$ SELECT "LocalUsers"."pwdPassword" FROM "LocalUsers" INNER JOIN "Versions" ON "LocalUsers"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647 AND "LocalUsers"."Name" = $1; $_$ LANGUAGE sql; 3DROP FUNCTION public."GetPassword"(username text); publicpostgresfalse48125517707GetPendingReferences(integer)FUNCTIONrCREATE FUNCTION "GetPendingReferences"(changelist_id integer) RETURNS SETOF "References" AS $_$ SELECT "Src", "Dst", CAST(SUM("aCount") AS integer) AS "Count" FROM ( SELECT COALESCE("References"."Src", pending."Src") AS "Src", COALESCE("References"."Dst", pending."Dst") AS "Dst", COALESCE("References"."Count", 0) + COALESCE(pending."Count", 0) AS "aCount" FROM "References" FULL OUTER JOIN (SELECT * FROM "ReferencesPending" WHERE "ChangelistID" = $1) AS pending ON "References"."Src" = pending."Src" AND "References"."Dst" = pending."Dst") AS result GROUP BY "Src", "Dst"; $_$ LANGUAGE sql; DDROP FUNCTION public."GetPendingReferences"(changelist_id integer); publicpostgresfalse33449125517708GetRemoteUsers()FUNCTIONCREATE FUNCTION "GetRemoteUsers"() RETURNS SETOF record AS $$ SELECT "RemoteUsers"."Name", "RemoteUsers"."UserRoleID" FROM "RemoteUsers" INNER JOIN "Versions" ON "RemoteUsers"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647; $$ LANGUAGE sql; )DROP FUNCTION public."GetRemoteUsers"(); publicpostgresfalse4:125517709GetReverseAnsectorsOf(integer)FUNCTIONKCREATE FUNCTION "GetReverseAnsectorsOf"(object_id integer) RETURNS SETOF "VersionedObjects" AS $_$ SELECT vo.* FROM "VersionedObjects" AS vo INNER JOIN ( SELECT explode_array("Path" || $1) AS "ID" FROM "VersionedObjects" WHERE "ID" = $1 ) AS filter ON vo."ID" = filter."ID" ORDER BY "Path" DESC; $_$ LANGUAGE sql; ADROP FUNCTION public."GetReverseAnsectorsOf"(object_id integer); publicpostgresfalse3374;125517710GetRootObjectID()FUNCTIONCREATE FUNCTION "GetRootObjectID"() RETURNS integer AS $$ SELECT "ID" FROM "VersionedObjects" WHERE "Path" = ARRAY[0] AND "ID" != 0; $$ LANGUAGE sql STABLE; *DROP FUNCTION public."GetRootObjectID"(); publicpostgresfalse4<125517711GetTableName(integer)FUNCTIONCREATE FUNCTION "GetTableName"(object_id integer) RETURNS text AS $_$ SELECT "TableName" FROM "TypeToTable", "VersionedObjects" WHERE "VersionedObjects"."ID" = $1 AND "VersionedObjects"."TypeID" = "TypeToTable"."TypeID"; $_$ LANGUAGE sql STABLE; 8DROP FUNCTION public."GetTableName"(object_id integer); publicpostgresfalse4125917712 TypeToTableTABLECREATE TABLE "TypeToTable" ( "TypeID" smallint NOT NULL, "TableName" character varying(100) NOT NULL, "IsFolder" boolean NOT NULL, "AuditName" text NOT NULL ); !DROP TABLE public."TypeToTable"; publicpostgresfalse4=125517717 GetTypeMap()FUNCTIONCREATE FUNCTION "GetTypeMap"() RETURNS SETOF "TypeToTable" AS $$ SELECT * FROM "TypeToTable"; $$ LANGUAGE sql IMMUTABLE; %DROP FUNCTION public."GetTypeMap"(); publicpostgresfalse3414>125517718GetUserRoleFromToken(bytea)FUNCTIONCREATE FUNCTION "GetUserRoleFromToken"(token bytea) RETURNS integer[] AS $$ DECLARE role_id integer[]; BEGIN PERFORM "FreeStaleTokens"(); SELECT "UserRoleID" || 0 INTO role_id FROM "Tokens" WHERE "Data" = token; RETURN role_id; END $$ LANGUAGE plpgsql; :DROP FUNCTION public."GetUserRoleFromToken"(token bytea); publicpostgresfalse4824?125517719GetVersionsSince(integer)FUNCTIONCREATE FUNCTION "GetVersionsSince"(start_view_id integer) RETURNS SETOF "GetVersionsSinceResult" AS $_$ SELECT ver."ObjectID", vo."TypeID", CASE --deleted WHEN min(ver."BeginViewID") <= $1 AND max(ver."EndViewID") < 2147483647 THEN max(ver."EndViewID") --added WHEN min(ver."BeginViewID") > $1 AND max(ver."EndViewID") = 2147483647 THEN max(ver."BeginViewID") --edited WHEN min(ver."BeginViewID") <= $1 AND max(ver."EndViewID") = 2147483647 THEN max(ver."BeginViewID") END AS "ViewID", CASE --deleted WHEN min(ver."BeginViewID") <= $1 AND max(ver."EndViewID") < 2147483647 THEN 3 --added WHEN min(ver."BeginViewID") > $1 AND max(ver."EndViewID") = 2147483647 THEN 1 --edited WHEN min(ver."BeginViewID") <= $1 AND max(ver."EndViewID") = 2147483647 THEN 2 END AS "Type" FROM "Versions" AS ver, "VersionedObjects" AS vo WHERE vo."ID" = ver."ObjectID" AND ((ver."BeginViewID" <= $1 AND ver."EndViewID" > $1 AND ver."EndViewID" < 2147483647) OR ver."BeginViewID" > $1) GROUP BY ver."ObjectID", vo."TypeID" HAVING min(ver."BeginViewID") <= $1 OR max(ver."EndViewID") = 2147483647; $_$ LANGUAGE sql; @DROP FUNCTION public."GetVersionsSince"(start_view_id integer); publicpostgresfalse3214@125517720HasExternalID(smallint)FUNCTIONCREATE FUNCTION "HasExternalID"(type_id smallint) RETURNS boolean AS $_$ SELECT ($1 = 54) OR ($1 = 55) OR ($1 = 58); $_$ LANGUAGE sql; 8DROP FUNCTION public."HasExternalID"(type_id smallint); publicpostgresfalse4A125517721)IsChildrenAddedByOthers(integer, integer)FUNCTIONCREATE FUNCTION "IsChildrenAddedByOthers"(changelist_id integer, object_id integer) RETURNS boolean AS $_$ SELECT count(*) != 0 FROM "AddsPending" WHERE "ChangelistID" != $1 AND last_in_array("Path") = $2; $_$ LANGUAGE sql; ZDROP FUNCTION public."IsChildrenAddedByOthers"(changelist_id integer, object_id integer); publicpostgresfalse4B125517722&IsReferencedByOthers(integer, integer)FUNCTIONCREATE FUNCTION "IsReferencedByOthers"(changelist_id integer, object_id integer) RETURNS boolean AS $_$ SELECT count("Src") != 0 FROM "ReferencesPending" WHERE "ChangelistID" != $1 AND "Dst" = $2; $_$ LANGUAGE sql; WDROP FUNCTION public."IsReferencedByOthers"(changelist_id integer, object_id integer); publicpostgresfalse4C125517723PrivilegeCheck(bytea, integer)FUNCTIONDCREATE FUNCTION "PrivilegeCheck"(token bytea, priv_mask integer) RETURNS integer AS $_$ SELECT "FreeStaleTokens"(); SELECT CASE ("Privileges" & $2) = $2 WHEN TRUE THEN 1 ELSE 0 END FROM "Tokens" where "Data" = $1 UNION ALL SELECT 2 WHERE NOT EXISTS (SELECT * FROM "Tokens" where "Data" = $1) $_$ LANGUAGE sql; GDROP FUNCTION public."PrivilegeCheck"(token bytea, priv_mask integer); publicpostgresfalse4Q125518630CRegisterVersionedTable(text, text, text, smallint, boolean, text[])FUNCTIONCREATE FUNCTION "RegisterVersionedTable"(schema_name text, table_name text, audit_name text, type_id smallint, is_folder boolean, columns text[]) RETURNS void AS $$ DECLARE sql text; BEGIN PERFORM public."RegisterView"(schema_name, table_name, type_id, columns); sql := 'ALTER TABLE ONLY ' || quote_ident(table_name) || ' ADD CONSTRAINT ' || quote_ident('PK_' || table_name) || ' PRIMARY KEY ("VersionID");'; EXECUTE sql; sql := 'ALTER TABLE ONLY ' || quote_ident(table_name) || ' ADD CONSTRAINT ' || quote_ident('FK_' || table_name || '_Versions') || ' FOREIGN KEY ("VersionID")' || ' REFERENCES "Versions"("ID") ON DELETE CASCADE;'; EXECUTE sql; INSERT INTO "TypeToTable" ("TypeID", "TableName", "IsFolder", "AuditName") VALUES (type_id, table_name, is_folder, audit_name); END; $$ LANGUAGE plpgsql; DROP FUNCTION public."RegisterVersionedTable"(schema_name text, table_name text, audit_name text, type_id smallint, is_folder boolean, columns text[]); publicpostgresfalse4824P125518629*RegisterView(text, text, smallint, text[])FUNCTIONCREATE FUNCTION "RegisterView"(schema_name text, table_name text, type_id smallint, columns text[]) RETURNS void AS $$ DECLARE sql text; i integer; ar_low integer; ar_up integer; BEGIN sql := 'CREATE VIEW ' || schema_name || '.' || quote_ident('View_' || table_name) || ' AS ' || 'SELECT "VersionedObjects"."ID" AS "ObjectID", ' || ' "Versions"."ID", ' || ' "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ' || ' ("CheckoutsPending"."DeleteCheckPoint" != 2147483647) AS "ForDelete", ' || ' "VersionedObjects"."Path" AS "ObjectPath"'; ar_low := COALESCE(array_lower(columns, 1), 0); ar_up := COALESCE(array_upper(columns, 1), -1); for i in ar_low..ar_up loop sql := sql || ', ' || quote_ident(table_name) || '.' || quote_ident(columns[i]); end loop; sql := sql || ' ' || 'FROM ' || quote_ident(table_name) || ' INNER JOIN "Versions" ' || 'ON ' || quote_ident(table_name) || '."VersionID" = "Versions"."ID" INNER JOIN "VersionedObjects" ' || 'ON "Versions"."ObjectID" = "VersionedObjects"."ID" LEFT OUTER JOIN "CheckoutsPending" ' || 'ON "CheckoutsPending"."ObjectID" = "VersionedObjects"."ID" ' || 'WHERE "VersionedObjects"."TypeID" = ' || type_id || '::int2 AND "Versions"."EndViewID" = 2147483647;'; EXECUTE sql; END; $$ LANGUAGE plpgsql; jDROP FUNCTION public."RegisterView"(schema_name text, table_name text, type_id smallint, columns text[]); publicpostgresfalse4824D1255177254RemoveUserRights(integer, integer, integer, integer)FUNCTIONYCREATE FUNCTION "RemoveUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer) RETURNS void AS $$ DECLARE cur_role_id integer; BEGIN IF self_rights != 0 OR desc_rights != 0 THEN UPDATE "AccessControl" SET "SelfRights" = "SelfRights" & ~self_rights, "DescendantRights" = "DescendantRights" & ~desc_rights WHERE "ObjectID" = object_id AND "UserRoleID" = role_id; DELETE FROM "AccessControl" WHERE "ObjectID" = object_id AND "UserRoleID" = role_id AND "SelfRights" = 0 AND "DescendantRights" = 0; END IF; END $$ LANGUAGE plpgsql; wDROP FUNCTION public."RemoveUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer); publicpostgresfalse4824E125517726$ReserveExternalID(smallint, integer)FUNCTIONCREATE FUNCTION "ReserveExternalID"(type_id smallint, id integer) RETURNS integer AS $$ DECLARE begin_original integer; end_original integer; can_alloc boolean; freed_at_original timestamp with time zone; BEGIN DELETE FROM "ExternalIDPool" WHERE "TypeID" = type_id AND "BeginRange" <= id AND "EndRange" > id RETURNING "BeginRange", "EndRange", "CanAlloc", "FreedAt" INTO begin_original, end_original, can_alloc, freed_at_original; IF NOT FOUND THEN RETURN 0; END IF; IF begin_original != id THEN INSERT INTO "ExternalIDPool" ("TypeID", "CanAlloc", "BeginRange", "EndRange", "FreedAt") VALUES (type_id, can_alloc, begin_original, id, freed_at_original); END IF; IF end_original != id + 1 THEN INSERT INTO "ExternalIDPool" ("TypeID", "CanAlloc", "BeginRange", "EndRange", "FreedAt") VALUES (type_id, can_alloc, id + 1, end_original, freed_at_original); END IF; IF can_alloc THEN RETURN 2; ELSE RETURN 1; END IF; END $$ LANGUAGE plpgsql; HDROP FUNCTION public."ReserveExternalID"(type_id smallint, id integer); publicpostgresfalse4824F125517727SetCheckPoint(integer)FUNCTIONCREATE FUNCTION "SetCheckPoint"(changelist_id integer) RETURNS integer AS $_$ UPDATE "Changelists" SET "LastCheckPoint" = "LastCheckPoint" + 1, "LastAccessed" = CURRENT_TIMESTAMP WHERE "ID" = $1; DELETE FROM "Changelists" WHERE "LastAccessed" <= (CURRENT_TIMESTAMP - '15 min'::interval); SELECT "LastCheckPoint" FROM "Changelists" WHERE "ID" = $1; $_$ LANGUAGE sql; =DROP FUNCTION public."SetCheckPoint"(changelist_id integer); publicpostgresfalse4G1255177281SetUserRights(integer, integer, integer, integer)FUNCTIONCREATE FUNCTION "SetUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer) RETURNS void AS $$ DECLARE cur_role_id integer; BEGIN IF self_rights != 0 OR desc_rights != 0 THEN UPDATE "AccessControl" SET "SelfRights" = self_rights, "DescendantRights" = desc_rights WHERE "ObjectID" = object_id AND "UserRoleID" = role_id; IF NOT FOUND THEN INSERT INTO "AccessControl" ("ObjectID", "UserRoleID", "SelfRights", "DescendantRights") VALUES (object_id, role_id, self_rights, desc_rights); END IF; ELSE DELETE FROM "AccessControl" WHERE "ObjectID" = object_id AND "UserRoleID" = role_id; END IF; END $$ LANGUAGE plpgsql; tDROP FUNCTION public."SetUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer); publicpostgresfalse4824H125517729(SetUserRights(integer, integer, integer)FUNCTIONCREATE FUNCTION "SetUserRights"(object_id integer, role_id integer, rights integer) RETURNS void AS $$ BEGIN PERFORM "SetUserRights"(object_id, role_id, rights, rights); END $$ LANGUAGE plpgsql; ZDROP FUNCTION public."SetUserRights"(object_id integer, role_id integer, rights integer); publicpostgresfalse4824I125517730EUpdateVersionedObjectEntry(integer, integer, smallint, integer, text)FUNCTIONCREATE FUNCTION "UpdateVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer, audit_name text) RETURNS integer AS $$ DECLARE ret integer; BEGIN DELETE FROM "CheckoutsPending" WHERE "ObjectID" = object_id AND "ChangelistID" = changelist_id AND "DeleteCheckPoint" = 2147483647; IF NOT FOUND THEN RAISE EXCEPTION 'Object not checked out for edit'; END IF; IF NOT audit_name IS NULL THEN UPDATE "VersionedObjects" SET "AuditName" = "ExtractAuditName"(audit_name) WHERE "ID" = object_id; END IF; UPDATE "Versions" SET "EndViewID" = new_view_id WHERE "ObjectID" = object_id AND "EndViewID" = 2147483647; INSERT INTO "Versions" ("BeginViewID", "EndViewID", "ObjectID") VALUES (new_view_id, 2147483647, object_id); ret := currval('"Versions_ID_seq"'); RETURN ret; END $$ LANGUAGE plpgsql; DROP FUNCTION public."UpdateVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer, audit_name text); publicpostgresfalse4824J125517731ValidateChangelist(integer)FUNCTIONICREATE FUNCTION "ValidateChangelist"(id integer) RETURNS void AS $_$ UPDATE "Changelists" SET "LastAccessed" = CURRENT_TIMESTAMP WHERE "ID"=$1 AND "LastAccessed" <= (CURRENT_TIMESTAMP - '5 min'::interval); DELETE FROM "Changelists" WHERE "LastAccessed" <= (CURRENT_TIMESTAMP - '15 min'::interval); $_$ LANGUAGE sql; 7DROP FUNCTION public."ValidateChangelist"(id integer); publicpostgresfalse4K125517732explode_array(anyarray)FUNCTIONCREATE FUNCTION explode_array(in_array anyarray) RETURNS SETOF anyelement AS $_$ SELECT ($1)[s] FROM generate_series(1,array_upper($1, 1)) AS s; $_$ LANGUAGE sql IMMUTABLE; 7DROP FUNCTION public.explode_array(in_array anyarray); publicpostgresfalse4L125517733last_in_array(anyarray)FUNCTIONCREATE FUNCTION last_in_array(in_array anyarray) RETURNS anyelement AS $_$ SELECT ($1)[array_upper($1, 1)]; $_$ LANGUAGE sql IMMUTABLE; 7DROP FUNCTION public.last_in_array(in_array anyarray); publicpostgresfalse4N125518615GetDatabaseVersion(text)FUNCTIONBCREATE FUNCTION "GetDatabaseVersion"(name text) RETURNS integer AS $$ DECLARE ret integer; BEGIN IF "IsDatabaseVersionPresent"() THEN SELECT "Current" INTO ret FROM "__DatabaseVersion__" WHERE "Name" = name; IF NOT FOUND THEN ret := 1; END IF; END IF; RETURN ret; END $$ LANGUAGE plpgsql; 7DROP FUNCTION upgrade."GetDatabaseVersion"(name text); upgradepostgresfalse4826M125518614IsDatabaseVersionPresent()FUNCTIONCREATE FUNCTION "IsDatabaseVersionPresent"() RETURNS boolean AS $$ SELECT count(*) = 1 FROM information_schema.tables WHERE table_name='__DatabaseVersion__' AND table_schema='public' AND table_type='BASE TABLE'; $$ LANGUAGE sql; 4DROP FUNCTION upgrade."IsDatabaseVersionPresent"(); upgradepostgresfalse6O125518616*SetDatabaseVersion(text, integer, integer)FUNCTIONCREATE FUNCTION "SetDatabaseVersion"(name text, min_compat integer, cur integer) RETURNS void AS $$ DECLARE BEGIN UPDATE "__DatabaseVersion__" SET "MinCompatible" = min_compat, "Current" = cur WHERE "Name" = name; IF NOT FOUND THEN INSERT INTO "__DatabaseVersion__" ("Name", "MinCompatible", "Current") VALUES (name, min_compat, cur); END IF; END $$ LANGUAGE plpgsql; XDROP FUNCTION upgrade."SetDatabaseVersion"(name text, min_compat integer, cur integer); upgradepostgresfalse4826125917734 AddsPendingTABLECREATE TABLE "AddsPending" ( "ObjectID" integer NOT NULL, "ChangelistID" integer NOT NULL, "Path" integer[] NOT NULL, "CheckPoint" integer NOT NULL ); !DROP TABLE public."AddsPending"; publicpostgresfalse4125917739AddsPending_ObjectID_seqSEQUENCEkCREATE SEQUENCE "AddsPending_ObjectID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; 1DROP SEQUENCE public."AddsPending_ObjectID_seq"; publicpostgresfalse1499400AddsPending_ObjectID_seqSEQUENCE OWNED BYMALTER SEQUENCE "AddsPending_ObjectID_seq" OWNED BY "AddsPending"."ObjectID"; publicpostgresfalse150000AddsPending_ObjectID_seq SEQUENCE SETDSELECT pg_catalog.setval('"AddsPending_ObjectID_seq"', 1510, true); publicpostgresfalse1500125917741AuditLog_ID_seqSEQUENCEbCREATE SEQUENCE "AuditLog_ID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; (DROP SEQUENCE public."AuditLog_ID_seq"; publicpostgresfalse1497400AuditLog_ID_seqSEQUENCE OWNED BY;ALTER SEQUENCE "AuditLog_ID_seq" OWNED BY "AuditLog"."ID"; publicpostgresfalse150100AuditLog_ID_seq SEQUENCE SET:SELECT pg_catalog.setval('"AuditLog_ID_seq"', 180, true); publicpostgresfalse1501125917743Changelists_ID_seqSEQUENCEeCREATE SEQUENCE "Changelists_ID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; +DROP SEQUENCE public."Changelists_ID_seq"; publicpostgresfalse1492400Changelists_ID_seqSEQUENCE OWNED BYAALTER SEQUENCE "Changelists_ID_seq" OWNED BY "Changelists"."ID"; publicpostgresfalse150200Changelists_ID_seq SEQUENCE SET=SELECT pg_catalog.setval('"Changelists_ID_seq"', 761, true); publicpostgresfalse1502125917745CheckoutsPendingTABLECREATE TABLE "CheckoutsPending" ( "ObjectID" integer NOT NULL, "ChangelistID" integer NOT NULL, "EditCheckPoint" integer NOT NULL, "DeleteCheckPoint" integer NOT NULL ); &DROP TABLE public."CheckoutsPending"; publicpostgresfalse4125917747 ExternalIDTABLECREATE TABLE "ExternalID" ( "TypeID" smallint NOT NULL, "CanAlloc" boolean NOT NULL, "ObjectID" integer NOT NULL, "Value" integer NOT NULL ); DROP TABLE public."ExternalID"; publicpostgresfalse4125917749ExternalIDPendingTABLECREATE TABLE "ExternalIDPending" ( "TypeID" smallint NOT NULL, "CanAlloc" boolean NOT NULL, "ObjectID" integer NOT NULL, "Value" integer NOT NULL ); 'DROP TABLE public."ExternalIDPending"; publicpostgresfalse4125917751ExternalIDPoolTABLECREATE TABLE "ExternalIDPool" ( "TypeID" smallint NOT NULL, "CanAlloc" boolean NOT NULL, "BeginRange" integer NOT NULL, "EndRange" integer NOT NULL, "FreedAt" timestamp with time zone NOT NULL ); $DROP TABLE public."ExternalIDPool"; publicpostgresfalse4125917753 GlobalContextTABLECREATE TABLE "GlobalContext" ( "VersionID" integer NOT NULL, "SecurityAccountsID" integer NOT NULL, "Extensions" text NOT NULL ); #DROP TABLE public."GlobalContext"; publicpostgresfalse4125917758GlobalsTABLECREATE TABLE "Globals" ( "Name" text NOT NULL, "ShortValue" smallint, "IntValue" integer, "BoolValue" boolean, "StringValue" text, "sensPasswordValue" text, "BlobValue" bytea, "IntArrayValue" integer[], "TimeValue" timestamp with time zone ); DROP TABLE public."Globals"; publicpostgresfalse4125917763 LocalUsersTABLECREATE TABLE "LocalUsers" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "pwdPassword" bytea NOT NULL, "IsSpecial" boolean NOT NULL, "CanAudit" boolean NOT NULL, "UserRoleID" integer[] NOT NULL ); DROP TABLE public."LocalUsers"; publicpostgresfalse4125917768LocksTABLE3CREATE TABLE "Locks" ( "Name" text NOT NULL ); DROP TABLE public."Locks"; publicpostgresfalse4125917773ReferencesPendingTABLECREATE TABLE "ReferencesPending" ( "ChangelistID" integer NOT NULL, "CheckPoint" integer NOT NULL, "Src" integer NOT NULL, "Dst" integer NOT NULL, "Count" integer NOT NULL ); 'DROP TABLE public."ReferencesPending"; publicpostgresfalse4125917775 RemoteUsersTABLECREATE TABLE "RemoteUsers" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "UserRoleID" integer[] NOT NULL ); !DROP TABLE public."RemoteUsers"; publicpostgresfalse4125917780SecurityAccountsTABLEFCREATE TABLE "SecurityAccounts" ( "VersionID" integer NOT NULL ); &DROP TABLE public."SecurityAccounts"; publicpostgresfalse4125917782TokensTABLECREATE TABLE "Tokens" ( "UserName" text NOT NULL, "UserRoleID" integer[] NOT NULL, "Created" timestamp with time zone NOT NULL, "Data" bytea NOT NULL, "CanAudit" boolean NOT NULL, "Privileges" integer NOT NULL ); DROP TABLE public."Tokens"; publicpostgresfalse4125917787 UserRolesTABLECREATE TABLE "UserRoles" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Privileges" integer NOT NULL ); DROP TABLE public."UserRoles"; publicpostgresfalse4125917792VersionsTABLECREATE TABLE "Versions" ( "ID" integer NOT NULL, "BeginViewID" integer NOT NULL, "EndViewID" integer NOT NULL, "ObjectID" integer NOT NULL ); DROP TABLE public."Versions"; publicpostgresfalse4125917794Versions_ID_seqSEQUENCEbCREATE SEQUENCE "Versions_ID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; (DROP SEQUENCE public."Versions_ID_seq"; publicpostgresfalse1516400Versions_ID_seqSEQUENCE OWNED BY;ALTER SEQUENCE "Versions_ID_seq" OWNED BY "Versions"."ID"; publicpostgresfalse151700Versions_ID_seq SEQUENCE SET;SELECT pg_catalog.setval('"Versions_ID_seq"', 2024, true); publicpostgresfalse1517125917796View_GlobalContextVIEWCREATE VIEW "View_GlobalContext" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "GlobalContext"."Extensions" FROM ((("GlobalContext" JOIN "Versions" ON (("GlobalContext"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (20)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_GlobalContext"; publicpostgresfalse16724125917799View_LocalUsersVIEW CREATE VIEW "View_LocalUsers" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "LocalUsers"."Name", "LocalUsers"."pwdPassword", "LocalUsers"."IsSpecial", "LocalUsers"."CanAudit", "LocalUsers"."UserRoleID" FROM ((("LocalUsers" JOIN "Versions" ON (("LocalUsers"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (23)::smallint) AND ("Versions"."EndViewID" = 2147483647)); $DROP VIEW public."View_LocalUsers"; publicpostgresfalse16734125917803View_ReferencesVIEWCREATE VIEW "View_References" AS SELECT result."Src", result."Dst", sum(result."aCount") AS "Count" FROM (SELECT COALESCE("References"."Src", "ReferencesPending"."Src") AS "Src", "GetTableName"(COALESCE("References"."Src", "ReferencesPending"."Src")) AS "SrcTable", COALESCE("References"."Dst", "ReferencesPending"."Dst") AS "Dst", "GetTableName"(COALESCE("References"."Dst", "ReferencesPending"."Dst")) AS "DstTable", (COALESCE("References"."Count", 0) + COALESCE("ReferencesPending"."Count", 0)) AS "aCount" FROM ("References" FULL JOIN "ReferencesPending" ON ((("References"."Src" = "ReferencesPending"."Src") AND ("References"."Dst" = "ReferencesPending"."Dst"))))) result GROUP BY result."Src", result."Dst"; $DROP VIEW public."View_References"; publicpostgresfalse16744125917806View_RemoteUsersVIEWCREATE VIEW "View_RemoteUsers" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "RemoteUsers"."Name", "RemoteUsers"."UserRoleID" FROM ((("RemoteUsers" JOIN "Versions" ON (("RemoteUsers"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (24)::smallint) AND ("Versions"."EndViewID" = 2147483647)); %DROP VIEW public."View_RemoteUsers"; publicpostgresfalse16754125917809View_SecurityAccountsVIEWCREATE VIEW "View_SecurityAccounts" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath" FROM ((("SecurityAccounts" JOIN "Versions" ON (("SecurityAccounts"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (21)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_SecurityAccounts"; publicpostgresfalse16764125917812View_UserRolesVIEWCREATE VIEW "View_UserRoles" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "UserRoles"."Name", "UserRoles"."Description", "UserRoles"."Privileges" FROM ((("UserRoles" JOIN "Versions" ON (("UserRoles"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (22)::smallint) AND ("Versions"."EndViewID" = 2147483647)); #DROP VIEW public."View_UserRoles"; publicpostgresfalse167745125918635WCG_ContentGatewayTABLEkCREATE TABLE "WCG_ContentGateway" ( "VersionID" integer NOT NULL, "SettingsID" integer NOT NULL ); (DROP TABLE public."WCG_ContentGateway"; publicpostgresfalse46125918637View_WCG_ContentGatewayVIEWCREATE VIEW "View_WCG_ContentGateway" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WCG_ContentGateway"."SettingsID" FROM ((("WCG_ContentGateway" JOIN "Versions" ON (("WCG_ContentGateway"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (1024)::smallint) AND ("Versions"."EndViewID" = 2147483647)); ,DROP VIEW public."View_WCG_ContentGateway"; publicpostgresfalse17094:125918690WCG_ExceptionUrlsTABLECREATE TABLE "WCG_ExceptionUrls" ( "VersionID" integer NOT NULL, "Url" text, "RealTimeCat" smallint, "Threat" smallint, "ContentStripping" smallint ); 'DROP TABLE public."WCG_ExceptionUrls"; publicpostgresfalse4;125918695View_WCG_ExceptionUrlsVIEW'CREATE VIEW "View_WCG_ExceptionUrls" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WCG_ExceptionUrls"."Url", "WCG_ExceptionUrls"."RealTimeCat", "WCG_ExceptionUrls"."Threat", "WCG_ExceptionUrls"."ContentStripping" FROM ((("WCG_ExceptionUrls" JOIN "Versions" ON (("WCG_ExceptionUrls"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (1026)::smallint) AND ("Versions"."EndViewID" = 2147483647)); +DROP VIEW public."View_WCG_ExceptionUrls"; publicpostgresfalse17124<125918706 WCG_SettingTABLEwCREATE TABLE "WCG_Setting" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Value" bytea NOT NULL ); !DROP TABLE public."WCG_Setting"; publicpostgresfalse4=125918711View_WCG_SettingVIEWCREATE VIEW "View_WCG_Setting" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WCG_Setting"."Name", "WCG_Setting"."Value" FROM ((("WCG_Setting" JOIN "Versions" ON (("WCG_Setting"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (1027)::smallint) AND ("Versions"."EndViewID" = 2147483647)); %DROP VIEW public."View_WCG_Setting"; publicpostgresfalse171348125918650 WCG_SettingsTABLEzCREATE TABLE "WCG_Settings" ( "VersionID" integer NOT NULL, "ContentCatOpt" smallint, "ContentScanOpt" smallint, "AppScanOpt" smallint, "FileSizeLimit" integer, "ExeFileNames" text, "ContentTypes" integer, "ExeFilesEnable" boolean DEFAULT true NOT NULL, "AEScanOpt" smallint DEFAULT 1 NOT NULL, "FileTypes" integer DEFAULT 35 NOT NULL ); "DROP TABLE public."WCG_Settings"; publicpostgresfalse20042005200649125918679View_WCG_SettingsVIEWCREATE VIEW "View_WCG_Settings" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WCG_Settings"."ContentCatOpt", "WCG_Settings"."ContentScanOpt", "WCG_Settings"."AppScanOpt", "WCG_Settings"."AEScanOpt", "WCG_Settings"."ExeFilesEnable", "WCG_Settings"."FileSizeLimit", "WCG_Settings"."ExeFileNames", "WCG_Settings"."ContentTypes", "WCG_Settings"."FileTypes" FROM ((("WCG_Settings" JOIN "Versions" ON (("WCG_Settings"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (1025)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WCG_Settings"; publicpostgresfalse17114125917816WSE_CategoriesTABLECREATE TABLE "WSE_Categories" ( "VersionID" integer NOT NULL, "ParentID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); $DROP TABLE public."WSE_Categories"; publicpostgresfalse4125917821View_WSE_CategoriesVIEW CREATE VIEW "View_WSE_Categories" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Categories"."Name", "WSE_Categories"."Description", "WSE_Categories"."ParentID", "WSE_Categories"."ExternalID" FROM ((("WSE_Categories" JOIN "Versions" ON (("WSE_Categories"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (54)::smallint) AND ("Versions"."EndViewID" = 2147483647)); (DROP VIEW public."View_WSE_Categories"; publicpostgresfalse16784125917825WSE_CategoryDispositionsTABLE}CREATE TABLE "WSE_CategoryDispositions" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Action" smallint NOT NULL, "BlockKeywords" boolean NOT NULL, "BlockedFileTypes" text NOT NULL, "BandwidthBlockType" smallint NOT NULL, "BandwidthLimit" integer NOT NULL, "BandwidthUseDefaultBandwidth" boolean NOT NULL ); .DROP TABLE public."WSE_CategoryDispositions"; publicpostgresfalse4125917830View_WSE_CategoryDispositionsVIEWCREATE VIEW "View_WSE_CategoryDispositions" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_CategoryDispositions"."Name", "WSE_CategoryDispositions"."Description", "WSE_CategoryDispositions"."Action", "WSE_CategoryDispositions"."BlockKeywords", "WSE_CategoryDispositions"."BlockedFileTypes", "WSE_CategoryDispositions"."BandwidthBlockType", "WSE_CategoryDispositions"."BandwidthLimit", "WSE_CategoryDispositions"."BandwidthUseDefaultBandwidth" FROM ((("WSE_CategoryDispositions" JOIN "Versions" ON (("WSE_CategoryDispositions"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (63)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 2DROP VIEW public."View_WSE_CategoryDispositions"; publicpostgresfalse16794125917834WSE_CategoryNotificationsTABLECREATE TABLE "WSE_CategoryNotifications" ( "VersionID" integer NOT NULL, "CategoryID" integer NOT NULL, "Log" boolean DEFAULT true NOT NULL, "AlertBlockedMin" integer DEFAULT 0 NOT NULL, "AlertBlockedDest" integer DEFAULT 0 NOT NULL, "AlertPermittedMin" integer DEFAULT 0 NOT NULL, "AlertPermittedDest" integer DEFAULT 0 NOT NULL, "Name" text NOT NULL ); /DROP TABLE public."WSE_CategoryNotifications"; publicpostgresfalse197719781979198019814125917844View_WSE_CategoryNotificationsVIEWCREATE VIEW "View_WSE_CategoryNotifications" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_CategoryNotifications"."CategoryID", "WSE_CategoryNotifications"."Log", "WSE_CategoryNotifications"."AlertBlockedMin", "WSE_CategoryNotifications"."AlertBlockedDest", "WSE_CategoryNotifications"."AlertPermittedMin", "WSE_CategoryNotifications"."AlertPermittedDest", "WSE_CategoryNotifications"."Name" FROM ((("WSE_CategoryNotifications" JOIN "Versions" ON (("WSE_CategoryNotifications"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (79)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 3DROP VIEW public."View_WSE_CategoryNotifications"; publicpostgresfalse16804125917848WSE_CategorySetTemplatesTABLECREATE TABLE "WSE_CategorySetTemplates" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Entries" text NOT NULL ); .DROP TABLE public."WSE_CategorySetTemplates"; publicpostgresfalse4125917853View_WSE_CategorySetTemplatesVIEWCREATE VIEW "View_WSE_CategorySetTemplates" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_CategorySetTemplates"."Name", "WSE_CategorySetTemplates"."Entries" FROM ((("WSE_CategorySetTemplates" JOIN "Versions" ON (("WSE_CategorySetTemplates"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (59)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 2DROP VIEW public."View_WSE_CategorySetTemplates"; publicpostgresfalse16814125917856WSE_CategorySetsTABLECREATE TABLE "WSE_CategorySets" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Entries" text NOT NULL, "DefaultDispID" integer DEFAULT 0 NOT NULL, "Mode" smallint DEFAULT 0 NOT NULL ); &DROP TABLE public."WSE_CategorySets"; publicpostgresfalse198219834125917863View_WSE_CategorySetsVIEW8CREATE VIEW "View_WSE_CategorySets" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_CategorySets"."Name", "WSE_CategorySets"."Description", "WSE_CategorySets"."Entries", "WSE_CategorySets"."DefaultDispID", "WSE_CategorySets"."Mode" FROM ((("WSE_CategorySets" JOIN "Versions" ON (("WSE_CategorySets"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (56)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_WSE_CategorySets"; publicpostgresfalse16824125917867WSE_ClientRulesTABLECREATE TABLE "WSE_ClientRules" ( "VersionID" integer NOT NULL, "PolicyID" integer NOT NULL, "QuotaTime" integer NOT NULL, "sensPassword" text NOT NULL ); %DROP TABLE public."WSE_ClientRules"; publicpostgresfalse4125917872View_WSE_ClientRulesVIEWCREATE VIEW "View_WSE_ClientRules" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ClientRules"."PolicyID", "WSE_ClientRules"."QuotaTime", "WSE_ClientRules"."sensPassword" FROM ((("WSE_ClientRules" JOIN "Versions" ON (("WSE_ClientRules"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (74)::smallint) AND ("Versions"."EndViewID" = 2147483647)); )DROP VIEW public."View_WSE_ClientRules"; publicpostgresfalse16834125917876WSE_DirectoryObjectsTABLECREATE TABLE "WSE_DirectoryObjects" ( "VersionID" integer NOT NULL, "Path" text NOT NULL, "Account" smallint NOT NULL, "ManagingRoleID" integer NOT NULL, "ClientRuleID" integer NOT NULL, "Name" text NOT NULL ); *DROP TABLE public."WSE_DirectoryObjects"; publicpostgresfalse4125917881View_WSE_DirectoryObjectsVIEWZCREATE VIEW "View_WSE_DirectoryObjects" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_DirectoryObjects"."Path", "WSE_DirectoryObjects"."Account", "WSE_DirectoryObjects"."ManagingRoleID", "WSE_DirectoryObjects"."ClientRuleID", "WSE_DirectoryObjects"."Name" FROM ((("WSE_DirectoryObjects" JOIN "Versions" ON (("WSE_DirectoryObjects"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (68)::smallint) AND ("Versions"."EndViewID" = 2147483647)); .DROP VIEW public."View_WSE_DirectoryObjects"; publicpostgresfalse16844125917885WSE_FileExtensionSetsTABLECREATE TABLE "WSE_FileExtensionSets" ( "VersionID" integer NOT NULL, "FileTypeID" integer NOT NULL, "Extensions" text NOT NULL, "Name" text NOT NULL ); +DROP TABLE public."WSE_FileExtensionSets"; publicpostgresfalse4125917890View_WSE_FileExtensionSetsVIEWCREATE VIEW "View_WSE_FileExtensionSets" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_FileExtensionSets"."FileTypeID", "WSE_FileExtensionSets"."Extensions", "WSE_FileExtensionSets"."Name" FROM ((("WSE_FileExtensionSets" JOIN "Versions" ON (("WSE_FileExtensionSets"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (73)::smallint) AND ("Versions"."EndViewID" = 2147483647)); /DROP VIEW public."View_WSE_FileExtensionSets"; publicpostgresfalse16854125917893 WSE_FileTypesTABLECREATE TABLE "WSE_FileTypes" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); #DROP TABLE public."WSE_FileTypes"; publicpostgresfalse4125917898View_WSE_FileTypesVIEWCREATE VIEW "View_WSE_FileTypes" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_FileTypes"."Name", "WSE_FileTypes"."Description", "WSE_FileTypes"."ExternalID" FROM ((("WSE_FileTypes" JOIN "Versions" ON (("WSE_FileTypes"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (58)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_FileTypes"; publicpostgresfalse16864125917902 WSE_KeywordsTABLECREATE TABLE "WSE_Keywords" ( "VersionID" integer NOT NULL, "CategoryID" integer NOT NULL, "SimpleValue" text NOT NULL, "RegExValue" text NOT NULL ); "DROP TABLE public."WSE_Keywords"; publicpostgresfalse4125917907View_WSE_KeywordsVIEWCREATE VIEW "View_WSE_Keywords" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Keywords"."CategoryID", "WSE_Keywords"."SimpleValue", "WSE_Keywords"."RegExValue" FROM ((("WSE_Keywords" JOIN "Versions" ON (("WSE_Keywords"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (70)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_Keywords"; publicpostgresfalse16874125917910WSE_LoggingDispositionsTABLECREATE TABLE "WSE_LoggingDispositions" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Blocking" boolean NOT NULL, "ExternalID" integer NOT NULL ); -DROP TABLE public."WSE_LoggingDispositions"; publicpostgresfalse4 125917915View_WSE_LoggingDispositionsVIEWLCREATE VIEW "View_WSE_LoggingDispositions" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_LoggingDispositions"."Name", "WSE_LoggingDispositions"."Description", "WSE_LoggingDispositions"."Blocking", "WSE_LoggingDispositions"."ExternalID" FROM ((("WSE_LoggingDispositions" JOIN "Versions" ON (("WSE_LoggingDispositions"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (81)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 1DROP VIEW public."View_WSE_LoggingDispositions"; publicpostgresfalse16884 125917919 WSE_NetworksTABLECREATE TABLE "WSE_Networks" ( "VersionID" integer NOT NULL, "First" integer NOT NULL, "Last" integer NOT NULL, "ManagingRoleID" integer NOT NULL, "ClientRuleID" integer NOT NULL, "Name" text NOT NULL ); "DROP TABLE public."WSE_Networks"; publicpostgresfalse4 125917924View_WSE_NetworksVIEWCREATE VIEW "View_WSE_Networks" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Networks"."First", "WSE_Networks"."Last", "WSE_Networks"."ManagingRoleID", "WSE_Networks"."ClientRuleID", "WSE_Networks"."Name" FROM ((("WSE_Networks" JOIN "Versions" ON (("WSE_Networks"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (67)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_Networks"; publicpostgresfalse16894 125917928 WSE_PoliciesTABLECREATE TABLE "WSE_Policies" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "IsDefault" boolean DEFAULT false NOT NULL ); "DROP TABLE public."WSE_Policies"; publicpostgresfalse19844 125917934View_WSE_PoliciesVIEWCREATE VIEW "View_WSE_Policies" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Policies"."Name", "WSE_Policies"."Description", "WSE_Policies"."IsDefault" FROM ((("WSE_Policies" JOIN "Versions" ON (("WSE_Policies"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (53)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_Policies"; publicpostgresfalse16904125917938WSE_PolicyPeriodsTABLE5CREATE TABLE "WSE_PolicyPeriods" ( "VersionID" integer NOT NULL, "TargetID" integer NOT NULL, "TargetTypeID" smallint NOT NULL, "TrafficID" integer NOT NULL, "TrafficTypeID" smallint NOT NULL, "StartTime" integer NOT NULL, "Length" integer NOT NULL, "Days" integer NOT NULL ); 'DROP TABLE public."WSE_PolicyPeriods"; publicpostgresfalse4125917940View_WSE_PolicyPeriodsVIEW=CREATE VIEW "View_WSE_PolicyPeriods" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_PolicyPeriods"."TargetID", "WSE_PolicyPeriods"."TrafficID", "WSE_PolicyPeriods"."StartTime", "WSE_PolicyPeriods"."Length", "WSE_PolicyPeriods"."Days" FROM ((("WSE_PolicyPeriods" JOIN "Versions" ON (("WSE_PolicyPeriods"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (66)::smallint) AND ("Versions"."EndViewID" = 2147483647)); +DROP VIEW public."View_WSE_PolicyPeriods"; publicpostgresfalse16914125917944WSE_ProtocolCriteriaTABLEiCREATE TABLE "WSE_ProtocolCriteria" ( "VersionID" integer NOT NULL, "sensData" bytea NOT NULL ); *DROP TABLE public."WSE_ProtocolCriteria"; publicpostgresfalse4125917949View_WSE_ProtocolCriteriaVIEWCREATE VIEW "View_WSE_ProtocolCriteria" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolCriteria"."sensData" FROM ((("WSE_ProtocolCriteria" JOIN "Versions" ON (("WSE_ProtocolCriteria"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (69)::smallint) AND ("Versions"."EndViewID" = 2147483647)); .DROP VIEW public."View_WSE_ProtocolCriteria"; publicpostgresfalse16924125917952WSE_ProtocolDispositionsTABLEMCREATE TABLE "WSE_ProtocolDispositions" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Action" smallint NOT NULL, "Log" boolean NOT NULL, "BandwidthBlockType" smallint NOT NULL, "BandwidthLimit" integer NOT NULL, "BandwidthUseDefaultBandwidth" boolean NOT NULL ); .DROP TABLE public."WSE_ProtocolDispositions"; publicpostgresfalse4125917957View_WSE_ProtocolDispositionsVIEWCREATE VIEW "View_WSE_ProtocolDispositions" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolDispositions"."Name", "WSE_ProtocolDispositions"."Description", "WSE_ProtocolDispositions"."Action", "WSE_ProtocolDispositions"."Log", "WSE_ProtocolDispositions"."BandwidthBlockType", "WSE_ProtocolDispositions"."BandwidthLimit", "WSE_ProtocolDispositions"."BandwidthUseDefaultBandwidth" FROM ((("WSE_ProtocolDispositions" JOIN "Versions" ON (("WSE_ProtocolDispositions"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (65)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 2DROP VIEW public."View_WSE_ProtocolDispositions"; publicpostgresfalse16934125917961WSE_ProtocolGroupsTABLECREATE TABLE "WSE_ProtocolGroups" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); (DROP TABLE public."WSE_ProtocolGroups"; publicpostgresfalse4125917966View_WSE_ProtocolGroupsVIEWCREATE VIEW "View_WSE_ProtocolGroups" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolGroups"."Name", "WSE_ProtocolGroups"."Description", "WSE_ProtocolGroups"."ExternalID" FROM ((("WSE_ProtocolGroups" JOIN "Versions" ON (("WSE_ProtocolGroups"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (64)::smallint) AND ("Versions"."EndViewID" = 2147483647)); ,DROP VIEW public."View_WSE_ProtocolGroups"; publicpostgresfalse16944125917970WSE_ProtocolNotificationsTABLEZCREATE TABLE "WSE_ProtocolNotifications" ( "VersionID" integer NOT NULL, "ProtocolID" integer NOT NULL, "AlertBlockedMin" integer DEFAULT 0 NOT NULL, "AlertBlockedDest" integer DEFAULT 0 NOT NULL, "AlertPermittedMin" integer DEFAULT 0 NOT NULL, "AlertPermittedDest" integer DEFAULT 0 NOT NULL, "Name" text NOT NULL ); /DROP TABLE public."WSE_ProtocolNotifications"; publicpostgresfalse19851986198719884125917979View_WSE_ProtocolNotificationsVIEWCREATE VIEW "View_WSE_ProtocolNotifications" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolNotifications"."ProtocolID", "WSE_ProtocolNotifications"."AlertBlockedMin", "WSE_ProtocolNotifications"."AlertBlockedDest", "WSE_ProtocolNotifications"."AlertPermittedMin", "WSE_ProtocolNotifications"."AlertPermittedDest", "WSE_ProtocolNotifications"."Name" FROM ((("WSE_ProtocolNotifications" JOIN "Versions" ON (("WSE_ProtocolNotifications"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (80)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 3DROP VIEW public."View_WSE_ProtocolNotifications"; publicpostgresfalse16954125917983WSE_ProtocolSetTemplatesTABLECREATE TABLE "WSE_ProtocolSetTemplates" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Entries" text NOT NULL ); .DROP TABLE public."WSE_ProtocolSetTemplates"; publicpostgresfalse4125917988View_WSE_ProtocolSetTemplatesVIEWCREATE VIEW "View_WSE_ProtocolSetTemplates" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolSetTemplates"."Name", "WSE_ProtocolSetTemplates"."Entries" FROM ((("WSE_ProtocolSetTemplates" JOIN "Versions" ON (("WSE_ProtocolSetTemplates"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (60)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 2DROP VIEW public."View_WSE_ProtocolSetTemplates"; publicpostgresfalse16964125917991WSE_ProtocolSetsTABLECREATE TABLE "WSE_ProtocolSets" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Entries" text NOT NULL, "DefaultDispID" integer DEFAULT 0 NOT NULL, "Mode" smallint DEFAULT 0 NOT NULL ); &DROP TABLE public."WSE_ProtocolSets"; publicpostgresfalse198919904125917998View_WSE_ProtocolSetsVIEW8CREATE VIEW "View_WSE_ProtocolSets" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolSets"."Name", "WSE_ProtocolSets"."Description", "WSE_ProtocolSets"."Entries", "WSE_ProtocolSets"."DefaultDispID", "WSE_ProtocolSets"."Mode" FROM ((("WSE_ProtocolSets" JOIN "Versions" ON (("WSE_ProtocolSets"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (57)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_WSE_ProtocolSets"; publicpostgresfalse16974125918002 WSE_ProtocolsTABLECREATE TABLE "WSE_Protocols" ( "VersionID" integer NOT NULL, "ParentID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); #DROP TABLE public."WSE_Protocols"; publicpostgresfalse4125918007View_WSE_ProtocolsVIEWCREATE VIEW "View_WSE_Protocols" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Protocols"."Name", "WSE_Protocols"."Description", "WSE_Protocols"."ParentID", "WSE_Protocols"."ExternalID" FROM ((("WSE_Protocols" JOIN "Versions" ON (("WSE_Protocols"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (55)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_Protocols"; publicpostgresfalse16984125918011WSE_RecategorizedUrlsTABLECREATE TABLE "WSE_RecategorizedUrls" ( "VersionID" integer NOT NULL, "CategoryID" integer NOT NULL, "SimpleValue" text NOT NULL, "RegExValue" text NOT NULL ); +DROP TABLE public."WSE_RecategorizedUrls"; publicpostgresfalse4125918016View_WSE_RecategorizedUrlsVIEW CREATE VIEW "View_WSE_RecategorizedUrls" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_RecategorizedUrls"."CategoryID", "WSE_RecategorizedUrls"."SimpleValue", "WSE_RecategorizedUrls"."RegExValue" FROM ((("WSE_RecategorizedUrls" JOIN "Versions" ON (("WSE_RecategorizedUrls"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (71)::smallint) AND ("Versions"."EndViewID" = 2147483647)); /DROP VIEW public."View_WSE_RecategorizedUrls"; publicpostgresfalse16994 125918020WSE_RiskClassesTABLECREATE TABLE "WSE_RiskClasses" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); %DROP TABLE public."WSE_RiskClasses"; publicpostgresfalse4!125918025View_WSE_RiskClassesVIEWCREATE VIEW "View_WSE_RiskClasses" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_RiskClasses"."Name", "WSE_RiskClasses"."Description", "WSE_RiskClasses"."ExternalID" FROM ((("WSE_RiskClasses" JOIN "Versions" ON (("WSE_RiskClasses"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (61)::smallint) AND ("Versions"."EndViewID" = 2147483647)); )DROP VIEW public."View_WSE_RiskClasses"; publicpostgresfalse17004"125918029 WSE_RoleLocksTABLECCREATE TABLE "WSE_RoleLocks" ( "VersionID" integer NOT NULL ); #DROP TABLE public."WSE_RoleLocks"; publicpostgresfalse4#125918031View_WSE_RoleLocksVIEWCREATE VIEW "View_WSE_RoleLocks" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath" FROM ((("WSE_RoleLocks" JOIN "Versions" ON (("WSE_RoleLocks"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (84)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_RoleLocks"; publicpostgresfalse17014$125918034 WSE_RolesTABLECREATE TABLE "WSE_Roles" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "IsRoot" boolean DEFAULT false NOT NULL, "Precedence" integer NOT NULL, "ReportingPermissions" integer NOT NULL, "CatsToRCs" text NOT NULL, "CSTemplateID" integer NOT NULL, "PSTemplateID" integer NOT NULL, "RoleLockID" integer NOT NULL ); DROP TABLE public."WSE_Roles"; publicpostgresfalse19914%125918040View_WSE_RolesVIEW]CREATE VIEW "View_WSE_Roles" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Roles"."Name", "WSE_Roles"."Description", "WSE_Roles"."IsRoot", "WSE_Roles"."Precedence", "WSE_Roles"."ReportingPermissions", "WSE_Roles"."CatsToRCs", "WSE_Roles"."CSTemplateID", "WSE_Roles"."PSTemplateID" FROM ((("WSE_Roles" JOIN "Versions" ON (("WSE_Roles"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (52)::smallint) AND ("Versions"."EndViewID" = 2147483647)); #DROP VIEW public."View_WSE_Roles"; publicpostgresfalse17024&125918044 WSE_SettingTABLEwCREATE TABLE "WSE_Setting" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Value" bytea NOT NULL ); !DROP TABLE public."WSE_Setting"; publicpostgresfalse4'125918049View_WSE_SettingVIEWCREATE VIEW "View_WSE_Setting" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Setting"."Name", "WSE_Setting"."Value" FROM ((("WSE_Setting" JOIN "Versions" ON (("WSE_Setting"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (78)::smallint) AND ("Versions"."EndViewID" = 2147483647)); %DROP VIEW public."View_WSE_Setting"; publicpostgresfalse17034(125918052 WSE_SettingsTABLEBCREATE TABLE "WSE_Settings" ( "VersionID" integer NOT NULL ); "DROP TABLE public."WSE_Settings"; publicpostgresfalse47125918647View_WSE_SettingsVIEWCREATE VIEW "View_WSE_Settings" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath" FROM ((("WSE_Settings" JOIN "Versions" ON (("WSE_Settings"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (77)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_Settings"; publicpostgresfalse17104)125918057 WSE_SysAlertsTABLECREATE TABLE "WSE_SysAlerts" ( "VersionID" integer NOT NULL, "MaxPerEvent" integer NOT NULL, "SMTPEnable" boolean DEFAULT false NOT NULL, "SMTPServer" text DEFAULT ''::text NOT NULL, "SMTPFrom" text DEFAULT ''::text NOT NULL, "SMTPTo" text DEFAULT ''::text NOT NULL, "SMTPCc" text DEFAULT ''::text NOT NULL, "OnScreenEnable" boolean DEFAULT false NOT NULL, "OnScreenRecepients" text DEFAULT ''::text NOT NULL, "SNMPEnable" boolean DEFAULT false NOT NULL, "SNMPCommunity" text DEFAULT ''::text NOT NULL, "SNMPAddress" text DEFAULT ''::text NOT NULL, "SNMPPort" integer DEFAULT 0 NOT NULL ); #DROP TABLE public."WSE_SysAlerts"; publicpostgresfalse199219931994199519961997199819992000200120024*125918073View_WSE_SysAlertsVIEWCREATE VIEW "View_WSE_SysAlerts" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_SysAlerts"."MaxPerEvent", "WSE_SysAlerts"."SMTPEnable", "WSE_SysAlerts"."SMTPServer", "WSE_SysAlerts"."SMTPFrom", "WSE_SysAlerts"."SMTPTo", "WSE_SysAlerts"."SMTPCc", "WSE_SysAlerts"."OnScreenEnable", "WSE_SysAlerts"."OnScreenRecepients", "WSE_SysAlerts"."SNMPEnable", "WSE_SysAlerts"."SNMPCommunity", "WSE_SysAlerts"."SNMPAddress", "WSE_SysAlerts"."SNMPPort" FROM ((("WSE_SysAlerts" JOIN "Versions" ON (("WSE_SysAlerts"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (75)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_SysAlerts"; publicpostgresfalse17044+125918077 WSE_SysEventsTABLECREATE TABLE "WSE_SysEvents" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Destinations" integer DEFAULT 0 NOT NULL ); #DROP TABLE public."WSE_SysEvents"; publicpostgresfalse20034,125918083View_WSE_SysEventsVIEWCREATE VIEW "View_WSE_SysEvents" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_SysEvents"."Name", "WSE_SysEvents"."Description", "WSE_SysEvents"."Destinations" FROM ((("WSE_SysEvents" JOIN "Versions" ON (("WSE_SysEvents"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (76)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_SysEvents"; publicpostgresfalse17054-125918087WSE_UnfilteredUrlsTABLECREATE TABLE "WSE_UnfilteredUrls" ( "VersionID" integer NOT NULL, "CategoryID" integer NOT NULL, "SimpleValue" text NOT NULL, "RegExValue" text NOT NULL ); (DROP TABLE public."WSE_UnfilteredUrls"; publicpostgresfalse4.125918092View_WSE_UnfilteredUrlsVIEWCREATE VIEW "View_WSE_UnfilteredUrls" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_UnfilteredUrls"."CategoryID", "WSE_UnfilteredUrls"."SimpleValue", "WSE_UnfilteredUrls"."RegExValue" FROM ((("WSE_UnfilteredUrls" JOIN "Versions" ON (("WSE_UnfilteredUrls"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (72)::smallint) AND ("Versions"."EndViewID" = 2147483647)); ,DROP VIEW public."View_WSE_UnfilteredUrls"; publicpostgresfalse17064/125918116WSE_WebFilteringTABLECREATE TABLE "WSE_WebFiltering" ( "VersionID" integer NOT NULL, "RootRoleID" integer NOT NULL, "SysAlertsID" integer NOT NULL, "SettingsID" integer NOT NULL ); &DROP TABLE public."WSE_WebFiltering"; publicpostgresfalse40125918118View_WSE_WebFilteringVIEWCREATE VIEW "View_WSE_WebFiltering" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_WebFiltering"."RootRoleID", "WSE_WebFiltering"."SysAlertsID", "WSE_WebFiltering"."SettingsID" FROM ((("WSE_WebFiltering" JOIN "Versions" ON (("WSE_WebFiltering"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (51)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_WSE_WebFiltering"; publicpostgresfalse170741125918122 WSE_YesListsTABLECREATE TABLE "WSE_YesLists" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "SimpleValue" text NOT NULL, "RegExValue" text NOT NULL ); "DROP TABLE public."WSE_YesLists"; publicpostgresfalse42125918127View_WSE_YesListsVIEWCREATE VIEW "View_WSE_YesLists" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_YesLists"."Name", "WSE_YesLists"."Description", "WSE_YesLists"."SimpleValue", "WSE_YesLists"."RegExValue" FROM ((("WSE_YesLists" JOIN "Versions" ON (("WSE_YesLists"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (62)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_YesLists"; publicpostgresfalse170843125918131 Views_ID_seqSEQUENCE_CREATE SEQUENCE "Views_ID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; %DROP SEQUENCE public."Views_ID_seq"; publicpostgresfalse1494400 Views_ID_seqSEQUENCE OWNED BY5ALTER SEQUENCE "Views_ID_seq" OWNED BY "Views"."ID"; publicpostgresfalse158700 Views_ID_seq SEQUENCE SET7SELECT pg_catalog.setval('"Views_ID_seq"', 488, true); publicpostgresfalse15874125918618__DatabaseVersion__TABLEuCREATE TABLE "__DatabaseVersion__" ( "Name" text NOT NULL, "MinCompatible" integer, "Current" integer ); )DROP TABLE public."__DatabaseVersion__"; publicpostgresfalse4260418133ObjectIDDEFAULToALTER TABLE "AddsPending" ALTER COLUMN "ObjectID" SET DEFAULT nextval('"AddsPending_ObjectID_seq"'::regclass); GALTER TABLE public."AddsPending" ALTER COLUMN "ObjectID" DROP DEFAULT; publicpostgresfalse15001499260418134IDDEFAULT]ALTER TABLE "AuditLog" ALTER COLUMN "ID" SET DEFAULT nextval('"AuditLog_ID_seq"'::regclass); >ALTER TABLE public."AuditLog" ALTER COLUMN "ID" DROP DEFAULT; publicpostgresfalse15011497260418135IDDEFAULTcALTER TABLE "Changelists" ALTER COLUMN "ID" SET DEFAULT nextval('"Changelists_ID_seq"'::regclass); AALTER TABLE public."Changelists" ALTER COLUMN "ID" DROP DEFAULT; publicpostgresfalse15021492260418136IDDEFAULT]ALTER TABLE "Versions" ALTER COLUMN "ID" SET DEFAULT nextval('"Versions_ID_seq"'::regclass); >ALTER TABLE public."Versions" ALTER COLUMN "ID" DROP DEFAULT; publicpostgresfalse15171516260418137IDDEFAULTWALTER TABLE "Views" ALTER COLUMN "ID" SET DEFAULT nextval('"Views_ID_seq"'::regclass); ;ALTER TABLE public."Views" ALTER COLUMN "ID" DROP DEFAULT; publicpostgresfalse15871494017684 AccessControl TABLE DATA^COPY "AccessControl" ("ObjectID", "UserRoleID", "SelfRights", "DescendantRights") FROM stdin; publicpostgresfalse1495017734 AddsPending TABLE DATARCOPY "AddsPending" ("ObjectID", "ChangelistID", "Path", "CheckPoint") FROM stdin; publicpostgresfalse1499017694AuditLog TABLE DATA=COPY "AuditLog" ("ID", "Date", "User", "Action") FROM stdin; publicpostgresfalse1497017653 Changelists TABLE DATAgCOPY "Changelists" ("ID", "ViewID", "LastCheckPoint", "ClientDescription", "LastAccessed") FROM stdin; publicpostgresfalse1492017745CheckoutsPending TABLE DATAgCOPY "CheckoutsPending" ("ObjectID", "ChangelistID", "EditCheckPoint", "DeleteCheckPoint") FROM stdin; publicpostgresfalse1503017747 ExternalID TABLE DATAJCOPY "ExternalID" ("TypeID", "CanAlloc", "ObjectID", "Value") FROM stdin; publicpostgresfalse1504017749ExternalIDPending TABLE DATAQCOPY "ExternalIDPending" ("TypeID", "CanAlloc", "ObjectID", "Value") FROM stdin; publicpostgresfalse1505017751ExternalIDPool TABLE DATA^COPY "ExternalIDPool" ("TypeID", "CanAlloc", "BeginRange", "EndRange", "FreedAt") FROM stdin; publicpostgresfalse1506017753 GlobalContext TABLE DATASCOPY "GlobalContext" ("VersionID", "SecurityAccountsID", "Extensions") FROM stdin; publicpostgresfalse1507017758Globals TABLE DATACOPY "Globals" ("Name", "ShortValue", "IntValue", "BoolValue", "StringValue", "sensPasswordValue", "BlobValue", "IntArrayValue", "TimeValue") FROM stdin; publicpostgresfalse1508017763 LocalUsers TABLE DATAjCOPY "LocalUsers" ("VersionID", "Name", "pwdPassword", "IsSpecial", "CanAudit", "UserRoleID") FROM stdin; publicpostgresfalse1509017768Locks TABLE DATA"COPY "Locks" ("Name") FROM stdin; publicpostgresfalse1510017661 References TABLE DATA6COPY "References" ("Src", "Dst", "Count") FROM stdin; publicpostgresfalse1493017773ReferencesPending TABLE DATA[COPY "ReferencesPending" ("ChangelistID", "CheckPoint", "Src", "Dst", "Count") FROM stdin; publicpostgresfalse1511017775 RemoteUsers TABLE DATACCOPY "RemoteUsers" ("VersionID", "Name", "UserRoleID") FROM stdin; publicpostgresfalse1512017780SecurityAccounts TABLE DATA2COPY "SecurityAccounts" ("VersionID") FROM stdin; publicpostgresfalse1513017782Tokens TABLE DATAbCOPY "Tokens" ("UserName", "UserRoleID", "Created", "Data", "CanAudit", "Privileges") FROM stdin; publicpostgresfalse1514017712 TypeToTable TABLE DATAPCOPY "TypeToTable" ("TypeID", "TableName", "IsFolder", "AuditName") FROM stdin; publicpostgresfalse1498017787 UserRoles TABLE DATAPCOPY "UserRoles" ("VersionID", "Name", "Description", "Privileges") FROM stdin; publicpostgresfalse1515017687VersionedObjects TABLE DATAWCOPY "VersionedObjects" ("ID", "TypeID", "Path", "DeletedBy", "AuditName") FROM stdin; publicpostgresfalse1496017792Versions TABLE DATAKCOPY "Versions" ("ID", "BeginViewID", "EndViewID", "ObjectID") FROM stdin; publicpostgresfalse1516017672Views TABLE DATA(COPY "Views" ("ID", "Time") FROM stdin; publicpostgresfalse1494018635WCG_ContentGateway TABLE DATABCOPY "WCG_ContentGateway" ("VersionID", "SettingsID") FROM stdin; publicpostgresfalse1589018690WCG_ExceptionUrls TABLE DATAgCOPY "WCG_ExceptionUrls" ("VersionID", "Url", "RealTimeCat", "Threat", "ContentStripping") FROM stdin; publicpostgresfalse1594018706 WCG_Setting TABLE DATA>COPY "WCG_Setting" ("VersionID", "Name", "Value") FROM stdin; publicpostgresfalse1596018650 WCG_Settings TABLE DATACOPY "WCG_Settings" ("VersionID", "ContentCatOpt", "ContentScanOpt", "AppScanOpt", "FileSizeLimit", "ExeFileNames", "ContentTypes", "ExeFilesEnable", "AEScanOpt", "FileTypes") FROM stdin; publicpostgresfalse1592017816WSE_Categories TABLE DATAaCOPY "WSE_Categories" ("VersionID", "ParentID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1524017825WSE_CategoryDispositions TABLE DATACOPY "WSE_CategoryDispositions" ("VersionID", "Name", "Description", "Action", "BlockKeywords", "BlockedFileTypes", "BandwidthBlockType", "BandwidthLimit", "BandwidthUseDefaultBandwidth") FROM stdin; publicpostgresfalse1526017834WSE_CategoryNotifications TABLE DATACOPY "WSE_CategoryNotifications" ("VersionID", "CategoryID", "Log", "AlertBlockedMin", "AlertBlockedDest", "AlertPermittedMin", "AlertPermittedDest", "Name") FROM stdin; publicpostgresfalse1528017848WSE_CategorySetTemplates TABLE DATAMCOPY "WSE_CategorySetTemplates" ("VersionID", "Name", "Entries") FROM stdin; publicpostgresfalse1530017856WSE_CategorySets TABLE DATAmCOPY "WSE_CategorySets" ("VersionID", "Name", "Description", "Entries", "DefaultDispID", "Mode") FROM stdin; publicpostgresfalse1532017867WSE_ClientRules TABLE DATAZCOPY "WSE_ClientRules" ("VersionID", "PolicyID", "QuotaTime", "sensPassword") FROM stdin; publicpostgresfalse1534017876WSE_DirectoryObjects TABLE DATAsCOPY "WSE_DirectoryObjects" ("VersionID", "Path", "Account", "ManagingRoleID", "ClientRuleID", "Name") FROM stdin; publicpostgresfalse1536017885WSE_FileExtensionSets TABLE DATA[COPY "WSE_FileExtensionSets" ("VersionID", "FileTypeID", "Extensions", "Name") FROM stdin; publicpostgresfalse1538017893 WSE_FileTypes TABLE DATATCOPY "WSE_FileTypes" ("VersionID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1540017902 WSE_Keywords TABLE DATAYCOPY "WSE_Keywords" ("VersionID", "CategoryID", "SimpleValue", "RegExValue") FROM stdin; publicpostgresfalse1542017910WSE_LoggingDispositions TABLE DATAjCOPY "WSE_LoggingDispositions" ("VersionID", "Name", "Description", "Blocking", "ExternalID") FROM stdin; publicpostgresfalse1544017919 WSE_Networks TABLE DATAiCOPY "WSE_Networks" ("VersionID", "First", "Last", "ManagingRoleID", "ClientRuleID", "Name") FROM stdin; publicpostgresfalse1546017928 WSE_Policies TABLE DATARCOPY "WSE_Policies" ("VersionID", "Name", "Description", "IsDefault") FROM stdin; publicpostgresfalse1548017938WSE_PolicyPeriods TABLE DATACOPY "WSE_PolicyPeriods" ("VersionID", "TargetID", "TargetTypeID", "TrafficID", "TrafficTypeID", "StartTime", "Length", "Days") FROM stdin; publicpostgresfalse1550017944WSE_ProtocolCriteria TABLE DATABCOPY "WSE_ProtocolCriteria" ("VersionID", "sensData") FROM stdin; publicpostgresfalse1552017952WSE_ProtocolDispositions TABLE DATACOPY "WSE_ProtocolDispositions" ("VersionID", "Name", "Description", "Action", "Log", "BandwidthBlockType", "BandwidthLimit", "BandwidthUseDefaultBandwidth") FROM stdin; publicpostgresfalse1554017961WSE_ProtocolGroups TABLE DATAYCOPY "WSE_ProtocolGroups" ("VersionID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1556017970WSE_ProtocolNotifications TABLE DATACOPY "WSE_ProtocolNotifications" ("VersionID", "ProtocolID", "AlertBlockedMin", "AlertBlockedDest", "AlertPermittedMin", "AlertPermittedDest", "Name") FROM stdin; publicpostgresfalse1558017983WSE_ProtocolSetTemplates TABLE DATAMCOPY "WSE_ProtocolSetTemplates" ("VersionID", "Name", "Entries") FROM stdin; publicpostgresfalse1560017991WSE_ProtocolSets TABLE DATAmCOPY "WSE_ProtocolSets" ("VersionID", "Name", "Description", "Entries", "DefaultDispID", "Mode") FROM stdin; publicpostgresfalse1562018002 WSE_Protocols TABLE DATA`COPY "WSE_Protocols" ("VersionID", "ParentID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1564018011WSE_RecategorizedUrls TABLE DATAbCOPY "WSE_RecategorizedUrls" ("VersionID", "CategoryID", "SimpleValue", "RegExValue") FROM stdin; publicpostgresfalse1566018020WSE_RiskClasses TABLE DATAVCOPY "WSE_RiskClasses" ("VersionID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1568018029 WSE_RoleLocks TABLE DATA/COPY "WSE_RoleLocks" ("VersionID") FROM stdin; publicpostgresfalse1570018034 WSE_Roles TABLE DATACOPY "WSE_Roles" ("VersionID", "Name", "Description", "IsRoot", "Precedence", "ReportingPermissions", "CatsToRCs", "CSTemplateID", "PSTemplateID", "RoleLockID") FROM stdin; publicpostgresfalse1572018044 WSE_Setting TABLE DATA>COPY "WSE_Setting" ("VersionID", "Name", "Value") FROM stdin; publicpostgresfalse1574018052 WSE_Settings TABLE DATA.COPY "WSE_Settings" ("VersionID") FROM stdin; publicpostgresfalse1576018057 WSE_SysAlerts TABLE DATACOPY "WSE_SysAlerts" ("VersionID", "MaxPerEvent", "SMTPEnable", "SMTPServer", "SMTPFrom", "SMTPTo", "SMTPCc", "OnScreenEnable", "OnScreenRecepients", "SNMPEnable", "SNMPCommunity", "SNMPAddress", "SNMPPort") FROM stdin; publicpostgresfalse1577018077 WSE_SysEvents TABLE DATAVCOPY "WSE_SysEvents" ("VersionID", "Name", "Description", "Destinations") FROM stdin; publicpostgresfalse1579018087WSE_UnfilteredUrls TABLE DATA_COPY "WSE_UnfilteredUrls" ("VersionID", "CategoryID", "SimpleValue", "RegExValue") FROM stdin; publicpostgresfalse1581018116WSE_WebFiltering TABLE DATA]COPY "WSE_WebFiltering" ("VersionID", "RootRoleID", "SysAlertsID", "SettingsID") FROM stdin; publicpostgresfalse1583018122 WSE_YesLists TABLE DATAbCOPY "WSE_YesLists" ("VersionID", "Name", "Description", "SimpleValue", "RegExValue") FROM stdin; publicpostgresfalse1585018618__DatabaseVersion__ TABLE DATALCOPY "__DatabaseVersion__" ("Name", "MinCompatible", "Current") FROM stdin; publicpostgresfalse1588260618235AccessControl_pkey CONSTRAINTqALTER TABLE ONLY "AccessControl" ADD CONSTRAINT "AccessControl_pkey" PRIMARY KEY ("ObjectID", "UserRoleID"); NALTER TABLE ONLY public."AccessControl" DROP CONSTRAINT "AccessControl_pkey"; publicpostgresfalse149514951495260618237AddsPending_pkey CONSTRAINT_ALTER TABLE ONLY "AddsPending" ADD CONSTRAINT "AddsPending_pkey" PRIMARY KEY ("ObjectID"); JALTER TABLE ONLY public."AddsPending" DROP CONSTRAINT "AddsPending_pkey"; publicpostgresfalse14991499260618239 AuditLog_pkey CONSTRAINTSALTER TABLE ONLY "AuditLog" ADD CONSTRAINT "AuditLog_pkey" PRIMARY KEY ("ID"); DALTER TABLE ONLY public."AuditLog" DROP CONSTRAINT "AuditLog_pkey"; publicpostgresfalse14971497260618241Changelists_pkey CONSTRAINTYALTER TABLE ONLY "Changelists" ADD CONSTRAINT "Changelists_pkey" PRIMARY KEY ("ID"); JALTER TABLE ONLY public."Changelists" DROP CONSTRAINT "Changelists_pkey"; publicpostgresfalse14921492260618243CheckoutsPending_pkey CONSTRAINTiALTER TABLE ONLY "CheckoutsPending" ADD CONSTRAINT "CheckoutsPending_pkey" PRIMARY KEY ("ObjectID"); TALTER TABLE ONLY public."CheckoutsPending" DROP CONSTRAINT "CheckoutsPending_pkey"; publicpostgresfalse15031503260618245ExternalIDPending_pkey CONSTRAINTuALTER TABLE ONLY "ExternalIDPending" ADD CONSTRAINT "ExternalIDPending_pkey" PRIMARY KEY ("ObjectID", "TypeID"); VALTER TABLE ONLY public."ExternalIDPending" DROP CONSTRAINT "ExternalIDPending_pkey"; publicpostgresfalse150515051505260618247ExternalIDPool_pkey CONSTRAINTALTER TABLE ONLY "ExternalIDPool" ADD CONSTRAINT "ExternalIDPool_pkey" PRIMARY KEY ("TypeID", "CanAlloc", "BeginRange", "FreedAt"); PALTER TABLE ONLY public."ExternalIDPool" DROP CONSTRAINT "ExternalIDPool_pkey"; publicpostgresfalse15061506150615061506260618249ExternalID_pkey CONSTRAINTgALTER TABLE ONLY "ExternalID" ADD CONSTRAINT "ExternalID_pkey" PRIMARY KEY ("ObjectID", "TypeID"); HALTER TABLE ONLY public."ExternalID" DROP CONSTRAINT "ExternalID_pkey"; publicpostgresfalse150415041504260618251 Globals_pkey CONSTRAINTSALTER TABLE ONLY "Globals" ADD CONSTRAINT "Globals_pkey" PRIMARY KEY ("Name"); BALTER TABLE ONLY public."Globals" DROP CONSTRAINT "Globals_pkey"; publicpostgresfalse15081508260618253 Locks_pkey CONSTRAINTOALTER TABLE ONLY "Locks" ADD CONSTRAINT "Locks_pkey" PRIMARY KEY ("Name"); >ALTER TABLE ONLY public."Locks" DROP CONSTRAINT "Locks_pkey"; publicpostgresfalse15101510260618255PK_GlobalContext CONSTRAINTbALTER TABLE ONLY "GlobalContext" ADD CONSTRAINT "PK_GlobalContext" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."GlobalContext" DROP CONSTRAINT "PK_GlobalContext"; publicpostgresfalse15071507260618257 PK_LocalUsers CONSTRAINT\ALTER TABLE ONLY "LocalUsers" ADD CONSTRAINT "PK_LocalUsers" PRIMARY KEY ("VersionID"); FALTER TABLE ONLY public."LocalUsers" DROP CONSTRAINT "PK_LocalUsers"; publicpostgresfalse15091509260618259PK_RemoteUsers CONSTRAINT^ALTER TABLE ONLY "RemoteUsers" ADD CONSTRAINT "PK_RemoteUsers" PRIMARY KEY ("VersionID"); HALTER TABLE ONLY public."RemoteUsers" DROP CONSTRAINT "PK_RemoteUsers"; publicpostgresfalse15121512260618261PK_SecurityAccounts CONSTRAINThALTER TABLE ONLY "SecurityAccounts" ADD CONSTRAINT "PK_SecurityAccounts" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."SecurityAccounts" DROP CONSTRAINT "PK_SecurityAccounts"; publicpostgresfalse15131513260618263 PK_UserRoles CONSTRAINTZALTER TABLE ONLY "UserRoles" ADD CONSTRAINT "PK_UserRoles" PRIMARY KEY ("VersionID"); DALTER TABLE ONLY public."UserRoles" DROP CONSTRAINT "PK_UserRoles"; publicpostgresfalse15151515O260618641PK_WCG_ContentGateway CONSTRAINTlALTER TABLE ONLY "WCG_ContentGateway" ADD CONSTRAINT "PK_WCG_ContentGateway" PRIMARY KEY ("VersionID"); VALTER TABLE ONLY public."WCG_ContentGateway" DROP CONSTRAINT "PK_WCG_ContentGateway"; publicpostgresfalse15891589S260618700PK_WCG_ExceptionUrls CONSTRAINTjALTER TABLE ONLY "WCG_ExceptionUrls" ADD CONSTRAINT "PK_WCG_ExceptionUrls" PRIMARY KEY ("VersionID"); TALTER TABLE ONLY public."WCG_ExceptionUrls" DROP CONSTRAINT "PK_WCG_ExceptionUrls"; publicpostgresfalse15941594U260618715PK_WCG_Setting CONSTRAINT^ALTER TABLE ONLY "WCG_Setting" ADD CONSTRAINT "PK_WCG_Setting" PRIMARY KEY ("VersionID"); HALTER TABLE ONLY public."WCG_Setting" DROP CONSTRAINT "PK_WCG_Setting"; publicpostgresfalse15961596Q260618684PK_WCG_Settings CONSTRAINT`ALTER TABLE ONLY "WCG_Settings" ADD CONSTRAINT "PK_WCG_Settings" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WCG_Settings" DROP CONSTRAINT "PK_WCG_Settings"; publicpostgresfalse15921592 260618265PK_WSE_Categories CONSTRAINTdALTER TABLE ONLY "WSE_Categories" ADD CONSTRAINT "PK_WSE_Categories" PRIMARY KEY ("VersionID"); NALTER TABLE ONLY public."WSE_Categories" DROP CONSTRAINT "PK_WSE_Categories"; publicpostgresfalse15241524260618267PK_WSE_CategoryDispositions CONSTRAINTxALTER TABLE ONLY "WSE_CategoryDispositions" ADD CONSTRAINT "PK_WSE_CategoryDispositions" PRIMARY KEY ("VersionID"); bALTER TABLE ONLY public."WSE_CategoryDispositions" DROP CONSTRAINT "PK_WSE_CategoryDispositions"; publicpostgresfalse15261526260618269PK_WSE_CategoryNotifications CONSTRAINTzALTER TABLE ONLY "WSE_CategoryNotifications" ADD CONSTRAINT "PK_WSE_CategoryNotifications" PRIMARY KEY ("VersionID"); dALTER TABLE ONLY public."WSE_CategoryNotifications" DROP CONSTRAINT "PK_WSE_CategoryNotifications"; publicpostgresfalse15281528260618271PK_WSE_CategorySetTemplates CONSTRAINTxALTER TABLE ONLY "WSE_CategorySetTemplates" ADD CONSTRAINT "PK_WSE_CategorySetTemplates" PRIMARY KEY ("VersionID"); bALTER TABLE ONLY public."WSE_CategorySetTemplates" DROP CONSTRAINT "PK_WSE_CategorySetTemplates"; publicpostgresfalse15301530260618273PK_WSE_CategorySets CONSTRAINThALTER TABLE ONLY "WSE_CategorySets" ADD CONSTRAINT "PK_WSE_CategorySets" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."WSE_CategorySets" DROP CONSTRAINT "PK_WSE_CategorySets"; publicpostgresfalse15321532260618275PK_WSE_ClientRules CONSTRAINTfALTER TABLE ONLY "WSE_ClientRules" ADD CONSTRAINT "PK_WSE_ClientRules" PRIMARY KEY ("VersionID"); PALTER TABLE ONLY public."WSE_ClientRules" DROP CONSTRAINT "PK_WSE_ClientRules"; publicpostgresfalse15341534260618277PK_WSE_DirectoryObjects CONSTRAINTpALTER TABLE ONLY "WSE_DirectoryObjects" ADD CONSTRAINT "PK_WSE_DirectoryObjects" PRIMARY KEY ("VersionID"); ZALTER TABLE ONLY public."WSE_DirectoryObjects" DROP CONSTRAINT "PK_WSE_DirectoryObjects"; publicpostgresfalse15361536260618279PK_WSE_FileExtensionSets CONSTRAINTrALTER TABLE ONLY "WSE_FileExtensionSets" ADD CONSTRAINT "PK_WSE_FileExtensionSets" PRIMARY KEY ("VersionID"); \ALTER TABLE ONLY public."WSE_FileExtensionSets" DROP CONSTRAINT "PK_WSE_FileExtensionSets"; publicpostgresfalse15381538260618281PK_WSE_FileTypes CONSTRAINTbALTER TABLE ONLY "WSE_FileTypes" ADD CONSTRAINT "PK_WSE_FileTypes" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_FileTypes" DROP CONSTRAINT "PK_WSE_FileTypes"; publicpostgresfalse15401540260618283PK_WSE_Keywords CONSTRAINT`ALTER TABLE ONLY "WSE_Keywords" ADD CONSTRAINT "PK_WSE_Keywords" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_Keywords" DROP CONSTRAINT "PK_WSE_Keywords"; publicpostgresfalse15421542!260618285PK_WSE_LoggingDispositions CONSTRAINTvALTER TABLE ONLY "WSE_LoggingDispositions" ADD CONSTRAINT "PK_WSE_LoggingDispositions" PRIMARY KEY ("VersionID"); `ALTER TABLE ONLY public."WSE_LoggingDispositions" DROP CONSTRAINT "PK_WSE_LoggingDispositions"; publicpostgresfalse15441544#260618287PK_WSE_Networks CONSTRAINT`ALTER TABLE ONLY "WSE_Networks" ADD CONSTRAINT "PK_WSE_Networks" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_Networks" DROP CONSTRAINT "PK_WSE_Networks"; publicpostgresfalse15461546%260618289PK_WSE_Policies CONSTRAINT`ALTER TABLE ONLY "WSE_Policies" ADD CONSTRAINT "PK_WSE_Policies" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_Policies" DROP CONSTRAINT "PK_WSE_Policies"; publicpostgresfalse15481548'260618291PK_WSE_PolicyPeriods CONSTRAINTjALTER TABLE ONLY "WSE_PolicyPeriods" ADD CONSTRAINT "PK_WSE_PolicyPeriods" PRIMARY KEY ("VersionID"); TALTER TABLE ONLY public."WSE_PolicyPeriods" DROP CONSTRAINT "PK_WSE_PolicyPeriods"; publicpostgresfalse15501550)260618293PK_WSE_ProtocolCriteria CONSTRAINTpALTER TABLE ONLY "WSE_ProtocolCriteria" ADD CONSTRAINT "PK_WSE_ProtocolCriteria" PRIMARY KEY ("VersionID"); ZALTER TABLE ONLY public."WSE_ProtocolCriteria" DROP CONSTRAINT "PK_WSE_ProtocolCriteria"; publicpostgresfalse15521552+260618295PK_WSE_ProtocolDispositions CONSTRAINTxALTER TABLE ONLY "WSE_ProtocolDispositions" ADD CONSTRAINT "PK_WSE_ProtocolDispositions" PRIMARY KEY ("VersionID"); bALTER TABLE ONLY public."WSE_ProtocolDispositions" DROP CONSTRAINT "PK_WSE_ProtocolDispositions"; publicpostgresfalse15541554-260618297PK_WSE_ProtocolGroups CONSTRAINTlALTER TABLE ONLY "WSE_ProtocolGroups" ADD CONSTRAINT "PK_WSE_ProtocolGroups" PRIMARY KEY ("VersionID"); VALTER TABLE ONLY public."WSE_ProtocolGroups" DROP CONSTRAINT "PK_WSE_ProtocolGroups"; publicpostgresfalse15561556/260618299PK_WSE_ProtocolNotifications CONSTRAINTzALTER TABLE ONLY "WSE_ProtocolNotifications" ADD CONSTRAINT "PK_WSE_ProtocolNotifications" PRIMARY KEY ("VersionID"); dALTER TABLE ONLY public."WSE_ProtocolNotifications" DROP CONSTRAINT "PK_WSE_ProtocolNotifications"; publicpostgresfalse155815581260618301PK_WSE_ProtocolSetTemplates CONSTRAINTxALTER TABLE ONLY "WSE_ProtocolSetTemplates" ADD CONSTRAINT "PK_WSE_ProtocolSetTemplates" PRIMARY KEY ("VersionID"); bALTER TABLE ONLY public."WSE_ProtocolSetTemplates" DROP CONSTRAINT "PK_WSE_ProtocolSetTemplates"; publicpostgresfalse156015603260618303PK_WSE_ProtocolSets CONSTRAINThALTER TABLE ONLY "WSE_ProtocolSets" ADD CONSTRAINT "PK_WSE_ProtocolSets" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."WSE_ProtocolSets" DROP CONSTRAINT "PK_WSE_ProtocolSets"; publicpostgresfalse156215625260618305PK_WSE_Protocols CONSTRAINTbALTER TABLE ONLY "WSE_Protocols" ADD CONSTRAINT "PK_WSE_Protocols" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_Protocols" DROP CONSTRAINT "PK_WSE_Protocols"; publicpostgresfalse156415647260618307PK_WSE_RecategorizedUrls CONSTRAINTrALTER TABLE ONLY "WSE_RecategorizedUrls" ADD CONSTRAINT "PK_WSE_RecategorizedUrls" PRIMARY KEY ("VersionID"); \ALTER TABLE ONLY public."WSE_RecategorizedUrls" DROP CONSTRAINT "PK_WSE_RecategorizedUrls"; publicpostgresfalse156615669260618309PK_WSE_RiskClasses CONSTRAINTfALTER TABLE ONLY "WSE_RiskClasses" ADD CONSTRAINT "PK_WSE_RiskClasses" PRIMARY KEY ("VersionID"); PALTER TABLE ONLY public."WSE_RiskClasses" DROP CONSTRAINT "PK_WSE_RiskClasses"; publicpostgresfalse15681568;260618311PK_WSE_RoleLocks CONSTRAINTbALTER TABLE ONLY "WSE_RoleLocks" ADD CONSTRAINT "PK_WSE_RoleLocks" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_RoleLocks" DROP CONSTRAINT "PK_WSE_RoleLocks"; publicpostgresfalse15701570=260618313 PK_WSE_Roles CONSTRAINTZALTER TABLE ONLY "WSE_Roles" ADD CONSTRAINT "PK_WSE_Roles" PRIMARY KEY ("VersionID"); DALTER TABLE ONLY public."WSE_Roles" DROP CONSTRAINT "PK_WSE_Roles"; publicpostgresfalse15721572?260618315PK_WSE_Setting CONSTRAINT^ALTER TABLE ONLY "WSE_Setting" ADD CONSTRAINT "PK_WSE_Setting" PRIMARY KEY ("VersionID"); HALTER TABLE ONLY public."WSE_Setting" DROP CONSTRAINT "PK_WSE_Setting"; publicpostgresfalse15741574A260618317PK_WSE_Settings CONSTRAINT`ALTER TABLE ONLY "WSE_Settings" ADD CONSTRAINT "PK_WSE_Settings" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_Settings" DROP CONSTRAINT "PK_WSE_Settings"; publicpostgresfalse15761576C260618319PK_WSE_SysAlerts CONSTRAINTbALTER TABLE ONLY "WSE_SysAlerts" ADD CONSTRAINT "PK_WSE_SysAlerts" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_SysAlerts" DROP CONSTRAINT "PK_WSE_SysAlerts"; publicpostgresfalse15771577E260618321PK_WSE_SysEvents CONSTRAINTbALTER TABLE ONLY "WSE_SysEvents" ADD CONSTRAINT "PK_WSE_SysEvents" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_SysEvents" DROP CONSTRAINT "PK_WSE_SysEvents"; publicpostgresfalse15791579G260618323PK_WSE_UnfilteredUrls CONSTRAINTlALTER TABLE ONLY "WSE_UnfilteredUrls" ADD CONSTRAINT "PK_WSE_UnfilteredUrls" PRIMARY KEY ("VersionID"); VALTER TABLE ONLY public."WSE_UnfilteredUrls" DROP CONSTRAINT "PK_WSE_UnfilteredUrls"; publicpostgresfalse15811581I260618329PK_WSE_WebFiltering CONSTRAINThALTER TABLE ONLY "WSE_WebFiltering" ADD CONSTRAINT "PK_WSE_WebFiltering" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."WSE_WebFiltering" DROP CONSTRAINT "PK_WSE_WebFiltering"; publicpostgresfalse15831583K260618331PK_WSE_YesLists CONSTRAINT`ALTER TABLE ONLY "WSE_YesLists" ADD CONSTRAINT "PK_WSE_YesLists" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_YesLists" DROP CONSTRAINT "PK_WSE_YesLists"; publicpostgresfalse15851585260618333ReferencesPending_pkey CONSTRAINTALTER TABLE ONLY "ReferencesPending" ADD CONSTRAINT "ReferencesPending_pkey" PRIMARY KEY ("Src", "Dst", "ChangelistID", "CheckPoint"); VALTER TABLE ONLY public."ReferencesPending" DROP CONSTRAINT "ReferencesPending_pkey"; publicpostgresfalse15111511151115111511260618335References_pkey CONSTRAINT_ALTER TABLE ONLY "References" ADD CONSTRAINT "References_pkey" PRIMARY KEY ("Src", "Dst"); HALTER TABLE ONLY public."References" DROP CONSTRAINT "References_pkey"; publicpostgresfalse149314931493260618337 Tokens_pkey CONSTRAINTQALTER TABLE ONLY "Tokens" ADD CONSTRAINT "Tokens_pkey" PRIMARY KEY ("Data"); @ALTER TABLE ONLY public."Tokens" DROP CONSTRAINT "Tokens_pkey"; publicpostgresfalse15141514260618339TypeToTable_pkey CONSTRAINT]ALTER TABLE ONLY "TypeToTable" ADD CONSTRAINT "TypeToTable_pkey" PRIMARY KEY ("TypeID"); JALTER TABLE ONLY public."TypeToTable" DROP CONSTRAINT "TypeToTable_pkey"; publicpostgresfalse14981498260618341VersionedObjects_pkey CONSTRAINTcALTER TABLE ONLY "VersionedObjects" ADD CONSTRAINT "VersionedObjects_pkey" PRIMARY KEY ("ID"); TALTER TABLE ONLY public."VersionedObjects" DROP CONSTRAINT "VersionedObjects_pkey"; publicpostgresfalse14961496 260618343 Versions_pkey CONSTRAINTSALTER TABLE ONLY "Versions" ADD CONSTRAINT "Versions_pkey" PRIMARY KEY ("ID"); DALTER TABLE ONLY public."Versions" DROP CONSTRAINT "Versions_pkey"; publicpostgresfalse15161516260618345 Views_pkey CONSTRAINTMALTER TABLE ONLY "Views" ADD CONSTRAINT "Views_pkey" PRIMARY KEY ("ID"); >ALTER TABLE ONLY public."Views" DROP CONSTRAINT "Views_pkey"; publicpostgresfalse14941494M260618624__DatabaseVersion___pkey CONSTRAINTkALTER TABLE ONLY "__DatabaseVersion__" ADD CONSTRAINT "__DatabaseVersion___pkey" PRIMARY KEY ("Name"); ZALTER TABLE ONLY public."__DatabaseVersion__" DROP CONSTRAINT "__DatabaseVersion___pkey"; publicpostgresfalse15881588125918346IX_AddsPendingINDEXdCREATE INDEX "IX_AddsPending" ON "AddsPending" USING btree ("ChangelistID", last_in_array("Path")); $DROP INDEX public."IX_AddsPending"; publicpostgresfalse7614991499125918347IX_ChangelistsINDEXMCREATE INDEX "IX_Changelists" ON "Changelists" USING btree ("LastAccessed"); $DROP INDEX public."IX_Changelists"; publicpostgresfalse1492125918348IX_CheckoutsPendingINDEXkCREATE INDEX "IX_CheckoutsPending" ON "CheckoutsPending" USING btree ("ChangelistID", "DeleteCheckPoint"); )DROP INDEX public."IX_CheckoutsPending"; publicpostgresfalse15031503125918349 IX_TokensINDEX>CREATE INDEX "IX_Tokens" ON "Tokens" USING btree ("Created"); DROP INDEX public."IX_Tokens"; publicpostgresfalse1514125918350IX_VersionedObjects_OwnerIDINDEXfCREATE INDEX "IX_VersionedObjects_OwnerID" ON "VersionedObjects" USING btree (last_in_array("Path")); 1DROP INDEX public."IX_VersionedObjects_OwnerID"; publicpostgresfalse761496125918351IX_VersionedObjects_PathINDEXTCREATE INDEX "IX_VersionedObjects_Path" ON "VersionedObjects" USING btree ("Path"); .DROP INDEX public."IX_VersionedObjects_Path"; publicpostgresfalse1496125918352IX_VersionedObjects_TypeIDINDEXXCREATE INDEX "IX_VersionedObjects_TypeID" ON "VersionedObjects" USING btree ("TypeID"); 0DROP INDEX public."IX_VersionedObjects_TypeID"; publicpostgresfalse1496 125918353 IX_VersionsINDEX_CREATE INDEX "IX_Versions" ON "Versions" USING btree ("ObjectID", "BeginViewID", "EndViewID"); !DROP INDEX public."IX_Versions"; publicpostgresfalse151615161516125918354IX_ViewsINDEX9CREATE INDEX "IX_Views" ON "Views" USING btree ("Time"); DROP INDEX public."IX_Views"; publicpostgresfalse1494262018355DeleteAuditLogTriggerTRIGGERCREATE TRIGGER "DeleteAuditLogTrigger" BEFORE INSERT ON "AuditLog" FOR EACH ROW EXECUTE PROCEDURE "DeleteAuditLogs"(); ;DROP TRIGGER "DeleteAuditLogTrigger" ON public."AuditLog"; publicpostgresfalse149736W260618356AccessControl_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "AccessControl" ADD CONSTRAINT "AccessControl_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "VersionedObjects"("ID") ON DELETE CASCADE; WALTER TABLE ONLY public."AccessControl" DROP CONSTRAINT "AccessControl_ObjectID_fkey"; publicpostgresfalse202014961495X260618361AddsPending_ChangelistID_fkey FK CONSTRAINTALTER TABLE ONLY "AddsPending" ADD CONSTRAINT "AddsPending_ChangelistID_fkey" FOREIGN KEY ("ChangelistID") REFERENCES "Changelists"("ID") ON DELETE CASCADE; WALTER TABLE ONLY public."AddsPending" DROP CONSTRAINT "AddsPending_ChangelistID_fkey"; publicpostgresfalse200714921499V260618366Changelists_ViewID_fkey FK CONSTRAINTALTER TABLE ONLY "Changelists" ADD CONSTRAINT "Changelists_ViewID_fkey" FOREIGN KEY ("ViewID") REFERENCES "Views"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."Changelists" DROP CONSTRAINT "Changelists_ViewID_fkey"; publicpostgresfalse201314941492Y260618371"CheckoutsPending_ChangelistID_fkey FK CONSTRAINTALTER TABLE ONLY "CheckoutsPending" ADD CONSTRAINT "CheckoutsPending_ChangelistID_fkey" FOREIGN KEY ("ChangelistID") REFERENCES "Changelists"("ID") ON DELETE CASCADE; aALTER TABLE ONLY public."CheckoutsPending" DROP CONSTRAINT "CheckoutsPending_ChangelistID_fkey"; publicpostgresfalse200714921503Z260618376CheckoutsPending_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "CheckoutsPending" ADD CONSTRAINT "CheckoutsPending_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "VersionedObjects"("ID") ON DELETE CASCADE; ]ALTER TABLE ONLY public."CheckoutsPending" DROP CONSTRAINT "CheckoutsPending_ObjectID_fkey"; publicpostgresfalse202014961503]260618381ExternalIDPending_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalIDPending" ADD CONSTRAINT "ExternalIDPending_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "AddsPending"("ObjectID") ON DELETE CASCADE; _ALTER TABLE ONLY public."ExternalIDPending" DROP CONSTRAINT "ExternalIDPending_ObjectID_fkey"; publicpostgresfalse202614991505^260618386ExternalIDPending_TypeID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalIDPending" ADD CONSTRAINT "ExternalIDPending_TypeID_fkey" FOREIGN KEY ("TypeID") REFERENCES "TypeToTable"("TypeID"); ]ALTER TABLE ONLY public."ExternalIDPending" DROP CONSTRAINT "ExternalIDPending_TypeID_fkey"; publicpostgresfalse202414981505_260618391ExternalIDPool_TypeID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalIDPool" ADD CONSTRAINT "ExternalIDPool_TypeID_fkey" FOREIGN KEY ("TypeID") REFERENCES "TypeToTable"("TypeID"); WALTER TABLE ONLY public."ExternalIDPool" DROP CONSTRAINT "ExternalIDPool_TypeID_fkey"; publicpostgresfalse202414981506[260618396ExternalID_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalID" ADD CONSTRAINT "ExternalID_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "VersionedObjects"("ID"); QALTER TABLE ONLY public."ExternalID" DROP CONSTRAINT "ExternalID_ObjectID_fkey"; publicpostgresfalse202014961504\260618401ExternalID_TypeID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalID" ADD CONSTRAINT "ExternalID_TypeID_fkey" FOREIGN KEY ("TypeID") REFERENCES "TypeToTable"("TypeID"); OALTER TABLE ONLY public."ExternalID" DROP CONSTRAINT "ExternalID_TypeID_fkey"; publicpostgresfalse202414981504`260618406FK_GlobalContext_Versions FK CONSTRAINTALTER TABLE ONLY "GlobalContext" ADD CONSTRAINT "FK_GlobalContext_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."GlobalContext" DROP CONSTRAINT "FK_GlobalContext_Versions"; publicpostgresfalse205815161507a260618411FK_LocalUsers_Versions FK CONSTRAINTALTER TABLE ONLY "LocalUsers" ADD CONSTRAINT "FK_LocalUsers_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; OALTER TABLE ONLY public."LocalUsers" DROP CONSTRAINT "FK_LocalUsers_Versions"; publicpostgresfalse205815161509c260618416FK_RemoteUsers_Versions FK CONSTRAINTALTER TABLE ONLY "RemoteUsers" ADD CONSTRAINT "FK_RemoteUsers_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."RemoteUsers" DROP CONSTRAINT "FK_RemoteUsers_Versions"; publicpostgresfalse205815161512d260618421FK_SecurityAccounts_Versions FK CONSTRAINTALTER TABLE ONLY "SecurityAccounts" ADD CONSTRAINT "FK_SecurityAccounts_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."SecurityAccounts" DROP CONSTRAINT "FK_SecurityAccounts_Versions"; publicpostgresfalse205815161513e260618426FK_UserRoles_Versions FK CONSTRAINTALTER TABLE ONLY "UserRoles" ADD CONSTRAINT "FK_UserRoles_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; MALTER TABLE ONLY public."UserRoles" DROP CONSTRAINT "FK_UserRoles_Versions"; publicpostgresfalse205815161515260618642FK_WCG_ContentGateway_Versions FK CONSTRAINTALTER TABLE ONLY "WCG_ContentGateway" ADD CONSTRAINT "FK_WCG_ContentGateway_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; _ALTER TABLE ONLY public."WCG_ContentGateway" DROP CONSTRAINT "FK_WCG_ContentGateway_Versions"; publicpostgresfalse205815161589260618701FK_WCG_ExceptionUrls_Versions FK CONSTRAINTALTER TABLE ONLY "WCG_ExceptionUrls" ADD CONSTRAINT "FK_WCG_ExceptionUrls_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; ]ALTER TABLE ONLY public."WCG_ExceptionUrls" DROP CONSTRAINT "FK_WCG_ExceptionUrls_Versions"; publicpostgresfalse205815161594260618716FK_WCG_Setting_Versions FK CONSTRAINTALTER TABLE ONLY "WCG_Setting" ADD CONSTRAINT "FK_WCG_Setting_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."WCG_Setting" DROP CONSTRAINT "FK_WCG_Setting_Versions"; publicpostgresfalse205815161596260618685FK_WCG_Settings_Versions FK CONSTRAINTALTER TABLE ONLY "WCG_Settings" ADD CONSTRAINT "FK_WCG_Settings_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WCG_Settings" DROP CONSTRAINT "FK_WCG_Settings_Versions"; publicpostgresfalse205815161592g260618431FK_WSE_Categories_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Categories" ADD CONSTRAINT "FK_WSE_Categories_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; WALTER TABLE ONLY public."WSE_Categories" DROP CONSTRAINT "FK_WSE_Categories_Versions"; publicpostgresfalse205815161524h260618436$FK_WSE_CategoryDispositions_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_CategoryDispositions" ADD CONSTRAINT "FK_WSE_CategoryDispositions_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; kALTER TABLE ONLY public."WSE_CategoryDispositions" DROP CONSTRAINT "FK_WSE_CategoryDispositions_Versions"; publicpostgresfalse205815161526i260618441%FK_WSE_CategoryNotifications_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_CategoryNotifications" ADD CONSTRAINT "FK_WSE_CategoryNotifications_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; mALTER TABLE ONLY public."WSE_CategoryNotifications" DROP CONSTRAINT "FK_WSE_CategoryNotifications_Versions"; publicpostgresfalse205815161528j260618446$FK_WSE_CategorySetTemplates_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_CategorySetTemplates" ADD CONSTRAINT "FK_WSE_CategorySetTemplates_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; kALTER TABLE ONLY public."WSE_CategorySetTemplates" DROP CONSTRAINT "FK_WSE_CategorySetTemplates_Versions"; publicpostgresfalse205815161530k260618451FK_WSE_CategorySets_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_CategorySets" ADD CONSTRAINT "FK_WSE_CategorySets_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."WSE_CategorySets" DROP CONSTRAINT "FK_WSE_CategorySets_Versions"; publicpostgresfalse205815161532l260618456FK_WSE_ClientRules_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ClientRules" ADD CONSTRAINT "FK_WSE_ClientRules_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; YALTER TABLE ONLY public."WSE_ClientRules" DROP CONSTRAINT "FK_WSE_ClientRules_Versions"; publicpostgresfalse205815161534m260618461 FK_WSE_DirectoryObjects_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_DirectoryObjects" ADD CONSTRAINT "FK_WSE_DirectoryObjects_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; cALTER TABLE ONLY public."WSE_DirectoryObjects" DROP CONSTRAINT "FK_WSE_DirectoryObjects_Versions"; publicpostgresfalse205815161536n260618466!FK_WSE_FileExtensionSets_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_FileExtensionSets" ADD CONSTRAINT "FK_WSE_FileExtensionSets_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; eALTER TABLE ONLY public."WSE_FileExtensionSets" DROP CONSTRAINT "FK_WSE_FileExtensionSets_Versions"; publicpostgresfalse205815161538o260618471FK_WSE_FileTypes_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_FileTypes" ADD CONSTRAINT "FK_WSE_FileTypes_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_FileTypes" DROP CONSTRAINT "FK_WSE_FileTypes_Versions"; publicpostgresfalse205815161540p260618476FK_WSE_Keywords_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Keywords" ADD CONSTRAINT "FK_WSE_Keywords_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_Keywords" DROP CONSTRAINT "FK_WSE_Keywords_Versions"; publicpostgresfalse205815161542q260618481#FK_WSE_LoggingDispositions_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_LoggingDispositions" ADD CONSTRAINT "FK_WSE_LoggingDispositions_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; iALTER TABLE ONLY public."WSE_LoggingDispositions" DROP CONSTRAINT "FK_WSE_LoggingDispositions_Versions"; publicpostgresfalse205815161544r260618486FK_WSE_Networks_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Networks" ADD CONSTRAINT "FK_WSE_Networks_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_Networks" DROP CONSTRAINT "FK_WSE_Networks_Versions"; publicpostgresfalse205815161546s260618491FK_WSE_Policies_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Policies" ADD CONSTRAINT "FK_WSE_Policies_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_Policies" DROP CONSTRAINT "FK_WSE_Policies_Versions"; publicpostgresfalse205815161548t260618496FK_WSE_PolicyPeriods_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_PolicyPeriods" ADD CONSTRAINT "FK_WSE_PolicyPeriods_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; ]ALTER TABLE ONLY public."WSE_PolicyPeriods" DROP CONSTRAINT "FK_WSE_PolicyPeriods_Versions"; publicpostgresfalse205815161550u260618501 FK_WSE_ProtocolCriteria_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolCriteria" ADD CONSTRAINT "FK_WSE_ProtocolCriteria_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; cALTER TABLE ONLY public."WSE_ProtocolCriteria" DROP CONSTRAINT "FK_WSE_ProtocolCriteria_Versions"; publicpostgresfalse205815161552v260618506$FK_WSE_ProtocolDispositions_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolDispositions" ADD CONSTRAINT "FK_WSE_ProtocolDispositions_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; kALTER TABLE ONLY public."WSE_ProtocolDispositions" DROP CONSTRAINT "FK_WSE_ProtocolDispositions_Versions"; publicpostgresfalse205815161554w260618511FK_WSE_ProtocolGroups_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolGroups" ADD CONSTRAINT "FK_WSE_ProtocolGroups_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; _ALTER TABLE ONLY public."WSE_ProtocolGroups" DROP CONSTRAINT "FK_WSE_ProtocolGroups_Versions"; publicpostgresfalse205815161556x260618516%FK_WSE_ProtocolNotifications_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolNotifications" ADD CONSTRAINT "FK_WSE_ProtocolNotifications_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; mALTER TABLE ONLY public."WSE_ProtocolNotifications" DROP CONSTRAINT "FK_WSE_ProtocolNotifications_Versions"; publicpostgresfalse205815161558y260618521$FK_WSE_ProtocolSetTemplates_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolSetTemplates" ADD CONSTRAINT "FK_WSE_ProtocolSetTemplates_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; kALTER TABLE ONLY public."WSE_ProtocolSetTemplates" DROP CONSTRAINT "FK_WSE_ProtocolSetTemplates_Versions"; publicpostgresfalse205815161560z260618526FK_WSE_ProtocolSets_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolSets" ADD CONSTRAINT "FK_WSE_ProtocolSets_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."WSE_ProtocolSets" DROP CONSTRAINT "FK_WSE_ProtocolSets_Versions"; publicpostgresfalse205815161562{260618531FK_WSE_Protocols_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Protocols" ADD CONSTRAINT "FK_WSE_Protocols_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_Protocols" DROP CONSTRAINT "FK_WSE_Protocols_Versions"; publicpostgresfalse205815161564|260618536!FK_WSE_RecategorizedUrls_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_RecategorizedUrls" ADD CONSTRAINT "FK_WSE_RecategorizedUrls_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; eALTER TABLE ONLY public."WSE_RecategorizedUrls" DROP CONSTRAINT "FK_WSE_RecategorizedUrls_Versions"; publicpostgresfalse205815161566}260618541FK_WSE_RiskClasses_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_RiskClasses" ADD CONSTRAINT "FK_WSE_RiskClasses_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; YALTER TABLE ONLY public."WSE_RiskClasses" DROP CONSTRAINT "FK_WSE_RiskClasses_Versions"; publicpostgresfalse205815161568~260618546FK_WSE_RoleLocks_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_RoleLocks" ADD CONSTRAINT "FK_WSE_RoleLocks_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_RoleLocks" DROP CONSTRAINT "FK_WSE_RoleLocks_Versions"; publicpostgresfalse205815161570260618551FK_WSE_Roles_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Roles" ADD CONSTRAINT "FK_WSE_Roles_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; MALTER TABLE ONLY public."WSE_Roles" DROP CONSTRAINT "FK_WSE_Roles_Versions"; publicpostgresfalse205815161572260618556FK_WSE_Setting_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Setting" ADD CONSTRAINT "FK_WSE_Setting_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."WSE_Setting" DROP CONSTRAINT "FK_WSE_Setting_Versions"; publicpostgresfalse205815161574260618561FK_WSE_Settings_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Settings" ADD CONSTRAINT "FK_WSE_Settings_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_Settings" DROP CONSTRAINT "FK_WSE_Settings_Versions"; publicpostgresfalse205815161576260618566FK_WSE_SysAlerts_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_SysAlerts" ADD CONSTRAINT "FK_WSE_SysAlerts_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_SysAlerts" DROP CONSTRAINT "FK_WSE_SysAlerts_Versions"; publicpostgresfalse205815161577260618571FK_WSE_SysEvents_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_SysEvents" ADD CONSTRAINT "FK_WSE_SysEvents_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_SysEvents" DROP CONSTRAINT "FK_WSE_SysEvents_Versions"; publicpostgresfalse205815161579260618576FK_WSE_UnfilteredUrls_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_UnfilteredUrls" ADD CONSTRAINT "FK_WSE_UnfilteredUrls_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; _ALTER TABLE ONLY public."WSE_UnfilteredUrls" DROP CONSTRAINT "FK_WSE_UnfilteredUrls_Versions"; publicpostgresfalse205815161581260618591FK_WSE_WebFiltering_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_WebFiltering" ADD CONSTRAINT "FK_WSE_WebFiltering_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."WSE_WebFiltering" DROP CONSTRAINT "FK_WSE_WebFiltering_Versions"; publicpostgresfalse205815161583260618596FK_WSE_YesLists_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_YesLists" ADD CONSTRAINT "FK_WSE_YesLists_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_YesLists" DROP CONSTRAINT "FK_WSE_YesLists_Versions"; publicpostgresfalse205815161585b260618601#ReferencesPending_ChangelistID_fkey FK CONSTRAINTALTER TABLE ONLY "ReferencesPending" ADD CONSTRAINT "ReferencesPending_ChangelistID_fkey" FOREIGN KEY ("ChangelistID") REFERENCES "Changelists"("ID") ON DELETE CASCADE; cALTER TABLE ONLY public."ReferencesPending" DROP CONSTRAINT "ReferencesPending_ChangelistID_fkey"; publicpostgresfalse200714921511f260618606Versions_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "Versions" ADD CONSTRAINT "Versions_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "VersionedObjects"("ID") ON DELETE CASCADE; MALTER TABLE ONLY public."Versions" DROP CONSTRAINT "Versions_ObjectID_fkey"; publicpostgresfalse202014961516 1 15 -31 -31 1 0 1073741824 0 3 0 1073741824 0 2 16 -31 -31 4 16 -31 -31 5 16 -31 -31 7 16 1073741824 1073741824 8 16 -31 -31 8 17 2 0 8 19 8 0 8 18 4 0 2 18 1073741824 1073741824 5 18 1073741824 1073741824 7 18 1073741824 1073741824 1510 0 1073741824 0 6 16 -31 -31 \. \. 175 2011-09-26 08:27:12-07 WebsenseAdministrator 176 2011-09-26 08:31:17-07 WebsenseAdministrator 177 2011-09-26 08:35:46-07 WebsenseAdministrator 178 2011-09-26 08:49:36-07 WebsenseAdministrator 179 2011-09-26 11:29:21-07 WebsenseAdministrator 180 2011-09-26 12:00:22-07 WebsenseAdministrator \. \. \.  54 f 320 1 54 f 321 10 54 f 322 11 54 f 323 110 54 f 324 116 54 f 325 12 54 f 326 122 54 f 327 13 54 f 328 14 54 f 329 146 54 f 330 15 54 f 331 16 54 f 332 17 54 f 333 18 54 f 334 19 54 f 335 191 54 f 336 2 54 f 337 20 54 f 338 21 54 f 339 22 54 f 340 23 54 f 341 24 54 f 342 25 54 f 343 26 54 f 344 27 54 f 345 3 54 f 346 4 54 f 347 5 54 f 348 6 54 f 349 64 54 f 350 7 54 f 351 8 54 f 352 9 54 f 353 91 54 f 354 100 54 f 355 101 54 f 356 102 54 f 357 103 54 f 358 107 54 f 359 108 54 f 360 109 54 f 361 111 54 f 362 112 54 f 363 113 54 f 364 114 54 f 365 115 54 f 366 117 54 f 367 118 54 f 368 121 54 f 369 123 54 f 370 124 54 f 371 125 54 f 372 138 54 f 373 147 54 f 374 148 54 f 375 149 54 f 376 150 54 f 377 151 54 f 378 152 54 f 379 153 54 f 380 156 54 f 381 192 54 f 382 193 54 f 383 194 54 f 384 195 54 f 385 196 54 f 386 28 54 f 387 29 54 f 388 65 54 f 389 66 54 f 390 67 54 f 391 68 54 f 392 69 54 f 393 70 54 f 394 72 54 f 395 73 54 f 396 74 54 f 397 75 54 f 398 76 54 f 399 78 54 f 400 79 54 f 401 80 54 f 402 81 54 f 403 82 54 f 404 83 54 f 405 84 54 f 406 85 54 f 407 86 54 f 408 87 54 f 409 88 54 f 410 89 54 f 411 90 54 f 412 92 54 f 413 93 54 f 414 94 54 f 415 95 54 f 416 96 54 f 417 97 54 f 418 98 54 f 419 99 55 f 23 101 55 f 26 105 55 f 29 109 55 f 31 115 55 f 34 116 55 f 36 119 55 f 38 124 55 f 40 125 55 f 42 126 55 f 44 127 55 f 46 132 55 f 48 133 55 f 50 2 55 f 53 21 55 f 57 3 55 f 60 4 55 f 65 49 55 f 69 5 55 f 73 66 55 f 76 72 55 f 79 74 55 f 81 77 55 f 83 79 55 f 86 84 55 f 88 87 55 f 91 90 55 f 93 98 55 f 95 99 55 f 98 1 55 f 100 11 55 f 103 102 55 f 105 110 55 f 108 121 55 f 111 128 55 f 113 131 55 f 116 134 55 f 119 135 55 f 121 137 55 f 124 17 55 f 126 32 55 f 128 33 55 f 131 35 55 f 133 36 55 f 135 37 55 f 138 38 55 f 140 39 55 f 142 40 55 f 144 81 55 f 147 85 55 f 151 106 55 f 153 107 55 f 155 108 55 f 159 65 55 f 163 68 55 f 165 69 55 f 168 71 55 f 170 80 55 f 173 88 55 f 175 91 55 f 179 103 55 f 181 120 55 f 183 129 55 f 185 130 55 f 187 136 55 f 190 46 55 f 192 6 55 f 196 67 55 f 198 7 55 f 202 70 55 f 205 75 55 f 208 76 55 f 211 82 55 f 214 86 55 f 218 10 55 f 221 100 55 f 224 104 55 f 227 111 55 f 229 112 55 f 231 113 55 f 233 114 55 f 235 117 55 f 237 118 55 f 239 122 55 f 241 123 55 f 243 42 55 f 245 43 55 f 247 48 55 f 252 52 55 f 254 53 55 f 258 58 55 f 260 62 55 f 262 64 55 f 264 73 55 f 267 83 55 f 269 89 55 f 271 9 55 f 275 12 55 f 277 13 55 f 279 41 55 f 282 14 55 f 284 15 55 f 286 23 55 f 288 25 55 f 290 47 55 f 292 78 55 f 295 18 55 f 297 26 55 f 299 27 55 f 301 28 55 f 303 29 55 f 305 30 55 f 307 31 55 f 309 34 55 f 312 19 55 f 315 20 55 f 542 54 55 f 548 55 55 f 554 56 55 f 559 138 55 f 561 139 55 f 563 140 55 f 565 141 55 f 567 142 55 f 569 143 55 f 572 144 55 f 574 145 58 f 591 1 58 f 593 2 58 f 595 3 58 f 597 4 55 f 607 146 55 f 609 147 55 f 612 148 55 f 615 149 55 f 617 150 55 f 619 151 55 f 621 152 55 f 624 153 55 f 627 154 55 f 675 155 55 f 677 156 55 f 682 157 54 f 686 200 55 f 718 158 55 f 729 159 55 f 744 160 55 f 759 161 55 f 787 162 55 f 810 163 55 f 814 164 55 f 829 165 55 f 833 166 55 f 864 167 55 f 881 168 55 f 894 169 54 f 913 202 54 f 914 201 54 f 915 203 54 f 916 204 55 f 980 170 55 f 1016 171 55 f 1020 172 55 f 1022 173 55 f 1031 174 55 f 1176 175 55 f 1220 176 55 f 1310 177 55 f 1356 178 54 f 1382 208 54 f 1383 209 54 f 1384 210 54 f 1385 211 54 f 1386 212 \. \. +54 t 1899 65536 2009-05-18 07:25:56.185-07 )58 t -32767 0 2009-05-18 07:25:56.185-07 )55 t -32767 0 2009-05-18 07:25:56.185-07 &55 f 92 98 2009-05-18 07:25:56.185-07 &55 f 44 46 2009-05-18 07:25:56.185-07 &55 f 50 52 2009-05-18 07:25:56.185-07 &55 f 59 62 2009-05-18 07:25:56.185-07 &55 f 63 64 2009-05-18 07:25:56.185-07 $55 f 8 9 2009-05-18 07:25:56.185-07 &55 f 16 17 2009-05-18 07:25:56.185-07 &55 f 22 23 2009-05-18 07:25:56.185-07 &55 f 24 25 2009-05-18 07:25:56.185-07 (54 f 104 107 2009-05-18 07:25:56.185-07 (54 f 119 121 2009-05-18 07:25:56.185-07 (54 f 126 138 2009-05-18 07:25:56.185-07 (54 f 139 146 2009-05-18 07:25:56.185-07 (54 f 154 156 2009-05-18 07:25:56.185-07 (54 f 157 191 2009-05-18 07:25:56.185-07 &54 f 30 64 2009-05-18 07:25:56.185-07 &54 f 71 72 2009-05-18 07:25:56.185-07 &54 f 77 78 2009-05-18 07:25:56.185-07 &55 f 57 58 2009-05-18 07:25:56.185-07 (58 f 5 32768 2009-05-18 07:25:56.185-07 (54 f 197 200 2009-05-18 07:25:56.185-07 *55 f 179 32768 2009-05-18 07:25:56.185-07 (54 f 205 208 2009-05-18 07:25:56.185-07 )54 f 213 1899 2009-05-18 07:25:56.185-07 \.  1 2 51,3 2024 2 51,3,1024,1510 \. $LDAPAdminName \N \N \N \N \N \N \N LLDAPAdminPassword \N \N \N \N \\304\\200\\006\\243\\022\\211\\306= \N \N \N "LDAPContext \N \N \N \N \N \N \N $LDAPFeatures \N 0 \N \N \N \N \N \N !LDAPIDAttr \N \N \N \N \N \N \N (LDAPMemAttrFilter \N \N \N \N \N \N \N LDAPUrl \N \N \N \N \N \N \N %LDAPUserFilter \N \N \N \N \N \N \N 'RemoteAuthType \N \N \N NT \N \N \N \N )WF_DDB_Version \N 3985 \N \N \N \N \N \N #Version \N \N \N 7.1.0 \N \N \N \N \. 20 Websense \\371\\360\\274\\024\\262\\274\\334\\030U\\030\\253\\256\\230\\313p\\030\\322|\\333L#T\\324<\\354g\\252c\\316\\372!\\011\\367}\\354\\346}\\346\\334V\\203}\\270\\262g\\350\\322o\\035\\345\\272y\\212\\340\\352\\2424\\242\\341\\311\\253 7\\332\\203\\025\\222\\001\\351\\300W\\220\\244\\367Rn\\330p{AA\\362(\\231l\\206\\037N\\207 \\236\\362C\\300NC\\200\\321\\031\\240\\265\\002hH\\010\\270wY\\345\\243\\032c\\005\\253n\\032\\317\\270F\\301+\\323\\237\\313e+\\022B\\271HBJ\\333\\347z\\305\\333+B>\\373\\244\\004f\\353 f -1 \. 20 GlobalContext f 21 SecurityAccounts t 22 UserRoles f User Role 23 LocalUsers f Internal User 24 RemoteUsers f External User 2 Views f 54 WSE_Categories f Category .63 WSE_CategoryDispositions f Category Action 579 WSE_CategoryNotifications f Category Notification &56 WSE_CategorySets f Category Filter 759 WSE_CategorySetTemplates f Category Filter Template !74 WSE_ClientRules t Client Rule +68 WSE_DirectoryObjects t Directory Object .73 WSE_FileExtensionSets f File Extension Set 58 WSE_FileTypes f File Type 70 WSE_Keywords f Keyword 67 WSE_Networks t Network 53 WSE_Policies f Policy %66 WSE_PolicyPeriods f Policy Period .69 WSE_ProtocolCriteria f Protocol Identifier .65 WSE_ProtocolDispositions f Protocol Action '64 WSE_ProtocolGroups f Protocol Group 580 WSE_ProtocolNotifications f Protocol Notification &57 WSE_ProtocolSets f Protocol Filter 760 WSE_ProtocolSetTemplates f Protocol Filter Template 55 WSE_Protocols f Protocol -71 WSE_RecategorizedUrls f Recategorized URL 61 WSE_RiskClasses f Risk Class 52 WSE_Roles t Role 84 WSE_RoleLocks t Role Locks 78 WSE_Setting f Settings 77 WSE_Settings t 75 WSE_SysAlerts t Alert 76 WSE_SysEvents t Event '72 WSE_UnfilteredUrls f Unfiltered URL 51 WSE_WebFiltering t (62 WSE_YesLists f Limited Access Filter +81 WSE_LoggingDispositions f Logged Action 1024 WCG_ContentGateway t ,1025 WCG_Settings t Real-Time Scan Settings 31026 WCG_ExceptionUrls f Real-Time Scan Exceptions 1027 WCG_Setting t \. :15 en-US,Websense Components en-US,Websense Components -1 <16 en-US,Super Administrators en-US,Super Administrators -1 M17 en-US,Super Administrators_PolicyUI en-US,Super Administrators_PolicyUI 0 S18 en-US,Super Administrators_ReportingUI en-US,Super Administrators_ReportingUI 2 M19 en-US,Super Administrators_GlobalUI en-US,Super Administrators_GlobalUI 0 \.  0 0 {} \N \N 1 20 {0} \N \N 2 21 {0,1} \N \N 3 51 {0,1} \N \N 4 75 {0,1,3} \N \N 5 77 {0,1,3} \N \N 9599 78 {0,1,3,5} \N Manager/Settings/HideExpressTutorial <600 78 {0,1,3,5} \N Manager/Settings/CollapseTrainingWheels 606 74 {0,1,3,7,8,604} \N 2604 67 {0,1,3,7,8} \N 192.168.10.1-192.168.10.199 11 84 {0,1,3,7} \N \N 1601 53 {0,1,3,7,8} \N en-US,Couri Default Policy 603 66 {0,1,3,7,8,601} \N 14 84 {0,1,3,7,8} \N \N 607 55 {0,1,3,7} \N zh-CN,netFM Messenger,zh-TW,netFM Messenger,de-DE,netFM Messenger,en-US,netFM Messenger,fr-FR,netFM Messenger,it-IT,netFM Messenger,ja-JP,netFM Messenger,ko-KR,netFM Messenger,pt-BR,netFM Messenger,es-ES,netFM Messenger 609 55 {0,1,3,7} \N zh-CN,Mail.Ru,zh-TW,Mail.Ru,de-DE,Mail.Ru,en-US,Mail.Ru,fr-FR,Mail.Ru,it-IT,Mail.Ru,ja-JP,Mail.Ru,ko-KR,Mail.Ru,pt-BR,Mail.Ru,es-ES,Mail.Ru 612 55 {0,1,3,7} \N zh-CN,Pandora,zh-TW,Pandora,de-DE,Pandora,en-US,Pandora,fr-FR,Pandora,it-IT,Pandora,ja-JP,Pandora,ko-KR,Pandora,pt-BR,Pandora,es-ES,Pandora 615 55 {0,1,3,7} \N zh-CN,Joost,zh-TW,Joost,de-DE,Joost,en-US,Joost,fr-FR,Joost,it-IT,Joost,ja-JP,Joost,ko-KR,Joost,pt-BR,Joost,es-ES,Joost 617 55 {0,1,3,7} \N zh-CN,Voxox,zh-TW,Voxox,de-DE,Voxox,en-US,Voxox,fr-FR,Voxox,it-IT,Voxox,ja-JP,Voxox,ko-KR,Voxox,pt-BR,Voxox,es-ES,Voxox 619 55 {0,1,3,7} \N zh-CN,Octoshape,zh-TW,Octoshape,de-DE,Octoshape,en-US,Octoshape,fr-FR,Octoshape,it-IT,Octoshape,ja-JP,Octoshape,ko-KR,Octoshape,pt-BR,Octoshape,es-ES,Octoshape 621 55 {0,1,3,7} \N zh-CN,Instant Housecall,zh-TW,Instant Housecall,de-DE,Instant Housecall,en-US,Instant Housecall,fr-FR,Instant Housecall,it-IT,Instant Housecall,ja-JP,Instant Housecall,ko-KR,Instant Housecall,pt-BR,Instant Housecall,es-ES,Instant Housecall "624 55 {0,1,3,7} \N zh-CN,NateOn Remote Access,zh-TW,NateOn Remote Access,de-DE,NateOn Remote Access,en-US,NateOn Remote Access,fr-FR,NateOn Remote Access,it-IT,NateOn Remote Access,ja-JP,NateOn Remote Access,ko-KR,NateOn Remote Access,pt-BR,NateOn Remote Access,es-ES,NateOn Remote Access 627 55 {0,1,3,7} \N zh-CN,YouSendIt,zh-TW,YouSendIt,de-DE,YouSendIt,en-US,YouSendIt,fr-FR,YouSendIt,it-IT,YouSendIt,ja-JP,YouSendIt,ko-KR,YouSendIt,pt-BR,YouSendIt,es-ES,YouSendIt 608 69 {0,1,3,7,607} \N 610 69 {0,1,3,7,609} \N 611 69 {0,1,3,7,609} \N 613 69 {0,1,3,7,612} \N 614 69 {0,1,3,7,612} \N 616 69 {0,1,3,7,615} \N 618 69 {0,1,3,7,617} \N 620 69 {0,1,3,7,619} \N 622 69 {0,1,3,7,621} \N 623 69 {0,1,3,7,621} \N 625 69 {0,1,3,7,624} \N 626 69 {0,1,3,7,624} \N 628 69 {0,1,3,7,627} \N 629 69 {0,1,3,7,627} \N 630 69 {0,1,3,7,57} \N 631 69 {0,1,3,7,65} \N 632 69 {0,1,3,7,83} \N 633 69 {0,1,3,7,254} \N 634 69 {0,1,3,7,254} \N 635 69 {0,1,3,7,269} \N 636 69 {0,1,3,7,572} \N 637 69 {0,1,3,7,572} \N 638 69 {0,1,3,7,572} \N 639 69 {0,1,3,7,572} \N 640 69 {0,1,3,7,135} \N 641 69 {0,1,3,7,138} \N 642 69 {0,1,3,7,138} \N 643 69 {0,1,3,7,144} \N 644 69 {0,1,3,7,542} \N 645 69 {0,1,3,7,542} \N 646 69 {0,1,3,7,554} \N 647 69 {0,1,3,7,554} \N 648 69 {0,1,3,7,175} \N 649 69 {0,1,3,7,175} \N 380 54 {0,1,3,7} \N zh-CN,文件下载服务器,zh-TW,檔案下載伺服器,de-DE,Server für das Herunterladen von Dateien,en-US,File Download Servers,fr-FR,Serveurs de téléchargement de fichiers,it-IT,Server per il download di file,ja-JP,ファイル・ダウンロード・サーバー,ko-KR,파일 다운로드 서버,pt-BR,Servidores de download de arquivos,es-ES,Servidor de descarga de archivos 20 23 {0,1,2} \N Websense 660 66 {0,1,3,7,8,601} \N #659 65 {0,1,3,7,8} \N en-US,Permit /658 65 {0,1,3,7,8} \N en-US,Block(Log or lock) #657 63 {0,1,3,7,8} \N en-US,Permit "656 63 {0,1,3,7,8} \N en-US,Block 6 1025 {0,1,1510} \N \N C650 68 {0,1,3,7,8} \N 1:_:WinNT://COURI/Monitoring Exemption Group 6661 68 {0,1,3,7,8} \N 0:_:WinNT://COURI/Administrator 5653 68 {0,1,3,7,8} \N 1:_:WinNT://COURI/Domain Users 652 74 {0,1,3,7,8,650} \N 663 74 {0,1,3,7,8,661} \N 655 74 {0,1,3,7,8,653} \N 690 69 {0,1,3,7,269} \N 664 66 {0,1,3,7,8,601} \N 665 66 {0,1,3,7,8,601} \N 666 66 {0,1,3,7,8,601} \N 691 69 {0,1,3,7,269} \N 667 69 {0,1,3,7,93} \N 668 69 {0,1,3,7,175} \N 692 69 {0,1,3,7,83} \N 693 69 {0,1,3,7,269} \N 440 66 {0,1,3,7,8,439} \N 442 66 {0,1,3,7,8,441} \N 443 66 {0,1,3,7,8,441} \N 444 66 {0,1,3,7,8,441} \N 445 66 {0,1,3,7,8,441} \N 447 66 {0,1,3,7,8,446} \N 24 69 {0,1,3,7,23} \N 25 69 {0,1,3,7,23} \N 27 69 {0,1,3,7,26} \N 28 69 {0,1,3,7,26} \N 30 69 {0,1,3,7,29} \N 32 69 {0,1,3,7,31} \N 33 69 {0,1,3,7,31} \N 35 69 {0,1,3,7,34} \N 37 69 {0,1,3,7,36} \N 39 69 {0,1,3,7,38} \N 41 69 {0,1,3,7,40} \N 43 69 {0,1,3,7,42} \N 45 69 {0,1,3,7,44} \N 47 69 {0,1,3,7,46} \N 49 69 {0,1,3,7,48} \N 51 69 {0,1,3,7,50} \N 52 69 {0,1,3,7,50} \N 54 69 {0,1,3,7,53} \N 55 69 {0,1,3,7,53} \N 56 69 {0,1,3,7,53} \N 58 69 {0,1,3,7,57} \N 59 69 {0,1,3,7,57} \N 61 69 {0,1,3,7,60} \N 62 69 {0,1,3,7,60} \N 63 69 {0,1,3,7,60} \N 64 69 {0,1,3,7,60} \N 66 69 {0,1,3,7,65} \N 67 69 {0,1,3,7,65} \N 68 69 {0,1,3,7,65} \N 70 69 {0,1,3,7,69} \N 71 69 {0,1,3,7,69} \N 72 69 {0,1,3,7,69} \N 74 69 {0,1,3,7,73} \N 75 69 {0,1,3,7,73} \N 77 69 {0,1,3,7,76} \N 78 69 {0,1,3,7,76} \N 80 69 {0,1,3,7,79} \N 82 69 {0,1,3,7,81} \N 84 69 {0,1,3,7,83} \N 85 69 {0,1,3,7,83} \N 87 69 {0,1,3,7,86} \N 89 69 {0,1,3,7,88} \N 90 69 {0,1,3,7,88} \N 92 69 {0,1,3,7,91} \N 94 69 {0,1,3,7,93} \N 96 69 {0,1,3,7,95} \N 99 69 {0,1,3,7,98} \N 101 69 {0,1,3,7,100} \N 104 69 {0,1,3,7,103} \N 106 69 {0,1,3,7,105} \N 107 69 {0,1,3,7,105} \N 109 69 {0,1,3,7,108} \N 110 69 {0,1,3,7,108} \N 112 69 {0,1,3,7,111} \N 114 69 {0,1,3,7,113} \N 115 69 {0,1,3,7,113} \N 117 69 {0,1,3,7,116} \N 118 69 {0,1,3,7,116} \N 120 69 {0,1,3,7,119} \N 122 69 {0,1,3,7,121} \N 123 69 {0,1,3,7,121} \N 125 69 {0,1,3,7,124} \N 127 69 {0,1,3,7,126} \N 129 69 {0,1,3,7,128} \N 130 69 {0,1,3,7,128} \N 132 69 {0,1,3,7,131} \N 134 69 {0,1,3,7,133} \N 136 69 {0,1,3,7,135} \N 137 69 {0,1,3,7,135} \N 139 69 {0,1,3,7,138} \N 141 69 {0,1,3,7,140} \N 143 69 {0,1,3,7,142} \N 145 69 {0,1,3,7,144} \N 146 69 {0,1,3,7,144} \N 148 69 {0,1,3,7,147} \N 149 69 {0,1,3,7,147} \N 152 69 {0,1,3,7,151} \N 154 69 {0,1,3,7,153} \N 156 69 {0,1,3,7,155} \N 157 69 {0,1,3,7,155} \N 158 69 {0,1,3,7,155} \N 160 69 {0,1,3,7,159} \N 161 69 {0,1,3,7,159} \N 162 69 {0,1,3,7,159} \N 164 69 {0,1,3,7,163} \N 166 69 {0,1,3,7,165} \N 167 69 {0,1,3,7,165} \N 169 69 {0,1,3,7,168} \N 171 69 {0,1,3,7,170} \N 172 69 {0,1,3,7,170} \N 174 69 {0,1,3,7,173} \N 176 69 {0,1,3,7,175} \N 177 69 {0,1,3,7,175} \N 180 69 {0,1,3,7,179} \N 182 69 {0,1,3,7,181} \N 184 69 {0,1,3,7,183} \N 186 69 {0,1,3,7,185} \N 188 69 {0,1,3,7,187} \N 189 69 {0,1,3,7,187} \N 191 69 {0,1,3,7,190} \N 193 69 {0,1,3,7,192} \N 194 69 {0,1,3,7,192} \N 195 69 {0,1,3,7,192} \N 197 69 {0,1,3,7,196} \N 199 69 {0,1,3,7,198} \N 200 69 {0,1,3,7,198} \N 201 69 {0,1,3,7,198} \N 203 69 {0,1,3,7,202} \N 204 69 {0,1,3,7,202} \N 206 69 {0,1,3,7,205} \N 207 69 {0,1,3,7,205} \N 209 69 {0,1,3,7,208} \N 210 69 {0,1,3,7,208} \N 212 69 {0,1,3,7,211} \N 213 69 {0,1,3,7,211} \N 215 69 {0,1,3,7,214} \N 216 69 {0,1,3,7,214} \N 219 69 {0,1,3,7,218} \N 220 69 {0,1,3,7,218} \N 222 69 {0,1,3,7,221} \N 223 69 {0,1,3,7,221} \N 225 69 {0,1,3,7,224} \N 226 69 {0,1,3,7,224} \N 228 69 {0,1,3,7,227} \N 230 69 {0,1,3,7,229} \N 232 69 {0,1,3,7,231} \N 234 69 {0,1,3,7,233} \N 236 69 {0,1,3,7,235} \N 238 69 {0,1,3,7,237} \N 240 69 {0,1,3,7,239} \N 242 69 {0,1,3,7,241} \N 244 69 {0,1,3,7,243} \N 246 69 {0,1,3,7,245} \N 248 69 {0,1,3,7,247} \N 249 69 {0,1,3,7,247} \N 250 69 {0,1,3,7,247} \N 251 69 {0,1,3,7,247} \N 253 69 {0,1,3,7,252} \N 255 69 {0,1,3,7,254} \N 256 69 {0,1,3,7,254} \N 257 69 {0,1,3,7,254} \N 259 69 {0,1,3,7,258} \N 261 69 {0,1,3,7,260} \N 263 69 {0,1,3,7,262} \N 265 69 {0,1,3,7,264} \N 266 69 {0,1,3,7,264} \N 268 69 {0,1,3,7,267} \N 270 69 {0,1,3,7,269} \N 272 69 {0,1,3,7,271} \N 273 69 {0,1,3,7,271} \N 276 69 {0,1,3,7,275} \N 278 69 {0,1,3,7,277} \N 280 69 {0,1,3,7,279} \N 283 69 {0,1,3,7,282} \N 285 69 {0,1,3,7,284} \N 287 69 {0,1,3,7,286} \N 289 69 {0,1,3,7,288} \N 291 69 {0,1,3,7,290} \N 293 69 {0,1,3,7,292} \N 296 69 {0,1,3,7,295} \N 298 69 {0,1,3,7,297} \N 300 69 {0,1,3,7,299} \N 302 69 {0,1,3,7,301} \N 304 69 {0,1,3,7,303} \N 306 69 {0,1,3,7,305} \N 308 69 {0,1,3,7,307} \N 310 69 {0,1,3,7,309} \N 313 69 {0,1,3,7,312} \N 316 69 {0,1,3,7,315} \N 669 69 {0,1,3,7,147} \N 694 69 {0,1,3,7,269} \N 670 69 {0,1,3,7,73} \N 671 69 {0,1,3,7,175} \N 695 69 {0,1,3,7,50} \N 672 69 {0,1,3,7,83} \N 673 69 {0,1,3,7,175} \N 674 69 {0,1,3,7,175} \N 494 81 {0,1,3} \N zh-CN,永不阻止,zh-TW,永不封鎖,de-DE,Nie gesperrt,en-US,Never blocked,fr-FR,Jamais bloqué,it-IT,Mai bloccato,ja-JP,ブロックしない,ko-KR,절대 차단되지 않음,pt-BR,Nunca bloqueado,es-ES,Nunca bloqueado 675 55 {0,1,3,7} \N zh-CN,Revver,zh-TW,Revver,de-DE,Revver,en-US,Revver,fr-FR,Revver,it-IT,Revver,ja-JP,Revver,ko-KR,Revver,pt-BR,Revver,es-ES,Revver 677 55 {0,1,3,7} \N zh-CN,Hulu,zh-TW,Hulu,de-DE,Hulu,en-US,Hulu,fr-FR,Hulu,it-IT,Hulu,ja-JP,Hulu,ko-KR,Hulu,pt-BR,Hulu,es-ES,Hulu 676 69 {0,1,3,7,675} \N +15 22 {0,1,2} \N en-US,Websense Components ,16 22 {0,1,2} \N en-US,Super Administrators 517 22 {0,1,2} \N en-US,Super Administrators_PolicyUI 818 22 {0,1,2} \N en-US,Super Administrators_ReportingUI 519 22 {0,1,2} \N en-US,Super Administrators_GlobalUI '21 23 {0,1,2} \N WebsenseAdministrator 678 69 {0,1,3,7,677} \N 679 69 {0,1,3,7,83} \N 680 74 {0,1,3,7,8,661} \N 527 63 {0,1,3,7} \N en-US,Quota #525 63 {0,1,3,7} \N en-US,Continue "431 63 {0,1,3,7,8} \N en-US,Quota %429 63 {0,1,3,7,8} \N en-US,Continue #428 63 {0,1,3,7,8} \N en-US,Permit "426 63 {0,1,3,7,8} \N en-US,Block !423 63 {0,1,3,7} \N en-US,Permit 421 63 {0,1,3,7} \N en-US,Block =485 79 {0,1,3,7,8} \N Information Technology:Proxy Avoidance )484 79 {0,1,3,7,8} \N Adult Material:Sex 3483 79 {0,1,3,7,8} \N Adult Material:Adult Content ,482 79 {0,1,3,7,8} \N Adult Material:Nudity .481 79 {0,1,3,7,8} \N Illegal or Questionable %480 79 {0,1,3,7,8} \N Adult Material =479 79 {0,1,3,7,8} \N Bandwidth PG:Peer-to-Peer File Sharing 5478 79 {0,1,3,7,8} \N Information Technology:Hacking 2477 79 {0,1,3,7,8} \N Miscellaneous:Uncategorized G476 79 {0,1,3,7,8} \N Bandwidth PG:Personal Network Storage and Backup !475 79 {0,1,3,7,8} \N Job Search 433 56 {0,1,3,7,8} \N zh-CN,仅监视,zh-TW,僅監控,de-DE,Nur überwachen,en-US,Monitor Only,fr-FR,Surveiller uniquement,it-IT,Solo monitoraggio,ja-JP,モニタのみ,ko-KR,모니터링 전용,pt-BR,Somente monitoramento,es-ES,Sólo supervisar 432 56 {0,1,3,7,8} \N zh-CN,基本安全,zh-TW,基本安全性,de-DE,Basissicherheit,en-US,Basic Security,fr-FR,Sécurité de base,it-IT,Sicurezza di base,ja-JP,基本セキュリティ,ko-KR,기본 보안,pt-BR,Segurança básica,es-ES,Seguridad básica 430 56 {0,1,3,7,8} \N zh-CN,默认,zh-TW,預設,de-DE,Standard,en-US,Default,fr-FR,Par défaut,it-IT,Predefinito,ja-JP,デフォルト,ko-KR,시스템 기본,pt-BR,Padrão,es-ES,Predeterminado 427 56 {0,1,3,7,8} \N zh-CN,基本,zh-TW,基本,de-DE,Basis,en-US,Basic,fr-FR,De base,it-IT,Base,ja-JP,基本,ko-KR,기본,pt-BR,Básico,es-ES,Básico 422 56 {0,1,3,7} \N zh-CN,全部允许,zh-TW,全部允許,de-DE,Alles zulassen,en-US,Permit All,fr-FR,Autoriser tout,it-IT,Autorizza sempre,ja-JP,すべて許可,ko-KR,모두 허용,pt-BR,Permitir tudo,es-ES,Permitir todo 420 56 {0,1,3,7} \N zh-CN,全部阻止,zh-TW,全部封鎖,de-DE,Alles sperren,en-US,Block All,fr-FR,Bloquer tout,it-IT,Blocca sempre,ja-JP,すべてブロック,ko-KR,모두 차단,pt-BR,Bloquear tudo,es-ES,Bloquear todo 529 56 {0,1,3,7} \N zh-CN,仅监视,zh-TW,僅監控,de-DE,Nur überwachen,en-US,Monitor Only,fr-FR,Surveiller uniquement,it-IT,Solo monitoraggio,ja-JP,モニタのみ,ko-KR,모니터링 전용,pt-BR,Somente monitoramento,es-ES,Sólo supervisar 528 56 {0,1,3,7} \N zh-CN,基本安全,zh-TW,基本安全性,de-DE,Basissicherheit,en-US,Basic Security,fr-FR,Sécurité de base,it-IT,Sicurezza di base,ja-JP,基本セキュリティ,ko-KR,기본 보안,pt-BR,Segurança básica,es-ES,Seguridad básica 526 56 {0,1,3,7} \N zh-CN,默认,zh-TW,預設,de-DE,Standard,en-US,Default,fr-FR,Par défaut,it-IT,Predefinito,ja-JP,デフォルト,ko-KR,시스템 기본,pt-BR,Padrão,es-ES,Predeterminado 524 56 {0,1,3,7} \N zh-CN,基本,zh-TW,基本,de-DE,Basis,en-US,Basic,fr-FR,De base,it-IT,Base,ja-JP,基本,ko-KR,기본,pt-BR,Básico,es-ES,Básico $12 59 {0,1,3,7,8} \N en-US,Template !9 59 {0,1,3,7} \N en-US,Template 446 53 {0,1,3,7,8} \N zh-CN,不受限制的,zh-TW,不設限,de-DE,Ohne Einschränkung,en-US,Unrestricted,fr-FR,Illimité,it-IT,Illimitato,ja-JP,制限なし,ko-KR,제한없음,pt-BR,Não registrado,es-ES,Sin restricciones P441 53 {0,1,3,7,8} \N zh-CN,示例 - 标准用户,zh-TW,範例 - 一般使用者,de-DE,Beispiel - Standardbenutzer,en-US,Example - Standard User,fr-FR,Exemple - Utilisateur standard,it-IT,Esempio: Utente standard,ja-JP,例 - 標準ユーザ,ko-KR,예 - 표준 사용자,pt-BR,Exemplo - Usuário padrão,es-ES,Ejemplo: usuario estándar 439 53 {0,1,3,7,8} \N zh-CN,默认,zh-TW,預設,de-DE,Standard,en-US,Default,fr-FR,Par défaut,it-IT,Predefinito,ja-JP,デフォルト,ko-KR,시스템 기본,pt-BR,Padrão,es-ES,Predeterminado 521 65 {0,1,3,7} \N en-US,Block /520 65 {0,1,3,7} \N en-US,Permit(Log or Lock) .519 65 {0,1,3,7} \N en-US,Block(Log or Lock) 1436 65 {0,1,3,7,8} \N en-US,Permit(Log or Lock) #435 65 {0,1,3,7,8} \N en-US,Permit "425 65 {0,1,3,7,8} \N en-US,Block 0424 65 {0,1,3,7,8} \N en-US,Block(Log or Lock) !319 65 {0,1,3,7} \N en-US,Permit 681 69 {0,1,3,7,83} \N ?487 80 {0,1,3,7,8} \N P2P File Sharing:FastTrack (Kazaa iMesh) A486 80 {0,1,3,7,8} \N P2P File Sharing:Gnutella (Morpheus Xolox) 438 57 {0,1,3,7,8} \N zh-CN,仅监视,zh-TW,僅監控,de-DE,Nur überwachen,en-US,Monitor Only,fr-FR,Surveiller uniquement,it-IT,Solo monitoraggio,ja-JP,モニタのみ,ko-KR,모니터링 전용,pt-BR,Somente monitoramento,es-ES,Sólo supervisar 437 57 {0,1,3,7,8} \N zh-CN,默认,zh-TW,預設,de-DE,Standard,en-US,Default,fr-FR,Par défaut,it-IT,Predefinito,ja-JP,デフォルト,ko-KR,시스템 기본,pt-BR,Padrão,es-ES,Predeterminado 434 57 {0,1,3,7,8} \N zh-CN,基本安全,zh-TW,基本安全性,de-DE,Basissicherheit,en-US,Basic Security,fr-FR,Sécurité de base,it-IT,Sicurezza di base,ja-JP,基本セキュリティ,ko-KR,기본 보안,pt-BR,Segurança básica,es-ES,Seguridad básica 318 57 {0,1,3,7} \N zh-CN,全部允许,zh-TW,全部允許,de-DE,Alles zulassen,en-US,Permit All,fr-FR,Autoriser tout,it-IT,Autorizza sempre,ja-JP,すべて許可,ko-KR,모두 허용,pt-BR,Permitir tudo,es-ES,Permitir todo 523 57 {0,1,3,7} \N zh-CN,仅监视,zh-TW,僅監控,de-DE,Nur überwachen,en-US,Monitor Only,fr-FR,Surveiller uniquement,it-IT,Solo monitoraggio,ja-JP,モニタのみ,ko-KR,모니터링 전용,pt-BR,Somente monitoramento,es-ES,Sólo supervisar 522 57 {0,1,3,7} \N zh-CN,默认,zh-TW,預設,de-DE,Standard,en-US,Default,fr-FR,Par défaut,it-IT,Predefinito,ja-JP,デフォルト,ko-KR,시스템 기본,pt-BR,Padrão,es-ES,Predeterminado 518 57 {0,1,3,7} \N zh-CN,基本安全,zh-TW,基本安全性,de-DE,Basissicherheit,en-US,Basic Security,fr-FR,Sécurité de base,it-IT,Sicurezza di base,ja-JP,基本セキュリティ,ko-KR,기본 보안,pt-BR,Segurança básica,es-ES,Seguridad básica $13 60 {0,1,3,7,8} \N en-US,Template "10 60 {0,1,3,7} \N en-US,Template 682 55 {0,1,3,7} \N zh-CN,ClipMoon,zh-TW,ClipMoon,de-DE,ClipMoon,en-US,ClipMoon,fr-FR,ClipMoon,it-IT,ClipMoon,ja-JP,ClipMoon,ko-KR,ClipMoon,pt-BR,ClipMoon,es-ES,ClipMoon 683 69 {0,1,3,7,682} \N 684 69 {0,1,3,7,65} \N 685 69 {0,1,3,7,65} \N 8 52 {0,1,3,7} \N en-US,Super Administrator,zh-CN,超级管理员,zh-TW,超級管理員,de-DE,Übergeordneter Administrator,fr-FR,Super administrateur,it-IT,Super Administrator,ja-JP,優先管理者,ko-KR,Super Administrator,pt-BR,Super Administrador,es-ES,Superadministrador 7 52 {0,1,3} \N en-US,Websense >467 78 {0,1,3,5} \N EIMServer/Global/DefaultProtocolBandwidth =466 78 {0,1,3,5} \N EIMServer/Global/DefaultNetworkBandwidth N465 78 {0,1,3,5} \N EIMServer/Global/Policy/SafeSearch/SupportedSearchEngines ?464 78 {0,1,3,5} \N EIMServer/Global/Policy/SafeSearch/Enabled 4463 78 {0,1,3,5} \N EIMServer/Global/Policy/Timeout :462 78 {0,1,3,5} \N EIMServer/Global/Logging/LogUserNames <461 78 {0,1,3,5} \N EIMServer/Global/Logging/LogIpAddresses Q460 78 {0,1,3,5} \N EIMServer/Global/BlockMessages/BlockWhenSubscriptionExceeded G459 78 {0,1,3,5} \N EIMServer/Global/Policy/UseMoreRestrictiveBlocking @458 78 {0,1,3,5} \N EIMServer/Global/PasswordOverriders/Timeout ?457 78 {0,1,3,5} \N EIMServer/Global/PasswordOverriders/Enable 8456 78 {0,1,3,5} \N EIMServer/Global/Keywords/SearchCgi 8455 78 {0,1,3,5} \N EIMServer/Global/Keywords/SearchUrl 7454 78 {0,1,3,5} \N EIMServer/Global/Quota/DefaultTime 4453 78 {0,1,3,5} \N EIMServer/Global/Quota/Interval 1474 76 {0,1,3,4} \N en-US,wse_system_safe_search 6473 76 {0,1,3,4} \N en-US,wse_system_reaching_license 2472 76 {0,1,3,4} \N en-US,wse_system_one_week_exp 3471 76 {0,1,3,4} \N en-US,wse_system_one_month_exp 6470 76 {0,1,3,4} \N en-US,wse_system_license_exceeded 0469 76 {0,1,3,4} \N en-US,wse_system_db_updated 0468 76 {0,1,3,4} \N en-US,wse_system_db_failure 517 81 {0,1,3} \N zh-CN,允许 - 未购买的类别,zh-TW,已允許 - 未購買通訊協定,de-DE,Zugelassen – Protokoll nicht erworben,en-US,Permitted - protocol not purchased,fr-FR,Autorisé - Protocole non acheté,it-IT,Autorizzato: protocollo non acquistato,ja-JP,許可 - プロトコル未購入,ko-KR,허용됨 - 구매하지 않은 프로토콜,pt-BR,Permitido - protocolo não adquirido,es-ES,Permitido: protocolo no contratado C516 81 {0,1,3} \N zh-CN,按定额阻止,zh-TW,依配額封鎖,de-DE,Gesperrt mit Quote,en-US,Blocked by quota,fr-FR,Bloqué par temps contingenté,it-IT,Bloccato con durata assegnata,ja-JP,割り当て時間によりブロック,ko-KR,시간 할당량에 의해 차단됨,pt-BR,Bloqueado por cota,es-ES,Bloqueado por cuota 515 81 {0,1,3} \N zh-CN,带有确认选项的阻止,zh-TW,因確認選項而封鎖,de-DE,Gesperrt mit der Option "Bestätigen",en-US,Blocked with confirm option,fr-FR,Bloqué avec l'option Confirmer,it-IT,Bloccato con opzione di conferma,ja-JP,確認オプションによりブロック,ko-KR,확인 옵션으로 차단됨,pt-BR,Bloqueado com opção de confirmação,es-ES,Bloqueado con la opción de confirmar 514 81 {0,1,3} \N zh-CN,重定向以进行安全搜索,zh-TW,重新導向以進行安全搜尋,de-DE,Zur Gewährleistung einer sicheren Suche umgeleitet,en-US,Redirected for safe search,fr-FR,Redirigé pour une recherche sécurisée,it-IT,Reindirizzato per una ricerca sicura,ja-JP,セーフ検索のためリダイレクト,ko-KR,안전한 검색을 위해 방향재지정됨,pt-BR,Redirecionado para pesquisa segura,es-ES,Redirigido para búsqueda segura 513 81 {0,1,3} \N zh-CN,按受限访问筛选器允许,zh-TW,依限制的存取篩選器允許,de-DE,Zugelassen durch Filter für die Zugriffsbeschränkung,en-US,Permitted by limited access filter,fr-FR,Autorisé par filtre d'accès limité,it-IT,Autorizzato con filtro per restrizioni di accesso,ja-JP,制限付きアクセス フィルタにより許可,ko-KR,제한된 액세스 필터로 허용됨,pt-BR,Permitido por filtro de acesso limitado,es-ES,Permitido por filtro de acceso limitado 512 81 {0,1,3} \N zh-CN,未设置而允许的协议,zh-TW,已允許的通訊協定,未設定,de-DE,Protokoll zugelassen\\, nicht konfiguriert,en-US,Protocol permitted\\, not set,fr-FR,Protocole autorisé\\, non défini,it-IT,Protocollo autorizzato\\, non impostato,ja-JP,許可されたプロトコル、未指定,ko-KR,프로토콜 허용됨\\, 설정되지 않음,pt-BR,Protocolo permitido\\, não definido,es-ES,Protocolo permitido\\, no establecido (511 81 {0,1,3} \N zh-CN,允许的协议,zh-TW,已允許的通訊協定,de-DE,Protokoll zugelassen,en-US,Protocol permitted,fr-FR,Protocole autorisé,it-IT,Protocollo autorizzato,ja-JP,許可されたプロトコル,ko-KR,프로토콜 허용됨,pt-BR,Protocolo permitido,es-ES,Protocolo permitido %510 81 {0,1,3} \N zh-CN,阻止的协议,zh-TW,已封鎖的通訊協定,de-DE,Protokoll gesperrt,en-US,Protocol blocked,fr-FR,Protocole bloqué,it-IT,Protocollo bloccato,ja-JP,ブロックされたプロトコル,ko-KR,프로토콜 차단됨,pt-BR,Protocolo bloqueado,es-ES,Protocolo bloqueado G509 81 {0,1,3} \N zh-CN,允许的文件类型,zh-TW,已允許的檔案類型,de-DE,Dateityp zugelassen,en-US,File type permitted,fr-FR,Type de fichier autorisé,it-IT,Tipo file autorizzato,ja-JP,許可されたファイル タイプ,ko-KR,파일 형식 허용됨,pt-BR,Tipo de arquivo permitido,es-ES,Tipo de archivo permitido D508 81 {0,1,3} \N zh-CN,阻止的文件类型,zh-TW,已封鎖的檔案類型,de-DE,Dateityp gesperrt,en-US,File type blocked,fr-FR,Type de fichier bloqué,it-IT,Tipo file bloccato,ja-JP,ブロックされたファイル タイプ,ko-KR,파일 형식 차단됨,pt-BR,Tipo de arquivo bloqueado,es-ES,Tipo de archivo bloqueado 507 81 {0,1,3} \N zh-CN,因协议带宽而阻止,zh-TW,因通訊協定頻寬而封鎖,de-DE,Gesperrt durch Protokollbandbreite,en-US,Blocked due to protocol bandwidth,fr-FR,Bloqué en raison de la bande passante du protocole,it-IT,Bloccato a causa della larghezza di banda del protocollo,ja-JP,プロトコル帯域幅によりブロック,ko-KR,프로토콜 대역폭때문에 차단됨,pt-BR,Bloqueado devido à largura de banda do protocolo,es-ES,Bloqueado por ancho de banda de protocolo 506 81 {0,1,3} \N zh-CN,因网络带宽而阻止,zh-TW,因網路頻寬而封鎖,de-DE,Gesperrt durch Netzwerkbandbreite,en-US,Blocked due to network bandwidth,fr-FR,Bloqué en raison de la bande passante réseau,it-IT,Bloccato a causa della larghezza di banda della rete,ja-JP,ネットワーク帯域幅によりブロック,ko-KR,네트워크 대역폭때문에 차단됨,pt-BR,Bloqueado devido à largura de banda da rede,es-ES,Bloqueado por ancho de banda de red 505 81 {0,1,3} \N zh-CN,关键字匹配允许,zh-TW,因關鍵字符合而允許,de-DE,Zugelassen bei Übereinstimmung des Schlüsselworts,en-US,Permitted with keyword match,fr-FR,Autorisé par concordance du mot clé,it-IT,Autorizzato con parola chiave,ja-JP,キーワードの一致により許可,ko-KR,키워드 일치로 허용됨,pt-BR,Permitido com correspondência de palavra-chave,es-ES,Permitido con palabra clave X504 81 {0,1,3} \N zh-CN,按定额允许,zh-TW,依配額允許,de-DE,Zugelassen bei Verwendung durch Quotenzeit,en-US,Permitted by quota,fr-FR,Autorisé par temps contingenté,it-IT,Autorizzato con durata assegnata,ja-JP,割り当て時間により許可,ko-KR,시간 할당량으로 허용됨,pt-BR,Permitido por cota,es-ES,Permitido por cuota 503 81 {0,1,3} \N zh-CN,允许 - 未购买的类别,zh-TW,已允許 - 未購買類別,de-DE,Zugelassen – Kategorie nicht erworben,en-US,Permitted - category not purchased,fr-FR,Autorisé - catégorie non achetée,it-IT,Autorizzato: categoria non acquistata,ja-JP,許可 - カテゴリ未購入,ko-KR,허용됨 - 구매하지 않은 카테고리,pt-BR,Permitido - categoria não adquirida,es-ES,Permitido: categoría no contratada 502 81 {0,1,3} \N zh-CN,阻止 - 要求身份验证,zh-TW,已封鎖 - 要求驗證,de-DE,Gesperrt – Authentifizierung erforderlich,en-US,Blocked - authentication required,fr-FR,Bloqué - Authentification requise,it-IT,Bloccato: autenticazione richiesta,ja-JP,ブロック - 認証が必要,ko-KR,차단됨 - 인증이 필요함,pt-BR,Bloqueado - autenticação necessária,es-ES,Bloqueado: se requiere autenticación 501 81 {0,1,3} \N zh-CN,带有确认选项的允许,zh-TW,因確認選項而允許,de-DE,Zugelassen mit der Option "Bestätigen",en-US,Permitted with confirm option,fr-FR,Autorisé avec l'option Confirmer,it-IT,Autorizzato con opzione di conferma,ja-JP,確認オプションにより許可,ko-KR,확인 옵션으로 허용됨,pt-BR,Permitido com opção de confirmação,es-ES,Permitido con la opción de confirmar 500 81 {0,1,3} \N zh-CN,按密码替代允许,zh-TW,依據密碼覆寫允許,de-DE,Zugelassen bei Freigabe mit Passwort,en-US,Permitted by password override,fr-FR,Autorisé par accès par mot de passe,it-IT,Autorizzato da esclusione password,ja-JP,パスワード アクセスにより許可,ko-KR,암호 보내기에 의해 허용됨,pt-BR,Permitido por substituição de senha,es-ES,Permitido por acceso con contraseña i499 81 {0,1,3} \N zh-CN,密码替代页,zh-TW,密碼覆寫頁面,de-DE,Seite zur Freigabe mit Passwort,en-US,Password override page,fr-FR,Page d'accès par mot de passe,it-IT,Pagina esclusione password,ja-JP,パスワード アクセス ページ,ko-KR,암호 보내기 페이지,pt-BR,Página de substituição de senha,es-ES,Página de acceso con contraseña 498 81 {0,1,3} \N zh-CN,允许 - 超过订购级别,zh-TW,已允許 - 超出訂閱等級,de-DE,Zugelassen – Subskriptionsebene überschritten,en-US,Permitted - subscription level exceeded,fr-FR,Autorisé - Niveau d'abonnement dépassé,it-IT,Autorizzato: superato livello sottoscrizione,ja-JP,許可 - サブスクリプション数の上限を超過,ko-KR,허용됨 - 가입 레벨 초과,pt-BR,Permitido - nível de inscrição excedido,es-ES,Permitido: nivel de suscripción excedido 497 81 {0,1,3} \N zh-CN,阻止 - 超过订购级别,zh-TW,已封鎖 - 超出訂閱等級,de-DE,Gesperrt – Subskriptionsebene überschritten,en-US,Blocked - subscription level exceeded,fr-FR,Bloqué - Niveau d'abonnement dépassé,it-IT,Bloccato: superato livello sottoscrizione,ja-JP,ブロック - サブスクリプション数の上限を超過,ko-KR,차단됨 - 가입 레벨 초과,pt-BR,Bloqueado - nível de inscrição excedido,es-ES,Bloqueado: nivel de suscripción excedido S496 81 {0,1,3} \N zh-CN,按关键字阻止,zh-TW,依據關鍵字封鎖,de-DE,Gesperrt durch Schlüsselwort,en-US,Blocked by keyword,fr-FR,Bloqué par mot clé,it-IT,Bloccato con parola chiave,ja-JP,キーワードによりブロック,ko-KR,키워드에 의해 차단됨,pt-BR,Bloqueado por palavra-chave,es-ES,Bloqueado por palabra clave 495 81 {0,1,3} \N zh-CN,按受限访问筛选器阻止,zh-TW,依限制的存取篩選器封鎖,de-DE,Gesperrt durch Filter für die Zugriffsbeschränkung,en-US,Blocked by limited access filter,fr-FR,Bloqué par filtre d'accès limité,it-IT,Bloccato con filtro per restrizioni di accesso,ja-JP,制限付きアクセス フィルタによりブロック,ko-KR,제한된 액세스 필터로 차단됨,pt-BR,Bloqueado por filtro de acesso limitado,es-ES,Bloqueado por filtro de acceso limitado 493 81 {0,1,3} \N zh-CN,始终阻止,zh-TW,永遠封鎖,de-DE,Immer gesperrt,en-US,Always blocked,fr-FR,Toujours bloqué,it-IT,Bloccato sempre,ja-JP,常にブロック,ko-KR,항상 차단됨,pt-BR,Sempre bloqueado,es-ES,Siempre bloqueado 492 81 {0,1,3} \N zh-CN,自定义 URL,允许的类别,zh-TW,自訂 URL,已允許類別,de-DE,Benutzerdefinierte URL\\, Kategorie zugelassen,en-US,Custom URL\\, category permitted,fr-FR,URL personnalisée\\, catégorie autorisée,it-IT,URL personalizzato\\, categoria autorizzata,ja-JP,許可されたカスタム URL、カテゴリ,ko-KR,사용자 지정 URL\\, 카테고리 허용됨,pt-BR,URL personalizado\\, categoria permitida,es-ES,URL personalizada\\, categoría permitida 491 81 {0,1,3} \N zh-CN,自定义 URL,阻止的类别,zh-TW,自訂 URL,已封鎖類別,de-DE,Benutzerdefinierte URL\\, Kategorie gesperrt,en-US,Custom URL\\, category blocked,fr-FR,URL personnalisée\\, catégorie bloquée,it-IT,URL personalizzato\\, categoria bloccata,ja-JP,ブロックされたカスタム URL、カテゴリ,ko-KR,사용자 지정 URL\\, 카테고리 차단됨,pt-BR,URL personalizado\\, categoria bloqueada,es-ES,URL personalizada\\, categoría bloqueada 490 81 {0,1,3} \N zh-CN,允许的类别,zh-TW,已允許類別,de-DE,Kategorie zugelassen,en-US,Category permitted,fr-FR,Catégorie autorisée,it-IT,Categoria autorizzata,ja-JP,許可されたカテゴリ,ko-KR,카테고리 허용됨,pt-BR,Categoria permitida,es-ES,Categoría permitida 489 81 {0,1,3} \N zh-CN,阻止的类别,zh-TW,已封鎖類別,de-DE,Kategorie gesperrt,en-US,Category blocked,fr-FR,Catégorie bloquée,it-IT,Categoria bloccata,ja-JP,ブロックされたカテゴリ,ko-KR,카테고리 차단됨,pt-BR,Categoria bloqueada,es-ES,Categoría bloqueada 488 81 {0,1,3} \N zh-CN,未设置而允许的类别,zh-TW,已允許類別,未設定,de-DE,Kategorie zugelassen\\, nicht konfiguriert,en-US,Category permitted\\, not set,fr-FR,Catégorie autorisée\\, non définie,it-IT,Categoria autorizzata\\, non impostata,ja-JP,許可されたカテゴリ、未指定,ko-KR,카테고리 허용됨\\, 설정되지 않음,pt-BR,Categoria permitida\\, não definida,es-ES,Categoría permitida\\, no establecido 540 81 {0,1,3} \N zh-CN,实时按定额阻止,zh-TW,依據即時配額封鎖,de-DE,Gesperrt mit Quote (Echtzeit),en-US,Blocked by quota real time,fr-FR,Bloqué par temps contingenté - temps réel,it-IT,Bloccato a tempo in tempo reale,ja-JP,リアル タイムの割り当て時間によりブロック,ko-KR,시간 할당량에 의해 차단됨 (실시간),pt-BR,Bloqueado por cota em tempo real,es-ES,Bloqueado por cuota en tiempo real 539 81 {0,1,3} \N zh-CN,实时带有确认选项的阻止,zh-TW,因即時確認選項而封鎖,de-DE,Gesperrt mit der Option "Bestätigen" (Echtzeit),en-US,Blocked with confirm option real time,fr-FR,Bloqué avec l'option Confirmer - temps réel,it-IT,Bloccato con opzione di conferma in tempo reale,ja-JP,リアル タイムの確認オプションによりブロック,ko-KR,확인 옵션으로 차단됨 (실시간),pt-BR,Bloqueado com opção de confirmação em tempo real,es-ES,Bloqueado con la opción de confirmar en tiempo real 538 81 {0,1,3} \N zh-CN,实时允许的文件类型,zh-TW,即時允許的檔案類型,de-DE,Dateityp zugelassen (Echtzeit),en-US,File type permitted real time,fr-FR,Type de fichier autorisé - temps réel,it-IT,Tipo di file autorizzato in tempo reale,ja-JP,リアル タイムで許可されたファイル タイプ,ko-KR,파일 형식 허용됨 (실시간),pt-BR,Tipo de arquivo permitido em tempo real,es-ES,Tipo de archivo permitido en tiempo real 537 81 {0,1,3} \N zh-CN,实时阻止的文件类型,zh-TW,即時封鎖的檔案類型,de-DE,Dateityp gesperrt (Echtzeit),en-US,File type blocked real time,fr-FR,Type de fichier bloqué - temps réel,it-IT,Tipo di file bloccato in tempo reale,ja-JP,リアル タイムでブロックされたファイル タイプ,ko-KR,파일 형식 차단됨 (실시간),pt-BR,Tipo de arquivo bloqueado em tempo real,es-ES,Tipo de archivo bloqueado en tiempo real 686 54 {0,1,3,7} \N zh-CN,Web and Email Spam,zh-TW,Web and Email Spam,de-DE,Web and Email Spam,en-US,Web and Email Spam,fr-FR,Web and Email Spam,it-IT,Web and Email Spam,ja-JP,Web and Email Spam,ko-KR,Web and Email Spam,pt-BR,Web and Email Spam,es-ES,Web and Email Spam i536 81 {0,1,3} \N zh-CN,实时因协议带宽而阻止,zh-TW,因即時通訊協定頻寬而封鎖,de-DE,Gesperrt durch Protokollbandbreite (Echtzeit),en-US,Blocked due to protocol bandwidth real time,fr-FR,Bloqué en raison de la bande passante du protocole - temps réel,it-IT,Bloccato a causa della larghezza di banda del protocollo in tempo reale,ja-JP,リアル タイムのプロトコル帯域幅によりブロック,ko-KR,프로토콜 대역폭때문에 차단됨 (실시간),pt-BR,Bloqueado devido à largura de banda do protocolo em tempo real,es-ES,Bloqueado por ancho de banda de protocolo en tiempo real P535 81 {0,1,3} \N zh-CN,实时因网络带宽而阻止,zh-TW,因即時網路頻寬而封鎖,de-DE,Gesperrt durch Netzwerkbandbreite (Echtzeit),en-US,Blocked due to network bandwidth real time,fr-FR,Bloqué en raison de la bande passante réseau - temps réel,it-IT,Bloccato a causa della larghezza di banda della rete in tempo reale,ja-JP,リアル タイムのネットワーク帯域幅によりブロック,ko-KR,네트워크 대역폭때문에 차단됨 (실시간),pt-BR,Bloqueado devido à largura de banda da rede em tempo real,es-ES,Bloqueado por ancho de banda de red en tiempo real 534 81 {0,1,3} \N zh-CN,实时按定额允许,zh-TW,依據即時配額允許,de-DE,Zugelassen mit Quote (Echtzeit),en-US,Permitted by quota real time,fr-FR,Autorisé par temps contingenté - temps réel,it-IT,Autorizzato con durata assegnata in tempo reale,ja-JP,リアル タイムの割り当て時間により許可,ko-KR,시간 할당량에 의해 허용됨 (실시간),pt-BR,Permitido por cota em tempo real,es-ES,Permitido por cuota en tiempo real 533 81 {0,1,3} \N zh-CN,实时带有确认选项的允许,zh-TW,因即時確認選項而允許,de-DE,Zugelassen mit der Option "Bestätigen" (Echtzeit),en-US,Permitted with confirm option real time,fr-FR,Autorisé avec l'option Confirmer - temps réel,it-IT,Autorizzato con opzione di conferma in tempo reale,ja-JP,リアル タイムの確認オプションにより許可,ko-KR,확인 옵션으로 허용됨 (실시간),pt-BR,Permitido com opção de confirmação em tempo real,es-ES,Permitido con la opción de confirmar en tiempo real *532 81 {0,1,3} \N zh-CN,实时按密码替代允许,zh-TW,依據即時密碼覆寫頁面允許,de-DE,Zugelassen bei Freigabe mit Passwort (Echtzeit),en-US,Permitted by password override real time,fr-FR,Autorisé par accès par mot de passe - temps réel,it-IT,Autorizzato da esclusione password in tempo reale,ja-JP,リアル タイムのパスワード アクセスにより許可,ko-KR,암호 보내기에 의해 허용됨 (실시간),pt-BR,Permitido pela substituição de senha em tempo real,es-ES,Permitido por acceso con contraseña en tiempo real 531 81 {0,1,3} \N zh-CN,实时允许的类别,zh-TW,即時允許類別,de-DE,Kategorie zugelassen (Echtzeit),en-US,Category permitted real time,fr-FR,Catégorie autorisée - temps réel,it-IT,Categoria autorizzata in tempo reale,ja-JP,リアル タイムの許可されたカテゴリ,ko-KR,카테고리 허용됨 (실시간),pt-BR,Categoria permitida em tempo real,es-ES,Categoría permitida en tiempo real 530 81 {0,1,3} \N zh-CN,实时阻止的类别,zh-TW,即時封鎖類別,de-DE,Kategorie gesperrt (Echtzeit),en-US,Category blocked real time,fr-FR,Catégorie bloquée - temps réel,it-IT,Categoria bloccata in tempo reale,ja-JP,リアル タイムのブロックされたカテゴリ,ko-KR,카테고리 차단됨 (실시간),pt-BR,Categoria bloqueada em tempo real,es-ES,Categoría bloqueada en tiempo real n542 55 {0,1,3,7} \N zh-CN,Yahoo! Messenger 附件,zh-TW,Yahoo! Messenger 附件,de-DE,Yahoo! Messenger-Anhänge,en-US,Yahoo! Messenger attachments,fr-FR,Pièces jointes Yahoo! Messenger,it-IT,Allegati Yahoo! Messenger,ja-JP,Yahoo! Messenger の添付,ko-KR,야후! 메신저 첨부 파일,pt-BR,Anexos do Yahoo! Messenger,es-ES,Archivos adjuntos de Yahoo! Messenger O548 55 {0,1,3,7} \N zh-CN,MSN Messenger 附件,zh-TW,MSN Messenger 附件,de-DE,MSN Messenger-Anhänge,en-US,MSN Messenger attachments,fr-FR,Pièces jointes MSN Messenger,it-IT,Allegati MSN Messenger,ja-JP,MSN Messenger の添付,ko-KR,MSN 메신저 첨부 파일,pt-BR,Anexos do MSN Messenger,es-ES,Archivos adjuntos de MSN Messenger 554 55 {0,1,3,7} \N zh-CN,AOL Instant Messenger 或 ICQ 附件,zh-TW,AOL Instant Messenger 或 ICQ 附件,de-DE,AOL Instant Messenger- oder ICQ-Anhänge,en-US,AOL Instant Messenger or ICQ attachments,fr-FR,Pièces jointes AOL Instant Messenger ou ICQ,it-IT,Allegati AOL Instant Messenger o ICQ,ja-JP,AOL インスタントメッセンジャー または ICQ の添付,ko-KR,AOL 메신저 또는 ICQ 첨부 파일,pt-BR,Anexos do AOL Instant Messenger ou ICQ,es-ES,Archivos adjuntos de AOL Mensajero Instantáneo o ICQ 559 55 {0,1,3,7} \N zh-CN,Brosix,zh-TW,Brosix,de-DE,Brosix,en-US,Brosix,fr-FR,Brosix,it-IT,Brosix,ja-JP,Brosix,ko-KR,Brosix,pt-BR,Brosix,es-ES,Brosix 561 55 {0,1,3,7} \N zh-CN,iSpQ,zh-TW,iSpQ,de-DE,iSpQ,en-US,iSpQ,fr-FR,iSpQ,it-IT,iSpQ,ja-JP,iSpQ,ko-KR,iSpQ,pt-BR,iSpQ,es-ES,iSpQ 563 55 {0,1,3,7} \N zh-CN,CrossLoop,zh-TW,CrossLoop,de-DE,CrossLoop,en-US,CrossLoop,fr-FR,CrossLoop,it-IT,CrossLoop,ja-JP,CrossLoop,ko-KR,CrossLoop,pt-BR,CrossLoop,es-ES,CrossLoop r565 55 {0,1,3,7} \N zh-CN,NateOn Messenger Attachments,zh-TW,NateOn Messenger Attachments,de-DE,NateOn Messenger Attachments,en-US,NateOn Messenger Attachments,fr-FR,NateOn Messenger Attachments,it-IT,NateOn Messenger Attachments,ja-JP,NateOn Messenger Attachments,ko-KR,NateOn Messenger Attachments,pt-BR,NateOn Messenger Attachments,es-ES,NateOn Messenger Attachments 567 55 {0,1,3,7} \N zh-CN,Globe7,zh-TW,Globe7,de-DE,Globe7,en-US,Globe7,fr-FR,Globe7,it-IT,Globe7,ja-JP,Globe7,ko-KR,Globe7,pt-BR,Globe7,es-ES,Globe7 569 55 {0,1,3,7} \N zh-CN,Chikka Messenger,zh-TW,Chikka Messenger,de-DE,Chikka Messenger,en-US,Chikka Messenger,fr-FR,Chikka Messenger,it-IT,Chikka Messenger,ja-JP,Chikka Messenger,ko-KR,Chikka Messenger,pt-BR,Chikka Messenger,es-ES,Chikka Messenger 572 55 {0,1,3,7} \N zh-CN,Live Mesh,zh-TW,Live Mesh,de-DE,Live Mesh,en-US,Live Mesh,fr-FR,Live Mesh,it-IT,Live Mesh,ja-JP,Live Mesh,ko-KR,Live Mesh,pt-BR,Live Mesh,es-ES,Live Mesh 574 55 {0,1,3,7} \N zh-CN,Yuuguu,zh-TW,Yuuguu,de-DE,Yuuguu,en-US,Yuuguu,fr-FR,Yuuguu,it-IT,Yuuguu,ja-JP,Yuuguu,ko-KR,Yuuguu,pt-BR,Yuuguu,es-ES,Yuuguu 591 58 {0,1,3,7} \N zh-CN,音频,zh-TW,音效,de-DE,Audio,en-US,Audio,fr-FR,Audio,it-IT,Audio,ja-JP,オーディオ,ko-KR,오디오,pt-BR,Áudio,es-ES,Audio 593 58 {0,1,3,7} \N zh-CN,视频,zh-TW,視訊,de-DE,Video,en-US,Video,fr-FR,Vidéo,it-IT,Video,ja-JP,ビデオ,ko-KR,비디오,pt-BR,Vídeo,es-ES,Video 595 58 {0,1,3,7} \N zh-CN,可执行程序,zh-TW,可執行檔,de-DE,Ausführbare Dateien,en-US,Executables,fr-FR,Exécutables,it-IT,Eseguibili,ja-JP,実行可能,ko-KR,실행 파일,pt-BR,Executáveis,es-ES,Ejecutables 597 58 {0,1,3,7} \N zh-CN,压缩文件,zh-TW,壓縮檔案,de-DE,Komprimierte Dateien,en-US,Compressed Files,fr-FR,Fichiers compressés,it-IT,File Compressi,ja-JP,圧縮ファイル,ko-KR,압축 파일,pt-BR,Arquivos comprimidos,es-ES,Archivos comprimidos 541 64 {0,1,3,7} \N zh-CN,即时消息发送文件附件,zh-TW,即時訊息傳送檔案附件,de-DE,Instant Messaging-Dateianhänge,en-US,Instant Messaging File Attachments,fr-FR,Pièces jointes messagerie instantanée,it-IT,Allegati dei programmi di messaggistica immediata,ja-JP,インスタントメッセージングファイルの添付,ko-KR,메신저 첨부 파일,pt-BR,Arquivos Anexos do Instant Messaging,es-ES,Archivos adjuntos de mensaje instantáneo 543 69 {0,1,3,7,542} \N 544 69 {0,1,3,7,542} \N 545 69 {0,1,3,7,542} \N 546 69 {0,1,3,7,542} \N 547 69 {0,1,3,7,542} \N 549 69 {0,1,3,7,548} \N 550 69 {0,1,3,7,548} \N 551 69 {0,1,3,7,548} \N 552 69 {0,1,3,7,548} \N 553 69 {0,1,3,7,548} \N 555 69 {0,1,3,7,554} \N 556 69 {0,1,3,7,554} \N 557 69 {0,1,3,7,554} \N 558 69 {0,1,3,7,554} \N 560 69 {0,1,3,7,559} \N 562 69 {0,1,3,7,561} \N 564 69 {0,1,3,7,563} \N 566 69 {0,1,3,7,565} \N 568 69 {0,1,3,7,567} \N 570 69 {0,1,3,7,569} \N 571 69 {0,1,3,7,569} \N 573 69 {0,1,3,7,572} \N 575 69 {0,1,3,7,574} \N 576 69 {0,1,3,7,57} \N 577 69 {0,1,3,7,57} \N 578 69 {0,1,3,7,57} \N 579 69 {0,1,3,7,60} \N 580 69 {0,1,3,7,53} \N 581 69 {0,1,3,7,53} \N 582 69 {0,1,3,7,65} \N 583 69 {0,1,3,7,83} \N 584 69 {0,1,3,7,44} \N 585 69 {0,1,3,7,269} \N 586 69 {0,1,3,7,221} \N 587 69 {0,1,3,7,221} \N 588 69 {0,1,3,7,144} \N 589 69 {0,1,3,7,173} \N 590 69 {0,1,3,7,173} \N 592 73 {0,1,3,7} \N 594 73 {0,1,3,7} \N 596 73 {0,1,3,7} \N 598 73 {0,1,3,7} \N 320 54 {0,1,3,7} \N zh-CN,成人信息,zh-TW,成人資訊,de-DE,Nicht jugendfreies Material,en-US,Adult Material,fr-FR,Section pour adultes,it-IT,Materiale per adulti,ja-JP,アダルト,ko-KR,성인물,pt-BR,Material adulto,es-ES,Material para adultos 321 54 {0,1,3,7} \N zh-CN,堕胎,zh-TW,墮胎,de-DE,Schwangerschaftsabbruch,en-US,Abortion,fr-FR,Avortement,it-IT,Aborto,ja-JP,中絶,ko-KR,낙태,pt-BR,Aborto,es-ES,Aborto 322 54 {0,1,3,7} \N zh-CN,社团组织,zh-TW,倡議團體,de-DE,Meinungsgruppen,en-US,Advocacy Groups,fr-FR,Groupes activistes/Associations,it-IT,Gruppi di sostegno,ja-JP,主張グループ,ko-KR,지지 그룹,pt-BR,Grupos de apoio,es-ES,Grupos de apoyo 323 54 {0,1,3,7} \N zh-CN,效率,zh-TW,效率,de-DE,Produktivität,en-US,Productivity,fr-FR,Productivité,it-IT,Produttività ,ja-JP,生産性,ko-KR,생산성,pt-BR,Produtividade,es-ES,Productividad 324 54 {0,1,3,7} \N zh-CN,带宽,zh-TW,頻寬,de-DE,Bandbreite,en-US,Bandwidth,fr-FR,Largeur de bande,it-IT,Larghezza di banda,ja-JP,帯域幅,ko-KR,대역폭,pt-BR,Largura de banda,es-ES,Ancho de banda 325 54 {0,1,3,7} \N zh-CN,娱乐,zh-TW,娛樂,de-DE,Unterhaltung,en-US,Entertainment,fr-FR,Divertissement,it-IT,Intrattenimento,ja-JP,エンターテイメント,ko-KR,엔터테인먼트,pt-BR,Entretenimento,es-ES,Entretenimiento 326 54 {0,1,3,7} \N zh-CN,社会组织,zh-TW,社會組織,de-DE,Soziale Organisationen,en-US,Social Organizations,fr-FR,Associations et organismes sociaux,it-IT,Organizzazioni sociali,ja-JP,社会組織,ko-KR,사회단체,pt-BR,Organizações sociais,es-ES,Organizaciones sociales 327 54 {0,1,3,7} \N zh-CN,赌博,zh-TW,賭博,de-DE,Glücksspiel,en-US,Gambling,fr-FR,Jeux de hasard,it-IT,Giochi d'azzardo,ja-JP,ギャンブル,ko-KR,도박,pt-BR,Jogos,es-ES,Juegos de apuestas 328 54 {0,1,3,7} \N zh-CN,游戏,zh-TW,遊戲,de-DE,Spiele,en-US,Games,fr-FR,Jeux,it-IT,Giochi,ja-JP,ゲーム,ko-KR,게임,pt-BR,Jogos eletrônicos,es-ES,Juegos 329 54 {0,1,3,7} \N zh-CN,杂类,zh-TW,其他,de-DE,Verschiedenes,en-US,Miscellaneous,fr-FR,Divers,it-IT,Miscellanea,ja-JP,その他,ko-KR,기타,pt-BR,Diversos,es-ES,Varios 687 69 {0,1,3,7,65} \N 688 69 {0,1,3,7,175} \N 7330 54 {0,1,3,7} \N zh-CN,违法或嫌疑,zh-TW,違法或嫌疑行為,de-DE,Rechtswidrig oder Bedenklich,en-US,Illegal or Questionable,fr-FR,Illégal ou douteux,it-IT,Argomenti illeciti o discutibili,ja-JP,違法行為,ko-KR,불법 또는 불법 추정,pt-BR,Ilegal ou questionável,es-ES,Ilegal o cuestionable 331 54 {0,1,3,7} \N zh-CN,求职,zh-TW,求職,de-DE,Jobsuche,en-US,Job Search,fr-FR,Recherche d'emplois,it-IT,Ricerca di lavoro,ja-JP,求人情報,ko-KR,구인구직,pt-BR,Procura de emprego,es-ES,Búsqueda de empleo 332 54 {0,1,3,7} \N zh-CN,购物,zh-TW,購物,de-DE,Online-Shopping,en-US,Shopping,fr-FR,Shopping,it-IT,Acquisti in linea,ja-JP,ショッピング,ko-KR,쇼핑,pt-BR,Compras,es-ES,Compras 333 54 {0,1,3,7} \N zh-CN,体育运动,zh-TW,體育運動,de-DE,Sport,en-US,Sports,fr-FR,Sports,it-IT,Sport,ja-JP,スポーツ,ko-KR,스포츠,pt-BR,Esportes,es-ES,Deportes 334 54 {0,1,3,7} \N zh-CN,庸俗,zh-TW,惡俗,de-DE,Geschmackloses,en-US,Tasteless,fr-FR,Mauvais goût,it-IT,Cattivo gusto,ja-JP,悪趣味,ko-KR,엽기,pt-BR,Mau gosto,es-ES,Mal gusto 335 54 {0,1,3,7} \N zh-CN,扩展保护,zh-TW,延伸的防護,de-DE,Erweiterter Schutz,en-US,Extended Protection,fr-FR,Protection étendue,it-IT,Protezione estesa,ja-JP,より広範囲の危険性への対処,ko-KR,확장 보호,pt-BR,Proteção ampliada,es-ES,Protección ampliada 336 54 {0,1,3,7} \N zh-CN,商业与经济,zh-TW,商業與經濟,de-DE,Wirtschaft und Handel,en-US,Business and Economy,fr-FR,Commerce et économie,it-IT,Business ed economia ,ja-JP,ビジネス& 経済,ko-KR,비즈니스와 경제,pt-BR,Negócios e Economia,es-ES,Negocios y economía 337 54 {0,1,3,7} \N zh-CN,旅行,zh-TW,旅行,de-DE,Reisen,en-US,Travel,fr-FR,Voyage,it-IT,Viaggi e turismo,ja-JP,旅行,ko-KR,여행,pt-BR,Viagem,es-ES,Viajes 338 54 {0,1,3,7} \N zh-CN,交通工具,zh-TW,交通工具,de-DE,Kraftfahrzeuge,en-US,Vehicles,fr-FR,Véhicules,it-IT,Veicoli,ja-JP,乗り物,ko-KR,운송수단,pt-BR,Veículos,es-ES,Vehículos 339 54 {0,1,3,7} \N zh-CN,暴力,zh-TW,暴力,de-DE,Gewalt,en-US,Violence,fr-FR,Violence,it-IT,Violenza,ja-JP,暴力,ko-KR,폭력,pt-BR,Violência,es-ES,Violencia 340 54 {0,1,3,7} \N zh-CN,武器,zh-TW,武器,de-DE,Waffen,en-US,Weapons,fr-FR,Armes,it-IT,Armi,ja-JP,武器,ko-KR,무기,pt-BR,Armas,es-ES,Armas 341 54 {0,1,3,7} \N zh-CN,药物,zh-TW,藥物,de-DE,Arzneimittel,en-US,Drugs,fr-FR,Drogues,it-IT,Droghe,ja-JP,麻薬/医薬品,ko-KR,약품,pt-BR,Medicamentos,es-ES,Drogas 344 54 {0,1,3,7} \N zh-CN,健康,zh-TW,健康,de-DE,Gesundheit,en-US,Health,fr-FR,Santé,it-IT,Salute,ja-JP,健康,ko-KR,건강,pt-BR,Saúde,es-ES,Salud 345 54 {0,1,3,7} \N zh-CN,教育,zh-TW,教育,de-DE,Bildung,en-US,Education,fr-FR,Enseignement,it-IT,Educazione,ja-JP,教育,ko-KR,교육,pt-BR,Educação,es-ES,Educación 346 54 {0,1,3,7} \N zh-CN,政府,zh-TW,政府,de-DE,Staat & Regierung,en-US,Government,fr-FR,Gouvernement,it-IT,Governo,ja-JP,政府,ko-KR,정부,pt-BR,Governo,es-ES,Gobierno 347 54 {0,1,3,7} \N zh-CN,新闻与媒体,zh-TW,新聞媒體,de-DE,Nachrichten & Medien,en-US,News and Media,fr-FR,Actualités et médias,it-IT,Notizie e Media,ja-JP,ニュース・メディア,ko-KR,뉴스와 미디어,pt-BR,Notícias e mídia,es-ES,Noticias y medios de comunicación 348 54 {0,1,3,7} \N zh-CN,宗教,zh-TW,宗教,de-DE,Religion,en-US,Religion,fr-FR,Religion,it-IT,Religione,ja-JP,宗教,ko-KR,종교,pt-BR,Religião,es-ES,Religión 349 54 {0,1,3,7} \N zh-CN,用户自定义,zh-TW,使用者定義,de-DE,Benutzerdefiniert,en-US,User-Defined,fr-FR,Défini par l’utilisateur,it-IT,Definita dall'Utente,ja-JP,ユーザー設定,ko-KR,사용자 정의,pt-BR,Definido pelo usuário,es-ES,Definido por el usuario @350 54 {0,1,3,7} \N zh-CN,时尚及生活,zh-TW,社會與生活時尚,de-DE,Gesellschaft & Lifestyle,en-US,Society and Lifestyles,fr-FR,Société et style de vie,it-IT,Società e Stili di vita,ja-JP,社会 & ライフ スタイル,ko-KR,사회와 문화,pt-BR,Sociedade e estilo de vida,es-ES,Sociedad y estilos de vida 351 54 {0,1,3,7} \N zh-CN,特殊事件,zh-TW,特殊事件,de-DE,Besondere Ereignisse,en-US,Special Events,fr-FR,Événements spéciaux,it-IT,Eventi speciali,ja-JP,スペシャル・ イベント,ko-KR,특별 이벤트,pt-BR,Eventos especiais,es-ES,Eventos especiales 352 54 {0,1,3,7} \N zh-CN,信息科技,zh-TW,資訊科技,de-DE,Informationstechnologie,en-US,Information Technology,fr-FR,Technologies de l'information,it-IT,Tecnologia informatica,ja-JP,IT,ko-KR,정보기술(IT),pt-BR,Tecnologia da informação,es-ES,Tecnología informática O353 54 {0,1,3,7} \N zh-CN,互联网通信,zh-TW,網際網路通訊,de-DE,Internet-Kommunikation,en-US,Internet Communication,fr-FR,Communication Internet,it-IT,Comunicazione via Internet,ja-JP,インターネット・ コミュニケーション,ko-KR,인터넷 통신,pt-BR,Comunicação via Internet,es-ES,Comunicación por Internet 354 54 {0,1,3,7} \N zh-CN,上网赚钱,zh-TW,上網式賺錢,de-DE,Pay-to-Surf,en-US,Pay-to-Surf,fr-FR,Sites rémunérateurs,it-IT,Guadagna navigando (Pay-to-Surf),ja-JP,報酬サイト,ko-KR,무료 현금배분,pt-BR,Pagar para navegar,es-ES,Pagar por navegar 7355 54 {0,1,3,7} \N zh-CN,网上竞拍,zh-TW,網上拍賣,de-DE,Internet-Auktionen,en-US,Internet Auctions,fr-FR,Ventes aux enchères sur Internet,it-IT,Vendite all'asta via Internet,ja-JP,インターネット・ オークション,ko-KR,인터넷 경매,pt-BR,Leilão via Internet,es-ES,Subastas por Internet 356 54 {0,1,3,7} \N zh-CN,房地产,zh-TW,房地產,de-DE,Immobilien,en-US,Real Estate,fr-FR,Immobilier,it-IT,Immobiliari,ja-JP,不動産,ko-KR,부동산,pt-BR,Imóveis,es-ES,Bienes raíces 357 54 {0,1,3,7} \N zh-CN,业余爱好,zh-TW,嗜好,de-DE,Hobbys,en-US,Hobbies,fr-FR,Hobbies,it-IT,Hobby,ja-JP,趣味,ko-KR,취미,pt-BR,Passatempo,es-ES,Pasatiempos 359 54 {0,1,3,7} \N zh-CN,IP 电话,zh-TW,網際網路電話,de-DE,Internet-Telefonie,en-US,Internet Telephony,fr-FR,Téléphonie Internet,it-IT,Telefonia via Internet,ja-JP,インターネット電話,ko-KR,인터넷 전화,pt-BR,Telefonia via Internet,es-ES,Telefonía vía internet 360 54 {0,1,3,7} \N zh-CN,流媒体,zh-TW,串流媒體,de-DE,Streaming Media,en-US,Streaming Media,fr-FR,Médias en temps-réel,it-IT,Streaming Media,ja-JP,ストリーミング・メディア,ko-KR,스트리밍 미디어,pt-BR,Mídia em fluxo,es-ES,Transmisiones multimedia 361 54 {0,1,3,7} \N zh-CN,大麻,zh-TW,大麻,de-DE,Marihuana,en-US,Marijuana,fr-FR,Marijuana,it-IT,Marijuana,ja-JP,マリファナ,ko-KR,마리화나,pt-BR,Marijuana,es-ES,Marihuana F362 54 {0,1,3,7} \N zh-CN,信息布告栏和论坛,zh-TW,留言板和論壇,de-DE,Nachrichten-Boards und Foren,en-US,Message Boards and Forums,fr-FR,BBS et forums,it-IT,Forum e bacheche,ja-JP,掲示板とフォーラム,ko-KR,자유 게시판 및 포럼,pt-BR,Fóruns e quadros de mensagens,es-ES,Tablones de mensajes y foros `364 54 {0,1,3,7} \N zh-CN,网上电台及电视,zh-TW,網際網路廣播與電視,de-DE,Internetradio & Internet-TV,en-US,Internet Radio and TV,fr-FR,Radio et TV sur Internet,it-IT,Radio e TV via Internet,ja-JP,インターネット・ラジオとTV,ko-KR,인터넷 라디오 & TV,pt-BR,Rádio e TV via Internet,es-ES,Radio y televisión vía internet _365 54 {0,1,3,7} \N zh-CN,对等文件共享,zh-TW,端對端檔案共用,de-DE,Peer-to-Peer,en-US,Peer-to-Peer File Sharing,fr-FR,Partage de fichiers en peer-to-peer,it-IT,Scambio di File Peer-to-Peer,ja-JP,ピア・ツー・ピアによるファイル共有,ko-KR,P2P 파일 공유,pt-BR,Compartilhamento de arquivos P2P,es-ES,Compartir archivos P2P 367 54 {0,1,3,7} \N zh-CN,教学材料,zh-TW,教學資源,de-DE,Bildungsunterlagen,en-US,Educational Materials,fr-FR,Matériaux éducatifs,it-IT,Materiale scolastico,ja-JP,教材,ko-KR,교육자료,pt-BR,Materiais educacionais,es-ES,Material educativo 368 54 {0,1,3,7} \N zh-CN,参考材料,zh-TW,參考材料,de-DE,Nachschlagewerke & Referenzmaterial,en-US,Reference Materials,fr-FR,Outils de références,it-IT,Materiali di riferimento,ja-JP,参考資料,ko-KR,참고자료,pt-BR,Materiais de referência,es-ES,Materiales de referencia 369 54 {0,1,3,7} \N zh-CN,服务与慈善组织,zh-TW,服務與慈善組織,de-DE,Dienstleistungsorganisationen und wohltätige Organisationen,en-US,Service and Philanthropic Organizations,fr-FR,Organisations philanthropiques,it-IT,Organizzazioni filantropiche e d'assistenza sociale,ja-JP,奉仕・慈善事業団体,ko-KR,봉사 및 자선 단체,pt-BR,Organizações de serviço e filantropia,es-ES,Organizaciones de servicios y filantrópicas 370 54 {0,1,3,7} \N zh-CN,社会与附属组织,zh-TW,社會與附屬組織,de-DE,Soziale Organisationen und Zweckverbände,en-US,Social and Affiliation Organizations,fr-FR,Associations caritatives,it-IT,Organizzazioni sociali ed affiliati,ja-JP,社交・友好団体,ko-KR,사교 및 친목 단체,pt-BR,Organizações sociais e de filiação,es-ES,Organizaciones sociales y de afiliación 371 54 {0,1,3,7} \N zh-CN,职业与工人组织,zh-TW,職業與工人組織,de-DE,Berufsverbände und Arbeiterorganisationen,en-US,Professional and Worker Organizations,fr-FR,Organisations professionnelles et de travailleurs,it-IT,Organizzazioni professionali e sindacali,ja-JP,専門家・従業員団体,ko-KR,직업 및 노동자 단체,pt-BR,Organizações profissionais e trabalhistas,es-ES,Organizaciones para profesionales y trabajadores 0372 54 {0,1,3,7} \N zh-CN,计算机安全,zh-TW,電腦安全,de-DE,Computersicherheit,en-US,Computer Security,fr-FR,Sécurité informatique,it-IT,Sicurezza dei Computer,ja-JP,コンピュータセキュリティ情報,ko-KR,컴퓨터 보안,pt-BR,Segurança de computador,es-ES,Seguridad de computadoras 373 54 {0,1,3,7} \N zh-CN,图片,zh-TW,影像(媒體),de-DE,Bilder (Medien),en-US,Images (Media),fr-FR,Images (Média),it-IT,Immagini (Media),ja-JP,イメージ(メディア) ,ko-KR,이미지(미디어),pt-BR,Imagens (Mídia),es-ES,Imágenes (Medios) 374 54 {0,1,3,7} \N zh-CN,图片服务器,zh-TW,影像伺服器,de-DE,Image-Server,en-US,Image Servers,fr-FR,Serveur d'Images,it-IT,Image Server,ja-JP,イメージサーバー,ko-KR,이미지 서버,pt-BR,Servidor de imagens,es-ES,Servidor de imagen 375 54 {0,1,3,7} \N zh-CN,私有 IP 地址,zh-TW,私有 IP 位址,de-DE,Private IP-Adressen,en-US,Private IP Addresses,fr-FR,Adresses IP Privées,it-IT,Indirizzi IP Privati,ja-JP,私的IPアドレス,ko-KR,개인 IP 주소,pt-BR,Endereços IP privados,es-ES,Direcciones IP privadas 376 54 {0,1,3,7} \N zh-CN,内容分发网络,zh-TW,內容遞送網路,de-DE,Netzwerke für die Bereitstellung von Inhalten,en-US,Content Delivery Networks,fr-FR,Réseaux de diffusion de contenu,it-IT,Reti Gestite di Content Delivery,ja-JP,コンテンツデリバリーネットワーク,ko-KR,컨텐츠 제공 네트워크,pt-BR,Redes de fornecimento de conteúdo,es-ES,Redes de difusión de contenido i377 54 {0,1,3,7} \N zh-CN,动态内容 (CGI-BIN),zh-TW,動態內容 (CGI-BIN),de-DE,Dynamische Inhalte (CGI-BIN),en-US,Dynamic Content,fr-FR,Contenu dynamique (CGI-BIN),it-IT,Contenuto Dinamico (CGI-BIN),ja-JP,ダイナミックコンテンツ(CGI-BIN),ko-KR,동적 컨텐츠(CGI-BIN),pt-BR,Conteúdo Dinâmico (CGI-BIN),es-ES,Contenido dinámico (CGI-BIN) 378 54 {0,1,3,7} \N zh-CN,网络错误,zh-TW,網路錯誤,de-DE,Netzwerkfehler,en-US,Network Errors,fr-FR,Erreurs réseau,it-IT,Errori di Rete,ja-JP,ネットワークエラー,ko-KR,네트워크 오류,pt-BR,Erros de rede,es-ES,Errores de red 379 54 {0,1,3,7} \N zh-CN,尚未归类,zh-TW,尚未歸類,de-DE,Keiner Kategorie zugeordnet,en-US,Uncategorized,fr-FR,Hors Catégorie,it-IT,Non classificato,ja-JP,未分類,ko-KR,비분류,pt-BR,Não classificada,es-ES,Sin clasificar 381 54 {0,1,3,7} \N zh-CN,高风险漏洞,zh-TW,高風險的漏洞,de-DE,Erhöhtes Risiko,en-US,Elevated Exposure,fr-FR,Exposition élevée,it-IT,Esposizione elevata,ja-JP,身元を偽装しているサイト,ko-KR,고급 노출,pt-BR,Exposição elevada,es-ES,Riesgo elevado 1382 54 {0,1,3,7} \N zh-CN,显现的盗用,zh-TW,新興的探測,de-DE,Neue Schwachstellen,en-US,Emerging Exploits,fr-FR,Nouvelles exploitations,it-IT,Ultime minacce,ja-JP,脆弱性をつく可能性のあるサイト,ko-KR,신규 공격 코드,pt-BR,Explorações emergentes,es-ES,Nuevas vulnerabilidades r383 54 {0,1,3,7} \N zh-CN,潜在有害内容,zh-TW,潛在有害的內容,de-DE,Potentiell schädlicher Inhalt,en-US,Potentially Damaging Content,fr-FR,Contenu à risques,it-IT,Contenuto potenzialmente dannoso,ja-JP,潜在的な危険性を含むサイト,ko-KR,잠재적 위해 컨텐츠,pt-BR,Conteúdo potencialmente prejudicial,es-ES,Contenido potencialmente dañino J384 54 {0,1,3,7} \N zh-CN,企业电子邮件,zh-TW,組織 Email,de-DE,Organisationsspezifische E-Mail,en-US,Organizational Email,fr-FR,E-mail organisationnel,it-IT,Posta elettronica aziendale,ja-JP,組織の電子メール,ko-KR,조직 전자메일,pt-BR,Email organizacional,es-ES,Correo electrónico corporativo e institucional 385 54 {0,1,3,7} \N zh-CN,文本和媒体通信,zh-TW,文字和媒體傳訊,de-DE,Text- und Media-Messaging,en-US,Text and Media Messaging,fr-FR,Messagerie texte et multimédia,it-IT,Messaggistica multimediale e di testo,ja-JP,テキストとメディアによるメッセージ配信,ko-KR,텍스트 및 미디어 메시징,pt-BR,Mensagens de mídia e texto,es-ES,Mensajería de texto y otros medios 1386 54 {0,1,3,7} \N zh-CN,URL 转换网站,zh-TW,URL 轉換網站,de-DE,Webseiten zur URL-Übersetzung,en-US,URL Translation Sites,fr-FR,Sites de traduction d'URL,it-IT,Siti di traduzione URL,ja-JP,URL翻訳サイト,ko-KR,URL 번역 사이트,pt-BR,Sites de tradução,es-ES,Sitios de conversión de URL 387 54 {0,1,3,7} \N zh-CN,广告,zh-TW,廣告,de-DE,Werbung,en-US,Advertisements,fr-FR,Publicités,it-IT,Pubblicità,ja-JP,広告宣伝,ko-KR,광고,pt-BR,Anúncios,es-ES,Publicidad 388 54 {0,1,3,7} \N zh-CN,裸体,zh-TW,祼體,de-DE,Nacktheit,en-US,Nudity,fr-FR,Nudité,it-IT,Nudità,ja-JP,ヌード,ko-KR,누드,pt-BR,Nudez,es-ES,Desnudos 389 54 {0,1,3,7} \N zh-CN,成人内容,zh-TW,成人內容,de-DE,Nicht jugendfreie Inhalte,en-US,Adult Content,fr-FR,Contenu pour adultes,it-IT,Contenuto per adulti,ja-JP,アダルト・コンテンツ,ko-KR,성인 컨텐츠,pt-BR,Conteúdo adulto,es-ES,Contenido para adultos 390 54 {0,1,3,7} \N zh-CN,性,zh-TW,性,de-DE,Sex,en-US,Sex,fr-FR,Sexualité,it-IT,Sesso,ja-JP,セックス,ko-KR,섹스,pt-BR,Sexo,es-ES,Sexo i391 54 {0,1,3,7} \N zh-CN,金融信息和服务,zh-TW,金融資料與服務,de-DE,Finanzdaten und Finanzdienstleistungen,en-US,Financial Data and Services,fr-FR,Services Financiers,it-IT,Informazioni e servizi finanziari,ja-JP,金融情報とサービス,ko-KR,금융 정보 및 서비스,pt-BR,Dados e serviços financeiros,es-ES,Datos y servicios financieros 392 54 {0,1,3,7} \N zh-CN,文化机构,zh-TW,文化機構,de-DE,Kulturelle Einrichtungen,en-US,Cultural Institutions,fr-FR,Institutions culturelles,it-IT,Istituzioni Culturali,ja-JP,文化施設,ko-KR,문화단체,pt-BR,Instituições culturais,es-ES,Instituciones culturales 393 54 {0,1,3,7} \N zh-CN,MP3和音乐下载服务,zh-TW,MP3 與音效下載服務,de-DE,MP3 und Dienste zum Herunterladen von Audio-Dateien,en-US,MP3 and Audio Download Services,fr-FR,Services de téléchargement MP3 et audio,it-IT,Servizi per il download di file MP3 e audio,ja-JP,MP3 および音楽ダウンロードサービス,ko-KR,MP3 및 오디오 다운로드 서비스,pt-BR,Serviços de Download de Áudio e MP3 ,es-ES,Servicios de descarga de MP3 o audio 394 54 {0,1,3,7} \N zh-CN,军事,zh-TW,軍事,de-DE,Militär,en-US,Military,fr-FR,Armée,it-IT,Argomenti militari,ja-JP,軍隊,ko-KR,군사,pt-BR,Militar,es-ES,Militar 395 54 {0,1,3,7} \N zh-CN,政治团体,zh-TW,政治團體,de-DE,Politische Gruppen,en-US,Political Organizations,fr-FR,Groupes politiques,it-IT,Gruppi politici,ja-JP,政治団体,ko-KR,정당,pt-BR,Grupos políticos,es-ES,Grupos políticos 396 54 {0,1,3,7} \N zh-CN,普通电子邮件,zh-TW,一般 Email,de-DE,Allgemeine E-Mail,en-US,General Email,fr-FR,E-mail général,it-IT,Posta elettronica generale,ja-JP,一般の電子メール,ko-KR,일반 전자메일,pt-BR,Email geral,es-ES,Correo electrónico general &397 54 {0,1,3,7} \N zh-CN,代理回避,zh-TW,以 Proxy 規避封鎖,de-DE,Umgehung durch Proxy,en-US,Proxy Avoidance,fr-FR,Antiblocage par proxy,it-IT,Elusione via proxy,ja-JP,プロキシによるブロック回避,ko-KR,프록시로 방지,pt-BR,Evitação com Proxy,es-ES,Elusión con proxy p398 54 {0,1,3,7} \N zh-CN,搜索引擎与门户,zh-TW,搜尋引擎與入口網站,de-DE,Suchmaschinen und Portale,en-US,Search Engines and Portals,fr-FR,Moteurs de recherche et portails,it-IT,Motori e portali di ricerca,ja-JP,検索エンジンおよびポータル,ko-KR,검색 엔진 및 포털,pt-BR,Motores de busca e portais,es-ES,Motores de búsqueda y portales 399 54 {0,1,3,7} \N zh-CN,主机托管,zh-TW,網站代管,de-DE,Web Hosting,en-US,Web Hosting,fr-FR,Hébergement de sites Web,it-IT,Web Hosting ,ja-JP,Webホスティング,ko-KR,웹 호스팅,pt-BR,Hospedagem na Web,es-ES,Hospedaje de páginas Web 400 54 {0,1,3,7} \N zh-CN,网络聊天室,zh-TW,網上聊天,de-DE,Web Chat,en-US,Web Chat,fr-FR,Conversations en ligne,it-IT,Web Chat ,ja-JP,Web チャット,ko-KR,웹채팅,pt-BR,Bate-papo na Web,es-ES,Chat en la Web 401 54 {0,1,3,7} \N zh-CN,黑客入侵,zh-TW,駭客入侵,de-DE,Hacking,en-US,Hacking,fr-FR,Piratage,it-IT,Hacking (Pirateria informatica),ja-JP,ハッカー関連,ko-KR,해킹,pt-BR,Hackers,es-ES,Hackers 402 54 {0,1,3,7} \N zh-CN,另类期刊,zh-TW,可選期刊,de-DE,Alternative Journale,en-US,Alternative Journals,fr-FR,Journaux alternatifs,it-IT,Riviste Alternative,ja-JP,娯楽雑誌,ko-KR,대체 저널,pt-BR,Jornais alternativos,es-ES,Publicaciones alternativas 404 54 {0,1,3,7} \N zh-CN,传统宗教,zh-TW,傳統宗教,de-DE,Traditionelle Religionen,en-US,Traditional Religions,fr-FR,Religions traditionnelles,it-IT,Religioni tradizionali,ja-JP,伝統宗教,ko-KR,정통 종교,pt-BR,Religiões tradicionais,es-ES,Religiones tradicionales 405 54 {0,1,3,7} \N zh-CN,餐饮,zh-TW,餐飲,de-DE,Restaurants und Gastronomie,en-US,Restaurants and Dining,fr-FR,Restaurants,it-IT,Ristoranti e Conviti,ja-JP,レストラン&食事,ko-KR,식당 및 음식,pt-BR,Restaurantes,es-ES,Restaurantes y comidas E407 54 {0,1,3,7} \N zh-CN,个人/交友网站,zh-TW,個人/約會,de-DE,Partnersuche,en-US,Personals and Dating,fr-FR,Petites annonces personnelles/Rendez-vous amoureux,it-IT,Relazioni personali e Incontri,ja-JP,出会い、結婚/お見合いサービス,ko-KR,교제/만남,pt-BR,Pessoais/Encontros,es-ES,Personales/ Citas 409 54 {0,1,3,7} \N zh-CN,处方药,zh-TW,處方藥,de-DE,Verschreibungspflichtige Medikamente,en-US,Prescribed Medications,fr-FR,Médicaments sur ordonnance,it-IT,Farmaci prescrittibili,ja-JP,処方薬,ko-KR,처방 의약품,pt-BR,Medicamentos receitados,es-ES,Medicamentos recetados 410 54 {0,1,3,7} \N zh-CN,补充/非管制化合物,zh-TW,補充藥物/非規製合成藥物,de-DE,Präparate und Substanzen ohne gesetzliche Regelung,en-US,Supplements and Unregulated Compounds,fr-FR,Compléments/Substances non réglementées,it-IT,Additivi e Composti non regolati ,ja-JP,栄養補助薬品/ 非規制化合物,ko-KR,보조식품/등록되지 않은 혼합물,pt-BR,Compostos suplementares/não regulados,es-ES,Suplementos y compuestos no regulados 411 54 {0,1,3,7} \N zh-CN,滥用药物,zh-TW,濫用藥物,de-DE,Drogen- und Arzneimittelmissbrauch,en-US,Abused Drugs,fr-FR,Abus de drogues,it-IT,Abuso di droghe,ja-JP,麻薬 /医薬品の乱用,ko-KR,마약,pt-BR,Drogas abusivas,es-ES,Abuso de drogas 412 54 {0,1,3,7} \N zh-CN,选择优先,zh-TW,母親決定權,de-DE,Abtreibungsbefürworter,en-US,Pro-Choice,fr-FR,Pro-avortement,it-IT,Diritto di scelta,ja-JP,妊娠中絶賛成論,ko-KR,낙태찬성론,pt-BR,Escolha própria,es-ES,Pro-decisión 413 54 {0,1,3,7} \N zh-CN,生命优先,zh-TW,胎兒生存權,de-DE,Abtreibungsgegner,en-US,Pro-Life,fr-FR,Anti-avortement,it-IT,Diritto alla vita,ja-JP,妊娠中絶反対論,ko-KR,낙태반대론,pt-BR,Estimulo à vida,es-ES,Pro-vida 414 54 {0,1,3,7} \N zh-CN,性教育,zh-TW,性教育,de-DE,Aufklärung & Sexualerziehung,en-US,Sex Education,fr-FR,Éducation sexuelle,it-IT,Educazione sessuale,ja-JP,性教育,ko-KR,성교육,pt-BR,Educação sexual,es-ES,Educación sexual T415 54 {0,1,3,7} \N zh-CN,女性内衣与泳装,zh-TW,女仕內衣與泳裝,de-DE,Unterwäsche & Bademode,en-US,Lingerie and Swimsuit,fr-FR,Lingerie & maillots de bain,it-IT,Biancheria intima e Costumi da bagno,ja-JP,ランジェリー&水着,ko-KR,란제리 및 수영복,pt-BR,Roupa íntima e de banho,es-ES,Lencería y trajes de baño v416 54 {0,1,3,7} \N zh-CN,在线经纪与交易,zh-TW,線上經紀與交易,de-DE,Online-Brokerage und Handel,en-US,Online Brokerage and Trading,fr-FR,Courtage en ligne,it-IT,Intermediazione e Commercio in linea,ja-JP,オンライン証券&トレーディング,ko-KR,온라인 중계 및 거래,pt-BR,Negociação on-line de ações,es-ES,Corretaje de acciones en línea 417 54 {0,1,3,7} \N zh-CN,教育机构,zh-TW,教育機構,de-DE,Bildungseinrichtungen,en-US,Educational Institutions,fr-FR,Institutions scolaires,it-IT,Istituti Scolastici,ja-JP,教育機関,ko-KR,교육기관,pt-BR,Instituições educacionais,es-ES,Instituciones educativas %418 54 {0,1,3,7} \N zh-CN,即时聊天,zh-TW,即時訊息傳送,de-DE,Instant Messaging,en-US,Instant Messaging,fr-FR,Messagerie instantanée,it-IT,Scambio di Messaggi Istantanei,ja-JP,インスタント・メッセージ,ko-KR,메신저,pt-BR,Instant Messaging,es-ES,Mensajería instantánea 23 55 {0,1,3,7} \N zh-CN,Netease Popo,zh-TW,Netease Popo,de-DE,Netease Popo,en-US,Netease Popo,fr-FR,Netease Popo,it-IT,Netease Popo,ja-JP,Netease Popo,ko-KR,Netease Popo,pt-BR,Netease Popo,es-ES,Netease Popo 26 55 {0,1,3,7} \N zh-CN,NateOn,zh-TW,NateOn,de-DE,NateOn,en-US,NateOn,fr-FR,NateOn,it-IT,NateOn,ja-JP,NateOn,ko-KR,NateOn,pt-BR,NateOn,es-ES,NateOn 29 55 {0,1,3,7} \N zh-CN,Neos,zh-TW,Neos,de-DE,Neos,en-US,Neos,fr-FR,Neos,it-IT,Neos,ja-JP,Neos,ko-KR,Neos,pt-BR,Neos,es-ES,Neos 31 55 {0,1,3,7} \N zh-CN,Meetro,zh-TW,Meetro,de-DE,Meetro,en-US,Meetro,fr-FR,Meetro,it-IT,Meetro,ja-JP,Meetro,ko-KR,Meetro,pt-BR,Meetro,es-ES,Meetro 34 55 {0,1,3,7} \N zh-CN,MySpaceIM,zh-TW,MySpaceIM,de-DE,MySpaceIM,en-US,MySpaceIM,fr-FR,MySpaceIM,it-IT,MySpaceIM,ja-JP,MySpaceIM,ko-KR,MySpaceIM,pt-BR,MySpaceIM,es-ES,MySpaceIM 36 55 {0,1,3,7} \N zh-CN,X-IM,zh-TW,X-IM,de-DE,X-IM,en-US,X-IM,fr-FR,X-IM,it-IT,X-IM,ja-JP,X-IM,ko-KR,X-IM,pt-BR,X-IM,es-ES,X-IM 38 55 {0,1,3,7} \N zh-CN,IMVU,zh-TW,IMVU,de-DE,IMVU,en-US,IMVU,fr-FR,IMVU,it-IT,IMVU,ja-JP,IMVU,ko-KR,IMVU,pt-BR,IMVU,es-ES,IMVU 40 55 {0,1,3,7} \N zh-CN,Xfire,zh-TW,Xfire,de-DE,Xfire,en-US,Xfire,fr-FR,Xfire,it-IT,Xfire,ja-JP,Xfire,ko-KR,Xfire,pt-BR,Xfire,es-ES,Xfire 42 55 {0,1,3,7} \N zh-CN,MSC Messenger,zh-TW,MSC Messenger,de-DE,MSC Messenger,en-US,MSC Messenger,fr-FR,MSC Messenger,it-IT,MSC Messenger,ja-JP,MSC Messenger,ko-KR,MSC Messenger,pt-BR,MSC Messenger,es-ES,MSC Messenger 44 55 {0,1,3,7} \N zh-CN,Yahoo! Mail Chat,zh-TW,Yahoo! Mail Chat,de-DE,Yahoo! Mail Chat,en-US,Yahoo! Mail Chat,fr-FR,Yahoo! Mail Chat,it-IT,Yahoo! Mail Chat,ja-JP,Yahoo! Mail Chat,ko-KR,Yahoo! Mail Chat,pt-BR,Yahoo! Mail Chat,es-ES,Yahoo! Mail Chat 46 55 {0,1,3,7} \N zh-CN,TryFast Messenger,zh-TW,TryFast Messenger,de-DE,TryFast Messenger,en-US,TryFast Messenger,fr-FR,TryFast Messenger,it-IT,TryFast Messenger,ja-JP,TryFast Messenger,ko-KR,TryFast Messenger,pt-BR,TryFast Messenger,es-ES,TryFast Messenger 48 55 {0,1,3,7} \N zh-CN,VZOchat,zh-TW,VZOchat,de-DE,VZOchat,en-US,VZOchat,fr-FR,VZOchat,it-IT,VZOchat,ja-JP,VZOchat,ko-KR,VZOchat,pt-BR,VZOchat,es-ES,VZOchat 50 55 {0,1,3,7} \N zh-CN,MSN Messenger,zh-TW,MSN Messenger,de-DE,MSN Messenger,en-US,MSN Messenger,fr-FR,MSN Messenger,it-IT,MSN Messenger,ja-JP,MSN メッセンジャー,ko-KR,MSN 메신저,pt-BR,MSN Messenger,es-ES,MSN Messenger 53 55 {0,1,3,7} \N zh-CN,AOL Instant Messenger or ICQ,zh-TW,AOL Instant Messenger or ICQ,de-DE,AOL Instant Messenger or ICQ,en-US,AOL Instant Messenger or ICQ,fr-FR,AOL Instant Messenger or ICQ,it-IT,AOL Instant Messenger o ICQ,ja-JP,AOL インスタントメッセンジャー または ICQ,ko-KR,AOL Instant Messenger or ICQ,pt-BR,AOL Instant Messenger or ICQ,es-ES,AOL Mensajero Instantáneo o ICQ 57 55 {0,1,3,7} \N zh-CN,Yahoo! Messenger,zh-TW,Yahoo! Messenger,de-DE,Yahoo! Messenger,en-US,Yahoo! Messenger,fr-FR,Yahoo! Messenger,it-IT,Yahoo! Messenger,ja-JP,ヤフー! メッセンジャー,ko-KR,야후! 메신저,pt-BR,Yahoo! Messenger,es-ES,Yahoo! Messenger 60 55 {0,1,3,7} \N zh-CN,SIMP (Jabber),zh-TW,SIMP (Jabber),de-DE,SIMP (Jabber),en-US,SIMP (Jabber),fr-FR,SIMP (Jabber),it-IT,SIMP (Jabber),ja-JP,SIMP (Jabber),ko-KR,SIMP (Jabber),pt-BR,SIMP (Jabber),es-ES,SIMP (Jabber) 65 55 {0,1,3,7} \N zh-CN,腾讯 QQ (请参阅知识库),zh-TW,騰訊 QQ (請參閱知識庫),de-DE,Tencent QQ (näheres in der Knowledge Base),en-US,Tencent QQ (see the Knowledge Base),fr-FR,Tencent QQ (consultez la base de connaissances),it-IT,Tencent QQ (vedere la Knowledge Base),ja-JP,Tencent QQ (Knowledge Base を参照してください),ko-KR,Tencent QQ (Knowledge Base를 참조하십시오.),pt-BR,Tencent QQ (consulte a Knowledge Base),es-ES,Tencent QQ (ver Knowledge Base) w69 55 {0,1,3,7} \N zh-CN,IRC,zh-TW,IRC,de-DE,IRC,en-US,IRC,fr-FR,IRC,it-IT,IRC,ja-JP,IRC,ko-KR,IRC,pt-BR,IRC,es-ES,IRC 73 55 {0,1,3,7} \N zh-CN,Gadu-Gadu,zh-TW,Gadu-Gadu,de-DE,Gadu-Gadu,en-US,Gadu-Gadu,fr-FR,Gadu-Gadu,it-IT,Gadu-Gadu,ja-JP,Gadu-Gadu,ko-KR,Gadu-Gadu,pt-BR,Gadu-Gadu,es-ES,Gadu-Gadu 76 55 {0,1,3,7} \N zh-CN,Camfrog,zh-TW,Camfrog,de-DE,Camfrog,en-US,Camfrog,fr-FR,Camfrog,it-IT,Camfrog,ja-JP,Camfrog,ko-KR,Camfrog,pt-BR,Camfrog,es-ES,Camfrog 79 55 {0,1,3,7} \N zh-CN,Paltalk,zh-TW,Paltalk,de-DE,Paltalk,en-US,Paltalk,fr-FR,Paltalk,it-IT,Paltalk,ja-JP,Paltalk,ko-KR,Paltalk,pt-BR,Paltalk,es-ES,Paltalk 81 55 {0,1,3,7} \N zh-CN,Eyeball Chat,zh-TW,Eyeball Chat,de-DE,Eyeball Chat,en-US,Eyeball Chat,fr-FR,Eyeball Chat,it-IT,Eyeball Chat,ja-JP,Eyeball Chat,ko-KR,Eyeball Chat,pt-BR,Eyeball Chat,es-ES,Eyeball Chat 83 55 {0,1,3,7} \N zh-CN,Google Talk,zh-TW,Google Talk,de-DE,Google Talk,en-US,Google Talk,fr-FR,Google Talk,it-IT,Google Talk,ja-JP,Google Talk,ko-KR,Google Talk,pt-BR,Google Talk,es-ES,Google Talk 86 55 {0,1,3,7} \N zh-CN,Wengo,zh-TW,Wengo,de-DE,Wengo,en-US,Wengo,fr-FR,Wengo,it-IT,Wengo,ja-JP,Wengo,ko-KR,Wengo,pt-BR,Wengo,es-ES,Wengo 88 55 {0,1,3,7} \N zh-CN,Gizmo Project,zh-TW,Gizmo Project,de-DE,Gizmo Project,en-US,Gizmo Project,fr-FR,Gizmo Project,it-IT,Gizmo Project,ja-JP,Gizmo Project,ko-KR,Gizmo Project,pt-BR,Gizmo Project,es-ES,Gizmo Project 91 55 {0,1,3,7} \N zh-CN,Wavago,zh-TW,Wavago,de-DE,Wavago,en-US,Wavago,fr-FR,Wavago,it-IT,Wavago,ja-JP,Wavago,ko-KR,Wavago,pt-BR,Wavago,es-ES,Wavago 95 55 {0,1,3,7} \N zh-CN,Woize,zh-TW,Woize,de-DE,Woize,en-US,Woize,fr-FR,Woize,it-IT,Woize,ja-JP,Woize,ko-KR,Woize,pt-BR,Woize,es-ES,Woize 98 55 {0,1,3,7} \N zh-CN,HTTP,zh-TW,HTTP,de-DE,HTTP,en-US,HTTP,fr-FR,HTTP,it-IT,HTTP,ja-JP,HTTP,ko-KR,HTTP,pt-BR,HTTP,es-ES,HTTP 100 55 {0,1,3,7} \N zh-CN,HTTPS,zh-TW,HTTPS,de-DE,HTTPS,en-US,HTTPS,fr-FR,HTTPS,it-IT,HTTPS,ja-JP,HTTPS,ko-KR,HTTPS,pt-BR,HTTPS,es-ES,HTTPS 103 55 {0,1,3,7} \N zh-CN,MyIVO,zh-TW,MyIVO,de-DE,MyIVO,en-US,MyIVO,fr-FR,MyIVO,it-IT,MyIVO,ja-JP,MyIVO,ko-KR,MyIVO,pt-BR,MyIVO,es-ES,MyIVO 105 55 {0,1,3,7} \N zh-CN,SoonR,zh-TW,SoonR,de-DE,SoonR,en-US,SoonR,fr-FR,SoonR,it-IT,SoonR,ja-JP,SoonR,ko-KR,SoonR,pt-BR,SoonR,es-ES,SoonR 108 55 {0,1,3,7} \N zh-CN,SoftEther PacketiX,zh-TW,SoftEther PacketiX,de-DE,SoftEther PacketiX,en-US,SoftEther PacketiX,fr-FR,SoftEther PacketiX,it-IT,SoftEther PacketiX,ja-JP,SoftEther PacketiX,ko-KR,SoftEther PacketiX,pt-BR,SoftEther PacketiX,es-ES,SoftEther PacketiX 111 55 {0,1,3,7} \N zh-CN,Vyew,zh-TW,Vyew,de-DE,Vyew,en-US,Vyew,fr-FR,Vyew,it-IT,Vyew,ja-JP,Vyew,ko-KR,Vyew,pt-BR,Vyew,es-ES,Vyew 113 55 {0,1,3,7} \N zh-CN,TeamViewer,zh-TW,TeamViewer,de-DE,TeamViewer,en-US,TeamViewer,fr-FR,TeamViewer,it-IT,TeamViewer,ja-JP,TeamViewer,ko-KR,TeamViewer,pt-BR,TeamViewer,es-ES,TeamViewer 116 55 {0,1,3,7} \N zh-CN,BeInSync,zh-TW,BeInSync,de-DE,BeInSync,en-US,BeInSync,fr-FR,BeInSync,it-IT,BeInSync,ja-JP,BeInSync,ko-KR,BeInSync,pt-BR,BeInSync,es-ES,BeInSync 119 55 {0,1,3,7} \N zh-CN,Zolved,zh-TW,Zolved,de-DE,Zolved,en-US,Zolved,fr-FR,Zolved,it-IT,Zolved,ja-JP,Zolved,ko-KR,Zolved,pt-BR,Zolved,es-ES,Zolved 121 55 {0,1,3,7} \N zh-CN,WallCooler VPN,zh-TW,WallCooler VPN,de-DE,WallCooler VPN,en-US,WallCooler VPN,fr-FR,WallCooler VPN,it-IT,WallCooler VPN,ja-JP,WallCooler VPN,ko-KR,WallCooler VPN,pt-BR,WallCooler VPN,es-ES,WallCooler VPN 124 55 {0,1,3,7} \N zh-CN,Telnet,zh-TW,Telnet,de-DE,Telnet,en-US,Telnet,fr-FR,Telnet,it-IT,Telnet,ja-JP,Telnet,ko-KR,텔넷,pt-BR,Telnet,es-ES,Telnet 126 55 {0,1,3,7} \N zh-CN,pptp,zh-TW,pptp,de-DE,pptp,en-US,pptp,fr-FR,pptp,it-IT,pptp,ja-JP,pptp,ko-KR,pptp,pt-BR,pptp,es-ES,pptp x128 55 {0,1,3,7} \N zh-CN,ssh,zh-TW,ssh,de-DE,ssh,en-US,ssh,fr-FR,ssh,it-IT,ssh,ja-JP,ssh,ko-KR,ssh,pt-BR,ssh,es-ES,ssh 131 55 {0,1,3,7} \N zh-CN,pcANYWHERE,zh-TW,pcANYWHERE,de-DE,pcANYWHERE,en-US,pcANYWHERE,fr-FR,pcANYWHERE,it-IT,pcANYWHERE,ja-JP,pcANYWHERE,ko-KR,pcANYWHERE,pt-BR,pcANYWHERE,es-ES,pcANYWHERE 133 55 {0,1,3,7} \N zh-CN,pcTELECOMMUTE,zh-TW,pcTELECOMMUTE,de-DE,pcTELECOMMUTE,en-US,pcTELECOMMUTE,fr-FR,pcTELECOMMUTE,it-IT,pcTELECOMMUTE,ja-JP,pcTELECOMMUTE,ko-KR,pcTELECOMMUTE,pt-BR,pcTELECOMMUTE,es-ES,pcTELECOMMUTE x135 55 {0,1,3,7} \N zh-CN,VNC,zh-TW,VNC,de-DE,VNC,en-US,VNC,fr-FR,VNC,it-IT,VNC,ja-JP,VNC,ko-KR,VNC,pt-BR,VNC,es-ES,VNC 138 55 {0,1,3,7} \N zh-CN,Terminal Services,zh-TW,Terminal Services,de-DE,Terminal Services,en-US,Terminal Services,fr-FR,Terminal Services,it-IT,Servizi terminal,ja-JP,Terminal Services,ko-KR,Terminal Services,pt-BR,Terminal Services,es-ES,Terminal Services 140 55 {0,1,3,7} \N zh-CN,Citrix,zh-TW,Citrix,de-DE,Citrix,en-US,Citrix,fr-FR,Citrix,it-IT,Citrix,ja-JP,Citrix,ko-KR,Citrix,pt-BR,Citrix,es-ES,Citrix 144 55 {0,1,3,7} \N zh-CN,LogMeIn,zh-TW,LogMeIn,de-DE,LogMeIn,en-US,LogMeIn,fr-FR,LogMeIn,it-IT,LogMeIn,ja-JP,LogMeIn,ko-KR,LogMeIn,pt-BR,LogMeIn,es-ES,LogMeIn 147 55 {0,1,3,7} \N zh-CN,WebEx (PCNow & Support Center),zh-TW,WebEx (PCNow & Support Center),de-DE,WebEx (PCNow & Support Center),en-US,WebEx (PCNow & Support Center),fr-FR,WebEx (PCNow & Support Center),it-IT,WebEx (PCNow & Support Center),ja-JP,WebEx (PCNow & Support Center),ko-KR,WebEx (PCNow & Support Center),pt-BR,WebEx (PCNow & Support Center),es-ES,WebEx (PCNow & Support Center) 151 55 {0,1,3,7} \N zh-CN,Toonel,zh-TW,Toonel,de-DE,Toonel,en-US,Toonel,fr-FR,Toonel,it-IT,Toonel,ja-JP,Toonel,ko-KR,Toonel,pt-BR,Toonel,es-ES,Toonel 153 55 {0,1,3,7} \N zh-CN,TongTongTong,zh-TW,TongTongTong,de-DE,TongTongTong,en-US,TongTongTong,fr-FR,TongTongTong,it-IT,TongTongTong,ja-JP,TongTongTong,ko-KR,TongTongTong,pt-BR,TongTongTong,es-ES,TongTongTong 155 55 {0,1,3,7} \N zh-CN,SocksOnline,zh-TW,SocksOnline,de-DE,SocksOnline,en-US,SocksOnline,fr-FR,SocksOnline,it-IT,SocksOnline,ja-JP,SocksOnline,ko-KR,SocksOnline,pt-BR,SocksOnline,es-ES,SocksOnline 159 55 {0,1,3,7} \N zh-CN,Hopster,zh-TW,Hopster,de-DE,Hopster,en-US,Hopster,fr-FR,Hopster,it-IT,Hopster,ja-JP,Hopster,ko-KR,Hopster,pt-BR,Hopster,es-ES,Hopster 163 55 {0,1,3,7} \N zh-CN,GhostSurf,zh-TW,GhostSurf,de-DE,GhostSurf,en-US,GhostSurf,fr-FR,GhostSurf,it-IT,GhostSurf,ja-JP,GhostSurf,ko-KR,GhostSurf,pt-BR,GhostSurf,es-ES,GhostSurf 6165 55 {0,1,3,7} \N zh-CN,Google Web Accelerator,zh-TW,Google Web Accelerator,de-DE,Google Web Accelerator,en-US,Google Web Accelerator,fr-FR,Google Web Accelerator,it-IT,Google Web Accelerator,ja-JP,Google Web Accelerator,ko-KR,Google Web Accelerator,pt-BR,Google Web Accelerator,es-ES,Google Web Accelerator x168 55 {0,1,3,7} \N zh-CN,Tor,zh-TW,Tor,de-DE,Tor,en-US,Tor,fr-FR,Tor,it-IT,Tor,ja-JP,Tor,ko-KR,Tor,pt-BR,Tor,es-ES,Tor 170 55 {0,1,3,7} \N zh-CN,RealTunnel,zh-TW,RealTunnel,de-DE,RealTunnel,en-US,RealTunnel,fr-FR,RealTunnel,it-IT,RealTunnel,ja-JP,RealTunnel,ko-KR,RealTunnel,pt-BR,RealTunnel,es-ES,RealTunnel x173 55 {0,1,3,7} \N zh-CN,JAP,zh-TW,JAP,de-DE,JAP,en-US,JAP,fr-FR,JAP,it-IT,JAP,ja-JP,JAP,ko-KR,JAP,pt-BR,JAP,es-ES,JAP 175 55 {0,1,3,7} \N zh-CN,Your Freedom,zh-TW,Your Freedom,de-DE,Your Freedom,en-US,Your Freedom,fr-FR,Your Freedom,it-IT,Your Freedom,ja-JP,Your Freedom,ko-KR,Your Freedom,pt-BR,Your Freedom,es-ES,Your Freedom 179 55 {0,1,3,7} \N zh-CN,Slingbox,zh-TW,Slingbox,de-DE,Slingbox,en-US,Slingbox,fr-FR,Slingbox,it-IT,Slingbox,ja-JP,Slingbox,ko-KR,Slingbox,pt-BR,Slingbox,es-ES,Slingbox 183 55 {0,1,3,7} \N zh-CN,Finetune,zh-TW,Finetune,de-DE,Finetune,en-US,Finetune,fr-FR,Finetune,it-IT,Finetune,ja-JP,Finetune,ko-KR,Finetune,pt-BR,Finetune,es-ES,Finetune 185 55 {0,1,3,7} \N zh-CN,Metacafe,zh-TW,Metacafe,de-DE,Metacafe,en-US,Metacafe,fr-FR,Metacafe,it-IT,Metacafe,ja-JP,Metacafe,ko-KR,Metacafe,pt-BR,Metacafe,es-ES,Metacafe 187 55 {0,1,3,7} \N zh-CN,Social FM,zh-TW,Social FM,de-DE,Social FM,en-US,Social FM,fr-FR,Social FM,it-IT,Social FM,ja-JP,Social FM,ko-KR,Social FM,pt-BR,Social FM,es-ES,Social FM 190 55 {0,1,3,7} \N zh-CN,Liquid Audio,zh-TW,Liquid Audio,de-DE,Liquid Audio,en-US,Liquid Audio,fr-FR,Liquid Audio,it-IT,Liquid Audio,ja-JP,Liquid Audio,ko-KR,Liquid Audio,pt-BR,Liquid Audio,es-ES,Liquid Audio 192 55 {0,1,3,7} \N zh-CN,Windows Media,zh-TW,Windows Media,de-DE,Windows Media,en-US,Windows Media,fr-FR,Windows Media,it-IT,Windows Media,ja-JP,Windows メディア,ko-KR,Windows Media,pt-BR,Mídia Windows,es-ES,Windows Media 196 55 {0,1,3,7} \N zh-CN,iTunes,zh-TW,iTunes,de-DE,iTunes,en-US,iTunes,fr-FR,iTunes,it-IT,iTunes,ja-JP,iTunes,ko-KR,iTunes,pt-BR,iTunes,es-ES,iTunes h198 55 {0,1,3,7} \N zh-CN,RTSP (QuickTime RealPlayer),zh-TW,RTSP (QuickTime RealPlayer),de-DE,RTSP (QuickTime RealPlayer),en-US,RTSP (QuickTime RealPlayer),fr-FR,RTSP (QuickTime RealPlayer),it-IT,RTSP (QuickTime RealPlayer),ja-JP,RTSP (QuickTime RealPlayer),ko-KR,RTSP (QuickTime RealPlayer),pt-BR,RTSP (QuickTime RealPlayer),es-ES,RTSP (QuickTime RealPlayer) 202 55 {0,1,3,7} \N zh-CN,SHOUTcast,zh-TW,SHOUTcast,de-DE,SHOUTcast,en-US,SHOUTcast,fr-FR,SHOUTcast,it-IT,SHOUTcast,ja-JP,SHOUTcast,ko-KR,SHOUTcast,pt-BR,SHOUTcast,es-ES,SHOUTcast 205 55 {0,1,3,7} \N zh-CN,JetCast,zh-TW,JetCast,de-DE,JetCast,en-US,JetCast,fr-FR,JetCast,it-IT,JetCast,ja-JP,JetCast,ko-KR,JetCast,pt-BR,JetCast,es-ES,JetCast 208 55 {0,1,3,7} \N zh-CN,Google Video,zh-TW,Google Video,de-DE,Google Video,en-US,Google Video,fr-FR,Google Video,it-IT,Google Video,ja-JP,Google Video,ko-KR,Google Video,pt-BR,Google Video,es-ES,Google Video 211 55 {0,1,3,7} \N zh-CN,PeerCast,zh-TW,PeerCast,de-DE,PeerCast,en-US,PeerCast,fr-FR,PeerCast,it-IT,PeerCast,ja-JP,PeerCast,ko-KR,PeerCast,pt-BR,PeerCast,es-ES,PeerCast 214 55 {0,1,3,7} \N zh-CN,AOL Radio,zh-TW,AOL Radio,de-DE,AOL Radio,en-US,AOL Radio,fr-FR,AOL Radio,it-IT,AOL Radio,ja-JP,AOL Radio,ko-KR,AOL Radio,pt-BR,AOL Radio,es-ES,AOL Radio @218 55 {0,1,3,7} \N zh-CN,FastTrack (Kazaa iMesh),zh-TW,FastTrack (Kazaa iMesh),de-DE,FastTrack (Kazaa iMesh),en-US,FastTrack (Kazaa iMesh),fr-FR,FastTrack (Kazaa iMesh),it-IT,FastTrack (Kazaa iMesh),ja-JP,FastTrack (Kazaa iMesh),ko-KR,FastTrack (Kazaa iMesh),pt-BR,FastTrack (Kazaa iMesh),es-ES,FastTrack (Kazaa iMesh) 221 55 {0,1,3,7} \N zh-CN,FolderShare,zh-TW,FolderShare,de-DE,FolderShare,en-US,FolderShare,fr-FR,FolderShare,it-IT,FolderShare,ja-JP,FolderShare,ko-KR,FolderShare,pt-BR,FolderShare,es-ES,FolderShare 224 55 {0,1,3,7} \N zh-CN,ClubBox,zh-TW,ClubBox,de-DE,ClubBox,en-US,ClubBox,fr-FR,ClubBox,it-IT,ClubBox,ja-JP,ClubBox,ko-KR,ClubBox,pt-BR,ClubBox,es-ES,ClubBox 227 55 {0,1,3,7} \N zh-CN,BoxCloud,zh-TW,BoxCloud,de-DE,BoxCloud,en-US,BoxCloud,fr-FR,BoxCloud,it-IT,BoxCloud,ja-JP,BoxCloud,ko-KR,BoxCloud,pt-BR,BoxCloud,es-ES,BoxCloud 229 55 {0,1,3,7} \N zh-CN,Pando,zh-TW,Pando,de-DE,Pando,en-US,Pando,fr-FR,Pando,it-IT,Pando,ja-JP,Pando,ko-KR,Pando,pt-BR,Pando,es-ES,Pando 231 55 {0,1,3,7} \N zh-CN,Damaka,zh-TW,Damaka,de-DE,Damaka,en-US,Damaka,fr-FR,Damaka,it-IT,Damaka,ja-JP,Damaka,ko-KR,Damaka,pt-BR,Damaka,es-ES,Damaka 233 55 {0,1,3,7} \N zh-CN,GigaTribe,zh-TW,GigaTribe,de-DE,GigaTribe,en-US,GigaTribe,fr-FR,GigaTribe,it-IT,GigaTribe,ja-JP,GigaTribe,ko-KR,GigaTribe,pt-BR,GigaTribe,es-ES,GigaTribe 235 55 {0,1,3,7} \N zh-CN,Onshare,zh-TW,Onshare,de-DE,Onshare,en-US,Onshare,fr-FR,Onshare,it-IT,Onshare,ja-JP,Onshare,ko-KR,Onshare,pt-BR,Onshare,es-ES,Onshare 237 55 {0,1,3,7} \N zh-CN,SoulSeek,zh-TW,SoulSeek,de-DE,SoulSeek,en-US,SoulSeek,fr-FR,SoulSeek,it-IT,SoulSeek,ja-JP,SoulSeek,ko-KR,SoulSeek,pt-BR,SoulSeek,es-ES,SoulSeek 239 55 {0,1,3,7} \N zh-CN,Raketu,zh-TW,Raketu,de-DE,Raketu,en-US,Raketu,fr-FR,Raketu,it-IT,Raketu,ja-JP,Raketu,ko-KR,Raketu,pt-BR,Raketu,es-ES,Raketu 241 55 {0,1,3,7} \N zh-CN,MindSpring,zh-TW,MindSpring,de-DE,MindSpring,en-US,MindSpring,fr-FR,MindSpring,it-IT,MindSpring,ja-JP,MindSpring,ko-KR,MindSpring,pt-BR,MindSpring,es-ES,MindSpring 243 55 {0,1,3,7} \N zh-CN,eDonkey,zh-TW,eDonkey,de-DE,eDonkey,en-US,eDonkey,fr-FR,eDonkey,it-IT,eDonkey,ja-JP,eDonkey,ko-KR,eDonkey,pt-BR,eDonkey,es-ES,eDonkey 245 55 {0,1,3,7} \N zh-CN,Hotline Connect,zh-TW,Hotline Connect,de-DE,Hotline Connect,en-US,Hotline Connect,fr-FR,Hotline Connect,it-IT,Hotline Connect,ja-JP,Hotline Connect,ko-KR,Hotline Connect,pt-BR,Hotline Connect,es-ES,Hotline Connect 247 55 {0,1,3,7} \N zh-CN,BitTorrent,zh-TW,BitTorrent,de-DE,BitTorrent,en-US,BitTorrent,fr-FR,BitTorrent,it-IT,BitTorrent,ja-JP,BitTorrent,ko-KR,BitTorrent,pt-BR,BitTorrent,es-ES,BitTorrent 254 55 {0,1,3,7} \N zh-CN,Skype,zh-TW,Skype,de-DE,Skype,en-US,Skype,fr-FR,Skype,it-IT,Skype,ja-JP,Skype,ko-KR,Skype,pt-BR,Skype,es-ES,Skype 258 55 {0,1,3,7} \N zh-CN,EZPeer,zh-TW,EZPeer,de-DE,EZPeer,en-US,EZPeer,fr-FR,EZPeer,it-IT,EZPeer,ja-JP,EZPeer,ko-KR,EZPeer,pt-BR,EZPeer,es-ES,EZPeer 262 55 {0,1,3,7} \N zh-CN,DirectConnect,zh-TW,DirectConnect,de-DE,DirectConnect,en-US,DirectConnect,fr-FR,DirectConnect,it-IT,DirectConnect,ja-JP,DirectConnect,ko-KR,DirectConnect,pt-BR,DirectConnect,es-ES,DirectConnect 264 55 {0,1,3,7} \N zh-CN,Qnext,zh-TW,Qnext,de-DE,Qnext,en-US,Qnext,fr-FR,Qnext,it-IT,Qnext,ja-JP,Qnext,ko-KR,Qnext,pt-BR,Qnext,es-ES,Qnext 267 55 {0,1,3,7} \N zh-CN,Project Neon,zh-TW,Project Neon,de-DE,Project Neon,en-US,Project Neon,fr-FR,Project Neon,it-IT,Project Neon,ja-JP,Project Neon,ko-KR,Project Neon,pt-BR,Project Neon,es-ES,Project Neon 269 55 {0,1,3,7} \N zh-CN,Hamachi,zh-TW,Hamachi,de-DE,Hamachi,en-US,Hamachi,fr-FR,Hamachi,it-IT,Hamachi,ja-JP,Hamachi,ko-KR,Hamachi,pt-BR,Hamachi,es-ES,Hamachi T271 55 {0,1,3,7} \N zh-CN,Gnutella (Morpheus Xolox),zh-TW,Gnutella (Morpheus Xolox),de-DE,Gnutella (Morpheus Xolox),en-US,Gnutella (Morpheus Xolox),fr-FR,Gnutella (Morpheus Xolox),it-IT,Gnutella (Morpheus Xolox),ja-JP,Gnutella (Morpheus Xolox),ko-KR,Gnutella (Morpheus Xolox),pt-BR,Gnutella (Morpheus Xolox),es-ES,Gnutella (Morpheus Xolox) x275 55 {0,1,3,7} \N zh-CN,FTP,zh-TW,FTP,de-DE,FTP,en-US,FTP,fr-FR,FTP,it-IT,FTP,ja-JP,FTP,ko-KR,FTP,pt-BR,FTP,es-ES,FTP 277 55 {0,1,3,7} \N zh-CN,Gopher,zh-TW,Gopher,de-DE,Gopher,en-US,Gopher,fr-FR,Gopher,it-IT,Gopher,ja-JP,Gopher,ko-KR,Gopher,pt-BR,Gopher,es-ES,Gopher 279 55 {0,1,3,7} \N zh-CN,WAIS,zh-TW,WAIS,de-DE,WAIS,en-US,WAIS,fr-FR,WAIS,it-IT,WAIS,ja-JP,WAIS,ko-KR,WAIS,pt-BR,WAIS,es-ES,WAIS 282 55 {0,1,3,7} \N zh-CN,SMTP,zh-TW,SMTP,de-DE,SMTP,en-US,SMTP,fr-FR,SMTP,it-IT,SMTP,ja-JP,SMTP,ko-KR,SMTP,pt-BR,SMTP,es-ES,SMTP 284 55 {0,1,3,7} \N zh-CN,POP3,zh-TW,POP3,de-DE,POP3,en-US,POP3,fr-FR,POP3,it-IT,POP3,ja-JP,POP3,ko-KR,POP3,pt-BR,POP3,es-ES,POP3 286 55 {0,1,3,7} \N zh-CN,Lotus Notes,zh-TW,Lotus Notes,de-DE,Lotus Notes,en-US,Lotus Notes,fr-FR,Lotus Notes,it-IT,Lotus Notes,ja-JP,Lotus Notes,ko-KR,Lotus Notes,pt-BR,Lotus Notes,es-ES,Lotus Notes 288 55 {0,1,3,7} \N zh-CN,NetMeeting,zh-TW,NetMeeting,de-DE,NetMeeting,en-US,NetMeeting,fr-FR,NetMeeting,it-IT,NetMeeting,ja-JP,NetMeeting,ko-KR,NetMeeting,pt-BR,NetMeeting,es-ES,NetMeeting 290 55 {0,1,3,7} \N zh-CN,IMAP,zh-TW,IMAP,de-DE,IMAP,en-US,IMAP,fr-FR,IMAP,it-IT,IMAP,ja-JP,IMAP,ko-KR,IMAP,pt-BR,IMAP,es-ES,IMAP 292 55 {0,1,3,7} \N zh-CN,Microsoft HTTPMail,zh-TW,Microsoft HTTPMail,de-DE,Microsoft HTTPMail,en-US,Microsoft HTTPMail,fr-FR,Microsoft HTTPMail,it-IT,Microsoft HTTPMail,ja-JP,Microsoft HTTPMail,ko-KR,Microsoft HTTPMail,pt-BR,Microsoft HTTPMail,es-ES,Microsoft HTTPMail 295 55 {0,1,3,7} \N zh-CN,SOCKS 5,zh-TW,SOCKS 5,de-DE,SOCKS 5,en-US,SOCKS 5,fr-FR,SOCKS 5,it-IT,SOCKS 5,ja-JP,SOCKS 5,ko-KR,SOCKS 5,pt-BR,SOCKS 5,es-ES,SOCKS 5 297 55 {0,1,3,7} \N zh-CN,daytime,zh-TW,daytime,de-DE,daytime,en-US,daytime,fr-FR,daytime,it-IT,daytime,ja-JP,daytime,ko-KR,daytime,pt-BR,daytime,es-ES,daytime 299 55 {0,1,3,7} \N zh-CN,finger,zh-TW,finger,de-DE,finger,en-US,finger,fr-FR,finger,it-IT,finger,ja-JP,finger,ko-KR,finger,pt-BR,finger,es-ES,finger 301 55 {0,1,3,7} \N zh-CN,ident,zh-TW,ident,de-DE,ident,en-US,ident,fr-FR,ident,it-IT,ident,ja-JP,ident,ko-KR,ident,pt-BR,ident,es-ES,ident 303 55 {0,1,3,7} \N zh-CN,LDAP,zh-TW,LDAP,de-DE,LDAP,en-US,LDAP,fr-FR,LDAP,it-IT,LDAP,ja-JP,LDAP,ko-KR,LDAP,pt-BR,LDAP,es-ES,LDAP x305 55 {0,1,3,7} \N zh-CN,NTP,zh-TW,NTP,de-DE,NTP,en-US,NTP,fr-FR,NTP,it-IT,NTP,ja-JP,NTP,ko-KR,NTP,pt-BR,NTP,es-ES,NTP 307 55 {0,1,3,7} \N zh-CN,OpenWindows,zh-TW,OpenWindows,de-DE,OpenWindows,en-US,OpenWindows,fr-FR,OpenWindows,it-IT,OpenWindows,ja-JP,OpenWindows,ko-KR,OpenWindows,pt-BR,OpenWindows,es-ES,OpenWindows x309 55 {0,1,3,7} \N zh-CN,NFS,zh-TW,NFS,de-DE,NFS,en-US,NFS,fr-FR,NFS,it-IT,NFS,ja-JP,NFS,ko-KR,NFS,pt-BR,NFS,es-ES,NFS 312 55 {0,1,3,7} \N zh-CN,NNTP,zh-TW,NNTP,de-DE,NNTP,en-US,NNTP,fr-FR,NNTP,it-IT,NNTP,ja-JP,NNTP,ko-KR,NNTP,pt-BR,NNTP,es-ES,NNTP 315 55 {0,1,3,7} \N zh-CN,SQL Net,zh-TW,SQL Net,de-DE,SQL Net,en-US,SQL Net,fr-FR,SQL Net,it-IT,SQL Net,ja-JP,SQL Net,ko-KR,SQL Net,pt-BR,SQL Net,es-ES,SQL Net d448 61 {0,1,3,7} \N zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de red 449 61 {0,1,3,7} \N zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legal 450 61 {0,1,3,7} \N zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividad 451 61 {0,1,3,7} \N zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridad 452 61 {0,1,3,7} \N zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajo 622 64 {0,1,3,7} \N zh-CN,即时消息发送,zh-TW,即時訊息傳送,de-DE,Instant Messaging,en-US,Instant Messaging / Chat,fr-FR,Messagerie instantanée,it-IT,Messaggi Istantanei / Chat,ja-JP,インスタント・メッセージング,ko-KR,메신저/채팅,pt-BR,Instant Messaging,es-ES,Mensaje instantáneo }97 64 {0,1,3,7} \N zh-CN,Web,zh-TW,Web,de-DE,Web,en-US,Web,fr-FR,Web,it-IT,Web,ja-JP,ウェブ,ko-KR,웹,pt-BR,Web,es-ES,Web 102 64 {0,1,3,7} \N zh-CN,远程访问,zh-TW,遠端存取,de-DE,Remote-Zugriff,en-US,Remote Access,fr-FR,Accès à distance,it-IT,Accesso Remoto,ja-JP,リモートアクセス,ko-KR,원격 액세스,pt-BR,Acesso Remoto,es-ES,Acceso remoto &150 64 {0,1,3,7} \N zh-CN,代理回避,zh-TW,以 Proxy 規避封鎖,de-DE,Umgehung durch Proxy,en-US,Proxy Avoidance,fr-FR,Antiblocage par proxy,it-IT,Elusione via proxy,ja-JP,プロキシによるブロック回避,ko-KR,프록시로 방지,pt-BR,Evitação com Proxy,es-ES,Elusión con proxy 178 64 {0,1,3,7} \N zh-CN,流媒体,zh-TW,串流媒體,de-DE,Streaming Media,en-US,Streaming Media,fr-FR,Médias en temps réel,it-IT,Streaming Media,ja-JP,ストリーミング・メディア,ko-KR,스트리밍 미디어,pt-BR,Mídia em fluxo,es-ES,Medios de transmisión M217 64 {0,1,3,7} \N zh-CN,P2P 文件共享,zh-TW,P2P 檔案共用,de-DE,Peer-to-Peer-Datenaustausch,en-US,P2P File Sharing,fr-FR,Partage de fichiers poste à poste,it-IT,Scambio di File Peer-to-Peer ,ja-JP,P2P ファイル共有,ko-KR,P2P(Peer to Peer) 파일 공유,pt-BR,Compartilhamento de arquivo P2P,es-ES,Compartir archivo P2P 274 64 {0,1,3,7} \N zh-CN,文件传送,zh-TW,檔案傳輸,de-DE,Datentransfer,en-US,File Transfer,fr-FR,Transfert de fichiers,it-IT,Trasferimento di File,ja-JP,ファイル転送,ko-KR,파일 전송,pt-BR,Transferência de arquivo,es-ES,Transferencia de archivos 281 64 {0,1,3,7} \N zh-CN,邮件,zh-TW,郵件,de-DE,E-Mail,en-US,Mail and Collaborative Tools,fr-FR,Courrier électronique,it-IT,Posta Elettronica e Strumenti collaborativi,ja-JP,メール,ko-KR,메일,pt-BR,Correio,es-ES,Correo 294 64 {0,1,3,7} \N zh-CN,系统,zh-TW,系統,de-DE,System,en-US,System,fr-FR,Système,it-IT,Sistema,ja-JP,システム,ko-KR,시스템,pt-BR,Sistema,es-ES,Sistema 311 64 {0,1,3,7} \N zh-CN,其它,zh-TW,其他,de-DE,Sonstige,en-US,Other,fr-FR,Autre,it-IT,Altri,ja-JP,その他,ko-KR,기타,pt-BR,Outro,es-ES,Otro 314 64 {0,1,3,7} \N zh-CN,数据库,zh-TW,資料庫,de-DE,Datenbank,en-US,Database,fr-FR,Base de données,it-IT,Base di Dati,ja-JP,データベース,ko-KR,데이터베이스,pt-BR,Banco de Dados,es-ES,Base de datos 317 64 {0,1,3,7} \N zh-CN,用户定义,zh-TW,使用者定義,de-DE,Benutzerdefiniert,en-US,User Defined,fr-FR,Défini par l'utilisateur,it-IT,Definito dall’Utente,ja-JP,ユーザー定義,ko-KR,사용자 정의,pt-BR,Definido pelo usuário,es-ES,Definido por el usuario 689 69 {0,1,3,7,269} \N 696 69 {0,1,3,7,269} \N 697 69 {0,1,3,7,269} \N 703 66 {0,1,3,7,8,601} \N 705 66 {0,1,3,7,8,601} \N 704 66 {0,1,3,7,8,601} \N "701 65 {0,1,3,7,8} \N en-US,Block 0702 65 {0,1,3,7,8} \N en-US,Permit(Log or lock) 708 74 {0,1,3,7,8,661} \N 706 74 {0,1,3,7,8,650} \N 707 74 {0,1,3,7,8,653} \N 9712 68 {0,1,3,7,8} \N 1:_:WinNT://COURI/Non Exempt Users 5709 68 {0,1,3,7,8} \N 1:_:WinNT://COURI/Exempt Users 715 74 {0,1,3,7,8,712} \N 711 74 {0,1,3,7,8,709} \N 716 66 {0,1,3,7,8,439} \N 717 74 {0,1,3,7,8,604} \N 718 55 {0,1,3,7} \N zh-CN,Vimeo,zh-TW,Vimeo,de-DE,Vimeo,en-US,Vimeo,fr-FR,Vimeo,it-IT,Vimeo,ja-JP,Vimeo,ko-KR,Vimeo,pt-BR,Vimeo,es-ES,Vimeo 719 69 {0,1,3,7,718} \N 720 69 {0,1,3,7,175} \N 721 69 {0,1,3,7,83} \N 722 69 {0,1,3,7,175} \N 723 69 {0,1,3,7,65} \N 724 69 {0,1,3,7,269} \N 725 69 {0,1,3,7,185} \N 726 69 {0,1,3,7,269} \N 727 69 {0,1,3,7,269} \N 728 69 {0,1,3,7,175} \N 729 55 {0,1,3,7} \N zh-CN,Opera Unite,zh-TW,Opera Unite,de-DE,Opera Unite,en-US,Opera Unite,fr-FR,Opera Unite,it-IT,Opera Unite,ja-JP,Opera Unite,ko-KR,Opera Unite,pt-BR,Opera Unite,es-ES,Opera Unite 730 69 {0,1,3,7,729} \N 731 69 {0,1,3,7,729} \N 732 69 {0,1,3,7,269} \N 733 69 {0,1,3,7,269} \N 734 69 {0,1,3,7,175} \N 735 69 {0,1,3,7,65} \N 736 69 {0,1,3,7,269} \N 737 69 {0,1,3,7,83} \N 738 69 {0,1,3,7,269} \N 739 69 {0,1,3,7,175} \N 740 69 {0,1,3,7,269} \N 741 69 {0,1,3,7,144} \N 742 69 {0,1,3,7,269} \N 743 69 {0,1,3,7,175} \N 744 55 {0,1,3,7} \N zh-CN,Dailymotion,zh-TW,Dailymotion,de-DE,Dailymotion,en-US,Dailymotion,fr-FR,Dailymotion,it-IT,Dailymotion,ja-JP,Dailymotion,ko-KR,Dailymotion,pt-BR,Dailymotion,es-ES,Dailymotion 745 69 {0,1,3,7,744} \N 746 69 {0,1,3,7,269} \N 747 69 {0,1,3,7,147} \N 748 69 {0,1,3,7,147} \N 749 69 {0,1,3,7,269} \N 750 66 {0,1,3,7,8,601} \N 752 66 {0,1,3,7,8,601} \N 751 66 {0,1,3,7,8,601} \N 4755 78 {0,1,3,5} \N RemoteFiltering/LogCacheMaxSize 5754 78 {0,1,3,5} \N RemoteFiltering/FailCloseTimeout .753 78 {0,1,3,5} \N RemoteFiltering/FailClose 759 55 {0,1,3,7} \N zh-CN,ShareNow,zh-TW,ShareNow,de-DE,ShareNow,en-US,ShareNow,fr-FR,ShareNow,it-IT,ShareNow,ja-JP,ShareNow,ko-KR,ShareNow,pt-BR,ShareNow,es-ES,ShareNow 760 69 {0,1,3,7,759} \N 761 69 {0,1,3,7,269} \N K342 54 {0,1,3,7} \N zh-CN,暴力冲突与极端主义,zh-TW,暴力衝突,極端主義,de-DE,Militantes und Extremismus,en-US,Militancy and Extremist,fr-FR,Militantisme et extrémisme,it-IT,Militanza ed Estremismo ,ja-JP,過激派グループ,ko-KR,투쟁/과격단체,pt-BR,Militantes e extremistas,es-ES,Militancia/ Extremistas 343 54 {0,1,3,7} \N zh-CN,种族歧视与仇恨,zh-TW,種族歧視,de-DE,Rassismus und Hass,en-US,Racism and Hate,fr-FR,Racisme et haine,it-IT,Razzismo ed Odio,ja-JP,人種差別,ko-KR,인종차별/적대,pt-BR,Racismo e ódio,es-ES,Racismo/ Odio 358 54 {0,1,3,7} \N zh-CN,狩猎运动与射击俱乐部,zh-TW,狩獵運動,射擊俱樂部,de-DE,Jagdsport/Sportschießvereine,en-US,Sport Hunting and Gun Clubs,fr-FR,Chasse et armes à feu,it-IT,Caccia sportiva e Club di tiro,ja-JP,スポーツハンティング/ 射撃クラブ,ko-KR,사냥/총기 동호회,pt-BR,Caça esportiva e Clubes de tiro,es-ES,Caza deportiva/ Clubes de tiro 363 54 {0,1,3,7} \N zh-CN,个人网络存储与备份,zh-TW,個人網路儲存,備份,de-DE,Private Netzwerkspeicherung/-sicherung,en-US,Personal Network Storage and Backup,fr-FR,Stockage/Sauvegarde de réseaux personnels,it-IT,Storage Personale in Rete e Backup,ja-JP,個人用ネットワークファイル保存/バックアップ,ko-KR,개인 네트워크 스토리지/백업,pt-BR,Armazenamento de rede pessoal e backup,es-ES,Almacenamiento personal en la red e respaldo de seguridad 406 54 {0,1,3,7} \N zh-CN,同性恋与双性恋,zh-TW,同性戀,雙性戀,de-DE,Schwule und Lesben und Bisexuelle,en-US,Gay or Lesbian or Bisexual Interest,fr-FR,Homosexuels et lesbiennes et bisexuels,it-IT,Argomenti d'interesse omosessuale o bisessuale,ja-JP,ゲイ、レズビアン、バイセクシャル,ko-KR,게이 레즈비언 양성애자,pt-BR,Interesse homossexua ou lesbianismo ou bissexualismo,es-ES,Interés gay o lesbiana o bisexual 408 54 {0,1,3,7} \N zh-CN,烟酒,zh-TW,煙酒,de-DE,Alkoho und Tabak,en-US,Alcohol and Tobacco,fr-FR,Alcool et tabac,it-IT,Alcool e tabacco,ja-JP,アルコール & 煙草,ko-KR,주류/담배,pt-BR,Álcool e tabaco,es-ES,Alcohol/ Tabaco 419 54 {0,1,3,7} \N zh-CN,免费软件与软件下载,zh-TW,免費軟體,軟體下載,de-DE,Freeware/Software-Download,en-US,Freeware and Software Download,fr-FR,Téléchargement de logiciels et de freewares,it-IT,Download di Freeware e Software,ja-JP,フリーウェア/ ソフトウェアダウンロード,ko-KR,프리웨어 소프트웨어 다운로드,pt-BR,Download de Freeware e Software,es-ES,Descarga de programas (software/freeware) 762 69 {0,1,3,7,83} \N 763 69 {0,1,3,7,175} \N 764 69 {0,1,3,7,269} \N 765 69 {0,1,3,7,83} \N 766 69 {0,1,3,7,57} \N 767 69 {0,1,3,7,269} \N 768 69 {0,1,3,7,57} \N 769 69 {0,1,3,7,65} \N 770 69 {0,1,3,7,83} \N 771 69 {0,1,3,7,48} \N 772 69 {0,1,3,7,173} \N 773 69 {0,1,3,7,175} \N 774 69 {0,1,3,7,57} \N 775 69 {0,1,3,7,173} \N 776 69 {0,1,3,7,175} \N 777 69 {0,1,3,7,202} \N 778 69 {0,1,3,7,214} \N 779 69 {0,1,3,7,612} \N 780 69 {0,1,3,7,57} \N 781 69 {0,1,3,7,65} \N 782 69 {0,1,3,7,83} \N 783 69 {0,1,3,7,48} \N 784 69 {0,1,3,7,173} \N 785 69 {0,1,3,7,175} \N 786 69 {0,1,3,7,269} \N 787 55 {0,1,3,7} \N zh-CN,Palringo,zh-TW,Palringo,de-DE,Palringo,en-US,Palringo,fr-FR,Palringo,it-IT,Palringo,ja-JP,Palringo,ko-KR,Palringo,pt-BR,Palringo,es-ES,Palringo 788 69 {0,1,3,7,787} \N 789 69 {0,1,3,7,787} \N 790 69 {0,1,3,7,271} \N 791 69 {0,1,3,7,269} \N 792 69 {0,1,3,7,269} \N 793 69 {0,1,3,7,269} \N 794 69 {0,1,3,7,269} \N 1800 68 {0,1,3,7,8} \N 0:_:WinNT://COURI/eshoning +795 53 {0,1,3,7,8} \N en-US,Eshonig Policy %797 62 {0,1,3,7,8} \N en-US,Safersys 799 66 {0,1,3,7,8,795} \N 804 66 {0,1,3,7,8,601} \N 805 66 {0,1,3,7,8,601} \N 806 66 {0,1,3,7,8,601} \N 803 74 {0,1,3,7,8,800} \N 807 66 {0,1,3,7,8,601} \N 808 66 {0,1,3,7,8,601} \N 809 66 {0,1,3,7,8,601} \N 810 55 {0,1,3,7} \N zh-CN,Badongo Buddy,zh-TW,Badongo Buddy,de-DE,Badongo Buddy,en-US,Badongo Buddy,fr-FR,Badongo Buddy,it-IT,Badongo Buddy,ja-JP,Badongo Buddy,ko-KR,Badongo Buddy,pt-BR,Badongo Buddy,es-ES,Badongo Buddy 811 69 {0,1,3,7,810} \N 812 69 {0,1,3,7,269} \N 813 69 {0,1,3,7,269} \N 814 55 {0,1,3,7} \N zh-CN,MyPlay,zh-TW,MyPlay,de-DE,MyPlay,en-US,MyPlay,fr-FR,MyPlay,it-IT,MyPlay,ja-JP,MyPlay,ko-KR,MyPlay,pt-BR,MyPlay,es-ES,MyPlay 815 69 {0,1,3,7,814} \N 816 69 {0,1,3,7,269} \N 817 69 {0,1,3,7,269} \N 818 69 {0,1,3,7,269} \N 819 69 {0,1,3,7,269} \N 820 69 {0,1,3,7,181} \N 821 69 {0,1,3,7,269} \N 822 69 {0,1,3,7,269} \N 823 69 {0,1,3,7,269} \N 824 69 {0,1,3,7,57} \N 825 69 {0,1,3,7,192} \N 826 69 {0,1,3,7,269} \N 827 69 {0,1,3,7,175} \N 828 69 {0,1,3,7,175} \N 829 55 {0,1,3,7} \N zh-CN,Spotify,zh-TW,Spotify,de-DE,Spotify,en-US,Spotify,fr-FR,Spotify,it-IT,Spotify,ja-JP,Spotify,ko-KR,Spotify,pt-BR,Spotify,es-ES,Spotify 830 69 {0,1,3,7,829} \N 831 69 {0,1,3,7,829} \N 832 69 {0,1,3,7,269} \N 833 55 {0,1,3,7} \N zh-CN,Comodo EasyVPN,zh-TW,Comodo EasyVPN,de-DE,Comodo EasyVPN,en-US,Comodo EasyVPN,fr-FR,Comodo EasyVPN,it-IT,Comodo EasyVPN,ja-JP,Comodo EasyVPN,ko-KR,Comodo EasyVPN,pt-BR,Comodo EasyVPN,es-ES,Comodo EasyVPN 834 69 {0,1,3,7,833} \N 835 69 {0,1,3,7,269} \N 836 66 {0,1,3,7,8,795} \N 837 69 {0,1,3,7,269} \N 838 69 {0,1,3,7,83} \N 839 69 {0,1,3,7,144} \N 840 69 {0,1,3,7,269} \N 841 69 {0,1,3,7,269} \N 842 69 {0,1,3,7,269} \N 843 69 {0,1,3,7,269} \N 844 69 {0,1,3,7,269} \N 845 69 {0,1,3,7,168} \N 846 69 {0,1,3,7,168} \N 847 69 {0,1,3,7,269} \N 848 69 {0,1,3,7,65} \N 849 69 {0,1,3,7,65} \N 850 69 {0,1,3,7,65} \N 851 69 {0,1,3,7,269} \N 852 69 {0,1,3,7,65} \N 853 69 {0,1,3,7,609} \N 854 69 {0,1,3,7,609} \N 855 69 {0,1,3,7,65} \N 856 69 {0,1,3,7,65} \N 857 69 {0,1,3,7,269} \N 858 69 {0,1,3,7,83} \N 859 69 {0,1,3,7,65} \N 860 69 {0,1,3,7,269} \N 861 69 {0,1,3,7,269} \N 862 69 {0,1,3,7,175} \N 863 69 {0,1,3,7,175} \N 864 55 {0,1,3,7} \N zh-CN,Mikogo,zh-TW,Mikogo,de-DE,Mikogo,en-US,Mikogo,fr-FR,Mikogo,it-IT,Mikogo,ja-JP,Mikogo,ko-KR,Mikogo,pt-BR,Mikogo,es-ES,Mikogo 865 69 {0,1,3,7,864} \N 866 69 {0,1,3,7,269} \N 867 69 {0,1,3,7,269} \N 868 69 {0,1,3,7,175} \N 869 69 {0,1,3,7,175} \N 870 69 {0,1,3,7,269} \N 871 69 {0,1,3,7,175} \N 872 69 {0,1,3,7,269} \N 873 69 {0,1,3,7,175} \N 874 69 {0,1,3,7,144} \N 875 69 {0,1,3,7,144} \N 876 69 {0,1,3,7,83} \N 877 69 {0,1,3,7,269} \N 878 69 {0,1,3,7,269} \N 879 69 {0,1,3,7,269} \N 880 69 {0,1,3,7,269} \N 881 55 {0,1,3,7} \N zh-CN,Goober Messenger,zh-TW,Goober Messenger,de-DE,Goober Messenger,en-US,Goober Messenger,fr-FR,Goober Messenger,it-IT,Goober Messenger,ja-JP,Goober Messenger,ko-KR,Goober Messenger,pt-BR,Goober Messenger,es-ES,Goober Messenger 882 69 {0,1,3,7,881} \N 883 69 {0,1,3,7,881} \N 884 69 {0,1,3,7,175} \N 885 69 {0,1,3,7,269} \N 886 69 {0,1,3,7,269} \N 887 69 {0,1,3,7,175} \N 888 69 {0,1,3,7,269} \N 889 69 {0,1,3,7,269} \N 890 69 {0,1,3,7,269} \N 891 69 {0,1,3,7,113} \N 892 69 {0,1,3,7,113} \N 893 69 {0,1,3,7,269} \N 6894 55 {0,1,3,7} \N zh-CN,Google Wave (WSG Only),zh-TW,Google Wave (WSG Only),de-DE,Google Wave (WSG Only),en-US,Google Wave (WSG Only),fr-FR,Google Wave (WSG Only),it-IT,Google Wave (WSG Only),ja-JP,Google Wave (WSG Only),ko-KR,Google Wave (WSG Only),pt-BR,Google Wave (WSG Only),es-ES,Google Wave (WSG Only) 895 69 {0,1,3,7,894} \N 896 69 {0,1,3,7,93} \N +93 55 {0,1,3,7} \N zh-CN,Gmail Chat (WSG Only),zh-TW,Gmail Chat (WSG Only),de-DE,Gmail Chat (WSG Only),en-US,Gmail Chat (WSG Only),fr-FR,Gmail Chat (WSG Only),it-IT,Gmail Chat (WSG Only),ja-JP,Gmail Chat (WSG Only),ko-KR,Gmail Chat (WSG Only),pt-BR,Gmail Chat (WSG Only),es-ES,Gmail Chat (WSG Only) 897 69 {0,1,3,7,269} \N 898 69 {0,1,3,7,269} \N 899 69 {0,1,3,7,269} \N 900 69 {0,1,3,7,269} \N 901 69 {0,1,3,7,65} \N 902 69 {0,1,3,7,65} \N 903 69 {0,1,3,7,65} \N 904 69 {0,1,3,7,269} \N 905 69 {0,1,3,7,65} \N 906 69 {0,1,3,7,65} \N 907 69 {0,1,3,7,93} \N 908 69 {0,1,3,7,548} \N 909 69 {0,1,3,7,269} \N 910 69 {0,1,3,7,269} \N 911 69 {0,1,3,7,554} \N 912 69 {0,1,3,7,269} \N 913 54 {0,1,3,7} \N zh-CN,停用的域名,zh-TW,停用的域名,de-DE,Ruhende Domänen,en-US,Parked Domain,fr-FR,Domaine en parking,it-IT,Domini Parcheggiati,ja-JP,ドメイン・パーキング,ko-KR,Parked Domain,pt-BR,Domínio Estacionado,es-ES,Dominio Estacionado 914 54 {0,1,3,7} \N zh-CN,网络合作,zh-TW,網路合作,de-DE,Virtuelle Zusammenarbeit,en-US,Web Collaboration,fr-FR,Web Collaboratif,it-IT,Collaborazione in Rete,ja-JP,ウェブ・コラボレーション,ko-KR,웹 협업,pt-BR,Web Colaboração,es-ES,Colaboración de Red 915 54 {0,1,3,7} \N zh-CN,基于主机的商业应用程序,zh-TW,基于主机的商业应用程序,de-DE,Businessorientierte Anwendungen,en-US,Hosted Business Applications,fr-FR,Application Commerciale Hébergée,it-IT,Applicazioni Commerciali Ospitate,ja-JP,ビジネス向けソフトの提供,ko-KR,호스팅 비즈니스 애플 리케이션,pt-BR,Aplicações Hospedeiro de Negócio,es-ES,Aplicaciones Hospedadas de Negocio R916 54 {0,1,3,7} \N zh-CN,博客,zh-TW,博客,de-DE,Blogs und Persönliche Webseiten,en-US,Blogs and Personal Sites,fr-FR,Blogs et Sites Personnels,it-IT,Blogs e Siti Personali,ja-JP,ブログと個人サイト,ko-KR,사이트를 호스팅하는 블로그 및 개인 사이트,pt-BR,Blogs e Sites Pessoais,es-ES,Blogs y Sitios Personales 917 69 {0,1,3,7,269} \N 366 54 {0,1,3,7} \N zh-CN,社交,zh-TW,社交,de-DE,Soziale Netzwerke,en-US,Social Networking,fr-FR,Réseautage Social,it-IT,Relazioni Sociali,ja-JP,ソーシャル・ネットワーキング,ko-KR,소셜 네트워킹,pt-BR,Rede Social,es-ES,Creacion de Redes Sociales 918 69 {0,1,3,7,269} \N 919 69 {0,1,3,7,269} \N 920 69 {0,1,3,7,83} \N 921 69 {0,1,3,7,269} \N 922 69 {0,1,3,7,269} \N 923 69 {0,1,3,7,65} \N 924 69 {0,1,3,7,269} \N 925 69 {0,1,3,7,65} \N 926 69 {0,1,3,7,269} \N K403 54 {0,1,3,7} \N zh-CN,非传统宗教、秘术与民俗,zh-TW,非傳統宗教、秘術與民間傳說,de-DE,Nichttraditionelle Religionen und Okkultismus und volkstümliche Glaubensrichtungen,en-US,Non-Traditional Religions and Occult and Folklore,fr-FR,Religions non traditionnelles et occultes et folklore,it-IT,Religioni non tradizionali - Occultismo - Folclore,ja-JP,非伝統的な宗教 オカルト 民間伝承,ko-KR,비정통 종교 비술 및 민간 전승,pt-BR,Religiões não tradicionais e ocultismo e folclore,es-ES,Religiones no tradicionales y ocultismo y folklore 927 69 {0,1,3,7,175} \N 928 69 {0,1,3,7,83} \N 929 69 {0,1,3,7,269} \N 930 69 {0,1,3,7,269} \N 931 69 {0,1,3,7,175} \N 932 69 {0,1,3,7,254} \N 933 69 {0,1,3,7,175} \N 934 69 {0,1,3,7,65} \N 935 69 {0,1,3,7,65} \N 936 69 {0,1,3,7,548} \N 937 69 {0,1,3,7,548} \N 938 69 {0,1,3,7,548} \N 939 69 {0,1,3,7,269} \N 940 69 {0,1,3,7,269} \N 941 69 {0,1,3,7,269} \N 942 69 {0,1,3,7,269} \N 943 69 {0,1,3,7,269} \N 944 69 {0,1,3,7,548} \N 945 69 {0,1,3,7,548} \N 946 69 {0,1,3,7,548} \N 947 69 {0,1,3,7,548} \N 948 69 {0,1,3,7,548} \N 949 69 {0,1,3,7,175} \N 950 69 {0,1,3,7,175} \N 951 69 {0,1,3,7,269} \N 952 69 {0,1,3,7,548} \N 953 69 {0,1,3,7,175} \N 954 69 {0,1,3,7,269} \N 955 69 {0,1,3,7,65} \N 956 69 {0,1,3,7,65} \N 957 69 {0,1,3,7,269} \N 958 69 {0,1,3,7,65} \N 959 69 {0,1,3,7,65} \N 960 69 {0,1,3,7,113} \N 961 69 {0,1,3,7,175} \N 962 69 {0,1,3,7,65} \N 963 69 {0,1,3,7,269} \N 964 69 {0,1,3,7,175} \N 965 69 {0,1,3,7,175} \N 966 69 {0,1,3,7,65} \N 967 69 {0,1,3,7,65} \N 968 69 {0,1,3,7,65} \N 969 69 {0,1,3,7,175} \N 970 69 {0,1,3,7,65} \N 971 69 {0,1,3,7,175} \N 972 69 {0,1,3,7,175} \N 973 69 {0,1,3,7,65} \N 974 69 {0,1,3,7,65} \N 975 69 {0,1,3,7,175} \N 976 69 {0,1,3,7,175} \N 977 69 {0,1,3,7,65} \N 978 69 {0,1,3,7,269} \N 979 69 {0,1,3,7,65} \N 980 55 {0,1,3,7} \N zh-CN,Nimbuzz,zh-TW,Nimbuzz,de-DE,Nimbuzz,en-US,Nimbuzz,fr-FR,Nimbuzz,it-IT,Nimbuzz,ja-JP,Nimbuzz,ko-KR,Nimbuzz,pt-BR,Nimbuzz,es-ES,Nimbuzz 981 69 {0,1,3,7,980} \N 982 69 {0,1,3,7,65} \N 983 69 {0,1,3,7,269} \N 984 69 {0,1,3,7,548} \N 985 69 {0,1,3,7,548} \N 986 69 {0,1,3,7,548} \N 987 69 {0,1,3,7,548} \N 988 69 {0,1,3,7,65} \N 989 69 {0,1,3,7,269} \N 990 69 {0,1,3,7,175} \N 991 69 {0,1,3,7,65} \N 992 69 {0,1,3,7,65} \N 993 69 {0,1,3,7,65} \N 994 69 {0,1,3,7,65} \N 995 69 {0,1,3,7,269} \N 996 69 {0,1,3,7,65} \N 997 69 {0,1,3,7,65} \N 998 69 {0,1,3,7,269} \N 999 69 {0,1,3,7,65} \N 1000 69 {0,1,3,7,83} \N 1001 69 {0,1,3,7,65} \N 1002 69 {0,1,3,7,269} \N 1003 69 {0,1,3,7,65} \N 1004 69 {0,1,3,7,269} \N 1005 69 {0,1,3,7,548} \N 1006 69 {0,1,3,7,548} \N 142 55 {0,1,3,7} \N zh-CN,TelecomNex,zh-TW,TelecomNex,de-DE,TelecomNex,en-US,TelecomNex,fr-FR,TelecomNex,it-IT,TelecomNex,ja-JP,TelecomNex,ko-KR,TelecomNex,pt-BR,TelecomNex,es-ES,TelecomNex 1007 69 {0,1,3,7,175} \N 1008 69 {0,1,3,7,175} \N 1009 69 {0,1,3,7,175} \N 1010 69 {0,1,3,7,269} \N 1011 69 {0,1,3,7,65} \N 1012 69 {0,1,3,7,65} \N 1013 69 {0,1,3,7,269} \N 1014 69 {0,1,3,7,548} \N 1015 69 {0,1,3,7,65} \N 1016 55 {0,1,3,7} \N zh-CN,Baidu Hi,zh-TW,Baidu Hi,de-DE,Baidu Hi,en-US,Baidu Hi,fr-FR,Baidu Hi,it-IT,Baidu Hi,ja-JP,Baidu Hi,ko-KR,Baidu Hi,pt-BR,Baidu Hi,es-ES,Baidu Hi 1017 69 {0,1,3,7,1016} \N 1018 69 {0,1,3,7,1016} \N 1019 69 {0,1,3,7,269} \N 1020 55 {0,1,3,7} \N zh-CN,Orsiso,zh-TW,Orsiso,de-DE,Orsiso,en-US,Orsiso,fr-FR,Orsiso,it-IT,Orsiso,ja-JP,Orsiso,ko-KR,Orsiso,pt-BR,Orsiso,es-ES,Orsiso 1022 55 {0,1,3,7} \N zh-CN,MyGreenPC,zh-TW,MyGreenPC,de-DE,MyGreenPC,en-US,MyGreenPC,fr-FR,MyGreenPC,it-IT,MyGreenPC,ja-JP,MyGreenPC,ko-KR,MyGreenPC,pt-BR,MyGreenPC,es-ES,MyGreenPC 1021 69 {0,1,3,7,1020} \N 1023 69 {0,1,3,7,1022} \N 1024 69 {0,1,3,7,1022} \N 1025 69 {0,1,3,7,65} \N 1026 69 {0,1,3,7,65} \N 1027 69 {0,1,3,7,254} \N 1028 69 {0,1,3,7,269} \N 1029 69 {0,1,3,7,269} \N 1030 69 {0,1,3,7,269} \N 1031 55 {0,1,3,7} \N zh-CN,Remote Control PC,zh-TW,Remote Control PC,de-DE,Remote Control PC,en-US,Remote Control PC,fr-FR,Remote Control PC,it-IT,Remote Control PC,ja-JP,Remote Control PC,ko-KR,Remote Control PC,pt-BR,Remote Control PC,es-ES,Remote Control PC 1032 69 {0,1,3,7,1031} \N 1033 69 {0,1,3,7,1031} \N 1034 69 {0,1,3,7,65} \N 1035 69 {0,1,3,7,269} \N 1036 69 {0,1,3,7,269} \N 1037 69 {0,1,3,7,65} \N 1038 69 {0,1,3,7,269} \N 1039 69 {0,1,3,7,65} \N 1040 69 {0,1,3,7,65} \N 1041 69 {0,1,3,7,269} \N 1042 69 {0,1,3,7,65} \N 1043 69 {0,1,3,7,65} \N 1044 69 {0,1,3,7,65} \N 1045 69 {0,1,3,7,548} \N 1046 69 {0,1,3,7,548} \N 1047 69 {0,1,3,7,65} \N 1048 69 {0,1,3,7,65} \N 1049 69 {0,1,3,7,65} \N 1050 69 {0,1,3,7,269} \N 1051 69 {0,1,3,7,65} \N 1052 69 {0,1,3,7,269} \N 1053 69 {0,1,3,7,65} \N 1054 69 {0,1,3,7,269} \N 1055 69 {0,1,3,7,173} \N 1056 69 {0,1,3,7,173} \N 1057 69 {0,1,3,7,65} \N 1058 69 {0,1,3,7,269} \N 1059 69 {0,1,3,7,65} \N 1060 69 {0,1,3,7,65} \N 1061 69 {0,1,3,7,269} \N 1062 69 {0,1,3,7,65} \N 1063 69 {0,1,3,7,269} \N 1064 69 {0,1,3,7,65} \N 1065 69 {0,1,3,7,65} \N 1066 69 {0,1,3,7,269} \N 1067 69 {0,1,3,7,65} \N 1068 69 {0,1,3,7,83} \N 1069 69 {0,1,3,7,269} \N 1070 69 {0,1,3,7,65} \N 1071 69 {0,1,3,7,57} \N 1072 69 {0,1,3,7,65} \N 1073 69 {0,1,3,7,48} \N 1074 69 {0,1,3,7,48} \N 1075 69 {0,1,3,7,65} \N 1076 69 {0,1,3,7,269} \N 1077 69 {0,1,3,7,65} \N 1078 69 {0,1,3,7,269} \N 1079 69 {0,1,3,7,65} \N 1080 69 {0,1,3,7,65} \N 1081 69 {0,1,3,7,65} \N 1082 69 {0,1,3,7,269} \N 1083 69 {0,1,3,7,65} \N 1084 69 {0,1,3,7,269} \N 1085 69 {0,1,3,7,269} \N 1086 69 {0,1,3,7,65} \N 1087 69 {0,1,3,7,65} \N 1088 69 {0,1,3,7,269} \N 1089 69 {0,1,3,7,65} \N 1090 69 {0,1,3,7,181} \N 1091 69 {0,1,3,7,65} \N 1092 69 {0,1,3,7,65} \N 1093 69 {0,1,3,7,65} \N 1094 69 {0,1,3,7,269} \N 1095 69 {0,1,3,7,65} \N 1096 69 {0,1,3,7,269} \N 1097 69 {0,1,3,7,65} \N 1098 69 {0,1,3,7,65} \N 1099 69 {0,1,3,7,65} \N 1100 69 {0,1,3,7,269} \N 1101 69 {0,1,3,7,65} \N 1102 69 {0,1,3,7,269} \N 1103 69 {0,1,3,7,269} \N 1104 69 {0,1,3,7,65} \N 1105 69 {0,1,3,7,65} \N 1106 69 {0,1,3,7,65} \N 1107 69 {0,1,3,7,269} \N 1108 69 {0,1,3,7,65} \N 1109 69 {0,1,3,7,269} \N 1110 69 {0,1,3,7,65} \N 1111 69 {0,1,3,7,269} \N 1112 69 {0,1,3,7,65} \N 1113 69 {0,1,3,7,65} \N 1114 69 {0,1,3,7,65} \N 1115 69 {0,1,3,7,65} \N 1116 69 {0,1,3,7,269} \N 1117 69 {0,1,3,7,65} \N 1118 69 {0,1,3,7,175} \N 1119 69 {0,1,3,7,65} \N 1120 69 {0,1,3,7,65} \N 1121 69 {0,1,3,7,269} \N 1122 69 {0,1,3,7,65} \N 1123 69 {0,1,3,7,269} \N 1124 69 {0,1,3,7,65} \N 1125 69 {0,1,3,7,83} \N 1126 69 {0,1,3,7,83} \N 1127 69 {0,1,3,7,83} \N 1128 69 {0,1,3,7,269} \N 1129 69 {0,1,3,7,65} \N 1130 69 {0,1,3,7,269} \N 1131 69 {0,1,3,7,175} \N 1132 69 {0,1,3,7,65} \N 1133 69 {0,1,3,7,269} \N 1134 69 {0,1,3,7,65} \N 1135 69 {0,1,3,7,269} \N 1136 69 {0,1,3,7,548} \N 1137 69 {0,1,3,7,65} \N 1138 69 {0,1,3,7,260} \N 260 55 {0,1,3,7} \N zh-CN,Ares,zh-TW,Ares,de-DE,Ares,en-US,Ares,fr-FR,Ares,it-IT,Ares,ja-JP,Ares,ko-KR,Ares,pt-BR,Ares,es-ES,Ares 1139 69 {0,1,3,7,65} \N 1140 69 {0,1,3,7,269} \N 1141 69 {0,1,3,7,65} \N 1142 69 {0,1,3,7,65} \N 1143 69 {0,1,3,7,269} \N 1144 69 {0,1,3,7,65} \N 1145 69 {0,1,3,7,269} \N 1146 69 {0,1,3,7,269} \N 1147 69 {0,1,3,7,65} \N 1148 69 {0,1,3,7,269} \N 1149 69 {0,1,3,7,65} \N 1150 69 {0,1,3,7,83} \N 1151 69 {0,1,3,7,269} \N 1152 69 {0,1,3,7,65} \N 1153 69 {0,1,3,7,65} \N 1154 69 {0,1,3,7,83} \N 1155 69 {0,1,3,7,269} \N 1156 69 {0,1,3,7,65} \N 1157 69 {0,1,3,7,269} \N 1158 69 {0,1,3,7,65} \N 1159 69 {0,1,3,7,269} \N 1160 69 {0,1,3,7,65} \N 1161 69 {0,1,3,7,83} \N 1162 69 {0,1,3,7,65} \N 1163 69 {0,1,3,7,269} \N 1164 69 {0,1,3,7,284} \N 1165 69 {0,1,3,7,290} \N 1166 69 {0,1,3,7,65} \N 1167 69 {0,1,3,7,175} \N 1168 69 {0,1,3,7,65} \N 1169 69 {0,1,3,7,83} \N 1170 69 {0,1,3,7,269} \N 1171 69 {0,1,3,7,269} \N 1172 69 {0,1,3,7,65} \N 1173 69 {0,1,3,7,269} \N 1174 69 {0,1,3,7,65} \N 1175 69 {0,1,3,7,269} \N K1176 55 {0,1,3,7} \N zh-CN,Adobe Updater (WSG Only),zh-TW,Adobe Updater (WSG Only),de-DE,Adobe Updater (WSG Only),en-US,Adobe Updater (WSG Only),fr-FR,Adobe Updater (WSG Only),it-IT,Adobe Updater (WSG Only),ja-JP,Adobe Updater (WSG Only),ko-KR,Adobe Updater (WSG Only),pt-BR,Adobe Updater (WSG Only),es-ES,Adobe Updater (WSG Only) 1177 69 {0,1,3,7,1176} \N 1178 69 {0,1,3,7,65} \N 1179 69 {0,1,3,7,65} \N 1180 69 {0,1,3,7,65} \N 1181 69 {0,1,3,7,269} \N 1182 69 {0,1,3,7,65} \N 1183 69 {0,1,3,7,269} \N 1184 69 {0,1,3,7,548} \N 1185 69 {0,1,3,7,65} \N 1186 69 {0,1,3,7,269} \N 1187 69 {0,1,3,7,65} \N 1188 69 {0,1,3,7,269} \N 1189 69 {0,1,3,7,65} \N 1190 69 {0,1,3,7,83} \N 1191 69 {0,1,3,7,269} \N 1192 69 {0,1,3,7,65} \N 1193 69 {0,1,3,7,83} \N 1194 69 {0,1,3,7,269} \N 1195 69 {0,1,3,7,269} \N 1196 69 {0,1,3,7,65} \N 1197 69 {0,1,3,7,83} \N 1198 69 {0,1,3,7,65} \N 1199 69 {0,1,3,7,269} \N 1200 69 {0,1,3,7,65} \N 1201 69 {0,1,3,7,83} \N 1202 69 {0,1,3,7,269} \N 1203 69 {0,1,3,7,65} \N 1204 69 {0,1,3,7,83} \N 1205 69 {0,1,3,7,269} \N 1206 69 {0,1,3,7,65} \N 1207 69 {0,1,3,7,269} \N 1208 69 {0,1,3,7,65} \N 1209 69 {0,1,3,7,269} \N 1210 69 {0,1,3,7,542} \N 1211 69 {0,1,3,7,65} \N 1212 69 {0,1,3,7,83} \N 1213 69 {0,1,3,7,269} \N 1214 69 {0,1,3,7,65} \N 1215 69 {0,1,3,7,65} \N 1216 69 {0,1,3,7,83} \N 1217 69 {0,1,3,7,269} \N 1218 69 {0,1,3,7,65} \N 1219 69 {0,1,3,7,269} \N 1220 55 {0,1,3,7} \N zh-CN,MySpace Player,zh-TW,MySpace Player,de-DE,MySpace Player,en-US,MySpace Player,fr-FR,MySpace Player,it-IT,MySpace Player,ja-JP,MySpace Player,ko-KR,MySpace Player,pt-BR,MySpace Player,es-ES,MySpace Player 1221 69 {0,1,3,7,1220} \N 1222 69 {0,1,3,7,65} \N 1223 69 {0,1,3,7,83} \N 1224 69 {0,1,3,7,269} \N 1225 69 {0,1,3,7,65} \N 1226 69 {0,1,3,7,269} \N 1227 69 {0,1,3,7,65} \N 1228 69 {0,1,3,7,65} \N 1229 69 {0,1,3,7,269} \N 1230 69 {0,1,3,7,65} \N 1231 69 {0,1,3,7,65} \N 1232 69 {0,1,3,7,269} \N 1233 69 {0,1,3,7,65} \N 1234 69 {0,1,3,7,269} \N 1235 69 {0,1,3,7,65} \N 1236 69 {0,1,3,7,83} \N 1237 69 {0,1,3,7,269} \N 1238 69 {0,1,3,7,269} \N 1239 69 {0,1,3,7,269} \N 1240 69 {0,1,3,7,65} \N 1241 69 {0,1,3,7,65} \N 1242 69 {0,1,3,7,269} \N 1243 69 {0,1,3,7,65} \N 1244 69 {0,1,3,7,83} \N 1245 69 {0,1,3,7,269} \N 1246 69 {0,1,3,7,65} \N 1247 69 {0,1,3,7,269} \N 1248 69 {0,1,3,7,65} \N 1249 69 {0,1,3,7,269} \N 1250 69 {0,1,3,7,65} \N 1251 69 {0,1,3,7,83} \N 1252 69 {0,1,3,7,175} \N 1253 69 {0,1,3,7,65} \N 1254 69 {0,1,3,7,269} \N 1255 69 {0,1,3,7,65} \N 1256 69 {0,1,3,7,269} \N 1257 69 {0,1,3,7,65} \N 1258 69 {0,1,3,7,269} \N 1259 69 {0,1,3,7,65} \N 1260 69 {0,1,3,7,175} \N 1261 69 {0,1,3,7,269} \N 1262 69 {0,1,3,7,65} \N 1263 69 {0,1,3,7,83} \N 1264 69 {0,1,3,7,269} \N 1265 69 {0,1,3,7,65} \N 1266 69 {0,1,3,7,718} \N 1267 69 {0,1,3,7,269} \N 1268 69 {0,1,3,7,65} \N 1269 69 {0,1,3,7,269} \N 1270 69 {0,1,3,7,65} \N 1271 69 {0,1,3,7,269} \N 1272 69 {0,1,3,7,65} \N 1273 69 {0,1,3,7,65} \N 1274 69 {0,1,3,7,175} \N 1275 69 {0,1,3,7,269} \N 1276 69 {0,1,3,7,65} \N 1277 69 {0,1,3,7,65} \N 1278 69 {0,1,3,7,175} \N 1279 69 {0,1,3,7,65} \N 1280 69 {0,1,3,7,269} \N 1281 69 {0,1,3,7,65} \N 1282 69 {0,1,3,7,269} \N 1283 69 {0,1,3,7,65} \N 1284 69 {0,1,3,7,269} \N 1285 69 {0,1,3,7,269} \N 1286 69 {0,1,3,7,65} \N 1287 69 {0,1,3,7,269} \N 1288 69 {0,1,3,7,181} \N 1289 69 {0,1,3,7,175} \N 1290 69 {0,1,3,7,65} \N 1291 69 {0,1,3,7,269} \N 1292 69 {0,1,3,7,65} \N 1293 69 {0,1,3,7,269} \N 1294 69 {0,1,3,7,65} \N 1295 69 {0,1,3,7,65} \N 1296 69 {0,1,3,7,65} \N 1297 69 {0,1,3,7,65} \N 1298 69 {0,1,3,7,65} \N 1299 69 {0,1,3,7,65} \N 1300 69 {0,1,3,7,65} \N 1301 69 {0,1,3,7,65} \N 1302 69 {0,1,3,7,65} \N 1303 69 {0,1,3,7,65} \N 1304 69 {0,1,3,7,65} \N 1305 69 {0,1,3,7,65} \N 1306 69 {0,1,3,7,65} \N 1307 69 {0,1,3,7,65} \N 1308 69 {0,1,3,7,65} \N 1309 69 {0,1,3,7,65} \N }1310 55 {0,1,3,7} \N zh-CN,Solid State Delivery Platform,zh-TW,Solid State Delivery Platform,de-DE,Solid State Delivery Platform,en-US,Solid State Delivery Platform,fr-FR,Solid State Delivery Platform,it-IT,Solid State Delivery Platform,ja-JP,Solid State Delivery Platform,ko-KR,Solid State Delivery Platform,pt-BR,Solid State Delivery Platform,es-ES,Solid State Delivery Platform 1311 69 {0,1,3,7,1310} \N 1312 69 {0,1,3,7,83} \N 1313 69 {0,1,3,7,258} \N 1314 69 {0,1,3,7,65} \N 1315 69 {0,1,3,7,65} \N 1316 69 {0,1,3,7,83} \N 1317 69 {0,1,3,7,269} \N 1318 69 {0,1,3,7,65} \N 1319 69 {0,1,3,7,65} \N 1320 69 {0,1,3,7,65} \N 1321 69 {0,1,3,7,65} \N 1322 69 {0,1,3,7,83} \N 1323 69 {0,1,3,7,65} \N 1324 69 {0,1,3,7,83} \N 1325 69 {0,1,3,7,65} \N 1326 69 {0,1,3,7,83} \N 1327 69 {0,1,3,7,181} \N 1328 69 {0,1,3,7,269} \N 1329 69 {0,1,3,7,65} \N 1330 69 {0,1,3,7,269} \N 1331 69 {0,1,3,7,65} \N 1332 69 {0,1,3,7,83} \N 1333 69 {0,1,3,7,65} \N 1334 69 {0,1,3,7,65} \N 1335 69 {0,1,3,7,65} \N 1336 69 {0,1,3,7,65} \N 1337 69 {0,1,3,7,83} \N 1338 69 {0,1,3,7,65} \N 1339 69 {0,1,3,7,269} \N 252 55 {0,1,3,7} \N zh-CN,CromRox,zh-TW,CromRox,de-DE,CromRox,en-US,CromRox,fr-FR,CromRox,it-IT,CromRox,ja-JP,CromRox,ko-KR,CromRox,pt-BR,CromRox,es-ES,CromRox 1340 69 {0,1,3,7,65} \N 1341 69 {0,1,3,7,65} \N 1342 69 {0,1,3,7,269} \N 1343 69 {0,1,3,7,65} \N 1344 69 {0,1,3,7,65} \N 1345 69 {0,1,3,7,83} \N 1346 69 {0,1,3,7,269} \N 1347 69 {0,1,3,7,175} \N 1348 69 {0,1,3,7,269} \N 1349 69 {0,1,3,7,175} \N 1350 69 {0,1,3,7,269} \N 1351 69 {0,1,3,7,175} \N 1352 69 {0,1,3,7,175} \N 1353 69 {0,1,3,7,548} \N 1354 69 {0,1,3,7,175} \N 1355 69 {0,1,3,7,175} \N 1356 55 {0,1,3,7} \N zh-CN,Access Grid,zh-TW,Access Grid,de-DE,Access Grid,en-US,Access Grid,fr-FR,Access Grid,it-IT,Access Grid,ja-JP,Access Grid,ko-KR,Access Grid,pt-BR,Access Grid,es-ES,Access Grid 1357 69 {0,1,3,7,1356} \N 1358 69 {0,1,3,7,175} \N 1359 54 {0,1,3,7} \N zh-CN,监控,zh-TW,監視,de-DE,Überwachung,en-US,Surveillance,fr-FR,Surveillance,it-IT,Vigilanza,ja-JP,サーベイランス,ko-KR,감시,pt-BR,Vigilância,es-ES,Monitoreo 1360 54 {0,1,3,7} \N zh-CN,教育视频,zh-TW,教學影片,de-DE,Schulungsvideos,en-US,Educational Video,fr-FR,Vidéo de formation,it-IT,Video di istruzione,ja-JP,教育ビデオ,ko-KR,교육용 동영상,pt-BR,Vídeo Educacional,es-ES,Video educativo =1361 54 {0,1,3,7} \N zh-CN,娱乐视频,zh-TW,娛樂影片,de-DE,Unterhaltungsvideos,en-US,Entertainment Video,fr-FR,Vidéo de divertissement,it-IT,Video di intrattenimento,ja-JP,エンターテイメント ビデオ,ko-KR,엔터테인먼트용 동영상,pt-BR,Vídeo de Entretenimento,es-ES,Video de entretenimiento 1362 54 {0,1,3,7} \N zh-CN,搞笑视频,zh-TW,滑稽影片,de-DE,Virale Videos,en-US,Viral Video,fr-FR,Vidéo virale,it-IT,Video virali,ja-JP,ウイルス性ビデオ,ko-KR,바이얼 동영상,pt-BR,Vídeo Viral,es-ES,Video viral 1363 54 {0,1,3,7} \N zh-CN,动态 DNS,zh-TW,動態 DNS,de-DE,Dynamisches DNS,en-US,Dynamic DNS,fr-FR,DNS dynamique,it-IT,DNS dinamico,ja-JP,ダイナミック DNS,ko-KR,동적 DNS,pt-BR,DNS Dinâmico,es-ES,DNS dinámico 1364 54 {0,1,3,7} \N zh-CN,监控,zh-TW,監視,de-DE,Überwachung,en-US,Surveillance,fr-FR,Surveillance,it-IT,Vigilanza,ja-JP,サーベイランス,ko-KR,감시,pt-BR,Vigilância,es-ES,Monitoreo 1365 54 {0,1,3,7} \N zh-CN,教育视频,zh-TW,教學影片,de-DE,Schulungsvideos,en-US,Educational Video,fr-FR,Vidéo de formation,it-IT,Video di istruzione,ja-JP,教育ビデオ,ko-KR,교육용 동영상,pt-BR,Vídeo Educacional,es-ES,Video educativo =1366 54 {0,1,3,7} \N zh-CN,娱乐视频,zh-TW,娛樂影片,de-DE,Unterhaltungsvideos,en-US,Entertainment Video,fr-FR,Vidéo de divertissement,it-IT,Video di intrattenimento,ja-JP,エンターテイメント ビデオ,ko-KR,엔터테인먼트용 동영상,pt-BR,Vídeo de Entretenimento,es-ES,Video de entretenimiento 1367 54 {0,1,3,7} \N zh-CN,搞笑视频,zh-TW,滑稽影片,de-DE,Virale Videos,en-US,Viral Video,fr-FR,Vidéo virale,it-IT,Video virali,ja-JP,ウイルス性ビデオ,ko-KR,바이얼 동영상,pt-BR,Vídeo Viral,es-ES,Video viral 1368 54 {0,1,3,7} \N zh-CN,动态 DNS,zh-TW,動態 DNS,de-DE,Dynamisches DNS,en-US,Dynamic DNS,fr-FR,DNS dynamique,it-IT,DNS dinamico,ja-JP,ダイナミック DNS,ko-KR,동적 DNS,pt-BR,DNS Dinâmico,es-ES,DNS dinámico 1369 54 {0,1,3,7} \N zh-CN,监控,zh-TW,監視,de-DE,Überwachung,en-US,Surveillance,fr-FR,Surveillance,it-IT,Vigilanza,ja-JP,サーベイランス,ko-KR,감시,pt-BR,Vigilância,es-ES,Monitoreo 1370 54 {0,1,3,7} \N zh-CN,教育视频,zh-TW,教學影片,de-DE,Schulungsvideos,en-US,Educational Video,fr-FR,Vidéo de formation,it-IT,Video di istruzione,ja-JP,教育ビデオ,ko-KR,교육용 동영상,pt-BR,Vídeo Educacional,es-ES,Video educativo =1371 54 {0,1,3,7} \N zh-CN,娱乐视频,zh-TW,娛樂影片,de-DE,Unterhaltungsvideos,en-US,Entertainment Video,fr-FR,Vidéo de divertissement,it-IT,Video di intrattenimento,ja-JP,エンターテイメント ビデオ,ko-KR,엔터테인먼트용 동영상,pt-BR,Vídeo de Entretenimento,es-ES,Video de entretenimiento 1372 54 {0,1,3,7} \N zh-CN,搞笑视频,zh-TW,滑稽影片,de-DE,Virale Videos,en-US,Viral Video,fr-FR,Vidéo virale,it-IT,Video virali,ja-JP,ウイルス性ビデオ,ko-KR,바이얼 동영상,pt-BR,Vídeo Viral,es-ES,Video viral 1373 54 {0,1,3,7} \N zh-CN,动态 DNS,zh-TW,動態 DNS,de-DE,Dynamisches DNS,en-US,Dynamic DNS,fr-FR,DNS dynamique,it-IT,DNS dinamico,ja-JP,ダイナミック DNS,ko-KR,동적 DNS,pt-BR,DNS Dinâmico,es-ES,DNS dinámico 1374 69 {0,1,3,7,83} \N 1375 69 {0,1,3,7,548} \N 1376 69 {0,1,3,7,548} \N 1377 69 {0,1,3,7,83} \N 1378 69 {0,1,3,7,65} \N 1379 69 {0,1,3,7,65} \N 1380 69 {0,1,3,7,65} \N 1381 69 {0,1,3,7,175} \N 1382 54 {0,1,3,7} \N zh-CN,监控,zh-TW,監視,de-DE,Überwachung,en-US,Surveillance,fr-FR,Surveillance,it-IT,Vigilanza,ja-JP,サーベイランス,ko-KR,감시,pt-BR,Vigilância,es-ES,Monitoreo 1383 54 {0,1,3,7} \N zh-CN,教育视频,zh-TW,教學影片,de-DE,Schulungsvideos,en-US,Educational Video,fr-FR,Vidéo de formation,it-IT,Video di istruzione,ja-JP,教育ビデオ,ko-KR,교육용 동영상,pt-BR,Vídeo Educacional,es-ES,Video educativo =1384 54 {0,1,3,7} \N zh-CN,娱乐视频,zh-TW,娛樂影片,de-DE,Unterhaltungsvideos,en-US,Entertainment Video,fr-FR,Vidéo de divertissement,it-IT,Video di intrattenimento,ja-JP,エンターテイメント ビデオ,ko-KR,엔터테인먼트용 동영상,pt-BR,Vídeo de Entretenimento,es-ES,Video de entretenimiento 1385 54 {0,1,3,7} \N zh-CN,搞笑视频,zh-TW,滑稽影片,de-DE,Virale Videos,en-US,Viral Video,fr-FR,Vidéo virale,it-IT,Video virali,ja-JP,ウイルス性ビデオ,ko-KR,바이얼 동영상,pt-BR,Vídeo Viral,es-ES,Video viral 1386 54 {0,1,3,7} \N zh-CN,动态 DNS,zh-TW,動態 DNS,de-DE,Dynamisches DNS,en-US,Dynamic DNS,fr-FR,DNS dynamique,it-IT,DNS dinamico,ja-JP,ダイナミック DNS,ko-KR,동적 DNS,pt-BR,DNS Dinâmico,es-ES,DNS dinámico 1387 69 {0,1,3,7,65} \N 1388 69 {0,1,3,7,65} \N 1389 69 {0,1,3,7,65} \N 1390 69 {0,1,3,7,83} \N 1391 69 {0,1,3,7,65} \N 1392 69 {0,1,3,7,83} \N 1393 69 {0,1,3,7,65} \N 1394 69 {0,1,3,7,65} \N 1395 69 {0,1,3,7,175} \N 1396 69 {0,1,3,7,65} \N 1397 69 {0,1,3,7,65} \N 1398 69 {0,1,3,7,65} \N 1399 69 {0,1,3,7,83} \N 1400 69 {0,1,3,7,65} \N 1401 69 {0,1,3,7,65} \N 1402 69 {0,1,3,7,269} \N 1403 69 {0,1,3,7,113} \N 1404 69 {0,1,3,7,175} \N 1405 69 {0,1,3,7,65} \N 1406 69 {0,1,3,7,269} \N 1407 69 {0,1,3,7,65} \N 1408 69 {0,1,3,7,65} \N 1409 69 {0,1,3,7,65} \N 1410 69 {0,1,3,7,65} \N 1411 69 {0,1,3,7,65} \N 1412 69 {0,1,3,7,83} \N 1413 69 {0,1,3,7,65} \N 1414 69 {0,1,3,7,83} \N 1415 69 {0,1,3,7,65} \N 1416 69 {0,1,3,7,83} \N 1417 69 {0,1,3,7,65} \N 1418 69 {0,1,3,7,65} \N 1419 69 {0,1,3,7,65} \N 1420 69 {0,1,3,7,83} \N 1421 69 {0,1,3,7,260} \N 1422 69 {0,1,3,7,144} \N 1423 69 {0,1,3,7,65} \N 1424 69 {0,1,3,7,65} \N 1425 69 {0,1,3,7,83} \N 1426 69 {0,1,3,7,65} \N 1427 69 {0,1,3,7,65} \N 1428 69 {0,1,3,7,65} \N 1429 69 {0,1,3,7,175} \N 1430 69 {0,1,3,7,83} \N 1431 69 {0,1,3,7,175} \N 1432 69 {0,1,3,7,83} \N 1433 69 {0,1,3,7,269} \N 1434 69 {0,1,3,7,269} \N 1435 69 {0,1,3,7,83} \N 1436 69 {0,1,3,7,269} \N 1437 69 {0,1,3,7,65} \N 1438 69 {0,1,3,7,83} \N 1439 69 {0,1,3,7,269} \N 1440 69 {0,1,3,7,65} \N 1441 69 {0,1,3,7,83} \N 1442 69 {0,1,3,7,269} \N 1443 69 {0,1,3,7,65} \N 1444 69 {0,1,3,7,175} \N 1445 69 {0,1,3,7,65} \N 1446 69 {0,1,3,7,269} \N 1447 69 {0,1,3,7,65} \N 1448 69 {0,1,3,7,83} \N 1449 69 {0,1,3,7,65} \N 1450 69 {0,1,3,7,269} \N 1451 69 {0,1,3,7,65} \N 1452 69 {0,1,3,7,83} \N 1453 69 {0,1,3,7,269} \N 1454 69 {0,1,3,7,65} \N 1455 69 {0,1,3,7,83} \N 1456 69 {0,1,3,7,269} \N 1457 69 {0,1,3,7,65} \N 1458 69 {0,1,3,7,269} \N 1459 69 {0,1,3,7,65} \N 1460 69 {0,1,3,7,83} \N 1461 69 {0,1,3,7,65} \N 1462 69 {0,1,3,7,269} \N 1463 69 {0,1,3,7,65} \N 1464 69 {0,1,3,7,65} \N 1465 69 {0,1,3,7,65} \N 1466 69 {0,1,3,7,83} \N 1467 69 {0,1,3,7,65} \N 1468 69 {0,1,3,7,65} \N 1469 69 {0,1,3,7,269} \N 1470 69 {0,1,3,7,175} \N 1471 69 {0,1,3,7,65} \N 1472 69 {0,1,3,7,269} \N 1473 69 {0,1,3,7,65} \N 1474 69 {0,1,3,7,269} \N 1475 69 {0,1,3,7,65} \N 1476 69 {0,1,3,7,83} \N 1477 69 {0,1,3,7,65} \N 1478 69 {0,1,3,7,83} \N 1479 69 {0,1,3,7,269} \N 1480 69 {0,1,3,7,65} \N 1481 69 {0,1,3,7,83} \N 1482 69 {0,1,3,7,269} \N 181 55 {0,1,3,7} \N zh-CN,Lanotex,zh-TW,Lanotex,de-DE,Lanotex,en-US,Lanotex,fr-FR,Lanotex,it-IT,Lanotex,ja-JP,Lanotex,ko-KR,Lanotex,pt-BR,Lanotex,es-ES,Lanotex 1483 69 {0,1,3,7,65} \N 1484 69 {0,1,3,7,83} \N 1485 69 {0,1,3,7,269} \N 1486 69 {0,1,3,7,65} \N 1487 69 {0,1,3,7,65} \N 1488 69 {0,1,3,7,269} \N 1489 69 {0,1,3,7,65} \N 1490 69 {0,1,3,7,65} \N 1491 69 {0,1,3,7,269} \N 1492 69 {0,1,3,7,65} \N 1493 69 {0,1,3,7,269} \N 1494 69 {0,1,3,7,65} \N 1495 69 {0,1,3,7,65} \N 1496 69 {0,1,3,7,83} \N 1497 69 {0,1,3,7,269} \N 1498 69 {0,1,3,7,65} \N 1499 69 {0,1,3,7,65} \N 1500 69 {0,1,3,7,65} \N 1501 69 {0,1,3,7,65} \N 1502 69 {0,1,3,7,269} \N 1503 69 {0,1,3,7,65} \N 1504 69 {0,1,3,7,269} \N 1505 69 {0,1,3,7,65} \N 1506 69 {0,1,3,7,83} \N 1507 69 {0,1,3,7,269} \N $1508 63 {0,1,3,7,8} \N en-US,Permit $1509 65 {0,1,3,7,8} \N en-US,Permit 1510 1024 {0,1} \N \N \. 2 1 2147483647 2 3 1 2147483647 3 5 1 2147483647 5 6 1 2147483647 6 1616 288 289 1152 8 1 2147483647 8 11 1 2147483647 11 1654 304 305 1187 1655 304 305 1188 14 1 2147483647 14 15 1 2147483647 15 16 1 2147483647 16 17 1 2147483647 17 18 1 2147483647 18 19 1 2147483647 19 20 1 2147483647 20 1687 319 2147483647 1220 1688 319 2147483647 1221 1689 319 320 1222 1691 319 320 1224 1700 323 324 1230 1690 319 326 1223 1729 339 341 1259 1730 339 348 1260 1754 354 355 1284 1753 354 356 1283 1765 362 363 1295 1692 319 377 518 1693 319 377 522 1694 319 377 10 1617 289 290 1153 1619 289 290 1155 1618 289 292 1154 1656 305 306 1189 1657 305 306 1190 1658 305 306 1191 1695 320 321 1225 1696 320 322 1226 1701 324 325 1231 1702 324 325 1232 1731 340 341 1261 1755 355 357 1285 1766 363 364 1296 255 2 2147483647 421 256 2 2147483647 423 257 2 2147483647 426 258 2 2147483647 428 259 2 2147483647 429 260 2 2147483647 431 273 2 2147483647 319 274 2 2147483647 424 275 2 2147483647 425 276 2 2147483647 435 277 2 2147483647 436 279 2 2147483647 442 280 2 2147483647 443 281 2 2147483647 444 282 2 2147483647 445 283 2 2147483647 447 284 2 2147483647 24 285 2 2147483647 25 286 2 2147483647 27 287 2 2147483647 28 288 2 2147483647 30 289 2 2147483647 32 290 2 2147483647 33 291 2 2147483647 35 292 2 2147483647 37 293 2 2147483647 39 294 2 2147483647 41 295 2 2147483647 43 296 2 2147483647 45 297 2 2147483647 47 299 2 2147483647 51 301 2 2147483647 54 302 2 2147483647 55 306 2 2147483647 61 308 2 2147483647 63 309 2 2147483647 64 311 2 2147483647 67 313 2 2147483647 70 314 2 2147483647 71 315 2 2147483647 72 318 2 2147483647 77 319 2 2147483647 78 320 2 2147483647 80 321 2 2147483647 82 1620 290 291 1156 1621 290 291 1157 324 2 2147483647 87 325 2 2147483647 89 326 2 2147483647 90 327 2 2147483647 92 438 2 293 285 329 2 2147483647 96 330 2 2147483647 99 331 2 2147483647 101 332 2 2147483647 104 333 2 2147483647 106 334 2 2147483647 107 335 2 2147483647 109 336 2 2147483647 110 337 2 2147483647 112 441 2 293 291 340 2 2147483647 117 341 2 2147483647 118 342 2 2147483647 120 343 2 2147483647 122 344 2 2147483647 123 345 2 2147483647 125 346 2 2147483647 127 347 2 2147483647 129 348 2 2147483647 130 349 2 2147483647 132 350 2 2147483647 134 351 2 2147483647 136 352 2 2147483647 137 353 2 2147483647 139 354 2 2147483647 141 1661 306 307 1194 1659 306 308 1192 1660 306 308 1193 360 2 2147483647 152 361 2 2147483647 154 362 2 2147483647 156 363 2 2147483647 157 364 2 2147483647 158 365 2 2147483647 160 366 2 2147483647 161 367 2 2147483647 162 368 2 2147483647 164 369 2 2147483647 166 370 2 2147483647 167 372 2 2147483647 171 373 2 2147483647 172 1697 321 322 1227 377 2 2147483647 180 1703 325 326 1233 379 2 2147483647 184 1704 325 326 1234 381 2 2147483647 188 382 2 2147483647 189 383 2 2147483647 191 385 2 2147483647 194 386 2 2147483647 195 387 2 2147483647 197 388 2 2147483647 199 389 2 2147483647 200 390 2 2147483647 201 391 2 2147483647 203 393 2 2147483647 206 394 2 2147483647 207 395 2 2147483647 209 396 2 2147483647 210 397 2 2147483647 212 398 2 2147483647 213 399 2 2147483647 215 401 2 2147483647 219 402 2 2147483647 220 1732 341 342 1262 1734 341 342 1264 405 2 2147483647 225 406 2 2147483647 226 407 2 2147483647 228 408 2 2147483647 230 409 2 2147483647 232 410 2 2147483647 234 411 2 2147483647 236 412 2 2147483647 238 413 2 2147483647 240 414 2 2147483647 242 415 2 2147483647 244 416 2 2147483647 246 417 2 2147483647 248 418 2 2147483647 249 419 2 2147483647 250 420 2 2147483647 251 422 2 2147483647 255 1756 356 359 1286 427 2 2147483647 263 428 2 2147483647 265 429 2 2147483647 266 430 2 2147483647 268 1767 364 365 1297 432 2 2147483647 272 1733 341 378 1263 434 2 2147483647 276 435 2 2147483647 278 436 2 2147483647 280 437 2 2147483647 283 439 2 2147483647 287 440 2 2147483647 289 442 2 2147483647 293 443 2 2147483647 296 444 2 2147483647 298 445 2 2147483647 300 446 2 2147483647 302 447 2 2147483647 304 448 2 2147483647 306 449 2 2147483647 308 450 2 2147483647 310 451 2 2147483647 313 452 2 2147483647 316 453 2 2147483647 468 454 2 2147483647 469 455 2 2147483647 470 456 2 2147483647 471 457 2 2147483647 472 458 2 2147483647 473 459 2 2147483647 474 460 2 2147483647 453 461 2 2147483647 454 462 2 2147483647 455 463 2 2147483647 456 464 2 2147483647 457 465 2 2147483647 458 466 2 2147483647 459 467 2 2147483647 460 468 2 2147483647 461 469 2 2147483647 462 470 2 2147483647 463 425 2 379 259 473 2 2147483647 466 474 2 2147483647 467 475 2 2147483647 475 476 2 2147483647 476 477 2 2147483647 477 478 2 2147483647 478 479 2 2147483647 479 480 2 2147483647 480 481 2 2147483647 481 482 2 2147483647 482 483 2 2147483647 483 484 2 2147483647 484 485 2 2147483647 485 486 2 2147483647 486 487 2 2147483647 487 1622 291 292 1158 1623 291 293 1159 1662 307 309 1195 1698 322 323 1228 1699 322 324 1229 1707 326 327 1237 1708 327 328 1238 1705 326 329 1235 1706 326 331 1236 1736 342 2147483647 1266 1735 342 343 1265 1737 342 344 1267 1757 357 359 1287 1768 365 366 1298 7 1 2 7 12 1 2 12 519 2 2147483647 12 13 1 2 13 520 2 2147483647 13 4 1 2 4 525 3 2147483647 529 528 3 2147483647 523 529 3 2147483647 525 530 3 2147483647 527 531 3 2147483647 519 532 3 2147483647 520 533 3 2147483647 521 534 3 2147483647 530 535 3 2147483647 531 536 3 2147483647 532 537 3 2147483647 533 538 3 2147483647 534 539 3 2147483647 535 540 3 2147483647 536 541 3 2147483647 537 542 3 2147483647 538 543 3 2147483647 539 544 3 2147483647 540 22 2 3 439 545 3 2147483647 439 23 2 3 441 546 3 2147483647 441 24 2 3 446 547 3 2147483647 446 240 2 3 420 548 3 2147483647 420 241 2 3 422 549 3 2147483647 422 242 2 3 427 550 3 2147483647 427 243 2 3 430 551 3 2147483647 430 244 2 3 432 245 2 3 433 246 2 3 318 554 3 2147483647 318 247 2 3 434 248 2 3 437 556 3 2147483647 437 249 2 3 438 557 3 2147483647 438 488 2 3 488 558 3 2147483647 488 489 2 3 489 559 3 2147483647 489 490 2 3 490 560 3 2147483647 490 491 2 3 491 561 3 2147483647 491 492 2 3 492 562 3 2147483647 492 493 2 3 493 563 3 2147483647 493 494 2 3 494 564 3 2147483647 494 495 2 3 495 565 3 2147483647 495 496 2 3 496 566 3 2147483647 496 497 2 3 497 567 3 2147483647 497 498 2 3 498 568 3 2147483647 498 499 2 3 499 569 3 2147483647 499 500 2 3 500 570 3 2147483647 500 501 2 3 501 571 3 2147483647 501 502 2 3 502 572 3 2147483647 502 503 2 3 503 573 3 2147483647 503 504 2 3 504 574 3 2147483647 504 505 2 3 505 575 3 2147483647 505 506 2 3 506 576 3 2147483647 506 507 2 3 507 577 3 2147483647 507 508 2 3 508 578 3 2147483647 508 509 2 3 509 579 3 2147483647 509 510 2 3 510 580 3 2147483647 510 511 2 3 511 581 3 2147483647 511 512 2 3 512 582 3 2147483647 512 513 2 3 513 583 3 2147483647 513 514 2 3 514 584 3 2147483647 514 515 2 3 515 585 3 2147483647 515 516 2 3 516 586 3 2147483647 516 517 2 3 517 587 3 2147483647 517 21 1 4 21 588 4 2147483647 21 589 5 2147483647 542 590 5 2147483647 548 591 5 2147483647 554 592 5 2147483647 559 593 5 2147483647 561 594 5 2147483647 563 595 5 2147483647 565 596 5 2147483647 567 597 5 2147483647 569 598 5 2147483647 572 599 5 2147483647 574 600 5 2147483647 591 601 5 2147483647 593 602 5 2147483647 595 603 5 2147483647 597 604 5 2147483647 541 605 5 2147483647 543 606 5 2147483647 544 608 5 2147483647 546 609 5 2147483647 547 1624 292 293 1160 1625 292 295 1161 1663 308 309 1196 1664 308 310 1197 617 5 2147483647 557 619 5 2147483647 560 620 5 2147483647 562 621 5 2147483647 564 622 5 2147483647 566 623 5 2147483647 568 624 5 2147483647 570 625 5 2147483647 571 1709 328 330 1239 627 5 2147483647 575 1738 343 345 1268 630 5 2147483647 578 631 5 2147483647 579 632 5 2147483647 580 633 5 2147483647 581 636 5 2147483647 584 638 5 2147483647 586 639 5 2147483647 587 1769 366 367 1299 1758 358 387 1288 1759 358 401 1289 643 5 2147483647 592 644 5 2147483647 594 518 2 5 7 645 5 445 596 25 2 5 320 646 5 445 598 26 2 5 321 27 2 5 322 28 2 5 323 29 2 5 324 30 2 5 325 31 2 5 326 32 2 5 327 33 2 5 328 34 2 5 329 35 2 5 330 36 2 5 331 37 2 5 332 38 2 5 333 39 2 5 334 40 2 5 335 663 5 2147483647 335 41 2 5 336 42 2 5 337 43 2 5 338 44 2 5 339 45 2 5 340 46 2 5 341 47 2 5 342 48 2 5 343 49 2 5 344 50 2 5 345 51 2 5 346 674 5 2147483647 346 52 2 5 347 53 2 5 348 54 2 5 349 677 5 2147483647 349 55 2 5 350 56 2 5 351 57 2 5 352 58 2 5 353 59 2 5 354 682 5 2147483647 354 60 2 5 355 61 2 5 356 62 2 5 357 63 2 5 358 64 2 5 359 65 2 5 360 66 2 5 361 67 2 5 362 68 2 5 363 69 2 5 364 70 2 5 365 71 2 5 366 1628 293 2147483647 1164 72 2 5 367 1629 293 2147483647 1165 73 2 5 368 1626 293 294 1162 74 2 5 369 1627 293 295 1163 75 2 5 370 76 2 5 371 77 2 5 372 1665 309 310 1198 78 2 5 373 701 5 2147483647 373 79 2 5 374 702 5 2147483647 374 80 2 5 375 1666 309 310 1199 81 2 5 376 82 2 5 377 1710 329 330 1240 83 2 5 378 84 2 5 379 707 5 2147483647 379 85 2 5 380 1739 344 345 1269 86 2 5 381 87 2 5 382 88 2 5 383 1760 359 360 1290 89 2 5 384 1761 359 360 1291 90 2 5 385 91 2 5 386 1770 367 368 1300 92 2 5 387 93 2 5 388 94 2 5 389 95 2 5 390 96 2 5 391 97 2 5 392 98 2 5 393 99 2 5 394 100 2 5 395 101 2 5 396 102 2 5 397 103 2 5 398 104 2 5 399 105 2 5 400 106 2 5 401 107 2 5 402 108 2 5 403 109 2 5 404 110 2 5 405 111 2 5 406 112 2 5 407 113 2 5 408 114 2 5 409 115 2 5 410 116 2 5 411 117 2 5 412 118 2 5 413 119 2 5 414 120 2 5 415 121 2 5 416 122 2 5 417 123 2 5 418 746 5 2147483647 418 124 2 5 419 125 2 5 23 748 5 2147483647 23 126 2 5 26 749 5 2147483647 26 127 2 5 29 750 5 2147483647 29 128 2 5 31 751 5 2147483647 31 129 2 5 34 752 5 2147483647 34 130 2 5 36 753 5 2147483647 36 131 2 5 38 754 5 2147483647 38 132 2 5 40 755 5 2147483647 40 133 2 5 42 756 5 2147483647 42 134 2 5 44 757 5 2147483647 44 135 2 5 46 758 5 2147483647 46 136 2 5 48 759 5 2147483647 48 137 2 5 50 760 5 2147483647 50 138 2 5 53 761 5 2147483647 53 139 2 5 57 762 5 2147483647 57 140 2 5 60 763 5 2147483647 60 141 2 5 65 764 5 2147483647 65 142 2 5 69 765 5 2147483647 69 143 2 5 73 766 5 2147483647 73 144 2 5 76 767 5 2147483647 76 145 2 5 79 768 5 2147483647 79 146 2 5 81 769 5 2147483647 81 147 2 5 83 770 5 2147483647 83 148 2 5 86 771 5 2147483647 86 149 2 5 88 772 5 2147483647 88 150 2 5 91 773 5 2147483647 91 151 2 5 93 152 2 5 95 775 5 2147483647 95 153 2 5 98 776 5 2147483647 98 154 2 5 100 777 5 2147483647 100 155 2 5 103 778 5 2147483647 103 156 2 5 105 779 5 2147483647 105 157 2 5 108 780 5 2147483647 108 158 2 5 111 781 5 2147483647 111 159 2 5 113 782 5 2147483647 113 160 2 5 116 783 5 2147483647 116 161 2 5 119 784 5 2147483647 119 162 2 5 121 785 5 2147483647 121 163 2 5 124 786 5 2147483647 124 164 2 5 126 787 5 2147483647 126 165 2 5 128 788 5 2147483647 128 166 2 5 131 789 5 2147483647 131 167 2 5 133 790 5 2147483647 133 168 2 5 135 791 5 2147483647 135 169 2 5 138 792 5 2147483647 138 170 2 5 140 793 5 2147483647 140 171 2 5 142 172 2 5 144 795 5 2147483647 144 173 2 5 147 796 5 2147483647 147 174 2 5 151 797 5 2147483647 151 175 2 5 153 798 5 2147483647 153 176 2 5 155 799 5 2147483647 155 177 2 5 159 800 5 2147483647 159 178 2 5 163 801 5 2147483647 163 179 2 5 165 802 5 2147483647 165 180 2 5 168 803 5 2147483647 168 181 2 5 170 804 5 2147483647 170 182 2 5 173 805 5 2147483647 173 183 2 5 175 806 5 2147483647 175 184 2 5 179 807 5 2147483647 179 185 2 5 181 186 2 5 183 809 5 2147483647 183 187 2 5 185 810 5 2147483647 185 188 2 5 187 811 5 2147483647 187 189 2 5 190 812 5 2147483647 190 190 2 5 192 813 5 2147483647 192 191 2 5 196 814 5 2147483647 196 192 2 5 198 815 5 2147483647 198 193 2 5 202 816 5 2147483647 202 194 2 5 205 817 5 2147483647 205 195 2 5 208 818 5 2147483647 208 196 2 5 211 819 5 2147483647 211 197 2 5 214 820 5 2147483647 214 198 2 5 218 821 5 2147483647 218 199 2 5 221 822 5 2147483647 221 200 2 5 224 823 5 2147483647 224 201 2 5 227 824 5 2147483647 227 202 2 5 229 825 5 2147483647 229 203 2 5 231 826 5 2147483647 231 204 2 5 233 827 5 2147483647 233 205 2 5 235 828 5 2147483647 235 206 2 5 237 829 5 2147483647 237 207 2 5 239 830 5 2147483647 239 208 2 5 241 831 5 2147483647 241 209 2 5 243 832 5 2147483647 243 210 2 5 245 833 5 2147483647 245 211 2 5 247 834 5 2147483647 247 212 2 5 252 213 2 5 254 836 5 2147483647 254 214 2 5 258 837 5 2147483647 258 215 2 5 260 1630 294 295 1166 216 2 5 262 839 5 2147483647 262 217 2 5 264 840 5 2147483647 264 218 2 5 267 841 5 2147483647 267 219 2 5 269 842 5 2147483647 269 220 2 5 271 843 5 2147483647 271 221 2 5 275 844 5 2147483647 275 222 2 5 277 845 5 2147483647 277 223 2 5 279 846 5 2147483647 279 224 2 5 282 847 5 2147483647 282 225 2 5 284 848 5 2147483647 284 226 2 5 286 849 5 2147483647 286 227 2 5 288 850 5 2147483647 288 228 2 5 290 851 5 2147483647 290 229 2 5 292 852 5 2147483647 292 230 2 5 295 853 5 2147483647 295 231 2 5 297 854 5 2147483647 297 232 2 5 299 855 5 2147483647 299 233 2 5 301 856 5 2147483647 301 234 2 5 303 857 5 2147483647 303 235 2 5 305 858 5 2147483647 305 236 2 5 307 859 5 2147483647 307 237 2 5 309 860 5 2147483647 309 238 2 5 312 861 5 2147483647 312 239 2 5 315 862 5 2147483647 315 526 3 5 518 527 3 5 522 10 1 5 10 250 2 5 448 866 5 2147483647 448 251 2 5 449 867 5 2147483647 449 252 2 5 450 868 5 2147483647 450 253 2 5 451 869 5 2147483647 451 254 2 5 452 870 5 2147483647 452 261 2 5 22 871 5 2147483647 22 262 2 5 97 872 5 2147483647 97 263 2 5 102 873 5 2147483647 102 264 2 5 150 874 5 2147483647 150 265 2 5 178 875 5 2147483647 178 266 2 5 217 876 5 2147483647 217 267 2 5 274 877 5 2147483647 274 268 2 5 281 878 5 2147483647 281 269 2 5 294 879 5 2147483647 294 270 2 5 311 880 5 2147483647 311 271 2 5 314 881 5 2147483647 314 272 2 5 317 882 5 2147483647 317 472 2 5 465 1634 295 296 1170 303 2 5 56 304 2 5 58 305 2 5 59 307 2 5 62 310 2 5 66 322 2 5 84 356 2 5 145 374 2 5 174 403 2 5 222 404 2 5 223 431 2 5 270 1632 295 297 1168 885 7 2147483647 600 1633 295 305 1169 888 8 2147483647 601 890 9 2147483647 607 891 9 2147483647 609 892 9 2147483647 612 893 9 2147483647 615 894 9 2147483647 617 895 9 2147483647 619 896 9 2147483647 621 897 9 2147483647 624 898 9 2147483647 627 899 9 2147483647 608 900 9 2147483647 610 902 9 2147483647 613 1667 310 311 1200 904 9 2147483647 616 905 9 2147483647 618 906 9 2147483647 620 907 9 2147483647 622 908 9 2147483647 623 909 9 2147483647 625 910 9 2147483647 626 911 9 2147483647 628 912 9 2147483647 629 1668 310 311 1201 1669 310 311 1202 928 9 314 645 917 9 2147483647 634 919 9 2147483647 636 920 9 2147483647 637 921 9 2147483647 638 1711 330 331 1241 923 9 2147483647 640 924 9 2147483647 641 925 9 2147483647 642 1712 330 331 1242 927 9 2147483647 644 929 9 2147483647 646 930 9 2147483647 647 648 5 9 320 933 9 2147483647 320 649 5 9 321 934 9 2147483647 321 650 5 9 322 935 9 2147483647 322 651 5 9 323 936 9 2147483647 323 652 5 9 324 937 9 2147483647 324 653 5 9 325 938 9 2147483647 325 654 5 9 326 939 9 2147483647 326 655 5 9 327 940 9 2147483647 327 656 5 9 328 941 9 2147483647 328 657 5 9 329 942 9 2147483647 329 658 5 9 330 943 9 2147483647 330 659 5 9 331 944 9 2147483647 331 660 5 9 332 945 9 2147483647 332 661 5 9 333 946 9 2147483647 333 662 5 9 334 947 9 2147483647 334 664 5 9 336 948 9 2147483647 336 665 5 9 337 949 9 2147483647 337 666 5 9 338 950 9 2147483647 338 667 5 9 339 951 9 2147483647 339 668 5 9 340 952 9 2147483647 340 669 5 9 341 953 9 2147483647 341 670 5 9 342 671 5 9 343 672 5 9 344 956 9 2147483647 344 673 5 9 345 957 9 2147483647 345 675 5 9 347 958 9 2147483647 347 676 5 9 348 959 9 2147483647 348 678 5 9 350 960 9 2147483647 350 679 5 9 351 961 9 2147483647 351 680 5 9 352 962 9 2147483647 352 681 5 9 353 963 9 2147483647 353 683 5 9 355 964 9 2147483647 355 684 5 9 356 965 9 2147483647 356 685 5 9 357 966 9 2147483647 357 686 5 9 358 687 5 9 359 968 9 2147483647 359 688 5 9 360 969 9 2147483647 360 689 5 9 361 970 9 2147483647 361 690 5 9 362 971 9 2147483647 362 691 5 9 363 1635 296 297 1171 692 5 9 364 973 9 2147483647 364 693 5 9 365 974 9 2147483647 365 694 5 9 366 1636 297 298 1172 695 5 9 367 976 9 2147483647 367 696 5 9 368 977 9 2147483647 368 697 5 9 369 978 9 2147483647 369 698 5 9 370 979 9 2147483647 370 699 5 9 371 980 9 2147483647 371 700 5 9 372 981 9 2147483647 372 703 5 9 375 982 9 2147483647 375 704 5 9 376 983 9 2147483647 376 705 5 9 377 984 9 2147483647 377 706 5 9 378 985 9 2147483647 378 708 5 9 380 986 9 2147483647 380 709 5 9 381 987 9 2147483647 381 710 5 9 382 988 9 2147483647 382 711 5 9 383 989 9 2147483647 383 712 5 9 384 990 9 2147483647 384 713 5 9 385 991 9 2147483647 385 714 5 9 386 992 9 2147483647 386 715 5 9 387 993 9 2147483647 387 716 5 9 388 994 9 2147483647 388 717 5 9 389 995 9 2147483647 389 718 5 9 390 996 9 2147483647 390 719 5 9 391 997 9 2147483647 391 720 5 9 392 998 9 2147483647 392 721 5 9 393 999 9 2147483647 393 722 5 9 394 1000 9 2147483647 394 723 5 9 395 1001 9 2147483647 395 724 5 9 396 1002 9 2147483647 396 725 5 9 397 1003 9 2147483647 397 726 5 9 398 1004 9 2147483647 398 727 5 9 399 1005 9 2147483647 399 728 5 9 400 1006 9 2147483647 400 729 5 9 401 1007 9 2147483647 401 730 5 9 402 1008 9 2147483647 402 731 5 9 403 1637 297 298 1173 732 5 9 404 1010 9 2147483647 404 733 5 9 405 1011 9 2147483647 405 734 5 9 406 735 5 9 407 736 5 9 408 737 5 9 409 1015 9 2147483647 409 738 5 9 410 1016 9 2147483647 410 739 5 9 411 1017 9 2147483647 411 740 5 9 412 1018 9 2147483647 412 741 5 9 413 1019 9 2147483647 413 742 5 9 414 1020 9 2147483647 414 743 5 9 415 1021 9 2147483647 415 744 5 9 416 1022 9 2147483647 416 745 5 9 417 1023 9 2147483647 417 747 5 9 419 1670 311 312 1203 863 5 9 518 864 5 9 522 865 5 9 10 1638 298 299 1174 375 2 9 176 376 2 9 177 423 2 9 256 424 2 9 257 607 5 9 545 615 5 9 555 618 5 9 558 626 5 9 573 628 5 9 576 634 5 9 582 635 5 9 583 637 5 9 585 640 5 9 588 1639 298 301 1175 1029 10 2147483647 659 1030 10 2147483647 658 1031 10 2147483647 657 1032 10 2147483647 656 1672 311 313 1205 1673 312 314 1206 1674 313 314 1207 552 3 10 432 555 3 10 434 889 8 10 603 1713 331 332 1243 1715 331 332 1245 1714 331 334 1244 1028 10 11 660 1740 345 346 1270 328 2 12 94 932 9 12 649 1742 346 347 1272 359 2 13 149 1047 14 2147483647 670 316 2 14 74 317 2 14 75 931 9 14 648 1762 360 361 1292 915 9 15 632 1048 14 15 671 1050 15 16 673 1052 17 2147483647 675 1053 17 2147483647 677 1054 17 2147483647 676 1055 17 2147483647 678 1771 368 369 1301 1025 9 17 518 1763 360 381 1293 1026 9 17 522 1027 9 17 10 1049 15 17 672 1034 10 18 661 1037 10 18 663 922 9 19 639 1056 17 19 679 1063 20 2147483647 682 1064 20 2147483647 683 1057 17 20 518 1058 17 20 522 1059 17 20 10 914 9 20 631 1065 20 21 684 1070 22 2147483647 686 647 5 22 7 522 3 22 524 523 3 22 526 524 3 22 528 9 1 22 9 1051 16 22 674 1069 21 22 685 918 9 23 635 1078 23 24 689 1079 24 25 690 1062 19 26 681 1080 25 26 691 1082 26 27 693 1084 28 2147483647 695 300 2 28 52 1083 27 29 694 1085 29 30 696 1090 31 2147483647 701 1091 31 2147483647 702 1092 31 2147483647 708 553 3 31 433 1040 10 31 434 1033 10 31 650 1061 18 31 661 1098 31 2147483647 661 1035 10 31 653 1041 11 31 664 1042 11 31 665 1043 11 31 666 1036 10 31 652 1060 18 31 680 1038 10 31 655 1100 32 2147483647 712 1101 32 2147483647 709 1102 32 2147483647 715 1103 32 2147483647 711 1097 31 32 650 1099 31 32 653 1093 31 32 706 1094 31 32 707 1104 33 2147483647 716 1095 31 33 433 1105 33 2147483647 433 278 2 33 440 1106 34 2147483647 717 887 8 34 604 1107 34 2147483647 604 886 8 34 606 1108 35 2147483647 718 1066 20 35 518 1640 299 2147483647 1176 1067 20 35 522 1641 299 2147483647 1177 1068 20 35 10 1072 22 36 688 1081 26 37 692 1113 36 37 720 1642 299 300 1178 1071 22 38 687 1086 30 38 697 1118 39 2147483647 725 380 2 39 186 1117 38 40 724 1677 314 2147483647 1210 1119 40 41 726 884 6 42 599 1121 42 2147483647 599 1675 314 315 1208 1115 37 43 722 1123 44 2147483647 729 1124 44 2147483647 730 1125 44 2147483647 731 1110 35 44 518 1676 314 315 1209 1111 35 44 522 1643 299 319 518 1112 35 44 10 1644 299 319 522 883 5 45 465 1645 299 319 10 1120 41 46 727 1716 332 333 1246 1012 9 47 406 1717 332 333 1247 1013 9 47 407 1134 47 2147483647 407 1122 43 47 728 1130 46 47 732 1109 35 342 719 1116 38 48 723 1131 47 48 733 1743 347 350 1273 1764 361 362 1294 1114 37 49 721 1132 47 49 734 1136 48 49 736 1772 369 370 1302 926 9 50 643 1138 49 50 738 1139 49 51 739 1140 50 51 740 1144 52 2147483647 744 1145 52 2147483647 745 1126 44 52 518 1127 44 52 522 1128 44 52 10 1142 51 52 742 1150 53 2147483647 747 1151 53 2147483647 748 358 2 53 148 1046 13 53 669 1146 52 54 746 1039 10 55 432 1096 31 55 434 471 2 55 464 1158 55 2147483647 464 1087 31 55 703 1088 31 55 705 1089 31 55 704 1159 56 2147483647 755 1160 56 2147483647 754 1161 56 2147483647 753 521 2 56 4 1162 56 2147483647 4 1163 57 2147483647 759 1164 57 2147483647 760 1147 52 57 518 1148 52 57 522 1149 52 57 10 1152 54 57 749 954 9 58 342 1169 58 2147483647 342 955 9 58 343 1170 58 2147483647 343 967 9 58 358 1171 58 2147483647 358 972 9 58 363 1172 58 2147483647 363 1009 9 58 403 1133 47 58 406 1174 58 2147483647 406 1014 9 58 408 1175 58 2147483647 408 1024 9 58 419 1176 58 2147483647 419 1137 49 59 737 1143 51 60 743 1165 57 61 761 1177 59 62 762 913 9 63 630 1179 61 63 764 298 2 64 49 642 5 64 590 1135 48 64 735 1178 60 64 763 1180 62 64 765 1181 63 64 766 1183 64 65 768 1187 64 66 772 1188 64 66 773 1192 67 2147483647 777 1193 67 2147483647 778 1194 67 2147483647 779 392 2 67 204 400 2 67 216 903 9 67 614 1195 68 2147483647 780 1646 300 301 1179 1184 64 68 769 1185 64 68 770 1186 64 68 771 1189 65 68 774 1190 66 68 775 1191 66 68 776 1671 311 315 1204 1182 63 69 767 1202 70 2147483647 787 1203 70 2147483647 788 1204 70 2147483647 789 1205 70 2147483647 790 1166 57 70 518 1678 315 316 1211 1167 57 70 522 1679 315 317 1212 1168 57 70 10 1680 315 317 1213 433 2 70 273 1201 69 71 786 1209 71 72 791 1718 333 334 1248 1210 72 73 792 1719 333 335 1249 1211 73 74 793 1213 75 2147483647 800 1744 348 351 1274 1773 370 371 1303 1774 371 372 1304 1220 75 2147483647 803 1156 55 75 432 1269 95 387 838 1157 55 75 434 1222 75 2147483647 434 1154 55 75 752 1153 55 75 750 1155 55 75 751 1223 76 2147483647 807 1224 76 2147483647 808 1225 76 2147483647 809 1221 75 76 432 1226 76 2147483647 432 1217 75 76 804 1218 75 76 805 1219 75 76 806 1227 77 2147483647 810 1228 77 2147483647 811 1206 70 77 518 1207 70 77 522 1208 70 77 10 1212 74 78 794 1232 78 79 812 1234 80 2147483647 814 1235 80 2147483647 815 1229 77 80 518 1230 77 80 522 1231 77 80 10 1233 79 80 813 1236 80 81 816 1240 81 82 817 1241 82 83 818 378 2 84 182 1242 83 85 819 1244 85 86 821 1245 86 87 822 1247 88 2147483647 824 1248 88 2147483647 825 384 2 88 193 1200 68 88 785 1246 87 88 823 1250 88 89 827 1252 90 2147483647 829 1253 90 2147483647 830 1254 90 2147483647 831 1237 80 90 518 1238 80 90 522 1239 80 90 10 1249 88 90 826 1259 91 2147483647 833 1260 91 2147483647 834 1256 90 91 518 1257 90 91 522 1258 90 91 10 1255 90 92 832 1265 93 2147483647 836 1214 75 93 795 1266 93 2147483647 795 1215 75 93 797 1267 93 2147483647 797 1216 75 93 799 1264 92 94 835 323 2 95 85 357 2 95 146 1268 94 96 837 1271 96 97 840 1272 97 98 841 1273 98 99 842 1276 100 2147483647 845 1277 100 2147483647 846 371 2 100 169 1274 99 100 843 1275 100 101 844 1196 68 102 781 312 2 103 68 1279 102 104 848 1278 101 105 847 1280 103 106 849 1129 45 107 465 1285 108 2147483647 853 1286 108 2147483647 854 901 9 108 611 1281 104 109 850 1647 301 302 1180 1287 109 110 855 1648 301 302 1181 1282 105 111 851 1649 302 303 1182 1197 68 112 782 1650 302 303 1183 1288 110 113 856 1289 111 113 857 1681 316 317 1214 1251 89 114 828 1292 113 114 860 1294 114 115 862 1296 116 2147483647 864 1297 116 2147483647 865 1685 318 319 1218 1261 91 116 518 1686 318 319 1219 1262 91 116 522 1263 91 116 10 1293 114 116 861 1631 294 334 1167 1295 115 117 863 1298 116 117 866 1720 334 335 1250 1303 117 118 868 1722 334 339 1252 1721 334 341 1251 1302 117 119 867 1304 118 119 869 1741 345 349 1271 1305 119 120 870 1306 119 120 871 1310 121 2147483647 875 1141 50 121 741 1270 95 121 839 1311 122 2147483647 876 1745 349 352 1275 1307 120 122 872 1312 122 123 877 1775 372 373 1305 1313 123 124 878 1651 302 406 1184 1314 124 125 879 1316 126 2147483647 881 1317 126 2147483647 882 1318 126 2147483647 883 1360 149 409 7 1299 116 126 518 1362 149 409 524 1300 116 126 522 1363 149 409 526 1301 116 126 10 1364 149 409 528 1308 120 126 873 1309 121 442 874 1315 125 127 880 1284 107 453 465 1323 127 128 885 1319 126 129 884 1324 128 130 886 1326 130 131 888 1330 132 2147483647 892 338 2 132 114 339 2 132 115 1327 131 132 889 1328 132 133 890 1332 134 2147483647 894 1333 134 2147483647 895 774 5 134 93 1335 134 2147483647 93 1320 126 134 518 1321 126 134 522 1322 126 134 10 1044 12 134 667 1331 133 135 893 1339 135 136 897 1340 136 137 898 1341 137 138 899 1291 113 139 859 1343 139 140 901 1342 138 141 900 1344 140 141 902 1345 141 142 903 1348 143 2147483647 906 1349 144 2147483647 907 1334 134 144 896 613 5 145 552 1346 141 146 904 1353 147 2147483647 911 616 5 147 556 1351 146 147 909 1352 147 148 910 1355 149 2147483647 913 1356 149 2147483647 914 1357 149 2147483647 915 1358 149 2147483647 916 1073 22 149 7 975 9 149 366 1361 149 2147483647 366 1074 22 149 524 1075 22 149 526 1076 22 149 528 1077 22 149 9 1354 148 149 912 1359 149 150 917 1173 58 151 403 1652 303 304 1185 1366 150 151 918 1653 303 304 1186 1290 112 152 858 1367 151 153 919 1370 153 154 921 1682 317 318 1215 1347 142 155 905 1371 154 155 922 1684 317 318 1217 1372 155 156 923 1683 317 319 1216 1373 155 157 924 1368 151 158 403 1376 158 2147483647 403 1325 129 159 887 1723 335 336 1253 1369 152 160 920 1375 157 160 926 1724 335 336 1254 1379 160 161 929 1377 159 162 927 1746 350 351 1276 916 9 163 633 1381 162 164 931 1776 373 374 1306 1385 165 2147483647 935 1386 165 2147483647 936 1365 149 409 9 1410 181 431 960 610 5 165 549 614 5 165 553 1283 106 165 852 1350 145 165 908 1380 161 166 930 1389 166 167 939 1390 167 168 940 1391 168 169 941 1392 169 170 942 1388 165 171 938 611 5 172 550 612 5 172 551 1387 165 172 937 1394 171 172 944 1400 173 2147483647 950 1383 164 173 933 1393 170 174 943 1045 12 175 668 1397 172 175 947 1401 174 176 951 1374 156 177 925 1405 177 178 955 1404 176 179 954 1406 178 180 956 1329 132 181 891 1399 173 181 949 1408 180 181 958 1403 175 182 953 1407 179 182 957 1409 181 182 959 1411 181 182 961 1412 182 183 962 1416 183 184 966 1414 182 185 964 1417 184 185 967 1415 182 186 965 1418 185 186 968 1419 185 186 969 1420 186 187 970 1422 186 188 972 1423 187 188 973 1421 186 189 971 1424 188 190 974 1413 182 191 963 1427 190 192 977 1430 193 2147483647 980 1431 193 2147483647 981 1434 193 2147483647 984 1336 134 193 518 1337 134 193 522 1338 134 193 10 1395 172 193 945 1396 172 193 946 1398 172 193 948 1402 175 193 952 1428 191 193 978 1429 192 193 979 1425 188 194 975 1432 193 194 982 1433 193 194 983 1441 194 195 988 1444 195 196 991 1495 216 299 518 1445 196 197 992 1496 216 299 522 1497 216 299 10 1442 194 198 989 1446 197 198 993 1447 198 199 994 1725 336 337 1255 1448 198 200 995 1449 199 200 996 1726 336 338 1256 1378 160 201 928 1450 200 201 997 1747 351 352 1277 1451 200 202 998 1452 201 202 999 1748 351 358 1278 1777 374 375 1307 1509 224 416 1046 1435 193 203 985 1436 193 203 986 1437 193 203 987 1454 202 203 1001 1455 202 203 1002 794 5 204 142 1460 204 2147483647 142 355 2 204 143 1462 205 2147483647 1008 1426 189 205 976 1443 194 205 990 1461 205 206 1007 1457 203 207 1004 1456 203 208 1003 1458 203 209 1005 1464 207 209 1010 1465 208 209 1011 1466 209 210 1012 1470 211 2147483647 1016 1471 211 2147483647 1017 1472 211 2147483647 1018 1438 193 211 518 1439 193 211 522 1440 193 211 10 1467 209 211 1013 1477 212 2147483647 1020 1478 212 2147483647 1022 1479 212 2147483647 1021 1480 212 2147483647 1023 1481 212 2147483647 1024 1474 211 212 518 1475 211 212 522 1476 211 212 10 1469 210 212 1015 1487 213 2147483647 1027 1382 163 213 932 1473 211 213 1019 1482 212 213 1025 1488 213 214 1028 1489 214 215 1029 1491 216 2147483647 1031 1492 216 2147483647 1032 1493 216 2147483647 1033 1483 212 216 518 1484 212 216 522 1485 212 216 10 1486 213 216 1026 1490 215 217 1030 1498 217 218 1035 1494 216 219 1034 1499 218 219 1036 1500 219 220 1037 1501 219 221 1038 1502 220 221 1039 1503 221 222 1040 1505 222 223 1042 1459 203 224 1006 1468 209 224 1014 1506 223 224 1043 1507 224 225 1044 1510 225 226 1047 1504 221 227 1041 1511 226 227 1048 1512 227 228 1049 1513 227 228 1050 1514 228 229 1051 1518 230 2147483647 1055 1519 230 2147483647 1056 641 5 230 589 1199 68 230 784 1515 228 230 1052 1516 229 231 1053 1517 230 231 1054 1520 231 232 1057 1521 231 233 1058 1522 232 233 1059 1523 233 234 1060 1524 233 234 1061 1525 234 235 1062 1594 277 294 1131 1526 234 236 1063 1527 235 236 1064 1530 237 2147483647 1067 1384 165 237 934 1599 279 302 1136 1453 201 238 1000 1529 236 238 1066 1727 337 339 1257 1528 236 239 1065 1534 240 2147483647 1071 1536 240 2147483647 1073 1537 240 2147483647 1074 629 5 240 577 1198 68 240 783 1533 239 240 1070 1749 352 353 1279 1532 238 241 1069 1535 240 241 1072 1750 352 353 1280 1553 250 358 1090 1538 241 242 1075 1539 241 242 1076 1540 242 243 1077 1542 243 244 1079 1541 242 245 1078 1543 244 245 1080 1544 245 246 1081 1545 245 246 1082 1547 246 247 1084 1546 246 248 1083 1548 247 249 1085 1549 248 249 1086 1243 84 250 820 1550 249 250 1087 1552 250 251 1089 1554 251 252 1091 1551 249 253 1088 1555 252 253 1092 1556 253 254 1093 1557 253 254 1094 1558 254 255 1095 1560 255 256 1097 1559 254 257 1096 1561 256 257 1098 1562 257 258 1099 1563 257 258 1100 1565 258 259 1102 1564 258 260 1101 1567 260 261 1104 1566 259 262 1103 1568 261 262 1105 1569 262 263 1106 1570 262 263 1107 1571 263 264 1108 1572 263 265 1109 1573 264 266 1110 1575 266 267 1112 1576 267 268 1113 1574 265 269 1111 1577 268 269 1114 1463 206 270 1009 1578 269 270 1115 1580 270 271 1117 1579 269 272 1116 1582 271 272 1119 1583 272 273 1120 1584 272 273 1121 1531 238 274 1068 1585 273 274 1122 1588 274 275 1125 1586 273 276 1123 1589 275 276 1126 1581 270 277 1118 1587 274 277 1124 1591 276 277 1128 1592 277 278 1129 1593 277 278 1130 1508 224 279 1045 1595 278 279 1132 1596 278 279 1133 1601 280 2147483647 1138 838 5 280 260 1602 280 2147483647 260 426 2 280 261 1597 279 280 1134 1598 279 281 1135 1600 280 281 1137 1603 281 282 1139 1604 281 283 1140 1605 282 283 1141 1613 287 288 1149 1614 287 289 1150 1606 283 284 1142 1607 283 284 1143 1615 287 289 1151 1609 284 285 1145 1728 338 340 1258 1608 284 286 1144 1610 285 286 1146 1590 276 287 1127 1611 286 287 1147 1612 286 287 1148 1751 353 354 1281 1752 353 354 1282 1778 375 376 1308 1780 377 2147483647 1310 1781 377 2147483647 1311 1786 379 2147483647 1313 1779 376 380 1309 1785 378 381 1312 1787 380 381 1314 1788 381 382 1315 1791 382 383 1318 1792 383 384 1319 1789 381 385 1316 1793 384 385 1320 1794 385 386 1321 1795 385 386 1322 1799 387 2147483647 1326 1790 381 387 1317 1796 386 387 1323 1798 387 388 1325 1801 387 389 1328 1797 386 390 1324 1802 388 390 1329 1804 390 391 1331 1806 391 392 1333 1807 392 393 1334 1805 390 394 1332 1808 393 394 1335 835 5 395 252 1813 395 2147483647 252 421 2 395 253 1803 389 395 1330 1809 394 395 1336 1811 395 396 1338 1812 395 397 1339 1814 396 397 1340 1815 397 398 1341 1810 394 399 1337 1817 398 399 1343 1816 397 400 1342 1820 400 402 1346 1821 401 402 1347 1822 402 403 1348 1823 402 404 1349 1825 404 405 1351 1826 405 406 1352 1828 406 407 1354 1830 408 2147483647 1356 1831 408 2147483647 1357 1782 377 408 518 1833 408 2147483647 518 1783 377 408 522 1834 408 2147483647 522 1784 377 408 10 1835 408 2147483647 10 1829 407 408 1355 1841 409 410 7 1842 409 410 524 1843 409 410 526 1844 409 410 528 1845 409 410 9 1836 409 410 1359 1837 409 410 1360 1838 409 410 1361 1839 409 410 1362 1840 409 410 1363 1847 410 411 524 1848 410 411 526 1849 410 411 528 1850 410 411 9 1856 411 412 524 1857 411 412 526 1858 411 412 528 1859 411 412 9 1851 411 412 1364 1852 411 412 1365 1853 411 412 1366 1854 411 412 1367 1855 411 412 1368 1860 412 413 524 1861 412 413 526 1862 412 413 528 1863 412 413 9 1869 413 414 524 1870 413 414 526 1871 413 414 528 1872 413 414 9 1864 413 414 1369 1865 413 414 1370 1866 413 414 1371 1867 413 414 1372 1868 413 414 1373 1819 399 415 1345 1878 416 2147483647 1375 1879 416 2147483647 1376 1827 406 416 1353 1877 415 417 1374 1818 399 418 1344 1881 418 419 1378 1832 408 420 1358 1882 419 420 1379 1885 421 2147483647 1382 1886 421 2147483647 1383 1887 421 2147483647 1384 1888 421 2147483647 1385 1889 421 2147483647 1386 1846 410 421 7 1891 421 2147483647 7 1873 414 421 524 1892 421 2147483647 524 1874 414 421 526 1893 421 2147483647 526 1875 414 421 528 1894 421 2147483647 528 1876 414 421 9 1895 421 2147483647 9 1883 420 421 1380 1890 421 422 1387 1880 417 423 1377 1896 422 423 1388 1897 423 424 1389 1898 423 424 1390 1899 424 425 1391 1884 420 426 1381 1901 425 426 1393 1902 426 427 1394 1904 427 428 1396 1900 424 429 1392 1905 428 429 1397 1906 429 430 1398 1911 431 2147483647 1403 1824 403 431 1350 1903 426 431 1395 1908 430 431 1400 1909 431 432 1401 1910 431 432 1402 1913 432 433 1405 1915 433 434 1407 1916 434 435 1408 1917 435 436 1409 1907 429 437 1399 1918 436 437 1410 1919 437 438 1411 1920 437 438 1412 1921 438 439 1413 1922 438 439 1414 1923 439 440 1415 1925 440 441 1417 1929 442 2147483647 1421 1930 442 2147483647 1422 1924 439 442 1416 1926 441 442 1418 1927 442 443 1419 1928 442 444 1420 1931 443 444 1423 1935 445 2147483647 596 1932 444 445 1424 1936 445 446 598 1938 446 2147483647 598 1934 445 446 1426 1937 446 447 1427 1912 431 448 1404 1933 444 449 1425 1940 448 449 1429 1914 432 450 1406 1941 449 450 1430 1944 450 451 1433 1943 450 452 1432 1945 451 452 1434 1951 453 2147483647 465 1939 447 453 1428 1946 452 453 1435 1947 452 453 1436 1948 453 454 1437 1949 453 454 1438 1950 453 454 1439 1942 449 455 1431 1952 454 455 1440 1954 454 456 1442 1955 455 456 1443 1953 454 457 1441 1957 456 457 1445 1958 456 458 1446 1959 457 458 1447 1960 457 459 1448 1961 458 459 1449 1962 458 459 1450 1963 459 460 1451 1964 459 460 1452 1965 459 460 1453 1966 460 461 1454 1968 460 461 1456 1967 460 462 1455 1969 461 462 1457 1970 461 463 1458 1971 462 463 1459 1973 463 464 1461 1975 464 465 1463 1972 462 466 1460 1976 465 466 1464 1977 466 467 1465 1982 468 2147483647 1470 1956 455 468 1444 1974 463 468 1462 1979 467 468 1467 1980 468 469 1468 1981 468 469 1469 1983 469 470 1471 1984 469 470 1472 1978 466 471 1466 1985 470 471 1473 1986 470 472 1474 1987 471 472 1475 1988 471 472 1476 808 5 473 181 1995 473 2147483647 181 1800 387 473 1327 1989 472 473 1477 1990 472 473 1478 1991 472 473 1479 1992 473 474 1480 1993 473 474 1481 1994 473 474 1482 1996 474 475 1483 1998 474 476 1485 1999 475 476 1486 2000 476 477 1487 2001 476 478 1488 2002 477 478 1489 2003 478 479 1490 2004 478 479 1491 2005 479 480 1492 1997 474 481 1484 2006 479 481 1493 2007 480 481 1494 2008 481 482 1495 2011 482 483 1498 2012 483 484 1499 2010 481 485 1497 2013 484 485 1500 2014 485 486 1501 2015 485 486 1502 2018 487 2147483647 1505 2019 487 2147483647 1506 2020 487 2147483647 1507 2009 481 487 1496 2016 486 487 1503 2017 486 487 1504 2021 487 2147483647 1508 2022 487 2147483647 1509 2023 488 2147483647 1510 1 1 488 1 2024 488 2147483647 1 \. 1 2009-05-18 07:26:01.007-07 2 2009-05-18 07:26:06.256-07 3 2009-05-18 07:26:12.721-07 4 2009-05-18 07:26:41.399-07 5 2009-05-18 07:27:14.187-07 6 2009-05-18 07:35:00.562-07 7 2009-05-18 07:35:10.554-07 8 2009-05-18 07:42:03.873-07 9 2009-05-20 07:51:09.382-07 10 2009-05-20 08:23:39.515-07 11 2009-05-20 08:28:02.994-07 12 2009-05-20 23:50:38.166-07 13 2009-05-21 23:52:05.594-07 14 2009-05-22 23:52:56.854-07 15 2009-05-27 00:02:20.162-07 16 2009-06-02 00:04:35.992-07 17 2009-06-07 00:05:13.663-07 18 2009-06-10 08:16:05.981-07 19 2009-06-11 00:09:15.998-07 20 2009-06-11 23:55:19.259-07 21 2009-06-12 23:49:30.12-07 22 2009-06-16 00:09:21.123-07 23 2009-06-16 23:54:44.521-07 24 2009-06-17 23:52:49.849-07 25 2009-06-18 23:54:34.922-07 26 2009-06-20 23:58:02.696-07 27 2009-06-22 23:56:22.076-07 28 2009-06-23 23:56:53.31-07 29 2009-06-25 04:10:05.177-07 30 2009-06-29 23:12:41.458-07 31 2009-07-01 07:28:46.426-07 32 2009-07-01 07:35:34.728-07 33 2009-07-01 07:38:32.059-07 34 2009-07-01 07:40:54.811-07 35 2009-07-01 23:06:39.37-07 36 2009-07-06 23:18:14.259-07 37 2009-07-08 23:40:39.162-07 38 2009-07-09 23:18:32.103-07 39 2009-07-10 23:18:04.742-07 40 2009-07-13 23:18:27.231-07 41 2009-07-14 23:12:26.798-07 42 2009-07-15 10:06:21.264-07 43 2009-07-15 23:16:32.535-07 44 2009-07-16 23:13:49.357-07 45 2009-07-21 23:14:55.304-07 46 2009-07-27 23:19:22.862-07 47 2009-07-28 23:12:36.809-07 48 2009-07-29 23:44:50.25-07 49 2009-07-30 23:27:16.891-07 50 2009-07-31 23:14:17.777-07 51 2009-08-03 23:23:56.739-07 52 2009-08-05 23:16:27.955-07 53 2009-08-06 23:17:29.386-07 54 2009-08-07 23:18:08.749-07 55 2009-08-12 09:12:40.302-07 56 2009-08-12 09:28:43.267-07 57 2009-08-12 23:15:32.075-07 58 2009-08-14 23:19:06.062-07 59 2009-08-18 23:09:46.365-07 60 2009-08-19 23:15:11.539-07 61 2009-08-20 23:16:11.024-07 62 2009-08-27 23:18:02.72-07 63 2009-08-31 23:32:50.46-07 64 2009-09-01 23:16:40.713-07 65 2009-09-02 23:09:17.526-07 66 2009-09-03 23:14:55.958-07 67 2009-09-04 23:12:20.55-07 68 2009-09-07 23:24:22.15-07 69 2009-09-08 23:11:19.376-07 70 2009-09-12 03:47:21.528-07 71 2009-09-18 03:37:47.996-07 72 2009-09-19 03:48:51.614-07 73 2009-09-22 03:45:58.368-07 74 2009-09-23 03:26:15.574-07 75 2009-09-23 10:10:43.14-07 76 2009-09-23 10:40:01.56-07 77 2009-09-24 03:32:21.171-07 78 2009-09-25 03:30:59.314-07 79 2009-09-29 03:41:22.855-07 80 2009-09-30 03:53:01.281-07 81 2009-10-01 03:43:51.497-07 82 2009-10-08 03:38:04.703-07 83 2009-10-09 03:34:37.279-07 84 2009-10-10 03:38:57.479-07 85 2009-10-21 03:41:26.554-07 86 2009-10-29 01:06:15.802-07 87 2009-10-30 01:07:00.451-07 88 2009-11-04 01:09:12.258-08 89 2009-11-11 01:14:01.30-08 90 2009-11-14 01:06:40.215-08 91 2009-11-18 01:07:58.29-08 92 2009-11-19 23:00:28.449-08 93 2009-11-20 12:42:07.284-08 94 2009-11-23 23:09:17.142-08 95 2009-11-24 23:02:25.604-08 96 2009-11-27 23:02:01.314-08 97 2009-12-01 04:24:32.282-08 98 2009-12-02 04:22:16.566-08 99 2009-12-08 04:33:51.571-08 100 2009-12-09 04:18:04.833-08 101 2009-12-11 04:20:45.125-08 102 2009-12-12 04:19:34.896-08 103 2009-12-15 04:28:44.272-08 104 2009-12-18 04:12:53.423-08 105 2009-12-26 04:23:53.551-08 106 2009-12-30 04:20:44.501-08 107 2009-12-31 04:25:23.441-08 108 2010-01-07 01:56:13.149-08 109 2010-01-08 02:00:33.409-08 110 2010-01-09 02:02:07.206-08 111 2010-01-12 02:12:58.54-08 112 2010-01-15 02:07:19.653-08 113 2010-01-19 02:54:55.027-08 114 2010-01-20 02:43:09.806-08 115 2010-01-23 02:08:16.791-08 116 2010-01-25 20:13:40.453-08 117 2010-01-26 20:11:30.574-08 118 2010-01-28 20:16:38.761-08 119 2010-02-01 20:25:06.344-08 120 2010-02-02 20:14:10.979-08 121 2010-02-03 20:13:04.141-08 122 2010-02-08 20:23:54.936-08 123 2010-02-09 20:15:54.754-08 124 2010-02-10 20:14:24.008-08 125 2010-02-19 20:21:14.895-08 126 2010-02-23 20:18:55.515-08 127 2010-02-26 20:15:59.98-08 128 2010-03-02 01:48:38.733-08 129 2010-03-04 01:45:06.784-08 130 2010-03-05 01:47:20.616-08 131 2010-03-11 01:49:30.245-08 132 2010-03-12 01:50:57.728-08 133 2010-03-13 01:50:06.695-08 134 2010-03-17 01:52:23.555-07 135 2010-03-20 01:54:20.317-07 136 2010-03-23 02:08:59.113-07 137 2010-03-24 01:57:36.362-07 138 2010-03-25 01:56:27.523-07 139 2010-03-27 02:06:06.223-07 140 2010-03-29 02:40:25.958-07 141 2010-03-30 02:13:46.161-07 142 2010-03-31 01:56:43.153-07 143 2010-04-02 03:05:18.835-07 144 2010-04-06 03:24:33.773-07 145 2010-04-10 03:26:55.015-07 146 2010-04-13 03:51:07.135-07 147 2010-04-16 03:23:03.942-07 148 2010-04-17 03:22:34.697-07 149 2010-04-20 04:31:43.858-07 150 2010-04-21 03:06:22.143-07 151 2010-04-22 03:20:55.529-07 152 2010-04-23 03:36:11.533-07 153 2010-04-24 03:25:55.688-07 154 2010-04-27 03:44:59.924-07 155 2010-04-28 03:29:19.452-07 156 2010-04-29 03:29:54.045-07 157 2010-04-30 03:34:10.712-07 158 2010-05-06 03:57:31.653-07 159 2010-05-08 00:52:28.668-07 160 2010-05-11 01:05:30.004-07 161 2010-05-13 00:57:01.448-07 162 2010-05-14 01:01:14.097-07 163 2010-05-15 01:05:13.811-07 164 2010-05-18 01:30:08.385-07 165 2010-05-22 01:16:13.229-07 166 2010-05-28 01:59:01.596-07 167 2010-06-01 02:24:11.086-07 168 2010-06-03 02:03:56.619-07 169 2010-06-04 02:05:46.512-07 170 2010-06-09 22:04:19.169-07 171 2010-06-11 22:01:51.787-07 172 2010-06-14 22:19:51.538-07 173 2010-06-15 22:07:21.409-07 174 2010-06-21 22:21:29.888-07 175 2010-06-22 22:05:47.579-07 176 2010-06-23 22:09:23.544-07 177 2010-06-24 22:10:29.654-07 178 2010-06-25 22:14:33.951-07 179 2010-06-28 22:25:34.43-07 180 2010-06-29 22:10:19.815-07 181 2010-07-01 03:40:29.925-07 182 2010-07-02 03:42:01.471-07 183 2010-07-03 03:53:05.736-07 184 2010-07-06 03:53:38.638-07 185 2010-07-06 22:54:36.077-07 186 2010-07-07 22:58:13.184-07 187 2010-07-08 23:02:56.14-07 188 2010-07-09 23:03:55.67-07 189 2010-07-12 23:23:17.149-07 190 2010-07-13 23:05:33.088-07 191 2010-07-14 23:08:16.762-07 192 2010-07-15 23:15:13.276-07 193 2010-07-16 23:08:52.358-07 194 2010-07-19 23:39:59.272-07 195 2010-07-20 23:14:18.776-07 196 2010-07-21 23:10:09.07-07 197 2010-07-22 23:23:29.875-07 198 2010-07-25 23:06:23.145-07 199 2010-07-27 23:09:18.816-07 200 2010-07-28 23:14:21.619-07 201 2010-07-29 23:13:56.101-07 202 2010-08-02 23:31:45.225-07 203 2010-08-03 23:05:38.002-07 204 2010-08-04 23:10:59.209-07 205 2010-08-05 23:16:20.74-07 206 2010-08-06 23:13:36.165-07 207 2010-08-09 23:40:33.418-07 208 2010-08-10 23:09:21.193-07 209 2010-08-13 23:14:58.127-07 210 2010-08-17 23:07:22.702-07 211 2010-08-18 23:08:04.758-07 212 2010-08-19 23:07:58.385-07 213 2010-08-20 23:18:45.106-07 214 2010-08-23 23:22:50.316-07 215 2010-08-26 23:09:16.567-07 216 2010-08-27 23:21:15.866-07 217 2010-08-30 23:10:10.34-07 218 2010-08-31 23:15:42.281-07 219 2010-09-01 23:10:35.088-07 220 2010-09-02 23:18:50.998-07 221 2010-09-08 00:07:19.329-07 222 2010-09-08 23:23:04.73-07 223 2010-09-11 00:10:14.592-07 224 2010-09-13 23:46:21.369-07 225 2010-09-14 23:17:48.996-07 226 2010-09-15 23:11:35.61-07 227 2010-09-16 23:19:51.578-07 228 2010-09-20 23:43:55.923-07 229 2010-09-21 23:19:26.949-07 230 2010-09-23 23:23:22.649-07 231 2010-09-27 23:24:41.223-07 232 2010-09-28 23:15:17.72-07 233 2010-09-30 23:36:05.117-07 234 2010-10-01 23:27:10.852-07 235 2010-10-04 23:41:12.65-07 236 2010-10-05 23:20:33.12-07 237 2010-10-08 23:21:04.344-07 238 2010-10-11 23:46:09.924-07 239 2010-10-12 23:20:36.264-07 240 2010-10-14 23:21:23.624-07 241 2010-10-15 23:27:22.267-07 242 2010-10-18 22:09:34.441-07 243 2010-10-20 22:01:53.389-07 244 2010-10-21 22:04:02.706-07 245 2010-10-25 22:32:43.058-07 246 2010-10-26 22:05:57.681-07 247 2010-10-28 22:10:31.484-07 248 2010-10-29 22:11:50.601-07 249 2010-11-01 22:31:44.302-07 250 2010-11-02 22:07:04.205-07 251 2010-11-03 22:08:42.091-07 252 2010-11-04 22:11:54.214-07 253 2010-11-08 22:29:33.505-08 254 2010-11-09 22:10:36.665-08 255 2010-11-11 22:43:26.282-08 256 2010-11-12 22:11:25.767-08 257 2010-11-15 22:25:03.481-08 258 2010-11-16 22:16:35.402-08 259 2010-11-17 22:02:58.456-08 260 2010-11-18 22:03:50.443-08 261 2010-11-19 22:13:09.638-08 262 2010-11-22 22:23:11.904-08 263 2010-11-23 22:09:02.06-08 264 2010-11-24 22:10:33.099-08 265 2010-11-25 22:02:10.22-08 266 2010-11-26 22:11:23.613-08 267 2010-11-29 22:23:13.812-08 268 2010-11-30 22:10:07.298-08 269 2010-12-01 22:11:15.973-08 270 2010-12-03 00:24:49.906-08 271 2010-12-04 00:22:28.449-08 272 2010-12-06 22:18:27.883-08 273 2010-12-07 22:07:21.781-08 274 2010-12-08 22:11:08.529-08 275 2010-12-09 22:21:39.548-08 276 2010-12-13 23:25:45.424-08 277 2010-12-14 22:14:28.315-08 278 2010-12-15 22:11:58.296-08 279 2010-12-16 22:45:44.949-08 280 2010-12-17 22:19:53.368-08 281 2010-12-21 04:20:28.266-08 282 2010-12-22 04:17:04.246-08 283 2010-12-23 04:16:45.94-08 284 2010-12-24 04:20:07.744-08 285 2010-12-25 05:13:39.591-08 286 2010-12-28 04:25:22.208-08 287 2010-12-29 04:19:17.781-08 288 2010-12-30 04:20:13.033-08 289 2011-01-07 05:20:24.895-08 290 2011-01-08 04:24:56.585-08 291 2011-01-11 04:43:38.336-08 292 2011-01-12 04:20:56.245-08 293 2011-01-13 05:21:16.56-08 294 2011-01-14 04:23:24.694-08 295 2011-01-15 04:29:36.444-08 296 2011-01-18 04:40:11.99-08 297 2011-01-19 04:20:59.93-08 298 2011-01-20 04:22:28.927-08 299 2011-01-21 04:24:59.785-08 300 2011-01-25 04:35:01.874-08 301 2011-01-26 04:23:32.873-08 302 2011-01-27 04:22:52.232-08 303 2011-01-28 04:23:37.672-08 304 2011-01-28 21:57:33.268-08 305 2011-01-31 22:04:25.53-08 306 2011-02-01 21:55:32.083-08 307 2011-02-02 21:52:43.999-08 308 2011-02-03 21:58:17.576-08 309 2011-02-04 21:59:24.953-08 310 2011-02-07 22:16:10.249-08 311 2011-02-08 21:57:49.279-08 312 2011-02-09 21:57:18.975-08 313 2011-02-10 21:58:14.684-08 314 2011-02-11 21:58:44.164-08 315 2011-02-14 22:10:50.057-08 316 2011-02-15 21:57:49.814-08 317 2011-02-16 21:55:48.763-08 318 2011-02-17 22:01:35.431-08 319 2011-02-19 01:16:22.675-08 320 2011-02-22 01:29:09.148-08 321 2011-02-23 01:14:26.405-08 322 2011-02-24 01:21:20.631-08 323 2011-02-25 01:01:36.755-08 324 2011-02-26 01:03:14.991-08 325 2011-03-01 01:13:07.185-08 326 2011-03-02 01:01:31.374-08 327 2011-03-03 01:03:55.378-08 328 2011-03-05 01:04:45.441-08 329 2011-03-08 01:22:48.793-08 330 2011-03-10 01:36:30.614-08 331 2011-03-11 01:07:06.328-08 332 2011-03-12 01:07:22.397-08 333 2011-03-15 01:21:08.124-07 334 2011-03-16 01:00:49.637-07 335 2011-03-17 01:08:44.482-07 336 2011-03-18 01:12:32.059-07 337 2011-03-22 01:21:27.987-07 338 2011-03-23 01:06:23.889-07 339 2011-03-24 01:07:05.024-07 340 2011-03-25 01:07:55.985-07 341 2011-03-29 01:08:30.331-07 342 2011-03-31 00:53:34.47-07 343 2011-04-01 00:56:33.263-07 344 2011-04-08 01:10:15.769-07 345 2011-04-09 01:05:12.002-07 346 2011-04-12 01:14:48.075-07 347 2011-04-13 01:02:15.516-07 348 2011-04-19 01:06:31.594-07 349 2011-04-20 00:56:38.682-07 350 2011-04-21 00:56:23.211-07 351 2011-04-22 00:58:25.677-07 352 2011-04-26 01:19:23.819-07 353 2011-04-27 00:59:26.205-07 354 2011-04-28 01:03:42.43-07 355 2011-04-29 01:03:07.154-07 356 2011-04-30 01:10:24.801-07 357 2011-05-03 01:07:05.843-07 358 2011-05-04 01:00:33.753-07 359 2011-05-05 01:03:13.782-07 360 2011-05-07 00:58:46.915-07 361 2011-05-10 01:20:18.488-07 362 2011-05-10 20:52:44.659-07 363 2011-05-11 20:59:19.313-07 364 2011-05-12 21:01:24.808-07 365 2011-05-13 21:00:27.769-07 366 2011-05-16 21:16:53.786-07 367 2011-05-17 21:03:56.032-07 368 2011-05-18 21:06:43.576-07 369 2011-05-23 21:17:21.273-07 370 2011-05-24 21:15:36.047-07 371 2011-05-25 21:04:41.251-07 372 2011-05-26 21:07:49.14-07 373 2011-05-27 21:15:11.862-07 374 2011-05-31 21:29:49.354-07 375 2011-06-01 23:46:10.265-07 376 2011-06-03 01:19:32.64-07 377 2011-06-09 01:04:06.605-07 378 2011-06-10 01:33:19.941-07 379 2011-06-16 01:15:44.065-07 380 2011-06-17 01:19:04.439-07 381 2011-06-18 01:31:18.225-07 382 2011-06-22 01:40:12.92-07 383 2011-06-23 01:21:41.917-07 384 2011-06-24 01:25:05.279-07 385 2011-06-25 01:19:38.477-07 386 2011-06-29 01:01:08.142-07 387 2011-06-30 00:51:14.328-07 388 2011-07-01 00:47:46.602-07 389 2011-07-02 00:55:13.965-07 390 2011-07-07 01:44:10.384-07 391 2011-07-09 00:53:24.158-07 392 2011-07-12 01:16:00.962-07 393 2011-07-13 00:47:21.624-07 394 2011-07-14 00:50:14.174-07 395 2011-07-15 00:48:03.308-07 396 2011-07-16 00:53:23.147-07 397 2011-07-19 01:02:42.534-07 398 2011-07-20 00:53:13.48-07 399 2011-07-27 23:40:08.211-07 400 2011-08-01 23:49:29.117-07 401 2011-08-02 23:37:16.693-07 402 2011-08-03 23:39:39.771-07 403 2011-08-04 23:40:58.685-07 404 2011-08-09 23:42:45.909-07 405 2011-08-12 02:27:15.938-07 406 2011-08-16 02:04:04.431-07 407 2011-08-17 01:27:26.962-07 408 2011-08-18 01:22:59.532-07 409 2011-08-25 01:30:21.332-07 410 2011-08-25 03:55:19.15-07 411 2011-08-25 06:55:28.257-07 412 2011-08-25 07:55:31.873-07 413 2011-08-25 08:55:35.13-07 414 2011-08-26 01:23:59.504-07 415 2011-08-27 01:30:15.017-07 416 2011-09-08 02:21:52.01-07 417 2011-09-09 02:29:25.93-07 418 2011-09-10 02:32:06.933-07 419 2011-09-13 02:34:14.494-07 420 2011-09-14 02:38:30.537-07 421 2011-09-15 02:34:10.426-07 422 2011-09-16 02:34:12.571-07 423 2011-09-17 02:39:39.655-07 424 2011-09-20 03:00:46.953-07 425 2011-09-21 02:33:47.476-07 426 2011-09-22 02:23:53.005-07 427 2011-09-23 02:24:07.329-07 428 2011-09-24 02:27:22.108-07 429 2011-09-26 21:54:53.706-07 430 2011-09-27 21:33:37.581-07 431 2011-09-28 21:32:47.684-07 432 2011-09-29 21:34:17.782-07 433 2011-09-30 21:33:12.353-07 434 2011-10-03 21:59:12.38-07 435 2011-10-04 21:30:19.061-07 436 2011-10-05 21:29:46.956-07 437 2011-10-06 21:34:27.237-07 438 2011-10-07 21:36:21.738-07 439 2011-10-10 21:59:38.795-07 440 2011-10-11 21:28:23.978-07 441 2011-10-12 21:29:55.643-07 442 2011-10-13 21:36:56.082-07 443 2011-10-14 21:37:15.75-07 444 2011-10-17 21:59:16.173-07 445 2011-10-18 21:31:41.827-07 446 2011-10-19 21:34:57.369-07 447 2011-10-20 21:47:35.138-07 448 2011-10-21 21:47:13.741-07 449 2011-10-24 22:09:16.346-07 450 2011-10-25 21:54:24.517-07 451 2011-10-26 21:52:45.467-07 452 2011-10-27 21:56:24.554-07 453 2011-10-28 21:53:22.948-07 454 2011-10-31 22:17:03.149-07 455 2011-11-02 21:53:07.88-07 456 2011-11-03 21:54:12.42-07 457 2011-11-04 22:03:19.272-07 458 2011-11-07 22:17:35.621-08 459 2011-11-08 21:49:41.991-08 460 2011-11-09 21:51:38.564-08 461 2011-11-10 21:51:00.784-08 462 2011-11-11 21:56:00.878-08 463 2011-11-14 22:21:02.005-08 464 2011-11-15 21:54:36.92-08 465 2011-11-16 21:47:12.881-08 466 2011-11-17 21:55:02.907-08 467 2011-11-18 21:53:33.254-08 468 2011-11-21 22:19:34.388-08 469 2011-11-22 22:04:09.997-08 470 2011-11-23 21:43:05.079-08 471 2011-11-25 22:15:43.773-08 472 2011-11-28 22:00:34.648-08 473 2011-11-29 21:47:29.189-08 474 2011-11-30 21:49:16.571-08 475 2011-12-01 21:45:20.061-08 476 2011-12-02 21:50:55.998-08 477 2011-12-05 22:01:43.221-08 478 2011-12-06 21:47:47.273-08 479 2011-12-07 21:44:25.398-08 480 2011-12-08 21:40:42.454-08 481 2011-12-09 21:49:00.50-08 482 2011-12-12 22:10:38.219-08 483 2011-12-13 21:49:25.541-08 484 2011-12-14 21:50:47.96-08 485 2011-12-15 21:50:24.68-08 486 2011-12-16 21:51:58.845-08 487 2011-12-19 20:40:23.32-08 488 2011-12-28 15:36:44.629-08 \. 2023 6 \. \. \. 6 1 1 1 10 0 t 1 35 \. 25 0 en-US,Adult Material en-US,Parent category that contains the categories: Adult Content\\, Lingerie and Swimsuit\\, Nudity\\, Sex\\, Sex Education 1 W26 0 en-US,Abortion en-US,Sites with neutral or balanced presentation of the issue. 10 27 0 en-US,Advocacy Groups en-US,Sites that promote change or reform in public policy\\, public opinion\\, social practice\\, economic activities and relationships. 11 28 0 en-US,Productivity PG en-US,Parent category that contains the categories: Advertisements\\, Freeware and Software Download\\, Instant Messaging\\, Message Boards and Clubs\\, Online Brokerage and Trading\\, Pay-to-Surf 110 29 0 en-US,Bandwidth PG en-US,Parent category that contains the categories: Internet Radio and TV\\, Internet Telephony\\, Peer-to-Peer File Sharing\\, Personal Network Storage and Backup\\, Streaming Media 116 30 0 en-US,Entertainment en-US,Sites that provide information about or promote motion pictures\\, non-news radio and television\\, books\\, humor\\, and magazines. 12 31 0 en-US,Social Organizations en-US,Parent category that contains the categories: Professional and Worker Organizations\\, Service and Philanthropic Organizations\\, Social and Affiliation Organizations 122 32 0 en-US,Gambling en-US,Sites that provide information about or promote gambling or support online gambling\\, involving a risk of losing money. 13 33 0 en-US,Games en-US,Sites that provide information about or promote electronic games\\, video games\\, computer games\\, role-playing games\\, or online games. Includes sweepstakes and giveaways. 14 34 0 en-US,Miscellaneous en-US,Parent category that contains the categories: Content Delivery Networks\\, Dynamic Content\\, Image Servers\\, Images (Media)\\, Network Errors\\, Private IP Addresses\\, Uncategorized\\, File Download Servers 146 35 0 en-US,Illegal or Questionable en-US,Sites that provide instruction in or promote nonviolent crime or unethical or dishonest behavior or the avoidance of prosecution therefor. 15 u36 0 en-US,Job Search en-US,Sites that offer information about or support the seeking of employment or employees. 16 .37 0 en-US,Shopping en-US,Sites that support the online purchase of consumer goods and services except: sexual materials\\, lingerie\\, swimwear\\, investments\\, medications\\, educational materials\\, computer software or hardware\\, alcohol\\, tobacco\\, travel\\, vehicles and parts\\, weapons. 17 u38 0 en-US,Sports en-US,Sites that provide information about or promote sports\\, active games\\, and recreation. 18 39 0 en-US,Tasteless en-US,Sites with content that is gratuitously offensive or shocking\\, but not violent or frightening. Includes sites devoted in part or whole to scatology and similar topics or to improper language\\, humor\\, or behavior. 19 40 0 en-US,Extended Protection en-US,Parent category that contains the categories: Elevated Exposure\\, Emerging Exploits\\, Potentially Damaging Content 191 41 0 en-US,Business and Economy en-US,Sites sponsored by or devoted to business firms\\, business associations\\, industry groups\\, or business in general. 2 u42 0 en-US,Travel en-US,Sites that provide information about or promote travel-related services and destinations. 20 43 0 en-US,Vehicles en-US,Sites that provide information about or promote vehicles\\, including those that support online purchase of vehicles or parts. 21 44 0 en-US,Violence en-US,Sites that feature or promote violence or bodily harm\\, including self-inflicted harm; or that gratuitously display images of death\\, gore\\, or injury; or that feature images or descriptions that are grotesque or frightening and of no redeeming value. 22 45 0 en-US,Weapons en-US,Sites that provide information about\\, promote\\, or support the sale of weapons and related items. 23 46 0 en-US,Drugs en-US,Parent category that contains the categories: Abused Drugs\\, Prescribed Medications\\, Marijuana\\, Supplements/Unregulated Compounds 24 47 0 en-US,Militancy and Extremist en-US,Sites that offer information about or promote or are sponsored by groups advocating antigovernment beliefs or action. 25 48 0 en-US,Racism and Hate en-US,Sites that promote the identification of racial groups\\, the denigration or subjection of groups\\, or the superiority of any group. 26 49 0 en-US,Health en-US,Sites that provide information or advice on personal health or medical services\\, procedures\\, or devices\\, but not drugs. Includes self-help groups. 27 50 0 en-US,Education en-US,Parent category that contains the categories: Cultural Institutions\\, Educational Institutions\\, Educational Materials 3 51 0 en-US,Government en-US,Sites sponsored by branches\\, bureaus\\, or agencies of any level of government\\, except for the armed forces. 4 52 0 en-US,News and Media en-US,Sites that offer current news and opinion\\, including those sponsored by newspapers\\, general-circulation magazines\\, or other media. 5 ~53 0 en-US,Religion en-US,Parent category that contains the categories: Traditional Religions\\, Non-Traditional Religions 6 754 0 en-US,User-Defined en-US,User-defined category 64 55 0 en-US,Society and Lifestyles en-US,Sites that provide information about matters of daily life\\, excluding entertainment\\, health\\, hobbies\\, jobs\\, sex\\, and sports. 7 j56 0 en-US,Special Events en-US,Sites devoted to a current event that requires separate categorization. 8 57 0 en-US,Information Technology en-US,Sites sponsored by or providing information about computers\\, software\\, the Internet\\, and related business firms\\, including sites supporting the sale of hardware\\, software\\, peripherals\\, and services. 9 l58 0 en-US,Internet Communication en-US,Parent category that contains the categories: Email\\, Web Chat 91 i59 323 en-US,Pay-to-Surf en-US,Sites that pay users to view Web sites\\, advertisements\\, or email. 100 v60 332 en-US,Internet Auctions en-US,Sites that support the offering and purchasing of goods between individuals. 101 61 332 en-US,Real Estate en-US,Sites that provide information about renting\\, buying\\, selling\\, or financing residential real estate. 102 62 350 en-US,Hobbies en-US,Sites that provide information about or promote private and largely sedentary pastimes\\, but not electronic\\, video\\, or online games. 103 63 333 en-US,Sport Hunting and Gun Clubs en-US,Sites that provide information about or directories of gun clubs and similar groups\\, including war-game and paintball facilities. 107 64 324 en-US,Internet Telephony en-US,Sites that enable users to make telephone calls via the Internet or to obtain information or software for that purpose. 108 w65 324 en-US,Streaming Media en-US,Sites that primarily provide streaming media content\\, such as movie trailers. 109 66 341 en-US,Marijuana en-US,Sites that provide information about or promote the cultivation\\, preparation\\, or use of marijuana. 111 67 323 en-US,Message Boards and Forums en-US,Sites that host message boards\\, bulletin boards\\, and other unaffiliated discussion forums. 112 68 324 en-US,Personal Network Storage and Backup en-US,Sites that store personal files on Internet servers for backup or exchange. 113 69 324 en-US,Internet Radio and TV en-US,Sites whose primary purpose is to provide radio or TV programming on the Internet. 114 70 324 en-US,Peer-to-Peer File Sharing en-US,Sites that provide client software to enable peer-to-peer file sharing and transfer. 115 71 350 en-US,Social Networking and Personal Sites en-US,Sites chiefly devoted to personal expression by individuals (as in diaries or personal blogs) or small groups\\, often but not necessarily involving multiple links to similar sites. 117 72 345 en-US,Educational Materials en-US,Sites that provide information about or that sell or provide curriculum materials or direct instruction; also\\, learned journals and similar publications. 118 73 345 en-US,Reference Materials en-US,Sites that offer reference-shelf content such as atlases\\, dictionaries\\, encyclopedias\\, formularies\\, white and yellow pages\\, and public statistical data. 121 74 326 en-US,Service and Philanthropic Organizations en-US,Sites sponsored by or that support or offer information about organizations devoted to doing good as their primary activity. 123 75 326 en-US,Social and Affiliation Organizations en-US,Sites sponsored by or that support or offer information about organizations devoted chiefly to socializing or common interests other than philanthropy or professional advancement. 124 76 326 en-US,Professional and Worker Organizations en-US,Sites sponsored by or that support or offer information about organizations devoted to professional advancement or workers interests. 125 77 352 en-US,Computer Security en-US,Sites that provide information about or free downloadable tools for computer security. 138 H78 329 en-US,Images (Media) en-US,URLs ending with image filenames. 147 ^79 329 en-US,Image Servers en-US,Web servers whose primary function is to deliver images. 148 |80 329 en-US,Private IP Addresses en-US,IP addresses defined in RFC 1918\\, 'Address Allocation for Private Intranets.' 149 q81 329 en-US,Content Delivery Networks en-US,Commercial hosts that deliver content to subscribing Web sites. 150 \82 329 en-US,Dynamic Content en-US,URLs that are generated dynamically by a Web server. 151 [83 329 en-US,Network Errors en-US,URLs with hosts that do not resolve to IP addresses. 152 P84 329 en-US,Uncategorized en-US,Sites not categorized in the EIM Database. 153 r85 329 en-US,File Download Servers en-US,Web servers whose primary function is to deliver files for download. 156 86 335 en-US,Elevated Exposure en-US,Sites that camouflage their true nature or identity\\, or that include elements suggesting latent malign intent. 192 e87 335 en-US,Emerging Exploits en-US,Sites found to be hosting known and potential exploit code. 193 88 335 en-US,Potentially Damaging Content en-US,Sites likely to contain little or no useful content\\, with potentially harmful elements. 194 f89 353 en-US,Organizational Email en-US,Login sites for corporate or institutional email systems. 195 90 353 en-US,Text and Media Messaging en-US,Sites that enable the sending of messages and other content via SMS\\, EMS\\, MMS\\, or similar protocols. 196 91 352 en-US,URL Translation Sites en-US,Sites that offer online translation of URLs. These sites access the URL to be translated in a way that bypasses the proxy server\\, potentially allowing unauthorized access. 28 h92 323 en-US,Advertisements en-US,Sites that provide advertising graphics or other ad content files. 29 93 320 en-US,Nudity en-US,Sites that offer depictions of nude or seminude human forms\\, singly or in groups\\, not overtly sexual in intent or effect. 65 !94 320 en-US,Adult Content en-US,Sites that display full or partial nudity in a sexual context\\, but not sexual activity; erotica; sexual paraphernalia; sex-oriented businesses as clubs\\, nightclubs\\, escort services; and sites supporting online purchase of such goods and services. 66 95 320 en-US,Sex en-US,Sites that depict or graphically describe sexual acts or activity\\, including exhibitionism; also sites offering direct links to such sites. 67 96 336 en-US,Financial Data and Services en-US,Sites that offer news and quotations on stocks\\, bonds\\, and other investment vehicles\\, investment advice\\, but not online trading. Includes banks\\, credit unions\\, credit cards\\, and insurance. 68 97 345 en-US,Cultural Institutions en-US,Sites sponsored by museums\\, galleries\\, theatres (but not movie theatres)\\, libraries\\, and similar institutions; also\\, sites whose purpose is the display of artworks. 69 98 325 en-US,MP3 and Audio Download Services en-US,Sites that support downloading digitized music\\, such as MP3 files\\, or that serve as directories or services for downloading music. 70 ^99 346 en-US,Military en-US,Sites sponsored by branches or agencies of the armed services. 72 100 346 en-US,Political Organizations en-US,Sites sponsored by or providing information about political parties and interest groups focused on elections or legislation. 73 \101 353 en-US,General Email en-US,Sites that provide email services open to general use. 74 102 352 en-US,Proxy Avoidance en-US,Sites that provide information about how to bypass proxy server features or to gain access to URLs in any way that bypasses the proxy server. 75 103 352 en-US,Search Engines and Portals en-US,Sites that support searching the Web\\, news groups\\, or indices or directories thereof. 76 104 352 en-US,Web Hosting en-US,Sites of organizations that provide hosting services\\, or top-level domain pages of Web communities. 78 105 353 en-US,Web Chat en-US,Sites that host Web chat services or that support or provide information about chat via HTTP or IRC. 79 106 352 en-US,Hacking en-US,Sites that provide information about or promote illegal or questionable access to or use of computer or communication equipment\\, software\\, or databases. 80 v107 347 en-US,Alternative Journals en-US,Online equivalents to supermarket tabloids and other fringe publications. 81 108 348 en-US,Non-Traditional Religions and Occult and Folklore en-US,Sites that provide information about or promote religions not specified in Traditional Religions or other unconventional\\, cultic\\, or folkloric beliefs and practices. 82 109 348 en-US,Traditional Religions en-US,Sites that provide information about or promote Buddhism\\, Bahai\\, Christianity\\, Christian Science\\, Hinduism\\, Islam\\, Judaism\\, Mormonism\\, Shinto\\, and Sikhism\\, as well as atheism. 83 110 350 en-US,Restaurants and Dining en-US,Sites that list\\, review\\, advertise\\, or promote food\\, dining\\, or catering services. 84 111 350 en-US,Gay or Lesbian or Bisexual Interest en-US,Sites that provide information about or cater to gay\\, lesbian\\, or bisexual lifestyles\\, including those that support online shopping\\, but excluding those that are sexually or issue-oriented. 85 112 350 en-US,Personals and Dating en-US,Sites that assist users in establishing interpersonal relationships\\, excluding those intended to arrange for sexual encounters and excluding those of exclusively gay or lesbian or bisexual interest. 86 113 350 en-US,Alcohol and Tobacco en-US,Sites that provide information about\\, promote\\, or support the sale of alcoholic beverages or tobacco products or associated paraphernalia. 87 y114 341 en-US,Prescribed Medications en-US,Sites that provide information about approved drugs and their medical use. 88 115 341 en-US,Supplements and Unregulated Compounds en-US,Sites that provide information about or promote the sale or use of chemicals not regulated by the FDA (such as naturally occurring compounds). 89 116 341 en-US,Abused Drugs en-US,Sites that promote or provide information about the use of prohibited drugs\\, except marijuana\\, or the abuse or unsanctioned use of controlled or regulated drugs; also\\, paraphernalia associated with such use or abuse. 90 117 321 en-US,Pro-Choice en-US,Sites that provide information about or are sponsored by organizations that support legal abortion or that offer support or encouragement to those seeking the procedure. 92 118 321 en-US,Pro-Life en-US,Sites that provide information about or are sponsored by organizations that oppose legal abortion or that seek increased restriction of abortion. 93 z119 320 en-US,Sex Education en-US,Sites that offer information about sex and sexuality\\, with no pornographic intent. 94 120 320 en-US,Lingerie and Swimsuit en-US,Sites that offer images of models in suggestive but not lewd costume\\, with seminudity permitted. Includes classic 'cheese-cake\\,' calendar\\, and pinup art and photography. Includes also sites offering lingerie or swimwear for sale. 95 121 323 en-US,Online Brokerage and Trading en-US,Sites that support active trading of securities and management of investments. 96 122 345 en-US,Educational Institutions en-US,Sites sponsored by schools and other educational facilities\\, by non-academic research institutions\\, or that relate to educational events and activities. 97 N123 323 en-US,Instant Messaging en-US,Sites that enable instant messaging. 98 124 323 en-US,Freeware and Software Download en-US,Sites whose primary function is to provide freeware and software downloads. 99 :648 0 zh-CN,成人信息,zh-TW,成人資訊,de-DE,Nicht jugendfreies Material,en-US,Adult Material,fr-FR,Section pour adultes,it-IT,Materiale per adulti,ja-JP,アダルト,ko-KR,성인물,pt-BR,Material adulto,es-ES,Material para adultos zh-CN,由成人内容、女性内衣与泳装、祼体、性、性教育等类别组成的综合分类,zh-TW,包含以下類別的父類別:成人內容、女仕內衣與泳裝、祼體、性、性教育,de-DE,Hauptkategorie mit folgenden Unterkategorien: Nicht jugendfreie Inhalte\\, Nacktheit\\, Sex\\, Aufklärung + Sexualerziehung.,en-US,Parent category that contains the categories: Adult Content\\, Lingerie and Swimsuit\\, Nudity\\, Sex\\, Sex Education,fr-FR,Catégorie mère comprenant les catégories : Section pour adultes\\, Lingerie & maillots de bain\\, Nudité\\, Sexualité\\, Éducation sexuelle.,it-IT,Categoria madre contenente le categorie: Contenuto per adulti\\, Biancheria intima e Costumi da bagno\\, Nudità\\, Sesso\\, Educazione sessuale ,ja-JP,下記のカテゴリーを含む親カテゴリー:アダルト・コンテンツ、ランジェリー&水着、ヌード、セックス、性教育,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 성인 컨텐츠\\, 란제리 & 수영복\\, 누드\\, 섹스\\, 성교육.,pt-BR,Categoria principal que contém as categorias: Conteúdo adulto\\, roupa íntima e de banho\\, nudez\\, sexo e educação sexual.,es-ES,Categoría principal que contiene las categorías: Contenido para adultos\\, Lencería y trajes de baño\\, Desnudos\\, Sexo\\, Educación sexual. 1 649 0 zh-CN,堕胎,zh-TW,墮胎,de-DE,Schwangerschaftsabbruch,en-US,Abortion,fr-FR,Avortement,it-IT,Aborto,ja-JP,中絶,ko-KR,낙태,pt-BR,Aborto,es-ES,Aborto zh-CN,公正客观看待此问题的网站。,zh-TW,公正看待此問題的網站。,de-DE,Webseiten\\, auf denen das Thema 'Schwangerschaftsabbruch' in sachlicher und ausgeglichener Art behandelt wird. ,en-US,Sites with neutral or balanced presentation of the issue.,fr-FR,Sites qui présentent le problème de manière neutre ou objective.,it-IT,Siti in cui l'argomento viene presentato in modo neutrale ed equilibrato.,ja-JP,この問題に関して中立的、またはバランスのとれた論議をしているサイト。,ko-KR,낙태 문제에 대해 중립적 또는 객관적 입장을 표명하는 사이트.,pt-BR,Sites que apresentem a questão de forma neutra ou balanceada.,es-ES,Sitios con una presentación imparcial o equilibrada del tema. 10 650 0 zh-CN,社团组织,zh-TW,倡議團體,de-DE,Meinungsgruppen,en-US,Advocacy Groups,fr-FR,Groupes activistes/Associations,it-IT,Gruppi di sostegno,ja-JP,主張グループ,ko-KR,지지 그룹,pt-BR,Grupos de apoio,es-ES,Grupos de apoyo zh-CN,倡导改革公共政策、公众观念、社会习惯、经济行为与经济关系的网站。,zh-TW,提倡改革公共政策、公共觀念、社會習慣、經濟行為與經濟關係的網站。,de-DE,Webseiten\\, die eine Änderung oder Reform der öffentlichen Ordnung\\, der öffentlichen Meinung\\, des Sozialverhaltens sowie wirtschaftlicher Aktivitäten und Handelsbeziehungen befürworten oder unterstützen.,en-US,Sites that promote change or reform in public policy\\, public opinion\\, social practice\\, economic activities and relationships.,fr-FR,Sites qui font la promotion de changements ou de réformes dans la politique publique\\, l'opinion publique\\, les pratiques sociales\\, les activités et les relations économiques.,it-IT,Siti dedicati alla promozione dei cambiamenti o della riforma nella politica pubblica\\, nell'opinione pubblica\\, nella pratica sociale\\, nelle attività e nei rapporti economici.,ja-JP,社会政策、世論、社会問題、経済活動、経済関係などの変革を促進する組織のサイト。,ko-KR,공공정책\\, 여론\\, 사회제도\\, 경제활동 및 관계의 변화 또는 개혁을 촉진하는 사이트.,pt-BR,Sites que promovem a mudança ou alteração na política pública\\, opinião pública\\, práticas sociais\\, atividades e relacionamentos econômicos.,es-ES,Sitios que promueven cambios o reformas en política pública\\, opinión pública\\, práctica social\\, actividades y relaciones económicas. 11 651 0 zh-CN,效率,zh-TW,效率,de-DE,Produktivität,en-US,Productivity,fr-FR,Productivité,it-IT,Produttività ,ja-JP,生産性,ko-KR,생산성,pt-BR,Produtividade,es-ES,Productividad zh-CN,该类别包含以下子类别:广告、免费软件与软件下载、实时消息交互、信息布告栏和论坛、在线经纪与交易、冲浪赚钱,zh-TW,包含以下類別的主類別:廣告、免費軟體與軟體下載、即時訊息傳送、留言板和論壇、線上經紀與交易、上網式賺錢,de-DE,Hauptkategorie mit den folgenden Unterkategorien: Werbung\\, Freeware und Software-Download\\, Instant Messaging\\, Nachrichten-Boards und Foren\\, Online-Brokerage und Handel\\, Pay-to-Surf.,en-US,Parent category that contains the categories: Advertisements\\, Freeware and Software Download\\, Instant Messaging\\, Message Boards and Forums\\, Online Brokerage and Trading\\, Pay-to-Surf,fr-FR,Catégorie mère comprenant les catégories : Publicités\\, Téléchargement de logiciels et de freewares\\, Messagerie instantanée\\, BBS et forums\\, Courtage et commerce en ligne\\, Sites rémunérateurs.,it-IT,Categoria madre contenente le categorie: Pubblicità\\, Download di Freeware e Software\\, Scambio di Messaggi Istantanei\\, Forum e bacheche\\, Intermediazione e Commercio in linea\\, Guadagna navigando (Pay-to-Surf),ja-JP,下記のカテゴリを含む親カテゴリ:広告、フリーウェアとソフトウェア ダウンロード、インスタント メッセージ、掲示板とフォーラム、オンライン証券取引とトレーディング、報酬サイト。,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 광고\\, 프리웨어/소프트웨어\\, 다운로드\\, 메신저\\, 자유 게시판 및 포럼\\, 온라인 중개 및 거래\\, 무료 현금배분.,pt-BR,Categoria principal que contém as categorias: Anúncios\\, Download de Freeware e Software\\, Instante Messaging\\, Fóruns e quadros de mensagens\\, Negociação On-line de Ações\\, Pagar para Navegar,es-ES,Categoría principal que contiene las categorías: Publicidad\\, Descarga de programas\\, Mensajería instantánea\\, Tablones de mensajes y foros\\, Compraventa de acciones en línea\\, Pagar por navegar. 110 652 0 zh-CN,带宽,zh-TW,頻寬,de-DE,Bandbreite,en-US,Bandwidth,fr-FR,Largeur de bande,it-IT,Larghezza di banda,ja-JP,帯域幅,ko-KR,대역폭,pt-BR,Largura de banda,es-ES,Ancho de banda zh-CN,该类别包含以下子类别:网上电台与电视、IP 电话、对等层文件共享、个人网络存储与备份、流媒体,zh-TW,包含以下類別的主類別:網際網路廣播與電視、網際網路電話、端對端檔案共用、個人網路儲存與備份、串流媒體,de-DE,Hauptkategorie mit den folgenden Unterkategorien: Internetradio und Internet-TV\\, Internet-Telefonie\\, Peer-to-Peer\\, Private Netzwerkspeicherung und -sicherung sowie Streaming Media. ,en-US,Parent category that contains the categories: Internet Radio and TV\\, Internet Telephony\\, Peer-to-Peer File Sharing\\, Personal Network Storage and Backup\\, Streaming Media,fr-FR,Catégorie mère comprenant les catégories : Radios et TV sur Internet\\, Téléphonie Internet\\, Partage de fichiers en en peer-to-peer\\, Stockage/Sauvegarde de réseaux personnels\\, Médias en temps réel,it-IT,Categoria madre contenente le categorie: Radio e TV via Internet\\, Telefonia via Internet\\, Scambio di File Peer-to-Peer\\, Storage Personale in Rete e Backup\\, Streaming Media,ja-JP,下記のカテゴリーを含む親カテゴリー:インターネットラジオとTV、インターネット電話、ピア・ツー・ピアによるファイル共有、パーソナルネットワークストレージ・バックアップ、ストリーミング・メディア,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 인터넷 라디오 & TV\\, 인터넷 전화\\, P2P 파일 공유\\, 개인 네트워크 스토리지/백업\\, 스트리밍 미디어,pt-BR,Categoria principal que contém as categorias: Rádio e TV via Internet\\, Telefonia via Internet\\, Compartilhamento de Arquivos P2P\\, Armazenamento de Rede Pessoal e Backup\\, Mídia em Fluxo,es-ES,Categoría principal que contiene las categorías: Radio y televisión vía Internet\\, Telefonía vía Internet\\, Compartir archivos ente usuarios\\, Almacenamiento y copia de seguridad de archivos personales\\, Transmisiones multimedia. 116 653 0 zh-CN,娱乐,zh-TW,娛樂,de-DE,Unterhaltung,en-US,Entertainment,fr-FR,Divertissement,it-IT,Intrattenimento,ja-JP,エンターテイメント,ko-KR,엔터테인먼트,pt-BR,Entretenimento,es-ES,Entretenimiento zh-CN,介绍及宣传电影、非新闻电台及电视台、书籍、幽默作品与杂志的网站。,zh-TW,專門宣傳電影、非新聞廣播與電視、書籍、幽默作品與雜誌等內容的網站,以及提供有關資訊的網站。,de-DE,Webseiten mit Werbung für oder Informationen über Kinofilme\\, nicht auf Nachrichten orientierte Radio- und Fernsehstationen sowie Bücher\\, Humorvolles und Zeitschriften.,en-US,Sites that provide information about or promote motion pictures\\, non-news radio and television\\, books\\, humor\\, and magazines.,fr-FR,Sites qui fournissent des informations sur les films\\, les radios et télévisions qui ne sont pas d'information\\, les livres\\, l'humour et les magazines\\, ou qui en font leur promotion.,it-IT,Siti che forniscono informazioni o promuovono filmati ed animazioni\\, produzioni radio e televisive "non-news"\\, libri\\, umorismo e riviste.,ja-JP,映画、テレビ/ラジオ(ニュースは除く)書籍、ユーモア、雑誌に関する情報を提供し、促進しているサイト。,ko-KR,영화\\, 라디오 및 텔레비전(뉴스 제외)\\, 책\\, 유머\\, 잡지를 선전하거나 그에 대한 정보를 제공하는 사이트.,pt-BR,Sites que fornecem informações sobre ou promovam filmes\\, rádio e televisão não jornalísticos\\, livros\\, humor e revistas.,es-ES,Sitios que informan o hacen promoción de películas\\, contenido no periodístico de radio y televisión\\, libros\\, humor\\, música y revistas. 12 654 0 zh-CN,社会组织,zh-TW,社會組織,de-DE,Soziale Organisationen,en-US,Social Organizations,fr-FR,Associations et organismes sociaux,it-IT,Organizzazioni sociali,ja-JP,社会組織,ko-KR,사회단체,pt-BR,Organizações sociais,es-ES,Organizaciones sociales zh-CN,该类别包含以下子类别:职业与工人组织、服务与慈善组织、社会与附属组织,zh-TW,包含以下類別的主類別:職業與工人組織、服務與慈善組織、社會與附屬組織,de-DE,Hauptkategorie mit den folgenden Unterkategorien: Berufsverbände und Arbeiterorganisationen\\, Dienstleistungsorganisationen und wohltätige Organisationen\\, Soziale Organisationen und Zweckverbände.,en-US,Parent category that contains the categories: Professional and Worker Organizations\\, Service and Philanthropic Organizations\\, Social and Affiliation Organizations,fr-FR,Catégorie mère comprenant les catégories : Organisations professionnelles et de travailleurs\\, Organisations philanthropiques\\, et Associations et organismes Sociaux.,it-IT,Categoria madre contenente le categorie: Organizzazioni professionali e sindacali\\, Organizzazioni filantropiche e d'assistenza sociale\\, Organizzazioni sociali ed affiliati,ja-JP,下記のカテゴリーを含む親カテゴリー: 専門家団体および従業員団体、奉仕および慈善団体、または社交・友好団体。,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 직업 및 노동자 단체\\, 봉사 및 자선 단체\\, 사교 및 친목 단체.,pt-BR,Categoria principal que contém as categorias: Organizações Profissionais e Trabalhistas\\, Organizações de Serviço e Filantropia\\, Organizações Sociais e de Filiação,es-ES,Categoría principal que contiene las categorías: Organizaciones profesionales y de trabajadores\\, Organizaciones de servicio y filantrópicas\\, Organizaciones sociales y de afiliación. 122 h655 0 zh-CN,赌博,zh-TW,賭博,de-DE,Glücksspiel,en-US,Gambling,fr-FR,Jeux de hasard,it-IT,Giochi d'azzardo,ja-JP,ギャンブル,ko-KR,도박,pt-BR,Jogos,es-ES,Juegos de apuestas zh-CN,介绍、宣传赌博,或支持具有财产损失风险的在线赌博的网站。,zh-TW,宣傳賭博、提供有關資訊,或者支援線上賭博、具有財產損失風險的網站。,de-DE,Webseiten mit Werbung für oder Informationen über Glücksspiele oder Online-Glücksspiele mit dem Risiko eines Geldverlusts.,en-US,Sites that provide information about or promote gambling or support online gambling\\, involving a risk of losing money.,fr-FR,Sites qui fournissent des informations sur les jeux de hasard ou proposent des jeux de hasard en ligne ce qui implique un risque de perte d'argent.,it-IT,Siti che forniscono informazioni sui giochi d'azzardo o li promuovono\\, oppure offrono giochi d'azzardo in linea che coinvolgono un rischio di perdita di soldi.,ja-JP,ギャンブルに関する情報提供またはギャンブルを促進するサイト、オンラインギャンブルをサポートするサイト。このカテゴリに含まれるサイトは経済的損失を与える可能性がある。,ko-KR,도박 정보를 제공하거나 선전하는 사이트. 돈을 잃을 위험이 있는 온라인 도박을 제공하는 사이트.,pt-BR,Sites que promovem informações sobre ou promovam o jogo ou suportem o jogo on-line\\, que envolvam o risco de perder dinheiro.,es-ES,Sitios que informan o promueven el juego de apuestas o que promueven juegos de apuestas en línea\\, con el riesgo implícito de perder dinero. 13 656 0 zh-CN,游戏,zh-TW,遊戲,de-DE,Spiele,en-US,Games,fr-FR,Jeux,it-IT,Giochi,ja-JP,ゲーム,ko-KR,게임,pt-BR,Jogos eletrônicos,es-ES,Juegos zh-CN,介绍、宣传电子游戏、电视游戏、计算机游戏、角色扮演游戏或在线游戏的网站。其中包括提供抽奖与有奖征答的网站。,zh-TW,宣傳電子遊戲、電視遊戲、電腦遊戲、角色扮演遊戲或線上遊戲等內容的網站,或者提供有關資訊的網站。其中包括抽獎與贈品。,de-DE,Webseiten mit Werbung für oder Informationen über elektronische Spiele\\, Videospiele\\, Computerspiele\\, Rollenspiele oder Online-Spiele. Diese Kategorie beinhaltet auch Wettspiele (Lotto und Toto)\\, Preisausschreiben und Werbegeschenke.,en-US,Sites that provide information about or promote electronic games\\, video games\\, computer games\\, role-playing games\\, or online games. Includes sweepstakes and giveaways.,fr-FR,Sites qui fournissent des informations sur les jeux électroniques\\, les jeux vidéo\\, les jeux sur ordinateur\\, les jeux de rôle ou les jeux en ligne\\, ou qui en font leur promotion. Ils comprennent les loteries promotionnelles et les cadeaux publicitaires.,it-IT,Siti che forniscono informazioni o promuovono giochi elettronici\\, giochi video\\, giochi per computer\\, giochi di ruolo o giochi in linea. Comprende anche i concorsi a premi e giveaways.,ja-JP,電子ゲーム、ビデオゲーム、コンピュータゲーム、ロールプレイングゲーム、オンラインゲームについての情報提供、促進をしているサイト。懸賞/プレゼント関連のサイトも含まれる。,ko-KR,전자 게임\\, 비디오 게임\\, 컴퓨터 게임\\, 롤플레잉 게임 또는 온라인 게임을 선전하거나 그에 대한 정보를 제공하는 사이트. 현금성이 없는 추첨 및 경품 포함.,pt-BR,Sites que promovam informações sobre ou promovam jogos eletrônicos\\, vídeo game\\, jogos por computador\\, jogos interativos ou jogos on-line. Inclui gincanas e promoções de prêmios.,es-ES,Sitios que promueven o informan sobre juegos electrónicos\\, videojuegos\\, juegos de computadora\\, interactivos o línea. Incluye sorteos y premios. 14 E 657 0 zh-CN,杂类,zh-TW,其他,de-DE,Verschiedenes,en-US,Miscellaneous,fr-FR,Divers,it-IT,Miscellanea,ja-JP,その他,ko-KR,기타,pt-BR,Diversos,es-ES,Varios zh-CN,该类别包含以下子类别:内容分发网络、动态内容、图像服务器、图像(媒体)、网络错误、私有 IP 地址、及其他尚未归类的相关站点,zh-TW,包含以下類別的主類別:內容傳送網路、動態內容、影像伺服器、影像(媒體)、網路錯誤、私有 IP 位址、尚未歸類,de-DE,Hauptkategorie mit den folgenden Unterkategorien: Bilder\\, Dynamische Inhalte\\, Image-Server\\, Keiner Kategorie zugeordnet\\, Netzwerke für die Bereitstellung von Inhalten\\, Netzwerkfehler\\, Private IP-Adressen\\, Server für das Herunterladen von Dateien.,en-US,Parent category that contains the categories: Content Delivery Networks\\, Dynamic Content\\, Image Servers\\, Images (Media)\\, Network Errors\\, Private IP Addresses\\, Uncategorized\\, File Download Servers,fr-FR,Catégorie mère comprenant les catégories : Réseaux de diffusion de contenu\\, Contenu dynamique\\, Serveurs d'images\\, Images (Média)\\, Erreurs réseau\\, Adresses IP privées\\, Non catégorisés.,it-IT,Categoria madre contenente le categorie: Reti Gestite di Content Delivery\\, Contenuto Dinamico\\, Image Server\\, Immagini (Media)\\, Errori di Rete\\, Indirizzi IP Privati\\, Non classificato\\, Server per il download di file.,ja-JP,下記のカテゴリーを含む親カテゴリー:コンテンツ配信ネットワーク、ダイナミック・コンテンツ、イメージサーバー、イメージ(メディア)、ネットワークエラー、私的IPアドレス、未分類,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 컨텐츠 제공 네트워크\\, 동적 컨텐츠 이미지 서버\\, 이미지(미디어)\\, 네트워크 오류\\, 개인 IP 주소\\, 비분류 카테고리.,pt-BR,Categoria principal que contém as categorias: Redes de Fornecimento de Conteúdo\\, Conteúdo Dinâmico. Servidores de Imagens\\, Imagens (Mídia). Erros de Rede\\, Endereços IP Privados\\, Não Categorizados,es-ES,Categoría principal que contiene las categorías: Redes de difusión de contenido\\, Contenidos dinámicos\\, Servidores de imágenes\\, Imágenes (medios)\\, Errores de red\\, Direcciones IP privadas\\, Sin clasificar. 146 658 0 zh-CN,违法或嫌疑,zh-TW,違法或嫌疑行為,de-DE,Rechtswidrig oder Bedenklich,en-US,Illegal or Questionable,fr-FR,Illégal ou douteux,it-IT,Argomenti illeciti o discutibili,ja-JP,違法行為,ko-KR,불법 또는 불법 추정,pt-BR,Ilegal ou questionável,es-ES,Ilegal o cuestionable zh-CN,介绍、宣扬非暴力犯罪、不道德或欺诈行为,或以此逃避诉讼等内容的网站。,zh-TW,介紹非暴力犯罪或者不道德或欺詐行為,或因此而導致起訴無效的情況之網站。,de-DE,Webseiten\\, die Anleitungen für gewaltlose Vergehen oder unmoralische/unehrenwerte Verhaltensweisen enthalten oder diese befürworten oder die Anleitungen zur Vermeidung der Strafverfolgung bei solchen Vergehen enthalten oder diese befürworten.,en-US,Sites that provide instruction in or promote nonviolent crime or unethical or dishonest behavior or the avoidance of prosecution therefor.,fr-FR,Sites qui fournissent des instructions sur les crimes non violents ou contraires à l'éthique\\, les comportements malhonnêtes ou sur comment éviter les poursuites qui en résultent\\, ou qui en font leur promotion. ,it-IT,Siti che promuovono o forniscono materiale istruttivo su crimini non violenti o comportamenti non etici o disonesti\\, oppure l'elusione della persecuzione per questi reati.,ja-JP,非暴力的犯罪、非倫理的/不正行為、またこれらの犯罪行為を原因とする起訴の回避について、その方法に関する情報を提供したり、犯罪を促進するサイト。,ko-KR,비폭력 범죄 또는 비윤리적이거나 정직하지 않은 행위 또는 법망 회피 정보를 선전하거나 안내정보를 제공하는 사이트.,pt-BR,Sites que fornecem instruções ou promovam o crime não violento ou o comportamento não ético ou desonesto\\, ou como evitar ações judiciais deles decorrentes.,es-ES,Sitios que promueven o proporcionan información sobre delitos no violentos\\, comportamientos no éticos y deshonestos o la evasión de las acciones judiciales resultantes. 15 Q659 0 zh-CN,求职,zh-TW,求職,de-DE,Jobsuche,en-US,Job Search,fr-FR,Recherche d'emplois,it-IT,Ricerca di lavoro,ja-JP,求人情報,ko-KR,구인구직,pt-BR,Procura de emprego,es-ES,Búsqueda de empleo zh-CN,支持网络招聘或求职,或提供相关信息的网站。,zh-TW,支援網路招聘、求職或提供相關資訊的網站。,de-DE,Webseiten zur Suche von Arbeitsstellen oder Arbeitgebern oder Seiten mit Informationen hierzu.,en-US,Sites that offer information about or support the seeking of employment or employees.,fr-FR,Sites qui proposent des offres et des demandes d'emploi ou des informations sur elles.,it-IT,Siti che offrono informazioni o permettono di cercare un'occupazione o del personale.,ja-JP,求人または求職に関する情報を提供、または求人・求職をサポートするサイト。,ko-KR,구인구직 검색을 지원하거나 정보를 제공하는 사이트.,pt-BR,Sites que oferecem informações sobre ou suportem a procura de emprego ou de funcionários.,es-ES,Sitios que ofrecen información sobre o permiten la búsqueda de empleo o empleados. 16  660 0 zh-CN,购物,zh-TW,購物,de-DE,Online-Shopping,en-US,Shopping,fr-FR,Shopping,it-IT,Acquisti in linea,ja-JP,ショッピング,ko-KR,쇼핑,pt-BR,Compras,es-ES,Compras zh-CN,支持在线采购以下项目之外的消费品与服务的网站:性材料、女性内衣、泳装、投资、药物、教学材料、计算机软件或硬件、烟酒、旅行、交通工具与零件、武器。,zh-TW,支援消費品與服務線上採購的網站,以下項目除外:性材料、女仕內衣、泳裝、投資工具、藥物、教學資源、電腦軟體或硬體、煙酒、旅行、交通工具與零件、武器。,de-DE,Seiten f. d. Onlinevertrieb v. Dienstleist./Waren m. Ausnahme folg. Kateg.: Erotikartikel\\, Unterwäsche/Bademode\\, Invest.-möglichk.\\, Arzneimittel\\, Bildungsmat./-unterlagen\\, Soft-/hardware\\, Alkohol/Tabak\\, Reisen\\, Fahrzeuge/Ersatzteile u. Waffen. ,en-US,Sites that support the online purchase of consumer goods and services except: sexual materials\\, lingerie\\, swimwear\\, investments\\, medications\\, educational materials\\, computer software or hardware\\, alcohol\\, tobacco\\, travel\\, vehicles and parts\\, weapons.,fr-FR,Sites d'achat en ligne de biens et de services\\, sauf accessoires à caractère sexuel\\, lingerie\\, vêtements de bain\\, placements\\, matériel éducatif\\, matériel ou logiciels informatiques\\, alcool\\, tabac\\, voyages\\, véhicules et pièces détachées\\, armes.,it-IT,Siti per l'acquisto di merci e servizi di consumo\\, escluso: materiale sessuale\\, biancheria intima\\, costumi da bagno\\, investimenti\\, farmaci\\, materiale scolastico\\, software o hardware\\, alcool\\, tabacco\\, viaggi e turismo\\, veicoli\\, ricambi\\, armi.,ja-JP,一般消費財のオンライン購入をサポートしているサイト。ただし、セックス用品、ランジェリー、水着、投資、医薬品、教材、コンピュータのソフトウェアやハードウェア、アルコールと煙,ko-KR,소비재 및 서비스를 온라인으로 구매할 수 있는 사이트. 성 관련 제품\\, 란제리\\, 수영복\\, 투자\\, 의약품\\, 교육자료\\, 컴퓨터 소프트웨어 또는 하드웨어\\, 주류\\, 담배\\, 여행\\, 차량 및 부품\\, 무기류 제,pt-BR,Sites que suportam a compra on-line de bens e serviços para consumidores\\, exceto: matérias sexuais\\, roupa íntima\\, roupa de banho\\, investimentos\\, medicamentos\\, materiais educacionais\\, software para computador ou hardware\\, álcool\\, tabaco\\, viagens\\, veíc,es-ES,Sitios que permiten comprar en línea productos y servicios\\, excepto material sexual\\, lencería\\, trajes de baño\\, productos de inversión\\, medicamentos\\, material educativo\\, software o hardware\\, alcohol\\, tabaco\\, viajes\\, vehículos y repuestos y armas. 17 661 0 zh-CN,体育运动,zh-TW,體育運動,de-DE,Sport,en-US,Sports,fr-FR,Sports,it-IT,Sport,ja-JP,スポーツ,ko-KR,스포츠,pt-BR,Esportes,es-ES,Deportes zh-CN,介绍、宣传体育运动、活动比赛和娱乐消遣的网站。,zh-TW,宣傳體育運動、動作遊戲與娛樂或提供有關資訊的網站。,de-DE,Webseiten mit Informationen zu oder Werbung für Sport und Sportarten\\, aktive Spiele\\, Freizeit und Freizeitaktivitäten.,en-US,Sites that provide information about or promote sports\\, active games\\, and recreation.,fr-FR,Sites qui fournissent des informations sur les sports\\, les jeux et les activités ludiques\\, ou qui en font leur promotion.,it-IT,Siti che promuovono o forniscono informazioni sugli sport\\, i giochi attivi e la ricreazione.,ja-JP,スポーツ、体を動かすゲーム、レクリエーション関連の情報を提供するサイト。,ko-KR,스포츠\\, 활동적인 게임\\, 레크레이션 등을 선전하거나 그에 대한 정보를 제공하는 사이트.,pt-BR,Sites que fornecem informações sobre ou promovam esportes\\, jogos de ação e recreação.,es-ES,Sitios que promueven u ofrecen información sobre deportes\\, juegos de actividad y actividades de recreo. 18 662 0 zh-CN,庸俗,zh-TW,惡俗,de-DE,Geschmackloses,en-US,Tasteless,fr-FR,Mauvais goût,it-IT,Cattivo gusto,ja-JP,悪趣味,ko-KR,엽기,pt-BR,Mau gosto,es-ES,Mal gusto zh-CN,内容令人极度厌恶,但不涉及暴力或恐吓的网站。其中包括部分或专门研究粪便学及类似主题,或庸俗语言、幽默及行为的网站。,zh-TW,內容令人討厭或惡心,但不涉及暴力或恐嚇的網站。包括部份或全部內容專門描述糞便學與類似主題,或以粗俗語言描述幽默或行為的網站。,de-DE,Webseiten mit abstoßendem/schockierendem Inhalt (aber gewaltfrei u. nicht Angst einflößend)\\, Seiten\\, die der Skatologie o. ähnlichen Themen gewidmet sind\\, sowie Webseiten mit anstößiger Sprache\\, derartigem Humor o. derartigen Verhaltensweisen.,en-US,Sites with content that is gratuitously offensive or shocking\\, but not violent or frightening. Includes sites devoted in part or whole to scatology and similar topics or to improper language\\, humor\\, or behavior.,fr-FR,Sites dont le contenu est gratuitement offensant ou choquant\\, mais ni violent ni effrayant. Ils comprennent les sites dédiés totalement ou en partie à la scatologie et à des thèmes proches\\, ou à un langage\\, un humour ou un comportement inconvenants.,it-IT,Siti di contenuto palesemente offensivo o scioccante\\, ma non violento o spaventoso. Comprende siti dedicati parzialmente o interamente alla scatologia ed agli argomenti o al linguaggio\\, umorismo o comportamento improprio.,ja-JP,無意味に攻撃的、不快だが、暴力的、脅威的ではない内容のサイト。わいせつ、不適切な言葉、ユーモア、行為などを部分的、全体的内容のサイトを含む。,ko-KR,특별한 이유없이 불쾌하거나 충격적이지만 폭력적이거나 위협적이지 않은 컨텐츠를 제공하는 사이트. 분뇨 및 이와 유사한 저질 주제 또는 음담패설\\, 부적절한 유머 또는 행동을 다루는 컨텐,pt-BR,Sites com conteúdo gratuitamente ofensivos ou que choquem\\, mas não são violentos ou assustadores. Inclui sites dedicados em parte ou no todo à obscenidade e tópicos similares ou à linguagem\\, humor ou comportamento impróprio. ,es-ES,Sitios cuyo contenido es gratuitamente ofensivo o escandaloso\\, pero no violento o aterrador. Incluye sitios dedicados en parte o totalmente a obscenidades y temas similares o a lenguaje\\, humor o comportamiento impropio. 19 663 0 zh-CN,扩展保护,zh-TW,延伸的防護,de-DE,Erweiterter Schutz,en-US,Extended Protection,fr-FR,Protection étendue,it-IT,Protezione estesa,ja-JP,より広範囲の危険性への対処,ko-KR,확장 보호,pt-BR,Proteção ampliada,es-ES,Protección ampliada zh-CN,父类别包含下列类别:高风险漏洞、显现的盗用、 潜在有害内容,zh-TW,包含下列類別的家長類別:高風險的漏洞、新興的探測、潛在有害的內容,de-DE,Hauptkategorie mit folgenden Unterkategorien: Erhöhtes Risiko\\, Neue Schwachstellen\\, Potentiell schädlicher Inhalt,en-US,Parent category that contains the categories: Elevated Exposure\\, Emerging Exploits\\, Potentially Damaging Content,fr-FR,Catégorie parent renfermant les catégories Exposition élevée\\, Nouvelles exploitations et Contenu à risques,it-IT,Categoria principale che include i seguenti elementi: Esposizione elevata\\, Ultime minacce\\, Contenuto potenzialmente dannoso,ja-JP,身元を偽装しているサイト、脆弱性を付く可能性のあるサイト、潜在的な危険性を含むサイトの親カテゴリ,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 고급 노출\\, 신규 공격 코드\\, 잠재적 위해 컨텐츠,pt-BR,Categoria pai que contém as categorias: Exposição elevada\\, Explorações emergentes\\, Conteúdo potencialmente prejudicial.,es-ES,Categoría principal que contiene las categorías: Riesgo elevado\\, Nuevas vulnerabilidades\\, Contenido potencialmente dañino 191 `664 0 zh-CN,商业与经济,zh-TW,商業與經濟,de-DE,Wirtschaft und Handel,en-US,Business and Economy,fr-FR,Commerce et économie,it-IT,Business ed economia ,ja-JP,ビジネス& 経済,ko-KR,비즈니스와 경제,pt-BR,Negócios e Economia,es-ES,Negocios y economía zh-CN,由商业公司、企业协会、行业团体或常规企业创办或者赞助的网站。,zh-TW,公司、企業協會、行業團體或一般企業創辦的網站,或者是為它們服務的網站。,de-DE,Webseiten\\, die von Firmen\\, Firmenverbänden\\, Industriebranchen oder Zweigen oder Wirtschaft und Handel im Allgemeinen unterstützt werden oder diesen gewidmet sind.,en-US,Sites sponsored by or devoted to business firms\\, business associations\\, industry groups\\, or business in general.,fr-FR,Sites dédiés à des entreprises ou associations commerciales\\, des groupes industriels ou au commerce en général ou sponsorisés par eux.,it-IT,Siti patrocinati da o dedicati alle imprese\\, alle associazioni imprenditoriali\\, ai gruppi industriali\\, o al business in generale.,ja-JP,企業、企業団体、産業グループ、または一般的企業が運営し、これらの団体向けに提供されているサイト。,ko-KR,일반적으로 기업\\, 기업협회\\, 경제단체\\, 또는 일반회사들이 지원하거나 관리하는 사이트.,pt-BR,Sites patrocinados por ou dedicados a empresas comerciais\\, associações comerciais\\, grupos industriais ou empresas em geral.,es-ES,Sitios patrocinados por o dedicados a empresas comerciales\\, asociaciones comerciales\\, grupos industriales o negocios en general. 2 665 0 zh-CN,旅行,zh-TW,旅行,de-DE,Reisen,en-US,Travel,fr-FR,Voyage,it-IT,Viaggi e turismo,ja-JP,旅行,ko-KR,여행,pt-BR,Viagem,es-ES,Viajes zh-CN,介绍、宣传旅行相关服务及目的地信息的网站。,zh-TW,宣傳旅行相關服務與目的地的網站\\, 或提供有關資訊的網站。,de-DE,Webseiten mit Werbung für oder Informationen über reisebezogene Dienstleistungen\\, Reisen und Reiseziele.,en-US,Sites that provide information about or promote travel-related services and destinations.,fr-FR,Sites qui fournissent des informations sur les services liés aux voyages et au choix des destinations\\, ou qui en font leur promotion. ,it-IT,Siti che promuovono o forniscono informazioni sui servizi associati ai viaggi e alle destinazioni.,ja-JP,さまざまな旅行関連サービスや旅行先に関する情報を提供するサイト。,ko-KR,여행 관련 서비스 및 행선지를 선전하거나 정보를 제공하는 사이트.,pt-BR,Sites que fornecem informações sobre ou promovam serviços e destinos relativos às viagens.,es-ES,Sitios que ofrecen información o promueven servicios relacionados con viajes y sus destinaciones. 20 Z666 0 zh-CN,交通工具,zh-TW,交通工具,de-DE,Kraftfahrzeuge,en-US,Vehicles,fr-FR,Véhicules,it-IT,Veicoli,ja-JP,乗り物,ko-KR,운송수단,pt-BR,Veículos,es-ES,Vehículos zh-CN,介绍、宣传交通工具的网站,包括支持在线采购交通工具或零部件的网站。,zh-TW,推銷交通工具或提供有關資訊的網站,包括支援線上採購交通工具或零件的網站。,de-DE,Webseiten mit Werbung für oder Informationen zu Kraftfahrzeugen einschließlich Webseiten\\, die den Online-Verkauf von Fahrzeugen oder Ersatzteilen unterstützen.,en-US,Sites that provide information about or promote vehicles\\, including those that support online purchase of vehicles or parts.,fr-FR,Sites qui fournissent des informations sur les véhicules\\, y compris l'achat en ligne de véhicules ou de pièces détachées\\, ou qui en font la promotion.,it-IT,Siti che promuovono o forniscono informazioni sui veicoli\\, compresi quelli che supportano l'acquisto in linea di veicoli o di pezzi di ricambio.,ja-JP,乗り物に関する情報を提供するサイト。乗り物や部品のオンライン購入サービスを提供するサイトも含まれる。,ko-KR,운송수단에 대한 정보를 제공하거나 선전하는 사이트. 운송수단 또는 부품의 온라인 구입을 지원하는 사이트 포함.,pt-BR,Sites que fornecem informações sobre ou promovam veículos\\, incluindo os que suportam a venda on-line de veículos ou peças.,es-ES,Sitios que promueven u ofrecen información sobre vehículos\\, incluidos aquellos que ofrecen la venta en línea de vehículos o repuestos. 21 B 667 0 zh-CN,暴力,zh-TW,暴力,de-DE,Gewalt,en-US,Violence,fr-FR,Violence,it-IT,Violenza,ja-JP,暴力,ko-KR,폭력,pt-BR,Violência,es-ES,Violencia zh-CN,描述、宣扬暴力或人身伤害(包括自虐);以及显示死亡、血腥、伤残图片;还有包含灵异、恐怖而无实际价值的图片及文字描述的网站。,zh-TW,描述、宣傳暴力或人身傷害(包括自虐)的網站;或顯示惡心的死屍或傷殘圖像之網站;或包含奇異、恐怖而又沒有實際價值的影像或描述的網站。,de-DE,Webseiten mit (eventuell verherrlichenden) Darstellungen von Gewalt\\, Körperverletzung oder selbst zugefügten Verletzungen sowie mit Leichen\\, Blut\\, Verletzungen oder mit grotesken/Angst einflößenden Abbildungen/Beschreibungen ohne Wert. ,en-US,Sites that feature or promote violence or bodily harm\\, including self-inflicted harm; or that gratuitously display images of death\\, gore\\, or injury; or that feature images or descriptions that are grotesque or frightening and of no redeeming value.,fr-FR,Sites montrant ou encourageant la violence ou les blessures corporelles\\, y compris l'automutilation\\, affichant gratuitement des images morbides ou sanglantes\\, ou montrant des images ou descriptions grotesques ou effrayantes sans valeur informative.,it-IT,Siti che dimostrano o promuovono violenza\\, danni corporali o autolesioni; che visualizzano palesemente immagini di morte\\, massacro o lesioni; che presentano immagini o descrizioni che sono grottesche o spaventose e di nessun valore istruttivo.,ja-JP,暴力や自虐自傷を含む肉体的危害に関する情報、擁護するようなサイト。または死体、血のり、怪我の画像を無意味に表示するサイト。グロテスクで脅威的、何の価値もないような画像や描,ko-KR,자해 행위를 비롯하여 폭력 또는 상해를 다루거나 선전하는 사이트\\, 불필요하게 죽음\\, 피 또는 상처 관련 이미지를 보여주는 사이트\\, 또는 기괴하거나 위협적이며 보존할 가치가 없는 이미지 ,pt-BR,Sites que apresentem ou promovam a violência ou injúria corporal\\, incluindo a injúria auto-aplicada; ou que gratuitamente exibam imagens de mortes\\, sangue ou injúria; ou que apresentem imagens ou descrições que sejam grotescas ou assustadoras e que ,es-ES,Sitios que muestran o promueven la violencia o el daño corporal\\, incluido el daño autoinfligido\\, que muestran gratuitamente imágenes de muerte\\, sangre o injuria\\, imágenes o descripciones grotescas o aterradoras sin valor intrínseco alguno. 22 668 0 zh-CN,武器,zh-TW,武器,de-DE,Waffen,en-US,Weapons,fr-FR,Armes,it-IT,Armi,ja-JP,武器,ko-KR,무기,pt-BR,Armas,es-ES,Armas zh-CN,介绍、宣传或推销武器及相关商品的网站。,zh-TW,推銷武器或相關商品的網站,或提供有關資訊的網站。,de-DE,Webseiten mit Werbung für und Informationen zu dem Verkauf von Waffen sowie artverwandten Artikeln sowie Webseiten\\, die den Vertrieb dieser Waren unterstützen.,en-US,Sites that provide information about\\, promote\\, or support the sale of weapons and related items.,fr-FR,Sites qui proposent\\, font la promotion ou fournissent des informations sur la vente d'armes et d'articles s'y rapportant.,it-IT,Siti che promuovono o forniscono informazioni oppure supportano la vendita d’armi e d’articoli associati.,ja-JP,武器および武器関連品に関する情報の提供、販売の促進やサポートを行うサイト。,ko-KR,무기 관련 상품의 판매를 선전 또는 지원하거나 정보를 제공하는 사이트.,pt-BR,Sites que fornecem informações\\, promovam ou suportem a venda de armas e itens afins.,es-ES,Sitios que promueven\\, apoyan u ofrecen información sobre la venta de armas y productos relacionados. 23 D669 0 zh-CN,药物,zh-TW,藥物,de-DE,Arzneimittel,en-US,Drugs,fr-FR,Drogues,it-IT,Droghe,ja-JP,麻薬/医薬品,ko-KR,약품,pt-BR,Medicamentos,es-ES,Drogas zh-CN,该类别包含以下子类别:滥用药物、处方药、大麻、补充/非管制化合物,zh-TW,包含以下類別的主類別:濫用藥物、處方藥、大麻、補充藥物/非規製合成藥物,de-DE,Hauptkategorie mit den folgenden Unterkategorien: Drogen- und Arzneimittelmissbrauch\\, Verschreibungspflichtige Medikamente\\, Marihuana\\, Präparate und Substanzen ohne gesetzliche Regelung.,en-US,Parent category that contains the categories: Abused Drugs\\, Prescribed Medications\\, Marijuana\\, Supplements/Unregulated Compounds,fr-FR,Catégorie mère comprenant les catégories : Abus de Drogues\\, Médicaments sur ordonnance\\, Marijuana\\, Compléments/Substances non réglementées.,it-IT,Categoria madre contenente le categorie: Abuso di droghe\\, Farmaci prescrittibili\\, Marijuana\\, Additivi / Composti non regolati,ja-JP,下記のカテゴリーを含む親サイト:麻薬、処方薬、マリファナ、栄養補助食品、未調整化合物。,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 마약\\, 처방 의약품\\, 마리화나\\, 보조식품/등록되지 않은 혼합물.,pt-BR,Categoria principal que contém as categorias: Drogas abusivas\\, medicações receitadas\\, marijuana\\, compostos suplementares/não regulados.,es-ES,Categoría principal que contiene las categorías: Abuso de drogas\\, Medicamentos recetados\\, Marihuana y Compuestos y suplementos no regulados. 24 670 0 zh-CN,暴力冲突与极端主义,zh-TW,暴力衝突,極端主義,de-DE,Militantes und Extremismus,en-US,Militancy and Extremist,fr-FR,Militantisme\\, extrémisme,it-IT,Militanza ed Estremismo ,ja-JP,過激派グループ,ko-KR,투쟁/과격단체,pt-BR,Militância\\, Extremistas,es-ES,Militancia/ Extremistas zh-CN,由鼓吹反政府思想或行为的组织创办,宣传或提供相关信息的网站。,zh-TW,鼓吹反政府思想、行為的組織所創辦的網站,或提供相關資訊的網站。,de-DE,Webseiten mit Informationen über Gruppen\\, die staatsfeindliche Überzeugungen vertreten oder Webseiten\\, die solche Gruppen fördern oder von solchen Gruppen gesponsort werden.,en-US,Sites that offer information about or promote or are sponsored by groups advocating antigovernment beliefs or action.,fr-FR,Sites qui proposent des informations des groupes qui soutiennent des croyances ou des actions anti-gouvernementales\\, ou qui en font leur promotion ou qui sont sponsorisés par eux.,it-IT,Siti che forniscono informazioni\\, promuovono o sono patrocinati da gruppi che sostengono credenze o attività sovversive.,ja-JP,反政府思想/活動に関する情報やそれらを促進するサイト。または反政府思想/活動を提唱するグループが提供しているサイト。,ko-KR,반정부주의 또는 반정부운동을 지지하는 단체를 홍보하거나 관련 정보를 제공하는 사이트.,pt-BR,Sites que oferecem informações sobre ou promovam ou são patrocinados por grupos que advogam a crença ou ação antigovernamental.,es-ES,Sitios que informan\\, promueven o reciben el patrocinio de grupos que defienden creencias o acciones antigubernamentales. 25 671 0 zh-CN,种族歧视与仇恨,zh-TW,種族歧視,de-DE,Rassismus und Hass,en-US,Racism and Hate,fr-FR,Racisme\\, haine,it-IT,Razzismo ed Odio,ja-JP,人種差別,ko-KR,인종차별/적대,pt-BR,Racismo\\, Ódio,es-ES,Racismo/ Odio zh-CN,宣扬种族优劣论、玷污某些种族或吹捧某个种族的网站。,zh-TW,宣揚種族優劣論、毀譽某些種族而?高某個種族的網站。,de-DE,Webseiten\\, die die Kategorisierung von Gruppen in Rassen fördern sowie Webseiten\\, auf denen bestimmte Gruppen verunglimpft oder abfällig behandelt werden oder auf denen die Überlegenheit bestimmter Gruppen propagiert wird. ,en-US,Sites that promote the identification of racial groups\\, the denigration or subjection of groups\\, or the superiority of any group.,fr-FR,Sites qui soutiennent l'identification de groupes raciaux\\, le dénigrement ou l'assujettissement de certains groupes ou la supériorité d'un groupe quel qu'il soit. ,it-IT,Siti che promuovono l'identificazione di gruppi razziali\\, la denigrazione o la soggezione di gruppi\\, o la superiorità di qualsiasi gruppo.,ja-JP,人種を特定したり、特定のグループ(人種グループ、その他のグループ)に対する中傷や偏見を助長したり、特定グループの優越主義を促進するサイト。,ko-KR,인종차별 또는 비난 단체\\, 그 소속 단체임을 밝히거나 선전하는 사이트.,pt-BR,Sites que promovam a identificação de grupos raciais\\, que denigrem ou causem a submissão e grupos ou a superioridade de qualquer grupo. ,es-ES,Sitios que promueven la identificación de grupos raciales\\, la denigración o sometimiento de grupos\\, o la superioridad de cualquier grupo. 26 $672 0 zh-CN,健康,zh-TW,健康,de-DE,Gesundheit,en-US,Health,fr-FR,Santé,it-IT,Salute,ja-JP,健康,ko-KR,건강,pt-BR,Saúde,es-ES,Salud zh-CN,提供有关个人健康或医疗服务、医疗程序或设备(不包括药物)的信息或建议的网站。其中包括病友会。,zh-TW,提供有關個人健康或醫療服務、醫療程式或設備(不包括藥物)的資訊或建議之網站。其中包括病人互助組織的有關資訊。,de-DE,Webseiten mit Informationen/Ratschlägen zur Gesundheit oder zu medizinischen Dienstleistungen\\, Verfahren und Geräten\\, einschließlich Webseiten von Selbsthilfegruppen. Ausgeschlossen sind Webseiten zum Thema 'Drogen und Arzneimittel'.,en-US,Sites that provide information or advice on personal health or medical services\\, procedures\\, or devices\\, but not drugs. Includes self-help groups.,fr-FR,Sites qui fournissent des informations ou des conseils sur la santé personnelle\\, des services\\, des procédures ou des équipements d'ordre médical\\, mais pas de médicaments. Ils comprennent les groupes d'entraide.,it-IT,Siti che forniscono informazioni o consigli sulla salute personale\\, sui servizi e le procedure mediche\\, oppure sulle apparecchiature mediche\\, ad eccezione delle droghe. Comprende anche gruppi d’auto-aiuto.,ja-JP,個人の健康や健康医療サービス、健康保険、医療手続き、健康器具などに関する情報、アドバイスを提供しているサイト。ただし、麻薬は除く。自助グループは含まれる。,ko-KR,개인 건강 또는 의료 서비스\\, 절차 또는 장비에 대한 정보 또는 조언을 제공하는 사이트. 단\\, 약품은 제외. 자조그룹 포함.,pt-BR,Sites que fornecem informações ou conselhos sobre a saúde pessoal ou serviços médicos\\, procedimentos ou dispositivos\\, excluindo drogas. Inclui grupos de auto-ajuda.,es-ES,Sitios que ofrecen información o consejos sobre salud personal o servicios médicos\\, procedimientos y dispositivos\\, excluidos los medicamentos. Incluye grupos de autoayuda. 27 (673 0 zh-CN,教育,zh-TW,教育,de-DE,Bildung,en-US,Education,fr-FR,Enseignement,it-IT,Educazione,ja-JP,教育,ko-KR,교육,pt-BR,Educação,es-ES,Educación zh-CN,该类别包含以下子类别:文化机构、教育机构、教学材料,zh-TW,包含以下類別的主類別:文化機構、教育機構、教學資源,de-DE,Hauptkategorie mit folgenden Unterkategorien: Bildungseinrichtungen\\, Bildungsunterlagen\\, Kulturelle Einrichtungen und Nachschlagewerke.,en-US,Parent category that contains the categories: Cultural Institutions\\, Educational Institutions\\, Educational Materials,fr-FR,Catégorie mère comprenant les catégories : Institutions culturelles\\, Établissements scolaires\\, Matériel éducatif,it-IT,Categoria madre contenente le categorie: Istituzioni culturali\\, Istituti scolastici\\, Materiale scolastico,ja-JP,下記のカテゴリーを含む親カテゴリー:文化施設、教育施設、教材。,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 문화단체\\, 교육기관\\, 교육자료.,pt-BR,Categoria principal que contém as categorias: Instituições culturais\\, instituições educacionais\\, materiais educacionais,es-ES,Categoría principal que contiene las categorías: Instituciones culturales\\, Instituciones educativas\\, Material educativo. 3 674 0 zh-CN,政府,zh-TW,政府,de-DE,Staat & Regierung,en-US,Government,fr-FR,Gouvernement,it-IT,Governo,ja-JP,政府,ko-KR,정부,pt-BR,Governo,es-ES,Gobierno zh-CN,除军队外的各级政府部门、办公署或机关创办的网站。,zh-TW,軍隊之外的各級政府部門、政署或機構創辦的網站。,de-DE,Webseiten\\, die von staatlichen oder staatlich geförderten Stellen und Zweigstellen\\, Ämtern und Behörden unterstützt werden. Hiervon ausgenommen sind Webseiten der bewaffneten Streitkräfte. ,en-US,Sites sponsored by branches\\, bureaus\\, or agencies of any level of government\\, except for the armed forces.,fr-FR,Sites sponsorisés par des branches\\, des bureaux ou des agences dépendant du gouvernement\\, à quelque niveau que ce soit\\, excepté les forces armées. ,it-IT,Siti patrocinati da filiali\\, da uffici\\, o dalle agenzie di qualsiasi livello del governo\\, tranne le forze armate.,ja-JP,政府関連サイト。政府機関などすべてのレベルの政府関連組織が運営するサイト。ただし、軍隊は含まない。,ko-KR,모든 정부기관 부처에서 지원하는 사이트. 군기관 제외.,pt-BR,Sites patrocinados por repartições\\, escritórios ou agências de qualquer nível governamental\\, exceto as forças armadas.,es-ES,Sitios patrocinados por oficinas\\, agencias u organismos de cualquier nivel gubernamental\\, con excepción de las fuerzas armadas. 4 675 0 zh-CN,新闻与媒体,zh-TW,新聞媒體,de-DE,Nachrichten & Medien,en-US,News and Media,fr-FR,Actualités et médias,it-IT,Notizie e Media,ja-JP,ニュース・メディア,ko-KR,뉴스와 미디어,pt-BR,Notícias e mídia,es-ES,Noticias y medios de comunicación zh-CN,提供最新新闻与时事评论的网站,其中包括由报刊、流行杂志或其它媒体所创办的网站。,zh-TW,提供最新新聞與時事評述的網站,包括報刊、發行流通的雜誌或其他媒體所創辦的網站。,de-DE,Webseiten mit aktuellen Nachrichten und Inhalten zur öffentlichen Meinung einschließlich Webseiten\\, die von Zeitungen\\, Magazinen oder anderen Medien unterstützt werden.,en-US,Sites that offer current news and opinion\\, including those sponsored by newspapers\\, general-circulation magazines\\, or other media.,fr-FR,Sites qui proposent des informations et des opinions actuelles\\, y compris ceux sponsorisés par des journaux\\, des magazines de grande diffusion ou d'autres médias.,it-IT,Siti che offrono attualità ed opinioni\\, compresi quelli patrocinati da giornali\\, da riviste a diffusione generale o da altri media.,ja-JP,ニュースおよびオピニオンサイト。新聞、週刊誌、その他のメディアが提供しているニュース、オピニオンも含む。,ko-KR,최신 뉴스 및 견해를 제공하는 사이트로\\, 신문\\, 일반 정기 간행물 또는 기타 미디어 포함.,pt-BR,Sites que oferecem notícias atuais e opiniões\\, incluindo os sites patrocinados por jornais\\, revistas de circulação geral ou outras mídias.,es-ES,Sitios que ofrecen noticias y opiniones actuales\\, incluidas las ofrecidas por periódicos\\, revistas de circulación general u otros medios. 5 676 0 zh-CN,宗教,zh-TW,宗教,de-DE,Religion,en-US,Religion,fr-FR,Religion,it-IT,Religione,ja-JP,宗教,ko-KR,종교,pt-BR,Religião,es-ES,Religión zh-CN,该类别包含以下子类别:传统宗教与非传统宗教,zh-TW,包含以下類別的主類別:傳統宗教與非傳統宗教,de-DE,Hauptkategorie mit den folgenden Unterkategorien: Traditionelle Religionen\\, Nichttraditionelle Religionen\\, Okkultismus und volkstümliche Glaubensrichtungen.,en-US,Parent category that contains the categories: Traditional Religions\\, Non-Traditional Religions,fr-FR,Catégorie mère comprenant les catégories : Religions traditionnelles\\, Religions non traditionnelles.,it-IT,Categoria madre contenente le categorie: Religioni tradizionali\\, Religioni non tradizionali ,ja-JP,以下のカテゴリーを含む親カテゴリー:伝統的宗教、新興宗教,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 정통 종교와 비정통 종교,pt-BR,Categoria principal que contém as categorias: Religiões tradicionais e religiões não tradicionais,es-ES,Categoría principal que contiene las categorías: Religiones tradicionales\\, religiones no tradicionales. 6 ~677 0 zh-CN,用户自定义,zh-TW,使用者定義,de-DE,Benutzerdefiniert,en-US,User-Defined,fr-FR,Défini par l’utilisateur,it-IT,Definita dall'Utente,ja-JP,ユーザー設定,ko-KR,사용자 정의,pt-BR,Definido pelo usuário,es-ES,Definido por el usuario zh-CN,按用户需求定义的类别,zh-TW,使用者定義的類別,de-DE,Benutzerdefinierte Kategorie.,en-US,User-defined category,fr-FR,Catégorie définie par l’utilisateur.,it-IT,Categoria definita dall'Utente,ja-JP,ユーザー設定カテゴリー,ko-KR,사용자 정의 카테고리.,pt-BR,Categoria definida pelo usuário,es-ES,Categoría definida por el usuario. 64 ]678 0 zh-CN,时尚及生活,zh-TW,社會與生活時尚,de-DE,Gesellschaft & Lifestyle,en-US,Society and Lifestyles,fr-FR,Société et style de vie,it-IT,Società e Stili di vita,ja-JP,社会 & ライフ スタイル,ko-KR,사회와 문화,pt-BR,Sociedade e estilo de vida,es-ES,Sociedad y estilos de vida zh-CN,提供除娱乐、健康、业余爱好、工作、性及体育运动外日常生活方式相关信息的网站。,zh-TW,提供有關日常生活方式的資訊之網站,但不包括娛樂、健康、嗜好、工作、性及體育運動。,de-DE,Webseiten mit Informationen zum täglichen Leben. Ausgenommen sind Webseiten zu den Themen Unterhaltung\\, Gesundheit\\, Hobbys\\, Jobs\\, Sex und Sport.,en-US,Sites that provide information about matters of daily life\\, excluding entertainment\\, health\\, hobbies\\, jobs\\, sex\\, and sports.,fr-FR,Sites qui fournissent des informations concernant les problèmes de la vie quotidienne à l'exception du divertissement\\, de la santé\\, des hobbies\\, de l'emploi\\, de la sexualité et des sports. ,it-IT,Siti che forniscono informazioni sugli argomenti della vita quotidiana\\, tranne l'intrattenimento\\, la salute\\, gli hobby\\, il lavoro\\, il sesso e gli sport.,ja-JP,日常生活情報を提供しているサイト。ただし、エンターテイメント、健康、趣味、求人情報、セックスおよびスポーツが含まれるサイトは除く。,ko-KR,일상 생활 정보를 제공하는 사이트. 엔터테인먼트\\, 건강\\, 취미\\, 구인구직\\, 섹스 및 스포츠 제외.,pt-BR,Sites que fornecem informações sobre assunto da vida diária\\, excluindo entretenimento\\, saúde\\, passatempos\\, empregos\\, sexo e esportes.,es-ES,Sitios que ofrecen información sobre temas de la vida diaria\\, excluidos entretenimiento\\, salud\\, pasatiempos\\, empleo\\, sexo y deportes. 7 M679 0 zh-CN,特殊事件,zh-TW,特殊事件,de-DE,Besondere Ereignisse,en-US,Special Events,fr-FR,Événements spéciaux,it-IT,Eventi speciali,ja-JP,スペシャル・ イベント,ko-KR,특별 이벤트,pt-BR,Eventos especiais,es-ES,Eventos especiales zh-CN,专门介绍需要单独归类的时事的网站。,zh-TW,專門介紹需要單獨歸類的時事之網站。,de-DE,Webseiten mit Informationen zu aktuellen Ereignissen oder Veranstaltungen\\, die eine eigene Kategorie erfordern.,en-US,Sites devoted to a current event that requires separate categorization.,fr-FR,Sites dédiés à un événement actuel qui requiert une catégorie à part.,it-IT,Siti dedicati ad un evento attuale che richiede una classificazione separata.,ja-JP,現在ホットなイベント専用サイトで、別のカテゴリー分類が必要とされる。,ko-KR,특별한 카테고리가 필요한 최신 이벤트 전용 사이트.,pt-BR,Sites que se dedicam a um evento atual que requerem uma categorização separada.,es-ES,Sitios que se dedican a un evento actual que requiere una categorización separada. 8 680 0 zh-CN,信息科技,zh-TW,資訊科技,de-DE,Informationstechnologie,en-US,Information Technology,fr-FR,Technologies de l'information,it-IT,Tecnologia informatica,ja-JP,IT,ko-KR,정보기술(IT),pt-BR,Tecnologia da informação,es-ES,Tecnología informática zh-CN,由计算机、软件、因特网及相关商业公司创办或提供其相关信息的网站,其中包括推销硬件、软件、外围设备与服务的网站。,zh-TW,由電腦公司、軟體公司、網際網路公司以及相關企業創辦或提供有關資訊的網站,包括推銷硬體、軟體、週邊設備與服務的網站。,de-DE,Webseiten mit Werbung für oder Informationen über Computer\\, Software\\, das Internet sowie Unternehmen der Branche ebenso wie Webseiten für den Verkauf von Hard- und Software sowie entsprechenden Peripheriegeräten und Dienstleistungen.,en-US,Sites sponsored by or providing information about computers\\, software\\, the Internet\\, and related business firms\\, including sites supporting the sale of hardware\\, software\\, peripherals\\, and services.,fr-FR,Sites fournissant des informations sur les ordinateurs\\, les logiciels\\, Internet et les entreprises travaillant dans ce secteur\\, y compris les sites de vente de matériel\\, de logiciels\\, de périphériques et de services\\, ou qui en font leur promotion.,it-IT,Siti patrocinati o che forniscono informazioni sui computer\\, sul software\\, su internet e sulle imprese associate\\, compresi i siti che supportano la vendita di hardware\\, software\\, dispositivi periferici e servizi.,ja-JP,コンピュータ、ソフトウェア、インターネット関連企業の情報を提供しているサイト。ハードウェア、ソフトウェア、周辺機器、各種サービスの販売をサポートするサイトも含む。,ko-KR,컴퓨터\\, 소프트웨어\\, 인터넷 및 관련 업체에 대한 정보를 제공하거나 그러한 기업에서 지원하는 사이트. 하드웨어\\, 소프트웨어\\, 주변장치 및 서비스 판매를 지원하는 사이트 포함.,pt-BR,Sites patrocinados por ou que forneçam informações sobre computadores\\, software\\, a Internet e empresas relacionadas\\, incluindo os sites que oferecem a venda de hardware\\, software\\, periféricos e serviços.,es-ES,Sitios patrocinados por o que ofrecen información sobre computadoras\\, software\\, internet y empresas relacionadas\\, incluyendo sitios dedicados a la venta de hardware\\, software\\, periféricos y servicios. 9 d681 0 zh-CN,互联网通信,zh-TW,網際網路通訊,de-DE,Internet-Kommunikation,en-US,Internet Communication,fr-FR,Communication Internet,it-IT,Comunicazione via Internet,ja-JP,インターネット・ コミュニケーション,ko-KR,인터넷 통신,pt-BR,Comunicação via Internet,es-ES,Comunicación por Internet zh-CN,该类别包含以下子类别:电子邮件、网络聊天室,zh-TW,包含以下類別的主類別:電子郵件、網上聊天,de-DE,Hauptkategorie mit den folgenden Unterkategorien: E-Mail\\, Web Chat.,en-US,Parent category that contains the categories: Email\\, Web Chat,fr-FR,Catégorie mère comprenant les catégories : E-mail\\, Dialogue en ligne,it-IT,Categoria madre contenente le categorie: Posta elettronica\\, Web Chat,ja-JP,下記のカテゴリーを含む親カテゴリー:電子メール、ウェブチャット。,ko-KR,다음 카테고리를 포함하는 상위 카테고리: 전자메일\\, 웹채팅.,pt-BR,Categoria principal que contém as categorias: e-mail\\, bate-papo,es-ES,Categoría principal que contiene las categorías: Correo electrónico\\, Chat vía Web 91 682 323 zh-CN,上网赚钱,zh-TW,上網式賺錢,de-DE,Pay-to-Surf,en-US,Pay-to-Surf,fr-FR,Sites rémunérateurs,it-IT,Guadagna navigando (Pay-to-Surf),ja-JP,報酬サイト,ko-KR,무료 현금배분,pt-BR,Pagar para navegar,es-ES,Pagar por navegar zh-CN,向浏览网站、广告或电子信件的用户支付费用的网站。,zh-TW,向瀏覽網站、廣告或電子郵件的使用者支付費用的網站。,de-DE,Webseiten\\, die den Internetbenutzer für das Aufrufen\\, Anzeigen und Lesen von Webseiten\\, Werbung oder E-Mails bezahlen. ,en-US,Sites that pay users to view Web sites\\, advertisements\\, or email.,fr-FR,Sites qui rémunèrent des utilisateurs pour visualiser des sites Internet\\, des publicités ou des messages électroniques. ,it-IT,Siti che pagano gli utenti per visitare siti Web\\, aprire inserti di pubblicità\\, o ricevere messaggi di posta elettronica.,ja-JP,Webサイトや広告を見たり、電子メールを送受信した人に報酬を支払うサイト。,ko-KR,웹사이트\\, 광고 또는 전자메일을 보는 사용자에게 현금을 지급하는 사이트.,pt-BR,Sites que pagam para que os usuários vejam Websites\\, anúncios ou e-mail.,es-ES,Sitios que pagan a los usuarios por visitar sitios web\\, publicidad o el correo electrónico. 100 5683 332 zh-CN,网上竞拍,zh-TW,網上拍賣,de-DE,Internet-Auktionen,en-US,Internet Auctions,fr-FR,Ventes aux enchères sur Internet,it-IT,Vendite all'asta via Internet,ja-JP,インターネット・ オークション,ko-KR,인터넷 경매,pt-BR,Leilão via Internet,es-ES,Subastas por Internet zh-CN,支持个人之间买卖商品的网站。,zh-TW,支援個人之間貨物買賣的網站。,de-DE,Webseiten\\, die das Anbieten von Waren zum Kauf bzw. Verkauf sowie den eigentlichen Kauf/Verkauf von Waren zwischen Einzelpersonen ermöglichen.,en-US,Sites that support the offering and purchasing of goods between individuals.,fr-FR,Sites qui proposent l'offre et l'achat de biens entre particuliers.,it-IT,Siti che supportano l'offerta e l'acquisto di merci fra privati.,ja-JP,個人間の商品売買をサポートしているサイト。,ko-KR,개인 간에 상품을 매매하는 기능을 지원하는 사이트.,pt-BR,Sites que suportam o oferecimento e compra de bens entre indivíduos.,es-ES,Sitios que apoyan la oferta y compra de productos entre personas. 101 684 332 zh-CN,房地产,zh-TW,房地產,de-DE,Immobilien,en-US,Real Estate,fr-FR,Immobilier,it-IT,Immobiliari,ja-JP,不動産,ko-KR,부동산,pt-BR,Imóveis,es-ES,Bienes raíces zh-CN,提供有关住宅租赁、购买、销售或投资的信息的网站。,zh-TW,提供有關住宅地產租賃、購買、銷售或融資的資訊之網站。,de-DE,Webseiten mit Informationen über die Anmietung\\, die Veräußerung\\, den Ankauf oder die Finanzierung von Immobilien.,en-US,Sites that provide information about renting\\, buying\\, selling\\, or financing residential real estate.,fr-FR,Sites qui fournissent des informations sur la location\\, l'achat\\, la vente ou le financement dans le secteur de l'immobilier résidentiel.,it-IT,Siti che forniscono informazioni sull'affitto\\, sull'acquisto\\, sulla vendita o sul finanziamento di beni immobili residenziali.,ja-JP,住宅不動産の賃貸、購入、販売、または投資に関する情報を提供しているサイト。,ko-KR,주거용 부동산의 임대\\, 매매 또는 자금 마련에 대한 정보를 제공하는 사이트.,pt-BR,Sites que fornecem informações sobe aluguel\\, compra\\, venda ou financiamento de imóveis residenciais.,es-ES,Sitios que ofrecen información sobre alquiler\\, compra y venta de bienes raíces. 102 685 350 zh-CN,业余爱好,zh-TW,嗜好,de-DE,Hobbys,en-US,Hobbies,fr-FR,Hobbies,it-IT,Hobby,ja-JP,趣味,ko-KR,취미,pt-BR,Passatempo,es-ES,Pasatiempos zh-CN,介绍、宣传非运动性个人娱乐爱好(不包括电子设备、影映和在线游戏)的网站。,zh-TW,推銷除電子、電視或線上遊戲之外的私人與主要習慣娛樂或提供有關資訊的網站。,de-DE,Webseiten mit Informationen über private Freizeitaktivitäten\\, die weitestgehend im Sitzen ausgeübt werden. Ausgenommen sind elektronische Spiele\\, Videospiele sowie Online-Spiele.,en-US,Sites that provide information about or promote private and largely sedentary pastimes\\, but not electronic\\, video\\, or online games.,fr-FR,Sites qui fournissent des informations sur les passe-temps privés et largement sédentaires\\, mais pas les jeux électroniques\\, vidéos\\, ni en ligne\\, ou qui en font leur promotion. ,it-IT,Siti che promuovono o forniscono informazioni sui passatempi privati ed in gran parte sedentari\\, esclusi i giochi elettronici\\, video o in linea.,ja-JP,趣味や余暇に関連した情報を提供したり、これらを促進するサイト。電子ゲーム、ビデオゲーム、オンラインゲームは除く。,ko-KR,개인적이며 주로 앉아서 할 수 있는 취미에 대한 정보를 제공하거나 그에 대해 선전하는 사이트. 전자\\, 비디오 또는 온라인 게임은 제외.,pt-BR,Sites que fornecem informações sobre ou promovam passatempos bastante sedentários\\, mas não jogos eletrônicos\\, vídeo ou on-line.,es-ES,Sitios que promueven u ofrecen información sobre pasatiempos privados y mayormente sedentarios\\, exceptuando juegos electrónicos\\, videojuegos o juegos en línea. 103 686 333 zh-CN,狩猎运动与射击俱乐部,zh-TW,狩獵運動,射擊俱樂部,de-DE,Jagdsport/Sportschießvereine,en-US,Sport Hunting and Gun Clubs,fr-FR,Chasse\\, clubs de tir,it-IT,Caccia sportiva e Club di tiro,ja-JP,スポーツハンティング/ 射撃クラブ,ko-KR,사냥/총기 동호회,pt-BR,Caça esportiva\\, Clubes de tiro,es-ES,Caza deportiva/ Clubes de tiro zh-CN,提供射击俱乐部或类似团体(包括军事演习和彩弹设备)相关信息或目录的网站。,zh-TW,提供射擊俱樂部或類似團體有關資訊或目錄的網站,其中包括戰略遊戲與彩彈工具。,de-DE,Webseiten mit Informationen über oder Auflistungen von Schießvereinen und ähnlichen Gruppen einschließlich Webseiten über Einrichtungen für Kriegsspiele und Paintball .,en-US,Sites that provide information about or directories of gun clubs and similar groups\\, including war-game and paintball facilities.,fr-FR,Sites qui fournissent des informations sur ou des annuaires répertoriant des clubs de tir et des groupes similaires\\, notamment les installations de jeux de guerre et de paint ball. ,it-IT,Siti che forniscono informazioni o sono direttori di club di tiro e di gruppi simili\\, comprese le attrezzature per il paintball e per i giochi di guerra.,ja-JP,射撃クラブや類似のグループの情報およびディレクトリを提供しているサイト。机上作戦やペイントボールなども含まれる。,ko-KR,총기 동호회 및 유사 동호회에 대한 정보를 제공하는 사이트\\, 또는 총기 동호회 디렉토리. 전쟁 게임 및 페인트볼 게임 포함.,pt-BR,Sites que fornecem informações sobre ou diretórios de clubes de tiro e grupos similares\\, incluindo instalações de jogos de guerra e tiroteios com tinta.,es-ES,Sitios que proveen información o directorios de clubes de tiro y grupos similares\\, incluyendo juegos de guerra y "paintball". 107 687 324 zh-CN,IP 电话,zh-TW,網際網路電話,de-DE,Internet-Telefonie,en-US,Internet Telephony,fr-FR,Téléphonie Internet,it-IT,Telefonia via Internet,ja-JP,インターネット電話,ko-KR,인터넷 전화,pt-BR,Telefonia via Internet,es-ES,Telefonía vía internet zh-CN,使用户可以通过因特网拨打电话或获取相关信息、软件的网站。,zh-TW,可讓使用者透過網際網路撥打電話或獲取用於該用途的資訊或軟體之網站。,de-DE,Webseiten\\, die den Benutzern das Führen von Telefongesprächen über das Internet direkt ermöglichen oder entsprechende Informationen bzw. Software zu diesem Zweck enthalten.,en-US,Sites that enable users to make telephone calls via the Internet or to obtain information or software for that purpose.,fr-FR,Sites permettant aux utilisateurs de téléphoner via Internet\\, ou d'obtenir des informations ou des logiciels destinés à cet usage.,it-IT,Siti che permettono agli utenti di fare telefonate via Internet o di ottenere informazioni o scaricare il software per quello scopo. ,ja-JP,インターネットを通して電話ができるサイト、またはこの目的で情報をやソフトウェアを入手できるサイト。,ko-KR,사용자가 인터넷을 통해 전화를 걸거나 그러한 용도에 사용되는 정보 또는 소프트웨어를 얻을 수 있는 사이트.,pt-BR,Sites que permitem que os usuários façam chamadas telefônicas via a Internet ou que obtenham informações ou software para tal propósito.,es-ES,Sitios que permiten al usuario realizar llamadas telefónicas por Internet\\, obtener información al respecto o adquirir software para este fin. 108 (688 324 zh-CN,流媒体,zh-TW,串流媒體,de-DE,Streaming Media,en-US,Streaming Media,fr-FR,Médias en temps-réel,it-IT,Streaming Media,ja-JP,ストリーミング・メディア,ko-KR,스트리밍 미디어,pt-BR,Mídia em fluxo,es-ES,Transmisiones multimedia zh-CN,主要提供电影预告等流媒体内容的网站。,zh-TW,主要提供電影預告等串流媒體內容的網站。,de-DE,Webseiten\\, die vorrangig Inhalte für die Verwendung mit Medien zur Datenstromübertragung (Streaming Media) wie zum Beispiel Filmvorschauen bereitstellen.,en-US,Sites that primarily provide streaming media content\\, such as movie trailers.,fr-FR,Sites qui proposent principalement un contenu média en temps réel\\, notamment des bandes annonces de films.,it-IT,Siti che forniscono soprattutto contenuto di streaming media\\, come ad esempio i trailer di film.,ja-JP,主にストリーミングメディアコンテンツを供給するサイト。映画の予告などがある。,ko-KR,영화 예고편과 같은 스트리밍 미디어 컨텐츠를 주로 제공하는 사이트.,pt-BR,Sites que fornecem principalmente conteúdo de mídia de fluxo\\, com trailers de filmes.,es-ES,Sitios que ofrecen principalmente contenido de transmisiones multimedia (streaming media)\\, como por ejemplo avances de películas. 109 689 341 zh-CN,大麻,zh-TW,大麻,de-DE,Marihuana,en-US,Marijuana,fr-FR,Marijuana,it-IT,Marijuana,ja-JP,マリファナ,ko-KR,마리화나,pt-BR,Marijuana,es-ES,Marihuana zh-CN,介绍、宣传大麻的种植、配制或使用的网站。,zh-TW,介紹大麻的種植、配製或使用或提供有關資訊的網站。,de-DE,Webseiten mit Informationen zu oder Werbung für den Anbau\\, die Verarbeitung oder den Genuss von Marihuana. ,en-US,Sites that provide information about or promote the cultivation\\, preparation\\, or use of marijuana.,fr-FR,Sites qui fournissent des informations sur la culture\\, la préparation ou l'utilisation de la marijuana\\, ou qui en font la promotion.,it-IT,Siti che promuovono o forniscono informazioni sulla coltura\\, la preparazione\\, o l'uso della marijuana.,ja-JP,マリファナの栽培、処方、使用に関する情報提供およびそれらを促進するサイト。,ko-KR,마리화나에 대한 정보 제공 또는 마리화나 사용을 선전하는 사이트.,pt-BR,Sites que fornecem informações sobre ou promovam o cultivo\\, preparação ou uso da marijuana.,es-ES,Sitios que promueven u ofrecen información sobre el cultivo\\, la preparación o uso de la marihuana. 111 7690 323 zh-CN,信息布告栏和论坛,zh-TW,留言板和論壇,de-DE,Nachrichten-Boards und Foren,en-US,Message Boards and Forums,fr-FR,BBS et forums,it-IT,Forum e bacheche,ja-JP,掲示板とフォーラム,ko-KR,자유 게시판 및 포럼,pt-BR,Fóruns e quadros de mensagens,es-ES,Tablones de mensajes y foros zh-CN,作为留言板、公告栏或其他非隶属论坛主机的站点。,zh-TW,主持留言板、電子佈告欄和其他獨立線上論壇的網站。,de-DE,Sites\\, die Nachrichten-Boards\\, schwarze Bretter oder sonstige unabhängige Diskussionsforen bereitstellen.,en-US,Sites that host message boards\\, bulletin boards\\, and other unaffiliated discussion forums.,fr-FR,Sites hébergeant des tableaux d'affichage et des forums de discussion indépendants.,it-IT,Siti che contengono bacheche e altri forum di discussione non controllati.,ja-JP,メッセージ ボード、掲示板、その他の不特定ディスカッション形式のフォーラムをホストするサイト,ko-KR,자유 게시판\\, 공고 게시판 및 별다른 연계가 없는 토의 포럼을 호스트하는 사이트.,pt-BR,Sites que hospedam quadros de mensagens\\, quadros de avisos e outros fóruns de discussão não afiliados.,es-ES,Sitios que albergan tablones de mensajes\\, BBS u otros foros de discusión no afiliados. 112 691 324 zh-CN,个人网络存储与备份,zh-TW,個人網路儲存,備份,de-DE,Private Netzwerkspeicherung/-sicherung,en-US,Personal Network Storage and Backup,fr-FR,Stockage/Sauvegarde de réseaux personnels,it-IT,Storage Personale in Rete e Backup,ja-JP,個人用ネットワークファイル保存/バックアップ,ko-KR,개인 네트워크 스토리지/백업,pt-BR,Armazenamento de rede pessoal\\, backup,es-ES,Almacenamiento personal en la red\\, respaldo de seguridad zh-CN,将个人文件存储在网络服务器上以用于备份或交换的网站。,zh-TW,將個人檔案儲存在網際網路伺服器上以用於備份或交換的網站。,de-DE,Webseiten\\, die zum Speichern privater Dateien auf Internetservern zum Zweck der Datensicherung oder des Datenaustauschs verwendet werden können.,en-US,Sites that store personal files on Internet servers for backup or exchange.,fr-FR,Sites permettant le stockage de fichiers personnels sur des serveurs Internet pour la sauvegarde ou l'échange.,it-IT,Siti che memorizzano i file personali su server d'Internet a scopo di recupero o scambio.,ja-JP,バックアップや交換用に、インターネットサーバーに個人のファイルを保存するサイト。,ko-KR,백업 또는 교환을 위해 인터넷 서버에 개인 파일을 저장하는 사이트.,pt-BR,Sites que armazenam arquivos pessoais em servidores da Internet para backup e troca.,es-ES,Sitios que almacenan archivos personales en servidores de Internet como copias de seguridad o intercambio. 113 692 324 zh-CN,网上电台及电视,zh-TW,網際網路廣播與電視,de-DE,Internetradio & Internet-TV,en-US,Internet Radio and TV,fr-FR,Radio et TV sur Internet,it-IT,Radio e TV via Internet,ja-JP,インターネット・ラジオとTV,ko-KR,인터넷 라디오 & TV,pt-BR,Rádio e TV via Internet,es-ES,Radio y televisión vía internet zh-CN,主要用于在因特网上提供电台或电视节目的网站。,zh-TW,主要用於在網際網路上提供廣播或電視節目的網站。,de-DE,Webseiten\\, die vorrangig Radio- oder TV-Ausstrahlungen im Internet anbieten. ,en-US,Sites whose primary purpose is to provide radio or TV programming on the Internet.,fr-FR,Sites dont l'objectif principal est de proposer des programmes de radio ou de TV sur Internet.,it-IT,Siti che hanno come scopo primario di fornire programmazione radio o TV via Internet.,ja-JP,インターネットでラジオやテレビのプログラムを供給することを主な目的とするサイト。,ko-KR,인터넷을 통해 라디오 또는 TV 프로그램을 제공하는 사이트.,pt-BR,Sites cujo objetivo principal é o de fornecer programação de rádio ou TV via a Internet.,es-ES,Sitios cuyo propósito principal es brindar programación de radio o televisión por internet. 114 693 324 zh-CN,对等文件共享,zh-TW,端對端檔案共用,de-DE,Peer-to-Peer,en-US,Peer-to-Peer File Sharing,fr-FR,Partage de fichiers en peer-to-peer,it-IT,Scambio di File Peer-to-Peer,ja-JP,ピア・ツー・ピアによるファイル共有,ko-KR,P2P 파일 공유,pt-BR,Compartilhamento de arquivos P2P,es-ES,Compartir archivos P2P zh-CN,提供客户端软件,以启用对等层文件共享与传送的网站。,zh-TW,提供用戶端軟體,使端對端檔案可以共用與傳輸的網站。,de-DE,Webseiten\\, die Client-Software für den Datenaustausch und -Datentransfer im Peer-to-Peer-Modus anbieten.,en-US,Sites that provide client software to enable peer-to-peer file sharing and transfer.,fr-FR,Sites qui proposent des logiciels permettant le partage et le transfert de fichiers en peer-to-peer.,it-IT,Siti che forniscono client software per abilitare lo scambio ed il trasferimento di file peer-to-peer.,ja-JP,ピア・ツー・ピアでファイルを共有したりファイル転送ができるクライアント・ソフトウェアを提供するサイト。,ko-KR,P2P 파일 공유 및 전송을 수행하는데 사용되는 클라이언트 소프트웨어를 제공하는 사이트.,pt-BR,Sites que fornecem software cliente para permitir o compartilhamento e transferência de arquivos entre pessoas.,es-ES,Sitios que ofrecen a los clientes software que les permite compartir y transferir archivos entre ellos. 115 t 694 350 zh-CN,社交网络和个人站点,zh-TW,社交網路和個人網站,de-DE,Persönliche Sites und Sites für webbasierte soziale Netzwerke,en-US,Social Networking and Personal Sites,fr-FR,Sites de Social Networking et sites personnels,it-IT,Comunità online e siti personali,ja-JP,SNSと個人のサイト,ko-KR,친목 및 개인 사이트,pt-BR,Sites pessoais e rede social,es-ES,Sitios de redes sociales y personales zh-CN,主要专门用于个人表达(例如日记或个人博客)或小型团体的站点,经常但不一定包含与相似站点的多个链接。,zh-TW,主要熱衷於個人 (如日記或個人部落格) 或小群組的私人情緒抒發的網站,通常 (但不一定) 會含有連到類似網站的多個連結。,de-DE,Sites\\, die vorrangig dem Ausdruck persönlicher Ansichten von Einzelpersonen (wie beispielsweise in Tagebüchern oder Blogs) oder kleinen Gruppen dienen und häufig\\, nicht aber unbedingt\\, mehrere Links zu ähnlichen Sites enthalten.,en-US,Sites chiefly devoted to personal expression by individuals (as in diaries or personal blogs) or small groups\\, often but not necessarily involving multiple links to similar sites.,fr-FR,Sites principalement consacrés à l'expression d'individus (journal\\, blog) ou de groupes réduits et comportant souvent des liens à des sites semblables.,it-IT,Siti principalmente dedicati allo scambio di opinioni personali tra utenti (come in diari o blog personali) o piccoli gruppi\\, che spesso includono diversi collegamenti ad altrettanti siti simili.,ja-JP,主に個人または小規模なグループの表現 (個人の日記、ブログ) を目的としたサイトで、しばしば同種のサイトへ無意味にリンクさせる,ko-KR,개인 또는 소그룹의 사적인 의사표현(일기 형식 또는 블로그로)을 주로 주제로 하는\\, 꼭 그런 것은 아니지만\\, 대개 유사한 사이트로의 다중 링크를 동반하는 사이트.,pt-BR,Sites voltados principalmente para a expressão pessoal de indivíduos (como em diários ou blogs pessoais) ou pequenos grupos\\, que\\, com freqüência\\, mas não necessariamente\\, envolvem vários links para sites semelhantes.,es-ES,Sitios principalmente dedicados a la expresión de opiniones personales (diarios o blogs personales) o pequeños grupos\\, y que a menudo (aunque no necesariamente) contienen enlaces a sitios similares. 117 695 345 zh-CN,教学材料,zh-TW,教學資源,de-DE,Bildungsunterlagen,en-US,Educational Materials,fr-FR,Matériaux éducatifs,it-IT,Materiale scolastico,ja-JP,教材,ko-KR,교육자료,pt-BR,Materiais educacionais,es-ES,Material educativo zh-CN,出售教材\\,直接教育\\,学术期刊以及类似出版物或提供相关消息的网站。,zh-TW,提供教育相關資訊、銷售或提供教材或直接教育的網站;亦包含學術期刊與類似出版物。,de-DE,Webseiten\\, die Informationen zu Aus-/Fortbildungsmaterialien oder direkte Anleitungen zur Verfügung stellen oder kostenpflichtig anbieten. Eingeschlossen sind Fachzeitschriften\\, themenspezifische Magazine und ähnliche Veröffentlichungen.,en-US,Sites that provide information about or that sell or provide curriculum materials or direct instruction; also\\, learned journals and similar publications.,fr-FR,Sites qui fournissent des informations sur des programmes d'enseignement ou des instructions directes\\, qui en vendent ou en fournissent. Comprennent également des revues de recherche et des publications similaires.,it-IT,Siti che offrono informazioni o che vendono o forniscono materiali e bozze di curriculum o istruzione in diretta; anche\\, riviste scientifiche e pubblicazioni simili.,ja-JP,教材カリキュラムや指導要綱に関する情報を提供、またはそれらを販売、提供するサイト。学習雑誌や類似の出版物も含む。,ko-KR,커리큘럼 자료 또는 온라인 강좌에 대한 정보를 제공하거나 그러한 자료 및 교육을 판매 또는 제공하는 사이트. 학술 저널 및 유사 출판물 포함.,pt-BR,Sites que fornecem informações sobre ou vendam ou forneçam materiais curriculares ou de auto-instrução; também revistas de ensino ou publicações similares.,es-ES,Sitios que venden o proporcionan material curricular o instrucción directa o que ofrecen información al respecto\\, incluidas las revistas especializadas y publicaciones similares. 118 696 345 zh-CN,参考材料,zh-TW,參考材料,de-DE,Nachschlagewerke & Referenzmaterial,en-US,Reference Materials,fr-FR,Outils de références,it-IT,Materiali di riferimento,ja-JP,参考資料,ko-KR,참고자료,pt-BR,Materiais de referência,es-ES,Materiales de referencia zh-CN,提供地图、辞典、百科全书、公式集、黄白页及公共统计数据等参考内容的网站。,zh-TW,提供地圖、辭典、百科全書、處方集、黃白頁及公共統計資料等參考書架內容的網站。,de-DE,Webseiten mit sachlich-informativen oder für Referenzzwecke gedachten Inhalten wie etwa Atlanten\\, Wörterbücher\\, Enzyklopädien\\, Formulare\\, Telefon- und Branchenbücher sowie öffentlich zugängliche Statistiken.,en-US,Sites that offer reference-shelf content such as atlases\\, dictionaries\\, encyclopedias\\, formularies\\, white and yellow pages\\, and public statistical data.,fr-FR,Sites qui proposent des outils de références tels que des atlas\\, des dictionnaires\\, des encyclopédies\\, des formulaires\\, les pages jaunes et blanches\\, et des données statistiques publiques.,it-IT,Siti che offrono contenuto di riferimento con strumenti di consultazione quali gli atlanti\\, i dizionari\\, le enciclopedie\\, i formulari\\, le Pagine Bianche e Gialle e dati statistici pubblici.,ja-JP,地図帳、辞書、百科事典、白書、個人別及び職業別電話帳(イエローページ)、公的統計データなどの参考資料を提供するサイト。,ko-KR,지도\\, 사전\\, 백과사전\\, 식문집\\, 인명/직종별 전화번호부 및 공공 통계 데이터와 같은 참고자료를 제공하는 사이트.,pt-BR,Sites que oferecem conteúdo de referência\\, como atlas\\, dicionários\\, enciclopédias\\, formulários\\, artigos e páginas amarelas e dados estatísticos públicos.,es-ES,Sitios que ofrecen material de referencia como atlas\\, diccionarios\\, enciclopedias\\, formularios\\, páginas blancas y amarillas\\, y datos estadísticos públicos. 121 697 326 zh-CN,服务与慈善组织,zh-TW,服務與慈善組織,de-DE,Dienstleistungsorganisationen und wohltätige Organisationen,en-US,Service and Philanthropic Organizations,fr-FR,Organisations philanthropiques,it-IT,Organizzazioni filantropiche e d'assistenza sociale,ja-JP,奉仕・慈善事業団体,ko-KR,봉사 및 자선 단체,pt-BR,Organizações de serviço e filantropia,es-ES,Organizaciones de servicios y filantrópicas zh-CN,由主要从事公益活动的组织创办或提供其相关信息的网站。,zh-TW,由主要從事公益活動的組織創辦或提供有關資訊的網站。,de-DE,Webseiten\\, die Informationen über vorrangig wohltätige Organisationen bereitstellen oder diese unterstützen oder von diesen gesponsert werden..,en-US,Sites sponsored by or that support or offer information about organizations devoted to doing good as their primary activity.,fr-FR,Sites qui contiennent ou proposent des informations sur des associations dont la philanthropie est l'activité principale\\, ou qui sont sponsorisés par elles.,it-IT,Siti che supportano\\, offrono informazioni o sono patrocinati da organizzazioni dedicate principalmente alla filantropia.,ja-JP,主な活動目的として、慈善的行為を行う組織に関する情報を提供するサイト。,ko-KR,자선 활동을 주로 하는 기관이 운영하거나 그러한 기관에 대한 정보를 제공하는 사이트.,pt-BR,Sites patrocinados por ou que suportem ou ofereçam informações sobre organizações dedicadas a fazer o bem como sua atividade principal.,es-ES,Sitios que reciben el patrocinio\\, promueven o informan de organizaciones humanitarias. 123 J 698 326 zh-CN,社会与附属组织,zh-TW,社會與附屬組織,de-DE,Soziale Organisationen und Zweckverbände,en-US,Social and Affiliation Organizations,fr-FR,Associations caritatives,it-IT,Organizzazioni sociali ed affiliati,ja-JP,社交・友好団体,ko-KR,사교 및 친목 단체,pt-BR,Organizações sociais e de filiação,es-ES,Organizaciones sociales y de afiliación zh-CN,由主要致力于社会或公共利益(非慈善或职业提升)的组织创办或提供其相关信息的网站。,zh-TW,由主要致力於社會或公共利益(非慈善或職業進展)的組織創辦或提供有關資訊的網站。,de-DE,Webseiten\\, die Informationen über vorrangig im sozialen Bereich bzw. für das Gemeinwohl tätige Organisationen bereitstellen oder diese unterstützen. Von dieser Kategorie ausgenommen sind Wohltätigkeitsvereine und Berufsförderung/-weiterbildung. ,en-US,Sites sponsored by or that support or offer information about organizations devoted chiefly to socializing or common interests other than philanthropy or professional advancement.,fr-FR,Sites qui contiennent ou proposent des informations concernant des associations principalement dédiées à la socialisation ou à l'intérêt commun\\, autre que la philanthropie ou la promotion professionnelle\\, ou qui sont sponsorisés par elles. ,it-IT,Siti che supportano\\, offrono informazioni o sono patrocinati da organizzazioni dedicate principalmente alla socializzazione o all'interesse comune tranne la filantropia e l'avanzamento professionale.,ja-JP,社交や共通の趣味を主に目的とした団体によるサイト。または、そのような団体に関する情報のサイト。尚、慈善事業あるいは職の向上を目的としたサイトは除く。,ko-KR,사교 및 동일한 관심사를 추구하는 기관이 운영하거나 그러한 기관에 대한 정보를 제공하는 사이트. 자선사업 또는 직업적 성공 관련 정보는 제외.,pt-BR,Sites patrocinados por ou que suportem ou ofereçam informações sobre organizações dedicadas com afinco à socialização ou interesses comuns que não sejam a filantropia ou progresso profissional.,es-ES,Sitios que reciben el patrocinio\\, promueven o informan de organizaciones dedicadas a la socialización o a intereses comunes con fines no filantrópicos ni de progreso profesional. 124 699 326 zh-CN,职业与工人组织,zh-TW,職業與工人組織,de-DE,Berufsverbände und Arbeiterorganisationen,en-US,Professional and Worker Organizations,fr-FR,Organisations professionnelles et de travailleurs,it-IT,Organizzazioni professionali e sindacali,ja-JP,専門家・従業員団体,ko-KR,직업 및 노동자 단체,pt-BR,Organizações profissionais e trabalhistas,es-ES,Organizaciones para profesionales y trabajadores zh-CN,由致力于职业提升或工人利益的组织创办或提供其相关信息的网站。,zh-TW,由致力於職業進展或工人利益的組織創辦或提供有關資訊之網站。,de-DE,Webseiten\\, die Informationen über vorrangig berufsfördernde oder weiterbildende Organisationen oder Arbeiterinteressengemeinschaften bereitstellen oder diese unterstützen. ,en-US,Sites sponsored by or that support or offer information about organizations devoted to professional advancement or workers interests.,fr-FR,Sites qui contiennent ou proposent des informations concernant des associations dédiées à l'avancement professionnel ou à l'intérêt des travailleurs\\, ou qui sont sponsorisés par elles.,it-IT,Siti che supportano\\, offrono informazioni o sono patrocinati da organizzazioni dedicate principalmente all'avanzamento professionale o agli interessi dei lavoratori.,ja-JP,専門家や従業員の職の向上や利益を目的とした団体によるサイト。または、そのような団体に関する情報を提供するサイト。,ko-KR,직업적 성공 또는 노동자의 권익을 보호하는 것을 목적으로 하는 단체가 운영하거나 그러한 기관에 대한 정보를 제공하는 사이트.,pt-BR,Sites patrocinados por ou que suportem ou ofereçam informações sobre organizações dedicadas ao progresso profissional ou de interesse dos trabalhadores.,es-ES,Sitios que reciben el patrocinio o informan de organizaciones dedicadas al progreso profesional o a los intereses de los trabajadores. 125 700 352 zh-CN,计算机安全,zh-TW,電腦安全,de-DE,Computersicherheit,en-US,Computer Security,fr-FR,Sécurité informatique,it-IT,Sicurezza dei Computer,ja-JP,コンピュータセキュリティ情報,ko-KR,컴퓨터 보안,pt-BR,Segurança de computador,es-ES,Seguridad de computadoras zh-CN,提供有关计算机安全的信息或相关工具免费下载的网站。,zh-TW,提供有關電腦安全的資訊或用於保護電腦安全的免費下載軟體之網站。,de-DE,Webseiten mit Informationen zur Sicherheit von Computern oder zu kostenlos herunterladbaren Tools oder Programmen zu diesem Themenkomplex.,en-US,Sites that provide information about or free downloadable tools for computer security.,fr-FR,Sites qui fournissent gratuitement des outils téléchargeables pour la sécurité informatique\\, ou qui fournissent des informations sur eux. ,it-IT,Siti che forniscono informazioni oppure offrono il download libero di strumenti per la sicurezza dei computer.,ja-JP,コンピュータシステムセキュリティ関連の情報および無償でダウンロード可能なツールを提供するサイト。,ko-KR,컴퓨터 보안에 대한 정보 또는 무료로 다운로드할 수 있는 컴퓨터 보안 도구를 제공하는 사이트.,pt-BR,Sites que fornecem informações sobre ferramentas grátis para download para a segurança de computadores.,es-ES,Sitios que ofrecen información sobre seguridad de computadoras o herramientas de descarga gratuita para tal fin. 138 701 329 zh-CN,图片,zh-TW,影像(媒體),de-DE,Bilder (Medien),en-US,Images (Media),fr-FR,Images (Média),it-IT,Immagini (Media),ja-JP,イメージ(メディア) ,ko-KR,이미지(미디어),pt-BR,Imagens (Mídia),es-ES,Imágenes (Medios) zh-CN,以图像文件名结束的 URL。,zh-TW,以影像檔名結尾的 URL。,de-DE,URL-Adressen\\, die mit für Grafiken und Bilder typischen Dateinamenerweiterungen enden.,en-US,URLs ending with image filenames.,fr-FR,URL se finissant par des fichiers graphiques.,it-IT,URL che finiscono con nomi di file grafici.,ja-JP,URLの最後がイメージファイル名のサイト。,ko-KR,이미지 파일 이름으로 끝나는 URL.,pt-BR,URLs terminando com nomes de arquivos de imagens.,es-ES,URL que terminan con nombres de archivos de imagen. 147 702 329 zh-CN,图片服务器,zh-TW,影像伺服器,de-DE,Image-Server,en-US,Image Servers,fr-FR,Serveur d'Images,it-IT,Image Server,ja-JP,イメージサーバー,ko-KR,이미지 서버,pt-BR,Servidor de imagens,es-ES,Servidor de imagen zh-CN,主要用于提供图像的 Web 服务器。,zh-TW,主要用於傳送影像的 Web 伺服器。,de-DE,Webserver\\, die vorrangig der Bereitstellung von Bildern\\, Abbildungen und Grafiken dienen.,en-US,Web servers whose primary function is to deliver images.,fr-FR,Serveurs Web dont la fonction principale est le téléchargement d'images.,it-IT,Server Web la cui funzione primaria è di fornire immagini.,ja-JP,イメージ配信を主な機能とするウェブサーバー。,ko-KR,주로 이미지 제공에 사용되는 웹 서버.,pt-BR,Servidores da Web cuja função principal é a de fornecer imagens.,es-ES,Servidores Web cuyo objetivo principal es ofrecer imágenes. 148 703 329 zh-CN,私有 IP 地址,zh-TW,私有 IP 位址,de-DE,Private IP-Adressen,en-US,Private IP Addresses,fr-FR,Adresses IP Privées,it-IT,Indirizzi IP Privati,ja-JP,私的IPアドレス,ko-KR,개인 IP 주소,pt-BR,Endereços IP privados,es-ES,Direcciones IP privadas zh-CN,在RFC 1918“私有企业内部网地址分配”中定义的 IP 地址。,zh-TW,RFC 1918「私有企業內部網位址分配」中定義的 IP 位址。,de-DE,IP-Adressen gemäß RFC 1918\\, 'Adresszuweisung für private Intranets'.,en-US,IP addresses defined in RFC 1918\\, 'Address Allocation for Private Intranets.',fr-FR,Adresses IP définies par